loudo-ds-lmap 0.0.6 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -38,7 +38,7 @@ export declare class LMap<K extends {}, V extends {}> {
|
|
38
38
|
get valueEq(): (v1: V, v2: V) => boolean;
|
39
39
|
hasKey(key: K): boolean;
|
40
40
|
get(key: K): V | undefined;
|
41
|
-
protected afterGet(
|
41
|
+
protected afterGet(_bucket: B<K, V>): void;
|
42
42
|
[Symbol.iterator](): Iterator<Entry<K, V>>;
|
43
43
|
private grow;
|
44
44
|
private bucket;
|
package/dist/index.js
CHANGED
@@ -56,7 +56,7 @@ export class LMap {
|
|
56
56
|
this.afterGet(bucket);
|
57
57
|
return bucket === null || bucket === void 0 ? void 0 : bucket.value;
|
58
58
|
}
|
59
|
-
afterGet(
|
59
|
+
afterGet(_bucket) { }
|
60
60
|
*[(_a = buckets, _b = firstB, _c = lastB, _d = size, Symbol.iterator)]() {
|
61
61
|
for (let bucket = this[firstB]; bucket !== null; bucket = bucket.next) {
|
62
62
|
yield bucket;
|
@@ -98,7 +98,6 @@ export class LMap {
|
|
98
98
|
const r = b.value;
|
99
99
|
b.value = value;
|
100
100
|
this.afterGet(b);
|
101
|
-
const elements = One.of(bucket);
|
102
101
|
this.fire({
|
103
102
|
cleared: false,
|
104
103
|
added: { elements: One.of(bucket), at: undefined },
|