Sha256: 705b792c86a258a1c2bf6eb56f38c5a617d2f446a3d9016d0f6d8446535fc27d
Contents?: true
Size: 539 Bytes
Versions: 1
Compression:
Stored size: 539 Bytes
Contents
#include <iostream> #include <nlohmann/json.hpp> using json = nlohmann::json; int main() { // different JSON Pointers json::json_pointer ptr0; json::json_pointer ptr1(""); json::json_pointer ptr2("/foo"); json::json_pointer ptr3("/foo/0"); // call empty() std::cout << std::boolalpha << ptr0 << ": " << ptr0.empty() << '\n' << ptr1 << ": " << ptr1.empty() << '\n' << ptr2 << ": " << ptr2.empty() << '\n' << ptr3 << ": " << ptr3.empty() << std::endl; }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
simdjson-0.3.0 | vendor/simdjson/dependencies/json/doc/examples/json_pointer__empty.cpp |