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

  1. 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

# Return value

*this

# Example

This section is incompleteReason: no example

# See also