! @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:
| 4678 | @since version 1.0.0 |
| 4679 | */ |
| 4680 | iterator begin() noexcept |
| 4681 | { |
| 4682 | iterator result(this); |
| 4683 | result.set_begin(); |
| 4684 | return result; |
| 4685 | } |
| 4686 | |
| 4687 | /*! |
| 4688 | @copydoc basic_json::cbegin() |
no test coverage detected