std::ranges::views::slide, std::ranges::slide_view
<ranges>
requires ranges::view <V>
class slide_view
inline constexpr /* unspecified */ slide = /* unspecified */;
constexpr ranges::view auto slide( R&& r, ranges::range_difference_t <R> n );
constexpr /* range adaptor object */ slide( DifferenceType&& n );
concept /*slide-caches-nothing*/ =
concept /*slide-caches-last*/ =
!/*slide-caches-nothing*/<V> &&
concept /*slide-caches-first*/ =
slide_view is a range adaptor that takes a view and a number n and produces a view whose mth element (a "window") is a view over [m, m + n - 1] elements of the original view.- s - n + 1, if s >= n,
- 0 otherwise, and the resulting view is empty.
If n is not greater than 0, the behavior is undefined.
slide_view always models forward_range, and models bidirectional_range, random_access_range, or sized_range if adapted view type models the corresponding concept.
Contents
[edit] Data members
V base_
the underlying view(exposition-only member object*)
cached_begin_ (present only if
V models the slide-caches-first )
an object that caches the result of begin() (exposition-only member object*)
cached_end_ (present only if
V models the slide-caches-last )
an object that caches the result of end() (exposition-only member object*)
[edit] Member functions
sized_range (public member function) [edit]
approximately_sized_range (public member function) [edit]
Inherited from std::ranges::view_interface
sized_range or forward_range (public member function of
std::ranges::view_interface<D>) [edit]
(public member function of
std::ranges::view_interface<D>) [edit]
(public member function of
std::ranges::view_interface<D>) [edit]
(public member function of
std::ranges::view_interface<D>) [edit]
forward_range (public member function of
std::ranges::view_interface<D>) [edit]
bidirectional_range and common_range (public member function of
std::ranges::view_interface<D>) [edit]
nth element in the derived view, provided only if it satisfies random_access_range (public member function of
std::ranges::view_interface<D>) [edit]
[edit] Deduction guides
[edit] Nested classes
slide_view is not a common_range (exposition-only member class template*)
[edit] Helper templates
constexpr bool ranges::enable_borrowed_range <slide_view<V>> =
This specialization of ranges::enable_borrowed_range makes slide_view satisfy borrowed_range when the underlying view satisfies it.
[edit] Notes
There are similarities between ranges::adjacent_view and ranges::slide_view:
- Both create "sliding window" of size
N. - Both have the same size
S - N + 1, whereSis the size of an adaptedviewsuch thatS >= N > 0.
The following table shows the differences between these adaptors:
| View adaptor | value_type |
The window size N
|
|---|---|---|
| ranges::adjacent_view | std::tuple | A template parameter |
| ranges::slide_view | ranges::range | A runtime argument |
| Feature-test macro | Value | Std | Feature |
|---|---|---|---|
__cpp_lib_ranges_slide |
202202L |
(C++23) | std::ranges::slide_view
|
[edit] Example
#include <algorithm> #include <initializer_list> #include <iostream> #include <ranges> auto print_subrange = [](std::ranges::viewable_range auto&& r) { std::cout << '['; for (char space[]{0,0}; auto elem : r) std::cout << space << elem, *space = ' '; std::cout << "] "; }; int main() { const auto v = {1, 2, 3, 4, 5, 6}; std::cout << "All sliding windows of width:\n"; for (const unsigned width : std::views::iota (1U, 1U + v.size())) { auto const windows = v | std::views::slide(width); std::cout << "W = " << width << ": "; std::ranges::for_each (windows, print_subrange); std::cout << '\n'; } }
Output:
All sliding windows of width W: W = 1: [1] [2] [3] [4] [5] [6] W = 2: [1 2] [2 3] [3 4] [4 5] [5 6] W = 3: [1 2 3] [2 3 4] [3 4 5] [4 5 6] W = 4: [1 2 3 4] [2 3 4 5] [3 4 5 6] W = 5: [1 2 3 4 5] [2 3 4 5 6] W = 6: [1 2 3 4 5 6]
[edit] References
- C++23 standard (ISO/IEC 14882:2024):
- 26.7.29 Slide view [range.slide]
[edit] See also
view consisting of tuples of references to adjacent elements of the adapted view(class template) (range adaptor object)[edit]