Assignment operators
Declared in <bslstl_vector.h>
Copy-assign from the specified rhs.
vector<VALUE_TYPE*, ALLOCATOR>&
operator=(vector const& rhs);
» more...
Move-assign from the specified rhs.
vector&
operator=(BloombergLP::bslmf::MovableRef<vector<VALUE_TYPE*, ALLOCATOR>> rhs) noexcept(/* see-below */);
» more...
Assign a new value to this vector.
vector<VALUE_TYPE*, ALLOCATOR>&
operator=(std::initializer_list<VALUE_TYPE*> values);
» more...
reference providing modifiable access to this vector
| Name | Description |
|---|---|
| rhs | right-hand operand |
| values | initializer list of elements |