map<B> method

Stackless<B> map<B>(
  1. B f(
    1. A x
    )
)

Implementation

Stackless<B> map<B>(B Function(A x) f) => andThen((a) => Done(f(a)));