11 unstable releases (3 breaking)
0.3.2 | May 10, 2020 |
---|---|
0.3.1 | May 4, 2020 |
0.2.6 |
|
0.2.5 | Feb 25, 2020 |
0.0.0 | Nov 23, 2019 |
#2199 in Data structures
215 downloads per month
Used in 8 crates
(3 directly)
39KB
1K
SLoC
Hash-Chain
A tiered hashmap and hashset implementation that allows for easily representing lexically scoped variables.
const x = 0;
const y = 2;
function me() {
let x = 1;
console.log(x); //prints 1
console.log(y); //prints 2
}
console.log(x) //prints 0
Dependencies
~210KB