Package | Description |
---|---|
java8.util |
Provides some of the new
java.util classes and implementations
of static and default interface methods added in Java 8. |
java8.util.stream |
Classes to support functional-style operations on streams of elements, such
as map-reduce transformations on collections.
|
Modifier and Type | Method and Description |
---|---|
static PrimitiveIterator.OfDouble |
Spliterators.iterator(Spliterator.OfDouble spliterator)
Creates an
PrimitiveIterator.OfDouble from a
Spliterator.OfDouble . |
Modifier and Type | Method and Description |
---|---|
static void |
Iterators.forEachRemaining(PrimitiveIterator.OfDouble it,
DoubleConsumer action)
Performs the given action for each remaining element until all elements
have been processed or the action throws an exception.
|
static Spliterator.OfDouble |
Spliterators.spliterator(PrimitiveIterator.OfDouble iterator,
long size,
int characteristics)
Creates a
Spliterator.OfDouble using a given
DoubleStream.DoubleIterator as the source of elements, and with a
given initially reported size. |
static Spliterator.OfDouble |
Spliterators.spliteratorUnknownSize(PrimitiveIterator.OfDouble iterator,
int characteristics)
Creates a
Spliterator.OfDouble using a given
DoubleStream.DoubleIterator as the source of elements, with no
initial size estimate. |
Modifier and Type | Method and Description |
---|---|
PrimitiveIterator.OfDouble |
DoubleStream.iterator() |
Copyright © 2017. All rights reserved.