Function fmtIntSizeDec [src]

Return a Formatter for a u64 value representing a file size. This formatter represents the number as multiple of 1000 and uses the SI measurement units (kB, MB, GB, ...). Format option precision is ignored when value is less than 1kB

Prototype

pub fn fmtIntSizeDec(value: u64) std.fmt.Formatter(formatSizeDec)

Parameters

value: u64

Source

pub fn fmtIntSizeDec(value: u64) std.fmt.Formatter(formatSizeDec) { return .{ .data = value }; }