call<C> method

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

Chain multiple functions having the same left type L.

Implementation

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