命名空间
变体
操作

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> 的公共成员函数) [编辑]