1
0
mirror of https://github.com/nlohmann/json.git synced 2026-07-22 03:33:02 +04:00
Files
json/examples/json_pointer__pop_front.cpp
2026-05-13 06:00:22 +00:00

22 lines
422 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_front()
ptr.pop_front();
std::cout << "\"" << ptr << "\"\n";
ptr.pop_front();
std::cout << "\"" << ptr << "\"\n";
ptr.pop_front();
std::cout << "\"" << ptr << "\"\n";
}