26 template<
class base_iterator_t>
27 requires std::is_pointer_v<typename base_iterator_t::value_type>
30 using super_type = base_iterator_t;
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&;
40 using super_type::super_type;
42 [[nodiscard]] constexpr reference operator*()
const noexcept
44 return *super_type::get();
46 [[nodiscard]] constexpr pointer operator->()
const noexcept
48 return super_type::get();
50 [[nodiscard]] constexpr reference operator[](
typename super_type::size_type m)
const noexcept
52 return *super_type::get(m);
56 template<
class container_t>
62 using super_type::super_type;
65 template<
class container_t>
72 using super_type::super_type;
75 template<
class container_t>
82 using super_type::super_type;
85 template<
class container_t>
88 const_reverse_iterator<container_t, const_reverse_dereference_iterator<container_t>>>
94 using super_type::super_type;