Searched defs:P_OUT (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/stream/
H A DReferencePipeline.java53 * @param <P_OUT> type of elements in produced by this stage
58 public abstract class ReferencePipeline<P_IN, P_OUT>
59 extends AbstractPipeline<P_IN, P_OUT, Stream<P_OUT>>
60 implements Stream<P_OUT> {
106 public final <P_IN> Node<P_OUT> evaluateToNode(PipelineHelper<P_OUT> helper,
109 IntFunction<P_OUT[]> generator) {
114 public final <P_IN> Spliterator<P_OUT> wrap(PipelineHelper<P_OUT> p
185 map(Function<? super P_OUT, ? extends R> mapper) argument
253 flatMap(Function<? super P_OUT, ? extends Stream<? extends R>> mapper) argument
280 flatMapToInt(Function<? super P_OUT, ? extends IntStream> mapper) argument
308 flatMapToDouble(Function<? super P_OUT, ? extends DoubleStream> mapper) argument
336 flatMapToLong(Function<? super P_OUT, ? extends LongStream> mapper) argument
485 reduce(R identity, BiFunction<R, ? super P_OUT, R> accumulator, BinaryOperator<R> combiner) argument
491 collect(Collector<? super P_OUT, A, R> collector) argument
[all...]

Completed in 93 milliseconds