🎠predicate
Validate that T is not an array nor tuple.
T
type R = IsNotLooseArray<number[]> // falsetype R = IsNotLooseArray<[1]> // falsetype R = IsNotLooseArray<number> // true Copy
type R = IsNotLooseArray<number[]> // falsetype R = IsNotLooseArray<[1]> // falsetype R = IsNotLooseArray<number> // true
🎠predicate
Validate that
T
is not an array nor tuple.