W3cubDocs

/C++

std::ranges::chunk_by_view<V,Pred>::iterator

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 type Parent (see below), which is the pointer to the parent chunk_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)
(C++23)
advances or decrements the underlying iterators
(public member function)

Non-member functions

(C++23)
compares the underlying iterators
(function)

Example

References

  • C++23 standard (ISO/IEC 14882:2023):
    • 26.7.30.3 Class chunk_by_view​::​iterator [range.chunk.by.iter]

See also

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/chunk_by_view/iterator