const FormatFlags = struct
const FormatFlags = struct { comma: bool = false, space: bool = false, percent: bool = false, fn onlyPercent(f: FormatFlags) bool { return !f.comma and !f.space and f.percent; } }