log10

fnreal log10(real x) @safe pure nothrow @nogc

Calculate the base-10 logarithm of x.

x log10(x) divide by 0? invalid?
±0.0 -∞ yes no
<0.0 NaN no yes
+∞ +∞ no no
fndouble log10(double x) @safe pure nothrow @nogc

ditto

fnfloat log10(float x) @safe pure nothrow @nogc

ditto

fnreal log10(int x) @safe pure nothrow @nogc
deprecated `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.
fnreal log10(uint x) @safe pure nothrow @nogc
deprecated `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.
fnreal log10(long x) @safe pure nothrow @nogc
deprecated `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.
fnreal log10(ulong x) @safe pure nothrow @nogc
deprecated `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.