Calculates the minimum value within a union of non-negative integer literals N (which must extend Uint10).
N
Uint10
A union of non-negative integer literals up to 1023 (Uint10).
The smallest integer literal present in the union N.
type U = 2 | 5 | 1;type Result = Min<U>; // 1type ResultSingle = Min<5>; // 5type ResultZero = Min<0 | 10>; // 0 Copy
type U = 2 | 5 | 1;type Result = Min<U>; // 1type ResultSingle = Min<5>; // 5type ResultZero = Min<0 | 10>; // 0
Calculates the minimum value within a union of non-negative integer literals
N(which must extendUint10).