noneOr abstract method

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

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

Implementation

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