|
template<class _Elem , class _Traits , class _Alloc > |
_STD_BEGIN basic_istream< _Elem, _Traits > & | operator>> (basic_istream< _Elem, _Traits > &&_Istr, basic_string< _Elem, _Traits, _Alloc > &_Str) |
|
template<class _Elem , class _Traits , class _Alloc > |
basic_istream< _Elem, _Traits > & | getline (basic_istream< _Elem, _Traits > &&_Istr, basic_string< _Elem, _Traits, _Alloc > &_Str, const _Elem _Delim) |
|
template<class _Elem , class _Traits , class _Alloc > |
basic_istream< _Elem, _Traits > & | getline (basic_istream< _Elem, _Traits > &&_Istr, basic_string< _Elem, _Traits, _Alloc > &_Str) |
|
template<class _Elem , class _Traits , class _Alloc > |
basic_istream< _Elem, _Traits > & | operator>> (basic_istream< _Elem, _Traits > &_Istr, basic_string< _Elem, _Traits, _Alloc > &_Str) |
|
template<class _Elem , class _Traits , class _Alloc > |
basic_istream< _Elem, _Traits > & | getline (basic_istream< _Elem, _Traits > &_Istr, basic_string< _Elem, _Traits, _Alloc > &_Str, const _Elem _Delim) |
|
template<class _Elem , class _Traits , class _Alloc > |
basic_istream< _Elem, _Traits > & | getline (basic_istream< _Elem, _Traits > &_Istr, basic_string< _Elem, _Traits, _Alloc > &_Str) |
|
template<class _Elem , class _Traits , class _Alloc > |
basic_ostream< _Elem, _Traits > & | operator<< (basic_ostream< _Elem, _Traits > &_Ostr, const basic_string< _Elem, _Traits, _Alloc > &_Str) |
|
int | stoi (const string &_Str, size_t *_Idx=0, int _Base=10) |
|
long | stol (const string &_Str, size_t *_Idx=0, int _Base=10) |
|
unsigned long | stoul (const string &_Str, size_t *_Idx=0, int _Base=10) |
|
_Longlong | stoll (const string &_Str, size_t *_Idx=0, int _Base=10) |
|
_ULonglong | stoull (const string &_Str, size_t *_Idx=0, int _Base=10) |
|
float | stof (const string &_Str, size_t *_Idx=0) |
|
double | stod (const string &_Str, size_t *_Idx=0) |
|
long double | stold (const string &_Str, size_t *_Idx=0) |
|
int | stoi (const wstring &_Str, size_t *_Idx=0, int _Base=10) |
|
long | stol (const wstring &_Str, size_t *_Idx=0, int _Base=10) |
|
unsigned long | stoul (const wstring &_Str, size_t *_Idx=0, int _Base=10) |
|
_Longlong | stoll (const wstring &_Str, size_t *_Idx=0, int _Base=10) |
|
_ULonglong | stoull (const wstring &_Str, size_t *_Idx=0, int _Base=10) |
|
float | stof (const wstring &_Str, size_t *_Idx=0) |
|
double | stod (const wstring &_Str, size_t *_Idx=0) |
|
long double | stold (const wstring &_Str, size_t *_Idx=0) |
|
string | to_string (int _Val) |
|
string | to_string (unsigned int _Val) |
|
string | to_string (long _Val) |
|
string | to_string (unsigned long _Val) |
|
string | to_string (_Longlong _Val) |
|
string | to_string (_ULonglong _Val) |
|
string | to_string (long double _Val) |
|
string | to_string (double _Val) |
|
string | to_string (float _Val) |
|
wstring | to_wstring (int _Val) |
|
wstring | to_wstring (unsigned int _Val) |
|
wstring | to_wstring (long _Val) |
|
wstring | to_wstring (unsigned long _Val) |
|
wstring | to_wstring (_Longlong _Val) |
|
wstring | to_wstring (_ULonglong _Val) |
|
wstring | to_wstring (long double _Val) |
|
wstring | to_wstring (double _Val) |
|
wstring | to_wstring (float _Val) |
|