qxLib
return_value_iterator.h
Go to the documentation of this file.
1 /**
2 
3  @file return_value_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 /**
17 
18  @class base_return_object_iterator
19  @brief This kind of iterator returns value and not reference in access methods
20  @details ~
21  @tparam base_iterator_t - base iterator type
22  @author Khrapov
23  @date 28.01.2023
24 
25 **/
26 template<class base_iterator_t>
27 class base_return_object_iterator : public base_iterator_t
28 {
29  using super_type = base_iterator_t;
30 
31 public:
32  using value_type = typename super_type::value_type;
33  using reference = typename super_type::value_type;
34  using const_reference = typename super_type::value_type;
35 
36 public:
37  using super_type::super_type;
38 
39  [[nodiscard]] constexpr typename super_type::value_type operator*() const noexcept
40  {
41  return super_type::get();
42  }
43  [[nodiscard]] constexpr typename super_type::value_type operator[](typename super_type::size_type m) const noexcept
44  {
45  return super_type::get(m);
46  }
47 };
48 
49 template<class container_t>
51  : public base_return_object_iterator<iterator<container_t, return_object_iterator<container_t>>>
52 {
54 
55 public:
57 };
58 
59 template<class container_t>
61  : public base_return_object_iterator<const_iterator<container_t, const_return_object_iterator<container_t>>>
62 {
64 
65 public:
67 };
68 
69 template<class container_t>
71  : public base_return_object_iterator<reverse_iterator<container_t, reverse_return_object_iterator<container_t>>>
72 {
74 
75 public:
77 };
78 
79 template<class container_t>
82  const_reverse_iterator<container_t, const_reverse_return_object_iterator<container_t>>>
83 {
84  using super_type =
86 
87 public:
89 };
90 
91 } // 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
This kind of iterator returns value and not reference in access methods.
Basic contiguous reverse iterator, meaning that incrementing an iterator will lead it moving backward...