|
Functions |
std::string | make_string (const char *a, const char *b) |
std::string | make_string (const char *a, const char *b, const char *c) |
template<typename CharT , class Traits , class Allocator > |
std::basic_string< CharT,
Traits, Allocator > & | operator<< (std::basic_string< CharT, Traits, Allocator > &out, const std::basic_string< CharT, Traits, Allocator > &in) |
template<typename CharT , class Traits , class Allocator > |
std::basic_string< CharT,
Traits, Allocator > & | operator<< (std::basic_string< CharT, Traits, Allocator > &out_str, const CharT *in_str) |
Detailed Description
These operators were moved to namespace std because string is in this namespace. Apparently sometimes CW 9.1 cannot find the correct operator without using ADL.
Function Documentation
std::basic_string<CharT, Traits, Allocator>& std::operator<< |
( |
std::basic_string< CharT, Traits, Allocator > & |
out, |
|
|
const std::basic_string< CharT, Traits, Allocator > & |
in |
|
) |
| |
std::basic_string<CharT, Traits, Allocator>& std::operator<< |
( |
std::basic_string< CharT, Traits, Allocator > & |
out_str, |
|
|
const CharT * |
in_str |
|
) |
| |
|