[#BloombergLP-bdlc-HashTable-insert-05] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlc.adoc[bdlc]::xref:BloombergLP/bdlc/HashTable.adoc[HashTable]::insert :relfileprefix: ../../../ :mrdocs: `insert` overloads == Synopses Declared in `<bdlc_hashtable.h>` Insert an element with the specified `key` into this object; load a handle to the new element into the specified `handle`. Return true if successful, and false otherwise. The behavior is undefined unless `key` does not evaluate to a "null" or "removed" bucket, as defined by the parameterized `TRAITS` (see the component‐level documentation for more details). Note that this method will fail to compile unless the `VALUE` parameter is `bslmf::Nil`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bdlc/HashTable/insert-00.adoc[insert]( xref:BloombergLP/bdlc/HashTable/Handle.adoc[Handle]* handle, KEY const& key); ---- [.small]#xref:BloombergLP/bdlc/HashTable/insert-00.adoc[_» more..._]# Insert an element with the specified `key` and the specified `value` into this object; load a handle to the new element into the specified `handle`. Return true if successful, and false otherwise. The behavior is undefined unless `key` and `value` do not evaluate to a "null" or "removed" bucket, as defined by the parameterized `TRAITS` (see the component‐level documentation for more details). This method will fail to compile unless the `VALUE` parameter is not `bslmf::Nil`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:BloombergLP/bdlc/HashTable/insert-0c.adoc[insert]( xref:BloombergLP/bdlc/HashTable/Handle.adoc[Handle]* handle, KEY const& key, VALUE const& value); ---- [.small]#xref:BloombergLP/bdlc/HashTable/insert-0c.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#