1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
### jsoncons::basic_json::object_range
```c++
object_range_type object_range();
const_object_range_type object_range() const;
```
Returns a [range](range.md) that supports a range-based for loop over the key-value pairs of a `basic_json` object
Throws `std::domain_error` if not an object.
### Examples
#### Range-based for loop over key-value pairs of an object
```c++
#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& member : j.object_range())
{
std::cout << member.key() << " => " << member.value().as<std::string>() << '\n';
}
}
```
Output:
```json
author => Charles Bukowski
category => Fiction
date => 2004-07-08
isbn => 1852272007
price => 22.48
title => Pulp
```
#### Reverse object iterator
```c++
ojson j;
j["city"] = "Toronto";
j["province"] = "Ontario";
j["country"] = "Canada";
for (auto it = j.object_range().crbegin(); it != j.object_range().crend(); ++it)
{
std::cout << it->key() << " => " << it->value().as<std::string>() << '\n';
}
```
Output:
```c++
country => Canada
province => Ontario
city => Toronto
```
|