fn print(self: *Self, comptime fmt: []const u8, args: anytype) Error!void

An alternative to calling write that formats a value with std.fmt. This function does the usual punctuation and indentation formatting assuming the resulting formatted string represents a single complete value; e.g. "1", "[]", "[1,2]", not "1,2". This function may be useful for doing your own number formatting.

Parameters

self: *Self,
fmt: []const u8,
args: anytype,