! @brief returns an iterator to one past the last element Returns an iterator to one past the last element. @image html range-begin-end.svg "Illustration from cppreference.com" @return iterator one past the last element @complexity Constant. @requirement This function helps `basic_json` satisfying the [Container](http://en.cppreference.com/w/cpp/concept/Container)
| 4370 | @since version 1.0.0 |
| 4371 | */ |
| 4372 | iterator end() noexcept |
| 4373 | { |
| 4374 | iterator result(this); |
| 4375 | result.set_end(); |
| 4376 | return result; |
| 4377 | } |
| 4378 | |
| 4379 | /*! |
| 4380 | @copydoc basic_json::cend() |
no test coverage detected