loudo-ds-map-interfaces 0.0.4 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.ts +5 -1
- package/dist/index.js +25 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -16,12 +16,16 @@ export interface BaseMap<K extends {}, V extends {}> extends Tin<Entry<K, V>> {
|
|
16
16
|
}
|
17
17
|
export declare abstract class MapChange<K extends {}, V extends {}> {
|
18
18
|
abstract put(key: K, value: V): V | undefined;
|
19
|
+
putAll(input: MapInput<K, V>): void;
|
19
20
|
}
|
20
21
|
export interface MapChange<K extends {}, V extends {}> extends BaseMap<K, V>, Loud<Entry<K, V>> {
|
21
22
|
}
|
22
23
|
export declare abstract class MapRemove<K extends {}, V extends {}> {
|
23
|
-
abstract
|
24
|
+
abstract removeKey(key: K): V | undefined;
|
24
25
|
abstract clear(): void;
|
25
26
|
}
|
26
27
|
export interface MapRemove<K extends {}, V extends {}> extends BaseMap<K, V>, Loud<Entry<K, V>> {
|
27
28
|
}
|
29
|
+
export type Object<K extends {}, V extends {}> = K extends string ? Record<string, V> : never;
|
30
|
+
export type MapInput<K extends {}, V extends {}> = Map<K, V> | Iterable<Entry<K, V> | [K, V]> | Object<K, V>;
|
31
|
+
export declare function putAll<K extends {}, V extends {}>(map: MapChange<K, V>, input: MapInput<K, V>): void;
|
package/dist/index.js
CHANGED
@@ -14,9 +14,34 @@ export class BaseMap {
|
|
14
14
|
}
|
15
15
|
mixin(BaseMap, [Tin]);
|
16
16
|
export class MapChange {
|
17
|
+
putAll(input) {
|
18
|
+
putAll(this, input);
|
19
|
+
}
|
17
20
|
}
|
18
21
|
mixin(MapChange, [BaseMap, Loud]);
|
19
22
|
export class MapRemove {
|
20
23
|
}
|
21
24
|
mixin(MapRemove, [BaseMap, Loud]);
|
25
|
+
export function putAll(map, input) {
|
26
|
+
if (input instanceof Map) {
|
27
|
+
for (const x of input) {
|
28
|
+
map.put(x[0], x[1]);
|
29
|
+
}
|
30
|
+
return;
|
31
|
+
}
|
32
|
+
if (Symbol.iterator in input) {
|
33
|
+
for (const x of input) {
|
34
|
+
if (Array.isArray(x)) {
|
35
|
+
map.put(x[0], x[1]);
|
36
|
+
}
|
37
|
+
else {
|
38
|
+
map.put(x.key, x.value);
|
39
|
+
}
|
40
|
+
}
|
41
|
+
return;
|
42
|
+
}
|
43
|
+
for (const k in input) {
|
44
|
+
map.put(k, input[k]);
|
45
|
+
}
|
46
|
+
}
|
22
47
|
//# sourceMappingURL=index.js.map
|