| String Algorithms | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 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::string adobe::make_string | ( | const char * | a, | 
| const char * | b | ||
| ) | 
Definition at line 125 of file string.hpp.
| std::string adobe::make_string | ( | const char * | a, | 
| const char * | b, | ||
| const char * | c | ||
| ) | 
Definition at line 136 of file string.hpp.
| std::basic_string<CharT, Traits, Allocator>& std::operator<< | ( | std::basic_string< CharT, Traits, Allocator > & | out, | 
| const std::basic_string< CharT, Traits, Allocator > & | in | ||
| ) | 
Definition at line 49 of file string.hpp.
| std::basic_string<CharT, Traits, Allocator>& std::operator<< | ( | std::basic_string< CharT, Traits, Allocator > & | out_str, | 
| const CharT * | in_str | ||
| ) | 
Definition at line 65 of file string.hpp.

