Home
last modified time | relevance | path

Searched defs:nullable_fixed_string (Results 1 – 1 of 1) sorted by relevance

/arkcompiler/runtime_core/taihe/runtime/include/taihe/platform/
Dani.hpp107 struct nullable_fixed_string { struct
108 bool is_null;
109 char value[N];
111 constexpr nullable_fixed_string(std::nullptr_t) : is_null {true}, value {} {} in nullable_fixed_string() function
113 constexpr nullable_fixed_string(char const (&sv)[N]) : is_null {false} in nullable_fixed_string() function
120 constexpr char const *c_str() const in c_str()