The BigInt to convert to a decimal string.
A string that represents the BigInt as a decimal number.
auto x = BigInt("123"); x *= 1000; x += 456; auto xstr = x.toDecimalString(); assert(xstr == "123456");
See Implementation