operator==(std::move_iterator<Iter>, std::move_sentinel)
来自 cppreference.com
< cpp | iterator | move iterator
template< std::sentinel_for<Iter> S > friend constexpr bool |
(自 C++20 起) | |
比较 move_iterator
和 move_sentinel
。
此函数模板对普通的 非限定 或 限定查找 是不可见的,并且只能通过 依赖于参数的查找 找到,当 std::move_iterator<Iter> 是参数的关联类时。
!=
运算符从 operator==
合成。
内容 |
[编辑] 参数
i | - | std::move_iterator<Iter> |
s | - | std::move_sentinel<S>, 其中 S 模仿 std::sentinel_for<Iter> |
[编辑] 返回值
i.base() == s.base()
[编辑] 示例
本节不完整 原因:没有示例 |
[编辑] 另请参阅
(C++11)(C++11)(C++20 中已移除)(C++11)(C++11)(C++11)(C++11)(C++20) |
比较底层迭代器 (函数模板) |