Standard C++ Library Reference ISO/IEC (VERSION3)
Next
<list>
Include the STL standard header <list> to define the container template class list and
several supporting templates.
namespace std {
template<class Ty, class Alloc>
class list;
// TEMPLATE FUNCTIONS
template<class Ty, class Alloc>
bool operator==(
const list<Ty, Alloc>& left,
const list<Ty, Alloc>& right);
template<class Ty, class Alloc>
bool operator!=(
const list<Ty, Alloc>& left,
const list<Ty, Alloc>& right);
template<class Ty, class Alloc>
bool operator<(
const list<Ty, Alloc>& left,
const list<Ty, Alloc>& right);
template<class Ty, class Alloc>
bool operator>(
const list<Ty, Alloc>& left,
const list<Ty, Alloc>& right);
template<class Ty, class Alloc>
bool operator<=(
const list<Ty, Alloc>& left,
const list<Ty, Alloc>& right);
template<class Ty, class Alloc>
bool operator>=(
const list<Ty, Alloc>& left,
const list<Ty, Alloc>& right);
template<class Ty, class Alloc>
void swap(
list<Ty, Alloc>& left,
list<Ty, Alloc>& right);
};