operator==(std::move_iterator<Iter>, std::move_sentinel)
Min standard notice:
Compares a move_iterator and a move_sentinel.
# Declarations
template< std::sentinel_for<Iter> S >
friend constexpr bool
operator==( const move_iterator& i, const std::move_sentinel<S>& s );
(since C++20)
# Parameters
i: the move iterator to compares: the move sentinel to compare
# Return value
i.base() == s.base()
# Example
This section is incompleteReason: no example