getValueAll overloads
Synopses
Declared in <bdlcc_stripedunorderedmultimap.h>
Load, into the specified *valuesPtr, the value attributes of every element in this hash map having the specified key. Return the number of elements found with key. Note that the order of the values returned is not specified.
std::size_t
getValueAll(
bsl::vector<VALUE>* valuesPtr,
KEY const& key) const;
Same as the preceding overload, using a std::pmr::vector buffer.
std::size_t
getValueAll(
std::pmr::vector<VALUE>* valuesPtr,
KEY const& key) const;
Same as the preceding overload, using a std::vector buffer.
std::size_t
getValueAll(
std::vector<VALUE>* valuesPtr,
KEY const& key) const;
Created with MrDocs