operator-(std::move_iterator)
Min standard notice:
Header: <iterator>
Returns the distance between two iterator adaptors.
# Declarations
template< class Iter1, class Iter2 >
auto operator-( const move_iterator<Iter1>& lhs,
const move_iterator<Iter2>& rhs )
-> decltype(lhs.base() - rhs.base());
(since C++11) (constexpr since C++17)
# Parameters
lhs, rhs: iterator adaptors to compute the difference of
# Return value
lhs.base() - rhs.base()
# Example
This section is incompleteReason: no example