Assignment operators
Declared in <bslstl_stack.h>
Assign to this object the value of the specified rhs object.
stack<VALUE, CONTAINER>&
operator=(stack const& rhs);
» more...
Move-assign to this object the value of the specified rhs object.
stack<VALUE, CONTAINER>&
operator=(BloombergLP::bslmf::MovableRef<stack> rhs) noexcept(false);
» more...
reference providing modifiable access to this object
| Name | Description |
|---|---|
| rhs | stack whose value is assigned to this object |