std::ranges::chunk_by_view<V,Pred>::end
From cppreference.com
 
 
 < cpp | ranges | chunk by view 
 
 
 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::chunk_by_view 
 
chunk_by_view::end
constexpr auto end();
 
 (since C++23) 
Returns an iterator or a sentinel representing the end of the chunk_by_view.
Equivalent to:
if constexpr (ranges::common_range <V>) return /*iterator*/(*this, ranges::end (base_), ranges::end (base_)); else return std::default_sentinel ;
Contents
[edit] Parameters
(none)
[edit] Return value
An iterator to the element following the last element, or a sentinel which compares equal to the end iterator.
[edit] Notes
end() returns an iterator if and only if the underlying view is a common_range: chunk_by_view<V,Pred> models common_range whenever V does.
[edit] Example
 This section is incomplete
Reason: no example
Reason: no example