Returns a new Iterable containing only the values from Ok elements.
Iterable<T> get values => where((e) => e.isOk()).map((e) => e.unwrap());