Created
August 17, 2016 10:15
-
-
Save Ginden/822aaafa98a122e76fb22d9c21cf6060 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const BACKING_MAP = Symbol('Backing map for CustomEqualitySet'); | |
const HASH_FUNCTION = Symbol('Hash function for CustomEqualitySet'); | |
export default class CustomEqualitySet extends Set { | |
constructor(iterable=[], hashFunction=val=>val) { | |
super(); | |
this[BACKING_MAP] = new Map(); | |
this[HASH_FUNCTION] = hashFunction; | |
for(const el of iterable) { | |
this.add(el); | |
} | |
} | |
has(value) { | |
return this[BACKING_MAP].has(this[HASH_FUNCTION](value)); | |
} | |
add(value) { | |
const hash = this[HASH_FUNCTION](value); | |
if (!this[BACKING_MAP].has(hash)) { | |
this[BACKING_MAP].set(hash, value) | |
} | |
return this; | |
} | |
delete(value) { | |
const hash = this[HASH_FUNCTION](value); | |
return this[BACKING_MAP].delete(hash); | |
} | |
*entries() { | |
for(const value of this[BACKING_MAP].values()) { | |
yield [value, value]; | |
} | |
} | |
*keys() { | |
for(const value of this[BACKING_MAP].values()) { | |
yield value; | |
} | |
} | |
*values() { | |
yield* this.keys(); | |
} | |
*[Symbol.iterator]() { | |
yield* this.keys(); | |
} | |
get size() { | |
return this[BACKING_MAP].size; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example usage: