Skip to content

Files

Latest commit

9a35f25 · Mar 13, 2016

History

History

hash-set

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 13, 2016
Mar 13, 2016
Mar 13, 2016

Hash Set

Generic hash set type allowing any serialiable input.

const set = new T.HashSet();

set.add('hello');
set.add(123);
set.add(true);

console.log(set.has('hello'));
console.log(set.has(123));
console.log(set.has(true));