[#BloombergLP-bdlc-FlatHashMap-operator_assign-04] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::xref:BloombergLP/bdlc/FlatHashMap.adoc[FlatHashMap]::operator= :relfileprefix: ../../../ :mrdocs: Assignment operators == Synopses Declared in `<bdlc_flathashmap.h>` Assign to this map the value of the specified `rhs` map. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bdlc/FlatHashMap.adoc[FlatHashMap<KEY, VALUE, HASH, EQUAL>]& xref:BloombergLP/bdlc/FlatHashMap/operator_assign-05.adoc[operator=](xref:BloombergLP/bdlc/FlatHashMap.adoc[FlatHashMap] const& rhs); ---- [.small]#xref:BloombergLP/bdlc/FlatHashMap/operator_assign-05.adoc[_» more..._]# Assign to this map by moving from the specified `rhs` map. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bdlc/FlatHashMap.adoc[FlatHashMap<KEY, VALUE, HASH, EQUAL>]& xref:BloombergLP/bdlc/FlatHashMap/operator_assign-07.adoc[operator=](xref:BloombergLP/bslmf/MovableRef.adoc[bslmf::MovableRef<FlatHashMap>] rhs); ---- [.small]#xref:BloombergLP/bdlc/FlatHashMap/operator_assign-07.adoc[_» more..._]# Assign to this map the elements of the specified `values` list. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bdlc/FlatHashMap.adoc[FlatHashMap<KEY, VALUE, HASH, EQUAL>]& xref:BloombergLP/bdlc/FlatHashMap/operator_assign-02.adoc[operator=](bsl::initializer_list<value_type> values); ---- [.small]#xref:BloombergLP/bdlc/FlatHashMap/operator_assign-02.adoc[_» more..._]# == Return Value modifiable reference to this map == Parameters [cols="1,4"] |=== | Name| Description | *rhs* | map providing the value to assign | *values* | initializer list of key/value pairs to assign |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#