JSON for Modern C++

These pages contain the API documentation of JSON for Modern C++, a C++11 header-only JSON class.

Contents

  • @link nlohmann::basic_json basic_json class @endlink
  • Functions
    • object inspection
      • @link nlohmann::basic_json::dump dump @endlink -- value serialization
      • @link nlohmann::basic_json::type type @endlink -- type of the value
      • @link nlohmann::basic_json::is_primitive is_primitive @endlink, @link nlohmann::basic_json::is_structured is_structured @endlink, @link nlohmann::basic_json::is_null is_null @endlink, @link nlohmann::basic_json::is_boolean is_boolean @endlink, @link nlohmann::basic_json::is_number is_number @endlink, @link nlohmann::basic_json::is_number_integer is_number_integer @endlink, @link nlohmann::basic_json::is_number_unsigned is_number_unsigned @endlink, @link nlohmann::basic_json::is_number_float is_number_float @endlink, @link nlohmann::basic_json::is_object is_object @endlink, @link nlohmann::basic_json::is_array is_array @endlink, @link nlohmann::basic_json::is_string is_string @endlink, @link nlohmann::basic_json::is_discarded is_discarded @endlink -- check for value type
      • @link nlohmann::basic_json::operator value_t() const operator value_t @endlink -- type of the value (implicit conversion)
    • value access
      • @link nlohmann::basic_json::get get @endlink -- get a value
      • @link nlohmann::basic_json::get_ptr get_ptr @endlink -- get a value pointer
      • @link nlohmann::basic_json::get_ref get_ref @endlink -- get a value reference
      • @link nlohmann::basic_json::operator ValueType() const operator ValueType @endlink -- get a value (implicit conversion)
    • lexicographical comparison operators
    • serialization
    • deserialization
  • Types
    • @link nlohmann::basic_json::array_t arrays @endlink
    • @link nlohmann::basic_json::object_t objects @endlink
    • @link nlohmann::basic_json::string_t strings @endlink
    • @link nlohmann::basic_json::boolean_t booleans @endlink
    • numbers
      • @link nlohmann::basic_json::number_integer_t signed integers @endlink
      • @link nlohmann::basic_json::number_unsigned_t unsigned integers @endlink
      • @link nlohmann::basic_json::number_float_t floating-point @endlink

Container function overview

The container functions known from STL have been extended to support the different value types from JSON. However, not all functions can be applied to all value types. Note that the signature of some functions differ between the types; for instance, at may be called with either a string to address a key in an object or with an integer to address a value in an array.

@copyright Copyright © 2013-2017 Niels Lohmann. The code is licensed under the MIT License.

@author Niels Lohmann @see https://github.com/nlohmann/json to download the source code

@version 2.0.10