std::move_sentinel<S>::operator=

From cppreference.com
 
 
Iterator library
Iterator concepts
Iterator primitives
Algorithm concepts and utilities
Indirect callable concepts
Common algorithm requirements
Utilities
(C++20)
Iterator adaptors
Stream iterators
Iterator customization points
Iterator operations
(C++11)
(C++11)
Range access
(C++11)(C++14)
(C++11)(C++14)
(C++17)(C++20)
(C++14)(C++14)
(C++14)(C++14)
(C++17)
(C++17)
 
std::move_sentinel
Member functions
move_sentinel::operator=
(C++20)
Non-member functions
 
template<class S2>

  requires std::assignable_from<S&, const S2&>

    constexpr move_sentinel& operator=(const std::move_sentinel<S2>& other);
(since C++20)

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

Parameters

other - sentinel adaptor to assign

Return value

*this

Example

See also

(C++11)
assigns another iterator adaptor
(public member function of std::move_iterator<Iter>)