BPPrint
General object hashing library for C++
|
Information about a single format specification. More...
#include <Format.hpp>
Public Attributes | |
std::string | prefix |
The string before the format specification. More... | |
std::string | suffix |
The string after the format specification. More... | |
std::string | format |
The format specification itself, except for. More... | |
char | length [3] |
The length specifier. More... | |
char | spec |
The type specifier character. More... | |
Information about a single format specification.
This stores a piece of a format string (such as "%d" or "%12.8e"), as well as what came before it and what comes after it in the format string
Definition at line 18 of file Format.hpp.
std::string bpprint::detail::FormatInfo::format |
The format specification itself, except for.
Definition at line 28 of file Format.hpp.
char bpprint::detail::FormatInfo::length[3] |
The length specifier.
Definition at line 31 of file Format.hpp.
std::string bpprint::detail::FormatInfo::prefix |
The string before the format specification.
Definition at line 21 of file Format.hpp.
char bpprint::detail::FormatInfo::spec |
The type specifier character.
Definition at line 34 of file Format.hpp.
std::string bpprint::detail::FormatInfo::suffix |
The string after the format specification.
Definition at line 24 of file Format.hpp.