29 template<
class container_t>
34 template<
class container_t_,
class derived_t_>
37 template<
class container_t_,
class derived_t_>
40 using difference_type =
typename container_t::difference_type;
41 using size_type =
typename container_t::size_type;
42 using value_type =
typename container_t::value_type;
43 using pointer =
typename container_t::pointer;
44 using const_pointer =
typename container_t::const_pointer;
45 using reference =
typename container_t::reference;
46 using const_reference =
typename container_t::const_reference;
48 using iterator_category = std::contiguous_iterator_tag;
49 using iterator_concept = std::contiguous_iterator_tag;
53 constexpr
base_iterator(container_t* pContainer, size_type nIndex) noexcept
55 , m_pContainer(pContainer)
58 constexpr
operator void*() noexcept
60 return &(*m_pContainer).at(m_nIndex);
64 void shift(difference_type nShift) noexcept
68 auto&& get(difference_type nShift = 0)
const noexcept
70 return (*m_pContainer).at(m_nIndex + nShift);
72 size_type get_index()
const noexcept
78 size_type m_nIndex = 0u;
79 container_t* m_pContainer =
nullptr;
93 template<
class container_t,
class derived_t>
97 using decayed_derived_type = std::decay_t<derived_t>;
100 using super_type::super_type;
102 template<
class iterator_t>
103 requires derived_from_template_c<iterator_t, base_iterator>
104 constexpr
typename super_type::difference_type operator-(
const iterator_t& r)
const noexcept
106 return static_cast<typename super_type::difference_type
>(super_type::get_index() - r.get_index());
110 return super_type::get_index() < r.get_index();
114 return super_type::get_index() <= r.get_index();
118 return super_type::get_index() > r.get_index();
122 return super_type::get_index() >= r.get_index();
126 return super_type::get_index() != r.get_index();
130 return super_type::get_index() == r.get_index();
132 constexpr decayed_derived_type& operator++() noexcept
134 super_type::shift(1);
135 return static_cast<decayed_derived_type&
>(*this);
137 constexpr decayed_derived_type& operator--() noexcept
139 super_type::shift(-1);
140 return static_cast<decayed_derived_type&
>(*this);
142 [[nodiscard]] constexpr decayed_derived_type operator++(
int) noexcept
144 decayed_derived_type r(
static_cast<const decayed_derived_type&
>(*
this));
145 super_type::shift(1);
148 [[nodiscard]] constexpr decayed_derived_type operator--(
int) noexcept
150 decayed_derived_type r(
static_cast<const decayed_derived_type&
>(*
this));
151 super_type::shift(-1);
154 constexpr decayed_derived_type& operator+=(
typename super_type::difference_type n) noexcept
156 super_type::shift(n);
157 return static_cast<decayed_derived_type&
>(*this);
159 constexpr decayed_derived_type& operator-=(
typename super_type::difference_type n) noexcept
161 super_type::shift(-n);
162 return static_cast<decayed_derived_type&
>(*this);
164 constexpr decayed_derived_type operator+(
typename super_type::difference_type n)
const noexcept
166 decayed_derived_type r(
static_cast<const decayed_derived_type&
>(*
this));
169 constexpr decayed_derived_type operator-(
typename super_type::difference_type n)
const noexcept
171 decayed_derived_type r(
static_cast<const decayed_derived_type&
>(*
this));
176 template<
class iterator_t>
177 requires derived_from_template_c<iterator_t, base_forward_iterator>
178 constexpr iterator_t operator+(
typename iterator_t::size_type n, iterator_t it) noexcept
194 template<
class container_t,
class derived_t>
198 using decayed_derived_type = std::decay_t<derived_t>;
201 using super_type::super_type;
203 template<
class iterator_t>
204 requires derived_from_template_c<iterator_t, base_iterator>
205 constexpr
typename super_type::difference_type operator-(
const iterator_t& r)
const noexcept
207 return static_cast<typename super_type::difference_type
>(r.get_index() - super_type::get_index());
213 return super_type::get_index() + 1 > r.get_index() + 1;
217 return super_type::get_index() + 1 >= r.get_index() + 1;
221 return super_type::get_index() + 1 < r.get_index() + 1;
225 return super_type::get_index() + 1 <= r.get_index() + 1;
229 return super_type::get_index() + 1 != r.get_index() + 1;
233 return super_type::get_index() + 1 == r.get_index() + 1;
235 constexpr decayed_derived_type& operator++() noexcept
237 super_type::shift(-1);
238 return static_cast<decayed_derived_type&
>(*this);
240 constexpr decayed_derived_type& operator--() noexcept
242 super_type::shift(1);
243 return static_cast<decayed_derived_type&
>(*this);
245 [[nodiscard]] constexpr decayed_derived_type operator++(
int) noexcept
247 decayed_derived_type r(
static_cast<const decayed_derived_type&
>(*
this));
248 super_type::shift(-1);
251 [[nodiscard]] constexpr decayed_derived_type operator--(
int) noexcept
253 decayed_derived_type r(
static_cast<const decayed_derived_type&
>(*
this));
254 super_type::shift(1);
257 constexpr decayed_derived_type& operator+=(
typename super_type::difference_type n) noexcept
259 super_type::shift(-n);
260 return static_cast<decayed_derived_type&
>(*this);
262 constexpr decayed_derived_type& operator-=(
typename super_type::difference_type n) noexcept
264 super_type::shift(n);
265 return static_cast<decayed_derived_type&
>(*this);
267 constexpr decayed_derived_type operator+(
typename super_type::difference_type n)
const noexcept
269 decayed_derived_type r(
static_cast<const decayed_derived_type&
>(*
this));
272 constexpr decayed_derived_type operator-(
typename super_type::difference_type n)
const noexcept
274 decayed_derived_type r(
static_cast<const decayed_derived_type&
>(*
this));
279 template<
class iterator_t>
280 requires derived_from_template_c<iterator_t, base_reverse_iterator>
281 constexpr iterator_t operator+(
typename iterator_t::size_type n, iterator_t it) noexcept
Basic contiguous forward iterator, meaning that incrementing an iterator will lead it moving forward.
Base contiguous iterator with a container pointer and an index.
Basic contiguous reverse iterator, meaning that incrementing an iterator will lead it moving backward...