where method

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

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));