15#ifndef QCONFIG_HELPERS_H
16#define QCONFIG_HELPERS_H
22#define qon_mcat(a, b) a##b
23#define qon_mxcat(a, b) qon_mcat(a, b)
24#define qon_mcat3(a, b, c) a##b##c
25#define qon_mxcat3(a, b, c) qon_mcat3(a, b, c)
27#define qon_mxstr(a) qon_mstr(a)
28#define qon_mexp(...) __VA_ARGS__
29#define qon_mxexp(X) qon_mexp X
37 if constexpr (std::is_same_v<T, float> || std::is_same_v<T, double>) {
63 return val ?
"true" :
"false";
std::string print_type< char >(char val, bool precise)
std::string print_type< uint8_t >(uint8_t val, bool precise)
std::string print_type< int8_t >(int8_t val, bool precise)
std::string print_type(T val, bool precise=false)
std::string print_type< bool >(bool val, bool precise)
std::string to_string(gsl::span< T, Size > span)