@thi.ng/associative
Advanced tools
Comparing version 6.0.8 to 6.0.9
@@ -82,3 +82,3 @@ var ArraySet_1; | ||
const { equiv, vals } = __private.get(this); | ||
for (let i = vals.length; --i >= 0;) { | ||
for (let i = vals.length; i-- > 0;) { | ||
if (equiv(vals[i], key)) { | ||
@@ -107,3 +107,3 @@ vals.splice(i, 1); | ||
const vals = __vals(this); | ||
for (let i = vals.length; --i >= 0;) { | ||
for (let i = vals.length; i-- > 0;) { | ||
const v = vals[i]; | ||
@@ -110,0 +110,0 @@ fn.call(thisArg, v, v, this); |
@@ -6,2 +6,10 @@ # Change Log | ||
## [6.0.9](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@6.0.8...@thi.ng/associative@6.0.9) (2021-11-10) | ||
**Note:** Version bump only for package @thi.ng/associative | ||
## [6.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@6.0.7...@thi.ng/associative@6.0.8) (2021-11-03) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "@thi.ng/associative", | ||
"version": "6.0.8", | ||
"version": "6.0.9", | ||
"description": "Alternative Map and Set implementations with customizable equality semantics & supporting operations", | ||
@@ -37,11 +37,11 @@ "type": "module", | ||
"dependencies": { | ||
"@thi.ng/api": "^8.1.0", | ||
"@thi.ng/arrays": "^2.0.7", | ||
"@thi.ng/binary": "^3.0.7", | ||
"@thi.ng/checks": "^3.0.6", | ||
"@thi.ng/compare": "^2.0.7", | ||
"@thi.ng/dcons": "^3.0.8", | ||
"@thi.ng/equiv": "^2.0.6", | ||
"@thi.ng/api": "^8.2.0", | ||
"@thi.ng/arrays": "^2.0.8", | ||
"@thi.ng/binary": "^3.0.8", | ||
"@thi.ng/checks": "^3.0.7", | ||
"@thi.ng/compare": "^2.0.8", | ||
"@thi.ng/dcons": "^3.0.9", | ||
"@thi.ng/equiv": "^2.0.7", | ||
"@thi.ng/errors": "^2.0.6", | ||
"@thi.ng/transducers": "^8.0.7", | ||
"@thi.ng/transducers": "^8.0.8", | ||
"tslib": "^2.3.1" | ||
@@ -184,3 +184,3 @@ }, | ||
}, | ||
"gitHead": "852cd2450617c86d15d18477dc634f17f04202eb" | ||
"gitHead": "5fe52419af63984ebe53032201b2a6174b9cb159" | ||
} |
@@ -189,3 +189,3 @@ <!-- This file is generated - DO NOT EDIT! --> | ||
Package sizes (gzipped, pre-treeshake): ESM: 6.43 KB | ||
Package sizes (gzipped, pre-treeshake): ESM: 6.96 KB | ||
@@ -192,0 +192,0 @@ ## Dependencies |
@@ -150,3 +150,3 @@ var SortedMap_1; | ||
node.next[level].v = v; | ||
} while (--level >= 0); | ||
} while (level-- > 0); | ||
return this; | ||
@@ -153,0 +153,0 @@ } |
@@ -43,3 +43,3 @@ import { __decorate } from "tslib"; | ||
const d = $this.dense; | ||
for (let i = $this.n; --i >= 0;) { | ||
for (let i = $this.n; i-- > 0;) { | ||
if (!o.has(d[i])) { | ||
@@ -46,0 +46,0 @@ return false; |
146052
Updated@thi.ng/api@^8.2.0
Updated@thi.ng/arrays@^2.0.8
Updated@thi.ng/binary@^3.0.8
Updated@thi.ng/checks@^3.0.7
Updated@thi.ng/compare@^2.0.8
Updated@thi.ng/dcons@^3.0.9
Updated@thi.ng/equiv@^2.0.7
Updated@thi.ng/transducers@^8.0.8