@brief returns a const iterator to the first element @sa https://json.nlohmann.me/api/basic_json/cbegin/
| 21994 | /// @brief returns a const iterator to the first element |
| 21995 | /// @sa https://json.nlohmann.me/api/basic_json/cbegin/ |
| 21996 | const_iterator cbegin() const noexcept |
| 21997 | { |
| 21998 | const_iterator result(this); |
| 21999 | result.set_begin(); |
| 22000 | return result; |
| 22001 | } |
| 22002 | |
| 22003 | /// @brief returns an iterator to one past the last element |
| 22004 | /// @sa https://json.nlohmann.me/api/basic_json/end/ |