diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/0d_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/0d_accessors.js index 688b09109495..0cd349184169 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/0d_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/0d_accessors.js @@ -99,9 +99,7 @@ * * // Apply the unary function: * unary0d( x, y, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 30.0, 40.0 ] +* // ybuf => [ 30.0, 40.0, 0.0, 0.0 ] */ function unary0d( x, y, fcn ) { y.accessors[ 1 ]( y.data, y.offset, fcn( x.accessors[ 0 ]( x.data, x.offset ) ) ); // eslint-disable-line max-len diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/10d_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/10d_accessors.js index 0a5ca03ebcbb..5b88233c6130 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/10d_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/10d_accessors.js @@ -102,9 +102,7 @@ * * // Apply the unary function: * unary10d( x, y, true, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function unary10d( x, y, isRowMajor, fcn ) { // eslint-disable-line max-statements var xbuf; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/10d_blocked_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/10d_blocked_accessors.js index 06d9b99bff07..9ee69f509c74 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/10d_blocked_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/10d_blocked_accessors.js @@ -106,9 +106,7 @@ var blockSize = require( '@stdlib/ndarray/base/unary-tiling-block-size' ); * * // Apply the unary function: * blockedunary10d( x, y, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function blockedunary10d( x, y, fcn ) { // eslint-disable-line max-statements, max-lines-per-function var bsize; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/1d_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/1d_accessors.js index 593edcc2bde0..e61a767fde0b 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/1d_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/1d_accessors.js @@ -99,9 +99,7 @@ * * // Apply the unary function: * unary1d( x, y, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function unary1d( x, y, fcn ) { var xbuf; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/2d_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/2d_accessors.js index b8d1e5775a5e..d199ead88792 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/2d_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/2d_accessors.js @@ -100,9 +100,7 @@ * * // Apply the unary function: * unary2d( x, y, true, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function unary2d( x, y, isRowMajor, fcn ) { var xbuf; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/2d_blocked_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/2d_blocked_accessors.js index cd94a08cfc22..5eb2bfc6ff0b 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/2d_blocked_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/2d_blocked_accessors.js @@ -104,9 +104,7 @@ var blockSize = require( '@stdlib/ndarray/base/unary-tiling-block-size' ); * * // Apply the unary function: * blockedunary2d( x, y, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function blockedunary2d( x, y, fcn ) { var bsize; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/3d_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/3d_accessors.js index 6af294958048..b8429ad776a1 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/3d_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/3d_accessors.js @@ -100,9 +100,7 @@ * * // Apply the unary function: * unary3d( x, y, true, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function unary3d( x, y, isRowMajor, fcn ) { var xbuf; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/3d_blocked_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/3d_blocked_accessors.js index 3369db0f8f31..7bed1596a5c0 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/3d_blocked_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/3d_blocked_accessors.js @@ -106,9 +106,7 @@ var blockSize = require( '@stdlib/ndarray/base/unary-tiling-block-size' ); * * // Apply the unary function: * blockedunary3d( x, y, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function blockedunary3d( x, y, fcn ) { var bsize; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/4d_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/4d_accessors.js index 1655e2bafdb5..ca501b61f5e7 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/4d_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/4d_accessors.js @@ -100,9 +100,7 @@ * * // Apply the unary function: * unary4d( x, y, true, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function unary4d( x, y, isRowMajor, fcn ) { var xbuf; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/4d_blocked_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/4d_blocked_accessors.js index 9b25707d942e..ed4ea2e2fa86 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/4d_blocked_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/4d_blocked_accessors.js @@ -106,9 +106,7 @@ var blockSize = require( '@stdlib/ndarray/base/unary-tiling-block-size' ); * * // Apply the unary function: * blockedunary4d( x, y, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function blockedunary4d( x, y, fcn ) { // eslint-disable-line max-statements var bsize; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/5d_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/5d_accessors.js index ebb78f9f3a7f..2ba60f669ebf 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/5d_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/5d_accessors.js @@ -100,9 +100,7 @@ * * // Apply the unary function: * unary5d( x, y, true, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function unary5d( x, y, isRowMajor, fcn ) { var xbuf; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/5d_blocked_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/5d_blocked_accessors.js index 1e02dad9e3cb..08403d09cef7 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/5d_blocked_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/5d_blocked_accessors.js @@ -106,9 +106,7 @@ var blockSize = require( '@stdlib/ndarray/base/unary-tiling-block-size' ); * * // Apply the unary function: * blockedunary5d( x, y, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function blockedunary5d( x, y, fcn ) { // eslint-disable-line max-statements var bsize; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/6d_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/6d_accessors.js index 2eb4d0ce268f..1f466d5b5b32 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/6d_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/6d_accessors.js @@ -102,9 +102,7 @@ * * // Apply the unary function: * unary6d( x, y, true, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function unary6d( x, y, isRowMajor, fcn ) { var xbuf; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/6d_blocked_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/6d_blocked_accessors.js index 84d90619da7a..9234a4188a00 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/6d_blocked_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/6d_blocked_accessors.js @@ -106,9 +106,7 @@ var blockSize = require( '@stdlib/ndarray/base/unary-tiling-block-size' ); * * // Apply the unary function: * blockedunary6d( x, y, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function blockedunary6d( x, y, fcn ) { // eslint-disable-line max-statements var bsize; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/7d_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/7d_accessors.js index e03dd17dd942..cbc29b9ca8b1 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/7d_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/7d_accessors.js @@ -102,9 +102,7 @@ * * // Apply the unary function: * unary7d( x, y, true, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function unary7d( x, y, isRowMajor, fcn ) { // eslint-disable-line max-statements var xbuf; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/7d_blocked_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/7d_blocked_accessors.js index a54858f50ca3..98d334a5f611 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/7d_blocked_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/7d_blocked_accessors.js @@ -106,9 +106,7 @@ var blockSize = require( '@stdlib/ndarray/base/unary-tiling-block-size' ); * * // Apply the unary function: * blockedunary7d( x, y, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function blockedunary7d( x, y, fcn ) { // eslint-disable-line max-statements var bsize; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/8d_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/8d_accessors.js index 41e65bf2df81..79da2a6e8300 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/8d_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/8d_accessors.js @@ -102,9 +102,7 @@ * * // Apply the unary function: * unary8d( x, y, true, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function unary8d( x, y, isRowMajor, fcn ) { // eslint-disable-line max-statements var xbuf; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/8d_blocked_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/8d_blocked_accessors.js index a5bf15da0a64..89c7c8cdbf71 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/8d_blocked_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/8d_blocked_accessors.js @@ -106,9 +106,7 @@ var blockSize = require( '@stdlib/ndarray/base/unary-tiling-block-size' ); * * // Apply the unary function: * blockedunary8d( x, y, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function blockedunary8d( x, y, fcn ) { // eslint-disable-line max-statements, max-lines-per-function var bsize; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/9d_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/9d_accessors.js index 142ae136d064..df9ddcbacecb 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/9d_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/9d_accessors.js @@ -102,9 +102,7 @@ * * // Apply the unary function: * unary9d( x, y, true, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function unary9d( x, y, isRowMajor, fcn ) { // eslint-disable-line max-statements var xbuf; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/9d_blocked_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/9d_blocked_accessors.js index a46e7649e4d0..285732b82aa9 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/9d_blocked_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/9d_blocked_accessors.js @@ -106,9 +106,7 @@ var blockSize = require( '@stdlib/ndarray/base/unary-tiling-block-size' ); * * // Apply the unary function: * blockedunary9d( x, y, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function blockedunary9d( x, y, fcn ) { // eslint-disable-line max-statements, max-lines-per-function var bsize; diff --git a/lib/node_modules/@stdlib/ndarray/base/unary/lib/nd_accessors.js b/lib/node_modules/@stdlib/ndarray/base/unary/lib/nd_accessors.js index 668cc6b62326..0fe3276abef6 100644 --- a/lib/node_modules/@stdlib/ndarray/base/unary/lib/nd_accessors.js +++ b/lib/node_modules/@stdlib/ndarray/base/unary/lib/nd_accessors.js @@ -110,9 +110,7 @@ var MODE = 'throw'; * * // Apply the unary function: * unarynd( x, y, scale ); -* -* var v = y.data.get( 0 ); -* // returns [ 10.0, 20.0 ] +* // ybuf => [ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0 ] */ function unarynd( x, y, fcn ) { var xbuf;