40template <
typename type>
42 std::ranges::input_range<std::remove_const_t<type>> && std::ranges::input_range<type const>
43 && (std::ranges::forward_range<std::remove_const_t<type>> == std::ranges::forward_range<type const>)
45 && (std::ranges::random_access_range<std::remove_const_t<type>> == std::ranges::random_access_range<type const>);
80template <
typename iterator_t>
82 std::forward_iterator<iterator_t>
83 && !std::is_base_of_v<std::random_access_iterator_tag, typename std::iterator_traits<iterator_t>::iterator_category>
84 && std::totally_ordered<iterator_t> && std::sized_sentinel_for<iterator_t, iterator_t>
86 requires std::same_as<
decltype(i += n), iterator_t &>;
87 requires std::same_as<
decltype(j + n), iterator_t>;
88 requires std::same_as<
decltype(n + j), iterator_t>;
89 requires std::same_as<
decltype(--i), iterator_t &>;
90 requires std::same_as<
decltype(i--), iterator_t>;
91 requires std::same_as<
decltype(i -= n), iterator_t &>;
92 requires std::same_as<
decltype(j - n), iterator_t>;
113template <
typename rng_t>
Specifies requirements of an input range type for which the const version of that type satisfies the ...
This concept checks if an iterator type models pseudo random access.
This concept checks if a type models a pseudo random access range.
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26