map<U> abstract method

Option<U> map<U>(
  1. U f(
    1. T
    )
)

Maps an this Option

Implementation

Option<U> map<U>(U Function(T) f);