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