|
template<class Target , class Source > |
Target | to (const Source &arg) |
| Converts an object of type Source to an object of type Target .
|
|
template<class Source > |
std::string | to_string (const Source &arg) |
| Converts an object of type Source to a string.
|
|
template<class Source > |
std::string | to_string (const Source &arg, int precision) |
| Converts an object of type Source to a string.
|
|
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) |
|
template<class Target , class Source >
Target SLHAea::to |
( |
const Source & |
arg | ) |
|
|
inline |
Converts an object of type Source
to an object of type Target
.
- Parameters
-
arg | Object that will be converted. |
- Returns
- Result of the conversion of
arg
to Target
.
This function is a wrapper for boost::lexical_cast<Target>()
.
Definition at line 50 of file slhaea.h.