Comparison<T extends Comparable> extension

on

Methods

equal(List<T> other) bool
Returns true if the equality this(i) == other(i) holds for each index i.

Operators

operator <(List<T> other) bool
Returns true if the inequality this(i) < other(i) holds for each index i.
operator <=(List<T> other) bool
Returns true if the inequality this(i) <= other(i) holds for each index i.
operator >(List<T> other) bool
Returns true if the inequality this(i) > other(i) holds for each index i.
operator >=(List<T> other) bool
Returns true if the inequality this(i) >= other(i) holds for each index i.