map<B> method

  1. @override
State<S, B> map<B>(
  1. B f(
    1. A a
    )
)
override

Implementation

@override State<S, B> map<B>(B f(A a)) => new State((S s) => run(s).map1(f));