interface Eq {
    equals(other: this): boolean;
}

Implemented by

Methods

Methods

  • Return true if the other value is exactly equal to this value.

    Parameters

    • other: this

      the value against which to compare.

    Returns boolean