Searched defs:string_wrapper (Results 1 – 1 of 1) sorted by relevance
19 struct string_wrapper struct21 std::string str;30 string_wrapper(const std::string& str_in) : str(str_in) {} in string_wrapper() argument31 string_wrapper(std::string&& str_in) : str(std::move(str_in)) {} in string_wrapper() function33 operator const std::string&() const volatile& in operator const std::string&()37 operator std::string&&() && in operator std::string&&()42 bool operator==(const string_wrapper& r) const in operator ==()50 bool operator<(const string_wrapper& r) const in operator <()54 bool operator==(const std::string& r) const in operator ==()58 bool operator!=(const std::string& r) const in operator !=()[all …]