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