Specifies the formatting character provided in the format string passed to StrFormat().
Synopsis
Declared in <absl/strings/str_format.h>
enum class FormatConversionChar : uint8_t;
Members
Name |
Description |
|
Character conversion. |
|
String conversion. |
|
Signed decimal integer conversion. |
|
Signed decimal integer conversion. |
|
Unsigned octal integer conversion. |
|
Unsigned decimal integer conversion. |
|
Unsigned hexadecimal integer conversion. |
|
Unsigned hexadecimal integer conversion, uppercase. |
|
Floating‐point conversion in decimal notation. |
|
Floating‐point conversion in decimal notation, uppercase. |
|
Floating‐point conversion in exponential notation. |
|
Floating‐point conversion in exponential notation, uppercase. |
|
Floating‐point conversion in decimal or exponential notation. |
|
Floating‐point conversion in decimal or exponential notation, uppercase. |
|
Floating‐point conversion in hexadecimal exponential notation. |
|
Floating‐point conversion in hexadecimal exponential notation, uppercase. |
|
Character‐count conversion. |
|
Pointer conversion. |
|
Default conversion for the deduced type. |
Created with MrDocs