Item | % of partially implemented | % of fully implemented |
---|---|---|
java.util.stream |
||
93 | ||
mapToInt(ToIntFunction) : IntStream |
||
mapToLong(ToLongFunction) : LongStream |
||
mapToDouble(ToDoubleFunction) : DoubleStream |
||
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 |
||
forEach(Consumer) : void |
||
forEachOrdered(Consumer) : void |
||
toArray() : Object[] |
||
toArray(IntFunction) : Object[] |
||
reduce(BinaryOperator) : Optional |
||
toList() : List |
||
min(Comparator) : Optional |
||
max(Comparator) : Optional |
||
count() : long |
||
anyMatch(Predicate) : boolean |
||
allMatch(Predicate) : boolean |
||
noneMatch(Predicate) : boolean |
||
findFirst() : Optional |
||
findAny() : Optional |
||
builder() : Stream$Builder |
||
empty() : Stream |
||