Searched defs:string_pair (Results 1 – 1 of 1) sorted by relevance
4857 struct string_pair struct4859 StrT first;4860 StrT second;4863 string_pair(StrT f) : first(std::move(f)) {} in string_pair() argument4864 string_pair(StrT f, StrT s) in string_pair() function4867 string_pair(const char (&s)[N]) : first(s, N-1) {} in string_pair() function4869 size_t size() const {return first.size() + second.size();} in size()4870 StrT full() const {return first + second;} in full()4871 StrT move_full() {return std::move(first) + std::move(second);} in move_full()