Ditto
1.0.14
|
namespace for Niels Lohmann More...
Typedefs | |
using | json = basic_json<> |
default JSON class More... | |
using | ordered_json = basic_json< nlohmann::ordered_map > |
ordered JSON class More... | |
Functions | |
NLOHMANN_BASIC_JSON_TPL_DECLARATION std::string | to_string (const NLOHMANN_BASIC_JSON_TPL &j) |
user-defined to_string function for JSON values More... | |
namespace for Niels Lohmann
namespace to hold default to_json
function
using nlohmann::json = typedef basic_json<> |
default JSON class
This type is the default specialization of the basic_json class which uses the standard template types.
using nlohmann::ordered_json = typedef basic_json<nlohmann::ordered_map> |
ordered JSON class
This type preserves the insertion order of object keys.
NLOHMANN_BASIC_JSON_TPL_DECLARATION std::string nlohmann::to_string | ( | const NLOHMANN_BASIC_JSON_TPL & | j | ) |
user-defined to_string function for JSON values
This function implements a user-defined to_string for JSON objects.
[in] | j | a JSON object |