@stdlib/array-complex64 0.2.0 → 0.3.0
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/README.md +492 -116
- package/dist/index.js +1 -1
- package/dist/index.js.map +3 -3
- package/docs/types/index.d.ts +405 -50
- package/lib/from_array.js +2 -2
- package/lib/from_iterator.js +2 -2
- package/lib/from_iterator_map.js +2 -2
- package/lib/main.js +661 -65
- package/package.json +33 -63
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/array-complex64",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Complex64Array.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -15,19 +15,12 @@
|
|
|
15
15
|
],
|
|
16
16
|
"main": "./lib",
|
|
17
17
|
"directories": {
|
|
18
|
-
"benchmark": "./benchmark",
|
|
19
18
|
"doc": "./docs",
|
|
20
|
-
"example": "./examples",
|
|
21
19
|
"lib": "./lib",
|
|
22
|
-
"
|
|
20
|
+
"dist": "./dist"
|
|
23
21
|
},
|
|
24
22
|
"types": "./docs/types",
|
|
25
|
-
"scripts": {
|
|
26
|
-
"test": "make test",
|
|
27
|
-
"test-cov": "make test-cov",
|
|
28
|
-
"examples": "make examples",
|
|
29
|
-
"benchmark": "make benchmark"
|
|
30
|
-
},
|
|
23
|
+
"scripts": {},
|
|
31
24
|
"homepage": "https://stdlib.io",
|
|
32
25
|
"repository": {
|
|
33
26
|
"type": "git",
|
|
@@ -37,60 +30,37 @@
|
|
|
37
30
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
38
31
|
},
|
|
39
32
|
"dependencies": {
|
|
40
|
-
"@stdlib/array-base-accessor-getter": "^0.2.
|
|
41
|
-
"@stdlib/array-base-assert-is-complex128array": "^0.2.
|
|
42
|
-
"@stdlib/array-base-assert-is-complex64array": "^0.2.
|
|
43
|
-
"@stdlib/array-base-getter": "^0.2.
|
|
44
|
-
"@stdlib/array-float32": "^0.2.
|
|
45
|
-
"@stdlib/assert-has-iterator-symbol-support": "^0.2.
|
|
46
|
-
"@stdlib/assert-is-array": "^0.2.
|
|
47
|
-
"@stdlib/assert-is-array-like-object": "^0.2.
|
|
48
|
-
"@stdlib/assert-is-arraybuffer": "^0.2.
|
|
49
|
-
"@stdlib/assert-is-collection": "^0.2.
|
|
50
|
-
"@stdlib/assert-is-complex-like": "^0.2.
|
|
51
|
-
"@stdlib/assert-is-function": "^0.2.
|
|
52
|
-
"@stdlib/assert-is-nonnegative-integer": "^0.2.
|
|
53
|
-
"@stdlib/assert-is-object": "^0.2.
|
|
54
|
-
"@stdlib/assert-is-string": "^0.2.
|
|
55
|
-
"@stdlib/
|
|
56
|
-
"@stdlib/complex-
|
|
57
|
-
"@stdlib/complex-
|
|
58
|
-
"@stdlib/
|
|
59
|
-
"@stdlib/math-base-assert-is-
|
|
60
|
-
"@stdlib/math-base-
|
|
61
|
-
"@stdlib/
|
|
62
|
-
"@stdlib/strided-base-reinterpret-
|
|
63
|
-
"@stdlib/
|
|
64
|
-
"@stdlib/
|
|
65
|
-
"@stdlib/
|
|
66
|
-
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.2.
|
|
67
|
-
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.
|
|
68
|
-
"@stdlib/error-tools-fmtprodmsg": "^0.2.
|
|
69
|
-
},
|
|
70
|
-
"devDependencies": {
|
|
71
|
-
"@stdlib/array-buffer": "^0.2.0",
|
|
72
|
-
"@stdlib/array-complex128": "^0.1.0",
|
|
73
|
-
"@stdlib/assert-has-own-property": "^0.2.0",
|
|
74
|
-
"@stdlib/assert-instance-of": "^0.2.0",
|
|
75
|
-
"@stdlib/assert-is-boolean": "^0.2.0",
|
|
76
|
-
"@stdlib/assert-is-complex64": "^0.2.0",
|
|
77
|
-
"@stdlib/assert-is-complex64array": "^0.1.0",
|
|
78
|
-
"@stdlib/assert-is-integer": "^0.2.0",
|
|
79
|
-
"@stdlib/assert-is-negative-zero": "^0.2.0",
|
|
80
|
-
"@stdlib/assert-is-positive-zero": "^0.2.0",
|
|
81
|
-
"@stdlib/complex-imag": "^0.2.0",
|
|
82
|
-
"@stdlib/complex-real": "^0.2.0",
|
|
83
|
-
"@stdlib/console-log-each": "^0.1.0",
|
|
84
|
-
"@stdlib/math-base-special-pow": "^0.2.0",
|
|
85
|
-
"@stdlib/random-base-randu": "^0.1.0",
|
|
86
|
-
"@stdlib/utils-identity-function": "^0.2.0",
|
|
87
|
-
"proxyquire": "^2.0.0",
|
|
88
|
-
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
89
|
-
"istanbul": "^0.4.1",
|
|
90
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
91
|
-
"@stdlib/bench-harness": "^0.2.0",
|
|
92
|
-
"@stdlib/bench": "^0.3.1"
|
|
33
|
+
"@stdlib/array-base-accessor-getter": "^0.2.1",
|
|
34
|
+
"@stdlib/array-base-assert-is-complex128array": "^0.2.1",
|
|
35
|
+
"@stdlib/array-base-assert-is-complex64array": "^0.2.1",
|
|
36
|
+
"@stdlib/array-base-getter": "^0.2.2",
|
|
37
|
+
"@stdlib/array-float32": "^0.2.2",
|
|
38
|
+
"@stdlib/assert-has-iterator-symbol-support": "^0.2.2",
|
|
39
|
+
"@stdlib/assert-is-array": "^0.2.2",
|
|
40
|
+
"@stdlib/assert-is-array-like-object": "^0.2.2",
|
|
41
|
+
"@stdlib/assert-is-arraybuffer": "^0.2.2",
|
|
42
|
+
"@stdlib/assert-is-collection": "^0.2.2",
|
|
43
|
+
"@stdlib/assert-is-complex-like": "^0.2.2",
|
|
44
|
+
"@stdlib/assert-is-function": "^0.2.2",
|
|
45
|
+
"@stdlib/assert-is-nonnegative-integer": "^0.2.2",
|
|
46
|
+
"@stdlib/assert-is-object": "^0.2.2",
|
|
47
|
+
"@stdlib/assert-is-string": "^0.2.2",
|
|
48
|
+
"@stdlib/assert-is-string-array": "^0.2.2",
|
|
49
|
+
"@stdlib/complex-float32-ctor": "^0.0.2",
|
|
50
|
+
"@stdlib/complex-float32-imag": "^0.1.1",
|
|
51
|
+
"@stdlib/complex-float32-real": "^0.1.1",
|
|
52
|
+
"@stdlib/math-base-assert-is-even": "^0.2.3",
|
|
53
|
+
"@stdlib/math-base-assert-is-integer": "^0.2.5",
|
|
54
|
+
"@stdlib/math-base-special-floor": "^0.2.3",
|
|
55
|
+
"@stdlib/strided-base-reinterpret-complex128": "^0.2.2",
|
|
56
|
+
"@stdlib/strided-base-reinterpret-complex64": "^0.2.1",
|
|
57
|
+
"@stdlib/string-format": "^0.2.2",
|
|
58
|
+
"@stdlib/symbol-iterator": "^0.2.2",
|
|
59
|
+
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.2.3",
|
|
60
|
+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.2",
|
|
61
|
+
"@stdlib/error-tools-fmtprodmsg": "^0.2.2"
|
|
93
62
|
},
|
|
63
|
+
"devDependencies": {},
|
|
94
64
|
"engines": {
|
|
95
65
|
"node": ">=0.10.0",
|
|
96
66
|
"npm": ">2.7.0"
|