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