flatMap<E> method

Maybe<E> flatMap<E>(
  1. dynamic f
)

Implementation

Maybe<E> flatMap<E>(f) => _isNothing ? Maybe.nothing() : f(_value);