ComparableBasics<T> extension
Utility extension methods for the Comparable class.
- on
-
- Comparable<
T>
- Comparable<
Operators
-
operator <(
T other) → bool -
Returns true if
this
should be ordered strictly beforeother
. -
operator <=(
T other) → bool -
Returns true if
this
should be ordered before or withother
. -
operator >(
T other) → bool -
Returns true if
this
should be ordered strictly afterother
. -
operator >=(
T other) → bool -
Returns true if
this
should be ordered after or withother
.