@thi.ng/grid-iterators 4.0.88 → 4.0.89
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/CHANGELOG.md +1 -1
- package/diamond-square.d.ts +1 -1
- package/interleave.d.ts +3 -3
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
package/diamond-square.d.ts
CHANGED
package/interleave.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export interface InterleaveOpts2D extends GridIterOpts2D {
|
|
|
22
22
|
*
|
|
23
23
|
* @param opts -
|
|
24
24
|
*/
|
|
25
|
-
export declare const interleaveColumns2d: (opts: InterleaveOpts2D) => Generator<import("./api.js").GridCoord2D, void,
|
|
25
|
+
export declare const interleaveColumns2d: (opts: InterleaveOpts2D) => Generator<import("./api.js").GridCoord2D, void, any>;
|
|
26
26
|
/**
|
|
27
27
|
* Similar to {@link interleaveColumns2d}, but yields 2D grid coordinates in
|
|
28
28
|
* the order of interleaved rows with configurable `step` size (default:
|
|
@@ -37,6 +37,6 @@ export declare const interleaveColumns2d: (opts: InterleaveOpts2D) => Generator<
|
|
|
37
37
|
*
|
|
38
38
|
* @param opts -
|
|
39
39
|
*/
|
|
40
|
-
export declare const interleaveRows2d: (opts: InterleaveOpts2D) => Generator<import("./api.js").GridCoord2D, void,
|
|
41
|
-
export declare function __interleave(opts: InterleaveOpts2D, order: [number, number], [x, y]: [number, number]): Generator<import("./api.js").GridCoord2D, void,
|
|
40
|
+
export declare const interleaveRows2d: (opts: InterleaveOpts2D) => Generator<import("./api.js").GridCoord2D, void, any>;
|
|
41
|
+
export declare function __interleave(opts: InterleaveOpts2D, order: [number, number], [x, y]: [number, number]): Generator<import("./api.js").GridCoord2D, void, any>;
|
|
42
42
|
//# sourceMappingURL=interleave.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/grid-iterators",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.89",
|
|
4
4
|
"description": "2D grid and shape iterators w/ multiple orderings",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -38,20 +38,20 @@
|
|
|
38
38
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@thi.ng/api": "^8.11.
|
|
42
|
-
"@thi.ng/arrays": "^2.10.
|
|
43
|
-
"@thi.ng/binary": "^3.4.
|
|
44
|
-
"@thi.ng/bitfield": "^2.3.
|
|
45
|
-
"@thi.ng/errors": "^2.5.
|
|
46
|
-
"@thi.ng/morton": "^3.1.
|
|
47
|
-
"@thi.ng/random": "^4.0.
|
|
48
|
-
"@thi.ng/transducers": "^9.2.
|
|
41
|
+
"@thi.ng/api": "^8.11.10",
|
|
42
|
+
"@thi.ng/arrays": "^2.10.1",
|
|
43
|
+
"@thi.ng/binary": "^3.4.33",
|
|
44
|
+
"@thi.ng/bitfield": "^2.3.51",
|
|
45
|
+
"@thi.ng/errors": "^2.5.16",
|
|
46
|
+
"@thi.ng/morton": "^3.1.97",
|
|
47
|
+
"@thi.ng/random": "^4.0.4",
|
|
48
|
+
"@thi.ng/transducers": "^9.2.4"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@microsoft/api-extractor": "^7.47.
|
|
52
|
-
"esbuild": "^0.23.
|
|
53
|
-
"typedoc": "^0.26.
|
|
54
|
-
"typescript": "^5.
|
|
51
|
+
"@microsoft/api-extractor": "^7.47.9",
|
|
52
|
+
"esbuild": "^0.23.1",
|
|
53
|
+
"typedoc": "^0.26.7",
|
|
54
|
+
"typescript": "^5.6.2"
|
|
55
55
|
},
|
|
56
56
|
"keywords": [
|
|
57
57
|
"2d",
|
|
@@ -166,5 +166,5 @@
|
|
|
166
166
|
],
|
|
167
167
|
"year": 2019
|
|
168
168
|
},
|
|
169
|
-
"gitHead": "
|
|
169
|
+
"gitHead": "b52baa3750ddd1256892df966ab7ac9b4806a9ef\n"
|
|
170
170
|
}
|