<list>

Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
This topic has not yet been rated - Rate this topic

Defines the container template class list and several supporting templates.

#include <list>

operator!=

Tests if the list object on the left side of the operator is not equal to the list object on the right side.

operator<

Tests if the list object on the left side of the operator is less than the list object on the right side.

operator<=

Tests if the list object on the left side of the operator is less than or equal to the list object on the right side.

operator==

Tests if the list object on the left side of the operator is equal to the list object on the right side.

operator>

Tests if the list object on the left side of the operator is greater than the list object on the right side.

operator>=

Tests if the list object on the left side of the operator is greater than or equal to the list object on the right side.

list Class

A template class of sequence containers that maintain their elements in a linear arrangement and allow efficient insertions and deletions at any location within the sequence.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.