@brief returns a const reverse iterator to the last element @sa https://json.nlohmann.me/api/basic_json/crbegin/
| 2578 | /// @brief returns a const reverse iterator to the last element |
| 2579 | /// @sa https://json.nlohmann.me/api/basic_json/crbegin/ |
| 2580 | const_reverse_iterator crbegin() const noexcept |
| 2581 | { |
| 2582 | return const_reverse_iterator(cend()); |
| 2583 | } |
| 2584 | |
| 2585 | /// @brief returns a const reverse iterator to one before the first |
| 2586 | /// @sa https://json.nlohmann.me/api/basic_json/crend/ |