Standard C++ Library Reference ISO/IEC (VERSION3)
operator>
template<class T, class A>
 bool operator>(
 const slist <T, A>& lhs,
 const slist <T, A>& rhs);
The template function returns rhs < lhs.
operator>=
template<class T, class A>
 bool operator>=(
 const slist <T, A>& lhs,
 const slist <T, A>& rhs);
The template function returns !(lhs < rhs).
slist
allocator_type · assign · back · begin · clear · const_iterator
· const_pointer · const_reference · difference_type · empty ·
end · erase · front · get_allocator · insert · iterator · slist
· max_size · merge · pointer · pop_back · pop_front · previous ·
push_back · push_front · reference · remove · remove_if · resize
· reverse · size · size_type · sort · splice · swap · unique ·
value_type
template<class T, class A = allocator<T> >
 class slist {
public:
 typedef A allocator_type;
 typedef typename A::pointer pointer;
 typedef typename A::const_pointer
 const_pointer;
 typedef typename A::reference reference;
 typedef typename A::const_reference const_reference;
 typedef typename A::value_type value_type;
 typedef T0 iterator;
 typedef T1 const_iterator;










