命名空间
变体
操作

operator-(std::move_iterator)

来自 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 Iterator1, class Iterator2 >

auto operator-( const move_iterator<Iterator1>& lhs,
                const move_iterator<Iterator2>& rhs

              ) -> decltype(lhs.base() - rhs.base());
(自 C++11 起)
(直到 C++17)
template< class Iterator1, class Iterator2 >

constexpr auto operator-( const move_iterator<Iterator1>& lhs,
                          const move_iterator<Iterator2>& rhs

                        ) -> decltype(lhs.base() - rhs.base());
(自 C++17 起)

返回两个迭代器适配器之间的距离。

内容

[编辑] 参数

lhs, rhs - 要计算差值的迭代器适配器

[编辑] 返回值

lhs.base() - rhs.base()

[编辑] 示例


[编辑] 另请参阅

使迭代器前进或后退
(公有成员函数) [编辑]
(C++11)
使迭代器前进
(函数模板) [编辑]