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
- Returns cosine of x. x is in radians.Bugs:Results are undefined if |x| >= 264.
- Returns sine of x. x is in radians.Bugs:Results are undefined if |x| >= 264.
- 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.
- 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.
- Compute square root of x.
- ditto
- ditto
- Compute n * 2exp
References: frexp
- Returns |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.
- Building block functions, they translate to a single x87 instruction.
Copyright Digital Mars 2000 - 2011.
| Page generated by
Ddoc on (no date time)