export const equals = Symbol('equals'); /** * Can be evaluated vor equality */ export interface IEquatable { [equals](other: T): boolean; }