@brief returns an iterator to the first element @sa https://json.nlohmann.me/api/basic_json/begin/
| 22068 | /// @brief returns an iterator to the first element |
| 22069 | /// @sa https://json.nlohmann.me/api/basic_json/begin/ |
| 22070 | iterator begin() noexcept |
| 22071 | { |
| 22072 | iterator result(this); |
| 22073 | result.set_begin(); |
| 22074 | return result; |
| 22075 | } |
| 22076 | |
| 22077 | /// @brief returns an iterator to the first element |
| 22078 | /// @sa https://json.nlohmann.me/api/basic_json/begin/ |