Item
% of partially implemented
% of fully implemented
java.util.stream
DoubleStream
87
filter(
DoublePredicate
) :
DoubleStream
map(
DoubleUnaryOperator
) :
DoubleStream
mapToObj(
DoubleFunction
) :
Stream
mapToInt(
DoubleToIntFunction
) :
IntStream
mapToLong(
DoubleToLongFunction
) :
LongStream
flatMap(
DoubleFunction
) :
DoubleStream
mapMulti(
DoubleStream$DoubleMapMultiConsumer
) :
DoubleStream
distinct() :
DoubleStream
sorted() :
DoubleStream
peek(
DoubleConsumer
) :
DoubleStream
limit(long) :
DoubleStream
skip(long) :
DoubleStream
takeWhile(
DoublePredicate
) :
DoubleStream
dropWhile(
DoublePredicate
) :
DoubleStream
forEach(
DoubleConsumer
) : void
forEachOrdered(
DoubleConsumer
) : void
toArray() : double[]
reduce(double,
DoubleBinaryOperator
) : double
reduce(
DoubleBinaryOperator
) :
OptionalDouble
collect(
Supplier
,
ObjDoubleConsumer
,
BiConsumer
) :
Object
sum() : double
min() :
OptionalDouble
max() :
OptionalDouble
count() : long
average() :
OptionalDouble
summaryStatistics() :
DoubleSummaryStatistics
anyMatch(
DoublePredicate
) : boolean
allMatch(
DoublePredicate
) : boolean
noneMatch(
DoublePredicate
) : boolean
findFirst() :
OptionalDouble
findAny() :
OptionalDouble
boxed() :
Stream
sequential() :
DoubleStream
parallel() :
DoubleStream
iterator() :
PrimitiveIterator$OfDouble
spliterator() :
Spliterator$OfDouble
builder() :
DoubleStream$Builder
empty() :
DoubleStream
of(double) :
DoubleStream
of(double[]) :
DoubleStream
iterate(double,
DoubleUnaryOperator
) :
DoubleStream
iterate(double,
DoublePredicate
,
DoubleUnaryOperator
) :
DoubleStream
generate(
DoubleSupplier
) :
DoubleStream
concat(
DoubleStream
,
DoubleStream
) :
DoubleStream
parallel() :
BaseStream
sequential() :
BaseStream
spliterator() :
Spliterator
iterator() :
Iterator