Searched defs:nullable_fixed_string (Results 1 – 1 of 1) sorted by relevance
107 struct nullable_fixed_string { struct108 bool is_null;109 char value[N];111 constexpr nullable_fixed_string(std::nullptr_t) : is_null {true}, value {} {} in nullable_fixed_string() function113 constexpr nullable_fixed_string(char const (&sv)[N]) : is_null {false} in nullable_fixed_string() function120 constexpr char const *c_str() const in c_str()