Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Sep 11, 2023
1 parent 4cf16ee commit 5965da3
Show file tree
Hide file tree
Showing 71 changed files with 974 additions and 89 deletions.
4 changes: 2 additions & 2 deletions base/binary2d/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.

# binary2d

> Apply a binary callback to elements in two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.
> Apply a binary callback to elements in two two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.
<section class="intro">

Expand All @@ -38,7 +38,7 @@ var binary2d = require( '@stdlib/array/base/binary2d' );

#### binary2d( arrays, shape, fcn )

Applies a binary callback to elements in two-dimensional nested input arrays and assigns results to elements in a two-dimensional nested output array.
Applies a binary callback to elements in two two-dimensional nested input arrays and assigns results to elements in a two-dimensional nested output array.

```javascript
var add = require( '@stdlib/math/base/ops/add' );
Expand Down
5 changes: 3 additions & 2 deletions base/binary2d/docs/repl.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@

{{alias}}( arrays, shape, fcn )
Applies a binary callback to elements in two-dimensional nested input arrays
and assigns results to elements in a two-dimensional nested output array.
Applies a binary callback to elements in two two-dimensional nested input
arrays and assigns results to elements in a two-dimensional nested output
array.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion base/binary2d/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import { Shape2D } from '@stdlib/types/ndarray';
type Binary<T, U, V> = ( v1: T, v2: U ) => V;

/**
* Applies a binary callback to elements in two-dimensional nested input arrays and assigns results to elements in a two-dimensional nested output array.
* Applies a binary callback to elements in two two-dimensional nested input arrays and assigns results to elements in a two-dimensional nested output array.
*
* ## Notes
*
Expand Down
2 changes: 1 addition & 1 deletion base/binary2d/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'use strict';

/**
* Apply a binary callback to elements in two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.
* Apply a binary callback to elements in two two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.
*
* @module @stdlib/array/base/binary2d
*
Expand Down
2 changes: 1 addition & 1 deletion base/binary2d/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MAIN //

/**
* Applies a binary callback to elements in two-dimensional nested input arrays and assigns results to elements in a two-dimensional nested output array.
* Applies a binary callback to elements in two two-dimensional nested input arrays and assigns results to elements in a two-dimensional nested output array.
*
* ## Notes
*
Expand Down
2 changes: 1 addition & 1 deletion base/binary2d/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/array/base/binary2d",
"version": "0.0.0",
"description": "Apply a binary callback to elements in two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.",
"description": "Apply a binary callback to elements in two two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
Expand Down
2 changes: 1 addition & 1 deletion base/binary2d/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ tape( 'the function does not invoke a provided callback if provided a shape havi
z = zeros2d( shape );

expected = zeros2d( shape );
binary2d( [ x, y ], [ 2, 0 ], clbk );
binary2d( [ x, y, z ], [ 2, 0 ], clbk );

t.deepEqual( z, expected, 'returns expected value' );
t.end();
Expand Down
4 changes: 2 additions & 2 deletions base/binary3d/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.

# binary3d

> Apply a binary callback to elements in three-dimensional nested input arrays and assign results to elements in a three-dimensional nested output array.
> Apply a binary callback to elements in two three-dimensional nested input arrays and assign results to elements in a three-dimensional nested output array.
<section class="intro">

Expand All @@ -38,7 +38,7 @@ var binary3d = require( '@stdlib/array/base/binary3d' );

#### binary3d( arrays, shape, fcn )

Applies a binary callback to elements in three-dimensional nested input arrays and assigns results to elements in a three-dimensional nested output array.
Applies a binary callback to elements in two three-dimensional nested input arrays and assigns results to elements in a three-dimensional nested output array.

```javascript
var add = require( '@stdlib/math/base/ops/add' );
Expand Down
2 changes: 1 addition & 1 deletion base/binary3d/docs/repl.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

{{alias}}( arrays, shape, fcn )
Applies a binary callback to elements in three-dimensional nested input
Applies a binary callback to elements in two three-dimensional nested input
arrays and assigns results to elements in a three-dimensional nested output
array.

Expand Down
2 changes: 1 addition & 1 deletion base/binary3d/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import { Shape3D } from '@stdlib/types/ndarray';
type Binary<T, U, V> = ( v1: T, v2: U ) => V;

/**
* Applies a binary callback to elements in three-dimensional nested input arrays and assigns results to elements in a three-dimensional nested output array.
* Applies a binary callback to elements in two three-dimensional nested input arrays and assigns results to elements in a three-dimensional nested output array.
*
* ## Notes
*
Expand Down
2 changes: 1 addition & 1 deletion base/binary3d/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'use strict';

/**
* Apply a binary callback to elements in three-dimensional nested input arrays and assign results to elements in a three-dimensional nested output array.
* Apply a binary callback to elements in two three-dimensional nested input arrays and assign results to elements in a three-dimensional nested output array.
*
* @module @stdlib/array/base/binary3d
*
Expand Down
2 changes: 1 addition & 1 deletion base/binary3d/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MAIN //

/**
* Applies a binary callback to elements in three-dimensional nested input arrays and assigns results to elements in a three-dimensional nested output array.
* Applies a binary callback to elements in two three-dimensional nested input arrays and assigns results to elements in a three-dimensional nested output array.
*
* ## Notes
*
Expand Down
2 changes: 1 addition & 1 deletion base/binary3d/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/array/base/binary3d",
"version": "0.0.0",
"description": "Apply a binary callback to elements in three-dimensional nested input arrays and assign results to elements in a three-dimensional nested output array.",
"description": "Apply a binary callback to elements in two three-dimensional nested input arrays and assign results to elements in a three-dimensional nested output array.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
Expand Down
4 changes: 2 additions & 2 deletions base/binary3d/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ tape( 'the function does not invoke a provided callback if provided a shape havi
z = zeros3d( shape );

expected = zeros3d( shape );
binary3d( [ x, y ], [ 2, 0, 2 ], clbk );
binary3d( [ x, y, z ], [ 2, 0, 2 ], clbk );

t.deepEqual( z, expected, 'returns expected value' );
t.end();
Expand Down Expand Up @@ -193,7 +193,7 @@ tape( 'the function does not invoke a provided callback if provided a shape havi
z = zeros3d( shape );

expected = zeros3d( shape );
binary3d( [ x, y ], [ 2, 2, 0 ], clbk );
binary3d( [ x, y, z ], [ 2, 2, 0 ], clbk );

t.deepEqual( z, expected, 'returns expected value' );
t.end();
Expand Down
4 changes: 2 additions & 2 deletions base/binary4d/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.

# binary4d

> Apply a binary callback to elements in four-dimensional nested input arrays and assign results to elements in a four-dimensional nested output array.
> Apply a binary callback to elements in two four-dimensional nested input arrays and assign results to elements in a four-dimensional nested output array.
<section class="intro">

Expand All @@ -38,7 +38,7 @@ var binary4d = require( '@stdlib/array/base/binary4d' );

#### binary4d( arrays, shape, fcn )

Applies a binary callback to elements in four-dimensional nested input arrays and assigns results to elements in a four-dimensional nested output array.
Applies a binary callback to elements in two four-dimensional nested input arrays and assigns results to elements in a four-dimensional nested output array.

```javascript
var add = require( '@stdlib/math/base/ops/add' );
Expand Down
2 changes: 1 addition & 1 deletion base/binary4d/docs/repl.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

{{alias}}( arrays, shape, fcn )
Applies a binary callback to elements in four-dimensional nested input
Applies a binary callback to elements in two four-dimensional nested input
arrays and assigns results to elements in a four-dimensional nested output
array.

Expand Down
2 changes: 1 addition & 1 deletion base/binary4d/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import { Shape4D } from '@stdlib/types/ndarray';
type Binary<T, U, V> = ( v1: T, v2: U ) => V;

/**
* Applies a binary callback to elements in four-dimensional nested input arrays and assigns results to elements in a four-dimensional nested output array.
* Applies a binary callback to elements in two four-dimensional nested input arrays and assigns results to elements in a four-dimensional nested output array.
*
* ## Notes
*
Expand Down
2 changes: 1 addition & 1 deletion base/binary4d/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'use strict';

/**
* Apply a binary callback to elements in four-dimensional nested input arrays and assign results to elements in a four-dimensional nested output array.
* Apply a binary callback to elements in two four-dimensional nested input arrays and assign results to elements in a four-dimensional nested output array.
*
* @module @stdlib/array/base/binary4d
*
Expand Down
2 changes: 1 addition & 1 deletion base/binary4d/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MAIN //

/**
* Applies a binary callback to elements in four-dimensional nested input arrays and assigns results to elements in a four-dimensional nested output array.
* Applies a binary callback to elements in two four-dimensional nested input arrays and assigns results to elements in a four-dimensional nested output array.
*
* ## Notes
*
Expand Down
2 changes: 1 addition & 1 deletion base/binary4d/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/array/base/binary4d",
"version": "0.0.0",
"description": "Apply a binary callback to elements in four-dimensional nested input arrays and assign results to elements in a four-dimensional nested output array.",
"description": "Apply a binary callback to elements in two four-dimensional nested input arrays and assign results to elements in a four-dimensional nested output array.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
Expand Down
6 changes: 3 additions & 3 deletions base/binary4d/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ tape( 'the function does not invoke a provided callback if provided a shape havi
z = zeros4d( shape );

expected = zeros4d( shape );
binary4d( [ x, y ], [ 2, 0, 2, 2 ], clbk );
binary4d( [ x, y, z ], [ 2, 0, 2, 2 ], clbk );

t.deepEqual( z, expected, 'returns expected value' );
t.end();
Expand Down Expand Up @@ -211,7 +211,7 @@ tape( 'the function does not invoke a provided callback if provided a shape havi
z = zeros4d( shape );

expected = zeros4d( shape );
binary4d( [ x, y ], [ 2, 2, 0, 2 ], clbk );
binary4d( [ x, y, z ], [ 2, 2, 0, 2 ], clbk );

t.deepEqual( z, expected, 'returns expected value' );
t.end();
Expand Down Expand Up @@ -256,7 +256,7 @@ tape( 'the function does not invoke a provided callback if provided a shape havi
z = zeros4d( shape );

expected = zeros4d( shape );
binary4d( [ x, y ], [ 2, 2, 2, 0 ], clbk );
binary4d( [ x, y, z ], [ 2, 2, 2, 0 ], clbk );

t.deepEqual( z, expected, 'returns expected value' );
t.end();
Expand Down
4 changes: 2 additions & 2 deletions base/binary5d/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.

# binary5d

> Apply a binary callback to elements in five-dimensional nested input arrays and assign results to elements in a five-dimensional nested output array.
> Apply a binary callback to elements in two five-dimensional nested input arrays and assign results to elements in a five-dimensional nested output array.
<section class="intro">

Expand All @@ -38,7 +38,7 @@ var binary5d = require( '@stdlib/array/base/binary5d' );

#### binary5d( arrays, shape, fcn )

Applies a binary callback to elements in five-dimensional nested input arrays and assigns results to elements in a five-dimensional nested output array.
Applies a binary callback to elements in two five-dimensional nested input arrays and assigns results to elements in a five-dimensional nested output array.

```javascript
var add = require( '@stdlib/math/base/ops/add' );
Expand Down
2 changes: 1 addition & 1 deletion base/binary5d/docs/repl.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

{{alias}}( arrays, shape, fcn )
Applies a binary callback to elements in five-dimensional nested input
Applies a binary callback to elements in two five-dimensional nested input
arrays and assigns results to elements in a five-dimensional nested output
array.

Expand Down
2 changes: 1 addition & 1 deletion base/binary5d/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import { Shape5D } from '@stdlib/types/ndarray';
type Binary<T, U, V> = ( v1: T, v2: U ) => V;

/**
* Applies a binary callback to elements in five-dimensional nested input arrays and assigns results to elements in a five-dimensional nested output array.
* Applies a binary callback to elements in two five-dimensional nested input arrays and assigns results to elements in a five-dimensional nested output array.
*
* ## Notes
*
Expand Down
2 changes: 1 addition & 1 deletion base/binary5d/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'use strict';

/**
* Apply a binary callback to elements in five-dimensional nested input arrays and assign results to elements in a five-dimensional nested output array.
* Apply a binary callback to elements in two five-dimensional nested input arrays and assign results to elements in a five-dimensional nested output array.
*
* @module @stdlib/array/base/binary5d
*
Expand Down
2 changes: 1 addition & 1 deletion base/binary5d/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MAIN //

/**
* Applies a binary callback to elements in five-dimensional nested input arrays and assigns results to elements in a five-dimensional nested output array.
* Applies a binary callback to elements in two five-dimensional nested input arrays and assigns results to elements in a five-dimensional nested output array.
*
* ## Notes
*
Expand Down
2 changes: 1 addition & 1 deletion base/binary5d/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/array/base/binary5d",
"version": "0.0.0",
"description": "Apply a binary callback to elements in five-dimensional nested input arrays and assign results to elements in a five-dimensional nested output array.",
"description": "Apply a binary callback to elements in two five-dimensional nested input arrays and assign results to elements in a five-dimensional nested output array.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
Expand Down
8 changes: 4 additions & 4 deletions base/binary5d/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ tape( 'the function does not invoke a provided callback if provided a shape havi
z = zeros5d( shape );

expected = zeros5d( shape );
binary5d( [ x, y ], [ 2, 0, 2, 2, 2 ], clbk );
binary5d( [ x, y, z ], [ 2, 0, 2, 2, 2 ], clbk );

t.deepEqual( z, expected, 'returns expected value' );
t.end();
Expand Down Expand Up @@ -229,7 +229,7 @@ tape( 'the function does not invoke a provided callback if provided a shape havi
z = zeros5d( shape );

expected = zeros5d( shape );
binary5d( [ x, y ], [ 2, 2, 0, 2, 2 ], clbk );
binary5d( [ x, y, z ], [ 2, 2, 0, 2, 2 ], clbk );

t.deepEqual( z, expected, 'returns expected value' );
t.end();
Expand Down Expand Up @@ -278,7 +278,7 @@ tape( 'the function does not invoke a provided callback if provided a shape havi
z = zeros5d( shape );

expected = zeros5d( shape );
binary5d( [ x, y ], [ 2, 2, 2, 0, 2 ], clbk );
binary5d( [ x, y, z ], [ 2, 2, 2, 0, 2 ], clbk );

t.deepEqual( z, expected, 'returns expected value' );
t.end();
Expand Down Expand Up @@ -327,7 +327,7 @@ tape( 'the function does not invoke a provided callback if provided a shape havi
z = zeros5d( shape );

expected = zeros5d( shape );
binary5d( [ x, y ], [ 2, 2, 2, 2, 0 ], clbk );
binary5d( [ x, y, z ], [ 2, 2, 2, 2, 0 ], clbk );

t.deepEqual( z, expected, 'returns expected value' );
t.end();
Expand Down
4 changes: 2 additions & 2 deletions base/binarynd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.

# binarynd

> Apply a binary callback to elements in n-dimensional nested input arrays and assign results to elements in an n-dimensional nested output array.
> Apply a binary callback to elements in two n-dimensional nested input arrays and assign results to elements in an n-dimensional nested output array.
<section class="intro">

Expand All @@ -38,7 +38,7 @@ var binarynd = require( '@stdlib/array/base/binarynd' );

#### binarynd( arrays, shape, fcn )

Applies a binary callback to elements in n-dimensional nested input arrays and assigns results to elements in an n-dimensional nested output array.
Applies a binary callback to elements in two n-dimensional nested input arrays and assigns results to elements in an n-dimensional nested output array.

```javascript
var add = require( '@stdlib/math/base/ops/add' );
Expand Down
5 changes: 3 additions & 2 deletions base/binarynd/docs/repl.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@

{{alias}}( arrays, shape, fcn )
Applies a binary callback to elements in n-dimensional nested input arrays
and assigns results to elements in an n-dimensional nested output array.
Applies a binary callback to elements in two n-dimensional nested input
arrays and assigns results to elements in an n-dimensional nested output
array.

Parameters
----------
Expand Down
Loading

0 comments on commit 5965da3

Please sign in to comment.