withState<A> method

StateT<F, S, A> withState<A>(
  1. StateT<F, S, A> f(
    1. S s
    )
)

Implementation

StateT<F, S, A> withState<A>(StateT<F, S, A> f(S s)) => get().bind(f);