std::move_sentinel<S>::operator=

来自cppreference.com
 
 
迭代器库
迭代器概念
迭代器原语
算法概念与工具
间接可调用概念
常用算法要求
(C++20)
(C++20)
(C++20)
工具
(C++20)
迭代器适配器
范围访问
(C++11)(C++14)
(C++14)(C++14)  
(C++11)(C++14)
(C++14)(C++14)  
(C++17)(C++20)
(C++17)
(C++17)
 
 
template< class S2 >

    requires std::assignable_from<S&, const S2&>

        constexpr move_sentinel& operator=( const std::move_sentinel<S2>& other );
(C++20 起)

other 的底层哨位的值(即 other.base())赋给底层哨位。

参数

other - 要赋值的哨位适配器

返回值

*this

示例

参阅

(C++11)
赋值另一迭代器适配器
(std::move_iterator<Iter> 的公开成员函数)