@stdlib/assert-is-complex64array 0.0.6 → 0.0.7
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/NOTICE +1 -1
- package/README.md +44 -2
- package/package.json +1 -1
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2022 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ limitations under the License.
|
|
|
20
20
|
|
|
21
21
|
# isComplex64Array
|
|
22
22
|
|
|
23
|
-
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
|
|
23
|
+
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
24
24
|
|
|
25
25
|
> Test if a value is a [Complex64Array][@stdlib/array/complex64].
|
|
26
26
|
|
|
@@ -127,6 +127,25 @@ bool = isComplex64Array( null );
|
|
|
127
127
|
|
|
128
128
|
<!-- /.examples -->
|
|
129
129
|
|
|
130
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
131
|
+
|
|
132
|
+
<section class="related">
|
|
133
|
+
|
|
134
|
+
* * *
|
|
135
|
+
|
|
136
|
+
## See Also
|
|
137
|
+
|
|
138
|
+
- <span class="package-name">[`@stdlib/assert/is-complex`][@stdlib/assert/is-complex]</span><span class="delimiter">: </span><span class="description">test if a value is a 64-bit or 128-bit complex number.</span>
|
|
139
|
+
- <span class="package-name">[`@stdlib/assert/is-complex64`][@stdlib/assert/is-complex64]</span><span class="delimiter">: </span><span class="description">test if a value is a 64-bit complex number.</span>
|
|
140
|
+
- <span class="package-name">[`@stdlib/assert/is-complex128array`][@stdlib/assert/is-complex128array]</span><span class="delimiter">: </span><span class="description">test if a value is a Complex128Array.</span>
|
|
141
|
+
- <span class="package-name">[`@stdlib/assert/is-complex-typed-array`][@stdlib/assert/is-complex-typed-array]</span><span class="delimiter">: </span><span class="description">test if a value is a complex typed array.</span>
|
|
142
|
+
|
|
143
|
+
</section>
|
|
144
|
+
|
|
145
|
+
<!-- /.related -->
|
|
146
|
+
|
|
147
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
148
|
+
|
|
130
149
|
|
|
131
150
|
<section class="main-repo" >
|
|
132
151
|
|
|
@@ -151,7 +170,7 @@ See [LICENSE][stdlib-license].
|
|
|
151
170
|
|
|
152
171
|
## Copyright
|
|
153
172
|
|
|
154
|
-
Copyright © 2016-
|
|
173
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
155
174
|
|
|
156
175
|
</section>
|
|
157
176
|
|
|
@@ -170,9 +189,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
170
189
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-complex64array/main.svg
|
|
171
190
|
[coverage-url]: https://codecov.io/github/stdlib-js/assert-is-complex64array?branch=main
|
|
172
191
|
|
|
192
|
+
<!--
|
|
193
|
+
|
|
173
194
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/assert-is-complex64array.svg
|
|
174
195
|
[dependencies-url]: https://david-dm.org/stdlib-js/assert-is-complex64array/main
|
|
175
196
|
|
|
197
|
+
-->
|
|
198
|
+
|
|
199
|
+
[umd]: https://github.com/umdjs/umd
|
|
200
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
201
|
+
|
|
202
|
+
[deno-url]: https://github.com/stdlib-js/assert-is-complex64array/tree/deno
|
|
203
|
+
[umd-url]: https://github.com/stdlib-js/assert-is-complex64array/tree/umd
|
|
204
|
+
[esm-url]: https://github.com/stdlib-js/assert-is-complex64array/tree/esm
|
|
205
|
+
|
|
176
206
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
177
207
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
178
208
|
|
|
@@ -184,6 +214,18 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
184
214
|
|
|
185
215
|
[@stdlib/array/complex64]: https://www.npmjs.com/package/@stdlib/array-complex64
|
|
186
216
|
|
|
217
|
+
<!-- <related-links> -->
|
|
218
|
+
|
|
219
|
+
[@stdlib/assert/is-complex]: https://www.npmjs.com/package/@stdlib/assert-is-complex
|
|
220
|
+
|
|
221
|
+
[@stdlib/assert/is-complex64]: https://www.npmjs.com/package/@stdlib/assert-is-complex64
|
|
222
|
+
|
|
223
|
+
[@stdlib/assert/is-complex128array]: https://www.npmjs.com/package/@stdlib/assert-is-complex128array
|
|
224
|
+
|
|
225
|
+
[@stdlib/assert/is-complex-typed-array]: https://www.npmjs.com/package/@stdlib/assert-is-complex-typed-array
|
|
226
|
+
|
|
227
|
+
<!-- </related-links> -->
|
|
228
|
+
|
|
187
229
|
</section>
|
|
188
230
|
|
|
189
231
|
<!-- /.links -->
|