@@ -57,7 +57,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
5757 < template id ="filterTemplate ">
5858 < div class ="quiet ">
5959 Filter:
60- < input oninput =" onInput() " type ="search " id ="fileSearch ">
60+ < input type ="search " id ="fileSearch ">
6161 </ div >
6262 </ template >
6363 </ div >
@@ -297,13 +297,13 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
297297* @param {Object} x - input array object
298298* @param {Collection} x.data - input array data
299299* @param {Array<Function>} x.accessors - array element accessors
300- * @param {integer} stride - index increment
301- * @param {NonNegativeInteger} offset - starting index
300+ * @param {integer} strideX - stride length
301+ * @param {NonNegativeInteger} offsetX - starting index
302302* @returns {Object} input array object
303303*
304304* @example
305305* var Complex64Array = require( '@stdlib/array/complex64' );
306- * var Complex64 = require( '@stdlib/complex/float32' );
306+ * var Complex64 = require( '@stdlib/complex/float32/ctor ' );
307307* var reinterpret64 = require( '@stdlib/strided/base/reinterpret-complex64' );
308308*
309309* function setter( data, idx, value ) {
@@ -326,7 +326,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
326326* var view = reinterpret64( x.data, 0 );
327327* // view => <Float32Array>[ -1.0, -3.0, 4.0, 0.0, 3.0, -5.0, -2.0, 1.0 ]
328328*/
329- function grev( N, x, stride, offset ) {
329+ function grev( N, x, strideX, offsetX ) {
330330 var xbuf;
331331 var set;
332332 var get;
@@ -344,14 +344,14 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
344344 set = x.accessors[ 1 ];
345345
346346 n = floor( N/2 );
347- ix = offset ;
348- iy = ix + ((N-1)*stride );
347+ ix = offsetX ;
348+ iy = ix + ( ( N - 1 ) * strideX );
349349 for ( i = 0; i < n; i++ ) {
350350 tmp = get( xbuf, ix );
351351 set( xbuf, ix, get( xbuf, iy ) );
352352 set( xbuf, iy, tmp );
353- ix += stride ;
354- iy -= stride ;
353+ ix += strideX ;
354+ iy -= strideX ;
355355 }
356356 return x;
357357}
@@ -367,7 +367,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">bla
367367 < div class ='footer quiet pad2 space-top1 center small '>
368368 Code coverage generated by
369369 < a href ="https://istanbul.js.org/ " target ="_blank " rel ="noopener noreferrer "> istanbul</ a >
370- at 2023-11-09T09:57:18.321Z
370+ at 2025-01-11T14:28:35.991Z
371371 </ div >
372372 < script src ="../../../../../prettify.js "> </ script >
373373 < script >
0 commit comments