bind<A, B> method

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

Implementation

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