Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.
Requires a signed-in GitHub account. This works well for small changes.
If you'd like to make larger changes you may want to consider using
a local clone.
core.math
Builtin mathematical intrinsics
Source core/math.d
License:
Authors:
Walter Bright,
Don Clugston
- pure nothrow @nogc @safe real
cos
(realx
); - Returns cosine of x. x is in radians.
Special Values x cos(x) invalid? NAN NAN yes ±∞ NAN yes Bugs:Results are undefined if |x| >= 264. - pure nothrow @nogc @safe real
sin
(realx
); - Returns sine of x. x is in radians.
Special Values x sin(x) invalid? NAN NAN yes ±0.0 ±0.0 no ±∞ NAN yes Bugs:Results are undefined if |x| >= 264. - pure nothrow @nogc @safe long
rndtol
(realx
); - 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.
- @nogc real
rndtonl
(realx
); - Returns x rounded to a long value using the FE_TONEAREST rounding mode. If the integer value of x is greater than long.max, the result is indeterminate.
- pure nothrow @nogc @safe float
sqrt
(floatx
); - Compute square root of x.
Special Values x sqrt(x) invalid? -0.0 -0.0 no <0.0 NAN yes +∞ +∞ no - pure nothrow @nogc @safe double
sqrt
(doublex
); - dittoCompute square root of x.
Special Values x sqrt(x) invalid? -0.0 -0.0 no <0.0 NAN yes +∞ +∞ no - pure nothrow @nogc @safe real
sqrt
(realx
); - dittoCompute square root of x.
Special Values x sqrt(x) invalid? -0.0 -0.0 no <0.0 NAN yes +∞ +∞ no - pure nothrow @nogc @safe real
ldexp
(realn
, intexp
); - Compute n * 2exp
References frexp
- pure nothrow @nogc @safe real
fabs
(realx
); - Returns |x|
Special Values x fabs(x) ±0.0 +0.0 ±∞ +∞ - pure nothrow @nogc @safe real
rint
(realx
); - 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.
- pure nothrow @nogc @safe real
yl2x
(realx
, realy
); - Building block functions, they translate to a single x87 instruction.
Copyright © 1999-2022 by the D Language Foundation | Page generated by
Ddoc on (no date time)