bindEither<C> method
- Either<
L, C> either
Chain an Either to TaskEither by converting it from sync to async.
Implementation
TaskEither<L, C> bindEither<C>(Either<L, C> either) =>
flatMap((_) => either.toTaskEither());
Chain an Either to TaskEither by converting it from sync to async.
TaskEither<L, C> bindEither<C>(Either<L, C> either) =>
flatMap((_) => either.toTaskEither());