javasetmap.ts
TypeScript icon, indicating that this package has built-in type declarations

1.1.3 • Public • Published

Travis npm David

javasetmap.ts

Java-style Set and Map collections (on { hashCode(): int, equals(x: any): boolean} objects) written in TypeScript.

Installation

NPM: npm install javasetmap.ts --save

In the browser, you can include the UMD bundle in a script tag, and the module will be available under the global javasetmap_ts

Usage

import {JavaMap} from 'javasetmap.ts'
// node: const {JavaMap} = require('javasetmap.ts')
// browser: const {JavaMap} = nla

declare global { // remove this block if not using TypeScript
    interface Array<T> extends Equalable {}
    interface Number extends Equalable {}
}
Array.prototype.equals = function (o) { 
    return this == o || this.length == o.length && this.every((el, i) => el.equals(o[i])) 
}
Array.prototype.hashCode = function () { 
    return this.reduce((acc, current) => acc * 31 + current.hashCode(), 0) 
}
Number.prototype.equals = function (o) { return this == o }
Number.prototype.hashCode = function () { return this | 0 }

const myMap = new JavaMap<[number, number], string>() // new JavaMap() if not using TypeScript

myMap.set([1, 2], "foo")
myMap.has([1, 2]) // === true
myMap.get([1, 2]) // === "foo"
myMap.has([1, 3]) // === false
myMap.get([2, 1]) // === undefined

LICENSE MIT

Readme

Keywords

Package Sidebar

Install

npm i javasetmap.ts

Weekly Downloads

3

Version

1.1.3

License

MIT

Unpacked Size

57.5 kB

Total Files

20

Last publish

Collaborators

  • narida