std::move_iterator<Iter>::operator=
< cpp | iterator | move iterator
template< class U > move_iterator& operator=( const move_iterator<U>& other ); |
(C++17 前) | |
template< class U > constexpr move_iterator& operator=( const move_iterator<U>& other ); |
(C++17 起) | |
对底层迭代器赋 other
的底层迭代器的值,即 other.base()
。
参数
other | - | 要赋值的迭代器适配器 |
返回值
*this
示例
本节未完成 原因:暂无示例 |
参阅
构造新的迭代器适配器 (公开成员函数) |