std::ranges::chunk_by_view<V,Pred>::iterator
From cppreference.com
< cpp | ranges | chunk by view
class /*iterator*/ |
(since C++23) | |
The return type of chunk_by_view::begin
, and of chunk_by_view::end
when the underlying view V
is a common_range
.
The name of this class template (shown here as /*iterator*/) is unspecified.
Data members
Typical implementations of /*iterator*/ hold three non-static data members:
-
parent_
of typeParent
(see below), which is the pointer to the parentchunk_by_view
, -
current_
of type ranges::iterator_t<V>, which is the iterator to the begin of current chunk, -
next_
of type ranges::iterator_t<V>, which is the iterator to the begin of next chunk, if present.
These names are for exposition only.
Member types
Member type | Definition |
value_type
|
ranges::subrange<ranges::iterator_t<V>> |
difference_type
|
ranges::range_difference_t<V> |
iterator_category
|
std::input_iterator_tag |
iterator_concept
|
|
Member functions
(C++23) |
constructs an iterator (public member function) |
(C++23) |
accesses the element (public member function) |
advances or decrements the underlying iterators (public member function) |
Non-member functions
(C++23) |
compares the underlying iterators (function) |
Example
This section is incomplete Reason: no example |
References
- C++23 standard (ISO/IEC 14882:2023):
- 26.7.30.3 Class
chunk_by_view::iterator
[range.chunk.by.iter]
- 26.7.30.3 Class