Interface Comparable

interface Comparable {
    equals: ((rhs: any) => boolean);
    geq: ((rhs: any) => boolean);
    gt: ((rhs: any) => boolean);
    leq: ((rhs: any) => boolean);
    lt: ((rhs: any) => boolean);
}

Implemented by

Properties

Properties

equals: ((rhs: any) => boolean)
geq: ((rhs: any) => boolean)
gt: ((rhs: any) => boolean)
leq: ((rhs: any) => boolean)
lt: ((rhs: any) => boolean)