menu
stdc package
documentation
math.dart
MathStdc
log10 method
log10 method
dark_mode
light_mode
log10
method
double
log10
(
double
x
)
Computes the base-10 logarithm of
x
.
Implementation
double log10(double x) => dart_math.log(x) / dart_math.ln10;
stdc package
documentation
math
MathStdc
log10 method
MathStdc extension on
Stdc