ap<B> method

  1. @override
Either<L, B> ap<B>(
  1. covariant Either<L, Function1<R, B>> ff
)
override

Implementation

@override Either<L, B> ap<B>(Either<L, Function1<R, B>> ff) => ff.bind((f) => map(f));