Returns the larger of two numeric literals.
Handles positive literals, negative literals, mixed signs, and zero.
type A = Max<3, 7>;// ^? 7type B = Max<-9, -4>;// ^? -4type C = Max<-3, 0>;// ^? 0 Copy
type A = Max<3, 7>;// ^? 7type B = Max<-9, -4>;// ^? -4type C = Max<-3, 0>;// ^? 0
Returns the larger of two numeric literals.
Handles positive literals, negative literals, mixed signs, and zero.