forEachNext

fun <E> Iterator<E>.forEachNext(action: (E) -> Unit)

This is an equivalent of java.util.Iterator.forEachRemaining, but is named differently to avoid the naming clash. The Java's implementation cannot be used due to the minimum API level restrictions.

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.

Parameters

action

The action to be performed for each element