productAll
productAll<
E,A>(data):TaskValidation<E, readonlyA[]>
Defined in: Core/TaskValidation.ts:207
Runs all TaskValidations 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”NonEmptyList<TaskValidation<E, A>>
Returns
Section titled “Returns”TaskValidation<E, readonly A[]>