mirror of
https://github.com/nlohmann/json.git
synced 2026-07-07 11:05:09 +00:00
b21c345179
* 🦃 move files * 🦃 rename doc folder to docs * 🦃 rename test folder to tests
695 B
695 B
nlohmann::basic_json::crbegin
const_reverse_iterator crbegin() const noexcept;
Returns an iterator to the reverse-beginning; that is, the last element.
Return value
reverse iterator to the first element
Exception safety
No-throw guarantee: this member function never throws exceptions.
Complexity
Constant.
Examples
??? example
The following code shows an example for `crbegin()`.
```cpp
--8<-- "examples/crbegin.cpp"
```
Output:
```json
--8<-- "examples/crbegin.output"
```
Version history
- Added in version 1.0.0.