std::ranges::chunk_view<V>::iterator
< cpp | ranges | chunk view
|
template< bool Const >
class /*iterator*/ |
(since C++23) | |
The return type of chunk_view::begin, and of chunk_view::end when the underlying view V is a common_range.
Used only if V models forward_range.
The type /*iterator*/<true> is returned by the const-qualified overloads. The type /*iterator*/<false> is returned by the non-const-qualified overloads.
The name of this class template (shown here as /*iterator*/) is unspecified.
Data members
Typical implementations of /*iterator*/ hold four non-static data members:
current_of type ranges::iterator_t<Base>, that holds an iterator to the first element of current chunk in the underlying sequence (i.e. the begin of a chunk);end_of type ranges::sentinel_t<Base>, that holds a sentinel to the end of the underlying sequence;n_of type ranges::range_difference_t<Base>, that holds initial number of elements in the chunk (the last chunk can be smaller);missing_of type ranges::range_difference_t<Base>, that usually equals to ranges::advance(current_, n_, end_);.
These names are for exposition only.
Member types
| Member type | Definition |
Parent (private) |
const chunk_view if Const is true, otherwise chunk_view. The name is for exposition only. |
Base (private) |
const V if Const is true, otherwise V. The name is for exposition only. |
iterator_category |
std::input_iterator_tag |
iterator_concept |
|
value_type |
decltype(views::take(ranges::subrange(current_, end_), n_));. |
difference_type |
ranges::range_difference_t<Base> |
Member functions
|
(C++23)
|
constructs an iterator (public member function) |
|
(C++23)
|
returns an iterator to current element (public member function) |
|
(C++23)
|
accesses the element (public member function) |
|
(C++23)
|
accesses an element by index (public member function) |
| advances or decrements the underlying iterator (public member function) |
Non-member functions
| compares the underlying iterators (function) |
|
|
(C++23)
|
performs iterator arithmetic (function) |
Example
| This section is incomplete Reason: no example |
References
- C++23 standard (ISO/IEC 14882:2023):
-
- 26.7.28.7 Class template
chunk_view::iteratorfor forward ranges [range.chunk.fwd.iter]
- 26.7.28.7 Class template