Assignment operators
Declared in <bslstl_hashtable.h>
Copy-assign to this object from rhs and return *this.
HashTable<KEY_CONFIG, HASHER, COMPARATOR, ALLOCATOR>&
operator=(HashTable const& rhs);
» more...
Move-assign to this object from rhs and return *this.
HashTable<KEY_CONFIG, HASHER, COMPARATOR, ALLOCATOR>&
operator=(BloombergLP::bslmf::MovableRef<HashTable> rhs);
» more...
reference providing modifiable access to this object
| Name | Description |
|---|---|
| rhs | hash table to copy-assign from |