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