! @brief returns a const iterator to one past the last element Returns a const iterator to one past the last element. @image html range-begin-end.svg "Illustration from cppreference.com" @return const iterator one past the last element @complexity Constant. @requirement This function helps `basic_json` satisfying the [Container](http://en.cppreference.com/w/cpp/con
| 4410 | @since version 1.0.0 |
| 4411 | */ |
| 4412 | const_iterator cend() const noexcept |
| 4413 | { |
| 4414 | const_iterator result(this); |
| 4415 | result.set_end(); |
| 4416 | return result; |
| 4417 | } |
| 4418 | |
| 4419 | /*! |
| 4420 | @brief returns an iterator to the reverse-beginning |