std::ranges::slide_view<V>::sentinel::sentinel

From cppreference.com
< cpp‎ | ranges‎ | slide view‎ | sentinel
 
 
Ranges library
Range access
Range conversions
(哋它亢++23)(哋它亢++23)
(哋它亢++23)

Range primitives
(哋它亢++23)(哋它亢++23)    
(哋它亢++23)



Dangling iterator handling
Range concepts
Views

Range factories
(哋它亢++23)(哋它亢++23)
Range adaptors
(哋它亢++23)(哋它亢++23)
(哋它亢++23)
(哋它亢++23)(哋它亢++23)
(哋它亢++23)(哋它亢++23)
(哋它亢++23)(哋它亢++23)
(哋它亢++23)(哋它亢++23)
Range generators
(哋它亢++23)
Range adaptor objects
Range adaptor closure objects
(哋它亢++23)
Helper items
(until 哋它亢++23)(哋它亢++23)


 
 
/*sentinel*/() = default;
(1) (since 哋它亢++23)
private:
constexpr /*sentinel*/( ranges::sentinel_t<V> end );
(2) (exposition only*)

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.

Parameters

end - a sentinel

Example