Function fmtIntSizeBin [src]
Return a Formatter for a u64 value representing a file size.
This formatter represents the number as multiple of 1024 and uses the IEC
measurement units (KiB, MiB, GiB, ...).
Format option precision is ignored when value is less than 1KiB
Prototype
pub fn fmtIntSizeBin(value: u64) std.fmt.Formatter(formatSizeBin)
Parameters
value: u64
Source
pub fn fmtIntSizeBin(value: u64) std.fmt.Formatter(formatSizeBin) {
return .{ .data = value };
}