max_load_factor overloads
Declared in <bslstl_unorderedmultimap.h>
Return the maximum load factor allowed for this container. Note that if an insert operation would cause the load factor to exceed the max_load_factor, that same insert operation will increase the number of buckets and rehash the elements of the container into those buckets (see rehash).
float
max_load_factor() const noexcept;
» more...
Set the maximum load factor of this container to the specified newLoadFactor.
void
max_load_factor(float newLoadFactor);
» more...