ap<B> method

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

Implementation

@override StateT<F, S, B> ap<B>(StateT<F, S, Function1<A, B>> ff) => ff.bind((f) => map(f));