| I/O manipulators | ||||
| Print functions(C++23) | ||||
| C-style I/O | ||||
| Buffers | ||||
(C++23) | ||||
(C++98/26*) | ||||
(C++20) | ||||
| Streams | ||||
| Abstractions | ||||
| File I/O | ||||
| String I/O | ||||
| Array I/O | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
(C++98/26*) | ||||
(C++98/26*) | ||||
(C++98/26*) | ||||
| Synchronized Output | ||||
(C++20) | ||||
| Types | ||||
| Error category interface | ||||
(C++11) | ||||
(C++11) |
basic_spanstream& operator=( basic_spanstream&& other); | (1) | (since C++23) |
basic_spanstream& operator=(const basic_spanstream&)= delete; | (2) | (since C++23) |
basic_spanstream is not copy assignable.Note that move assignment operator of the base class swaps all stream state variables (except forrdbuf()) between*this andother.
It is implementation-defined whether thestd::basic_spanbuf wrapped inother still holds an underlying buffer after the move assignment.
Contents |
| other | - | another stream to move from |
*this
May throw implementation-defined exceptions.
| This section is incomplete Reason: no example |
assigns abasic_spanbuf object(public member function of std::basic_spanbuf<CharT,Traits>)[edit] | |
(C++11) | move-assigns anotherbasic_iostream(protected member function)[edit] |