20 template<
class... args_t>
21 using function_type = std::function<args_t...>;
39 template<
class T,
class traits_t = default_
generic_span_traits>
42 template<
class container_t>
43 using container_value = std::remove_reference_t<decltype(*std::declval<container_t>().
begin())>;
45 template<
class target_t>
46 using qualified_type = copy_qualifiers_t<std::remove_reference_t<std::remove_pointer_t<T>>, target_t>;
49 using traits = traits_t;
50 template<
class... args_t>
51 using function_type =
typename traits_t::template function_type<args_t...>;
52 using generator_type = function_type<T*()>;
54 using element_type = T;
55 using value_type = std::remove_cv_t<T>;
65 using difference_type = std::ptrdiff_t;
66 using size_type = size_t;
67 using iterator_category = std::forward_iterator_tag;
68 using iterator_concept = std::forward_iterator_tag;
71 constexpr
iterator() noexcept =
default;
73 constexpr
iterator(generator_type generator, size_type nIndex) noexcept;
74 [[nodiscard]] constexpr reference operator*()
const noexcept;
75 [[nodiscard]] constexpr pointer operator->()
const noexcept;
76 constexpr
iterator& operator++() noexcept;
77 [[nodiscard]] constexpr
iterator operator++(
int) noexcept;
78 constexpr
bool operator!=(
const iterator& r)
const noexcept;
79 constexpr
bool operator==(
const iterator& r)
const noexcept;
80 constexpr
operator void*()
const noexcept;
83 generator_type m_Generator;
84 size_type m_nIndex = 0;
97 template<class container_t>
106 template<class container_t>
108 container_t& container,
109 function_type<reference(qualified_type<container_value<container_t>>&)> valueAdapter) noexcept;
117 template<class container_t>
127 bool empty() const noexcept;
162 template<class container_t, class adapter_t>
163 static generator_type create_initial_generator(container_t&& container, adapter_t adapter) noexcept;
166 generator_type m_InitialGenerator;
171 #include <qx/patterns/generic_span.inl>
Same as std::span, but may be used with containers with forward iterators.
iterator begin() const noexcept
Return iterator to beginning.