[#bsl-hashtable-insert_equal-0f] = xref:bsl.adoc[bsl]::xref:bsl/hashtable.adoc[hashtable]::insert_equal :relfileprefix: ../../ :mrdocs: `insert_equal` overloads == Synopses Declared in `<bslstp_hashtable.h>` Insert the specified `__obj` if no equivalent element exists. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/hashtable/iterator.adoc[iterator] xref:bsl/hashtable/insert_equal-01.adoc[insert_equal](xref:bsl/hashtable/value_type.adoc[value_type] const& __obj); ---- [.small]#xref:bsl/hashtable/insert_equal-01.adoc[_» more..._]# Insert each value in the specified `[__f, __l)]` range. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class _InputIterator> void xref:bsl/hashtable/insert_equal-06.adoc[insert_equal]( _InputIterator __f, _InputIterator __l); ---- [.small]#xref:bsl/hashtable/insert_equal-06.adoc[_» more..._]# Insert each value in the specified forward range. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class _ForwardIterator> void xref:bsl/hashtable/insert_equal-08.adoc[insert_equal]( _ForwardIterator __f, _ForwardIterator __l, std::forward_iterator_tag const& __tag); ---- [.small]#xref:bsl/hashtable/insert_equal-08.adoc[_» more..._]# Insert each value in the specified `[__f, __l)]` range, allowing duplicates. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class _InputIterator> void xref:bsl/hashtable/insert_equal-00.adoc[insert_equal]( _InputIterator __f, _InputIterator __l, std::input_iterator_tag const& __tag); ---- [.small]#xref:bsl/hashtable/insert_equal-00.adoc[_» more..._]# == Return Value iterator to the inserted element == Parameters [cols="1,4"] |=== | Name| Description | *__obj* | value to insert | *__f* | beginning of the input range | *__l* | end of the input range | *__tag* | forward‐iterator category tag (overload discriminator) |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#