Class fmt_t¶
class fmt_t<T, t, width, prec> meta¶
template <typename T, char t = static_cast<char>(-1), int width = -1, int prec = -1>
struct fmt_t { … } Wrapper that carries a value together with printf-style format options.
| t | Conversion specifier character (e.g. 'f', 'e', 'x'). A value of -1 means "use the default specifier for the type". |
| width | Minimum field width ( -1 for none). |
| prec | Precision ( -1 for none). |
| T | Type of the wrapped value. |
variable value ¶
const T& value Fully qualified name: kfr::fmt_t<T, t, width, prec>::value
Declared at meta/string.hpp:66
Fully qualified name: kfr::fmt_t<T, t, width, prec>
Declared at meta/string.hpp:64
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.