Lines Matching refs:index
143 * \param[in] index Index of the element we want to access
144 * \return *(std::next(data, index))
146 constexpr reference operator[](const size_type index) noexcept
148 assert(length > index);
149 return *(std::next(begin(), index));
153 * \param[in] index Index of the element we want to access
154 * \return *(std::next(data, index))
156 constexpr const_reference operator[](const size_type index) const noexcept
158 assert(length > index);
159 return *(std::next(begin(), index));