operator-(std::move_iterator)
来自 cppreference.com
< cpp | iterator | move iterator
template< class Iterator1, class Iterator2 > auto operator-( const move_iterator<Iterator1>& lhs, |
(自 C++11 起) (直到 C++17) |
|
template< class Iterator1, class Iterator2 > constexpr auto operator-( const move_iterator<Iterator1>& lhs, |
(自 C++17 起) | |
返回两个迭代器适配器之间的距离。
内容 |
[编辑] 参数
lhs, rhs | - | 要计算差值的迭代器适配器 |
[编辑] 返回值
lhs.base() - rhs.base()
[编辑] 示例
此部分尚未完善 原因:没有示例 |
[编辑] 另请参阅
使迭代器前进或后退 (公有成员函数) | |
(C++11) |
使迭代器前进 (函数模板) |