std::move_iterator::operator=

From cppreference.com
template< class U >
move_iterator& operator=( const move_iterator<U>& other );

Copy assignment operator. The underlying iterator is assigned the value of the underlying iterator of other, i.e. other.base().

Contents

[edit] Parameters

other - iterator adaptor to assign

[edit] Return value

*this

[edit] Example

[edit] See also

constructs a new iterator adaptor
(public member function)