@brief returns a const iterator to the first element @sa https://json.nlohmann.me/api/basic_json/cbegin/
| 21950 | /// @brief returns a const iterator to the first element |
| 21951 | /// @sa https://json.nlohmann.me/api/basic_json/cbegin/ |
| 21952 | const_iterator cbegin() const noexcept |
| 21953 | { |
| 21954 | const_iterator result(this); |
| 21955 | result.set_begin(); |
| 21956 | return result; |
| 21957 | } |
| 21958 | |
| 21959 | /// @brief returns an iterator to one past the last element |
| 21960 | /// @sa https://json.nlohmann.me/api/basic_json/end/ |