where method

  1. @override
RIterator<T> where(
  1. bool f(
    1. T
    )
)
override

Creates an RIterator where all the elements satisfy the predicate f.

Implementation

@override
RIterator<T> where(bool Function(T) f) =>
    RIterator.fromIterable(super.where(f));