Assignment operators
Declared in <bslstl_ostringstream.h>
Move-assign from the specified rhs.
basic_ostringstream&
operator=(basic_ostringstream&& rhs);
» more...
Copy-assignment from a base basic_ostream is not supported.
BaseStream&
operator=(BaseStream const& other) = delete;
» more...
Move-assign from a base basic_ostream.
BaseStream&
operator=(BaseStream&& rhs);
» more...
| Name | Description |
|---|---|
| rhs | object from which to move-assign |
| other | unused source stream |