list [constructor] | Constructors |
~list [destructor] | Destroy this list by calling the destructor for each element and deallocating all allocated storage. |
operator= | Assignment operators |
append_range | Append to the end of this object the elements of the specified range. |
assign | assign overloads |
assign_range | Assign to this object the elements of the specified range. |
back | back overloads |
begin | begin overloads |
cbegin | Return a const iterator to the first element, or end if empty. |
cend | Return the past-the-end (forward) iterator providing non-modifiable access to this list. |
clear | Remove all the elements from this list. |
crbegin | Return a reverse iterator providing non-modifiable access to the last element in this list, and the past-the-end reverse iterator if this list is empty. |
crend | Return a const reverse iterator to the reverse end of this list. |
emplace | Insert a newly constructed value_type at the specified position. |
emplace_back | Append a newly constructed value_type object to the back of this list. |
emplace_front | Prepend a newly constructed value_type object to the front of this list. |
empty | Return true if this list has no elements, and false otherwise. |
end | end overloads |
erase | erase overloads |
front | front overloads |
get_allocator | Return a copy of the allocator used for memory allocation by this list. |
insert | insert overloads |
insert_range | Insert the elements of range at the specified position. |
max_size | Return an upper bound on the largest number of elements this list can hold. |
merge | merge overloads |
pop_back | Remove and destroy the last element of this list. The behavior is undefined unless this list contains at least one element. |
pop_front | Remove and destroy the first element of this list. The behavior is undefined unless this list contains at least one element. |
prepend_range | Prepend to the front of this object the elements of the specified range. |
push_back | push_back overloads |
push_front | push_front overloads |
rbegin | rbegin overloads |
remove | Erase all elements equal to value and return how many were erased. |
remove_if | Erase all elements for which predicate is true; return the count. |
rend | rend overloads |
resize | resize overloads |
reverse | Reverse the order of the elements in this list. |
size | Return the number of elements in this list. |
sort | sort overloads |
splice | splice overloads |
swap | Exchange the value of this object with that of the specified other. |
unique | unique overloads |