whereValue method

ValueStream<T> whereValue(
  1. bool test(
    1. T value
    )
)

Implementation

ValueStream<T> whereValue(bool Function(T value) test) =>
    _WhereValueStream(this, test);