Returns the decimal string representation of the BigInt.
auto str = "-34010447314490204552169750449563978034784726557588085989975288830070948234680"; auto integer = BigInt!4(str); assert(integer.toString == str); integer = BigInt!4.init; assert(integer.toString == "0");
Returns the decimal string representation of the BigInt.