Added in API level 24

OfPrimitive

interface OfPrimitive<T : Any!, T_CONS : Any!, T_SPLITR : Spliterator.OfPrimitive<T, T_CONS, T_SPLITR>!> : Spliterator<T>
java.util.Spliterator.OfPrimitive

A Spliterator specialized for primitive values.

Summary

Inherited constants
Public methods
open Unit
forEachRemaining(action: T_CONS)

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
tryAdvance(action: T_CONS)

If a remaining element exists, performs the given action on it, returning true; else returns false.

abstract T_SPLITR

Inherited functions

Public methods

forEachRemaining

Added in API level 24
open fun forEachRemaining(action: T_CONS): 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.

Parameters
action T_CONS: The action
Exceptions
java.lang.NullPointerException if the specified action is null

tryAdvance

Added in API level 24
abstract fun tryAdvance(action: T_CONS): 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.

Parameters
action T_CONS: The action
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

Added in API level 24
abstract fun trySplit(): T_SPLITR
Return
T_SPLITR a Spliterator covering some portion of the elements, or null if this spliterator cannot be split