template<class charT, class traits, class Alloc> basic_string<charT, traits, Alloc> operator+(const basic_string<charT, traits, Alloc>& s1, const basic_string<charT, traits, Alloc>& s2)template<class charT, class traits, class Alloc> basic_string<charT, traits, Alloc> operator+(const charT* s1, const basic_string<charT, traits, Alloc>& s2)template<class charT, class traits, class Alloc> basic_string<charT, traits, Alloc> operator+(const basic_string<charT, traits, Alloc>& s1, const charT* s2)template<class charT, class traits, class Alloc> basic_string<charT, traits, Alloc> operator+(charT c, const basic_string<charT, traits, Alloc>& s2)template<class charT, class traits, class Alloc> basic_string<charT, traits, Alloc> operator+(const basic_string<charT, traits, Alloc>& s1, charT c)template<class charT, class traits, class Alloc> bool operator== (const charT* s1, const basic_string<charT, traits, Alloc>& s2)template<class charT, class traits, class Alloc> bool operator== (const basic_string<charT, traits, Alloc>& s1, const charT* s2)template<class charT, class traits, class Alloc> bool operator!= (const charT* s1, const basic_string<charT, traits, Alloc>& s2)template<class charT, class traits, class Alloc> bool operator!= (const basic_string<charT, traits, Alloc>& s1, const charT* s2)template<class charT, class traits, class Alloc> bool operator< (const charT* s1, const basic_string<charT, traits, Alloc>& s2)template<class charT, class traits, class Alloc> bool operator< (const basic_string<charT, traits, Alloc>& s1, const charT* s2)template<class charT, class traits, class Alloc> basic_istream<charT, traits>& operator>>(basic_istream<charT, traits>& is, basic_string<charT, traits, Alloc>& s)template<class charT, class traits, class Alloc> basic_ostream<charT, traits>& operator>>(basic_istream<charT, traits>& is, const basic_string<charT, traits, Alloc>& s) template<class charT, class traits, class Alloc> basic_istream<charT, traits>& getline(basic_istream<charT, traits>& is, basic_string<charT, traits, Alloc>& s, charT delim) Вы читаете Standard Template Library Programmer's Guide
