qxLib
|
std::basic_format_string wrapper that performs additional compile time checks More...
#include <format_string.h>
Public Member Functions | |
template<class T > | |
requires std::convertible_to< const T &, qx::basic_string_view< char_t > > consteval | basic_format_string_strong_checks (const T &value) |
basic_format_string object constructor More... | |
Static Public Member Functions | |
template<class T > | |
static consteval const T & | parse_format_string (const T &value) |
Check braces balance and args num. More... | |
std::basic_format_string wrapper that performs additional compile time checks
Checks braces balance and matching pairs of braces to the number of arguments in exchange for some format features, such as nested replacement fields
char_t | - char type |
args_t | - template parameter pack type |
Definition at line 28 of file format_string.h.
requires std::convertible_to< const T &, qx::basic_string_view< char_t > > consteval qx::basic_format_string_strong_checks< char_t, args_t >::basic_format_string_strong_checks | ( | const T & | value | ) |
basic_format_string object constructor
T | - string view convertible type |
value | - format string to check |
Definition at line 16 of file format_string.inl.
|
static |
Check braces balance and args num.
T | - string view convertible type |
value | - format string to check |
- | save format string as input |
Definition at line 23 of file format_string.inl.