pure<B> method

StateT<F, S, B> pure<B>(
  1. B b
)

Implementation

StateT<F, S, B> pure<B>(B b) => new StateT(_FM, (S s) => _FM.pure(new Tuple2(b, s)));