@brief returns a const iterator to the first element @sa https://json.nlohmann.me/api/basic_json/cbegin/
| 2811 | /// @brief returns a const iterator to the first element |
| 2812 | /// @sa https://json.nlohmann.me/api/basic_json/cbegin/ |
| 2813 | const_iterator cbegin() const noexcept |
| 2814 | { |
| 2815 | const_iterator result(this); |
| 2816 | result.set_begin(); |
| 2817 | return result; |
| 2818 | } |
| 2819 | |
| 2820 | /// @brief returns an iterator to one past the last element |
| 2821 | /// @sa https://json.nlohmann.me/api/basic_json/end/ |