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