D | DefaultMethodStreams.java | 103 .collect(toSet()); in verify() 110 .collect(toSet()); in verify() 297 …public <R> R collect(Supplier<R> supplier, BiConsumer<R, ? super T> accumulator, BiConsumer<R, R> … in collect() method in DefaultMethodStreams.DefaultMethodRefStream 298 return s.collect(supplier, accumulator, combiner); in collect() 302 public <R, A> R collect(Collector<? super T, A, R> collector) { in collect() method in DefaultMethodStreams.DefaultMethodRefStream 303 return s.collect(collector); in collect() 478 …public <R> R collect(Supplier<R> supplier, ObjIntConsumer<R> accumulator, BiConsumer<R, R> combine… in collect() method in DefaultMethodStreams.DefaultMethodIntStream 479 return s.collect(supplier, accumulator, combiner); in collect() 684 …public <R> R collect(Supplier<R> supplier, ObjLongConsumer<R> accumulator, BiConsumer<R, R> combin… in collect() method in DefaultMethodStreams.DefaultMethodLongStream 685 return s.collect(supplier, accumulator, combiner); in collect() [all …]
|