call<C> method

  1. @override
TaskEither<L, C> call<C>(
  1. covariant TaskEither<L, C> chain
)
override

Chain multiple functions having the same left type L.

Implementation

@override
TaskEither<L, C> call<C>(covariant TaskEither<L, C> chain) =>
    flatMap((_) => chain);