Standard C++ Library Reference ISO/IEC (VERSION3)

const Container<Ty>& right);
template<class Ty>
bool operator<(
const Container<Ty>& left,
const Container<Ty>& right);
template<class Ty>
bool operator>(
const Container<Ty>& left,
const Container<Ty>& right);
template<class Ty>
bool operator<=(
const Container<Ty>& left,
const Container<Ty>& right);
template<class Ty>
bool operator>=(
const Container<Ty>& left,
const Container<Ty>& right);
template<class Ty>
void swap(
Container<Ty>& left,
Container<Ty>& right);
};
Container
begin · clear · const_iterator · const_reference ·
const_reverse_iterator · difference_type · empty · end · erase ·
iterator · max_size · rbegin · reference · rend ·
reverse_iterator · size · size_type · swap · value_type
template<class Ty>
class Container {
public:
typedef T0 size_type;
typedef T1 difference_type;
typedef T2 reference;
typedef T3 const_reference;
typedef T4 value_type;
typedef T5 iterator;
typedef T6 const_iterator;
typedef T7 reverse_iterator;