Interface PartialOrd

interface PartialOrd {
    partialCompare(other: this): number;
}

Implemented by

Methods

  • Compare this value to another, returning a relative value as documented by Array.sort

    Parameters

    • other: this

      the value against which to compare.

    Returns number