exclude method

Iterable<E> exclude(
  1. bool where(
    1. E element
    )
)

Implementation

Iterable<E> exclude(bool Function(E element) where) =>
    expand((e) => where(e) ? [] : [e]);