OfInt
interface OfInt : Spliterator.OfPrimitive<Int!, IntConsumer!, Spliterator.OfInt!>
A Spliterator specialized for int
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.OfInt! |
|
Public methods
forEachRemaining
open fun forEachRemaining(action: IntConsumer!): Unit
Exceptions |
java.lang.NullPointerException |
if the specified action is null |
forEachRemaining
open fun forEachRemaining(action: Consumer<in Int!>!): 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.
Subsequent behavior of a spliterator is unspecified if the action throws an exception.
Exceptions |
java.lang.NullPointerException |
if the specified action is null |
tryAdvance
abstract fun tryAdvance(action: IntConsumer!): 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 Int!>!): 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.
Subsequent behavior of a spliterator is unspecified if the action throws an exception.
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 |
trySplit
abstract fun trySplit(): Spliterator.OfInt!
Return |
Spliterator.OfInt! |
a Spliterator covering some portion of the elements, or null if this spliterator cannot be split |