fanout<U> method

Result<Pair<V, U>> fanout<U>(
  1. Result<U> other()
)

Implementation

$async.Result<Pair<V, U>> fanout<U>($async.Result<U> Function() other) =>
    flatMap((outer) => other().map((v) => Pair(outer, v)));