Const
Heterogeneous async tuple combine — branches overlap in wall-clock time. Returns the first Err in input order (not completion order).
Err
Like combineTuple, but starts every branch before awaiting (wall-clock parallel for independent IO). On failure, returns the first Err in input order.
const combined = parallelTupleAsync([ loadProfile(id), loadMetrics(id), loadFlags(id),] as const);// ResultAsync<readonly [Profile, Metrics, Flags], …> Copy
const combined = parallelTupleAsync([ loadProfile(id), loadMetrics(id), loadFlags(id),] as const);// ResultAsync<readonly [Profile, Metrics, Flags], …>
Heterogeneous async tuple combine — branches overlap in wall-clock time. Returns the first
Errin input order (not completion order).