35/// Float | \b abs | Integer | Computes the absolute value of an integer number.
36/// Float | \b abs | Float | Computes the absolute value of a floating point number.
37/// Float | \b ceil | Float | Returns the nearest integer not less than the given value.
38/// Float | \b floor | Float | Returns the nearest integer not greater than the given value.
39/// Float | \b trunc | Float | Returns the nearest integer not greater in magnitude than the given value.
40/// Float | \b round | Float | Returns the nearest integer, rounding away from zero in halfway cases.
41/// Integer | \b rint | Float | Returns the nearest integer, rounding away from zero in halfway cases.
42/// Float | \b max | Integer,Integer | Returns the greater of two integer numbers.
43/// Float | \b max | Float, Float | Returns the greater of two floating point numbers.
44/// Float | \b min | Integer,Integer | Returns the smaller of two integer numbers.
45/// Float | \b min | Float, Float | Returns the smaller of two floating point numbers.
46/// Float | \b remainder | Float,Float | Computes the remainder of the floating point division of the first argument by the second argument.
47/// Float | \b random | Float | Returns a random number in the range [0.0 ... 1.0[. Note uses \c std::rand. No seeding is performed. Invoke \c std::srand before using this function for the first time, if numbers should change between different runs of the software.