Tuple-preserving variant of validateAllArray. Heterogeneous input tuple → preserved Ok tuple shape with a union of all input error types collected into a readonly array.
validateTupleArray([validateName(s), validateAge(s)] as const);// Result<readonly [string, number], readonly FieldError[]> Copy
validateTupleArray([validateName(s), validateAge(s)] as const);// Result<readonly [string, number], readonly FieldError[]>
Tuple-preserving variant of validateAllArray. Heterogeneous input tuple → preserved Ok tuple shape with a union of all input error types collected into a readonly array.