! @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://
| 21074 | @since version 1.0.0 |
| 21075 | */ |
| 21076 | const_iterator cend() const noexcept |
| 21077 | { |
| 21078 | const_iterator result(this); |
| 21079 | result.set_end(); |
| 21080 | return result; |
| 21081 | } |
| 21082 | |
| 21083 | /*! |
| 21084 | @brief returns an iterator to the reverse-beginning |