@esfx/equatable
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

@esfx/equatable

The @esfx/equatable package provides a low level API for defining equality.

Overview

Installation

npm i @esfx/equatable

Usage

import { Equatable, Equaler, Comparable, Comparer } from "@esfx/equatable"; 

class Person {
    constructor(firstName, lastName) {
        this.firstName = firstName;
        this.lastName = lastName;
    }

    toString() {
        return `${this.firstName} ${this.lastName}`;
    }

    [Equatable.equals](other) {
        return other instanceof Person
            && this.lastName === other.lastName
            && this.firstName === other.firstName;
    }

    [Equatable.hash]() {
        return Equaler.defaultEqualer.hash(this.lastName)
             ^ Equaler.defaultEqualer.hash(this.firstName);
    }

    [Comparable.compareTo](other) {
        if (!(other instanceof Person)) throw new TypeError();
        return Comparer.defaultComparer.compare(this.lastName, other.lastName)
            || Comparer.defaultComparer.compare(this.firstName, other.firstName);
    }
}

const people = [
    new Person("Alice", "Johnson")
    new Person("Bob", "Clark"),
];
people.sort(Comparer.defaultComparer.compare);
console.log(people); // Bob Clark,Alice Johnson

const obj1 = new Person("Bob", "Clark");
const obj2 = new Person("Bob", "Clark");
obj1 === obj2; // false
Equaler.defaultEqualer.equals(obj1, obj2); // true

API

You can read more about the API here.

Readme

Keywords

none

Package Sidebar

Install

npm i @esfx/equatable

Weekly Downloads

6,034

Version

1.0.2

License

Apache-2.0

Unpacked Size

256 kB

Total Files

39

Last publish

Collaborators

  • rbuckton