std::ranges::chunk_by_view<V,Pred>::end

Returns an iterator or a sentinel representing the end of the chunk_by_view.

# Declarations

constexpr auto end();

(since C++23)

# Return value

An iterator to the element following the last element, or a sentinel which compares equal to the end iterator.

# 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.

# Example

This section is incompleteReason: no example

# See also