whereNone method

Iterable<None<T>> whereNone()

Implementation

Iterable<None<T>> whereNone() {
  return where((e) => e.isSome()).map((e) => e.none().unwrap());
}