std::move_sentinel<S>::operator=

The underlying sentinel is assigned the value of the underlying sentinel of other, i.e. other.base().

# Declarations

template< class S2 >
requires std::assignable_from<S&, const S2&>
constexpr move_sentinel& operator=( const std::move_sentinel<S2>& other );

(since C++20)

# Parameters

# Return value

*this

# Example

This section is incompleteReason: no example

# See also