std::list
From cppreference.com
Defined in header <list>
|
||
template< class T, |
||
std::list
is a container that supports fast insertion and removal of elements from anywhere in the container. Fast random access is not supported. It is usually implemented as double-linked list. Compared to std::forward_list this container provides bidirectional iteration capability while being less space efficient.
std::list
meets the requirements of Template:concept, Template:concept, Template:concept and Template:concept.
Contents |