! @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
| 22250 | @since version 1.0.0 |
| 22251 | */ |
| 22252 | iterator end() noexcept |
| 22253 | { |
| 22254 | iterator result(this); |
| 22255 | result.set_end(); |
| 22256 | return result; |
| 22257 | } |
| 22258 | |
| 22259 | /*! |
| 22260 | @copydoc basic_json::cend() |