std::basic_stringstream::operator=
From cppreference.com
< cpp | io | basic stringstream
| basic_stringstream& operator=( basic_stringstream&& other ); |
(since C++11) | |
Moves the string stream. The source stream becomes of invalid state after the operation.
Parameters
| other | - | string stream to move. other becomes of invalid state after the operation.
|
Return value
*this
Example
| This section is incomplete Reason: no example |
See also
| (C++11) |
swaps two string streams (public member function) |