map<T1> method

  1. @Deprecated('Use fmap')
Maybe<T1> map<T1>(
  1. T1 f(
    1. t
    )
)
inherited

Executes an mapping operation in case an value is present and wraps it with Just, otherwise returns None.

Implementation

@Deprecated('Use fmap')
Maybe<T1> map<T1>(T1 Function(T) f) => fmap<T1>(f);