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


