forEachRemaining
Performs the given action for each remaining element until all elements have been processed or the action throws an exception. Actions are performed in the order of iteration, if that order is specified. Exceptions thrown by the action are relayed to the caller.
The behavior of an iterator is unspecified if the action modifies the source of elements in any way (even by calling the remove
method or other mutator methods of Iterator
subtypes), unless an overriding class has specified a concurrent modification policy.
Subsequent behavior of an iterator is unspecified if the action throws an exception.
- Specified by:
-
forEachRemaining
in interface PrimitiveIterator<Long,
LongConsumer>
- Implementation Requirements:
-
The default implementation behaves as if:
while (hasNext())
action.accept(nextLong());
- Parameters:
-
action
- The action to be performed for each element