Home | History | Annotate | Download | only in stream

Lines Matching refs:operator

101      * @param operator The reducing function
105 makeRef(BinaryOperator<T> operator) {
106 Objects.requireNonNull(operator);
123 state = operator.apply(state, t);
241 * @param operator the combining function
245 makeInt(int identity, IntBinaryOperator operator) {
246 Objects.requireNonNull(operator);
258 state = operator.applyAsInt(state, t);
283 * @param operator the combining function
287 makeInt(IntBinaryOperator operator) {
288 Objects.requireNonNull(operator);
306 state = operator.applyAsInt(state, t);
377 * @param operator the combining function
381 makeLong(long identity, LongBinaryOperator operator) {
382 Objects.requireNonNull(operator);
394 state = operator.applyAsLong(state, t);
419 * @param operator the combining function
423 makeLong(LongBinaryOperator operator) {
424 Objects.requireNonNull(operator);
442 state = operator.applyAsLong(state, t);
513 * @param operator the combining function
517 makeDouble(double identity, DoubleBinaryOperator operator) {
518 Objects.requireNonNull(operator);
530 state = operator.applyAsDouble(state, t);
555 * @param operator the combining function
559 makeDouble(DoubleBinaryOperator operator) {
560 Objects.requireNonNull(operator);
578 state = operator.applyAsDouble(state, t);