flatMap<B> method

  1. @override
Free<F, B> flatMap<B>(
  1. covariant Function1<A, Free<F, B>> f
)
override

Implementation

@override Free<F, B> flatMap<B>(Function1<A, Free<F, B>> f) => new Bind(this, (a) => f(cast(a)));