On this page
std::ranges::chunk_view<V>::begin
V models only input_range |
||
|
(1) | (since C++23) |
V models forward_range |
||
|
(2) | (since C++23) |
|
(3) | (since C++23) |
Returns an iterator to the first element of the chunk_view.
Let
base_ denote the underlying view.
1) Available only if
V models input_range. Equivalent to:
current_ = ranges::begin(base_);
remainder_ = n_;
return __outer_iterator(*this);
current_, remainder_, and n_ are underlying exposition only data members of chunk_view.
2) Available if
V models forward_range. Equivalent to: return iterator<false>(this, ranges::begin(base_));, where iterator is exposition only nested class.
3) Available if
V models forward_range. Equivalent to: return iterator<true>(this, ranges::begin(base_));, where iterator is exposition only nested class.
Parameters
(none)
Return value
An iterator to the first element of the chunk_view, as described above.
Example
See also
|
(C++23)
|
returns an iterator or a sentinel to the end (public member function) |
|
(C++20)
|
returns an iterator to the beginning of a range (customization point object) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/chunk_view/begin