filterMapOpt<U> method
Creates an iterator that both filters and maps. The returned iterator yields only the values for which the supplied closure returns Some(value).
Implementation
@override
@pragma("vm:prefer-inline")
Iter<U> filterMapOpt<U>(Option<U> Function(T) f) {
return Iter.fromIterable(_filterMapHelperOpt(f));
}