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