std::ranges::chunk_view<V>::inner-iterator::operator=

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)


 
std::ranges::chunk_view
Member functions
Classes for input_ranges
Deduction guides
outer-iterator
outer-iterator::value_type
inner-iterator
chunk_view::inner-iterator::operator=
(C++23)
 
/*inner-iterator*/& operator=( /*inner-iterator*/&& other ) = default;
(since C++23)

Assigns another iterator. This move assignment operator is generated by the compiler.

Moves the underlying pointer other.parent_ to parent_.

Parameters

other - an iterator

See also

constructs an iterator
(public member function)