log10 function

double log10(
  1. num x
)

Implementation

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