call<B> method

  1. @override
Either<L, B> call<B>(
  1. covariant Either<L, B> chain
)
override

Chain multiple functions having the same left type L.

Implementation

@override
Either<L, B> call<B>(covariant Either<L, B> chain) => flatMap((_) => chain);