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