log
fn
real log(real x) @safe pure nothrow @nogcCalculate the natural logarithm of x.
| x | log(x) | divide by 0? | invalid? |
|---|---|---|---|
| ±0.0 | -∞ | yes | no |
| <0.0 | NaN | no | yes |
| +∞ | +∞ | no | no |
fn
double log(double x) @safe pure nothrow @nogcditto
fn
float log(float x) @safe pure nothrow @nogcditto
fn
real log(int x) @safe pure nothrow @nogcdeprecated `std.math.exponential.log` called with argument types `(int)` matches both "
~ "`log(real)`, `log(double)`, and `log(float)`. Cast argument to floating point type instead.
No documentation available for this declaration.
fn
real log(uint x) @safe pure nothrow @nogcdeprecated `std.math.exponential.log` called with argument types `(uint)` matches both "
~ "`log(real)`, `log(double)`, and `log(float)`. Cast argument to floating point type instead.
No documentation available for this declaration.
fn
real log(long x) @safe pure nothrow @nogcdeprecated `std.math.exponential.log` called with argument types `(long)` matches both "
~ "`log(real)`, `log(double)`, and `log(float)`. Cast argument to floating point type instead.
No documentation available for this declaration.
fn
real log(ulong x) @safe pure nothrow @nogcdeprecated `std.math.exponential.log` called with argument types `(ulong)` matches both "
~ "`log(real)`, `log(double)`, and `log(float)`. Cast argument to floating point type instead.
No documentation available for this declaration.