operator-(std::move_iterator)
From cppreference.com
< cpp | iterator | move iterator
C++
Iterator library
Iterator concepts | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Iterator primitives | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Algorithm concepts and utilities | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Indirect callable concepts | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Common algorithm requirements | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Utilities | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Iterator adaptors | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
std::move_iterator
Member functions | ||||
Non-member functions | ||||
(until C++20)(C++20)
|
||||
(C++20)
|
||||
operator- | ||||
(C++20)
|
||||
(C++20)
|
||||
(C++20)
|
||||
(C++11)
|
Defined in header <iterator>
|
||
template
<
class Iter1, class Iter2 >
auto operator-
(
const move_iterator<Iter1>
& lhs, |
(since C++11) (constexpr since C++17) |
|
Returns the distance between two iterator adaptors.
Parameters
lhs, rhs | - | iterator adaptors to compute the difference of |
Return value
lhs.base() - rhs.base()
Example
This section is incomplete Reason: no example |
See also
advances or decrements the iterator (public member function) |
|
(C++11)
|
advances the iterator (function template) |