fmt
Type that allows specifying its format value using a format string.
Usage
The following code reads a u32 from the data and formats it as an upper case hexadecimal value with a minimum of 8 digits which is prefixed by 0x.
The format string is the same as passed to std::format()
and follows the libfmt specification.
Types
type::Formatted
type::Formatted
Arbitrarily formatted type
<T>
: Type to format<FormatString>
: libfmt format string to format the value
Last updated