map applies a precondition to each member of an array.
If the precondition fails for any of the members, the entire array is considered a failure.
max sets a maximum number of elements the array can contain.
min sets a minimum number of elements the array can contain.
notEmpty tests if an array has at least one member.
range tests whether an array's length falls within a specific min and max range.
tuple tests whether the value supplied qualifies as a tuple.
Each precondition in the list represents a precondition for its corresponding tuple element.
Generated using TypeDoc
filter applies a precondition to each member of an array producing an array where only the successful members are kept.