@stdlib/assert-is-same-complex64array 0.1.0 → 0.2.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 +24 -2
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -117,6 +117,15 @@ out = isSameComplex64Array( x, y );
|
|
|
117
117
|
|
|
118
118
|
<section class="related">
|
|
119
119
|
|
|
120
|
+
* * *
|
|
121
|
+
|
|
122
|
+
## See Also
|
|
123
|
+
|
|
124
|
+
- <span class="package-name">[`@stdlib/assert-is-complex64array`][@stdlib/assert/is-complex64array]</span><span class="delimiter">: </span><span class="description">test if a value is a Complex64Array.</span>
|
|
125
|
+
- <span class="package-name">[`@stdlib/assert-is-same-complex128array`][@stdlib/assert/is-same-complex128array]</span><span class="delimiter">: </span><span class="description">test if two arguments are both Complex128Arrays and have the same values.</span>
|
|
126
|
+
- <span class="package-name">[`@stdlib/assert-is-same-float32array`][@stdlib/assert/is-same-float32array]</span><span class="delimiter">: </span><span class="description">test if two arguments are both Float32Arrays and have the same values.</span>
|
|
127
|
+
- <span class="package-name">[`@stdlib/assert-is-same-value`][@stdlib/assert/is-same-value]</span><span class="delimiter">: </span><span class="description">test if two arguments are the same value.</span>
|
|
128
|
+
|
|
120
129
|
</section>
|
|
121
130
|
|
|
122
131
|
<!-- /.related -->
|
|
@@ -160,8 +169,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
160
169
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/assert-is-same-complex64array.svg
|
|
161
170
|
[npm-url]: https://npmjs.org/package/@stdlib/assert-is-same-complex64array
|
|
162
171
|
|
|
163
|
-
[test-image]: https://github.com/stdlib-js/assert-is-same-complex64array/actions/workflows/test.yml/badge.svg?branch=v0.
|
|
164
|
-
[test-url]: https://github.com/stdlib-js/assert-is-same-complex64array/actions/workflows/test.yml?query=branch:v0.
|
|
172
|
+
[test-image]: https://github.com/stdlib-js/assert-is-same-complex64array/actions/workflows/test.yml/badge.svg?branch=v0.2.0
|
|
173
|
+
[test-url]: https://github.com/stdlib-js/assert-is-same-complex64array/actions/workflows/test.yml?query=branch:v0.2.0
|
|
165
174
|
|
|
166
175
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-same-complex64array/main.svg
|
|
167
176
|
[coverage-url]: https://codecov.io/github/stdlib-js/assert-is-same-complex64array?branch=main
|
|
@@ -184,8 +193,11 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
184
193
|
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
185
194
|
|
|
186
195
|
[deno-url]: https://github.com/stdlib-js/assert-is-same-complex64array/tree/deno
|
|
196
|
+
[deno-readme]: https://github.com/stdlib-js/assert-is-same-complex64array/blob/deno/README.md
|
|
187
197
|
[umd-url]: https://github.com/stdlib-js/assert-is-same-complex64array/tree/umd
|
|
198
|
+
[umd-readme]: https://github.com/stdlib-js/assert-is-same-complex64array/blob/umd/README.md
|
|
188
199
|
[esm-url]: https://github.com/stdlib-js/assert-is-same-complex64array/tree/esm
|
|
200
|
+
[esm-readme]: https://github.com/stdlib-js/assert-is-same-complex64array/blob/esm/README.md
|
|
189
201
|
[branches-url]: https://github.com/stdlib-js/assert-is-same-complex64array/blob/main/branches.md
|
|
190
202
|
|
|
191
203
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/assert-is-same-complex64array/main/LICENSE
|
|
@@ -194,6 +206,16 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
194
206
|
|
|
195
207
|
[@stdlib/assert/is-same-value]: https://www.npmjs.com/package/@stdlib/assert-is-same-value
|
|
196
208
|
|
|
209
|
+
<!-- <related-links> -->
|
|
210
|
+
|
|
211
|
+
[@stdlib/assert/is-complex64array]: https://www.npmjs.com/package/@stdlib/assert-is-complex64array
|
|
212
|
+
|
|
213
|
+
[@stdlib/assert/is-same-complex128array]: https://www.npmjs.com/package/@stdlib/assert-is-same-complex128array
|
|
214
|
+
|
|
215
|
+
[@stdlib/assert/is-same-float32array]: https://www.npmjs.com/package/@stdlib/assert-is-same-float32array
|
|
216
|
+
|
|
217
|
+
<!-- </related-links> -->
|
|
218
|
+
|
|
197
219
|
</section>
|
|
198
220
|
|
|
199
221
|
<!-- /.links -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/assert-is-same-complex64array",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Test if two arguments are both Complex64Arrays and have the same values.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -37,20 +37,20 @@
|
|
|
37
37
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@stdlib/array-base-assert-has-same-values": "
|
|
41
|
-
"@stdlib/assert-is-complex64array": "^0.
|
|
40
|
+
"@stdlib/array-base-assert-has-same-values": "^0.2.0",
|
|
41
|
+
"@stdlib/assert-is-complex64array": "^0.2.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@stdlib/array-base-zero-to": "^0.1.0",
|
|
45
45
|
"@stdlib/array-complex64": "^0.1.0",
|
|
46
46
|
"@stdlib/array-typed": "^0.1.0",
|
|
47
|
-
"@stdlib/assert-is-boolean": "^0.
|
|
48
|
-
"@stdlib/math-base-special-pow": "^0.
|
|
47
|
+
"@stdlib/assert-is-boolean": "^0.2.0",
|
|
48
|
+
"@stdlib/math-base-special-pow": "^0.2.0",
|
|
49
49
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
50
50
|
"istanbul": "^0.4.1",
|
|
51
51
|
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
52
|
-
"@stdlib/bench-harness": "^0.
|
|
53
|
-
"@stdlib/bench": "^0.
|
|
52
|
+
"@stdlib/bench-harness": "^0.2.0",
|
|
53
|
+
"@stdlib/bench": "^0.3.1"
|
|
54
54
|
},
|
|
55
55
|
"engines": {
|
|
56
56
|
"node": ">=0.10.0",
|