ap<B> method

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

Implementation

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