Skip to content

Latest commit

 

History

History

hash-map

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Hash Map

Generic hash map type allowing any serialiable input as key / value.

const map = new T.HashMap();

map.set('hello', 'world');
map.set(123, 456);
map.set(true, false);

console.log(map.get('hello'));
console.log(map.get(123));
console.log(map.get(true));