Namespaces
Variants

std::unordered_map<Key,T,Hash,KeyEqual,Allocator>::~unordered_map

From cppreference.com
Revision as of 16:07, 4 December 2021 by Ljestrada (talk | contribs) (langlinks)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 
 
 
 
~unordered_map();
(since C++11)

Destroys the unordered_map. The destructors of the elements are called and the dynamically allocated storage (if any) is deallocated. Note, that if the elements are pointers, the pointed-to objects are not destroyed.

Complexity

Linear in the size of the unordered_map.