Returns the maximum value from a tuple of integers.
Note:
type A = TupleMax<[1, 2, 5, 3]>;//=> 5type B = TupleMax<[1, 2, 5, 3, 99, -1]>;//=> 99 Copy
type A = TupleMax<[1, 2, 5, 3]>;//=> 5type B = TupleMax<[1, 2, 5, 3, 99, -1]>;//=> 99
Returns the maximum value from a tuple of integers.
Note: