Specifies modifications to the conversion of the format string, through use of one or more format flags in the source format string.
Synopsis
Declared in <absl/strings/str_format.h>
class FormatConversionSpec;
Member Functions
Name |
Description |
Returns the underlying conversion character. |
|
Indicates whether an "alternate" format is applied to the result for this conversion character. |
|
Indicates whether the result should be left justified for this conversion character in the format string. |
|
Indicates whether a sign column is prepended to the result for this conversion character in the format string, even if the result is positive. |
|
Indicates whether a mandatory sign column is added to the result for this conversion character. |
|
Indicates whether zeroes should be prepended to the result for this conversion character instead of spaces. |
|
Indicates that width and precision are not specified, and no additional flags are set for this conversion character in the format string. |
|
Returns the specified precision (through use of the '.' character followed by a non‐zero integer value or '*' character) of the conversion character. |
|
Returns the specified width (indicated through use of a non‐zero integer value or '*' character) of the conversion character. |
Friends
Name |
Description |
|
Created with MrDocs