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

From cppreference.com
< cpp‎ | ranges‎ | chunk view‎ | outer iterator
Ranges library
Range adaptors
std::ranges::chunk_view
Member functions
Classes for input_ranges
Deduction guides
outer-iterator
chunk_view::outer-iterator::operator=
outer-iterator::value_type
inner-iterator
/*outer-iterator*/ & operator= ( /*outer-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

(C++23)
constructs an iterator
(public member function)