map<A, B> method

  1. @override
StateT<F, S, B> map<A, B>(
  1. covariant StateT<F, S, A> fa,
  2. covariant B f(
    1. A a
    )
)
override

Implementation

@override StateT<F, S, B> map<A, B>(covariant StateT<F, S, A> fa, covariant B f(A a)) => fa.map(f);