log10 function

double log10(
  1. num x
)

Converts x to a double and returns the common logarithm of the value.

WARNING!!! This function is not such accurate as low-level implementation! WARNING!!! Some unit-tests fail because of that!

Implementation

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