@brief returns an iterator to the first element @sa https://json.nlohmann.me/api/basic_json/begin/
| 21934 | /// @brief returns an iterator to the first element |
| 21935 | /// @sa https://json.nlohmann.me/api/basic_json/begin/ |
| 21936 | iterator begin() noexcept |
| 21937 | { |
| 21938 | iterator result(this); |
| 21939 | result.set_begin(); |
| 21940 | return result; |
| 21941 | } |
| 21942 | |
| 21943 | /// @brief returns an iterator to the first element |
| 21944 | /// @sa https://json.nlohmann.me/api/basic_json/begin/ |