Namespaces
Variants
Views
Actions

std::list<T,Allocator>::~list

From cppreference.com
< cpp‎ | container‎ | list
Revision as of 07:25, 13 November 2021 by Ljestrada (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 
 
 
 
~list();

A destructor. Destructs the list. The destructors of the elements are called and the used storage is deallocated. Note, that if the elements are pointers, the pointed-to objects are not destroyed.

[edit] Complexity

Linear in the size of the list.