Function fmtSliceHexLower [src]

Return a Formatter for a []const u8 where every byte is formatted as a pair of lowercase hexadecimal digits.

Prototype

pub fn fmtSliceHexLower(bytes: []const u8) std.fmt.Formatter(formatSliceHexLower)

Parameters

bytes: []const u8

Source

pub fn fmtSliceHexLower(bytes: []const u8) std.fmt.Formatter(formatSliceHexLower) { return .{ .data = bytes }; }