operator-(std::move_iterator)
< 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()
示例
本节未完成 原因:暂无示例 |