operator> function template — Compares queues for greater-than
template <typename T, typename Container>
bool operator>(const queue<T, Container>& x, const queue<T, Container>& y);
The >
operator compares
two queues by comparing the adapted containers (e.g., the return
value is x.c
>=
y.c
).