@stdlib/strided-base 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 +11 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/docs/types/index.d.ts +69 -14
- package/lib/index.js +18 -0
- package/package.json +48 -151
package/README.md
CHANGED
|
@@ -95,12 +95,15 @@ 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">[`reinterpretBoolean( x, offset )`][@stdlib/strided/base/reinterpret-boolean]</span><span class="delimiter">: </span><span class="description">reinterpret a `BooleanArray` as a `Uint8Array`.</span>
|
|
99
|
+
- <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
100
|
- <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
101
|
- <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
102
|
- <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>
|
|
101
103
|
- <span class="signature">[`smap2( N, x, strideX, y, strideY, z, strideZ, fcn )`][@stdlib/strided/base/smap2]</span><span class="delimiter">: </span><span class="description">apply a binary function to single-precision floating-point strided input arrays and assign results to a single-precision floating-point strided output array.</span>
|
|
102
104
|
- <span class="signature">[`smskmap( N, x, strideX, mask, strideMask, y, strideY, fcn )`][@stdlib/strided/base/smskmap]</span><span class="delimiter">: </span><span class="description">apply a unary function to a single-precision floating-point strided input array according to a strided mask array and assign results to a single-precision floating-point strided output array.</span>
|
|
103
105
|
- <span class="signature">[`smskmap2( N, x, strideX, y, strideY, mask, strideMask, z, strideZ, fcn )`][@stdlib/strided/base/smskmap2]</span><span class="delimiter">: </span><span class="description">apply a binary function to single-precision floating-point strided input arrays according to a strided mask array and assign results to a single-precision floating-point strided output array.</span>
|
|
106
|
+
- <span class="signature">[`stride2offset( N, stride )`][@stdlib/strided/base/stride2offset]</span><span class="delimiter">: </span><span class="description">determine the index offset which specifies the location of the first indexed value in a strided array.</span>
|
|
104
107
|
- <span class="signature">[`ternary( arrays, shape, strides, fcn )`][@stdlib/strided/base/ternary]</span><span class="delimiter">: </span><span class="description">apply a ternary callback to strided input array elements and assign results to elements in a strided output array.</span>
|
|
105
108
|
- <span class="signature">[`unaryAddonDispatch( addon, fallback )`][@stdlib/strided/base/unary-addon-dispatch]</span><span class="delimiter">: </span><span class="description">dispatch to a native add-on applying a unary function to an input strided array.</span>
|
|
106
109
|
- <span class="signature">[`unaryBy( arrays, shape, strides, fcn, clbk[, thisArg] )`][@stdlib/strided/base/unary-by]</span><span class="delimiter">: </span><span class="description">apply a unary function to each element retrieved from a strided input array according to a callback function and assign results to a strided output array.</span>
|
|
@@ -183,8 +186,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
183
186
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/strided-base.svg
|
|
184
187
|
[npm-url]: https://npmjs.org/package/@stdlib/strided-base
|
|
185
188
|
|
|
186
|
-
[test-image]: https://github.com/stdlib-js/strided-base/actions/workflows/test.yml/badge.svg?branch=v0.
|
|
187
|
-
[test-url]: https://github.com/stdlib-js/strided-base/actions/workflows/test.yml?query=branch:v0.
|
|
189
|
+
[test-image]: https://github.com/stdlib-js/strided-base/actions/workflows/test.yml/badge.svg?branch=v0.3.0
|
|
190
|
+
[test-url]: https://github.com/stdlib-js/strided-base/actions/workflows/test.yml?query=branch:v0.3.0
|
|
188
191
|
|
|
189
192
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/strided-base/main.svg
|
|
190
193
|
[coverage-url]: https://codecov.io/github/stdlib-js/strided-base?branch=main
|
|
@@ -272,6 +275,10 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
272
275
|
|
|
273
276
|
[@stdlib/strided/base/quinary]: https://www.npmjs.com/package/@stdlib/strided-base-quinary
|
|
274
277
|
|
|
278
|
+
[@stdlib/strided/base/reinterpret-boolean]: https://www.npmjs.com/package/@stdlib/strided-base-reinterpret-boolean
|
|
279
|
+
|
|
280
|
+
[@stdlib/strided/base/reinterpret-complex]: https://www.npmjs.com/package/@stdlib/strided-base-reinterpret-complex
|
|
281
|
+
|
|
275
282
|
[@stdlib/strided/base/reinterpret-complex128]: https://www.npmjs.com/package/@stdlib/strided-base-reinterpret-complex128
|
|
276
283
|
|
|
277
284
|
[@stdlib/strided/base/reinterpret-complex64]: https://www.npmjs.com/package/@stdlib/strided-base-reinterpret-complex64
|
|
@@ -284,6 +291,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
284
291
|
|
|
285
292
|
[@stdlib/strided/base/smskmap2]: https://www.npmjs.com/package/@stdlib/strided-base-smskmap2
|
|
286
293
|
|
|
294
|
+
[@stdlib/strided/base/stride2offset]: https://www.npmjs.com/package/@stdlib/strided-base-stride2offset
|
|
295
|
+
|
|
287
296
|
[@stdlib/strided/base/ternary]: https://www.npmjs.com/package/@stdlib/strided-base-ternary
|
|
288
297
|
|
|
289
298
|
[@stdlib/strided/base/unary-addon-dispatch]: https://www.npmjs.com/package/@stdlib/strided-base-unary-addon-dispatch
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var r=require('@stdlib/utils-define-read-only-property/dist'),e={};r(e,"binary",require('@stdlib/strided-base-binary/dist'));r(e,"binaryAddonDispatch",require('@stdlib/strided-base-binary-addon-dispatch/dist'));r(e,"binaryDtypeSignatures",require('@stdlib/strided-base-binary-dtype-signatures/dist'));r(e,"binarySignatureCallbacks",require('@stdlib/strided-base-binary-signature-callbacks/dist'));r(e,"cmap",require('@stdlib/strided-base-cmap/dist'));r(e,"dmap",require('@stdlib/strided-base-dmap/dist'));r(e,"dmap2",require('@stdlib/strided-base-dmap2/dist'));r(e,"dmskmap",require('@stdlib/strided-base-dmskmap/dist'));r(e,"dmskmap2",require('@stdlib/strided-base-dmskmap2/dist'));r(e,"dtypeEnum2Str",require('@stdlib/strided-base-dtype-enum2str/dist'));r(e,"dtypeResolveEnum",require('@stdlib/strided-base-dtype-resolve-enum/dist'));r(e,"dtypeResolveStr",require('@stdlib/strided-base-dtype-resolve-str/dist'));r(e,"dtypeStr2Enum",require('@stdlib/strided-base-dtype-str2enum/dist'));r(e,"mapBy",require('@stdlib/strided-base-map-by/dist'));r(e,"mapBy2",require('@stdlib/strided-base-map-by2/dist'));r(e,"maxViewBufferIndex",require('@stdlib/strided-base-max-view-buffer-index/dist'));r(e,"metaDataProps",require('@stdlib/strided-base-meta-data-props/dist'));r(e,"minViewBufferIndex",require('@stdlib/strided-base-min-view-buffer-index/dist'));r(e,"mskunary",require('@stdlib/strided-base-mskunary/dist'));r(e,"mskunaryAddonDispatch",require('@stdlib/strided-base-mskunary-addon-dispatch/dist'));r(e,"mskunaryDtypeSignatures",require('@stdlib/strided-base-mskunary-dtype-signatures/dist'));r(e,"mskunarySignatureCallbacks",require('@stdlib/strided-base-mskunary-signature-callbacks/dist'));r(e,"nullary",require('@stdlib/strided-base-nullary/dist'));r(e,"nullaryAddonDispatch",require('@stdlib/strided-base-nullary-addon-dispatch/dist'));r(e,"offsetView",require('@stdlib/strided-base-offset-view/dist'));r(e,"quaternary",require('@stdlib/strided-base-quaternary/dist'));r(e,"quinary",require('@stdlib/strided-base-quinary/dist'));r(e,"reinterpretBoolean",require('@stdlib/strided-base-reinterpret-boolean/dist'));r(e,"reinterpretComplex",require('@stdlib/strided-base-reinterpret-complex/dist'));r(e,"reinterpretComplex64",require('@stdlib/strided-base-reinterpret-complex64/dist'));r(e,"reinterpretComplex128",require('@stdlib/strided-base-reinterpret-complex128/dist'));r(e,"smap",require('@stdlib/strided-base-smap/dist'));r(e,"smap2",require('@stdlib/strided-base-smap2/dist'));r(e,"smskmap",require('@stdlib/strided-base-smskmap/dist'));r(e,"smskmap2",require('@stdlib/strided-base-smskmap2/dist'));r(e,"stride2offset",require('@stdlib/strided-base-stride2offset/dist'));r(e,"ternary",require('@stdlib/strided-base-ternary/dist'));r(e,"unary",require('@stdlib/strided-base-unary/dist'));r(e,"unaryAddonDispatch",require('@stdlib/strided-base-unary-addon-dispatch/dist'));r(e,"unaryBy",require('@stdlib/strided-base-unary-by/dist'));r(e,"unaryDtypeSignatures",require('@stdlib/strided-base-unary-dtype-signatures/dist'));r(e,"unarySignatureCallbacks",require('@stdlib/strided-base-unary-signature-callbacks/dist'));r(e,"zmap",require('@stdlib/strided-base-zmap/dist'));module.exports=e;
|
|
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 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",
|
|
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 reinterpretBoolean\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/reinterpret-boolean}\n*/\nsetReadOnly( ns, 'reinterpretBoolean', require( '@stdlib/strided-base-reinterpret-boolean' ) );\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 stride2offset\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/strided/base/stride2offset}\n*/\nsetReadOnly( ns, 'stride2offset', require( '@stdlib/strided-base-stride2offset' ) );\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,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,gBAAiB,QAAS,oCAAqC,CAAE,EASlFD,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
|
@@ -47,12 +47,15 @@ import nullaryAddonDispatch = require( '@stdlib/strided-base-nullary-addon-dispa
|
|
|
47
47
|
import offsetView = require( '@stdlib/strided-base-offset-view' );
|
|
48
48
|
import quaternary = require( '@stdlib/strided-base-quaternary' );
|
|
49
49
|
import quinary = require( '@stdlib/strided-base-quinary' );
|
|
50
|
+
import reinterpretBoolean = require( '@stdlib/strided-base-reinterpret-boolean' );
|
|
51
|
+
import reinterpretComplex = require( '@stdlib/strided-base-reinterpret-complex' );
|
|
50
52
|
import reinterpretComplex64 = require( '@stdlib/strided-base-reinterpret-complex64' );
|
|
51
53
|
import reinterpretComplex128 = require( '@stdlib/strided-base-reinterpret-complex128' );
|
|
52
54
|
import smap = require( '@stdlib/strided-base-smap' );
|
|
53
55
|
import smap2 = require( '@stdlib/strided-base-smap2' );
|
|
54
56
|
import smskmap = require( '@stdlib/strided-base-smskmap' );
|
|
55
57
|
import smskmap2 = require( '@stdlib/strided-base-smskmap2' );
|
|
58
|
+
import stride2offset = require( '@stdlib/strided-base-stride2offset' );
|
|
56
59
|
import ternary = require( '@stdlib/strided-base-ternary' );
|
|
57
60
|
import unary = require( '@stdlib/strided-base-unary' );
|
|
58
61
|
import unaryAddonDispatch = require( '@stdlib/strided-base-unary-addon-dispatch' );
|
|
@@ -208,8 +211,8 @@ interface Namespace {
|
|
|
208
211
|
* @example
|
|
209
212
|
* var signatures = require( '@stdlib/strided-base-binary-dtype-signatures' );
|
|
210
213
|
* var add = require( '@stdlib/math-base-ops-add' );
|
|
211
|
-
* var cadd = require( '@stdlib/
|
|
212
|
-
* var caddf = require( '@stdlib/
|
|
214
|
+
* var cadd = require( '@stdlib/complex-float64-base-add' );
|
|
215
|
+
* var caddf = require( '@stdlib/complex-float32-base-add' );
|
|
213
216
|
*
|
|
214
217
|
* var dtypes = [
|
|
215
218
|
* 'float64',
|
|
@@ -245,9 +248,9 @@ interface Namespace {
|
|
|
245
248
|
*
|
|
246
249
|
* @example
|
|
247
250
|
* var Complex64Array = require( '@stdlib/array-complex64' );
|
|
248
|
-
* var real = require( '@stdlib/complex-real' );
|
|
249
|
-
* var imag = require( '@stdlib/complex-imag' );
|
|
250
|
-
* var Complex64 = require( '@stdlib/complex-float32' );
|
|
251
|
+
* var real = require( '@stdlib/complex-float64-real' );
|
|
252
|
+
* var imag = require( '@stdlib/complex-float64-imag' );
|
|
253
|
+
* var Complex64 = require( '@stdlib/complex-float32-ctor' );
|
|
251
254
|
*
|
|
252
255
|
* function scale( x ) {
|
|
253
256
|
* var re = real( x );
|
|
@@ -271,9 +274,9 @@ interface Namespace {
|
|
|
271
274
|
*
|
|
272
275
|
* @example
|
|
273
276
|
* var Complex64Array = require( '@stdlib/array-complex64' );
|
|
274
|
-
* var real = require( '@stdlib/complex-real' );
|
|
275
|
-
* var imag = require( '@stdlib/complex-imag' );
|
|
276
|
-
* var Complex64 = require( '@stdlib/complex-float32' );
|
|
277
|
+
* var real = require( '@stdlib/complex-float64-real' );
|
|
278
|
+
* var imag = require( '@stdlib/complex-float64-imag' );
|
|
279
|
+
* var Complex64 = require( '@stdlib/complex-float32-ctor' );
|
|
277
280
|
*
|
|
278
281
|
* function scale( x ) {
|
|
279
282
|
* var re = real( x );
|
|
@@ -1047,6 +1050,45 @@ interface Namespace {
|
|
|
1047
1050
|
*/
|
|
1048
1051
|
quinary: typeof quinary;
|
|
1049
1052
|
|
|
1053
|
+
/**
|
|
1054
|
+
* Reinterprets a `BooleanArray` as a `Uint8Array`.
|
|
1055
|
+
*
|
|
1056
|
+
* @param x - input array
|
|
1057
|
+
* @param offset - starting index
|
|
1058
|
+
* @returns `Uint8Array` view
|
|
1059
|
+
*
|
|
1060
|
+
* @example
|
|
1061
|
+
* var BooleanArray = require( '@stdlib/array-bool' );
|
|
1062
|
+
*
|
|
1063
|
+
* var x = new BooleanArray( 10 );
|
|
1064
|
+
*
|
|
1065
|
+
* var out = ns.reinterpretBoolean( x, 0 );
|
|
1066
|
+
* // returns <Uint8Array>
|
|
1067
|
+
*
|
|
1068
|
+
* var bool = ( out.buffer === x.buffer );
|
|
1069
|
+
* // returns true
|
|
1070
|
+
*/
|
|
1071
|
+
reinterpretBoolean: typeof reinterpretBoolean;
|
|
1072
|
+
|
|
1073
|
+
/**
|
|
1074
|
+
* Reinterprets a `Complex128Array` as a `Float64Array`.
|
|
1075
|
+
*
|
|
1076
|
+
* @param x - input array
|
|
1077
|
+
* @param offset - starting index
|
|
1078
|
+
* @returns `Float64Array` view
|
|
1079
|
+
*
|
|
1080
|
+
* @example
|
|
1081
|
+
* var Complex128Array = require( '@stdlib/array-complex128' );
|
|
1082
|
+
*
|
|
1083
|
+
* var x = new Complex128Array( 10 );
|
|
1084
|
+
*
|
|
1085
|
+
* var out = ns.reinterpretComplex( x, 0 );
|
|
1086
|
+
* // returns <Float64Array>
|
|
1087
|
+
*
|
|
1088
|
+
* var bool = ( out.buffer === x.buffer );
|
|
1089
|
+
*/
|
|
1090
|
+
reinterpretComplex: typeof reinterpretComplex;
|
|
1091
|
+
|
|
1050
1092
|
/**
|
|
1051
1093
|
* Reinterprets a `Complex64Array` as a `Float32Array`.
|
|
1052
1094
|
*
|
|
@@ -1249,6 +1291,19 @@ interface Namespace {
|
|
|
1249
1291
|
*/
|
|
1250
1292
|
smskmap2: typeof smskmap2;
|
|
1251
1293
|
|
|
1294
|
+
/**
|
|
1295
|
+
* Returns the index offset which specifies the location of the first indexed value in a strided array.
|
|
1296
|
+
*
|
|
1297
|
+
* @param N - number of indexed elements
|
|
1298
|
+
* @param stride - index increment
|
|
1299
|
+
* @returns offset
|
|
1300
|
+
*
|
|
1301
|
+
* @example
|
|
1302
|
+
* var offset = ns.stride2offset( 10, -10 );
|
|
1303
|
+
* // returns 90
|
|
1304
|
+
*/
|
|
1305
|
+
stride2offset: typeof stride2offset;
|
|
1306
|
+
|
|
1252
1307
|
/**
|
|
1253
1308
|
* Applies a ternary callback to strided input array elements and assigns results to elements in a strided output array.
|
|
1254
1309
|
*
|
|
@@ -1516,9 +1571,9 @@ interface Namespace {
|
|
|
1516
1571
|
*
|
|
1517
1572
|
* @example
|
|
1518
1573
|
* var Complex128Array = require( '@stdlib/array-complex128' );
|
|
1519
|
-
* var real = require( '@stdlib/complex-real' );
|
|
1520
|
-
* var imag = require( '@stdlib/complex-imag' );
|
|
1521
|
-
* var Complex128 = require( '@stdlib/complex-float64' );
|
|
1574
|
+
* var real = require( '@stdlib/complex-float64-real' );
|
|
1575
|
+
* var imag = require( '@stdlib/complex-float64-imag' );
|
|
1576
|
+
* var Complex128 = require( '@stdlib/complex-float64-ctor' );
|
|
1522
1577
|
*
|
|
1523
1578
|
* function scale( x ) {
|
|
1524
1579
|
* var re = real( x );
|
|
@@ -1542,9 +1597,9 @@ interface Namespace {
|
|
|
1542
1597
|
*
|
|
1543
1598
|
* @example
|
|
1544
1599
|
* var Complex128Array = require( '@stdlib/array-complex128' );
|
|
1545
|
-
* var real = require( '@stdlib/complex-real' );
|
|
1546
|
-
* var imag = require( '@stdlib/complex-imag' );
|
|
1547
|
-
* var Complex128 = require( '@stdlib/complex-float64' );
|
|
1600
|
+
* var real = require( '@stdlib/complex-float64-real' );
|
|
1601
|
+
* var imag = require( '@stdlib/complex-float64-imag' );
|
|
1602
|
+
* var Complex128 = require( '@stdlib/complex-float64-ctor' );
|
|
1548
1603
|
*
|
|
1549
1604
|
* function scale( x ) {
|
|
1550
1605
|
* 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 reinterpretBoolean
|
|
288
|
+
* @memberof ns
|
|
289
|
+
* @readonly
|
|
290
|
+
* @type {Function}
|
|
291
|
+
* @see {@link module:@stdlib/strided/base/reinterpret-boolean}
|
|
292
|
+
*/
|
|
293
|
+
setReadOnly( ns, 'reinterpretBoolean', require( '@stdlib/strided-base-reinterpret-boolean' ) );
|
|
294
|
+
|
|
286
295
|
/**
|
|
287
296
|
* @name reinterpretComplex
|
|
288
297
|
* @memberof ns
|
|
@@ -346,6 +355,15 @@ setReadOnly( ns, 'smskmap', require( '@stdlib/strided-base-smskmap' ) );
|
|
|
346
355
|
*/
|
|
347
356
|
setReadOnly( ns, 'smskmap2', require( '@stdlib/strided-base-smskmap2' ) );
|
|
348
357
|
|
|
358
|
+
/**
|
|
359
|
+
* @name stride2offset
|
|
360
|
+
* @memberof ns
|
|
361
|
+
* @readonly
|
|
362
|
+
* @type {Function}
|
|
363
|
+
* @see {@link module:@stdlib/strided/base/stride2offset}
|
|
364
|
+
*/
|
|
365
|
+
setReadOnly( ns, 'stride2offset', require( '@stdlib/strided-base-stride2offset' ) );
|
|
366
|
+
|
|
349
367
|
/**
|
|
350
368
|
* @name ternary
|
|
351
369
|
* @memberof ns
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/strided-base",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
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,149 +30,52 @@
|
|
|
36
30
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
37
31
|
},
|
|
38
32
|
"dependencies": {
|
|
39
|
-
"@stdlib/strided-base-binary": "^0.2.
|
|
40
|
-
"@stdlib/strided-base-binary-addon-dispatch": "^0.
|
|
41
|
-
"@stdlib/strided-base-binary-dtype-signatures": "^0.2.
|
|
42
|
-
"@stdlib/strided-base-binary-signature-callbacks": "^0.2.
|
|
43
|
-
"@stdlib/strided-base-cmap": "^0.2.
|
|
44
|
-
"@stdlib/strided-base-dmap": "^0.2.
|
|
45
|
-
"@stdlib/strided-base-dmap2": "^0.2.
|
|
46
|
-
"@stdlib/strided-base-dmskmap": "^0.2.
|
|
47
|
-
"@stdlib/strided-base-dmskmap2": "^0.2.
|
|
48
|
-
"@stdlib/strided-base-dtype-enum2str": "^0.2.
|
|
49
|
-
"@stdlib/strided-base-dtype-resolve-enum": "^0.2.
|
|
50
|
-
"@stdlib/strided-base-dtype-resolve-str": "^0.2.
|
|
51
|
-
"@stdlib/strided-base-dtype-str2enum": "^0.2.
|
|
52
|
-
"@stdlib/strided-base-map-by": "^0.2.
|
|
53
|
-
"@stdlib/strided-base-map-by2": "^0.2.
|
|
54
|
-
"@stdlib/strided-base-max-view-buffer-index": "^0.2.
|
|
55
|
-
"@stdlib/strided-base-meta-data-props": "^0.2.
|
|
56
|
-
"@stdlib/strided-base-min-view-buffer-index": "^0.2.
|
|
57
|
-
"@stdlib/strided-base-mskunary": "^0.2.
|
|
58
|
-
"@stdlib/strided-base-mskunary-addon-dispatch": "^0.
|
|
59
|
-
"@stdlib/strided-base-mskunary-dtype-signatures": "^0.2.
|
|
60
|
-
"@stdlib/strided-base-mskunary-signature-callbacks": "^0.2.
|
|
61
|
-
"@stdlib/strided-base-nullary": "^0.2.
|
|
62
|
-
"@stdlib/strided-base-nullary-addon-dispatch": "^0.
|
|
63
|
-
"@stdlib/strided-base-offset-view": "^0.2.
|
|
64
|
-
"@stdlib/strided-base-quaternary": "^0.2.
|
|
65
|
-
"@stdlib/strided-base-quinary": "^0.2.
|
|
66
|
-
"@stdlib/strided-base-reinterpret-
|
|
67
|
-
"@stdlib/strided-base-reinterpret-
|
|
68
|
-
"@stdlib/strided-base-reinterpret-
|
|
69
|
-
"@stdlib/strided-base-
|
|
70
|
-
"@stdlib/strided-base-
|
|
71
|
-
"@stdlib/strided-base-
|
|
72
|
-
"@stdlib/strided-base-
|
|
73
|
-
"@stdlib/strided-base-
|
|
74
|
-
"@stdlib/strided-base-
|
|
75
|
-
"@stdlib/strided-base-
|
|
76
|
-
"@stdlib/strided-base-unary
|
|
77
|
-
"@stdlib/strided-base-unary-
|
|
78
|
-
"@stdlib/strided-base-unary-
|
|
79
|
-
"@stdlib/strided-base-
|
|
80
|
-
"@stdlib/
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
"@stdlib/array-base-accessor-getter": "^0.2.0",
|
|
84
|
-
"@stdlib/array-base-accessor-setter": "^0.2.0",
|
|
85
|
-
"@stdlib/array-base-assert-is-accessor-array": "^0.2.0",
|
|
86
|
-
"@stdlib/array-base-assert-is-complex128array": "^0.2.0",
|
|
87
|
-
"@stdlib/array-base-assert-is-complex64array": "^0.2.0",
|
|
88
|
-
"@stdlib/array-base-getter": "^0.2.0",
|
|
89
|
-
"@stdlib/array-base-setter": "^0.2.0",
|
|
90
|
-
"@stdlib/array-buffer": "^0.2.0",
|
|
91
|
-
"@stdlib/array-complex128": "^0.1.0",
|
|
92
|
-
"@stdlib/array-complex64": "^0.1.0",
|
|
93
|
-
"@stdlib/array-dtype": "^0.1.0",
|
|
94
|
-
"@stdlib/array-filled": "^0.1.0",
|
|
95
|
-
"@stdlib/array-filled-by": "^0.1.0",
|
|
96
|
-
"@stdlib/array-float32": "^0.2.0",
|
|
97
|
-
"@stdlib/array-float64": "^0.2.0",
|
|
98
|
-
"@stdlib/array-uint8": "^0.2.0",
|
|
99
|
-
"@stdlib/assert-has-own-property": "^0.2.0",
|
|
100
|
-
"@stdlib/assert-is-array": "^0.2.0",
|
|
101
|
-
"@stdlib/assert-is-browser": "^0.2.0",
|
|
102
|
-
"@stdlib/assert-is-complex128": "^0.2.0",
|
|
103
|
-
"@stdlib/assert-is-complex64": "^0.2.0",
|
|
104
|
-
"@stdlib/assert-is-complex64array": "^0.1.0",
|
|
105
|
-
"@stdlib/assert-is-float32array": "^0.2.0",
|
|
106
|
-
"@stdlib/assert-is-float64array": "^0.2.0",
|
|
107
|
-
"@stdlib/assert-is-function": "^0.2.0",
|
|
108
|
-
"@stdlib/assert-is-function-array": "^0.2.0",
|
|
109
|
-
"@stdlib/assert-is-integer": "^0.2.0",
|
|
110
|
-
"@stdlib/assert-is-integer-array": "^0.2.0",
|
|
111
|
-
"@stdlib/assert-is-nonnegative-integer": "^0.2.0",
|
|
112
|
-
"@stdlib/assert-is-string": "^0.2.0",
|
|
113
|
-
"@stdlib/assert-is-string-array": "^0.2.0",
|
|
114
|
-
"@stdlib/assert-is-typed-array": "^0.2.0",
|
|
115
|
-
"@stdlib/assert-is-typed-array-like": "^0.2.0",
|
|
116
|
-
"@stdlib/assert-is-uint8array": "^0.2.0",
|
|
117
|
-
"@stdlib/complex-base-cast-return": "^0.2.0",
|
|
118
|
-
"@stdlib/complex-base-wrap-function": "^0.2.0",
|
|
119
|
-
"@stdlib/complex-float32": "^0.2.0",
|
|
120
|
-
"@stdlib/complex-float64": "^0.2.0",
|
|
121
|
-
"@stdlib/complex-imag": "^0.2.0",
|
|
122
|
-
"@stdlib/complex-imagf": "^0.2.0",
|
|
123
|
-
"@stdlib/complex-real": "^0.2.0",
|
|
124
|
-
"@stdlib/complex-realf": "^0.2.0",
|
|
125
|
-
"@stdlib/fs-read-dir": "^0.2.0",
|
|
126
|
-
"@stdlib/fs-read-file": "^0.2.0",
|
|
127
|
-
"@stdlib/fs-read-json": "^0.2.0",
|
|
128
|
-
"@stdlib/fs-unlink": "^0.2.0",
|
|
129
|
-
"@stdlib/fs-write-file": "^0.2.0",
|
|
130
|
-
"@stdlib/math-base-assert-is-nan": "^0.2.0",
|
|
131
|
-
"@stdlib/math-base-assert-is-nanf": "^0.2.0",
|
|
132
|
-
"@stdlib/math-base-ops-add": "^0.2.0",
|
|
133
|
-
"@stdlib/math-base-ops-add3": "^0.2.0",
|
|
134
|
-
"@stdlib/math-base-ops-add4": "^0.2.0",
|
|
135
|
-
"@stdlib/math-base-ops-add5": "^0.2.0",
|
|
136
|
-
"@stdlib/math-base-ops-addf": "^0.2.0",
|
|
137
|
-
"@stdlib/math-base-ops-cadd": "^0.2.0",
|
|
138
|
-
"@stdlib/math-base-ops-caddf": "^0.2.0",
|
|
139
|
-
"@stdlib/math-base-special-abs": "^0.2.0",
|
|
140
|
-
"@stdlib/math-base-special-absf": "^0.2.0",
|
|
141
|
-
"@stdlib/math-base-special-cceil": "^0.2.0",
|
|
142
|
-
"@stdlib/math-base-special-cceilf": "^0.2.0",
|
|
143
|
-
"@stdlib/math-base-special-ceil": "^0.2.0",
|
|
144
|
-
"@stdlib/math-base-special-cidentity": "^0.2.0",
|
|
145
|
-
"@stdlib/math-base-special-cidentityf": "^0.2.0",
|
|
146
|
-
"@stdlib/math-base-special-floor": "^0.2.0",
|
|
147
|
-
"@stdlib/math-base-special-identity": "^0.2.0",
|
|
148
|
-
"@stdlib/math-base-special-identityf": "^0.2.0",
|
|
149
|
-
"@stdlib/math-base-special-pow": "^0.2.0",
|
|
150
|
-
"@stdlib/math-base-special-round": "^0.2.0",
|
|
151
|
-
"@stdlib/ndarray-base-bytes-per-element": "^0.2.0",
|
|
152
|
-
"@stdlib/ndarray-base-char2dtype": "^0.2.0",
|
|
153
|
-
"@stdlib/ndarray-base-dtype-char": "^0.2.0",
|
|
154
|
-
"@stdlib/ndarray-base-dtype-desc": "^0.2.0",
|
|
155
|
-
"@stdlib/ndarray-base-dtype2c": "^0.2.0",
|
|
156
|
-
"@stdlib/ndarray-base-dtypes2signatures": "^0.2.0",
|
|
157
|
-
"@stdlib/ndarray-promotion-rules": "^0.2.0",
|
|
158
|
-
"@stdlib/ndarray-safe-casts": "^0.2.0",
|
|
159
|
-
"@stdlib/random-base-bernoulli": "^0.1.0",
|
|
160
|
-
"@stdlib/random-base-discrete-uniform": "^0.1.0",
|
|
161
|
-
"@stdlib/random-base-randu": "^0.1.0",
|
|
162
|
-
"@stdlib/random-base-uniform": "^0.1.0",
|
|
163
|
-
"@stdlib/strided-dtypes": "^0.2.0",
|
|
164
|
-
"@stdlib/string-format": "^0.2.0",
|
|
165
|
-
"@stdlib/string-replace": "^0.2.0",
|
|
166
|
-
"@stdlib/string-substring-after": "^0.2.0",
|
|
167
|
-
"@stdlib/string-substring-before": "^0.2.0",
|
|
168
|
-
"@stdlib/string-uppercase": "^0.2.0",
|
|
169
|
-
"@stdlib/time-current-year": "^0.2.0",
|
|
170
|
-
"@stdlib/utils-constant-function": "^0.2.0",
|
|
171
|
-
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.2.0",
|
|
172
|
-
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.0",
|
|
173
|
-
"@stdlib/utils-keys": "^0.2.0",
|
|
174
|
-
"@stdlib/utils-noop": "^0.2.0",
|
|
175
|
-
"@stdlib/utils-object-inverse": "^0.2.0",
|
|
176
|
-
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
177
|
-
"istanbul": "^0.4.1",
|
|
178
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
179
|
-
"@stdlib/bench-harness": "^0.2.0",
|
|
180
|
-
"@stdlib/bench": "^0.3.1"
|
|
33
|
+
"@stdlib/strided-base-binary": "^0.2.1",
|
|
34
|
+
"@stdlib/strided-base-binary-addon-dispatch": "^0.3.0",
|
|
35
|
+
"@stdlib/strided-base-binary-dtype-signatures": "^0.2.2",
|
|
36
|
+
"@stdlib/strided-base-binary-signature-callbacks": "^0.2.2",
|
|
37
|
+
"@stdlib/strided-base-cmap": "^0.2.2",
|
|
38
|
+
"@stdlib/strided-base-dmap": "^0.2.2",
|
|
39
|
+
"@stdlib/strided-base-dmap2": "^0.2.2",
|
|
40
|
+
"@stdlib/strided-base-dmskmap": "^0.2.2",
|
|
41
|
+
"@stdlib/strided-base-dmskmap2": "^0.2.2",
|
|
42
|
+
"@stdlib/strided-base-dtype-enum2str": "^0.2.2",
|
|
43
|
+
"@stdlib/strided-base-dtype-resolve-enum": "^0.2.2",
|
|
44
|
+
"@stdlib/strided-base-dtype-resolve-str": "^0.2.2",
|
|
45
|
+
"@stdlib/strided-base-dtype-str2enum": "^0.2.2",
|
|
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.2",
|
|
49
|
+
"@stdlib/strided-base-meta-data-props": "^0.2.2",
|
|
50
|
+
"@stdlib/strided-base-min-view-buffer-index": "^0.2.2",
|
|
51
|
+
"@stdlib/strided-base-mskunary": "^0.2.1",
|
|
52
|
+
"@stdlib/strided-base-mskunary-addon-dispatch": "^0.3.0",
|
|
53
|
+
"@stdlib/strided-base-mskunary-dtype-signatures": "^0.2.2",
|
|
54
|
+
"@stdlib/strided-base-mskunary-signature-callbacks": "^0.2.2",
|
|
55
|
+
"@stdlib/strided-base-nullary": "^0.2.1",
|
|
56
|
+
"@stdlib/strided-base-nullary-addon-dispatch": "^0.3.0",
|
|
57
|
+
"@stdlib/strided-base-offset-view": "^0.2.2",
|
|
58
|
+
"@stdlib/strided-base-quaternary": "^0.2.2",
|
|
59
|
+
"@stdlib/strided-base-quinary": "^0.2.2",
|
|
60
|
+
"@stdlib/strided-base-reinterpret-boolean": "^0.0.2",
|
|
61
|
+
"@stdlib/strided-base-reinterpret-complex": "^0.1.2",
|
|
62
|
+
"@stdlib/strided-base-reinterpret-complex128": "^0.2.2",
|
|
63
|
+
"@stdlib/strided-base-reinterpret-complex64": "^0.2.1",
|
|
64
|
+
"@stdlib/strided-base-smap": "^0.2.2",
|
|
65
|
+
"@stdlib/strided-base-smap2": "^0.2.2",
|
|
66
|
+
"@stdlib/strided-base-smskmap": "^0.2.2",
|
|
67
|
+
"@stdlib/strided-base-smskmap2": "^0.2.2",
|
|
68
|
+
"@stdlib/strided-base-stride2offset": "^0.1.0",
|
|
69
|
+
"@stdlib/strided-base-ternary": "^0.2.2",
|
|
70
|
+
"@stdlib/strided-base-unary": "^0.2.1",
|
|
71
|
+
"@stdlib/strided-base-unary-addon-dispatch": "^0.3.0",
|
|
72
|
+
"@stdlib/strided-base-unary-by": "^0.2.2",
|
|
73
|
+
"@stdlib/strided-base-unary-dtype-signatures": "^0.2.2",
|
|
74
|
+
"@stdlib/strided-base-unary-signature-callbacks": "^0.2.2",
|
|
75
|
+
"@stdlib/strided-base-zmap": "^0.2.2",
|
|
76
|
+
"@stdlib/utils-define-read-only-property": "^0.2.2"
|
|
181
77
|
},
|
|
78
|
+
"devDependencies": {},
|
|
182
79
|
"engines": {
|
|
183
80
|
"node": ">=0.10.0",
|
|
184
81
|
"npm": ">2.7.0"
|