std::basic_ispanstream<CharT,Traits>::operator=
Min standard notice:
- Move assigns the other to *this, effectively move-assigning both the std::basic_istream base class subobject and the wrapped std::basic_spanbuf.
# Declarations
basic_ispanstream& operator=( basic_ispanstream&& other );
(since C++23)
basic_ispanstream& operator=( const basic_ispanstream& ) = delete;
(since C++23)
# Parameters
other: another stream to move from
# Return value
*this
# Example
This section is incompleteReason: no example