std::ranges::join_with_view<V,Pattern>::sentinel<Const>::sentinel
From cppreference.com
< cpp | ranges | join with 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
(exposition only*)
(C++23)(C++23)
(C++23)(C++23)
(C++23)(C++23)
(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)
(C++23)
std::ranges::join_with_view
join_with_view::sentinel::sentinel
/*sentinel*/() = default;
(1)
(since C++23)
constexpr /*sentinel*/( /*sentinel*/<!Const> i )
(2)
(since C++23)
requires Const && std::convertible_to <ranges::sentinel_t <V>,
constexpr explicit /*sentinel*/ ( /*Parent*/& parent );
(3)
(since C++23) (exposition only*)
Constructs a sentinel. Overload (3) is called by end() of ranges::join_with_view.
Overload | end_
|
---|---|
(1) | value-initialized |
(2) | initialized with std::move(s.end_ )
|
(3) | initialized with ranges::end (parent.base_ ) |
[edit] Parameters
i
-
a sentinel corresponding to a mutable iterator
parent
-
a std::ranges::join_with_view object
[edit] Example
This section is incomplete
Reason: no example
Reason: no example