FormatFlagsBits
FormatFlagsBits
Description
Format flags for text output.
FMT_FLAG_NONE : No special formatting. FMT_FLAG_CHAR : Format as character. FMT_FLAG_HEX : Format as hexadecimal. FMT_FLAG_BINARY : Format as binary. FMT_FLAG_OCTAL : Format as octal. FMT_FLAG_SCIENTIFIC : Scientific notation for floats. FMT_FLAG_CAPS : Use capital letters for hex/scientific. FMT_FLAG_FORCE_CASE : Force case conversion (used with FMT_FLAG_CAPS) FMT_FLAG_HAS_PRECISION : Precision was specified in format string. FMT_FLAG_RAW : Read/write data in raw binary format FMT_FLAG_STRING : Read a single word, a quoted string (single or double quoted)
Usage example (Cross-references)
Usage examples (Cross-references)
- In
Io.h:67:
FMT_FLAG_RAW = 1 << 8,
FMT_FLAG_STRING = 1 << 9,
} FormatFlagsBits;
typedef u32 FormatFlags;
Last updated on