MappedIterator<T, R> constructor

MappedIterator<T, R>(
  1. Iterator<T> _source,
  2. R mapper(
    1. T
    )
)

Implementation

MappedIterator(this._source, this.mapper);