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

From cppreference.com
 
 
Ranges library
Range access
Range conversions
(C++23)
Range primitives



Dangling iterator handling
Range concepts
Views

Range factories
Range adaptors
Range generators
Range adaptor objects
Range adaptor closure objects
Helper items
(until C++23)(C++23)


 
 
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

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

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