Function fmtSliceEscapeLower [src]
Return a Formatter for a []const u8 where every non-printable ASCII
character is escaped as \xNN, where NN is the character in lowercase
hexadecimal notation.
Prototype
pub fn fmtSliceEscapeLower(bytes: []const u8) std.fmt.Formatter(formatSliceEscapeLower)
Parameters
bytes: []const u8
Source
pub fn fmtSliceEscapeLower(bytes: []const u8) std.fmt.Formatter(formatSliceEscapeLower) {
return .{ .data = bytes };
}