! @brief returns an iterator to the first element Returns an iterator to the first element. @image html range-begin-end.svg "Illustration from cppreference.com" @return iterator to the first element @complexity Constant. @requirement This function helps `basic_json` satisfying the [Container](https://en.cppreference.com/w/cpp/named_req/Container) requirements:
| 22179 | @since version 1.0.0 |
| 22180 | */ |
| 22181 | iterator begin() noexcept |
| 22182 | { |
| 22183 | iterator result(this); |
| 22184 | result.set_begin(); |
| 22185 | return result; |
| 22186 | } |
| 22187 | |
| 22188 | /*! |
| 22189 | @copydoc basic_json::cbegin() |
no test coverage detected