std::ranges::chunk_view<V>::begin
Min standard notice:
Returns an iterator to the first element of the chunk_view.
# Declarations
V models only input_range
constexpr __outer_iterator begin();
(since C++23)
V models forward_range
constexpr auto begin() requires (!__simple_view<V>);
(since C++23)
constexpr auto begin() const requires ranges::forward_range<const V>;
(since C++23)
# Return value
An iterator to the first element of the chunk_view, as described above.
# Example
This section is incompleteReason: no example