C++ Standard Library C++ STL Library

C++ set - ~set() Function



The C++ set::~set function is used to destroy the set. The destructors of the elements are called and the used storage is deallocated.

C++98: The set is destroyed and the storage capacity of set is deallocated using its allocator.

C++11: The allocator_traits::destroy is called on each element of the set and the storage capacity of set is deallocated using its allocator.

Note:: If the elements of the set are pointers, the pointed-to objects are not destroyed.

Syntax

~set();

Parameters

No parameter is required.

Return Value

None.

Time Complexity

Linear i.e, Θ(n).

Exceptions

Never throws exceptions.


❮ C++ <set> Library