@brief returns an iterator to the first element @sa https://json.nlohmann.me/api/basic_json/begin/
| 2795 | /// @brief returns an iterator to the first element |
| 2796 | /// @sa https://json.nlohmann.me/api/basic_json/begin/ |
| 2797 | iterator begin() noexcept |
| 2798 | { |
| 2799 | iterator result(this); |
| 2800 | result.set_begin(); |
| 2801 | return result; |
| 2802 | } |
| 2803 | |
| 2804 | /// @brief returns an iterator to the first element |
| 2805 | /// @sa https://json.nlohmann.me/api/basic_json/begin/ |
no test coverage detected