std::ranges::slide_view<V>::sentinel::sentinel
From cppreference.com
< cpp | ranges | slide view | sentinel
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Ranges library
(C++23)(C++23)
(C++26)(C++26)
(C++23)(C++23)
(C++26)(C++26)
(C++26)(C++26)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)
(C++23)(C++23)
(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
std::ranges::slide_view
(C++26)
Member functions
Non-member functions
Member functions
slide_view::sentinel::sentinel
Non-member functions
/*sentinel*/() = default;
(1)
(since C++23)
private:
constexpr /*sentinel*/( ranges::sentinel_t <V> end );
(2)
(exposition only*)
constexpr /*sentinel*/( ranges::sentinel_t <V> end );
Constructs a sentinel.
1) Default constructor. Value-initializes the underlying sentinel
end_
with ranges::sentinel_t <V>().2) A private constructor which is used by slide_view::end. This constructor is not accessible to users. Initializes
end_
with end.[edit] Parameters
end
-
a sentinel
[edit] Example
This section is incomplete
Reason: no example
Reason: no example