call<C> method

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

Chain multiple functions having the same left type L.

Implementation

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