Home » C++ set destructor

C++ set destructor

by Online Tutorials Library

C++ ~set destructor

C++ set destructor is used to destroy all the elements of set container and deallocate all the storage memory allocated by the set container.

Syntax

Parameter

None

Return value

None

Complexity

Linear in set::size (destructors).

Iterator validity

All iterators, references and pointers are invalidated.

Data Races

The container set and all its elements are modified.

Exception Safety

This function never throws exceptions.

You may also like