mirror of
https://github.com/nlohmann/json
synced 2024-11-22 03:50:05 +00:00
d1d79b930d
* 📝 adjust JSON Pointer examples * 👷 add test for documentation * 📝 note platform-dependent output on some examples
22 lines
418 B
C++
22 lines
418 B
C++
#include <iostream>
|
|
#include <nlohmann/json.hpp>
|
|
|
|
using json = nlohmann::json;
|
|
|
|
int main()
|
|
{
|
|
// create empty JSON Pointer
|
|
json::json_pointer ptr("/foo/bar/baz");
|
|
std::cout << "\"" << ptr << "\"\n";
|
|
|
|
// call pop_back()
|
|
ptr.pop_back();
|
|
std::cout << "\"" << ptr << "\"\n";
|
|
|
|
ptr.pop_back();
|
|
std::cout << "\"" << ptr << "\"\n";
|
|
|
|
ptr.pop_back();
|
|
std::cout << "\"" << ptr << "\"\n";
|
|
}
|