C++ Unordered_multimap Library - ~unordered_multimap() Function



Description

The C++ function std::unordered_multimap::~unordered_multimap() destroys unordered_multimap object by deallocating it's memory.

Declaration

Following is the declaration for std::unordered_multimap::~unordered_multimap() function form std::unordered_map() header.

C++11

~unordered_multimap();

Parameters

None

Return value

Destructor never returns value.

unordered_map.htm
Advertisements