#include <json/config.h>
#include <clocale>
Go to the source code of this file.
|
| namespace | Json |
| | JSON (JavaScript Object Notation).
|
| |
|
| static char | Json::getDecimalPoint () |
| |
| static String | Json::codePointToUTF8 (unsigned int cp) |
| | Converts a unicode code-point to UTF-8.
|
| |
| static void | Json::uintToString (LargestUInt value, char *¤t) |
| | Converts an unsigned integer to string.
|
| |
| template<typename Iter > |
| Iter | Json::fixNumericLocale (Iter begin, Iter end) |
| | Change ',' to '.
|
| |
| template<typename Iter > |
| void | Json::fixNumericLocaleInput (Iter begin, Iter end) |
| |
| template<typename Iter > |
| Iter | Json::fixZerosInTheEnd (Iter begin, Iter end, unsigned int precision) |
| | Return iterator that would be the new end of the range [begin,end), if we were to delete zeros in the end of string, but not the last zero before '.
|
| |