FutureEitherExtension<L, R> extension

on

Methods

doOnLeftAsync(FutureOr<void> block(L v)) AsyncEither<L, R>
doOnRightAsync(FutureOr<void> block(R v)) AsyncEither<L, R>
flatMapAsync<T>(FutureOr<Either<L, T>> f(R)) AsyncEither<L, T>
flatMapLeftAsync<T>(FutureOr<Either<T, R>> f(L)) Future<Either<T, R>>
foldAsync<T>(FutureOr<T> onLeft(L), FutureOr<T> onRight(R)) Future<T>
mapAsync<T>(FutureOr<T> f(R)) AsyncEither<L, T>
mapLeftAsync<T>(FutureOr<T> f(L)) Future<Either<T, R>>