Go to the source code of this file.
|
| string | fl::operator+ (const char *lhs, const string &rhs) FL_NOEXCEPT |
| |
| template<typename T> |
| fl::enable_if<!fl::is_arithmetic< T >::value, string >::type | fl::operator+ (const char *lhs, const T &rhs) FL_NOEXCEPT |
| |
| string | fl::operator+ (const string &lhs, const char *rhs) FL_NOEXCEPT |
| |
| string | fl::operator+ (const string &lhs, const string &rhs) FL_NOEXCEPT |
| |
| template<typename T> |
| string | fl::operator+ (const string &lhs, const T &rhs) FL_NOEXCEPT |
| |
| template<typename T> |
| fl::enable_if<!fl::is_arithmetic< T >::value, string >::type | fl::operator+ (const T &lhs, const char *rhs) FL_NOEXCEPT |
| |
| template<typename T> |
| string | fl::operator+ (const T &lhs, const string &rhs) FL_NOEXCEPT |
| |
| template<typename T> |
| fl::string | fl::to_hex (T value, bool uppercase=false, bool pad_to_width=false) FL_NOEXCEPT |
| | Convert an integer value to hexadecimal string representation.
|
| |
| string | fl::to_string (float value, int precision) FL_NOEXCEPT |
| |
| template<typename T> |
| string | fl::to_string (T value) FL_NOEXCEPT |
| |