std::ranges::chunk_by_view<V,Pred>::iterator::iterator - cppreference.com (original) (raw)
| /*iterator*/() = default; | (1) | (since C++23) |
|---|---|---|
| (2) | (exposition only*) |
Construct an iterator.
- A private constructor which is used by
chunk_by_view::beginandchunk_by_view::end. This constructor is not accessible to users. Initializes:
- parent_ with std::addressof(parent),
- current_ with current,
- next_ with next.
[edit] Parameters
| parent | - | a parent object |
|---|---|---|
| current, next | - | iterators |