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