JSON Pointer defines a string syntax for identifying a specific value within a JSON document
Declared in <nlohmann/json_fwd.hpp>
template<typename RefStringType>
class json_pointer;
| Name | Description |
|---|---|
nlohmann::operator/ | create a new JSON pointer by appending the array-index-token at the end of the JSON pointer |
nlohmann::operator/ | create a new JSON pointer by appending the unescaped token at the end of the JSON pointer |
nlohmann::operator/ | create a new JSON pointer by appending the right JSON pointer at the end of the left JSON pointer |
nlohmann::operator<< | write string representation of the JSON pointer to stream |
nlohmann::json_pointer | JSON Pointer defines a string syntax for identifying a specific value within a JSON document |
nlohmann::basic_json | a class to store JSON values |