@brief returns an iterator to the first element @sa https://json.nlohmann.me/api/basic_json/begin/
| 21978 | /// @brief returns an iterator to the first element |
| 21979 | /// @sa https://json.nlohmann.me/api/basic_json/begin/ |
| 21980 | iterator begin() noexcept |
| 21981 | { |
| 21982 | iterator result(this); |
| 21983 | result.set_begin(); |
| 21984 | return result; |
| 21985 | } |
| 21986 | |
| 21987 | /// @brief returns an iterator to the first element |
| 21988 | /// @sa https://json.nlohmann.me/api/basic_json/begin/ |