orElse method

Some<T> orElse(
  1. Option<T> f()
)

Implementation

Some<T> orElse(Option<T> Function() f) {
  return Some(v);
}