range<object_iterator> object_range();
range<const_object_iterator> object_range() const;
Returns a "range" that supports a range-based for loop over the key-value pairs of a json
object
Throws std::runtime_error
if not an array.
#include <jsoncons/json.hpp>
int main()
{
json j = json::parse(R"(
{
"category" : "Fiction",
"title" : "Pulp",
"author" : "Charles Bukowski",
"date" : "2004-07-08",
"price" : 22.48,
"isbn" : "1852272007"
}
)");
for (const auto& kv : j.object_range())
{
std::cout << kv.key() << " => " << kv.value().as<std::string>() << std::endl;
}
}
Output:
author => Charles Bukowski
category => Fiction
date => 2004-07-08
isbn => 1852272007
price => 22.48
title => Pulp
json j;
j["city"] = "Toronto";
j["province"] = "Ontario";
j["country"] = "Canada";
for (auto it = j.object_range().begin(); it != j.object_range().end(); ++it)
{
std::cout << it->key() << " => " << it->value().as<std::string>() << std::endl;
}
Output:
city => Toronto
country => Canada
province => Ontario