[#BloombergLP-bdlcc-StripedUnorderedContainerImpl-eraseBulkAll] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlcc.adoc[bdlcc]::xref:BloombergLP/bdlcc/StripedUnorderedContainerImpl.adoc[StripedUnorderedContainerImpl]::eraseBulkAll :relfileprefix: ../../../ :mrdocs: Erase from this hash map elements in this hash map having any of the values in the keys contained between the specified `first` (inclusive) and `last` (exclusive) random‐access iterators. The iterators provide read access to a sequence of `KEY` objects. All erasures are done by the calling thread and the order of erasure is not specified. Return the number of elements removed. The behavior is undefined unless `first <= last`. Note that the map may not have an element for every value in `keys`. == Synopsis Declared in `<bdlcc_stripedunorderedcontainerimpl.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class RANDOM_ITER> std::size_t eraseBulkAll( RANDOM_ITER first, RANDOM_ITER last); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#