IsoComparableExtension<T extends IsoStandardized<Object>> extension

Extension that adds additional Comparable functionality to IsoStandardized classes.

on

Methods

isSameAs(T? other) bool

Available on Comparable<T>, provided by the IsoComparableExtension extension

Returns whether this ISO object's code is equal to other's code.

Operators

operator <(T? other) bool

Available on Comparable<T>, provided by the IsoComparableExtension extension

Returns whether this ISO object's code is less than other's code.
operator <=(T? other) bool

Available on Comparable<T>, provided by the IsoComparableExtension extension

Returns whether this ISO object's code is less than or equal to other's code.
operator >(T? other) bool

Available on Comparable<T>, provided by the IsoComparableExtension extension

Returns whether this ISO object's code is greater than other's code.
operator >=(T? other) bool

Available on Comparable<T>, provided by the IsoComparableExtension extension

Returns whether this ISO object's code is greater than or equal to other's code.