whereErr method

Iterable<Err<T>> whereErr()

Implementation

Iterable<Err<T>> whereErr() {
  return where((e) => e.isOk()).map((e) => e.err().unwrap());
}