mapWhile<U> method
Creates an iterator that both yields elements based on a predicate and maps. It will call this closure on each element of the iterator, and yield elements while it returns Some(_).
Implementation
Iter<U> mapWhile<U>(U? Function(T) f) {
return Iter.fromIterable(_mapWhileHelper(f));
}