@@ -25,7 +25,7 @@ <h1><a href="index.html">All files</a> main.js</h1>
2525 < div class ='fl pad1y space-right2 '>
2626 < span class ="strong "> 100% </ span >
2727 < span class ="quiet "> Statements</ span >
28- < span class ='fraction '> 56/56 </ span >
28+ < span class ='fraction '> 57/57 </ span >
2929 </ div >
3030
3131
@@ -46,7 +46,7 @@ <h1><a href="index.html">All files</a> main.js</h1>
4646 < div class ='fl pad1y space-right2 '>
4747 < span class ="strong "> 100% </ span >
4848 < span class ="quiet "> Lines</ span >
49- < span class ='fraction '> 56/56 </ span >
49+ < span class ='fraction '> 57/57 </ span >
5050 </ div >
5151
5252
@@ -119,7 +119,8 @@ <h1><a href="index.html">All files</a> main.js</h1>
119119< a name ='L54 '> </ a > < a href ='#L54 '> 54</ a >
120120< a name ='L55 '> </ a > < a href ='#L55 '> 55</ a >
121121< a name ='L56 '> </ a > < a href ='#L56 '> 56</ a >
122- < a name ='L57 '> </ a > < a href ='#L57 '> 57</ a > </ td > < td class ="line-coverage quiet "> < span class ="cline-any cline-yes "> 1x</ span >
122+ < a name ='L57 '> </ a > < a href ='#L57 '> 57</ a >
123+ < a name ='L58 '> </ a > < a href ='#L58 '> 58</ a > </ td > < td class ="line-coverage quiet "> < span class ="cline-any cline-yes "> 1x</ span >
123124< span class ="cline-any cline-yes "> 1x</ span >
124125< span class ="cline-any cline-yes "> 1x</ span >
125126< span class ="cline-any cline-yes "> 1x</ span >
@@ -170,6 +171,7 @@ <h1><a href="index.html">All files</a> main.js</h1>
170171< span class ="cline-any cline-yes "> 8x</ span >
171172< span class ="cline-any cline-yes "> 8x</ span >
172173< span class ="cline-any cline-yes "> 8x</ span >
174+ < span class ="cline-any cline-yes "> 8x</ span >
173175< span class ="cline-any cline-yes "> 1x</ span >
174176< span class ="cline-any cline-yes "> 1x</ span >
175177< span class ="cline-any cline-yes "> 1x</ span >
@@ -209,7 +211,7 @@ <h1><a href="index.html">All files</a> main.js</h1>
209211/**
210212* Reverses the elements of a one-dimensional double-precision floating-point ndarray in-place.
211213*
212- * @param {ndarray} x - input ndarray
214+ * @param {ArrayLikeObject<Object>} arrays - array-like object containing a single one-dimensional input ndarray
213215* @returns {ndarray} input ndarray
214216*
215217* @example
@@ -219,10 +221,11 @@ <h1><a href="index.html">All files</a> main.js</h1>
219221* var xbuf = new Float64Array( [ 1.0, 2.0, 3.0 ] );
220222* var x = new ndarray( 'float64', xbuf, [ 3 ], [ 1 ], 0, 'row-major' );
221223*
222- * drev( x );
224+ * drev( [ x ] );
223225* // x => <ndarray>[ 3.0, 2.0, 1.0 ]
224226*/
225- function drev( x ) {
227+ function drev( arrays ) {
228+ var x = arrays[ 0 ];
226229 strided( numelDimension( x, 0 ), getData( x ), getStride( x, 0 ), getOffset( x ) ); // eslint-disable-line max-len
227230 return x;
228231}
@@ -238,7 +241,7 @@ <h1><a href="index.html">All files</a> main.js</h1>
238241 < div class ='footer quiet pad2 space-top1 center small '>
239242 Code coverage generated by
240243 < a href ="https://istanbul.js.org/ " target ="_blank " rel ="noopener noreferrer "> istanbul</ a >
241- at 2025-12-19T13:07:17.668Z
244+ at 2025-12-21T07:02:08.018Z
242245 </ div >
243246 < script src ="prettify.js "> </ script >
244247 < script >
0 commit comments