@brief returns a const iterator to the first element @sa https://json.nlohmann.me/api/basic_json/cbegin/
| 2516 | /// @brief returns a const iterator to the first element |
| 2517 | /// @sa https://json.nlohmann.me/api/basic_json/cbegin/ |
| 2518 | const_iterator cbegin() const noexcept |
| 2519 | { |
| 2520 | const_iterator result(this); |
| 2521 | result.set_begin(); |
| 2522 | return result; |
| 2523 | } |
| 2524 | |
| 2525 | /// @brief returns an iterator to one past the last element |
| 2526 | /// @sa https://json.nlohmann.me/api/basic_json/end/ |