log10 property

double get log10

Implementation

double get log10 => (this == 0) ? 0 : log(this) / ln10;