Skip to content

Commit e5dfabf

Browse files
committed
chore: clean-up
1 parent 4f6add7 commit e5dfabf

File tree

6 files changed

+13
-19
lines changed

6 files changed

+13
-19
lines changed

lib/node_modules/@stdlib/array/base/broadcasted-quaternary3d/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# bquaternary3d
2222

23-
> Apply a quaternary callback to elements in four [broadcasted][@stdlib/array/base/broadcast-array] nested input arrays and assign results to elements in a three-dimensional nested output array.
23+
> Apply a quaternary callback to elements in four [broadcasted][@stdlib/array/base/broadcast-array] input arrays and assign results to elements in a three-dimensional nested output array.
2424
2525
<section class="intro">
2626

@@ -38,7 +38,7 @@ var bquaternary3d = require( '@stdlib/array/base/broadcasted-quaternary3d' );
3838

3939
#### bquaternary3d( arrays, shapes, fcn )
4040

41-
Applies a quaternary callback to elements in four [broadcasted][@stdlib/array/base/broadcast-array] nested input arrays and assigns results to elements in a three-dimensional nested output array.
41+
Applies a quaternary callback to elements in four [broadcasted][@stdlib/array/base/broadcast-array] input arrays and assigns results to elements in a three-dimensional nested output array.
4242

4343
```javascript
4444
var add = require( '@stdlib/math/base/ops/add4' );
@@ -64,7 +64,7 @@ bquaternary3d( [ x, y, z, w, out ], shapes, add );
6464

6565
The function accepts the following arguments:
6666

67-
- **arrays**: array-like object containing two input nested arrays and one output nested array.
67+
- **arrays**: array-like object containing four input nested arrays and one output nested array.
6868
- **shapes**: array shapes.
6969
- **fcn**: quaternary function to apply.
7070

lib/node_modules/@stdlib/array/base/broadcasted-quaternary3d/docs/repl.txt

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11

22
{{alias}}( arrays, shapes, fcn )
3-
Applies a quaternary callback to elements in four broadcasted nested
4-
input arrays and assigns results to elements in a three-dimensional
5-
nested output array.
3+
Applies a quaternary callback to elements in four broadcasted input arrays
4+
and assigns results to elements in a three-dimensional nested output array.
65

76
Parameters
87
----------
98
arrays: ArrayLikeObject
10-
Array-like object containing two input nested arrays and one output
9+
Array-like object containing four input nested arrays and one output
1110
nested array.
1211

1312
shapes: Array<Array<integer>>
1413
Array shapes.
1514

1615
fcn: Function
17-
Binary callback.
16+
Quaternary callback.
1817

1918
Examples
2019
--------

lib/node_modules/@stdlib/array/base/broadcasted-quaternary3d/docs/types/index.d.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ type InOutShapes = [
7777
];
7878

7979
/**
80-
* Applies a quaternary callback to elements in four broadcasted nested input arrays and assigns results to elements in a three-dimensional nested output array.
80+
* Applies a quaternary callback to elements in four broadcasted input arrays and assigns results to elements in a three-dimensional nested output array.
8181
*
8282
* ## Notes
8383
*
@@ -109,11 +109,7 @@ type InOutShapes = [
109109
* bquaternary3d( [ x, y, z, w, out ], shapes, add );
110110
*
111111
* console.log( out );
112-
* // => [
113-
* [ [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ] ],
114-
* [ [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ] ],
115-
* [ [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ] ]
116-
* ]
112+
* // => [ [ [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ] ], [ [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ] ], [ [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ] ] ]
117113
*/
118114
declare function bquaternary3d<T = unknown, U = unknown, V = unknown, W = unknown, X = unknown>( arrays: InOutArrays<T, U, V, W, X>, shapes: InOutShapes, fcn: Quaternary<T, U, V, W, X> ): void;
119115

lib/node_modules/@stdlib/array/base/broadcasted-quaternary3d/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Apply a quaternary callback to elements in four broadcasted nested input arrays and assign results to elements in a three-dimensional nested output array.
22+
* Apply a quaternary callback to elements in four broadcasted input arrays and assign results to elements in a three-dimensional nested output array.
2323
*
2424
* @module @stdlib/array/base/broadcasted-quaternary3d
2525
*

lib/node_modules/@stdlib/array/base/broadcasted-quaternary3d/lib/main.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var broadcastArray = require( '@stdlib/array/base/broadcast-array' );
2828
/**
2929
* Applies a quaternary callback to elements in four broadcasted input arrays and assigns results to elements in a three-dimensional nested output array.
3030
*
31-
* @param {ArrayLikeObject<Array>} arrays - array-like object containing two input nested arrays and one output nested array
31+
* @param {ArrayLikeObject<Array>} arrays - array-like object containing four input nested arrays and one output nested array
3232
* @param {ArrayLikeObject<NonNegativeIntegerArray>} shapes - array shapes
3333
* @param {Callback} fcn - quaternary callback
3434
* @returns {void}
@@ -37,7 +37,6 @@ var broadcastArray = require( '@stdlib/array/base/broadcast-array' );
3737
* var add = require( '@stdlib/math/base/ops/add4' );
3838
* var ones3d = require( '@stdlib/array/base/ones3d' );
3939
* var zeros3d = require( '@stdlib/array/base/zeros3d' );
40-
* var bquaternary3d = require( '@stdlib/array/base/broadcasted-quaternary3d' );
4140
*
4241
* var shapes = [
4342
* [ 1, 1, 3 ],
@@ -58,7 +57,7 @@ var broadcastArray = require( '@stdlib/array/base/broadcast-array' );
5857
* console.log( out );
5958
* // => [ [ [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ] ], [ [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ] ], [ [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ], [ 4.0, 4.0, 4.0 ] ] ]
6059
*/
61-
function bquaternary3d( arrays, shapes, fcn ) {
60+
function bquaternary3d( arrays, shapes, fcn ) { // eslint-disable-line max-statements
6261
var dx0;
6362
var dx1;
6463
var dx2;

lib/node_modules/@stdlib/array/base/broadcasted-quaternary3d/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/array/base/broadcasted-quaternary3d",
33
"version": "0.0.0",
4-
"description": "Apply a quaternary callback to elements in four broadcasted nested input arrays and assign results to elements in a three-dimensional nested output array.",
4+
"description": "Apply a quaternary callback to elements in four broadcasted input arrays and assign results to elements in a three-dimensional nested output array.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

0 commit comments

Comments
 (0)