! @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](http://en.cppreference.com/w/cpp/concept/Container) requirements:
| 4299 | @since version 1.0.0 |
| 4300 | */ |
| 4301 | iterator begin() noexcept |
| 4302 | { |
| 4303 | iterator result(this); |
| 4304 | result.set_begin(); |
| 4305 | return result; |
| 4306 | } |
| 4307 | |
| 4308 | /*! |
| 4309 | @copydoc basic_json::cbegin() |
no test coverage detected