where method
Creates an Iter where all the elements satisfy the predicate f
.
Implementation
@override
@pragma("vm:prefer-inline")
Iter<T> where(bool Function(T) f) => Iter.fromIterable(super.where(f));
Creates an Iter where all the elements satisfy the predicate f
.
@override
@pragma("vm:prefer-inline")
Iter<T> where(bool Function(T) f) => Iter.fromIterable(super.where(f));