std::ranges::chunk_view<V>::end

Returns an iterator or a std::default_sentinel that compares equal to the end iterator of the chunk_view.

# Declarations

V models only input_range
constexpr std::default_sentinel_t end() const noexcept;

(since C++23)

V models forward_range
constexpr auto end() requires (!__simple_view<V>);

(since C++23)

constexpr auto end() const requires ranges::forward_range<const V>;

(since C++23)

# Return value

An iterator or sentinel representing the end of the chunk_view, as described above.

# Example

This section is incompleteReason: no example

# See also