@thi.ng/associative
Advanced tools
Comparing version 4.4.0 to 4.4.1
@@ -6,2 +6,13 @@ # Change Log | ||
## [4.4.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@4.4.0...@thi.ng/associative@4.4.1) (2020-07-08) | ||
### Bug Fixes | ||
* **associative:** set combinator arg types ([1cbbf27](https://github.com/thi-ng/umbrella/commit/1cbbf272d938232f83511dbb79c871aee081bde0)) | ||
# [4.4.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/associative@4.3.0...@thi.ng/associative@4.4.0) (2020-07-08) | ||
@@ -8,0 +19,0 @@ |
@@ -21,3 +21,3 @@ import type { Reducer } from "@thi.ng/transducers"; | ||
export declare function differenceR<T>(): Reducer<Set<T>, Iterable<T>>; | ||
export declare function differenceR<T>(src: Iterable<T>): Set<T>; | ||
export declare function differenceR<T>(src: Iterable<Iterable<T>>): Set<T>; | ||
//# sourceMappingURL=difference.d.ts.map |
@@ -22,3 +22,3 @@ import type { Reducer } from "@thi.ng/transducers"; | ||
export declare function intersectionR<T>(): Reducer<Set<T>, Iterable<T>>; | ||
export declare function intersectionR<T>(src: Iterable<T>): Set<T>; | ||
export declare function intersectionR<T>(src: Iterable<Iterable<T>>): Set<T>; | ||
//# sourceMappingURL=intersection.d.ts.map |
{ | ||
"name": "@thi.ng/associative", | ||
"version": "4.4.0", | ||
"version": "4.4.1", | ||
"description": "Alternative Map and Set implementations with customizable equality semantics & supporting operations", | ||
@@ -56,6 +56,6 @@ "module": "./index.js", | ||
"@thi.ng/compare": "^1.3.11", | ||
"@thi.ng/dcons": "^2.2.24", | ||
"@thi.ng/dcons": "^2.2.25", | ||
"@thi.ng/equiv": "^1.0.26", | ||
"@thi.ng/errors": "^1.2.16", | ||
"@thi.ng/transducers": "^7.1.4", | ||
"@thi.ng/transducers": "^7.1.5", | ||
"tslib": "^2.0.0" | ||
@@ -98,3 +98,3 @@ }, | ||
}, | ||
"gitHead": "9966e103d7dc816ac8e6989d250bfb1a57da51a4" | ||
"gitHead": "775cdb99da136625e4633e3efdc0aa15ea7a3917" | ||
} |
@@ -20,3 +20,3 @@ import type { Reducer } from "@thi.ng/transducers"; | ||
export declare function unionR<T>(): Reducer<Set<T>, Iterable<T>>; | ||
export declare function unionR<T>(src: Iterable<T>): Set<T>; | ||
export declare function unionR<T>(src: Iterable<Iterable<T>>): Set<T>; | ||
//# sourceMappingURL=union.d.ts.map |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
307200
Updated@thi.ng/dcons@^2.2.25
Updated@thi.ng/transducers@^7.1.5