Comparison<T extends Comparable> extension
- on
-
- List<
T>
- List<
Methods
-
equal(
List< T> other) → bool -
Available on List<
ReturnsT> , provided by the Comparison extensiontrueif the equalitythis(i) == other(i)holds for each indexi.
Operators
-
operator <(
List< T> other) → bool -
Available on List<
ReturnsT> , provided by the Comparison extensiontrueif the inequalitythis(i) < other(i)holds for each indexi. -
operator <=(
List< T> other) → bool -
Available on List<
ReturnsT> , provided by the Comparison extensiontrueif the inequalitythis(i) <= other(i)holds for each indexi. -
operator >(
List< T> other) → bool -
Available on List<
ReturnsT> , provided by the Comparison extensiontrueif the inequalitythis(i) > other(i)holds for each indexi. -
operator >=(
List< T> other) → bool -
Available on List<
ReturnsT> , provided by the Comparison extensiontrueif the inequalitythis(i) >= other(i)holds for each indexi.