whereNot method

Coral<List<E>> whereNot(
  1. bool test(
    1. E element
    )
)

Returns a list of elements that do not satisfy test reactively.

Implementation

Coral<List<E>> whereNot(bool Function(E element) test) =>
    coral.map((source) => List.unmodifiable(source.whereNot(test)));