|
| template<class T > |
| boolalpha_ | boolalpha (T const &val=false) |
| | tag function to mark a variable to be written as an alphabetic boolean, ie as either true or false More...
|
| |
| template<class T > |
| integral_< T > | integral (T val, T radix=10) |
| | format an integral type with a custom radix More...
|
| |
| template<class T > |
| integral_< intptr_t > | integral (T const *val, T radix=10) |
| | format an integral type with a custom radix More...
|
| |
| template<class T > |
| integral_< intptr_t > | integral (std::nullptr_t, T radix=10) |
| | format an integral type with a custom radix More...
|
| |
| template<class T > |
| integral_< intptr_t > | hex (T *v) |
| | format the pointer as an hexadecimal value More...
|
| |
| template<class T > |
| integral_< intptr_t > | hex (T const *v) |
| | format the pointer as an hexadecimal value More...
|
| |
| template<class T > |
| integral_< T > | hex (T v) |
| |
| template<class T > |
| integral_< intptr_t > | oct (T const *v) |
| | format the pointer as an octal value More...
|
| |
| template<class T > |
| integral_< intptr_t > | oct (T *v) |
| | format the pointer as an octal value More...
|
| |
| template<class T > |
| integral_< T > | oct (T v) |
| | format the integral_ argument as an octal value More...
|
| |
| template<class T > |
| integral_< intptr_t > | bin (T const *v) |
| | format the pointer as a binary 0-1 value More...
|
| |
| template<class T > |
| integral_< intptr_t > | bin (T *v) |
| | format the pointer as a binary 0-1 value More...
|
| |
| template<class T > |
| integral_< T > | bin (T v) |
| | format the integral_ argument as a binary 0-1 value More...
|
| |
| template<class T > |
| integral_padded_< T > | zpad (T val, size_t num_digits) |
| | pad the argument with zeroes on the left, with decimal radix More...
|
| |
| template<class T > |
| integral_padded_< T > | zpad (integral_< T > val, size_t num_digits) |
| | pad the argument with zeroes on the left More...
|
| |
| integral_padded_< intptr_t > | zpad (std::nullptr_t, size_t num_digits) |
| | pad the argument with zeroes on the left More...
|
| |
| template<class T > |
| integral_padded_< intptr_t > | zpad (T const *val, size_t num_digits) |
| | pad the argument with zeroes on the left More...
|
| |
| template<class T > |
| integral_padded_< intptr_t > | zpad (T *val, size_t num_digits) |
| |
| template<class T > |
| overflow_checked_< T > | overflow_checked (T &val) |
| |
| template<class T > |
| real_< T > | real (T val, int precision, RealFormat_e fmt=FTOA_FLOAT) |
| |
| const_raw_wrapper | craw (cblob data, size_t alignment=alignof(max_align_t)) |
| | mark a variable to be written in raw binary format, using memcpy More...
|
| |
| const_raw_wrapper | raw (cblob data, size_t alignment=alignof(max_align_t)) |
| | mark a variable to be written in raw binary format, using memcpy More...
|
| |
| template<class T > |
| const_raw_wrapper | craw (T const &data, size_t alignment=alignof(T)) |
| | mark a variable to be written in raw binary format, using memcpy More...
|
| |
| template<class T > |
| const_raw_wrapper | raw (T const &data, size_t alignment=alignof(T)) |
| | mark a variable to be written in raw binary format, using memcpy More...
|
| |
| raw_wrapper | raw (blob data, size_t alignment=alignof(max_align_t)) |
| | mark a variable to be read in raw binary format, using memcpy More...
|
| |
| template<class T > |
| raw_wrapper | raw (T &data, size_t alignment=alignof(T)) |
| | mark a variable to be read in raw binary format, using memcpy More...
|
| |
| template<class T > |
| left_< T > | left (T val, size_t width, char padchar=' ') |
| | tag type to mark an argument to be aligned left. More...
|
| |
| template<class T > |
| center_< T > | center (T val, size_t width, char padchar=' ') |
| | tag function to mark an argument to be aligned center More...
|
| |
| template<class T > |
| right_< T > | right (T val, size_t width, char padchar=' ') |
| | tag function to mark an argument to be aligned right More...
|
| |
| template<class ... Args> |
| const_base64_wrapper | cbase64 (Args const &...args) |
| | mark a variable to be written in base64 format More...
|
| |
| const_base64_wrapper | cbase64 (csubstr s) |
| | mark a csubstr to be written in base64 format More...
|
| |
| template<class ... Args> |
| const_base64_wrapper | base64 (Args const &...args) |
| | mark a variable to be written in base64 format More...
|
| |
| const_base64_wrapper | base64 (csubstr s) |
| | mark a csubstr to be written in base64 format More...
|
| |
| template<class ... Args> |
| base64_wrapper | base64 (Args &... args) |
| | mark a variable to be read in base64 format More...
|
| |
| base64_wrapper | base64 (substr s) |
| | mark a variable to be read in base64 format More...
|
| |