|
| float | absf (float n) |
| | Returns the absolute value of a float.
|
| |
| int | abs (int n) |
| | Returns the absolute value of an int.
|
| |
| int | max (int a, int b) |
| | Returns the highest value between a and b.
|
| |
| double | mind (double a, double b) |
| | Returns the lowest value between doubles a and b.
|
| |