flatMap<U> method
Creates an iterator that works like map, but flattens nested structure.
Implementation
@override
FlatMapRIterator<T, U> flatMap<U>(Iterator<U> Function(T) f) =>
FlatMapRIterator<T, U>(this, f);
Creates an iterator that works like map, but flattens nested structure.
@override
FlatMapRIterator<T, U> flatMap<U>(Iterator<U> Function(T) f) =>
FlatMapRIterator<T, U>(this, f);