mapAsync abstract method
Transforms the inner Async instance if this is an Async.
Provided for pair-axis symmetry with Result.mapOk/Result.mapErr — real code almost always wants resultMap, fold, or foldResult instead.
Implementation
@visibleForTesting
Resolvable<T> mapAsync(
@noFutures Async<T> Function(Async<T> async) noFutures,
);