[#bsl-vector-086-operator_assign-0ba] = xref:bsl.adoc[bsl]::xref:bsl/vector-086.adoc[vector<VALUE_TYPE*, ALLOCATOR>]::operator= :relfileprefix: ../../ :mrdocs: Assignment operators == Synopses Declared in `<bslstl_vector.h>` Copy‐assign from the specified `rhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/vector-086.adoc[vector<VALUE_TYPE*, ALLOCATOR>]& xref:bsl/vector-086/operator_assign-0b5.adoc[operator=](xref:bsl/vector-086.adoc[vector] const& rhs); ---- [.small]#xref:bsl/vector-086/operator_assign-0b5.adoc[_» more..._]# Move‐assign from the specified `rhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/vector-086.adoc[vector]& xref:bsl/vector-086/operator_assign-00.adoc[operator=](xref:BloombergLP/bslmf/MovableRef.adoc[BloombergLP::bslmf::MovableRef<vector<VALUE_TYPE*, ALLOCATOR>>] rhs) noexcept(/* see-below */); ---- [.small]#xref:bsl/vector-086/operator_assign-00.adoc[_» more..._]# Assign a new value to this vector. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/vector-086.adoc[vector<VALUE_TYPE*, ALLOCATOR>]& xref:bsl/vector-086/operator_assign-01.adoc[operator=](std::initializer_list<VALUE_TYPE*> values); ---- [.small]#xref:bsl/vector-086/operator_assign-01.adoc[_» more..._]# == Return Value reference providing modifiable access to this vector == Parameters [cols="1,4"] |=== | Name| Description | *rhs* | right‐hand operand | *values* | initializer list of elements |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#