Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Defines the container template class forward_list and several supporting templates.
#include <forward_list>
Operators
Tests if the forward list object on the left side of the operator is equal to the forward list object on the right side. |
|
Tests if the forward list object on the left side of the operator is not equal to the forward list object on the right side. |
|
Tests if the forward list object on the left side of the operator is less than the forward list object on the right side. |
|
Tests if the forward list object on the left side of the operator is less than or equal to the forward list object on the right side. |
|
Tests if the forward list object on the left side of the operator is greater than the forward list object on the right side. |
|
Tests if the forward list object on the left side of the operator is greater than or equal to the forward list object on the right side. |
Functions
Exchanges the elements of two forward lists. |
Classes
Describes an object that controls a varying-length sequence of elements. The sequence is stored as a singly-linked list of elements, each containing a member of type Type. |