whereOk method

Iterable<Ok<T>> whereOk()

Implementation

Iterable<Ok<T>> whereOk() {
  return where((e) => e.isOk()).map((e) => e.ok().unwrap());
}