operator==(std::move_iterator<Iter>, std::move_sentinel)

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

# Return value

i.base() == s.base()

# Example

This section is incompleteReason: no example

# See also