Item % of partially implemented % of fully implemented
java.util.stream
93
filter(Predicate) : Stream
flatMap(Function) : Stream
flatMapToInt(Function) : IntStream
flatMapToLong(Function) : LongStream
flatMapToDouble(Function) : DoubleStream
mapMulti(BiConsumer) : Stream
mapMultiToInt(BiConsumer) : IntStream
mapMultiToLong(BiConsumer) : LongStream
mapMultiToDouble(BiConsumer) : DoubleStream
distinct() : Stream
sorted() : Stream
sorted(Comparator) : Stream
limit(long) : Stream
skip(long) : Stream
takeWhile(Predicate) : Stream
dropWhile(Predicate) : Stream
forEach(Consumer) : void
forEachOrdered(Consumer) : void
toArray() : Object[]
toArray(IntFunction) : Object[]
collect(Collector) : Object
toList() : List
count() : long
anyMatch(Predicate) : boolean
allMatch(Predicate) : boolean
noneMatch(Predicate) : boolean
findFirst() : Optional
findAny() : Optional
builder() : Stream$Builder
empty() : Stream
ofNullable(Object) : Stream
of(Object[]) : Stream
generate(Supplier) : Stream
concat(Stream, Stream) : Stream