Files
kaizen/docs/mkdocs/docs/api/basic_json/end.md
Simone b9112977b0 Squashed 'external/json/' content from commit 9cca280a4
git-subtree-dir: external/json
git-subtree-split: 9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03
2024-01-23 08:40:40 +01:00

664 B

nlohmann::basic_json::end

iterator end() noexcept;
const_iterator end() const noexcept;

Returns an iterator to one past the last element.

Illustration from cppreference.com

Return value

iterator one past the last element

Exception safety

No-throw guarantee: this member function never throws exceptions.

Complexity

Constant.

Examples

??? example

The following code shows an example for `end()`.

```cpp
--8<-- "examples/end.cpp"
```

Output:

```json
--8<-- "examples/end.output"
```

Version history

  • Added in version 1.0.0.