Creates an RIterator where all the elements satisfy the predicate f.
f
@override RIterator<T> where(bool Function(T) f) => RIterator.fromIterable(super.where(f));