productAll
productAll<
E,A>(data):TaskValidation<E, readonlyA[]>
Defined in: Core/TaskValidation.ts:229
Runs all Task.Validations concurrently and collects results. If all are Passed, returns Passed with all values as an array. If any fail, returns Failed with all accumulated errors.
Type Parameters
Section titled “Type Parameters”E
A
Parameters
Section titled “Parameters”NonEmptyArr<TaskValidation<E, A>>
Returns
Section titled “Returns”TaskValidation<E, readonly A[]>