operator-(std::move_iterator)

From cppreference.com
 
 
Iterator library
Iterator concepts
Iterator primitives
Algorithm concepts and utilities
Indirect callable concepts
Common algorithm requirements
(C++20)
(C++20)
(C++20)
Utilities
(C++20)
Iterator adaptors
Range access
(C++11)(C++14)
(C++14)(C++14)  
(C++11)(C++14)
(C++14)(C++14)  
(C++17)(C++20)
(C++17)
(C++17)
 
 
Defined in header <iterator>
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)

Returns the distance between two iterator adaptors.

Parameters

lhs, rhs - iterator adaptors to compute the difference of

Return value

lhs.base() - rhs.base()

Example

See also

advances or decrements the iterator
(public member function)
(C++11)
advances the iterator
(function template)