substr(size_type pos, size_type size)
|
string substr_(container, pos, length)
|
Substr_
|
int compare(string)
|
int string_compare_(container, another_string)
|
StringCompare_
|
int compare(char*)
|
int string_compare_(container, another_string)
|
StringCompare_
|
int compare(size_type pos, size_type size, string)
|
int string_compare_(container, pos, size, another_string)
|
StringCompare_
|
int compare(size_type pos, size_type size, string, size_type length)
|
int string_compare_(container, pos, size, another_string, length)
|
StringCompare_
|
string& append(const string&)
|
string& append_(container, another_string)
|
Append_
|
string& append(charT*)
|
string& append_(container, another_string)
|
Append_
|
string& append(string, size_type pos, size_type size)
|
string& append_(container, other_string, pos, size)
|
Append_
|
string& append(charT*, size_type size)
|
string& append_(container, another_string, length)
|
Append_
|
string& append(size_type size, charT)
|
string& append_(container, size, char)
|
Append_
|
string& append(iterator begin, iterator end)
|
string& append_(container, begin, end)
|
Append_
|
string& insert(size_type pos, charT*)
|
string& string_insert_(container, pos, other_string)
|
StringInsert_
|
string& insert(size_type pos, charT*, size_type n)
|
string& string_insert_(container, pos, other_string, n)
|
StringInsert_
|
string& insert(size_type pos, size_type n, charT c)
|
string& string_insert_(container, pos, n, c)
|
StringInsert_
|
string& insert(size_type pos, const string&)
|
string& string_insert_(container, pos, other_string)
|
StringInsert_
|
string& insert(size_type pos, const string&, size_type pos1, size_type n)
|
string& string_insert_(container, pos, other_string, pos1, n)
|
StringInsert_
|
string& erase(size_type pos=0, size_type n=npos)
|
string& string_erase_(container, pos, n)
|
StringErase_
|
string& assign(const string&)
|
string& string_assign_(container, another_string)
|
StringAssign_
|
string& assign(const charT*)
|
string& string_assign_(container, another_string)
|
StringAssign_
|
string& assign(const string&, size_type pos, size_type n)
|
string& string_assign_(container, another_string, pos, n)
|
StringAssign_
|
string& assign(const charT*, size_type n)
|
string& string_assign_(container, another_string, n)
|
StringAssign_
|
string& assign(size_type n, charT c)
|
string& string_assign_(container, n, c)
|
StringAssign_
|
string& assign(iterator first, iterator last)
|
string& string_assign_(container, first, last)
|
StringAssign_
|
string& replace(size_type pos, size_type n, const string&)
|
string& string_replace_(container, pos, n, another_string)
|
StringReplace_
|
string& replace(size_type pos, size_type n, const charT*, size_type n1)
|
string& string_replace_(container, pos, n, another_string, n1)
|
StringReplace_
|
string& replace(size_type pos, size_type n, const charT*)
|
string& string_replace_(container, pos, n, another_string)
|
StringReplace_
|
string& replace(size_type pos, size_type n, size_type n1, charT c)
|
string& string_replace_(container, pos, n, n1, c)
|
StringReplace_
|
string& replace(iterator first, iterator last, const string&)
|
string& string_replace_(container, first, last, another_string)
|
StringReplace_
|
string& replace(iterator first, iterator last, const charT*, size_type n)
|
string& string_replace_(container, first, last, another_string, n)
|
StringReplace_
|
string& replace(iterator first, iterator last, const charT*)
|
string& string_replace_(container, first, last, another_string)
|
StringReplace_
|
string& replace(iterator first, iterator last, size_type n, charT c)
|
string& string_replace_(container, first, last, n, c)
|
StringReplace_
|
string& replace(iterator first, iterator last, iterator f, iterator l)
|
string& string_replace_(container, first, last, f, l)
|
StringReplace_
|
const charT* c_str()
|
const charT* c_str_(container)
|
CStr_
|
const charT* data()
|
const charT* string_data_(container)
|
StringData_
|
size_type copy(charT* buf, size_type n, size_type pos = 0)
|
size_type string_copy_(container, buf, n, pos); size_type string_copy_(container, buf, n)
|
StringCopy_
|
size_type find(charT* s, size_type pos, size_type n)
|
size_type string_find_(container, s, pos, n)
|
StringFind_
|
size_type find(charT* s, size_type pos=0)
|
size_type string_find_(container, s, pos); size_type string_find_(container, s)
|
StringFind_
|
size_type find(const string& s, size_type pos=0)
|
size_type string_find_(container, s, pos); size_type string_find_(container, s)
|
StringFind_
|
size_type find(charT c, size_type pos=0)
|
size_type string_find_(container, c, pos); size_type string_find_(container, c)
|
StringFind_
|
size_type rfind(charT* s, size_type pos, size_type n)
|
size_type string_rfind_(container, s, pos, n)
|
StringRFind_
|
size_type rfind(charT* s, size_type pos=npos)
|
size_type string_rfind_(container, s, pos); size_type string_rfind_(container, s)
|
StringRFind_
|
size_type rfind(const string& s, size_type pos=npos)
|
size_type string_rfind_(container, s, pos); size_type string_rfind_(container, s)
|
StringRFind_
|
size_type rfind(charT c, size_type pos=npos)
|
size_type string_rfind_(container, c, pos); size_type string_rfind_(container, c)
|
StringRFind_
|
size_type find_first_of(charT* s, size_type pos, size_type n)
|
size_type find_first_of_(container, s, pos, n)
|
StringFindFirstOf_
|
size_type find_first_of(charT* s, size_type pos=0)
|
size_type find_first_of_(container, s, pos); size_type find_first_of_(container, s)
|
StringFindFirstOf_
|
size_type find_first_of(const string& s, size_type pos=0)
|
size_type find_first_of_(container, s, pos); size_type find_first_of_(container, s)
|
StringFindFirstOf_
|
size_type find_first_of(charT c, size_type pos=0)
|
size_type find_first_of_(container, c, pos); size_type find_first_of_(container, c)
|
StringFindFirstOf_
|
size_type find_first_not_of(charT* s, size_type pos, size_type n)
|
size_type find_first_not_of_(container, s, pos, n)
|
StringFindFirstNotOf_
|
size_type find_first_not_of(charT* s, size_type pos=0)
|
size_type find_first_not_of_(container, s, pos); size_type find_first_not_of_(container, s)
|
StringFindFirstNotOf_
|
size_type find_first_not_of(const string& s, size_type pos=0)
|
size_type find_first_not_of_(container, s, pos); size_type find_first_not_of_(container, s)
|
StringFindFirstNotOf_
|
size_type find_first_not_of(charT c, size_type pos=0)
|
size_type find_first_not_of_(container, c, pos); size_type find_first_not_of_(container, c)
|
StringFindFirstNotOf_
|
size_type find_last_of(charT* s, size_type pos, size_type n)
|
size_type find_last_of_(container, s, pos, n)
|
StringFindLastOf_
|
size_type find_last_of(charT* s, size_type pos=npos)
|
size_type find_last_of_(container, s, pos); size_type find_last_of_(container, s)
|
StringFindLastOf_
|
size_type find_last_of(const string& s, size_type pos=npos)
|
size_type find_last_of_(container, s, pos); size_type find_last_of_(container, s)
|
StringFindLastOf_
|
size_type find_last_of(charT c, size_type pos=npos)
|
size_type find_last_of_(container, c, pos); size_type find_last_of_(container, c)
|
StringFindLastOf_
|
size_type find_last_not_of(charT* s, size_type pos, size_type n)
|
size_type find_last_not_of_(container, s, pos, n)
|
StringFindLastNotOf_
|
size_type find_last_not_of(charT* s, size_type pos=npos)
|
size_type find_last_not_of_(container, s, pos); size_type find_last_of_(container, s)
|
StringFindLastNotOf_
|
size_type find_last_not_of(const string& s, size_type pos=npos)
|
size_type find_last_not_of_(container, s, pos); size_type find_last_not_of_(container, s)
|
StringFindLastNotOf_
|
size_type find_last_not_of(charT c, size_type pos=npos)
|
size_type find_last_not_of_(container, c, pos); size_type find_last_not_of_(container, c)
|
StringFindLastNotOf_
|