|  | 
| int | Qore::abs (int i) | 
|  | Returns the absolute value of the argument passed.  More... 
 | 
|  | 
| number | Qore::abs (number n) | 
|  | Returns the absolute value of the argument passed.  More... 
 | 
|  | 
| float | Qore::abs (softfloat f) | 
|  | Returns the absolute value of the argument passed.  More... 
 | 
|  | 
| float | Qore::abs () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::acos (number n) | 
|  | Returns the value in radians of the arc cosine of the given value.  More... 
 | 
|  | 
| float | Qore::acos (softfloat f) | 
|  | Returns the value in radians of the arc cosine of the given value.  More... 
 | 
|  | 
| number | Qore::asin (number n) | 
|  | Returns the value in radians of the arc sine of the given value.  More... 
 | 
|  | 
| float | Qore::asin (softfloat f) | 
|  | Returns the value in radians of the arc sine of the given value.  More... 
 | 
|  | 
| float | Qore::asin () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::atan (number n) | 
|  | Returns the value in radians of the arc tangent of the given value.  More... 
 | 
|  | 
| float | Qore::atan (softfloat f) | 
|  | Returns the value in radians of the arc tangent of the given value.  More... 
 | 
|  | 
| float | Qore::atan () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::atan2 (number y, number x) | 
|  | Returns the principal value of the arc tangent of y/x, using the signs of the two arguments to determine the quadrant of the result.  More... 
 | 
|  | 
| float | Qore::atan2 (softfloat y, softfloat x) | 
|  | Returns the principal value of the arc tangent of y/x, using the signs of the two arguments to determine the quadrant of the result.  More... 
 | 
|  | 
| float | Qore::atan2 () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::cbrt (number n) | 
|  | Returns the cube root of the number passed.  More... 
 | 
|  | 
| float | Qore::cbrt (softfloat f) | 
|  | Returns the cube root of the number passed.  More... 
 | 
|  | 
| float | Qore::cbrt () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| int | Qore::ceil (int num, int prec=0) | 
|  | Returns the smallest multiple of -prec-th power of 10 that is greater than or equal to num. (Thus, for non-negative prec just returns num).  More... 
 | 
|  | 
| float | Qore::ceil (softfloat num, int prec=0) | 
|  | Returns the smallest multiple of -prec-th power of 10 that is greater than or equal to num.  More... 
 | 
|  | 
| number | Qore::ceil (number num, int prec=0) | 
|  | Returns the smallest multiple of -prec-th power of 10 that is greater than or equal to num.  More... 
 | 
|  | 
| float | Qore::ceil () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| int | Qore::compare (number n1, number n2, number epsilon) | 
|  | Compares numbers with a given epsilon.  More... 
 | 
|  | 
| int | Qore::compare (float n1, float n2, float epsilon) | 
|  | Compares numbers with a given epsilon.  More... 
 | 
|  | 
| number | Qore::cos (number n) | 
|  | Returns the cosine of the number in radians passed.  More... 
 | 
|  | 
| float | Qore::cos (float f) | 
|  | Returns the cosine of the number in radians passed.  More... 
 | 
|  | 
| float | Qore::cos () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::cosh (number n) | 
|  | Returns the hyperbolic cosine of the given value.  More... 
 | 
|  | 
| float | Qore::cosh (softfloat f) | 
|  | Returns the hyperbolic cosine of the given value.  More... 
 | 
|  | 
| float | Qore::cosh () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::exp (number n) | 
|  | Returns the value of e (the base of natural logarithms) raised to the power of the given number.  More... 
 | 
|  | 
| float | Qore::exp (softfloat f) | 
|  | Returns the value of e (the base of natural logarithms) raised to the power of the given number.  More... 
 | 
|  | 
| float | Qore::exp () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::exp2 (number n) | 
|  | Returns the value of 2 raised to the power of the given number.  More... 
 | 
|  | 
| float | Qore::exp2 (softfloat f) | 
|  | Returns the value of 2 raised to the power of the given number.  More... 
 | 
|  | 
| float | Qore::exp2 () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::expm1 (number n) | 
|  | Returns the value of e (the base of natural logarithms) raised to the power of the given number - 1.  More... 
 | 
|  | 
| float | Qore::expm1 (softfloat f) | 
|  | Returns the value of e (the base of natural logarithms) raised to the power of the given number - 1.  More... 
 | 
|  | 
| float | Qore::expm1 () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| int | Qore::floor (int num, int prec=0) | 
|  | Returns the largest multiple of -prec-th power of 10 that is less than or equal to num. (Thus, for non-negative prec just returns num).  More... 
 | 
|  | 
| float | Qore::floor (softfloat f, int prec=0) | 
|  | Returns the largest multiple of -prec-th power of 10 that is less than or equal to num.  More... 
 | 
|  | 
| number | Qore::floor (number num, int prec=0) | 
|  | Returns the largest multiple of -prec-th power of 10 that is less than or equal to num.  More... 
 | 
|  | 
| float | Qore::floor () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::hypot (number x, number y) | 
|  | Returns the length of the hypotenuse of a right-angle triangle with sides given as the two arguments.  More... 
 | 
|  | 
| float | Qore::hypot (softfloat x, softfloat y) | 
|  | Returns the length of the hypotenuse of a right-angle triangle with sides given as the two arguments.  More... 
 | 
|  | 
| float | Qore::hypot () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::log10 (number n) | 
|  | Returns the base 10 logarithm of the given number.  More... 
 | 
|  | 
| float | Qore::log10 (softfloat f) | 
|  | Returns the base 10 logarithm of the given number.  More... 
 | 
|  | 
| float | Qore::log10 () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::log1p (number n) | 
|  | Returns the natural logarithm of 1 + the given number.  More... 
 | 
|  | 
| float | Qore::log1p (softfloat f) | 
|  | Returns the natural logarithm of 1 + the given number.  More... 
 | 
|  | 
| float | Qore::log1p () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| float | Qore::logb (softfloat f) | 
|  | Returns the exponent of the given number.  More... 
 | 
|  | 
| float | Qore::logb () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::nlog (number n) | 
|  | Returns the natural logarithm of the given value.  More... 
 | 
|  | 
| float | Qore::nlog (softfloat f) | 
|  | Returns the natural logarithm of the given value.  More... 
 | 
|  | 
| float | Qore::nlog () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::pow (number x, number y) | 
|  | Returns a number raised to the power of another number.  More... 
 | 
|  | 
| float | Qore::pow (softfloat x=0.0, softfloat y=0.0) | 
|  | Returns a number raised to the power of another number.  More... 
 | 
|  | 
| int | Qore::round (softint num, int prec=0) | 
|  | Returns the multiple of -prec-th power of 10 that is closest to num (numbers halfway between two such powers of 10 are rounded away from zero). (So, for non-negative prec just returns num).  More... 
 | 
|  | 
| float | Qore::round (softfloat num, int prec=0) | 
|  | Returns the multiple of -prec-th power of 10 that is closest to num (numbers halfway between two such powers of 10 are rounded away from zero).  More... 
 | 
|  | 
| number | Qore::round (number num, int prec=0) | 
|  | Returns the multiple of -prec-th power of 10 that is closest to num (numbers halfway between two such powers of 10 are rounded away from zero).  More... 
 | 
|  | 
| float | Qore::round () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::sin (number n) | 
|  | Returns the sine of the number in radians passed.  More... 
 | 
|  | 
| float | Qore::sin (softfloat f) | 
|  | Returns the sine of the number in radians passed.  More... 
 | 
|  | 
| float | Qore::sin () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::sinh (number n) | 
|  | Returns the hyperbolic sine of the given value.  More... 
 | 
|  | 
| float | Qore::sinh (softfloat f) | 
|  | Returns the hyperbolic sine of the given value.  More... 
 | 
|  | 
| float | Qore::sinh () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::sqrt (number n) | 
|  | Returns the square root of the number passed.  More... 
 | 
|  | 
| float | Qore::sqrt (softfloat f) | 
|  | Returns the square root of the number passed.  More... 
 | 
|  | 
| float | Qore::sqrt () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::tan (number n) | 
|  | Returns the tangent of the number in radians passed.  More... 
 | 
|  | 
| float | Qore::tan (softfloat f) | 
|  | Returns the tangent of the number in radians passed.  More... 
 | 
|  | 
| float | Qore::tan () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
| number | Qore::tanh (number n) | 
|  | Returns the hyperbolic tangent of the given value.  More... 
 | 
|  | 
| float | Qore::tanh (softfloat f) | 
|  | Returns the hyperbolic tangent of the given value.  More... 
 | 
|  | 
| float | Qore::tanh () | 
|  | This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.  More... 
 | 
|  | 
Math functions.