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 84 of file strtool.hpp. |
|
Convenience/efficiency overload.
Definition at line 76 of file strtool.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 42 of file strtool.hpp. Referenced by s11n::Detail::variant::cast_to(), and s11n::io::strtool::from(). |
|
Convenience/efficiency overload.
Definition at line 100 of file strtool.hpp. |
|
Convenience/efficiency overload.
Definition at line 92 of file strtool.hpp. |
|
Returns a string representation of the given object, which must be ostreamble.
Definition at line 58 of file strtool.hpp. Referenced by s11n::Detail::variant::operator=(), s11n::io::strtool::to(), and s11n::Detail::variant::variant(). |