EitherAsync<L, R> extension

on

Methods

doOnLeftAsync(FutureOr<void> block(L v)) AsyncEither<L, R>

Available on Either<L, R>, provided by the EitherAsync extension

doOnRightAsync(FutureOr<void> block(R v)) AsyncEither<L, R>

Available on Either<L, R>, provided by the EitherAsync extension

flatMapAsync<T>(FutureOr<Either<L, T>> f(R)) AsyncEither<L, T>

Available on Either<L, R>, provided by the EitherAsync extension

flatMapLeftAsync<T>(FutureOr<Either<T, R>> f(L)) Future<Either<T, R>>

Available on Either<L, R>, provided by the EitherAsync extension

mapAsync<T>(FutureOr<T> f(R)) AsyncEither<L, T>

Available on Either<L, R>, provided by the EitherAsync extension

mapLeftAsync<T>(FutureOr<T> f(L)) Future<Either<T, R>>

Available on Either<L, R>, provided by the EitherAsync extension