The following functions are a collection of mathematical intrinsics, available
by importing the core.math
module.
float
core.math.cos (float x)
¶double
core.math.cos (double x)
¶real
core.math.cos (real x)
¶Returns cosine of x, where x is in radians. The return value is undefined if x is greater than 2^{64}.
This intrinsic is the same as the GCC built-in function __builtin_cos
.
float
core.math.fabs (float x)
¶double
core.math.fabs (double x)
¶real
core.math.fabs (real x)
¶Compute the absolute value of x.
This intrinsic is the same as the GCC built-in function __builtin_fabs
.
float
core.math.ldexp (float n, int exp)
¶double
core.math.ldexp (double n, int exp)
¶real
core.math.ldexp (real n, int exp)
¶Compute n * 2^{exp}.
This intrinsic is the same as the GCC built-in function __builtin_ldexp
.
float
core.math.rint (float x)
¶double
core.math.rint (double x)
¶real
core.math.rint (real x)
¶Rounds x to the nearest integer value, using the current rounding mode.
If the return value is not equal to x, the FE_INEXACT
exception is
raised. nearbyint
performs the same operation, but does not set the
FE_INEXACT
exception.
This intrinsic is the same as the GCC built-in function __builtin_rint
.
float
core.math.rndtol (float x)
¶double
core.math.rndtol (double x)
¶real
core.math.rndtol (real x)
¶Returns x rounded to a long value using the current rounding mode.
If the integer value of x is greater than long.max
, the result
is indeterminate.
This intrinsic is the same as the GCC built-in function
__builtin_llround
.
float
core.math.sin (float x)
¶double
core.math.sin (double x)
¶real
core.math.sin (real x)
¶Returns sine of x, where x is in radians. The return value is undefined if x is greater than 2^{64}.
This intrinsic is the same as the GCC built-in function __builtin_sin
.
float
core.math.sqrt (float x)
¶double
core.math.sqrt (double x)
¶real
core.math.sqrt (real x)
¶Compute the sqrt of x.
This intrinsic is the same as the GCC built-in function __builtin_sqrt
.
T
core.math.toPrec (T)(float f)
¶T
core.math.toPrec (T)(double f)
¶T
core.math.toPrec (T)(real f)
¶Round f to a specific precision.
In floating-point operations, D language types specify only a minimum
precision, not a maximum. The toPrec
function forces rounding of the
argument f to the precision of the specified floating point type
T
. The rounding mode used is inevitably target-dependent, but will be
done in a way to maximize accuracy. In most cases, the default is
round-to-nearest.