OfDouble
interface OfDouble : Spliterator.OfPrimitive<Double!, DoubleConsumer!, Spliterator.OfDouble!>
A Spliterator specialized for double values.
Summary
| Public methods |
| open Unit |
|
| open Unit |
Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception.
|
| abstract Boolean |
|
| open Boolean |
If a remaining element exists, performs the given action on it, returning true; else returns false.
|
| abstract Spliterator.OfDouble! |
|
Public methods
forEachRemaining
open fun forEachRemaining(action: DoubleConsumer!): Unit
| Exceptions |
java.lang.NullPointerException |
if the specified action is null |
forEachRemaining
open fun forEachRemaining(action: Consumer<in Double!>!): Unit
Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception. If this Spliterator is ORDERED, actions are performed in encounter order. Exceptions thrown by the action are relayed to the caller.
| Exceptions |
java.lang.NullPointerException |
if the specified action is null |
tryAdvance
abstract fun tryAdvance(action: DoubleConsumer!): Boolean
| Return |
Boolean |
false if no remaining elements existed upon entry to this method, else true. |
| Exceptions |
java.lang.NullPointerException |
if the specified action is null |
tryAdvance
open fun tryAdvance(action: Consumer<in Double!>!): Boolean
If a remaining element exists, performs the given action on it, returning true; else returns false. If this Spliterator is ORDERED the action is performed on the next element in encounter order. Exceptions thrown by the action are relayed to the caller.
| Return |
Boolean |
false if no remaining elements existed upon entry to this method, else true. |
| Exceptions |
java.lang.NullPointerException |
if the specified action is null |