Returns the number of decimal digits in a non-negative big integer
auto big = BigInt( "1234567890_1234567890_1234567890_1234567890_1234567890" ~ "1234567890_1234567890_1234567890_1234567890_1234567890_1"); assert(countDigits(big) == 101);
See Implementation
Returns the number of decimal digits in a non-negative big integer