Skip to content

Latest commit

 

History

History

hash-set

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

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));