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. |
std::string s11n::io::strtool::STPrivate::from_string | ( | const char * | str, | |
const char * | ||||
) | throw () [inline] |
std::string s11n::io::strtool::STPrivate::from_string | ( | const std::string & | str, | |
const std::string & | ||||
) | throw () [inline] |
value_type s11n::io::strtool::STPrivate::from_string | ( | const std::string & | str, | |
const value_type & | errorVal | |||
) | throw () [inline] |
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.
std::string s11n::io::strtool::STPrivate::to_string | ( | const std::string & | obj | ) | throw () [inline] |
std::string s11n::io::strtool::STPrivate::to_string | ( | const char * | obj | ) | throw () [inline] |
std::string s11n::io::strtool::STPrivate::to_string | ( | const value_type & | obj | ) | throw () [inline] |
Returns a string representation of the given object, which must be ostreamble.
Definition at line 58 of file strtool.hpp.