Functions | |
template<typename value_type> | |
value_type | from_string (const std::string &str, const value_type &errorVal) throw () |
Lexically casts str to a value_type, returning errorVal if the conversion fails. | |
template<typename value_type> | |
std::string | to_string (const value_type &obj) throw () |
Returns a string representation of the given object, which must be ostreamble. | |
std::string | from_string (const std::string &str, const std::string &) throw () |
Convenience/efficiency overload. | |
std::string | from_string (const char *str, const char *) throw () |
Convenience/efficiency overload. | |
std::string | to_string (const char *obj) throw () |
Convenience/efficiency overload. | |
std::string | to_string (const std::string &obj) throw () |
Convenience/efficiency overload. |
|
Convenience/efficiency overload.
Definition at line 151 of file variant.hpp. |
|
Convenience/efficiency overload.
Definition at line 143 of file variant.hpp. |
|
Lexically casts str to a value_type, returning errorVal if the conversion fails. TODO: implement the following suggestion from Kai Unger <kai.unger@hacon.de> (21 Sept 2004): When the cast is done, you should check if there are unread characters left. For example, casting "1.2this_definitly_is_not_a_number" to double will not result in returning the error value, because conversion of "1.2" to 1.2d succeeds and the rest of the string is ignored. Definition at line 106 of file variant.hpp. |
|
Convenience/efficiency overload.
Definition at line 167 of file variant.hpp. |
|
Convenience/efficiency overload.
Definition at line 159 of file variant.hpp. |
|
Returns a string representation of the given object, which must be ostreamble.
Definition at line 122 of file variant.hpp. |