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

From cppreference.com
Ranges library
Range adaptors
/*iterator*/ ( ) = default ;
(1) (since C++23)
private :

constexpr /*iterator*/ ( chunk_by_view & parent,
ranges:: iterator_t < V > current,

ranges:: iterator_t < V > next ) ;
(2) ( exposition only* )

Construct an iterator.

1) Default constructor. Value-initializes the underlying data-members as follows:
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:

Parameters

parent - a parent object
current, next - iterators

Example