flatMap<B> method

  1. @override
StateT<F, S, B> flatMap<B>(
  1. covariant Function1<A, StateT<F, S, B>> f
)
override

Implementation

@override StateT<F, S, B> flatMap<B>(Function1<A, StateT<F, S, B>> f) => bind(f);