rapidyaml  0.11.0
parse and emit YAML, and do it fast
Alignment specifiers

Classes

struct  c4::fmt::left_< T >
 
struct  c4::fmt::right_< T >
 

Functions

template<class T >
left_< T > c4::fmt::left (T val, size_t width, char padchar=' ')
 mark an argument to be aligned left More...
 
template<class T >
right_< T > c4::fmt::right (T val, size_t width, char padchar=' ')
 mark an argument to be aligned right More...
 

Detailed Description

Function Documentation

◆ left()

template<class T >
left_<T> c4::fmt::left ( val,
size_t  width,
char  padchar = ' ' 
)

mark an argument to be aligned left

Definition at line 525 of file format.hpp.

526 {
527  return left_<T>(val, width, padchar);
528 }

◆ right()

template<class T >
right_<T> c4::fmt::right ( val,
size_t  width,
char  padchar = ' ' 
)

mark an argument to be aligned right

Definition at line 532 of file format.hpp.

533 {
534  return right_<T>(val, width, padchar);
535 }