loudo-ds-lmap 0.0.2 → 0.0.4

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 CHANGED
@@ -15,13 +15,14 @@ export interface LMapConfig<K extends {}, V extends {}> {
15
15
  valueEq?(value1: V, value2: V): boolean;
16
16
  }
17
17
  export declare class LMap<K extends {}, V extends {}> {
18
- #private;
19
- readonly config: LMapConfig<K, V>;
20
- private buckets;
21
- firstB: B<K, V>;
22
- lastB: B<K, V>;
18
+ protected _config: LMapConfig<K, V>;
19
+ protected buckets: B<K, V>[];
20
+ protected firstB: B<K, V>;
21
+ protected lastB: B<K, V>;
22
+ protected _size: number;
23
23
  constructor(input: MapInput<K, V>, config: LMapConfig<K, V>);
24
24
  get size(): number;
25
+ get config(): LMapConfig<K, V>;
25
26
  get first(): Entry<K, V> | undefined;
26
27
  get last(): Entry<K, V> | undefined;
27
28
  get only(): Entry<K, V>;
@@ -30,6 +31,7 @@ export declare class LMap<K extends {}, V extends {}> {
30
31
  get load(): number;
31
32
  hasKey(key: K): boolean;
32
33
  get(key: K): V | undefined;
34
+ protected afterGet(bucket: B<K, V>): void;
33
35
  [Symbol.iterator](): IterableIterator<Entry<K, V>>;
34
36
  private grow;
35
37
  private bucket;
package/dist/index.js CHANGED
@@ -1,15 +1,3 @@
1
- var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
2
- if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
3
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
4
- return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
5
- };
6
- var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
7
- if (kind === "m") throw new TypeError("Private method is not writable");
8
- if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
9
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
10
- return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
11
- };
12
- var _LMap_size;
13
1
  import { mixin, toTin, OnlyError } from "loudo-ds-core";
14
2
  import { MapChange, MapRemove } from "loudo-ds-map-interfaces";
15
3
  export class LMap {
@@ -17,18 +5,19 @@ export class LMap {
17
5
  this.buckets = [];
18
6
  this.firstB = null;
19
7
  this.lastB = null;
20
- _LMap_size.set(this, 0);
21
- this.config = config;
8
+ this._size = 0;
9
+ this._config = config;
22
10
  for (let i = 0; i < 4; i++) {
23
11
  this.buckets.push(null);
24
12
  }
25
13
  this.putAll(input);
26
14
  }
27
- get size() { return __classPrivateFieldGet(this, _LMap_size, "f"); }
15
+ get size() { return this._size; }
16
+ get config() { return this._config; }
28
17
  get first() { var _a; return (_a = this.firstB) !== null && _a !== void 0 ? _a : undefined; }
29
18
  get last() { var _a; return (_a = this.lastB) !== null && _a !== void 0 ? _a : undefined; }
30
19
  get only() {
31
- if (__classPrivateFieldGet(this, _LMap_size, "f") !== 1)
20
+ if (this._size !== 1)
32
21
  throw new OnlyError();
33
22
  return this.firstB;
34
23
  }
@@ -39,10 +28,12 @@ export class LMap {
39
28
  return this.bucket(key) !== null;
40
29
  }
41
30
  get(key) {
42
- var _a;
43
- return (_a = this.bucket(key)) === null || _a === void 0 ? void 0 : _a.value;
31
+ const bucket = this.bucket(key);
32
+ this.afterGet(bucket);
33
+ return bucket === null || bucket === void 0 ? void 0 : bucket.value;
44
34
  }
45
- *[(_LMap_size = new WeakMap(), Symbol.iterator)]() {
35
+ afterGet(bucket) { }
36
+ *[Symbol.iterator]() {
46
37
  for (let bucket = this.firstB; bucket !== null; bucket = bucket.next) {
47
38
  yield bucket;
48
39
  }
@@ -70,8 +61,7 @@ export class LMap {
70
61
  return null;
71
62
  }
72
63
  put(key, value) {
73
- var _a;
74
- if (__classPrivateFieldGet(this, _LMap_size, "f") / this.buckets.length >= this.load)
64
+ if (this._size / this.buckets.length >= this.load)
75
65
  this.grow();
76
66
  const hashCode = this.config.hashCode(key);
77
67
  const bucket = {
@@ -83,6 +73,7 @@ export class LMap {
83
73
  if (b.hashCode === hashCode && this.keyEq(key, b.key)) {
84
74
  const r = b.value;
85
75
  b.value = value;
76
+ this.afterGet(b);
86
77
  const elements = toTin([bucket]);
87
78
  this.fire({
88
79
  cleared: false,
@@ -104,12 +95,11 @@ export class LMap {
104
95
  bucket.prev = this.lastB;
105
96
  this.lastB = bucket;
106
97
  }
107
- __classPrivateFieldSet(this, _LMap_size, (_a = __classPrivateFieldGet(this, _LMap_size, "f"), _a++, _a), "f");
98
+ this._size++;
108
99
  this.fire({ cleared: false, added: { elements: toTin([bucket]), at: undefined, count: 1 } });
109
100
  return undefined;
110
101
  }
111
102
  removeKey(key) {
112
- var _a;
113
103
  const hash = this.config.hashCode(key);
114
104
  let prev = null;
115
105
  const i = Math.abs(hash) % this.buckets.length;
@@ -122,7 +112,7 @@ export class LMap {
122
112
  }
123
113
  if (bucket === null)
124
114
  return undefined;
125
- __classPrivateFieldSet(this, _LMap_size, (_a = __classPrivateFieldGet(this, _LMap_size, "f"), _a--, _a), "f");
115
+ this._size--;
126
116
  if (prev === null)
127
117
  this.buckets[i] = bucket.chain;
128
118
  else
@@ -146,7 +136,7 @@ export class LMap {
146
136
  return;
147
137
  this.firstB = null;
148
138
  this.lastB = null;
149
- __classPrivateFieldSet(this, _LMap_size, 0, "f");
139
+ this._size = 0;
150
140
  this.fire({ cleared: true });
151
141
  }
152
142
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "loudo-ds-lmap",
3
3
  "type": "module",
4
- "version": "0.0.2",
4
+ "version": "0.0.4",
5
5
  "description": "Flexible loud map.",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -33,6 +33,6 @@
33
33
  "vitest": "^2.1.4"
34
34
  },
35
35
  "dependencies": {
36
- "loudo-ds-map-interfaces": "^0.0.6"
36
+ "loudo-ds-map-interfaces": "^0.0.12"
37
37
  }
38
38
  }