std::move_sentinel
来自 cppreference.com
在头文件 <iterator> 中定义 |
||
template< std::semiregular S > class move_sentinel; |
(自 C++20 起) | |
std::move_sentinel
是一个哨兵适配器,用于与 std::move_iterator 一起表示范围。
内容 |
[edit] 模板参数
S | - | 基础哨兵的类型 |
[edit] 成员函数
构造一个新的 move_sentinel (公有成员函数) | |
将一个 move_sentinel 的内容赋值给另一个(公有成员函数) | |
返回基础哨兵的副本 (公有成员函数) |
[edit] 成员对象
成员名称 | 定义 |
last (私有) |
基础哨兵 (仅用于说明的成员对象*) |
[edit] 非成员函数
比较基础迭代器和基础哨兵 (函数模板) | |
计算基础迭代器和基础哨兵之间的距离 (函数模板) |
[edit] 示例
本节内容不完整 原因:没有示例 |
[edit] 另请参阅
(C++11) |
迭代器适配器,其解引用为右值 (类模板) |