mapWhileOpt<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
@override
@pragma("vm:prefer-inline")
Iter<U> mapWhileOpt<U>(Option<U> Function(T) f) {
return Iter.fromIterable(_mapWhileHelperOpt(f));
}