fn format(self: Const, comptime fmt: []const u8, options: std.fmt.FormatOptions, out_stream: anytype) !void
[src]
To allow std.fmt.format
to work with this type. If the integer is larger than pow(2, 64 * @sizeOf(usize) * 8), this function will fail to print the string, printing "(BigInt)" instead of a number. This is because the rendering algorithm requires reversing a string, which requires O(N) memory. See
toStringand
toStringAlloc` for a way to print big integers without failure.