operator> function template — Compares lists for greater-than
template <typename T, typename A> bool operator>(const list<T,A>& x, const list<T,A>& y);
The > operator is equivalent to (y < x).
>
(y
<
x)