someOr abstract method

Option<T> someOr(
  1. Option<T> other
)

Returns this if it's Some, otherwise returns the other Option.

Implementation

Option<T> someOr(Option<T> other);