MappingIterator

class MappingIterator<T, R>(source: Iterator<T>, func: (T) -> R)

Maps the values of the iterator lazily using func.

Constructors

Link copied to clipboard
fun <T, R> MappingIterator(source: Iterator<T>, func: (T) -> R)

Functions

Link copied to clipboard
open fun computeNext()