C++ Unordered_map Library - ~unordered_map() Function



Description

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

Declaration

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

C++11

~unordered_map()

Parameters

None

Return value

Destructor never returns value.

unordered_map.htm
Advertisements