@stdlib/strided-base 0.1.0 → 0.2.1
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 +9 -3
- package/SECURITY.md +5 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/docs/types/index.d.ts +114 -113
- package/lib/index.js +9 -0
- package/package.json +46 -144
- package/CITATION.cff +0 -30
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2024 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -95,6 +95,7 @@ The following functions are currently exported:
|
|
|
95
95
|
- <span class="signature">[`offsetView( x, offset )`][@stdlib/strided/base/offset-view]</span><span class="delimiter">: </span><span class="description">return a typed array view having the same data type as a provided input typed array and starting at a specified index offset.</span>
|
|
96
96
|
- <span class="signature">[`quaternary( arrays, shape, strides, fcn )`][@stdlib/strided/base/quaternary]</span><span class="delimiter">: </span><span class="description">apply a quaternary callback to strided input array elements and assign results to elements in a strided output array.</span>
|
|
97
97
|
- <span class="signature">[`quinary( arrays, shape, strides, fcn )`][@stdlib/strided/base/quinary]</span><span class="delimiter">: </span><span class="description">apply a quinary callback to strided input array elements and assign results to elements in a strided output array.</span>
|
|
98
|
+
- <span class="signature">[`reinterpretComplex( x, offset )`][@stdlib/strided/base/reinterpret-complex]</span><span class="delimiter">: </span><span class="description">reinterpret a complex-valued floating-point array as a real-valued floating-point array having the same precision.</span>
|
|
98
99
|
- <span class="signature">[`reinterpretComplex128( x, offset )`][@stdlib/strided/base/reinterpret-complex128]</span><span class="delimiter">: </span><span class="description">reinterpret a `Complex128Array` as a `Float64Array`.</span>
|
|
99
100
|
- <span class="signature">[`reinterpretComplex64( x, offset )`][@stdlib/strided/base/reinterpret-complex64]</span><span class="delimiter">: </span><span class="description">reinterpret a `Complex64Array` as a `Float32Array`.</span>
|
|
100
101
|
- <span class="signature">[`smap( N, x, strideX, y, strideY, fcn )`][@stdlib/strided/base/smap]</span><span class="delimiter">: </span><span class="description">apply a unary function to a single-precision floating-point strided input array and assign results to a single-precision floating-point strided output array.</span>
|
|
@@ -170,7 +171,7 @@ See [LICENSE][stdlib-license].
|
|
|
170
171
|
|
|
171
172
|
## Copyright
|
|
172
173
|
|
|
173
|
-
Copyright © 2016-
|
|
174
|
+
Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
174
175
|
|
|
175
176
|
</section>
|
|
176
177
|
|
|
@@ -183,8 +184,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
183
184
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/strided-base.svg
|
|
184
185
|
[npm-url]: https://npmjs.org/package/@stdlib/strided-base
|
|
185
186
|
|
|
186
|
-
[test-image]: https://github.com/stdlib-js/strided-base/actions/workflows/test.yml/badge.svg?branch=v0.1
|
|
187
|
-
[test-url]: https://github.com/stdlib-js/strided-base/actions/workflows/test.yml?query=branch:v0.1
|
|
187
|
+
[test-image]: https://github.com/stdlib-js/strided-base/actions/workflows/test.yml/badge.svg?branch=v0.2.1
|
|
188
|
+
[test-url]: https://github.com/stdlib-js/strided-base/actions/workflows/test.yml?query=branch:v0.2.1
|
|
188
189
|
|
|
189
190
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/strided-base/main.svg
|
|
190
191
|
[coverage-url]: https://codecov.io/github/stdlib-js/strided-base?branch=main
|
|
@@ -207,8 +208,11 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
207
208
|
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
208
209
|
|
|
209
210
|
[deno-url]: https://github.com/stdlib-js/strided-base/tree/deno
|
|
211
|
+
[deno-readme]: https://github.com/stdlib-js/strided-base/blob/deno/README.md
|
|
210
212
|
[umd-url]: https://github.com/stdlib-js/strided-base/tree/umd
|
|
213
|
+
[umd-readme]: https://github.com/stdlib-js/strided-base/blob/umd/README.md
|
|
211
214
|
[esm-url]: https://github.com/stdlib-js/strided-base/tree/esm
|
|
215
|
+
[esm-readme]: https://github.com/stdlib-js/strided-base/blob/esm/README.md
|
|
212
216
|
[branches-url]: https://github.com/stdlib-js/strided-base/blob/main/branches.md
|
|
213
217
|
|
|
214
218
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/strided-base/main/LICENSE
|
|
@@ -269,6 +273,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
269
273
|
|
|
270
274
|
[@stdlib/strided/base/quinary]: https://www.npmjs.com/package/@stdlib/strided-base-quinary
|
|
271
275
|
|
|
276
|
+
[@stdlib/strided/base/reinterpret-complex]: https://www.npmjs.com/package/@stdlib/strided-base-reinterpret-complex
|
|
277
|
+
|
|
272
278
|
[@stdlib/strided/base/reinterpret-complex128]: https://www.npmjs.com/package/@stdlib/strided-base-reinterpret-complex128
|
|
273
279
|
|
|
274
280
|
[@stdlib/strided/base/reinterpret-complex64]: https://www.npmjs.com/package/@stdlib/strided-base-reinterpret-complex64
|
package/SECURITY.md
ADDED
package/dist/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
"use strict";var e=require('@stdlib/utils-define-read-only-property/dist'),r={};e(r,"binary",require('@stdlib/strided-base-binary/dist'));e(r,"binaryAddonDispatch",require('@stdlib/strided-base-binary-addon-dispatch/dist'));e(r,"binaryDtypeSignatures",require('@stdlib/strided-base-binary-dtype-signatures/dist'));e(r,"binarySignatureCallbacks",require('@stdlib/strided-base-binary-signature-callbacks/dist'));e(r,"cmap",require('@stdlib/strided-base-cmap/dist'));e(r,"dmap",require('@stdlib/strided-base-dmap/dist'));e(r,"dmap2",require('@stdlib/strided-base-dmap2/dist'));e(r,"dmskmap",require('@stdlib/strided-base-dmskmap/dist'));e(r,"dmskmap2",require('@stdlib/strided-base-dmskmap2/dist'));e(r,"dtypeEnum2Str",require('@stdlib/strided-base-dtype-enum2str/dist'));e(r,"dtypeResolveEnum",require('@stdlib/strided-base-dtype-resolve-enum/dist'));e(r,"dtypeResolveStr",require('@stdlib/strided-base-dtype-resolve-str/dist'));e(r,"dtypeStr2Enum",require('@stdlib/strided-base-dtype-str2enum/dist'));e(r,"mapBy",require('@stdlib/strided-base-map-by/dist'));e(r,"mapBy2",require('@stdlib/strided-base-map-by2/dist'));e(r,"maxViewBufferIndex",require('@stdlib/strided-base-max-view-buffer-index/dist'));e(r,"metaDataProps",require('@stdlib/strided-base-meta-data-props/dist'));e(r,"minViewBufferIndex",require('@stdlib/strided-base-min-view-buffer-index/dist'));e(r,"mskunary",require('@stdlib/strided-base-mskunary/dist'));e(r,"mskunaryAddonDispatch",require('@stdlib/strided-base-mskunary-addon-dispatch/dist'));e(r,"mskunaryDtypeSignatures",require('@stdlib/strided-base-mskunary-dtype-signatures/dist'));e(r,"mskunarySignatureCallbacks",require('@stdlib/strided-base-mskunary-signature-callbacks/dist'));e(r,"nullary",require('@stdlib/strided-base-nullary/dist'));e(r,"nullaryAddonDispatch",require('@stdlib/strided-base-nullary-addon-dispatch/dist'));e(r,"offsetView",require('@stdlib/strided-base-offset-view/dist'));e(r,"quaternary",require('@stdlib/strided-base-quaternary/dist'));e(r,"quinary",require('@stdlib/strided-base-quinary/dist'));e(r,"reinterpretComplex64",require('@stdlib/strided-base-reinterpret-complex64/dist'));e(r,"reinterpretComplex128",require('@stdlib/strided-base-reinterpret-complex128/dist'));e(r,"smap",require('@stdlib/strided-base-smap/dist'));e(r,"smap2",require('@stdlib/strided-base-smap2/dist'));e(r,"smskmap",require('@stdlib/strided-base-smskmap/dist'));e(r,"smskmap2",require('@stdlib/strided-base-smskmap2/dist'));e(r,"ternary",require('@stdlib/strided-base-ternary/dist'));e(r,"unary",require('@stdlib/strided-base-unary/dist'));e(r,"unaryAddonDispatch",require('@stdlib/strided-base-unary-addon-dispatch/dist'));e(r,"unaryBy",require('@stdlib/strided-base-unary-by/dist'));e(r,"unaryDtypeSignatures",require('@stdlib/strided-base-unary-dtype-signatures/dist'));e(r,"unarySignatureCallbacks",require('@stdlib/strided-base-unary-signature-callbacks/dist'));e(r,"zmap",require('@stdlib/strided-base-zmap/dist'));module.exports=r;
|
|
1
|
+
"use strict";var e=require('@stdlib/utils-define-read-only-property/dist'),r={};e(r,"binary",require('@stdlib/strided-base-binary/dist'));e(r,"binaryAddonDispatch",require('@stdlib/strided-base-binary-addon-dispatch/dist'));e(r,"binaryDtypeSignatures",require('@stdlib/strided-base-binary-dtype-signatures/dist'));e(r,"binarySignatureCallbacks",require('@stdlib/strided-base-binary-signature-callbacks/dist'));e(r,"cmap",require('@stdlib/strided-base-cmap/dist'));e(r,"dmap",require('@stdlib/strided-base-dmap/dist'));e(r,"dmap2",require('@stdlib/strided-base-dmap2/dist'));e(r,"dmskmap",require('@stdlib/strided-base-dmskmap/dist'));e(r,"dmskmap2",require('@stdlib/strided-base-dmskmap2/dist'));e(r,"dtypeEnum2Str",require('@stdlib/strided-base-dtype-enum2str/dist'));e(r,"dtypeResolveEnum",require('@stdlib/strided-base-dtype-resolve-enum/dist'));e(r,"dtypeResolveStr",require('@stdlib/strided-base-dtype-resolve-str/dist'));e(r,"dtypeStr2Enum",require('@stdlib/strided-base-dtype-str2enum/dist'));e(r,"mapBy",require('@stdlib/strided-base-map-by/dist'));e(r,"mapBy2",require('@stdlib/strided-base-map-by2/dist'));e(r,"maxViewBufferIndex",require('@stdlib/strided-base-max-view-buffer-index/dist'));e(r,"metaDataProps",require('@stdlib/strided-base-meta-data-props/dist'));e(r,"minViewBufferIndex",require('@stdlib/strided-base-min-view-buffer-index/dist'));e(r,"mskunary",require('@stdlib/strided-base-mskunary/dist'));e(r,"mskunaryAddonDispatch",require('@stdlib/strided-base-mskunary-addon-dispatch/dist'));e(r,"mskunaryDtypeSignatures",require('@stdlib/strided-base-mskunary-dtype-signatures/dist'));e(r,"mskunarySignatureCallbacks",require('@stdlib/strided-base-mskunary-signature-callbacks/dist'));e(r,"nullary",require('@stdlib/strided-base-nullary/dist'));e(r,"nullaryAddonDispatch",require('@stdlib/strided-base-nullary-addon-dispatch/dist'));e(r,"offsetView",require('@stdlib/strided-base-offset-view/dist'));e(r,"quaternary",require('@stdlib/strided-base-quaternary/dist'));e(r,"quinary",require('@stdlib/strided-base-quinary/dist'));e(r,"reinterpretComplex",require('@stdlib/strided-base-reinterpret-complex/dist'));e(r,"reinterpretComplex64",require('@stdlib/strided-base-reinterpret-complex64/dist'));e(r,"reinterpretComplex128",require('@stdlib/strided-base-reinterpret-complex128/dist'));e(r,"smap",require('@stdlib/strided-base-smap/dist'));e(r,"smap2",require('@stdlib/strided-base-smap2/dist'));e(r,"smskmap",require('@stdlib/strided-base-smskmap/dist'));e(r,"smskmap2",require('@stdlib/strided-base-smskmap2/dist'));e(r,"ternary",require('@stdlib/strided-base-ternary/dist'));e(r,"unary",require('@stdlib/strided-base-unary/dist'));e(r,"unaryAddonDispatch",require('@stdlib/strided-base-unary-addon-dispatch/dist'));e(r,"unaryBy",require('@stdlib/strided-base-unary-by/dist'));e(r,"unaryDtypeSignatures",require('@stdlib/strided-base-unary-dtype-signatures/dist'));e(r,"unarySignatureCallbacks",require('@stdlib/strided-base-unary-signature-callbacks/dist'));e(r,"zmap",require('@stdlib/strided-base-zmap/dist'));module.exports=r;
|
|
2
2
|
/** @license Apache-2.0 */
|
|
3
3
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../lib/index.js"],
|
|
4
|
-
"sourcesContent": ["/**\n* @license Apache-2.0\n*\n* Copyright (c) 2020 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/*\n* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.\n*/\n\n/*\n* The following modules are intentionally not exported: function-object\n*/\n\n// MODULES //\n\nvar setReadOnly = require( '@stdlib/utils-define-read-only-property' );\n\n\n// MAIN //\n\n/**\n* Top-level namespace.\n*\n* @namespace ns\n*/\nvar ns = {};\n\n/**\n* @name binary\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/binary}\n*/\nsetReadOnly( ns, 'binary', require( '@stdlib/strided-base-binary' ) );\n\n/**\n* @name binaryAddonDispatch\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/binary-addon-dispatch}\n*/\nsetReadOnly( ns, 'binaryAddonDispatch', require( '@stdlib/strided-base-binary-addon-dispatch' ) );\n\n/**\n* @name binaryDtypeSignatures\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/binary-dtype-signatures}\n*/\nsetReadOnly( ns, 'binaryDtypeSignatures', require( '@stdlib/strided-base-binary-dtype-signatures' ) );\n\n/**\n* @name binarySignatureCallbacks\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/binary-signature-callbacks}\n*/\nsetReadOnly( ns, 'binarySignatureCallbacks', require( '@stdlib/strided-base-binary-signature-callbacks' ) );\n\n/**\n* @name cmap\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/cmap}\n*/\nsetReadOnly( ns, 'cmap', require( '@stdlib/strided-base-cmap' ) );\n\n/**\n* @name dmap\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/dmap}\n*/\nsetReadOnly( ns, 'dmap', require( '@stdlib/strided-base-dmap' ) );\n\n/**\n* @name dmap2\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/dmap2}\n*/\nsetReadOnly( ns, 'dmap2', require( '@stdlib/strided-base-dmap2' ) );\n\n/**\n* @name dmskmap\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/dmskmap}\n*/\nsetReadOnly( ns, 'dmskmap', require( '@stdlib/strided-base-dmskmap' ) );\n\n/**\n* @name dmskmap2\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/dmskmap2}\n*/\nsetReadOnly( ns, 'dmskmap2', require( '@stdlib/strided-base-dmskmap2' ) );\n\n/**\n* @name dtypeEnum2Str\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/dtype-enum2str}\n*/\nsetReadOnly( ns, 'dtypeEnum2Str', require( '@stdlib/strided-base-dtype-enum2str' ) );\n\n/**\n* @name dtypeResolveEnum\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/dtype-resolve-enum}\n*/\nsetReadOnly( ns, 'dtypeResolveEnum', require( '@stdlib/strided-base-dtype-resolve-enum' ) );\n\n/**\n* @name dtypeResolveStr\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/dtype-resolve-str}\n*/\nsetReadOnly( ns, 'dtypeResolveStr', require( '@stdlib/strided-base-dtype-resolve-str' ) );\n\n/**\n* @name dtypeStr2Enum\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/dtype-str2enum}\n*/\nsetReadOnly( ns, 'dtypeStr2Enum', require( '@stdlib/strided-base-dtype-str2enum' ) );\n\n/**\n* @name mapBy\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/map-by}\n*/\nsetReadOnly( ns, 'mapBy', require( '@stdlib/strided-base-map-by' ) );\n\n/**\n* @name mapBy2\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/map-by2}\n*/\nsetReadOnly( ns, 'mapBy2', require( '@stdlib/strided-base-map-by2' ) );\n\n/**\n* @name maxViewBufferIndex\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/max-view-buffer-index}\n*/\nsetReadOnly( ns, 'maxViewBufferIndex', require( '@stdlib/strided-base-max-view-buffer-index' ) );\n\n/**\n* @name metaDataProps\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/meta-data-props}\n*/\nsetReadOnly( ns, 'metaDataProps', require( '@stdlib/strided-base-meta-data-props' ) );\n\n/**\n* @name minViewBufferIndex\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/min-view-buffer-index}\n*/\nsetReadOnly( ns, 'minViewBufferIndex', require( '@stdlib/strided-base-min-view-buffer-index' ) );\n\n/**\n* @name mskunary\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/mskunary}\n*/\nsetReadOnly( ns, 'mskunary', require( '@stdlib/strided-base-mskunary' ) );\n\n/**\n* @name mskunaryAddonDispatch\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/mskunary-addon-dispatch}\n*/\nsetReadOnly( ns, 'mskunaryAddonDispatch', require( '@stdlib/strided-base-mskunary-addon-dispatch' ) );\n\n/**\n* @name mskunaryDtypeSignatures\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/mskunary-dtype-signatures}\n*/\nsetReadOnly( ns, 'mskunaryDtypeSignatures', require( '@stdlib/strided-base-mskunary-dtype-signatures' ) );\n\n/**\n* @name mskunarySignatureCallbacks\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/mskunary-signature-callbacks}\n*/\nsetReadOnly( ns, 'mskunarySignatureCallbacks', require( '@stdlib/strided-base-mskunary-signature-callbacks' ) );\n\n/**\n* @name nullary\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/nullary}\n*/\nsetReadOnly( ns, 'nullary', require( '@stdlib/strided-base-nullary' ) );\n\n/**\n* @name nullaryAddonDispatch\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/nullary-addon-dispatch}\n*/\nsetReadOnly( ns, 'nullaryAddonDispatch', require( '@stdlib/strided-base-nullary-addon-dispatch' ) );\n\n/**\n* @name offsetView\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/offset-view}\n*/\nsetReadOnly( ns, 'offsetView', require( '@stdlib/strided-base-offset-view' ) );\n\n/**\n* @name quaternary\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/quaternary}\n*/\nsetReadOnly( ns, 'quaternary', require( '@stdlib/strided-base-quaternary' ) );\n\n/**\n* @name quinary\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/quinary}\n*/\nsetReadOnly( ns, 'quinary', require( '@stdlib/strided-base-quinary' ) );\n\n/**\n* @name reinterpretComplex64\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/reinterpret-complex64}\n*/\nsetReadOnly( ns, 'reinterpretComplex64', require( '@stdlib/strided-base-reinterpret-complex64' ) );\n\n/**\n* @name reinterpretComplex128\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/reinterpret-complex128}\n*/\nsetReadOnly( ns, 'reinterpretComplex128', require( '@stdlib/strided-base-reinterpret-complex128' ) );\n\n/**\n* @name smap\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/smap}\n*/\nsetReadOnly( ns, 'smap', require( '@stdlib/strided-base-smap' ) );\n\n/**\n* @name smap2\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/smap2}\n*/\nsetReadOnly( ns, 'smap2', require( '@stdlib/strided-base-smap2' ) );\n\n/**\n* @name smskmap\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/smskmap}\n*/\nsetReadOnly( ns, 'smskmap', require( '@stdlib/strided-base-smskmap' ) );\n\n/**\n* @name smskmap2\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/smskmap2}\n*/\nsetReadOnly( ns, 'smskmap2', require( '@stdlib/strided-base-smskmap2' ) );\n\n/**\n* @name ternary\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/ternary}\n*/\nsetReadOnly( ns, 'ternary', require( '@stdlib/strided-base-ternary' ) );\n\n/**\n* @name unary\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/unary}\n*/\nsetReadOnly( ns, 'unary', require( '@stdlib/strided-base-unary' ) );\n\n/**\n* @name unaryAddonDispatch\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/unary-addon-dispatch}\n*/\nsetReadOnly( ns, 'unaryAddonDispatch', require( '@stdlib/strided-base-unary-addon-dispatch' ) );\n\n/**\n* @name unaryBy\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/unary-by}\n*/\nsetReadOnly( ns, 'unaryBy', require( '@stdlib/strided-base-unary-by' ) );\n\n/**\n* @name unaryDtypeSignatures\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/unary-dtype-signatures}\n*/\nsetReadOnly( ns, 'unaryDtypeSignatures', require( '@stdlib/strided-base-unary-dtype-signatures' ) );\n\n/**\n* @name unarySignatureCallbacks\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/unary-signature-callbacks}\n*/\nsetReadOnly( ns, 'unarySignatureCallbacks', require( '@stdlib/strided-base-unary-signature-callbacks' ) );\n\n/**\n* @name zmap\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/zmap}\n*/\nsetReadOnly( ns, 'zmap', require( '@stdlib/strided-base-zmap' ) );\n\n\n// EXPORTS //\n\nmodule.exports = ns;\n"],
|
|
5
|
-
"mappings": "aA8BA,IAAIA,EAAc,QAAS,yCAA0C,EAUjEC,EAAK,CAAC,EASVD,EAAaC,EAAI,SAAU,QAAS,6BAA8B,CAAE,EASpED,EAAaC,EAAI,sBAAuB,QAAS,4CAA6C,CAAE,EAShGD,EAAaC,EAAI,wBAAyB,QAAS,8CAA+C,CAAE,EASpGD,EAAaC,EAAI,2BAA4B,QAAS,iDAAkD,CAAE,EAS1GD,EAAaC,EAAI,OAAQ,QAAS,2BAA4B,CAAE,EAShED,EAAaC,EAAI,OAAQ,QAAS,2BAA4B,CAAE,EAShED,EAAaC,EAAI,QAAS,QAAS,4BAA6B,CAAE,EASlED,EAAaC,EAAI,UAAW,QAAS,8BAA+B,CAAE,EAStED,EAAaC,EAAI,WAAY,QAAS,+BAAgC,CAAE,EASxED,EAAaC,EAAI,gBAAiB,QAAS,qCAAsC,CAAE,EASnFD,EAAaC,EAAI,mBAAoB,QAAS,yCAA0C,CAAE,EAS1FD,EAAaC,EAAI,kBAAmB,QAAS,wCAAyC,CAAE,EASxFD,EAAaC,EAAI,gBAAiB,QAAS,qCAAsC,CAAE,EASnFD,EAAaC,EAAI,QAAS,QAAS,6BAA8B,CAAE,EASnED,EAAaC,EAAI,SAAU,QAAS,8BAA+B,CAAE,EASrED,EAAaC,EAAI,qBAAsB,QAAS,4CAA6C,CAAE,EAS/FD,EAAaC,EAAI,gBAAiB,QAAS,sCAAuC,CAAE,EASpFD,EAAaC,EAAI,qBAAsB,QAAS,4CAA6C,CAAE,EAS/FD,EAAaC,EAAI,WAAY,QAAS,+BAAgC,CAAE,EASxED,EAAaC,EAAI,wBAAyB,QAAS,8CAA+C,CAAE,EASpGD,EAAaC,EAAI,0BAA2B,QAAS,gDAAiD,CAAE,EASxGD,EAAaC,EAAI,6BAA8B,QAAS,mDAAoD,CAAE,EAS9GD,EAAaC,EAAI,UAAW,QAAS,8BAA+B,CAAE,EAStED,EAAaC,EAAI,uBAAwB,QAAS,6CAA8C,CAAE,EASlGD,EAAaC,EAAI,aAAc,QAAS,kCAAmC,CAAE,EAS7ED,EAAaC,EAAI,aAAc,QAAS,iCAAkC,CAAE,EAS5ED,EAAaC,EAAI,UAAW,QAAS,8BAA+B,CAAE,EAStED,EAAaC,EAAI,uBAAwB,QAAS,4CAA6C,CAAE,EASjGD,EAAaC,EAAI,wBAAyB,QAAS,6CAA8C,CAAE,EASnGD,EAAaC,EAAI,OAAQ,QAAS,2BAA4B,CAAE,EAShED,EAAaC,EAAI,QAAS,QAAS,4BAA6B,CAAE,EASlED,EAAaC,EAAI,UAAW,QAAS,8BAA+B,CAAE,EAStED,EAAaC,EAAI,WAAY,QAAS,+BAAgC,CAAE,EASxED,EAAaC,EAAI,UAAW,QAAS,8BAA+B,CAAE,EAStED,EAAaC,EAAI,QAAS,QAAS,4BAA6B,CAAE,EASlED,EAAaC,EAAI,qBAAsB,QAAS,2CAA4C,CAAE,EAS9FD,EAAaC,EAAI,UAAW,QAAS,+BAAgC,CAAE,EASvED,EAAaC,EAAI,uBAAwB,QAAS,6CAA8C,CAAE,EASlGD,EAAaC,EAAI,0BAA2B,QAAS,gDAAiD,CAAE,EASxGD,EAAaC,EAAI,OAAQ,QAAS,2BAA4B,CAAE,EAKhE,OAAO,QAAUA",
|
|
4
|
+
"sourcesContent": ["/**\n* @license Apache-2.0\n*\n* Copyright (c) 2020 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/*\n* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.\n*/\n\n/*\n* The following modules are intentionally not exported: function-object\n*/\n\n// MODULES //\n\nvar setReadOnly = require( '@stdlib/utils-define-read-only-property' );\n\n\n// MAIN //\n\n/**\n* Top-level namespace.\n*\n* @namespace ns\n*/\nvar ns = {};\n\n/**\n* @name binary\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/binary}\n*/\nsetReadOnly( ns, 'binary', require( '@stdlib/strided-base-binary' ) );\n\n/**\n* @name binaryAddonDispatch\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/binary-addon-dispatch}\n*/\nsetReadOnly( ns, 'binaryAddonDispatch', require( '@stdlib/strided-base-binary-addon-dispatch' ) );\n\n/**\n* @name binaryDtypeSignatures\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/binary-dtype-signatures}\n*/\nsetReadOnly( ns, 'binaryDtypeSignatures', require( '@stdlib/strided-base-binary-dtype-signatures' ) );\n\n/**\n* @name binarySignatureCallbacks\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/binary-signature-callbacks}\n*/\nsetReadOnly( ns, 'binarySignatureCallbacks', require( '@stdlib/strided-base-binary-signature-callbacks' ) );\n\n/**\n* @name cmap\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/cmap}\n*/\nsetReadOnly( ns, 'cmap', require( '@stdlib/strided-base-cmap' ) );\n\n/**\n* @name dmap\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/dmap}\n*/\nsetReadOnly( ns, 'dmap', require( '@stdlib/strided-base-dmap' ) );\n\n/**\n* @name dmap2\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/dmap2}\n*/\nsetReadOnly( ns, 'dmap2', require( '@stdlib/strided-base-dmap2' ) );\n\n/**\n* @name dmskmap\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/dmskmap}\n*/\nsetReadOnly( ns, 'dmskmap', require( '@stdlib/strided-base-dmskmap' ) );\n\n/**\n* @name dmskmap2\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/dmskmap2}\n*/\nsetReadOnly( ns, 'dmskmap2', require( '@stdlib/strided-base-dmskmap2' ) );\n\n/**\n* @name dtypeEnum2Str\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/dtype-enum2str}\n*/\nsetReadOnly( ns, 'dtypeEnum2Str', require( '@stdlib/strided-base-dtype-enum2str' ) );\n\n/**\n* @name dtypeResolveEnum\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/dtype-resolve-enum}\n*/\nsetReadOnly( ns, 'dtypeResolveEnum', require( '@stdlib/strided-base-dtype-resolve-enum' ) );\n\n/**\n* @name dtypeResolveStr\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/dtype-resolve-str}\n*/\nsetReadOnly( ns, 'dtypeResolveStr', require( '@stdlib/strided-base-dtype-resolve-str' ) );\n\n/**\n* @name dtypeStr2Enum\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/dtype-str2enum}\n*/\nsetReadOnly( ns, 'dtypeStr2Enum', require( '@stdlib/strided-base-dtype-str2enum' ) );\n\n/**\n* @name mapBy\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/map-by}\n*/\nsetReadOnly( ns, 'mapBy', require( '@stdlib/strided-base-map-by' ) );\n\n/**\n* @name mapBy2\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/map-by2}\n*/\nsetReadOnly( ns, 'mapBy2', require( '@stdlib/strided-base-map-by2' ) );\n\n/**\n* @name maxViewBufferIndex\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/max-view-buffer-index}\n*/\nsetReadOnly( ns, 'maxViewBufferIndex', require( '@stdlib/strided-base-max-view-buffer-index' ) );\n\n/**\n* @name metaDataProps\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/meta-data-props}\n*/\nsetReadOnly( ns, 'metaDataProps', require( '@stdlib/strided-base-meta-data-props' ) );\n\n/**\n* @name minViewBufferIndex\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/min-view-buffer-index}\n*/\nsetReadOnly( ns, 'minViewBufferIndex', require( '@stdlib/strided-base-min-view-buffer-index' ) );\n\n/**\n* @name mskunary\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/mskunary}\n*/\nsetReadOnly( ns, 'mskunary', require( '@stdlib/strided-base-mskunary' ) );\n\n/**\n* @name mskunaryAddonDispatch\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/mskunary-addon-dispatch}\n*/\nsetReadOnly( ns, 'mskunaryAddonDispatch', require( '@stdlib/strided-base-mskunary-addon-dispatch' ) );\n\n/**\n* @name mskunaryDtypeSignatures\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/mskunary-dtype-signatures}\n*/\nsetReadOnly( ns, 'mskunaryDtypeSignatures', require( '@stdlib/strided-base-mskunary-dtype-signatures' ) );\n\n/**\n* @name mskunarySignatureCallbacks\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/mskunary-signature-callbacks}\n*/\nsetReadOnly( ns, 'mskunarySignatureCallbacks', require( '@stdlib/strided-base-mskunary-signature-callbacks' ) );\n\n/**\n* @name nullary\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/nullary}\n*/\nsetReadOnly( ns, 'nullary', require( '@stdlib/strided-base-nullary' ) );\n\n/**\n* @name nullaryAddonDispatch\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/nullary-addon-dispatch}\n*/\nsetReadOnly( ns, 'nullaryAddonDispatch', require( '@stdlib/strided-base-nullary-addon-dispatch' ) );\n\n/**\n* @name offsetView\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/offset-view}\n*/\nsetReadOnly( ns, 'offsetView', require( '@stdlib/strided-base-offset-view' ) );\n\n/**\n* @name quaternary\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/quaternary}\n*/\nsetReadOnly( ns, 'quaternary', require( '@stdlib/strided-base-quaternary' ) );\n\n/**\n* @name quinary\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/quinary}\n*/\nsetReadOnly( ns, 'quinary', require( '@stdlib/strided-base-quinary' ) );\n\n/**\n* @name reinterpretComplex\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/reinterpret-complex}\n*/\nsetReadOnly( ns, 'reinterpretComplex', require( '@stdlib/strided-base-reinterpret-complex' ) );\n\n/**\n* @name reinterpretComplex64\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/reinterpret-complex64}\n*/\nsetReadOnly( ns, 'reinterpretComplex64', require( '@stdlib/strided-base-reinterpret-complex64' ) );\n\n/**\n* @name reinterpretComplex128\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/reinterpret-complex128}\n*/\nsetReadOnly( ns, 'reinterpretComplex128', require( '@stdlib/strided-base-reinterpret-complex128' ) );\n\n/**\n* @name smap\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/smap}\n*/\nsetReadOnly( ns, 'smap', require( '@stdlib/strided-base-smap' ) );\n\n/**\n* @name smap2\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/smap2}\n*/\nsetReadOnly( ns, 'smap2', require( '@stdlib/strided-base-smap2' ) );\n\n/**\n* @name smskmap\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/smskmap}\n*/\nsetReadOnly( ns, 'smskmap', require( '@stdlib/strided-base-smskmap' ) );\n\n/**\n* @name smskmap2\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/smskmap2}\n*/\nsetReadOnly( ns, 'smskmap2', require( '@stdlib/strided-base-smskmap2' ) );\n\n/**\n* @name ternary\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/ternary}\n*/\nsetReadOnly( ns, 'ternary', require( '@stdlib/strided-base-ternary' ) );\n\n/**\n* @name unary\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/unary}\n*/\nsetReadOnly( ns, 'unary', require( '@stdlib/strided-base-unary' ) );\n\n/**\n* @name unaryAddonDispatch\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/unary-addon-dispatch}\n*/\nsetReadOnly( ns, 'unaryAddonDispatch', require( '@stdlib/strided-base-unary-addon-dispatch' ) );\n\n/**\n* @name unaryBy\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/unary-by}\n*/\nsetReadOnly( ns, 'unaryBy', require( '@stdlib/strided-base-unary-by' ) );\n\n/**\n* @name unaryDtypeSignatures\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/unary-dtype-signatures}\n*/\nsetReadOnly( ns, 'unaryDtypeSignatures', require( '@stdlib/strided-base-unary-dtype-signatures' ) );\n\n/**\n* @name unarySignatureCallbacks\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/unary-signature-callbacks}\n*/\nsetReadOnly( ns, 'unarySignatureCallbacks', require( '@stdlib/strided-base-unary-signature-callbacks' ) );\n\n/**\n* @name zmap\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/zmap}\n*/\nsetReadOnly( ns, 'zmap', require( '@stdlib/strided-base-zmap' ) );\n\n\n// EXPORTS //\n\nmodule.exports = ns;\n"],
|
|
5
|
+
"mappings": "aA8BA,IAAIA,EAAc,QAAS,yCAA0C,EAUjEC,EAAK,CAAC,EASVD,EAAaC,EAAI,SAAU,QAAS,6BAA8B,CAAE,EASpED,EAAaC,EAAI,sBAAuB,QAAS,4CAA6C,CAAE,EAShGD,EAAaC,EAAI,wBAAyB,QAAS,8CAA+C,CAAE,EASpGD,EAAaC,EAAI,2BAA4B,QAAS,iDAAkD,CAAE,EAS1GD,EAAaC,EAAI,OAAQ,QAAS,2BAA4B,CAAE,EAShED,EAAaC,EAAI,OAAQ,QAAS,2BAA4B,CAAE,EAShED,EAAaC,EAAI,QAAS,QAAS,4BAA6B,CAAE,EASlED,EAAaC,EAAI,UAAW,QAAS,8BAA+B,CAAE,EAStED,EAAaC,EAAI,WAAY,QAAS,+BAAgC,CAAE,EASxED,EAAaC,EAAI,gBAAiB,QAAS,qCAAsC,CAAE,EASnFD,EAAaC,EAAI,mBAAoB,QAAS,yCAA0C,CAAE,EAS1FD,EAAaC,EAAI,kBAAmB,QAAS,wCAAyC,CAAE,EASxFD,EAAaC,EAAI,gBAAiB,QAAS,qCAAsC,CAAE,EASnFD,EAAaC,EAAI,QAAS,QAAS,6BAA8B,CAAE,EASnED,EAAaC,EAAI,SAAU,QAAS,8BAA+B,CAAE,EASrED,EAAaC,EAAI,qBAAsB,QAAS,4CAA6C,CAAE,EAS/FD,EAAaC,EAAI,gBAAiB,QAAS,sCAAuC,CAAE,EASpFD,EAAaC,EAAI,qBAAsB,QAAS,4CAA6C,CAAE,EAS/FD,EAAaC,EAAI,WAAY,QAAS,+BAAgC,CAAE,EASxED,EAAaC,EAAI,wBAAyB,QAAS,8CAA+C,CAAE,EASpGD,EAAaC,EAAI,0BAA2B,QAAS,gDAAiD,CAAE,EASxGD,EAAaC,EAAI,6BAA8B,QAAS,mDAAoD,CAAE,EAS9GD,EAAaC,EAAI,UAAW,QAAS,8BAA+B,CAAE,EAStED,EAAaC,EAAI,uBAAwB,QAAS,6CAA8C,CAAE,EASlGD,EAAaC,EAAI,aAAc,QAAS,kCAAmC,CAAE,EAS7ED,EAAaC,EAAI,aAAc,QAAS,iCAAkC,CAAE,EAS5ED,EAAaC,EAAI,UAAW,QAAS,8BAA+B,CAAE,EAStED,EAAaC,EAAI,qBAAsB,QAAS,0CAA2C,CAAE,EAS7FD,EAAaC,EAAI,uBAAwB,QAAS,4CAA6C,CAAE,EASjGD,EAAaC,EAAI,wBAAyB,QAAS,6CAA8C,CAAE,EASnGD,EAAaC,EAAI,OAAQ,QAAS,2BAA4B,CAAE,EAShED,EAAaC,EAAI,QAAS,QAAS,4BAA6B,CAAE,EASlED,EAAaC,EAAI,UAAW,QAAS,8BAA+B,CAAE,EAStED,EAAaC,EAAI,WAAY,QAAS,+BAAgC,CAAE,EASxED,EAAaC,EAAI,UAAW,QAAS,8BAA+B,CAAE,EAStED,EAAaC,EAAI,QAAS,QAAS,4BAA6B,CAAE,EASlED,EAAaC,EAAI,qBAAsB,QAAS,2CAA4C,CAAE,EAS9FD,EAAaC,EAAI,UAAW,QAAS,+BAAgC,CAAE,EASvED,EAAaC,EAAI,uBAAwB,QAAS,6CAA8C,CAAE,EASlGD,EAAaC,EAAI,0BAA2B,QAAS,gDAAiD,CAAE,EASxGD,EAAaC,EAAI,OAAQ,QAAS,2BAA4B,CAAE,EAKhE,OAAO,QAAUA",
|
|
6
6
|
"names": ["setReadOnly", "ns"]
|
|
7
7
|
}
|
package/docs/types/index.d.ts
CHANGED
|
@@ -18,8 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
// TypeScript Version: 4.1
|
|
20
20
|
|
|
21
|
-
/*
|
|
22
|
-
/* tslint:disable:max-file-line-count */
|
|
21
|
+
/* eslint-disable max-lines */
|
|
23
22
|
|
|
24
23
|
import binary = require( '@stdlib/strided-base-binary' );
|
|
25
24
|
import binaryAddonDispatch = require( '@stdlib/strided-base-binary-addon-dispatch' );
|
|
@@ -48,6 +47,7 @@ import nullaryAddonDispatch = require( '@stdlib/strided-base-nullary-addon-dispa
|
|
|
48
47
|
import offsetView = require( '@stdlib/strided-base-offset-view' );
|
|
49
48
|
import quaternary = require( '@stdlib/strided-base-quaternary' );
|
|
50
49
|
import quinary = require( '@stdlib/strided-base-quinary' );
|
|
50
|
+
import reinterpretComplex = require( '@stdlib/strided-base-reinterpret-complex' );
|
|
51
51
|
import reinterpretComplex64 = require( '@stdlib/strided-base-reinterpret-complex64' );
|
|
52
52
|
import reinterpretComplex128 = require( '@stdlib/strided-base-reinterpret-complex128' );
|
|
53
53
|
import smap = require( '@stdlib/strided-base-smap' );
|
|
@@ -75,7 +75,7 @@ interface Namespace {
|
|
|
75
75
|
* @param fcn - binary callback
|
|
76
76
|
*
|
|
77
77
|
* @example
|
|
78
|
-
* var Float64Array = require(
|
|
78
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
79
79
|
*
|
|
80
80
|
* function add( x, y ) {
|
|
81
81
|
* return x + y;
|
|
@@ -94,7 +94,7 @@ interface Namespace {
|
|
|
94
94
|
* // => <Float64Array>[ 2.0, 4.0, 6.0, 8.0, 10.0 ]
|
|
95
95
|
*
|
|
96
96
|
* @example
|
|
97
|
-
* var Float64Array = require(
|
|
97
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
98
98
|
*
|
|
99
99
|
* function add( x, y ) {
|
|
100
100
|
* return x + y;
|
|
@@ -207,10 +207,10 @@ interface Namespace {
|
|
|
207
207
|
* @returns list of callbacks
|
|
208
208
|
*
|
|
209
209
|
* @example
|
|
210
|
-
* var signatures = require(
|
|
211
|
-
* var add = require(
|
|
212
|
-
* var cadd = require(
|
|
213
|
-
* var caddf = require(
|
|
210
|
+
* var signatures = require( '@stdlib/strided-base-binary-dtype-signatures' );
|
|
211
|
+
* var add = require( '@stdlib/math-base-ops-add' );
|
|
212
|
+
* var cadd = require( '@stdlib/math-base-ops-cadd' );
|
|
213
|
+
* var caddf = require( '@stdlib/math-base-ops-caddf' );
|
|
214
214
|
*
|
|
215
215
|
* var dtypes = [
|
|
216
216
|
* 'float64',
|
|
@@ -245,10 +245,10 @@ interface Namespace {
|
|
|
245
245
|
* @returns `y`
|
|
246
246
|
*
|
|
247
247
|
* @example
|
|
248
|
-
* var Complex64Array = require(
|
|
249
|
-
* var real = require(
|
|
250
|
-
* var imag = require(
|
|
251
|
-
* var Complex64 = require(
|
|
248
|
+
* var Complex64Array = require( '@stdlib/array-complex64' );
|
|
249
|
+
* var real = require( '@stdlib/complex-real' );
|
|
250
|
+
* var imag = require( '@stdlib/complex-imag' );
|
|
251
|
+
* var Complex64 = require( '@stdlib/complex-float32' );
|
|
252
252
|
*
|
|
253
253
|
* function scale( x ) {
|
|
254
254
|
* var re = real( x );
|
|
@@ -271,10 +271,10 @@ interface Namespace {
|
|
|
271
271
|
* // returns 10.0
|
|
272
272
|
*
|
|
273
273
|
* @example
|
|
274
|
-
* var Complex64Array = require(
|
|
275
|
-
* var real = require(
|
|
276
|
-
* var imag = require(
|
|
277
|
-
* var Complex64 = require(
|
|
274
|
+
* var Complex64Array = require( '@stdlib/array-complex64' );
|
|
275
|
+
* var real = require( '@stdlib/complex-real' );
|
|
276
|
+
* var imag = require( '@stdlib/complex-imag' );
|
|
277
|
+
* var Complex64 = require( '@stdlib/complex-float32' );
|
|
278
278
|
*
|
|
279
279
|
* function scale( x ) {
|
|
280
280
|
* var re = real( x );
|
|
@@ -310,7 +310,7 @@ interface Namespace {
|
|
|
310
310
|
* @returns `y`
|
|
311
311
|
*
|
|
312
312
|
* @example
|
|
313
|
-
* var Float64Array = require(
|
|
313
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
314
314
|
*
|
|
315
315
|
* function identity( x ) {
|
|
316
316
|
* return x;
|
|
@@ -323,7 +323,7 @@ interface Namespace {
|
|
|
323
323
|
* // y => <Float64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0 ]
|
|
324
324
|
*
|
|
325
325
|
* @example
|
|
326
|
-
* var Float64Array = require(
|
|
326
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
327
327
|
*
|
|
328
328
|
* function identity( x ) {
|
|
329
329
|
* return x;
|
|
@@ -351,8 +351,8 @@ interface Namespace {
|
|
|
351
351
|
* @returns `z`
|
|
352
352
|
*
|
|
353
353
|
* @example
|
|
354
|
-
* var Float64Array = require(
|
|
355
|
-
* var add = require(
|
|
354
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
355
|
+
* var add = require( '@stdlib/math-base-ops-add' );
|
|
356
356
|
*
|
|
357
357
|
* var x = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
358
358
|
* var y = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
@@ -362,8 +362,8 @@ interface Namespace {
|
|
|
362
362
|
* // z => <Float64Array>[ 2.0, 4.0, 6.0, 8.0, 10.0 ]
|
|
363
363
|
*
|
|
364
364
|
* @example
|
|
365
|
-
* var Float64Array = require(
|
|
366
|
-
* var add = require(
|
|
365
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
366
|
+
* var add = require( '@stdlib/math-base-ops-add' );
|
|
367
367
|
*
|
|
368
368
|
* var x = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
369
369
|
* var y = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
@@ -388,8 +388,8 @@ interface Namespace {
|
|
|
388
388
|
* @returns `y`
|
|
389
389
|
*
|
|
390
390
|
* @example
|
|
391
|
-
* var Float64Array = require(
|
|
392
|
-
* var Uint8Array = require(
|
|
391
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
392
|
+
* var Uint8Array = require( '@stdlib/array-uint8' );
|
|
393
393
|
*
|
|
394
394
|
* function identity( x ) {
|
|
395
395
|
* return x;
|
|
@@ -403,8 +403,8 @@ interface Namespace {
|
|
|
403
403
|
* // y => <Float64Array>[ 1.0, 2.0, 0.0, 4.0, 5.0 ]
|
|
404
404
|
*
|
|
405
405
|
* @example
|
|
406
|
-
* var Float64Array = require(
|
|
407
|
-
* var Uint8Array = require(
|
|
406
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
407
|
+
* var Uint8Array = require( '@stdlib/array-uint8' );
|
|
408
408
|
*
|
|
409
409
|
* function identity( x ) {
|
|
410
410
|
* return x;
|
|
@@ -435,9 +435,9 @@ interface Namespace {
|
|
|
435
435
|
* @returns `z`
|
|
436
436
|
*
|
|
437
437
|
* @example
|
|
438
|
-
* var Float64Array = require(
|
|
439
|
-
* var Uint8Array = require(
|
|
440
|
-
* var add = require(
|
|
438
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
439
|
+
* var Uint8Array = require( '@stdlib/array-uint8' );
|
|
440
|
+
* var add = require( '@stdlib/math-base-ops-add' );
|
|
441
441
|
*
|
|
442
442
|
* var x = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
443
443
|
* var y = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
@@ -448,9 +448,9 @@ interface Namespace {
|
|
|
448
448
|
* // z => <Float64Array>[ 2.0, 4.0, 0.0, 8.0, 10.0 ]
|
|
449
449
|
*
|
|
450
450
|
* @example
|
|
451
|
-
* var Float64Array = require(
|
|
452
|
-
* var Uint8Array = require(
|
|
453
|
-
* var add = require(
|
|
451
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
452
|
+
* var Uint8Array = require( '@stdlib/array-uint8' );
|
|
453
|
+
* var add = require( '@stdlib/math-base-ops-add' );
|
|
454
454
|
*
|
|
455
455
|
* var x = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
456
456
|
* var y = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
@@ -469,7 +469,7 @@ interface Namespace {
|
|
|
469
469
|
* @returns data type string
|
|
470
470
|
*
|
|
471
471
|
* @example
|
|
472
|
-
* var str2enum = require(
|
|
472
|
+
* var str2enum = require( '@stdlib/strided-base-dtype-str2enum' );
|
|
473
473
|
*
|
|
474
474
|
* var v = str2enum( 'float64' );
|
|
475
475
|
* // returns <number>
|
|
@@ -502,7 +502,7 @@ interface Namespace {
|
|
|
502
502
|
* @returns data type string
|
|
503
503
|
*
|
|
504
504
|
* @example
|
|
505
|
-
* var str2enum = require(
|
|
505
|
+
* var str2enum = require( '@stdlib/strided-base-dtype-str2enum' );
|
|
506
506
|
*
|
|
507
507
|
* var v = ns.dtypeResolveStr( str2enum( 'float64' ) );
|
|
508
508
|
* // returns 'float64'
|
|
@@ -539,7 +539,7 @@ interface Namespace {
|
|
|
539
539
|
* @returns `y`
|
|
540
540
|
*
|
|
541
541
|
* @example
|
|
542
|
-
* var abs = require(
|
|
542
|
+
* var abs = require( '@stdlib/math-base-special-abs' );
|
|
543
543
|
*
|
|
544
544
|
* function accessor( v ) {
|
|
545
545
|
* return v * 2.0;
|
|
@@ -552,7 +552,7 @@ interface Namespace {
|
|
|
552
552
|
* // y => [ 2.0, 4.0, 6.0, 8.0, 10.0 ]
|
|
553
553
|
*
|
|
554
554
|
* @example
|
|
555
|
-
* var abs = require(
|
|
555
|
+
* var abs = require( '@stdlib/math-base-special-abs' );
|
|
556
556
|
*
|
|
557
557
|
* function accessor( v ) {
|
|
558
558
|
* return v * 2.0;
|
|
@@ -582,7 +582,7 @@ interface Namespace {
|
|
|
582
582
|
* @returns `z`
|
|
583
583
|
*
|
|
584
584
|
* @example
|
|
585
|
-
* var add = require(
|
|
585
|
+
* var add = require( '@stdlib/math-base-ops-add' );
|
|
586
586
|
*
|
|
587
587
|
* function accessor( values ) {
|
|
588
588
|
* values[ 0 ] *= 2.0;
|
|
@@ -597,7 +597,7 @@ interface Namespace {
|
|
|
597
597
|
* // z => [ 4.0, 0.0, 12.0, 0.0, 20.0 ]
|
|
598
598
|
*
|
|
599
599
|
* @example
|
|
600
|
-
* var add = require(
|
|
600
|
+
* var add = require( '@stdlib/math-base-ops-add' );
|
|
601
601
|
*
|
|
602
602
|
* function accessor( values ) {
|
|
603
603
|
* values[ 0 ] *= 2.0;
|
|
@@ -685,8 +685,8 @@ interface Namespace {
|
|
|
685
685
|
* @param fcn - unary callback
|
|
686
686
|
*
|
|
687
687
|
* @example
|
|
688
|
-
* var Float64Array = require(
|
|
689
|
-
* var Uint8Array = require(
|
|
688
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
689
|
+
* var Uint8Array = require( '@stdlib/array-uint8' );
|
|
690
690
|
*
|
|
691
691
|
* function scale( x ) {
|
|
692
692
|
* return x * 10.0;
|
|
@@ -705,8 +705,8 @@ interface Namespace {
|
|
|
705
705
|
* // => <Float64Array>[ 10.0, 20.0, 0.0, 40.0, 50.0 ]
|
|
706
706
|
*
|
|
707
707
|
* @example
|
|
708
|
-
* var Float64Array = require(
|
|
709
|
-
* var Uint8Array = require(
|
|
708
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
709
|
+
* var Uint8Array = require( '@stdlib/array-uint8' );
|
|
710
710
|
*
|
|
711
711
|
* function scale( x ) {
|
|
712
712
|
* return x * 10.0;
|
|
@@ -819,10 +819,10 @@ interface Namespace {
|
|
|
819
819
|
* @returns list of callbacks
|
|
820
820
|
*
|
|
821
821
|
* @example
|
|
822
|
-
* var signatures = require(
|
|
823
|
-
* var identity = require(
|
|
824
|
-
* var cidentity = require(
|
|
825
|
-
* var cidentityf = require(
|
|
822
|
+
* var signatures = require( '@stdlib/strided-base-mskunary-dtype-signatures' );
|
|
823
|
+
* var identity = require( '@stdlib/math-base-special-identity' );
|
|
824
|
+
* var cidentity = require( '@stdlib/math-base-special-cidentity' );
|
|
825
|
+
* var cidentityf = require( '@stdlib/math-base-special-cidentityf' );
|
|
826
826
|
*
|
|
827
827
|
* var dtypes = [
|
|
828
828
|
* 'float64',
|
|
@@ -854,7 +854,7 @@ interface Namespace {
|
|
|
854
854
|
* @param fcn - nullary callback
|
|
855
855
|
*
|
|
856
856
|
* @example
|
|
857
|
-
* var Float64Array = require(
|
|
857
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
858
858
|
*
|
|
859
859
|
* function fill() {
|
|
860
860
|
* return 3.0;
|
|
@@ -871,7 +871,7 @@ interface Namespace {
|
|
|
871
871
|
* // => <Float64Array>[ 3.0, 3.0, 3.0, 3.0, 3.0 ]
|
|
872
872
|
*
|
|
873
873
|
* @example
|
|
874
|
-
* var Float64Array = require(
|
|
874
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
875
875
|
*
|
|
876
876
|
* function fill() {
|
|
877
877
|
* return 3.0;
|
|
@@ -941,7 +941,7 @@ interface Namespace {
|
|
|
941
941
|
* @returns typed array view
|
|
942
942
|
*
|
|
943
943
|
* @example
|
|
944
|
-
* var Float64Array = require(
|
|
944
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
945
945
|
*
|
|
946
946
|
* var x = new Float64Array( 10 );
|
|
947
947
|
*
|
|
@@ -961,11 +961,8 @@ interface Namespace {
|
|
|
961
961
|
* @param fcn - quaternary callback
|
|
962
962
|
*
|
|
963
963
|
* @example
|
|
964
|
-
* var
|
|
965
|
-
*
|
|
966
|
-
* function add( x, y, z, w ) {
|
|
967
|
-
* return x + y + z + w;
|
|
968
|
-
* }
|
|
964
|
+
* var add = require( '@stdlib/math-base-ops-add4' );
|
|
965
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
969
966
|
*
|
|
970
967
|
* var x = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
971
968
|
* var y = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
@@ -982,11 +979,8 @@ interface Namespace {
|
|
|
982
979
|
* // => <Float64Array>[ 4.0, 8.0, 12.0, 16.0, 20.0 ]
|
|
983
980
|
*
|
|
984
981
|
* @example
|
|
985
|
-
* var
|
|
986
|
-
*
|
|
987
|
-
* function add( x, y, z, w ) {
|
|
988
|
-
* return x + y + z + w;
|
|
989
|
-
* }
|
|
982
|
+
* var add = require( '@stdlib/math-base-ops-add4' );
|
|
983
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
990
984
|
*
|
|
991
985
|
* var x = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
992
986
|
* var y = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
@@ -1014,11 +1008,8 @@ interface Namespace {
|
|
|
1014
1008
|
* @param fcn - quinary callback
|
|
1015
1009
|
*
|
|
1016
1010
|
* @example
|
|
1017
|
-
* var
|
|
1018
|
-
*
|
|
1019
|
-
* function add( x, y, z, w, u ) {
|
|
1020
|
-
* return x + y + z + w + u;
|
|
1021
|
-
* }
|
|
1011
|
+
* var add = require( '@stdlib/math-base-ops-add5' );
|
|
1012
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
1022
1013
|
*
|
|
1023
1014
|
* var x = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
1024
1015
|
* var y = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
@@ -1036,11 +1027,8 @@ interface Namespace {
|
|
|
1036
1027
|
* // => <Float64Array>[ 5.0, 10.0, 15.0, 20.0, 25.0 ]
|
|
1037
1028
|
*
|
|
1038
1029
|
* @example
|
|
1039
|
-
* var
|
|
1040
|
-
*
|
|
1041
|
-
* function add( x, y, z, w, u ) {
|
|
1042
|
-
* return x + y + z + w + u;
|
|
1043
|
-
* }
|
|
1030
|
+
* var add = require( '@stdlib/math-base-ops-add5' );
|
|
1031
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
1044
1032
|
*
|
|
1045
1033
|
* var x = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
1046
1034
|
* var y = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
@@ -1060,6 +1048,25 @@ interface Namespace {
|
|
|
1060
1048
|
*/
|
|
1061
1049
|
quinary: typeof quinary;
|
|
1062
1050
|
|
|
1051
|
+
/**
|
|
1052
|
+
* Reinterprets a `Complex128Array` as a `Float64Array`.
|
|
1053
|
+
*
|
|
1054
|
+
* @param x - input array
|
|
1055
|
+
* @param offset - starting index
|
|
1056
|
+
* @returns `Float64Array` view
|
|
1057
|
+
*
|
|
1058
|
+
* @example
|
|
1059
|
+
* var Complex128Array = require( '@stdlib/array-complex128' );
|
|
1060
|
+
*
|
|
1061
|
+
* var x = new Complex128Array( 10 );
|
|
1062
|
+
*
|
|
1063
|
+
* var out = ns.reinterpretComplex( x, 0 );
|
|
1064
|
+
* // returns <Float64Array>
|
|
1065
|
+
*
|
|
1066
|
+
* var bool = ( out.buffer === x.buffer );
|
|
1067
|
+
*/
|
|
1068
|
+
reinterpretComplex: typeof reinterpretComplex;
|
|
1069
|
+
|
|
1063
1070
|
/**
|
|
1064
1071
|
* Reinterprets a `Complex64Array` as a `Float32Array`.
|
|
1065
1072
|
*
|
|
@@ -1068,7 +1075,7 @@ interface Namespace {
|
|
|
1068
1075
|
* @returns `Float32Array` view
|
|
1069
1076
|
*
|
|
1070
1077
|
* @example
|
|
1071
|
-
* var Complex64Array = require(
|
|
1078
|
+
* var Complex64Array = require( '@stdlib/array-complex64' );
|
|
1072
1079
|
*
|
|
1073
1080
|
* var x = new Complex64Array( 10 );
|
|
1074
1081
|
*
|
|
@@ -1087,7 +1094,7 @@ interface Namespace {
|
|
|
1087
1094
|
* @returns `Float64Array` view
|
|
1088
1095
|
*
|
|
1089
1096
|
* @example
|
|
1090
|
-
* var Complex128Array = require(
|
|
1097
|
+
* var Complex128Array = require( '@stdlib/array-complex128' );
|
|
1091
1098
|
*
|
|
1092
1099
|
* var x = new Complex128Array( 10 );
|
|
1093
1100
|
*
|
|
@@ -1110,7 +1117,7 @@ interface Namespace {
|
|
|
1110
1117
|
* @returns `y`
|
|
1111
1118
|
*
|
|
1112
1119
|
* @example
|
|
1113
|
-
* var Float32Array = require(
|
|
1120
|
+
* var Float32Array = require( '@stdlib/array-float32' );
|
|
1114
1121
|
*
|
|
1115
1122
|
* function identity( x ) {
|
|
1116
1123
|
* return x;
|
|
@@ -1123,7 +1130,7 @@ interface Namespace {
|
|
|
1123
1130
|
* // y => <Float32Array>[ 1.0, 2.0, 3.0, 4.0, 5.0 ]
|
|
1124
1131
|
*
|
|
1125
1132
|
* @example
|
|
1126
|
-
* var Float32Array = require(
|
|
1133
|
+
* var Float32Array = require( '@stdlib/array-float32' );
|
|
1127
1134
|
*
|
|
1128
1135
|
* function identity( x ) {
|
|
1129
1136
|
* return x;
|
|
@@ -1151,8 +1158,8 @@ interface Namespace {
|
|
|
1151
1158
|
* @returns `z`
|
|
1152
1159
|
*
|
|
1153
1160
|
* @example
|
|
1154
|
-
* var Float32Array = require(
|
|
1155
|
-
* var addf = require(
|
|
1161
|
+
* var Float32Array = require( '@stdlib/array-float32' );
|
|
1162
|
+
* var addf = require( '@stdlib/math-base-ops-addf' );
|
|
1156
1163
|
*
|
|
1157
1164
|
* var x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
1158
1165
|
* var y = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
@@ -1162,8 +1169,8 @@ interface Namespace {
|
|
|
1162
1169
|
* // z => <Float32Array>[ 2.0, 4.0, 6.0, 8.0, 10.0 ]
|
|
1163
1170
|
*
|
|
1164
1171
|
* @example
|
|
1165
|
-
* var Float32Array = require(
|
|
1166
|
-
* var addf = require(
|
|
1172
|
+
* var Float32Array = require( '@stdlib/array-float32' );
|
|
1173
|
+
* var addf = require( '@stdlib/math-base-ops-addf' );
|
|
1167
1174
|
*
|
|
1168
1175
|
* var x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
1169
1176
|
* var y = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
@@ -1188,8 +1195,8 @@ interface Namespace {
|
|
|
1188
1195
|
* @returns `y`
|
|
1189
1196
|
*
|
|
1190
1197
|
* @example
|
|
1191
|
-
* var Float32Array = require(
|
|
1192
|
-
* var Uint8Array = require(
|
|
1198
|
+
* var Float32Array = require( '@stdlib/array-float32' );
|
|
1199
|
+
* var Uint8Array = require( '@stdlib/array-uint8' );
|
|
1193
1200
|
*
|
|
1194
1201
|
* function identity( x ) {
|
|
1195
1202
|
* return x;
|
|
@@ -1203,8 +1210,8 @@ interface Namespace {
|
|
|
1203
1210
|
* // y => <Float32Array>[ 1.0, 2.0, 0.0, 4.0, 5.0 ]
|
|
1204
1211
|
*
|
|
1205
1212
|
* @example
|
|
1206
|
-
* var Float32Array = require(
|
|
1207
|
-
* var Uint8Array = require(
|
|
1213
|
+
* var Float32Array = require( '@stdlib/array-float32' );
|
|
1214
|
+
* var Uint8Array = require( '@stdlib/array-uint8' );
|
|
1208
1215
|
*
|
|
1209
1216
|
* function identity( x ) {
|
|
1210
1217
|
* return x;
|
|
@@ -1235,9 +1242,9 @@ interface Namespace {
|
|
|
1235
1242
|
* @returns `z`
|
|
1236
1243
|
*
|
|
1237
1244
|
* @example
|
|
1238
|
-
* var Float32Array = require(
|
|
1239
|
-
* var Uint8Array = require(
|
|
1240
|
-
* var addf = require(
|
|
1245
|
+
* var Float32Array = require( '@stdlib/array-float32' );
|
|
1246
|
+
* var Uint8Array = require( '@stdlib/array-uint8' );
|
|
1247
|
+
* var addf = require( '@stdlib/math-base-ops-addf' );
|
|
1241
1248
|
*
|
|
1242
1249
|
* var x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
1243
1250
|
* var y = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
@@ -1248,9 +1255,9 @@ interface Namespace {
|
|
|
1248
1255
|
* // z => <Float32Array>[ 2.0, 4.0, 0.0, 8.0, 10.0 ]
|
|
1249
1256
|
*
|
|
1250
1257
|
* @example
|
|
1251
|
-
* var Float32Array = require(
|
|
1252
|
-
* var Uint8Array = require(
|
|
1253
|
-
* var addf = require(
|
|
1258
|
+
* var Float32Array = require( '@stdlib/array-float32' );
|
|
1259
|
+
* var Uint8Array = require( '@stdlib/array-uint8' );
|
|
1260
|
+
* var addf = require( '@stdlib/math-base-ops-addf' );
|
|
1254
1261
|
*
|
|
1255
1262
|
* var x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
1256
1263
|
* var y = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
@@ -1271,11 +1278,8 @@ interface Namespace {
|
|
|
1271
1278
|
* @param fcn - ternary callback
|
|
1272
1279
|
*
|
|
1273
1280
|
* @example
|
|
1274
|
-
* var
|
|
1275
|
-
*
|
|
1276
|
-
* function add( x, y, z ) {
|
|
1277
|
-
* return x + y + z;
|
|
1278
|
-
* }
|
|
1281
|
+
* var add = require( '@stdlib/math-base-ops-add3' );
|
|
1282
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
1279
1283
|
*
|
|
1280
1284
|
* var x = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
1281
1285
|
* var y = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
@@ -1291,11 +1295,8 @@ interface Namespace {
|
|
|
1291
1295
|
* // => <Float64Array>[ 3.0, 6.0, 9.0, 12.0, 15.0 ]
|
|
1292
1296
|
*
|
|
1293
1297
|
* @example
|
|
1294
|
-
* var
|
|
1295
|
-
*
|
|
1296
|
-
* function add( x, y, z ) {
|
|
1297
|
-
* return x + y + z;
|
|
1298
|
-
* }
|
|
1298
|
+
* var add = require( '@stdlib/math-base-ops-add3' );
|
|
1299
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
1299
1300
|
*
|
|
1300
1301
|
* var x = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
1301
1302
|
* var y = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
|
|
@@ -1322,7 +1323,7 @@ interface Namespace {
|
|
|
1322
1323
|
* @param fcn - unary callback
|
|
1323
1324
|
*
|
|
1324
1325
|
* @example
|
|
1325
|
-
* var Float64Array = require(
|
|
1326
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
1326
1327
|
*
|
|
1327
1328
|
* function scale( x ) {
|
|
1328
1329
|
* return x * 10.0;
|
|
@@ -1340,7 +1341,7 @@ interface Namespace {
|
|
|
1340
1341
|
* // => <Float64Array>[ 10.0, 20.0, 30.0, 40.0, 50.0 ]
|
|
1341
1342
|
*
|
|
1342
1343
|
* @example
|
|
1343
|
-
* var Float64Array = require(
|
|
1344
|
+
* var Float64Array = require( '@stdlib/array-float64' );
|
|
1344
1345
|
*
|
|
1345
1346
|
* function scale( x ) {
|
|
1346
1347
|
* return x * 10.0;
|
|
@@ -1414,7 +1415,7 @@ interface Namespace {
|
|
|
1414
1415
|
* @param thisArg - callback execution context
|
|
1415
1416
|
*
|
|
1416
1417
|
* @example
|
|
1417
|
-
* var abs = require(
|
|
1418
|
+
* var abs = require( '@stdlib/math-base-special-abs' );
|
|
1418
1419
|
*
|
|
1419
1420
|
* function accessor( v ) {
|
|
1420
1421
|
* return v * 2.0;
|
|
@@ -1430,7 +1431,7 @@ interface Namespace {
|
|
|
1430
1431
|
* // y => [ 2.0, 4.0, 6.0, 8.0, 10.0 ]
|
|
1431
1432
|
*
|
|
1432
1433
|
* @example
|
|
1433
|
-
* var abs = require(
|
|
1434
|
+
* var abs = require( '@stdlib/math-base-special-abs' );
|
|
1434
1435
|
*
|
|
1435
1436
|
* function accessor( v ) {
|
|
1436
1437
|
* return v * 2.0;
|
|
@@ -1496,10 +1497,10 @@ interface Namespace {
|
|
|
1496
1497
|
* @returns list of callbacks
|
|
1497
1498
|
*
|
|
1498
1499
|
* @example
|
|
1499
|
-
* var signatures = require(
|
|
1500
|
-
* var identity = require(
|
|
1501
|
-
* var cidentity = require(
|
|
1502
|
-
* var cidentityf = require(
|
|
1500
|
+
* var signatures = require( '@stdlib/strided-base-unary-dtype-signatures' );
|
|
1501
|
+
* var identity = require( '@stdlib/math-base-special-identity' );
|
|
1502
|
+
* var cidentity = require( '@stdlib/math-base-special-cidentity' );
|
|
1503
|
+
* var cidentityf = require( '@stdlib/math-base-special-cidentityf' );
|
|
1503
1504
|
*
|
|
1504
1505
|
* var dtypes = [
|
|
1505
1506
|
* 'float64',
|
|
@@ -1534,10 +1535,10 @@ interface Namespace {
|
|
|
1534
1535
|
* @returns `y`
|
|
1535
1536
|
*
|
|
1536
1537
|
* @example
|
|
1537
|
-
* var Complex128Array = require(
|
|
1538
|
-
* var real = require(
|
|
1539
|
-
* var imag = require(
|
|
1540
|
-
* var Complex128 = require(
|
|
1538
|
+
* var Complex128Array = require( '@stdlib/array-complex128' );
|
|
1539
|
+
* var real = require( '@stdlib/complex-real' );
|
|
1540
|
+
* var imag = require( '@stdlib/complex-imag' );
|
|
1541
|
+
* var Complex128 = require( '@stdlib/complex-float64' );
|
|
1541
1542
|
*
|
|
1542
1543
|
* function scale( x ) {
|
|
1543
1544
|
* var re = real( x );
|
|
@@ -1560,10 +1561,10 @@ interface Namespace {
|
|
|
1560
1561
|
* // returns 10.0
|
|
1561
1562
|
*
|
|
1562
1563
|
* @example
|
|
1563
|
-
* var Complex128Array = require(
|
|
1564
|
-
* var real = require(
|
|
1565
|
-
* var imag = require(
|
|
1566
|
-
* var Complex128 = require(
|
|
1564
|
+
* var Complex128Array = require( '@stdlib/array-complex128' );
|
|
1565
|
+
* var real = require( '@stdlib/complex-real' );
|
|
1566
|
+
* var imag = require( '@stdlib/complex-imag' );
|
|
1567
|
+
* var Complex128 = require( '@stdlib/complex-float64' );
|
|
1567
1568
|
*
|
|
1568
1569
|
* function scale( x ) {
|
|
1569
1570
|
* var re = real( x );
|
package/lib/index.js
CHANGED
|
@@ -283,6 +283,15 @@ setReadOnly( ns, 'quaternary', require( '@stdlib/strided-base-quaternary' ) );
|
|
|
283
283
|
*/
|
|
284
284
|
setReadOnly( ns, 'quinary', require( '@stdlib/strided-base-quinary' ) );
|
|
285
285
|
|
|
286
|
+
/**
|
|
287
|
+
* @name reinterpretComplex
|
|
288
|
+
* @memberof ns
|
|
289
|
+
* @readonly
|
|
290
|
+
* @type {Function}
|
|
291
|
+
* @see {@link module:@stdlib/strided/base/reinterpret-complex}
|
|
292
|
+
*/
|
|
293
|
+
setReadOnly( ns, 'reinterpretComplex', require( '@stdlib/strided-base-reinterpret-complex' ) );
|
|
294
|
+
|
|
286
295
|
/**
|
|
287
296
|
* @name reinterpretComplex64
|
|
288
297
|
* @memberof ns
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/strided-base",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Base strided.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -16,17 +16,11 @@
|
|
|
16
16
|
"main": "./lib",
|
|
17
17
|
"directories": {
|
|
18
18
|
"doc": "./docs",
|
|
19
|
-
"example": "./examples",
|
|
20
19
|
"lib": "./lib",
|
|
21
|
-
"
|
|
20
|
+
"dist": "./dist"
|
|
22
21
|
},
|
|
23
22
|
"types": "./docs/types",
|
|
24
|
-
"scripts": {
|
|
25
|
-
"test": "make test",
|
|
26
|
-
"test-cov": "make test-cov",
|
|
27
|
-
"examples": "make examples",
|
|
28
|
-
"benchmark": "make benchmark"
|
|
29
|
-
},
|
|
23
|
+
"scripts": {},
|
|
30
24
|
"homepage": "https://stdlib.io",
|
|
31
25
|
"repository": {
|
|
32
26
|
"type": "git",
|
|
@@ -36,142 +30,50 @@
|
|
|
36
30
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
37
31
|
},
|
|
38
32
|
"dependencies": {
|
|
39
|
-
"@stdlib/strided-base-binary": "^0.
|
|
40
|
-
"@stdlib/strided-base-binary-addon-dispatch": "^0.1
|
|
41
|
-
"@stdlib/strided-base-binary-dtype-signatures": "^0.1
|
|
42
|
-
"@stdlib/strided-base-binary-signature-callbacks": "^0.1
|
|
43
|
-
"@stdlib/strided-base-cmap": "^0.1
|
|
44
|
-
"@stdlib/strided-base-dmap": "^0.1
|
|
45
|
-
"@stdlib/strided-base-dmap2": "^0.1
|
|
46
|
-
"@stdlib/strided-base-dmskmap": "^0.1
|
|
47
|
-
"@stdlib/strided-base-dmskmap2": "^0.1
|
|
48
|
-
"@stdlib/strided-base-dtype-enum2str": "^0.1
|
|
49
|
-
"@stdlib/strided-base-dtype-resolve-enum": "^0.1
|
|
50
|
-
"@stdlib/strided-base-dtype-resolve-str": "^0.1
|
|
51
|
-
"@stdlib/strided-base-dtype-str2enum": "^0.1
|
|
52
|
-
"@stdlib/strided-base-map-by": "^0.
|
|
53
|
-
"@stdlib/strided-base-map-by2": "^0.
|
|
54
|
-
"@stdlib/strided-base-max-view-buffer-index": "^0.1
|
|
55
|
-
"@stdlib/strided-base-meta-data-props": "^0.1
|
|
56
|
-
"@stdlib/strided-base-min-view-buffer-index": "^0.1
|
|
57
|
-
"@stdlib/strided-base-mskunary": "^0.
|
|
58
|
-
"@stdlib/strided-base-mskunary-addon-dispatch": "^0.1
|
|
59
|
-
"@stdlib/strided-base-mskunary-dtype-signatures": "^0.1
|
|
60
|
-
"@stdlib/strided-base-mskunary-signature-callbacks": "^0.1
|
|
61
|
-
"@stdlib/strided-base-nullary": "^0.
|
|
62
|
-
"@stdlib/strided-base-nullary-addon-dispatch": "^0.1
|
|
63
|
-
"@stdlib/strided-base-offset-view": "^0.1
|
|
64
|
-
"@stdlib/strided-base-quaternary": "^0.1
|
|
65
|
-
"@stdlib/strided-base-quinary": "^0.1
|
|
66
|
-
"@stdlib/strided-base-reinterpret-
|
|
67
|
-
"@stdlib/strided-base-reinterpret-
|
|
68
|
-
"@stdlib/strided-base-
|
|
69
|
-
"@stdlib/strided-base-
|
|
70
|
-
"@stdlib/strided-base-
|
|
71
|
-
"@stdlib/strided-base-
|
|
72
|
-
"@stdlib/strided-base-
|
|
73
|
-
"@stdlib/strided-base-
|
|
74
|
-
"@stdlib/strided-base-unary
|
|
75
|
-
"@stdlib/strided-base-unary-
|
|
76
|
-
"@stdlib/strided-base-unary-
|
|
77
|
-
"@stdlib/strided-base-unary-
|
|
78
|
-
"@stdlib/strided-base-
|
|
79
|
-
"@stdlib/
|
|
80
|
-
|
|
81
|
-
"devDependencies": {
|
|
82
|
-
"@stdlib/array-base-accessor-getter": "^0.1.0",
|
|
83
|
-
"@stdlib/array-base-accessor-setter": "^0.1.0",
|
|
84
|
-
"@stdlib/array-base-assert-is-accessor-array": "^0.1.0",
|
|
85
|
-
"@stdlib/array-base-getter": "^0.1.0",
|
|
86
|
-
"@stdlib/array-base-setter": "^0.1.0",
|
|
87
|
-
"@stdlib/array-buffer": "^0.1.0",
|
|
88
|
-
"@stdlib/array-complex128": "^0.1.0",
|
|
89
|
-
"@stdlib/array-complex64": "^0.1.0",
|
|
90
|
-
"@stdlib/array-dtype": "^0.1.0",
|
|
91
|
-
"@stdlib/array-filled": "^0.0.6",
|
|
92
|
-
"@stdlib/array-filled-by": "^0.0.2",
|
|
93
|
-
"@stdlib/array-float32": "^0.1.0",
|
|
94
|
-
"@stdlib/array-float64": "^0.1.0",
|
|
95
|
-
"@stdlib/array-uint8": "^0.1.0",
|
|
96
|
-
"@stdlib/assert-has-own-property": "^0.1.0",
|
|
97
|
-
"@stdlib/assert-is-array": "^0.1.0",
|
|
98
|
-
"@stdlib/assert-is-browser": "^0.1.0",
|
|
99
|
-
"@stdlib/assert-is-complex128": "^0.1.0",
|
|
100
|
-
"@stdlib/assert-is-complex64": "^0.1.0",
|
|
101
|
-
"@stdlib/assert-is-complex64array": "^0.1.0",
|
|
102
|
-
"@stdlib/assert-is-float32array": "^0.1.0",
|
|
103
|
-
"@stdlib/assert-is-float64array": "^0.1.0",
|
|
104
|
-
"@stdlib/assert-is-function": "^0.1.0",
|
|
105
|
-
"@stdlib/assert-is-function-array": "^0.1.0",
|
|
106
|
-
"@stdlib/assert-is-integer": "^0.1.0",
|
|
107
|
-
"@stdlib/assert-is-integer-array": "^0.1.0",
|
|
108
|
-
"@stdlib/assert-is-nonnegative-integer": "^0.1.0",
|
|
109
|
-
"@stdlib/assert-is-string": "^0.1.0",
|
|
110
|
-
"@stdlib/assert-is-string-array": "^0.1.0",
|
|
111
|
-
"@stdlib/assert-is-typed-array": "^0.1.0",
|
|
112
|
-
"@stdlib/assert-is-typed-array-like": "^0.1.0",
|
|
113
|
-
"@stdlib/assert-is-uint8array": "^0.1.0",
|
|
114
|
-
"@stdlib/bench": "^0.1.0",
|
|
115
|
-
"@stdlib/complex-base-cast-return": "^0.1.0",
|
|
116
|
-
"@stdlib/complex-base-wrap-function": "^0.1.0",
|
|
117
|
-
"@stdlib/complex-float32": "^0.1.0",
|
|
118
|
-
"@stdlib/complex-float64": "^0.1.0",
|
|
119
|
-
"@stdlib/complex-imag": "^0.1.0",
|
|
120
|
-
"@stdlib/complex-imagf": "^0.1.0",
|
|
121
|
-
"@stdlib/complex-real": "^0.1.0",
|
|
122
|
-
"@stdlib/complex-realf": "^0.1.0",
|
|
123
|
-
"@stdlib/fs-read-dir": "^0.1.0",
|
|
124
|
-
"@stdlib/fs-read-file": "^0.1.0",
|
|
125
|
-
"@stdlib/fs-read-json": "^0.1.0",
|
|
126
|
-
"@stdlib/fs-unlink": "^0.1.0",
|
|
127
|
-
"@stdlib/fs-write-file": "^0.1.0",
|
|
128
|
-
"@stdlib/math-base-assert-is-nan": "^0.1.0",
|
|
129
|
-
"@stdlib/math-base-assert-is-nanf": "^0.1.0",
|
|
130
|
-
"@stdlib/math-base-ops-add": "^0.1.0",
|
|
131
|
-
"@stdlib/math-base-ops-addf": "^0.1.0",
|
|
132
|
-
"@stdlib/math-base-ops-cadd": "^0.1.0",
|
|
133
|
-
"@stdlib/math-base-ops-caddf": "^0.1.0",
|
|
134
|
-
"@stdlib/math-base-special-abs": "^0.1.0",
|
|
135
|
-
"@stdlib/math-base-special-absf": "^0.1.0",
|
|
136
|
-
"@stdlib/math-base-special-cceil": "^0.1.0",
|
|
137
|
-
"@stdlib/math-base-special-cceilf": "^0.1.0",
|
|
138
|
-
"@stdlib/math-base-special-ceil": "^0.1.0",
|
|
139
|
-
"@stdlib/math-base-special-cidentity": "^0.1.0",
|
|
140
|
-
"@stdlib/math-base-special-cidentityf": "^0.1.0",
|
|
141
|
-
"@stdlib/math-base-special-floor": "^0.1.0",
|
|
142
|
-
"@stdlib/math-base-special-identity": "^0.1.0",
|
|
143
|
-
"@stdlib/math-base-special-identityf": "^0.1.0",
|
|
144
|
-
"@stdlib/math-base-special-pow": "^0.1.0",
|
|
145
|
-
"@stdlib/math-base-special-round": "^0.1.0",
|
|
146
|
-
"@stdlib/ndarray-base-bytes-per-element": "^0.1.0",
|
|
147
|
-
"@stdlib/ndarray-base-char2dtype": "^0.1.0",
|
|
148
|
-
"@stdlib/ndarray-base-dtype-char": "^0.1.0",
|
|
149
|
-
"@stdlib/ndarray-base-dtype-desc": "^0.1.0",
|
|
150
|
-
"@stdlib/ndarray-base-dtype2c": "^0.1.0",
|
|
151
|
-
"@stdlib/ndarray-base-dtypes2signatures": "^0.1.0",
|
|
152
|
-
"@stdlib/ndarray-promotion-rules": "^0.1.0",
|
|
153
|
-
"@stdlib/ndarray-safe-casts": "^0.1.0",
|
|
154
|
-
"@stdlib/random-base-bernoulli": "^0.0.6",
|
|
155
|
-
"@stdlib/random-base-discrete-uniform": "^0.0.6",
|
|
156
|
-
"@stdlib/random-base-randu": "^0.0.8",
|
|
157
|
-
"@stdlib/random-base-uniform": "^0.0.6",
|
|
158
|
-
"@stdlib/strided-dtypes": "^0.1.0",
|
|
159
|
-
"@stdlib/string-format": "^0.1.0",
|
|
160
|
-
"@stdlib/string-replace": "^0.1.0",
|
|
161
|
-
"@stdlib/string-substring-after": "^0.1.0",
|
|
162
|
-
"@stdlib/string-substring-before": "^0.1.0",
|
|
163
|
-
"@stdlib/string-uppercase": "^0.1.0",
|
|
164
|
-
"@stdlib/time-current-year": "^0.1.0",
|
|
165
|
-
"@stdlib/utils-constant-function": "^0.1.0",
|
|
166
|
-
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.1.0",
|
|
167
|
-
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.0",
|
|
168
|
-
"@stdlib/utils-keys": "^0.1.0",
|
|
169
|
-
"@stdlib/utils-noop": "^0.1.0",
|
|
170
|
-
"@stdlib/utils-object-inverse": "^0.1.0",
|
|
171
|
-
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
172
|
-
"istanbul": "^0.4.1",
|
|
173
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git"
|
|
33
|
+
"@stdlib/strided-base-binary": "^0.2.1",
|
|
34
|
+
"@stdlib/strided-base-binary-addon-dispatch": "^0.2.1",
|
|
35
|
+
"@stdlib/strided-base-binary-dtype-signatures": "^0.2.1",
|
|
36
|
+
"@stdlib/strided-base-binary-signature-callbacks": "^0.2.1",
|
|
37
|
+
"@stdlib/strided-base-cmap": "^0.2.1",
|
|
38
|
+
"@stdlib/strided-base-dmap": "^0.2.1",
|
|
39
|
+
"@stdlib/strided-base-dmap2": "^0.2.1",
|
|
40
|
+
"@stdlib/strided-base-dmskmap": "^0.2.1",
|
|
41
|
+
"@stdlib/strided-base-dmskmap2": "^0.2.1",
|
|
42
|
+
"@stdlib/strided-base-dtype-enum2str": "^0.2.1",
|
|
43
|
+
"@stdlib/strided-base-dtype-resolve-enum": "^0.2.1",
|
|
44
|
+
"@stdlib/strided-base-dtype-resolve-str": "^0.2.1",
|
|
45
|
+
"@stdlib/strided-base-dtype-str2enum": "^0.2.1",
|
|
46
|
+
"@stdlib/strided-base-map-by": "^0.2.1",
|
|
47
|
+
"@stdlib/strided-base-map-by2": "^0.2.1",
|
|
48
|
+
"@stdlib/strided-base-max-view-buffer-index": "^0.2.1",
|
|
49
|
+
"@stdlib/strided-base-meta-data-props": "^0.2.1",
|
|
50
|
+
"@stdlib/strided-base-min-view-buffer-index": "^0.2.1",
|
|
51
|
+
"@stdlib/strided-base-mskunary": "^0.2.1",
|
|
52
|
+
"@stdlib/strided-base-mskunary-addon-dispatch": "^0.2.1",
|
|
53
|
+
"@stdlib/strided-base-mskunary-dtype-signatures": "^0.2.1",
|
|
54
|
+
"@stdlib/strided-base-mskunary-signature-callbacks": "^0.2.1",
|
|
55
|
+
"@stdlib/strided-base-nullary": "^0.2.1",
|
|
56
|
+
"@stdlib/strided-base-nullary-addon-dispatch": "^0.2.1",
|
|
57
|
+
"@stdlib/strided-base-offset-view": "^0.2.1",
|
|
58
|
+
"@stdlib/strided-base-quaternary": "^0.2.1",
|
|
59
|
+
"@stdlib/strided-base-quinary": "^0.2.1",
|
|
60
|
+
"@stdlib/strided-base-reinterpret-complex": "^0.1.1",
|
|
61
|
+
"@stdlib/strided-base-reinterpret-complex128": "^0.2.1",
|
|
62
|
+
"@stdlib/strided-base-reinterpret-complex64": "^0.2.0",
|
|
63
|
+
"@stdlib/strided-base-smap": "^0.2.1",
|
|
64
|
+
"@stdlib/strided-base-smap2": "^0.2.1",
|
|
65
|
+
"@stdlib/strided-base-smskmap": "^0.2.1",
|
|
66
|
+
"@stdlib/strided-base-smskmap2": "^0.2.1",
|
|
67
|
+
"@stdlib/strided-base-ternary": "^0.2.1",
|
|
68
|
+
"@stdlib/strided-base-unary": "^0.2.1",
|
|
69
|
+
"@stdlib/strided-base-unary-addon-dispatch": "^0.2.1",
|
|
70
|
+
"@stdlib/strided-base-unary-by": "^0.2.1",
|
|
71
|
+
"@stdlib/strided-base-unary-dtype-signatures": "^0.2.1",
|
|
72
|
+
"@stdlib/strided-base-unary-signature-callbacks": "^0.2.1",
|
|
73
|
+
"@stdlib/strided-base-zmap": "^0.2.1",
|
|
74
|
+
"@stdlib/utils-define-read-only-property": "^0.2.1"
|
|
174
75
|
},
|
|
76
|
+
"devDependencies": {},
|
|
175
77
|
"engines": {
|
|
176
78
|
"node": ">=0.10.0",
|
|
177
79
|
"npm": ">2.7.0"
|
package/CITATION.cff
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
cff-version: 1.2.0
|
|
2
|
-
title: stdlib
|
|
3
|
-
message: >-
|
|
4
|
-
If you use this software, please cite it using the
|
|
5
|
-
metadata from this file.
|
|
6
|
-
|
|
7
|
-
type: software
|
|
8
|
-
|
|
9
|
-
authors:
|
|
10
|
-
- name: The Stdlib Authors
|
|
11
|
-
url: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
12
|
-
|
|
13
|
-
repository-code: https://github.com/stdlib-js/stdlib
|
|
14
|
-
url: https://stdlib.io
|
|
15
|
-
|
|
16
|
-
abstract: |
|
|
17
|
-
Standard library for JavaScript and Node.js.
|
|
18
|
-
|
|
19
|
-
keywords:
|
|
20
|
-
- JavaScript
|
|
21
|
-
- Node.js
|
|
22
|
-
- TypeScript
|
|
23
|
-
- standard library
|
|
24
|
-
- scientific computing
|
|
25
|
-
- numerical computing
|
|
26
|
-
- statistical computing
|
|
27
|
-
|
|
28
|
-
license: Apache-2.0 AND BSL-1.0
|
|
29
|
-
|
|
30
|
-
date-released: 2016
|