std::move_iterator<Iter>::operator=
Min standard notice:
Assigns other.current to current .
# Declarations
template< class U >
move_iterator& operator=( const move_iterator<U>& other );
(constexpr since C++17)
# Parameters
other: iterator adaptor to assign
# Return value
*this
# Example
This section is incompleteReason: no example
# Defect reports
| DR | Applied to | Behavior as published | Correct behavior |
|---|---|---|---|
| LWG 3435 | C++20 | the converting assignment operator was not constrained | constrained |