std::basic_spanstream<CharT,Traits>::operator=

  1. Move assigns the other to *this, effectively move-assigning both the std::basic_iostream base class subobject and the wrapped std::basic_spanbuf.

# Declarations

basic_spanstream& operator=( basic_spanstream&& other );

(since C++23)

basic_spanstream& operator=( const basic_spanstream& ) = delete;

(since C++23)

# Parameters

# Return value

*this

# Example

This section is incompleteReason: no example

# See also