@brief returns a const iterator to the first element @sa https://json.nlohmann.me/api/basic_json/cbegin/
| 22084 | /// @brief returns a const iterator to the first element |
| 22085 | /// @sa https://json.nlohmann.me/api/basic_json/cbegin/ |
| 22086 | const_iterator cbegin() const noexcept |
| 22087 | { |
| 22088 | const_iterator result(this); |
| 22089 | result.set_begin(); |
| 22090 | return result; |
| 22091 | } |
| 22092 | |
| 22093 | /// @brief returns an iterator to one past the last element |
| 22094 | /// @sa https://json.nlohmann.me/api/basic_json/end/ |