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::array_range
```cpp
array_range_type array_range();
const_array_range_type array_range() const;
```
Returns a [range](range.md) that supports a range-based for loop over the elements of a `json` array
Throws `std::domain_error` if not an array.
### Examples
#### Range-based for loop
```cpp
json j(json_array_arg);
j.push_back("Montreal");
j.push_back("Toronto");
j.push_back("Vancouver");
for (const auto& val : j.array_range())
{
std::cout << val.as<std::string>() << '\n';
}
```
Output:
```json
Montreal
Toronto
Vancouver
```
#### Array iterator
```cpp
json j(json_array_arg, {"Montreal", "Toronto", "Vancouver"});
for (auto it = j.array_range().begin(); it != j.array_range().end(); ++it)
{
std::cout << it->as<std::string>() << '\n';
}
```
Output:
```json
Montreal
Toronto
Vancouver
```
#### Reverse array iterator
```cpp
json j(json_array_arg, {"Montreal", "Toronto", "Vancouver"});
for (auto it = j.array_range().rbegin(); it != j.array_range().rend(); ++it)
{
std::cout << it->as<std::string>() << '\n';
}
```
Output:
```json
Vancouver
Toronto
Montreal
```
|