BigInt.toString

void toString(Writer)(scope ref Writer sink, string formatString) const

Convert the BigInt to string, passing it to the given sink.

Parameters

sinkAn OutputRange for accepting possibly piecewise segments of the formatted string.
formatStringA format string specifying the output format. Available output formats:,
"d" Decimal
"o" Octal
"x" Hexadecimal, lower case
"X" Hexadecimal, upper case
"s" Default formatting (same as "d")
null Default formatting (same as "d")
void toString(Writer)(scope ref Writer sink, scope const ref FormatSpec!char f) const

ditto

void toString(scope void delegate(scope const(char)[]) sink, string formatString) const

ditto

void toString(scope void delegate(scope const(char)[]) sink, scope const ref FormatSpec!char f) const

ditto