|
template<class Target , class Source > |
Target | to (const Source &arg) |
| Converts an object of type Source to an object of type Target . More...
|
|
template<class Source > |
std::string | to_string (const Source &arg) |
| Converts an object of type Source to a string. More...
|
|
template<class Source > |
std::string | to_string (const Source &arg, int precision) |
| Converts an object of type Source to a string. More...
|
|
bool | is_all_whitespace (const std::string &str) |
|
std::string | to_upper_copy (const std::string &str) |
|
void | trim_left (std::string &str) |
|
void | trim_right (std::string &str) |
|
std::ostream & | operator<< (std::ostream &os, const Line &line) |
|
std::ostream & | operator<< (std::ostream &os, const Block &block) |
|
std::ostream & | operator<< (std::ostream &os, const Coll &coll) |
|
std::ostream & | operator<< (std::ostream &os, const Key &key) |
|
std::istream & | operator>> (std::istream &is, Block &block) |
|
std::istream & | operator>> (std::istream &is, Coll &coll) |
|
bool | operator== (const Line &a, const Line &b) |
|
bool | operator< (const Line &a, const Line &b) |
|
bool | operator!= (const Line &a, const Line &b) |
|
bool | operator> (const Line &a, const Line &b) |
|
bool | operator<= (const Line &a, const Line &b) |
|
bool | operator>= (const Line &a, const Line &b) |
|
bool | operator== (const Block &a, const Block &b) |
|
bool | operator< (const Block &a, const Block &b) |
|
bool | operator!= (const Block &a, const Block &b) |
|
bool | operator> (const Block &a, const Block &b) |
|
bool | operator<= (const Block &a, const Block &b) |
|
bool | operator>= (const Block &a, const Block &b) |
|
bool | operator== (const Coll &a, const Coll &b) |
|
bool | operator< (const Coll &a, const Coll &b) |
|
bool | operator!= (const Coll &a, const Coll &b) |
|
bool | operator> (const Coll &a, const Coll &b) |
|
bool | operator<= (const Coll &a, const Coll &b) |
|
bool | operator>= (const Coll &a, const Coll &b) |
|