! @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](https://en.cppreference.com/w/cpp/na
| 18783 | @since version 1.0.0 |
| 18784 | */ |
| 18785 | const_iterator cend() const noexcept |
| 18786 | { |
| 18787 | const_iterator result(this); |
| 18788 | result.set_end(); |
| 18789 | return result; |
| 18790 | } |
| 18791 | |
| 18792 | /*! |
| 18793 | @brief returns an iterator to the reverse-beginning |