chain abstract method

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

If this is Nothing, returns next. Otherwise return this..

Implementation

Maybe<T> chain(Maybe<T> next);