Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@stdlib/strided-base-smap2

Package Overview
Dependencies
Maintainers
4
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stdlib/strided-base-smap2 - npm Package Compare versions

Comparing version
0.1.1
to
0.2.0
+5
SECURITY.md
# Security
> Policy for reporting security vulnerabilities.
See the security policy [in the main project repository](https://github.com/stdlib-js/stdlib/security).
+10
-10

@@ -48,4 +48,4 @@ /*

* @example
* var Float32Array = require( `@stdlib/array/float32` );
* var addf = require( `@stdlib/math/base/ops/addf` );
* var Float32Array = require( '@stdlib/array-float32' );
* var addf = require( '@stdlib/math-base-ops-addf' );
*

@@ -59,3 +59,3 @@ * var x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );

*/
( N: number, x: Float32Array, strideX: number, y: Float32Array, strideY: number, z: Float32Array, strideZ: number, fcn: Binary ): Float32Array; // tslint:disable-line:max-line-length
( N: number, x: Float32Array, strideX: number, y: Float32Array, strideY: number, z: Float32Array, strideZ: number, fcn: Binary ): Float32Array;

@@ -79,4 +79,4 @@ /**

* @example
* var Float32Array = require( `@stdlib/array/float32` );
* var addf = require( `@stdlib/math/base/ops/addf` );
* var Float32Array = require( '@stdlib/array-float32' );
* var addf = require( '@stdlib/math-base-ops-addf' );
*

@@ -90,3 +90,3 @@ * var x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );

*/
ndarray( N: number, x: Float32Array, strideX: number, offsetX: number, y: Float32Array, strideY: number, offsetY: number, z: Float32Array, strideZ: number, offsetZ: number, fcn: Binary ): Float32Array; // tslint:disable-line:max-line-length
ndarray( N: number, x: Float32Array, strideX: number, offsetX: number, y: Float32Array, strideY: number, offsetY: number, z: Float32Array, strideZ: number, offsetZ: number, fcn: Binary ): Float32Array;
}

@@ -108,4 +108,4 @@

* @example
* var Float32Array = require( `@stdlib/array/float32` );
* var addf = require( `@stdlib/math/base/ops/addf` );
* var Float32Array = require( '@stdlib/array-float32' );
* var addf = require( '@stdlib/math-base-ops-addf' );
*

@@ -120,4 +120,4 @@ * var x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );

* @example
* var Float32Array = require( `@stdlib/array/float32` );
* var addf = require( `@stdlib/math/base/ops/addf` );
* var Float32Array = require( '@stdlib/array-float32' );
* var addf = require( '@stdlib/math-base-ops-addf' );
*

@@ -124,0 +124,0 @@ * var x = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );

+1
-1

@@ -1,1 +0,1 @@

Copyright (c) 2016-2023 The Stdlib Authors.
Copyright (c) 2016-2024 The Stdlib Authors.
{
"name": "@stdlib/strided-base-smap2",
"version": "0.1.1",
"version": "0.2.0",
"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.",

@@ -42,10 +42,9 @@ "license": "Apache-2.0",

"dependencies": {
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.1",
"@stdlib/utils-library-manifest": "^0.1.1"
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.0",
"@stdlib/utils-library-manifest": "^0.2.0"
},
"devDependencies": {
"@stdlib/array-filled-by": "^0.1.0",
"@stdlib/array-float32": "^0.1.0",
"@stdlib/bench": "^0.1.0",
"@stdlib/math-base-assert-is-nanf": "^0.1.0",
"@stdlib/array-float32": "^0.1.1",
"@stdlib/math-base-assert-is-nanf": "^0.1.1",
"@stdlib/math-base-ops-addf": "^0.1.0",

@@ -57,3 +56,5 @@ "@stdlib/math-base-special-pow": "^0.1.0",

"istanbul": "^0.4.1",
"tap-min": "git+https://github.com/Planeshifter/tap-min.git"
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
"@stdlib/bench-harness": "^0.1.2",
"@stdlib/bench": "^0.3.1"
},

@@ -60,0 +61,0 @@ "engines": {

@@ -329,2 +329,9 @@ <!--

* * *
## See Also
- <span class="package-name">[`@stdlib/strided-base/dmap2`][@stdlib/strided/base/dmap2]</span><span class="delimiter">: </span><span class="description">apply a binary function to double-precision floating-point strided input arrays and assign results to a double-precision floating-point strided output array.</span>
- <span class="package-name">[`@stdlib/strided-base/binary`][@stdlib/strided/base/binary]</span><span class="delimiter">: </span><span class="description">apply a binary callback to elements in strided input arrays and assign results to elements in a strided output array.</span>
</section>

@@ -360,3 +367,3 @@

Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].

@@ -374,4 +381,4 @@ </section>

[test-image]: https://github.com/stdlib-js/strided-base-smap2/actions/workflows/test.yml/badge.svg?branch=v0.1.1
[test-url]: https://github.com/stdlib-js/strided-base-smap2/actions/workflows/test.yml?query=branch:v0.1.1
[test-image]: https://github.com/stdlib-js/strided-base-smap2/actions/workflows/test.yml/badge.svg?branch=v0.2.0
[test-url]: https://github.com/stdlib-js/strided-base-smap2/actions/workflows/test.yml?query=branch:v0.2.0

@@ -399,4 +406,7 @@ [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/strided-base-smap2/main.svg

[deno-url]: https://github.com/stdlib-js/strided-base-smap2/tree/deno
[deno-readme]: https://github.com/stdlib-js/strided-base-smap2/blob/deno/README.md
[umd-url]: https://github.com/stdlib-js/strided-base-smap2/tree/umd
[umd-readme]: https://github.com/stdlib-js/strided-base-smap2/blob/umd/README.md
[esm-url]: https://github.com/stdlib-js/strided-base-smap2/tree/esm
[esm-readme]: https://github.com/stdlib-js/strided-base-smap2/blob/esm/README.md
[branches-url]: https://github.com/stdlib-js/strided-base-smap2/blob/main/branches.md

@@ -408,4 +418,12 @@

<!-- <related-links> -->
[@stdlib/strided/base/dmap2]: https://www.npmjs.com/package/@stdlib/strided-base-dmap2
[@stdlib/strided/base/binary]: https://www.npmjs.com/package/@stdlib/strided-base-binary
<!-- </related-links> -->
</section>
<!-- /.links -->

Sorry, the diff of this file is not supported yet