<vector> Members

Reference

Operators

operator! =

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

operator<

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

operator<=

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

operator==

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

operator>

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

operator>=

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

Classes

vector Class

A template class of sequence containers that arrange elements of a given type in a linear arrangement and allow fast random access to any element.

Specializations

vector<bool> Class

A full specialization of the template class vector for elements of type bool with an allocator for the underlying type used by the specialization.

See Also

Reference

<vector>

Thread Safety in the Standard C++ Library

Standard Template Library