Item | % of partially implemented | % of fully implemented |
---|---|---|
java.util.stream |
||
88 | ||
filter(IntPredicate) : IntStream |
||
map(IntUnaryOperator) : IntStream |
||
mapToObj(IntFunction) : Stream |
||
mapToLong(IntToLongFunction) : LongStream |
||
mapToDouble(IntToDoubleFunction) : DoubleStream |
||
flatMap(IntFunction) : IntStream |
||
mapMulti(IntStream$IntMapMultiConsumer) : IntStream |
||
distinct() : IntStream |
||
sorted() : IntStream |
||
peek(IntConsumer) : IntStream |
||
limit(long) : IntStream |
||
skip(long) : IntStream |
||
takeWhile(IntPredicate) : IntStream |
||
dropWhile(IntPredicate) : IntStream |
||
forEach(IntConsumer) : void |
||
forEachOrdered(IntConsumer) : void |
||
toArray() : int[] |
||
reduce(int, IntBinaryOperator) : int |
||
reduce(IntBinaryOperator) : OptionalInt |
||
sum() : int |
||
min() : OptionalInt |
||
max() : OptionalInt |
||
count() : long |
||
average() : OptionalDouble |
||
summaryStatistics() : IntSummaryStatistics |
||
anyMatch(IntPredicate) : boolean |
||
allMatch(IntPredicate) : boolean |
||
noneMatch(IntPredicate) : boolean |
||
findFirst() : OptionalInt |
||
findAny() : OptionalInt |
||
asLongStream() : LongStream |
||
asDoubleStream() : DoubleStream |
||
boxed() : Stream |
||
sequential() : IntStream |
||
parallel() : IntStream |
||
iterator() : PrimitiveIterator$OfInt |
||
spliterator() : Spliterator$OfInt |
||
builder() : IntStream$Builder |
||
empty() : IntStream |
||
of(int) : IntStream |
||
of(int[]) : IntStream |
||
iterate(int, IntUnaryOperator) : IntStream |
||
generate(IntSupplier) : IntStream |
||
range(int, int) : IntStream |
||
rangeClosed(int, int) : IntStream |
||
parallel() : BaseStream |
||
sequential() : BaseStream |
||
spliterator() : Spliterator |
||
iterator() : Iterator |