BigInt.toString
string toString() const pure @safeConverts BigInt to string (decimal by default).
Returns
Decimal string representation of the BigInt
void toString(Writer)(scope ref Writer sink, scope const ref FormatSpec!char f) constConverts BigInt to string with format specifier.
Parameters
sink | Output range to write to |
f | Format specifier (supports 'd', 's', 'x', 'X', 'o') |
void toString(Writer)(scope ref Writer sink, string formatString) constConverts BigInt to string with format string.
Parameters
sink | Output range to write to |
formatString | Format string |