26 template<
class base_iterator_t>
29 using super_type = base_iterator_t;
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;
37 using super_type::super_type;
39 [[nodiscard]] constexpr
typename super_type::value_type operator*()
const noexcept
41 return super_type::get();
43 [[nodiscard]] constexpr
typename super_type::value_type operator[](
typename super_type::size_type m)
const noexcept
45 return super_type::get(m);
49 template<
class container_t>
59 template<
class container_t>
69 template<
class container_t>
79 template<
class container_t>
82 const_reverse_iterator<container_t, const_reverse_return_object_iterator<container_t>>>
Basic contiguous forward iterator, meaning that incrementing an iterator will lead it moving forward.
Base contiguous iterator with a container pointer and an index.
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...