Filters for Ok elements, returning an iterable of the Ok instances.
Iterable<Ok<T>> whereOk() => where((e) => e.isOk()).map((e) => e.ok().unwrap());