![]() |
Home | Libraries | People | FAQ | More |
Copy assignment.
string
& operator=(string
const& other);
Replace the contents with a copy of other
.
Linear in other.size()
.
Strong guarantee. Calls to memory_resource::allocate
may throw.
*this
Name |
Description |
---|---|
|
The string to use as a source to copy from. |