|
rapidyaml 0.14.0
parse and emit YAML, and do it fast
|
Classes | |
| struct | c4::fmt::left_< T > |
| struct | c4::fmt::center_< T > |
| struct | c4::fmt::right_< T > |
Functions | |
| template<class T> | |
| left_< T > | c4::fmt::left (T val, size_t width, char padchar=' ') |
| tag type to mark an argument to be aligned left. | |
| template<class T> | |
| center_< T > | c4::fmt::center (T val, size_t width, char padchar=' ') |
| tag function to mark an argument to be aligned center | |
| template<class T> | |
| right_< T > | c4::fmt::right (T val, size_t width, char padchar=' ') |
| tag function to mark an argument to be aligned right | |
| left_< T > c4::fmt::left | ( | T | val, |
| size_t | width, | ||
| char | padchar = ' ' ) |
tag type to mark an argument to be aligned left.
| val | the argument to be aligned left |
| width | the length of the field |
| padchar | the padding character, defaults to ' ' |
Definition at line 515 of file format.hpp.
| center_< T > c4::fmt::center | ( | T | val, |
| size_t | width, | ||
| char | padchar = ' ' ) |
tag function to mark an argument to be aligned center
| val | the argument to be aligned center |
| width | the length of the field |
| padchar | the padding character, defaults to ' ' |
Definition at line 534 of file format.hpp.
| right_< T > c4::fmt::right | ( | T | val, |
| size_t | width, | ||
| char | padchar = ' ' ) |
tag function to mark an argument to be aligned right
| val | the argument to be aligned right |
| width | the length of the field |
| padchar | the padding character, defaults to ' ' |
Definition at line 553 of file format.hpp.