@thi.ng/dcons
Advanced tools
Comparing version 3.2.141 to 3.2.142
# Change Log | ||
- **Last updated**: 2025-01-29T16:25:48Z | ||
- **Last updated**: 2025-02-13T16:03:11Z | ||
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub) | ||
@@ -5,0 +5,0 @@ |
@@ -59,3 +59,5 @@ import type { Comparator, Fn, ICompare, IEmpty, ISeq, ISeqable, IStack, Maybe } from "@thi.ng/api"; | ||
* @remarks | ||
* Uses [`compare()`](https://docs.thi.ng/umbrella/compare/functions/compare.html) as default comparator. | ||
* Uses | ||
* [`compare`](https://docs.thi.ng/umbrella/compare/functions/compare.html) | ||
* as default comparator. | ||
* | ||
@@ -62,0 +64,0 @@ * @param cmp - |
@@ -275,3 +275,5 @@ import { compare } from "@thi.ng/compare/compare"; | ||
* @remarks | ||
* Uses [`compare()`](https://docs.thi.ng/umbrella/compare/functions/compare.html) as default comparator. | ||
* Uses | ||
* [`compare`](https://docs.thi.ng/umbrella/compare/functions/compare.html) | ||
* as default comparator. | ||
* | ||
@@ -278,0 +280,0 @@ * @param cmp - |
{ | ||
"name": "@thi.ng/dcons", | ||
"version": "3.2.141", | ||
"version": "3.2.142", | ||
"description": "Double-linked lists with comprehensive set of operations (incl. optional self-organizing behaviors)", | ||
@@ -42,13 +42,13 @@ "type": "module", | ||
"dependencies": { | ||
"@thi.ng/api": "^8.11.19", | ||
"@thi.ng/checks": "^3.6.22", | ||
"@thi.ng/compare": "^2.4.11", | ||
"@thi.ng/equiv": "^2.1.75", | ||
"@thi.ng/errors": "^2.5.25", | ||
"@thi.ng/random": "^4.1.10", | ||
"@thi.ng/transducers": "^9.2.17" | ||
"@thi.ng/api": "^8.11.20", | ||
"@thi.ng/checks": "^3.6.23", | ||
"@thi.ng/compare": "^2.4.12", | ||
"@thi.ng/equiv": "^2.1.76", | ||
"@thi.ng/errors": "^2.5.26", | ||
"@thi.ng/random": "^4.1.11", | ||
"@thi.ng/transducers": "^9.2.18" | ||
}, | ||
"devDependencies": { | ||
"esbuild": "^0.24.2", | ||
"typedoc": "^0.27.6", | ||
"esbuild": "^0.25.0", | ||
"typedoc": "^0.27.7", | ||
"typescript": "^5.7.3" | ||
@@ -101,3 +101,3 @@ }, | ||
}, | ||
"gitHead": "fc1d498e8d4b690db873c30cc594352a804e7a65\n" | ||
"gitHead": "9a0b33253fef092aaf301decf6ecd54317874d4c\n" | ||
} |
@@ -23,3 +23,3 @@ import type { Fn2, Predicate } from "@thi.ng/api"; | ||
* Reference: | ||
* - https://en.wikipedia.org/wiki/Self-organizing_list | ||
* https://en.wikipedia.org/wiki/Self-organizing_list | ||
*/ | ||
@@ -42,3 +42,3 @@ export declare class SOL<T> extends DCons<T> { | ||
* Reference: | ||
* - https://en.wikipedia.org/wiki/Self-organizing_list#Move_to_front_method_(MTF) | ||
* https://en.wikipedia.org/wiki/Self-organizing_list#Move_to_front_method_(MTF) | ||
*/ | ||
@@ -51,5 +51,5 @@ export declare const defMTF: <T>(src?: Iterable<T>) => SOL<T>; | ||
* Reference: | ||
* - https://en.wikipedia.org/wiki/Self-organizing_list#Transpose_method | ||
* https://en.wikipedia.org/wiki/Self-organizing_list#Transpose_method | ||
*/ | ||
export declare const defTranspose: <T>(src?: Iterable<T>) => SOL<T>; | ||
//# sourceMappingURL=sol.d.ts.map |
47486
1022
Updated@thi.ng/api@^8.11.20
Updated@thi.ng/checks@^3.6.23
Updated@thi.ng/compare@^2.4.12
Updated@thi.ng/equiv@^2.1.76
Updated@thi.ng/errors@^2.5.26
Updated@thi.ng/random@^4.1.11
Updated@thi.ng/transducers@^9.2.18