operator<= function template — Compares lists for less-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 ! (y < x).
<=
! (y
<
x)