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