! @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](https://en.cppreference.com/w/cpp/named_req/Containe
| 4749 | @since version 1.0.0 |
| 4750 | */ |
| 4751 | iterator end() noexcept |
| 4752 | { |
| 4753 | iterator result(this); |
| 4754 | result.set_end(); |
| 4755 | return result; |
| 4756 | } |
| 4757 | |
| 4758 | /*! |
| 4759 | @copydoc basic_json::cend() |