Dynamic memory used by an unordered_map's nodes and bucket array.
Declared in <memusage.h>
template<
typename X,
typename Y,
typename Z>
static
size_t
DynamicUsage(std::unordered_map<X, Y, Z> const& m);
The bytes allocated for the nodes plus the bucket array.
| Name | Description |
|---|---|
| m | The unordered_map to measure. |