Function fmtIdFlags [src]
Return a Formatter for a Zig identifier, escaping it with @"" syntax if needed.
See also fmtId.
Prototype
pub fn fmtIdFlags(bytes: []const u8, flags: FormatId.Flags) FormatId
Parameters
bytes: []const u8
flags: FormatId.Flags
Source
pub fn fmtIdFlags(bytes: []const u8, flags: FormatId.Flags) FormatId {
return .{ .bytes = bytes, .flags = flags };
}