Simple types / Numbers / Mathematical operations
Exponentiation
Square root
min and max values
Logarithm
Decimal logarithm
Sine, cosine and tangent
int
minValue =
MIN
(
MIN
(
2
,
1
),
3
);
//minValue is 1
int
maxValue =
MAX
(
MAX
(
2
,
1
),
3
);
//maxValue is 3