@@ -23,9 +23,9 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">ndarray/c
2323 < div class ='clearfix '>
2424
2525 < div class ='fl pad1y space-right2 '>
26- < span class ="strong "> 49.66 % </ span >
26+ < span class ="strong "> 50 % </ span >
2727 < span class ="quiet "> Statements</ span >
28- < span class ='fraction '> 75/151 </ span >
28+ < span class ='fraction '> 76/152 </ span >
2929 </ div >
3030
3131
@@ -44,9 +44,9 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">ndarray/c
4444
4545
4646 < div class ='fl pad1y space-right2 '>
47- < span class ="strong "> 49.66 % </ span >
47+ < span class ="strong "> 50 % </ span >
4848 < span class ="quiet "> Lines</ span >
49- < span class ='fraction '> 75/151 </ span >
49+ < span class ='fraction '> 76/152 </ span >
5050 </ div >
5151
5252
@@ -61,7 +61,7 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">ndarray/c
6161 </ div >
6262 </ template >
6363 </ div >
64- < div class ='status-line low '> </ div >
64+ < div class ='status-line medium '> </ div >
6565 < pre > < table class ="coverage ">
6666< tr > < td class ="line-count quiet "> < a name ='L1 '> </ a > < a href ='#L1 '> 1</ a >
6767< a name ='L2 '> </ a > < a href ='#L2 '> 2</ a >
@@ -214,7 +214,9 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">ndarray/c
214214< a name ='L149 '> </ a > < a href ='#L149 '> 149</ a >
215215< a name ='L150 '> </ a > < a href ='#L150 '> 150</ a >
216216< a name ='L151 '> </ a > < a href ='#L151 '> 151</ a >
217- < a name ='L152 '> </ a > < a href ='#L152 '> 152</ a > </ td > < td class ="line-coverage quiet "> < span class ="cline-any cline-yes "> 1x</ span >
217+ < a name ='L152 '> </ a > < a href ='#L152 '> 152</ a >
218+ < a name ='L153 '> </ a > < a href ='#L153 '> 153</ a > </ td > < td class ="line-coverage quiet "> < span class ="cline-any cline-yes "> 1x</ span >
219+ < span class ="cline-any cline-yes "> 1x</ span >
218220< span class ="cline-any cline-yes "> 1x</ span >
219221< span class ="cline-any cline-yes "> 1x</ span >
220222< span class ="cline-any cline-yes "> 1x</ span >
@@ -408,16 +410,16 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">ndarray/c
408410*
409411* @param {ArrayLikeObject<ndarray>} arrays - array-like object containing input ndarrays
410412* @param {ndarray} out - output ndarray
411- * @param {integer } dim - dimension along which the arrays are concatenated
413+ * @param {NegativeInteger } dim - dimension along which the ndarrays are concatenated
412414* @throws {TypeError} first argument must be an array of ndarray-like objects
413415* @throws {RangeError} first argument must have more than one ndarray
414416* @throws {TypeError} second argument must be an array of ndarray-like objects
415417* @returns {ndarray} output ndarray
416418*
417419* @example
418- * var ndarray2array = require( '@stdlib/ndarray/to-array' );
419- * var Float64Array = require( '@stdlib/array/float64' );
420420* var ndarray = require( '@stdlib/ndarray/ctor' );
421+ * var Float64Array = require( '@stdlib/array/float64' );
422+ * var ndarray2array = require( '@stdlib/ndarray/to-array' );
421423*
422424* var xbuf = new Float64Array( [ -1.0, 2.0, -3.0, 4.0 ] );
423425* var x = new ndarray( 'float64', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'row-major' );
@@ -428,12 +430,13 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">ndarray/c
428430* var z = new ndarray( 'float64', new Float64Array( 10 ), [ 2, 5 ], [ 5, 1 ], 0, 'row-major' );
429431*
430432* var out = assign( [ x, y ], z, -1 );
433+ * // returns <ndarray>
431434*
432435* var bool = ( out === z );
433436* // returns true
434437*
435438* var arr = ndarray2array( z );
436- * // returns [ [ -1.0, 2.0, -5.0, 6.0, 7.0 ], [ -3.0, 4.0, 8.0, 9.0, 10.0 ] ]
439+ * // returns [ [ -1.0, 2.0, -5.0, 6.0, - 7.0 ], [ -3.0, 4.0, 8.0, - 9.0, 10.0 ] ]
437440*/
438441< span class ="cstat-no " title ="statement not covered " > < span class ="fstat-no " title ="function not covered " > function assign( arrays, out, dim ) {</ span > </ span >
439442< span class ="cstat-no " title ="statement not covered " > var istacks;</ span >
@@ -523,7 +526,7 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">ndarray/c
523526 < div class ='footer quiet pad2 space-top1 center small '>
524527 Code coverage generated by
525528 < a href ="https://istanbul.js.org/ " target ="_blank " rel ="noopener noreferrer "> istanbul</ a >
526- at 2025-09-08T07:46:13.321Z
529+ at 2025-09-08T08:05:01.995Z
527530 </ div >
528531 < script src ="../../../prettify.js "> </ script >
529532 < script >
0 commit comments