Lines Matching defs:end
80 /*! \brief Returns an iterator to the end of the span
83 constexpr iterator end() noexcept { return std::next(begin(), length); }
85 /*! \brief Returns a const_iterator to the end of the span
88 constexpr const_iterator end() const noexcept { return std::next(begin(), length); }
95 /*! \brief Returns a const_iterator to the end of the span
100 /*! \brief Returns a reverse_iterator to the end of the span
101 * \return reverse_iterator(end())
103 constexpr reverse_iterator rbegin() noexcept { return reverse_iterator(end()); }
105 /*! \brief Returns a const_reverse_iterator to the end of the span
106 * \return reverse_iterator(end())
110 return const_reverse_iterator(end());
126 /*! \brief Returns a const_reverse_iterator to the end of the span
216 /*! \brief Adds an element to the end of the span
272 return end();
321 return end();
335 Iterator end() const { return cend(); }
351 /* don't continue past the end */