qxLib
dereference_iterator.h
Go to the documentation of this file.
1 /**
2 
3  @file dereference_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_dereference_iterator
19  @brief
20  @details ~
21  @tparam base_iterator_t -
22  @author Khrapov
23  @date 2.12.2023
24 
25 **/
26 template<class base_iterator_t>
27  requires std::is_pointer_v<typename base_iterator_t::value_type>
28 class base_dereference_iterator : public base_iterator_t
29 {
30  using super_type = base_iterator_t;
31 
32 public:
33  using value_type = std::remove_pointer_t<typename base_iterator_t::value_type>;
34  using pointer = value_type*;
35  using const_pointer = const value_type;
36  using reference = value_type&;
37  using const_reference = const value_type&;
38 
39 public:
40  using super_type::super_type;
41 
42  [[nodiscard]] constexpr reference operator*() const noexcept
43  {
44  return *super_type::get();
45  }
46  [[nodiscard]] constexpr pointer operator->() const noexcept
47  {
48  return super_type::get();
49  }
50  [[nodiscard]] constexpr reference operator[](typename super_type::size_type m) const noexcept
51  {
52  return *super_type::get(m);
53  }
54 };
55 
56 template<class container_t>
57 class dereference_iterator : public base_dereference_iterator<iterator<container_t, dereference_iterator<container_t>>>
58 {
60 
61 public:
62  using super_type::super_type;
63 };
64 
65 template<class container_t>
67  : public base_dereference_iterator<const_iterator<container_t, const_dereference_iterator<container_t>>>
68 {
70 
71 public:
72  using super_type::super_type;
73 };
74 
75 template<class container_t>
77  : public base_dereference_iterator<reverse_iterator<container_t, reverse_dereference_iterator<container_t>>>
78 {
80 
81 public:
82  using super_type::super_type;
83 };
84 
85 template<class container_t>
88  const_reverse_iterator<container_t, const_reverse_dereference_iterator<container_t>>>
89 {
90  using super_type =
92 
93 public:
94  using super_type::super_type;
95 };
96 
97 } // namespace qx