qxLib
iterator.h
Go to the documentation of this file.
1 /**
2 
3  @file iterator.h
4  @author Khrapov
5  @date 2.12.2023
6  @copyright © Nick Khrapov, 2023. All right reserved.
7 
8 **/
9 #pragma once
10 
12 
13 namespace qx
14 {
15 
16 template<class container_t, class derived_t = void>
17 class const_iterator;
18 
19 /**
20 
21  @class iterator
22  @brief Non-const random access iterator type
23  @details Use it for range-based loops and std algorithms
24  container_t have to provide at(size_t)
25  @tparam container_t - container type
26  @author Khrapov
27  @date 27.07.2019
28 
29 **/
30 template<class container_t, class derived_t = void>
31 class iterator
32  : public base_forward_iterator<
33  container_t,
34  std::conditional_t<std::same_as<derived_t, void>, iterator<container_t>, derived_t>>
35 {
36  friend class const_iterator<container_t, derived_t>;
37 
38  using super_type =
40 
41 public:
43 
44  [[nodiscard]] constexpr typename super_type::reference operator*() const noexcept
45  {
46  return super_type::get();
47  }
48  [[nodiscard]] constexpr typename super_type::pointer operator->() const noexcept
49  {
50  return &super_type::get();
51  }
52  [[nodiscard]] constexpr typename super_type::reference operator[](typename super_type::size_type i) const noexcept
53  {
54  return super_type::get(i);
55  }
56 };
57 
58 /**
59 
60  @class const_iterator
61  @brief Const random access iterator type
62  @details Use it for range-based loops and std algorithms
63  container_t have to provide at(size_t)
64  @tparam container_t - container type
65  @author Khrapov
66  @date 27.07.2019
67 
68 **/
69 template<class container_t, class derived_t>
71  : public base_forward_iterator<
72  const container_t,
73  std::conditional_t<std::same_as<derived_t, void>, const const_iterator<container_t>, derived_t>>
74 {
76  const container_t,
77  std::conditional_t<std::same_as<derived_t, void>, const const_iterator, derived_t>>;
78 
79 public:
81 
82  constexpr const_iterator(const iterator<container_t>& it) noexcept : super_type(it.m_pContainer, it.m_nIndex)
83  {
84  }
85  [[nodiscard]] constexpr typename super_type::const_reference operator*() const noexcept
86  {
87  return super_type::get();
88  }
89  [[nodiscard]] constexpr typename super_type::const_pointer operator->() const noexcept
90  {
91  return &super_type::get();
92  }
93  [[nodiscard]] constexpr typename super_type::const_reference operator[](
94  typename super_type::size_type m) const noexcept
95  {
96  return super_type::get(m);
97  }
98 };
99 
100 template<class container_t, class derived_t = void>
102 
103 /**
104 
105  @class reverse_iterator
106  @brief Non-const random access reverse iterator type
107  @details Use it for range-based loops and std algorithms
108  container_t have to provide at(size_t)
109  @tparam container_t - container type
110  @author Khrapov
111  @date 27.07.2019
112 
113 **/
114 template<class container_t, class derived_t = void>
116  : public base_reverse_iterator<
117  container_t,
118  std::conditional_t<std::same_as<derived_t, void>, reverse_iterator<container_t>, derived_t>>
119 {
120  friend class const_reverse_iterator<container_t>;
121 
123  container_t,
124  std::conditional_t<std::same_as<derived_t, void>, reverse_iterator, derived_t>>;
125 
126 public:
128 
129  [[nodiscard]] constexpr typename super_type::reference operator*() const noexcept
130  {
131  return super_type::get();
132  }
133  [[nodiscard]] constexpr typename super_type::pointer operator->() const noexcept
134  {
135  return &super_type::get();
136  }
137  [[nodiscard]] constexpr typename super_type::reference operator[](typename super_type::size_type m) const noexcept
138  {
139  return super_type::get(m);
140  }
141 };
142 
143 /**
144 
145  @class const_reverse_iterator
146  @brief Const reverse random access iterator type
147  @details Use it for range-based loops and std algorithms
148  container_t have to provide at(size_t)
149  @tparam container_t - container type
150  @author Khrapov
151  @date 19.03.2020
152 
153 **/
154 template<class container_t, class derived_t>
156  : public base_reverse_iterator<
157  const container_t,
158  std::conditional_t<std::same_as<derived_t, void>, const const_reverse_iterator<container_t>, derived_t>>
159 {
161  const container_t,
162  std::conditional_t<std::same_as<derived_t, void>, const const_reverse_iterator, derived_t>>;
163 
164 public:
166 
167  constexpr const_reverse_iterator(const reverse_iterator<container_t>& it) noexcept
168  : super_type(it.m_pContainer, it.m_nIndex)
169  {
170  }
171  [[nodiscard]] constexpr typename super_type::const_reference operator*() const noexcept
172  {
173  return super_type::get();
174  }
175  [[nodiscard]] constexpr typename super_type::const_pointer operator->() const noexcept
176  {
177  return &super_type::get();
178  }
179  [[nodiscard]] constexpr typename super_type::const_reference operator[](
180  typename super_type::size_type m) const noexcept
181  {
182  return super_type::get(m);
183  }
184 };
185 
186 } // namespace qx
Basic contiguous forward iterator, meaning that incrementing an iterator will lead it moving forward.
Definition: base_iterator.h:95
Base contiguous iterator with a container pointer and an index.
Definition: base_iterator.h:32
Basic contiguous reverse iterator, meaning that incrementing an iterator will lead it moving backward...
Const random access iterator type.
Definition: iterator.h:74
Const reverse random access iterator type.
Definition: iterator.h:159
Non-const random access iterator type.
Definition: iterator.h:35
Non-const random access reverse iterator type.
Definition: iterator.h:119