|
rapidyaml
0.13.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. More... | |
| 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 More... | |
| 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 More... | |
| 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 519 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 538 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 557 of file format.hpp.