@thi.ng/soa 0.4.49 → 0.4.50

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-03-14T13:27:20Z
3
+ - **Last updated**: 2023-03-27T19:05:48Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -58,7 +58,7 @@ by
58
58
  - [@thi.ng/simd](https://github.com/thi-ng/umbrella/tree/develop/packages/simd) - WASM based SIMD vector operations for batch processing
59
59
  - [@thi.ng/unionstruct](https://github.com/thi-ng/umbrella/tree/develop/packages/unionstruct) - C-style struct, union and bitfield read/write views of ArrayBuffers
60
60
  - [@thi.ng/vector-pools](https://github.com/thi-ng/umbrella/tree/develop/packages/vector-pools) - Data structures for managing & working with strided, memory mapped vectors
61
- - [@thi.ng/vectors](https://github.com/thi-ng/umbrella/tree/develop/packages/vectors) - Optimized 2d/3d/4d and arbitrary length vector operations
61
+ - [@thi.ng/vectors](https://github.com/thi-ng/umbrella/tree/develop/packages/vectors) - Optimized 2d/3d/4d and arbitrary length vector operations, support for memory mapping/layouts
62
62
 
63
63
  ## Installation
64
64
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/soa",
3
- "version": "0.4.49",
3
+ "version": "0.4.50",
4
4
  "description": "SOA & AOS memory mapped structured views with optional & extensible serialization",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,20 +34,20 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.7.4",
38
- "@thi.ng/binary": "^3.3.21",
39
- "@thi.ng/errors": "^2.2.13",
40
- "@thi.ng/transducers-binary": "^2.1.44",
41
- "@thi.ng/vectors": "^7.6.9"
37
+ "@thi.ng/api": "^8.7.5",
38
+ "@thi.ng/binary": "^3.3.22",
39
+ "@thi.ng/errors": "^2.2.14",
40
+ "@thi.ng/transducers-binary": "^2.1.45",
41
+ "@thi.ng/vectors": "^7.6.10"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@microsoft/api-extractor": "^7.34.4",
45
- "@thi.ng/equiv": "^2.1.20",
46
- "@thi.ng/testament": "^0.3.13",
47
- "rimraf": "^4.4.0",
45
+ "@thi.ng/equiv": "^2.1.21",
46
+ "@thi.ng/testament": "^0.3.14",
47
+ "rimraf": "^4.4.1",
48
48
  "tools": "^0.0.1",
49
- "typedoc": "^0.23.26",
50
- "typescript": "^4.9.5"
49
+ "typedoc": "^0.23.28",
50
+ "typescript": "^5.0.2"
51
51
  },
52
52
  "keywords": [
53
53
  "acceleration",
@@ -105,5 +105,5 @@
105
105
  "status": "alpha",
106
106
  "year": 2019
107
107
  },
108
- "gitHead": "1359645f3af8a7d0d43fe7944ea5cd865832f8ee\n"
108
+ "gitHead": "83b15b34326d480cbca0472b20390d4d3bbb792a\n"
109
109
  }
package/soa.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import type { ILength } from "@thi.ng/api";
2
- import { TypedArray } from "@thi.ng/api/typedarray";
2
+ import { type TypedArray } from "@thi.ng/api/typedarray";
3
3
  import type { ReadonlyVec, Vec } from "@thi.ng/vectors";
4
4
  import type { SOAAttribSpec, SOASpecs, SOATuple } from "./api.js";
5
5
  export declare class SOA<K extends string> implements ILength {