fallback abstract method

Maybe<T> fallback(
  1. Maybe<T> next()
)

If this is Nothing, returns the result of next. Otherwise return this..

Implementation

Maybe<T> fallback(Maybe<T> Function() next);