std::ranges::chunk_by_view<V,Pred>::iterator::iterator
< cpp | ranges | chunk by view | iterator
|
/*iterator*/() = default;
|
(1) | (since C++23) |
|
private:
constexpr /*iterator*/( chunk_by_view& parent, |
(2) | (exposition only*) |
Construct an iterator.
1) Default constructor. Value-initializes the underlying data-members as follows:
parent_with nullptr,current_with ranges::iterator_t<V>(),next_with ranges::iterator_t<V>().
2) A private constructor which is used by
chunk_by_view::begin and chunk_by_view::end. This constructor is not accessible to users. Initializes:
parent_with std::addressof(parent),current_with current,next_with next.
Parameters
| parent | - | a parent object |
| current, next | - | iterators |
Example
| This section is incomplete Reason: no example |