|
| template<typename T > |
| void | append (const T &i, String &target) |
| |
| template<typename T > |
| String | toString (const T &i) |
| | fallback template for general purpose using Boost::Karma; more specializations below More...
|
| |
| void | appendLowP (float f, String &target) |
| |
| String | toStringLowP (float f) |
| | low precision (3 fractional digits) conversion to string (Karma default) More...
|
| |
| void | appendLowP (double d, String &target) |
| |
| String | toStringLowP (double d) |
| | low precision (3 fractional digits) conversion to string (Karma default) More...
|
| |
| void | appendLowP (long double ld, String &target) |
| | low precision (3 fractional digits) conversion to string (Karma default) More...
|
| |
| String | toStringLowP (long double ld) |
| | low precision (3 fractional digits) conversion to string (Karma default) More...
|
| |
| void | append (float f, String &target) |
| | high precision (6 fractional digits) conversion to String More...
|
| |
| String | toString (float f) |
| | high precision (6 fractional digits) conversion to String More...
|
| |
| void | append (double d, String &target) |
| | high precision (15 fractional digits) conversion to String More...
|
| |
| String | toString (double d) |
| | high precision (15 fractional digits) conversion to String More...
|
| |
| void | append (long double ld, String &target) |
| | high precision (15 fractional digits) conversion to String More...
|
| |
| String | toString (long double ld) |
| | high precision (15 fractional digits) conversion to String More...
|
| |
| void | append (const DataValue &d, bool full_precision, String &target) |
| |
| String | toString (const DataValue &d, bool full_precision) |
| |
| String | toString (const char c) |
| |
| String | toString (const std::string &s) |
| |
| String | toString (const char *s) |
| |
| String | toString () |
| | Other toString functions (different number of arguments) More...
|
| |
| String | toString (const char *s, size_t length) |
| |