log10 function

double log10(
  1. double x
)

Implementation

double log10(double x) => math.log(x) / math.ln10;