Skip to content

Commit bf7c0ed

Browse files
committed
Update artifacts
1 parent 44bbaa2 commit bf7c0ed

20 files changed

+76
-76
lines changed

ndarray/base/nullary-strided1d/0d.js.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -298,12 +298,12 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
298298
// MAIN //
299299
&nbsp;
300300
/**
301-
* Applies a one-dimensional strided array function to a list of specified dimensions in an input ndarray.
301+
* Applies a one-dimensional strided array function to a list of specified dimensions in an ndarray.
302302
*
303303
* @private
304304
* @param {Function} fcn - wrapper for a one-dimensional strided array function
305305
* @param {Array&lt;Object&gt;} arrays - ndarrays
306-
* @param {Object} strategyX - strategy for marshaling data to and from an input ndarray view
306+
* @param {Object} strategyX - strategy for marshaling data to and from an ndarray view
307307
* @param {Options} opts - function options
308308
* @returns {void}
309309
*
@@ -334,7 +334,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
334334
* // Define the index offsets:
335335
* var ox = 0;
336336
*
337-
* // Create an input ndarray-like object:
337+
* // Create an ndarray-like object:
338338
* var x = {
339339
* 'dtype': 'generic',
340340
* 'data': xbuf,
@@ -354,7 +354,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
354354
* 'order': 'row-major'
355355
* };
356356
*
357-
* // Define an input strategy:
357+
* // Define a strategy:
358358
* function strategy( x ) {
359359
* return {
360360
* 'dtype': x.dtype,
@@ -388,7 +388,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
388388
<div class='footer quiet pad2 space-top1 center small'>
389389
Code coverage generated by
390390
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
391-
at 2025-08-12T05:28:45.282Z
391+
at 2025-08-12T06:15:37.764Z
392392
</div>
393393
<script src="../../../../prettify.js"></script>
394394
<script>

ndarray/base/nullary-strided1d/1d.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -424,15 +424,15 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
424424
// MAIN //
425425
&nbsp;
426426
/**
427-
* Applies a one-dimensional strided array function to a list of specified dimensions in an input ndarray.
427+
* Applies a one-dimensional strided array function to a list of specified dimensions in an ndarray.
428428
*
429429
* @private
430430
* @param {Function} fcn - wrapper for a one-dimensional strided array function
431431
* @param {Array&lt;Object&gt;} arrays - ndarrays
432432
* @param {Array&lt;Object&gt;} views - initialized ndarray-like objects representing sub-array views
433433
* @param {NonNegativeIntegerArray} shape - loop dimensions
434-
* @param {IntegerArray} stridesX - loop dimension strides for the input ndarray
435-
* @param {Object} strategyX - strategy for marshaling data to and from an input ndarray view
434+
* @param {IntegerArray} stridesX - loop dimension strides for the ndarray
435+
* @param {Object} strategyX - strategy for marshaling data to and from an ndarray view
436436
* @param {Options} opts - function options
437437
* @returns {void}
438438
*
@@ -463,7 +463,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
463463
* // Define the index offsets:
464464
* var ox = 0;
465465
*
466-
* // Create an input ndarray-like object:
466+
* // Create an ndarray-like object:
467467
* var x = {
468468
* 'dtype': 'generic',
469469
* 'data': xbuf,
@@ -503,7 +503,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
503503
* }
504504
* ];
505505
*
506-
* // Define an input strategy:
506+
* // Define a strategy:
507507
* function strategy( x ) {
508508
* return {
509509
* 'dtype': x.dtype,
@@ -565,7 +565,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
565565
<div class='footer quiet pad2 space-top1 center small'>
566566
Code coverage generated by
567567
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
568-
at 2025-08-12T05:28:45.282Z
568+
at 2025-08-12T06:15:37.764Z
569569
</div>
570570
<script src="../../../../prettify.js"></script>
571571
<script>

ndarray/base/nullary-strided1d/2d.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -488,16 +488,16 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
488488
// MAIN //
489489
&nbsp;
490490
/**
491-
* Applies a one-dimensional strided array function to a list of specified dimensions in an input ndarray.
491+
* Applies a one-dimensional strided array function to a list of specified dimensions in an ndarray.
492492
*
493493
* @private
494494
* @param {Function} fcn - wrapper for a one-dimensional strided array function
495495
* @param {Array&lt;Object&gt;} arrays - ndarrays
496496
* @param {Array&lt;Object&gt;} views - initialized ndarray-like objects representing sub-array views
497497
* @param {NonNegativeIntegerArray} shape - loop dimensions
498-
* @param {IntegerArray} stridesX - loop dimension strides for the input ndarray
498+
* @param {IntegerArray} stridesX - loop dimension strides for the ndarray
499499
* @param {boolean} isRowMajor - boolean indicating if provided arrays are in row-major order
500-
* @param {Object} strategyX - strategy for marshaling data to and from an input ndarray view
500+
* @param {Object} strategyX - strategy for marshaling data to and from an ndarray view
501501
* @param {Options} opts - function options
502502
* @returns {void}
503503
*
@@ -528,7 +528,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
528528
* // Define the index offsets:
529529
* var ox = 0;
530530
*
531-
* // Create an input ndarray-like object:
531+
* // Create an ndarray-like object:
532532
* var x = {
533533
* 'dtype': 'generic',
534534
* 'data': xbuf,
@@ -568,7 +568,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
568568
* }
569569
* ];
570570
*
571-
* // Define an input strategy:
571+
* // Define a strategy:
572572
* function strategy( x ) {
573573
* return {
574574
* 'dtype': x.dtype,
@@ -661,7 +661,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
661661
<div class='footer quiet pad2 space-top1 center small'>
662662
Code coverage generated by
663663
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
664-
at 2025-08-12T05:28:45.282Z
664+
at 2025-08-12T06:15:37.764Z
665665
</div>
666666
<script src="../../../../prettify.js"></script>
667667
<script>

ndarray/base/nullary-strided1d/2d_blocked.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -552,15 +552,15 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
552552
// MAIN //
553553
&nbsp;
554554
/**
555-
* Applies a one-dimensional strided array function to a list of specified dimensions in an input ndarray via loop-blocking.
555+
* Applies a one-dimensional strided array function to a list of specified dimensions in an ndarray via loop-blocking.
556556
*
557557
* @private
558558
* @param {Function} fcn - wrapper for a one-dimensional strided array function
559559
* @param {Array&lt;Object&gt;} arrays - ndarrays
560560
* @param {Array&lt;Object&gt;} views - initialized ndarray-like objects representing sub-array views
561561
* @param {NonNegativeIntegerArray} shape - loop dimensions
562-
* @param {IntegerArray} stridesX - loop dimension strides for the input ndarray
563-
* @param {Object} strategyX - strategy for marshaling data to and from an input ndarray view
562+
* @param {IntegerArray} stridesX - loop dimension strides for the ndarray
563+
* @param {Object} strategyX - strategy for marshaling data to and from an ndarray view
564564
* @param {Options} opts - function options
565565
* @returns {void}
566566
*
@@ -591,7 +591,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
591591
* // Define the index offsets:
592592
* var ox = 0;
593593
*
594-
* // Create an input ndarray-like object:
594+
* // Create an ndarray-like object:
595595
* var x = {
596596
* 'dtype': 'generic',
597597
* 'data': xbuf,
@@ -631,7 +631,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
631631
* }
632632
* ];
633633
*
634-
* // Define an input strategy:
634+
* // Define a strategy:
635635
* function strategy( x ) {
636636
* return {
637637
* 'dtype': x.dtype,
@@ -751,7 +751,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
751751
<div class='footer quiet pad2 space-top1 center small'>
752752
Code coverage generated by
753753
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
754-
at 2025-08-12T05:28:45.282Z
754+
at 2025-08-12T06:15:37.764Z
755755
</div>
756756
<script src="../../../../prettify.js"></script>
757757
<script>

ndarray/base/nullary-strided1d/3d.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -520,16 +520,16 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
520520
// MAIN //
521521
&nbsp;
522522
/**
523-
* Applies a one-dimensional strided array function to a list of specified dimensions in an input ndarray.
523+
* Applies a one-dimensional strided array function to a list of specified dimensions in an ndarray.
524524
*
525525
* @private
526526
* @param {Function} fcn - wrapper for a one-dimensional strided array reduction function
527527
* @param {Array&lt;Object&gt;} arrays - ndarrays
528528
* @param {Array&lt;Object&gt;} views - initialized ndarray-like objects representing sub-array views
529529
* @param {NonNegativeIntegerArray} shape - loop dimensions
530-
* @param {IntegerArray} stridesX - loop dimension strides for the input ndarray
530+
* @param {IntegerArray} stridesX - loop dimension strides for the ndarray
531531
* @param {boolean} isRowMajor - boolean indicating if provided arrays are in row-major order
532-
* @param {Object} strategyX - strategy for marshaling data to and from an input ndarray view
532+
* @param {Object} strategyX - strategy for marshaling data to and from an ndarray view
533533
* @param {Options} opts - function options
534534
* @returns {void}
535535
*
@@ -560,7 +560,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
560560
* // Define the index offsets:
561561
* var ox = 0;
562562
*
563-
* // Create an input ndarray-like object:
563+
* // Create an ndarray-like object:
564564
* var x = {
565565
* 'dtype': 'generic',
566566
* 'data': xbuf,
@@ -600,7 +600,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
600600
* }
601601
* ];
602602
*
603-
* // Define an input strategy:
603+
* // Define a strategy:
604604
* function strategy( x ) {
605605
* return {
606606
* 'dtype': x.dtype,
@@ -709,7 +709,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
709709
<div class='footer quiet pad2 space-top1 center small'>
710710
Code coverage generated by
711711
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
712-
at 2025-08-12T05:28:45.282Z
712+
at 2025-08-12T06:15:37.764Z
713713
</div>
714714
<script src="../../../../prettify.js"></script>
715715
<script>

ndarray/base/nullary-strided1d/3d_blocked.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -604,15 +604,15 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
604604
// MAIN //
605605
&nbsp;
606606
/**
607-
* Applies a one-dimensional strided array function to a list of specified dimensions in an input ndarray via loop blocking.
607+
* Applies a one-dimensional strided array function to a list of specified dimensions in an ndarray via loop blocking.
608608
*
609609
* @private
610610
* @param {Function} fcn - wrapper for a one-dimensional strided array reduction function
611611
* @param {Array&lt;Object&gt;} arrays - ndarrays
612612
* @param {Array&lt;Object&gt;} views - initialized ndarray-like objects representing sub-array views
613613
* @param {NonNegativeIntegerArray} shape - loop dimensions
614-
* @param {IntegerArray} stridesX - loop dimension strides for the input ndarray
615-
* @param {Object} strategyX - strategy for marshaling data to and from an input ndarray view
614+
* @param {IntegerArray} stridesX - loop dimension strides for the ndarray
615+
* @param {Object} strategyX - strategy for marshaling data to and from an ndarray view
616616
* @param {Options} opts - function options
617617
* @returns {void}
618618
*
@@ -643,7 +643,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
643643
* // Define the index offsets:
644644
* var ox = 0;
645645
*
646-
* // Create an input ndarray-like object:
646+
* // Create an ndarray-like object:
647647
* var x = {
648648
* 'dtype': 'generic',
649649
* 'data': xbuf,
@@ -683,7 +683,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
683683
* }
684684
* ];
685685
*
686-
* // Define an input strategy:
686+
* // Define a strategy:
687687
* function strategy( x ) {
688688
* return {
689689
* 'dtype': x.dtype,
@@ -826,7 +826,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
826826
<div class='footer quiet pad2 space-top1 center small'>
827827
Code coverage generated by
828828
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
829-
at 2025-08-12T05:28:45.282Z
829+
at 2025-08-12T06:15:37.764Z
830830
</div>
831831
<script src="../../../../prettify.js"></script>
832832
<script>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[1884,2748,68.559,20,21,95.2381,2,22,9.09091,1884,2748,68.559,"7f470c3731acf46cb077d6c3fc33f08faf43cb3e","2025-08-12 10:27:03 +0500"]
1+
[1884,2748,68.559,20,21,95.2381,2,22,9.09091,1884,2748,68.559,"0aa9591dbb3039dc6ea59eb370025753eddb2c44","2025-08-12 06:05:31 +0000"]

ndarray/base/nullary-strided1d/defaults.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
183183
*/
184184
function defaults() {
185185
return {
186-
// Require that the order of element traversal match the memory layout of an input ndarray:
186+
// Require that the order of element traversal match the memory layout of the target ndarray:
187187
'strictTraversalOrder': false
188188
};
189189
}
@@ -199,7 +199,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
199199
<div class='footer quiet pad2 space-top1 center small'>
200200
Code coverage generated by
201201
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
202-
at 2025-08-12T05:28:45.282Z
202+
at 2025-08-12T06:15:37.764Z
203203
</div>
204204
<script src="../../../../prettify.js"></script>
205205
<script>

ndarray/base/nullary-strided1d/factory.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -437,11 +437,11 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
437437
// MAIN //
438438
&nbsp;
439439
/**
440-
* Return a function for applying a one-dimensional strided array function to a list of specified dimensions in an input ndarray.
440+
* Return a function for applying a one-dimensional strided array function to a list of specified dimensions in an ndarray.
441441
*
442442
* @param {Function} [fcn] - wrapper for a one-dimensional strided array function
443443
* @param {Options} [options] - function options
444-
* @param {boolean} [options.strictTraversalOrder=false] - boolean specifying whether to require that element traversal match the memory layout of an input ndarray
444+
* @param {boolean} [options.strictTraversalOrder=false] - boolean specifying whether to require that element traversal match the memory layout of the target ndarray
445445
* @throws {TypeError} options argument must be an object
446446
* @throws {TypeError} must provide valid options
447447
* @returns {Function} function for applying a strided array function
@@ -473,7 +473,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
473473
* // Define the index offsets:
474474
* var ox = 0;
475475
*
476-
* // Create an input ndarray-like object:
476+
* // Create an ndarray-like object:
477477
* var x = {
478478
* 'dtype': 'generic',
479479
* 'data': xbuf,
@@ -536,7 +536,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
536536
<span class="cstat-no" title="statement not covered" > return f;</span>
537537
<span class="cstat-no" title="statement not covered" ></span>
538538
<span class="cstat-no" title="statement not covered" > /**</span>
539-
<span class="cstat-no" title="statement not covered" > * Applies a one-dimensional strided array function to a list of specified dimensions in an input ndarray.</span>
539+
<span class="cstat-no" title="statement not covered" > * Applies a one-dimensional strided array function to a list of specified dimensions in an ndarray.</span>
540540
<span class="cstat-no" title="statement not covered" > *</span>
541541
<span class="cstat-no" title="statement not covered" > * @private</span>
542542
<span class="cstat-no" title="statement not covered" > * @param {ArrayLikeObject&lt;Object&gt;} arrays - array-like object containing ndarrays</span>
@@ -555,7 +555,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
555555
<span class="cstat-no" title="statement not covered" > }</span>
556556
<span class="cstat-no" title="statement not covered" ></span>
557557
<span class="cstat-no" title="statement not covered" > /**</span>
558-
<span class="cstat-no" title="statement not covered" > * Applies a one-dimensional strided array function to a list of specified dimensions in an input ndarray.</span>
558+
<span class="cstat-no" title="statement not covered" > * Applies a one-dimensional strided array function to a list of specified dimensions in an ndarray.</span>
559559
<span class="cstat-no" title="statement not covered" > *</span>
560560
<span class="cstat-no" title="statement not covered" > * @private</span>
561561
<span class="cstat-no" title="statement not covered" > * @param {Function} fcn - wrapper for a one-dimensional strided array function</span>
@@ -586,7 +586,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
586586
<div class='footer quiet pad2 space-top1 center small'>
587587
Code coverage generated by
588588
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
589-
at 2025-08-12T05:28:45.282Z
589+
at 2025-08-12T06:15:37.764Z
590590
</div>
591591
<script src="../../../../prettify.js"></script>
592592
<script>

ndarray/base/nullary-strided1d/increment_offsets.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
208208
<div class='footer quiet pad2 space-top1 center small'>
209209
Code coverage generated by
210210
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
211-
at 2025-08-12T05:28:45.282Z
211+
at 2025-08-12T06:15:37.764Z
212212
</div>
213213
<script src="../../../../prettify.js"></script>
214214
<script>

0 commit comments

Comments
 (0)