Skip to content

Commit 48fc303

Browse files
committed
Update artifacts
1 parent dba12b7 commit 48fc303

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+172
-171
lines changed

ndarray/base/binary/0d.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -320,21 +320,21 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
320320
*
321321
* @private
322322
* @param {Object} x - object containing input ndarray meta data
323-
* @param {string} x.dtype - data type
323+
* @param {*} x.dtype - data type
324324
* @param {Collection} x.data - data buffer
325325
* @param {NonNegativeIntegerArray} x.shape - dimensions
326326
* @param {IntegerArray} x.strides - stride lengths
327327
* @param {NonNegativeInteger} x.offset - index offset
328328
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
329329
* @param {Object} y - object containing input ndarray meta data
330-
* @param {string} y.dtype - data type
330+
* @param {*} y.dtype - data type
331331
* @param {Collection} y.data - data buffer
332332
* @param {NonNegativeIntegerArray} y.shape - dimensions
333333
* @param {IntegerArray} y.strides - stride lengths
334334
* @param {NonNegativeInteger} y.offset - index offset
335335
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
336336
* @param {Object} z - object containing output ndarray meta data
337-
* @param {string} z.dtype - data type
337+
* @param {*} z.dtype - data type
338338
* @param {Collection} z.data - data buffer
339339
* @param {NonNegativeIntegerArray} z.shape - dimensions
340340
* @param {IntegerArray} z.strides - stride lengths
@@ -415,7 +415,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
415415
<div class='footer quiet pad2 space-top1 center small'>
416416
Code coverage generated by
417417
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
418-
at 2025-09-18T00:05:29.059Z
418+
at 2025-09-18T22:46:13.493Z
419419
</div>
420420
<script src="../../../../prettify.js"></script>
421421
<script>

ndarray/base/binary/0d_accessors.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -334,23 +334,23 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
334334
*
335335
* @private
336336
* @param {Object} x - object containing input ndarray meta data
337-
* @param {string} x.dtype - data type
337+
* @param {*} x.dtype - data type
338338
* @param {Collection} x.data - data buffer
339339
* @param {NonNegativeIntegerArray} x.shape - dimensions
340340
* @param {IntegerArray} x.strides - stride lengths
341341
* @param {NonNegativeInteger} x.offset - index offset
342342
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
343343
* @param {Array&lt;Function&gt;} x.accessors - data buffer accessors
344344
* @param {Object} y - object containing input ndarray meta data
345-
* @param {string} y.dtype - data type
345+
* @param {*} y.dtype - data type
346346
* @param {Collection} y.data - data buffer
347347
* @param {NonNegativeIntegerArray} y.shape - dimensions
348348
* @param {IntegerArray} y.strides - stride lengths
349349
* @param {NonNegativeInteger} y.offset - index offset
350350
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
351351
* @param {Array&lt;Function&gt;} y.accessors - data buffer accessors
352352
* @param {Object} z - object containing output ndarray meta data
353-
* @param {string} z.dtype - data type
353+
* @param {*} z.dtype - data type
354354
* @param {Collection} z.data - data buffer
355355
* @param {NonNegativeIntegerArray} z.shape - dimensions
356356
* @param {IntegerArray} z.strides - stride lengths
@@ -436,7 +436,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
436436
<div class='footer quiet pad2 space-top1 center small'>
437437
Code coverage generated by
438438
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
439-
at 2025-09-18T00:05:29.059Z
439+
at 2025-09-18T22:46:13.493Z
440440
</div>
441441
<script src="../../../../prettify.js"></script>
442442
<script>

ndarray/base/binary/10d.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -756,21 +756,21 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
756756
*
757757
* @private
758758
* @param {Object} x - object containing input ndarray meta data
759-
* @param {string} x.dtype - data type
759+
* @param {*} x.dtype - data type
760760
* @param {Collection} x.data - data buffer
761761
* @param {NonNegativeIntegerArray} x.shape - dimensions
762762
* @param {IntegerArray} x.strides - stride lengths
763763
* @param {NonNegativeInteger} x.offset - index offset
764764
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
765765
* @param {Object} y - object containing input ndarray meta data
766-
* @param {string} y.dtype - data type
766+
* @param {*} y.dtype - data type
767767
* @param {Collection} y.data - data buffer
768768
* @param {NonNegativeIntegerArray} y.shape - dimensions
769769
* @param {IntegerArray} y.strides - stride lengths
770770
* @param {NonNegativeInteger} y.offset - index offset
771771
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
772772
* @param {Object} z - object containing output ndarray meta data
773-
* @param {string} z.dtype - data type
773+
* @param {*} z.dtype - data type
774774
* @param {Collection} z.data - data buffer
775775
* @param {NonNegativeIntegerArray} z.shape - dimensions
776776
* @param {IntegerArray} z.strides - stride lengths
@@ -1066,7 +1066,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
10661066
<div class='footer quiet pad2 space-top1 center small'>
10671067
Code coverage generated by
10681068
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
1069-
at 2025-09-18T00:05:29.059Z
1069+
at 2025-09-18T22:46:13.493Z
10701070
</div>
10711071
<script src="../../../../prettify.js"></script>
10721072
<script>

ndarray/base/binary/10d_accessors.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -788,23 +788,23 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
788788
*
789789
* @private
790790
* @param {Object} x - object containing input ndarray meta data
791-
* @param {string} x.dtype - data type
791+
* @param {*} x.dtype - data type
792792
* @param {Collection} x.data - data buffer
793793
* @param {NonNegativeIntegerArray} x.shape - dimensions
794794
* @param {IntegerArray} x.strides - stride lengths
795795
* @param {NonNegativeInteger} x.offset - index offset
796796
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
797797
* @param {Array&lt;Function&gt;} x.accessors - data buffer accessors
798798
* @param {Object} y - object containing input ndarray meta data
799-
* @param {string} y.dtype - data type
799+
* @param {*} y.dtype - data type
800800
* @param {Collection} y.data - data buffer
801801
* @param {NonNegativeIntegerArray} y.shape - dimensions
802802
* @param {IntegerArray} y.strides - stride lengths
803803
* @param {NonNegativeInteger} y.offset - index offset
804804
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
805805
* @param {Array&lt;Function&gt;} y.accessors - data buffer accessors
806806
* @param {Object} z - object containing output ndarray meta data
807-
* @param {string} z.dtype - data type
807+
* @param {*} z.dtype - data type
808808
* @param {Collection} z.data - data buffer
809809
* @param {NonNegativeIntegerArray} z.shape - dimensions
810810
* @param {IntegerArray} z.strides - stride lengths
@@ -1114,7 +1114,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
11141114
<div class='footer quiet pad2 space-top1 center small'>
11151115
Code coverage generated by
11161116
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
1117-
at 2025-09-18T00:05:29.059Z
1117+
at 2025-09-18T22:46:13.493Z
11181118
</div>
11191119
<script src="../../../../prettify.js"></script>
11201120
<script>

ndarray/base/binary/10d_blocked.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1008,21 +1008,21 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
10081008
*
10091009
* @private
10101010
* @param {Object} x - object containing input ndarray meta data
1011-
* @param {string} x.dtype - data type
1011+
* @param {*} x.dtype - data type
10121012
* @param {Collection} x.data - data buffer
10131013
* @param {NonNegativeIntegerArray} x.shape - dimensions
10141014
* @param {IntegerArray} x.strides - stride lengths
10151015
* @param {NonNegativeInteger} x.offset - index offset
10161016
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
10171017
* @param {Object} y - object containing input ndarray meta data
1018-
* @param {string} y.dtype - data type
1018+
* @param {*} y.dtype - data type
10191019
* @param {Collection} y.data - data buffer
10201020
* @param {NonNegativeIntegerArray} y.shape - dimensions
10211021
* @param {IntegerArray} y.strides - stride lengths
10221022
* @param {NonNegativeInteger} y.offset - index offset
10231023
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
10241024
* @param {Object} z - object containing output ndarray meta data
1025-
* @param {string} z.dtype - data type
1025+
* @param {*} z.dtype - data type
10261026
* @param {Collection} z.data - data buffer
10271027
* @param {NonNegativeIntegerArray} z.shape - dimensions
10281028
* @param {IntegerArray} z.strides - stride lengths
@@ -1435,7 +1435,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
14351435
<div class='footer quiet pad2 space-top1 center small'>
14361436
Code coverage generated by
14371437
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
1438-
at 2025-09-18T00:05:29.059Z
1438+
at 2025-09-18T22:46:13.493Z
14391439
</div>
14401440
<script src="../../../../prettify.js"></script>
14411441
<script>

ndarray/base/binary/10d_blocked_accessors.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1040,23 +1040,23 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
10401040
*
10411041
* @private
10421042
* @param {Object} x - object containing input ndarray meta data
1043-
* @param {string} x.dtype - data type
1043+
* @param {*} x.dtype - data type
10441044
* @param {Collection} x.data - data buffer
10451045
* @param {NonNegativeIntegerArray} x.shape - dimensions
10461046
* @param {IntegerArray} x.strides - stride lengths
10471047
* @param {NonNegativeInteger} x.offset - index offset
10481048
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
10491049
* @param {Array&lt;Function&gt;} x.accessors - data buffer accessors
10501050
* @param {Object} y - object containing input ndarray meta data
1051-
* @param {string} y.dtype - data type
1051+
* @param {*} y.dtype - data type
10521052
* @param {Collection} y.data - data buffer
10531053
* @param {NonNegativeIntegerArray} y.shape - dimensions
10541054
* @param {IntegerArray} y.strides - stride lengths
10551055
* @param {NonNegativeInteger} y.offset - index offset
10561056
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
10571057
* @param {Array&lt;Function&gt;} y.accessors - data buffer accessors
10581058
* @param {Object} z - object containing output ndarray meta data
1059-
* @param {string} z.dtype - data type
1059+
* @param {*} z.dtype - data type
10601060
* @param {Collection} z.data - data buffer
10611061
* @param {NonNegativeIntegerArray} z.shape - dimensions
10621062
* @param {IntegerArray} z.strides - stride lengths
@@ -1483,7 +1483,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
14831483
<div class='footer quiet pad2 space-top1 center small'>
14841484
Code coverage generated by
14851485
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
1486-
at 2025-09-18T00:05:29.059Z
1486+
at 2025-09-18T22:46:13.493Z
14871487
</div>
14881488
<script src="../../../../prettify.js"></script>
14891489
<script>

ndarray/base/binary/1d.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -392,21 +392,21 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
392392
*
393393
* @private
394394
* @param {Object} x - object containing input ndarray meta data
395-
* @param {string} x.dtype - data type
395+
* @param {*} x.dtype - data type
396396
* @param {Collection} x.data - data buffer
397397
* @param {NonNegativeIntegerArray} x.shape - dimensions
398398
* @param {IntegerArray} x.strides - stride lengths
399399
* @param {NonNegativeInteger} x.offset - index offset
400400
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
401401
* @param {Object} y - object containing input ndarray meta data
402-
* @param {string} y.dtype - data type
402+
* @param {*} y.dtype - data type
403403
* @param {Collection} y.data - data buffer
404404
* @param {NonNegativeIntegerArray} y.shape - dimensions
405405
* @param {IntegerArray} y.strides - stride lengths
406406
* @param {NonNegativeInteger} y.offset - index offset
407407
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
408408
* @param {Object} z - object containing output ndarray meta data
409-
* @param {string} z.dtype - data type
409+
* @param {*} z.dtype - data type
410410
* @param {Collection} z.data - data buffer
411411
* @param {NonNegativeIntegerArray} z.shape - dimensions
412412
* @param {IntegerArray} z.strides - stride lengths
@@ -523,7 +523,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
523523
<div class='footer quiet pad2 space-top1 center small'>
524524
Code coverage generated by
525525
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
526-
at 2025-09-18T00:05:29.059Z
526+
at 2025-09-18T22:46:13.493Z
527527
</div>
528528
<script src="../../../../prettify.js"></script>
529529
<script>

ndarray/base/binary/1d_accessors.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -424,23 +424,23 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
424424
*
425425
* @private
426426
* @param {Object} x - object containing input ndarray meta data
427-
* @param {string} x.dtype - data type
427+
* @param {*} x.dtype - data type
428428
* @param {Collection} x.data - data buffer
429429
* @param {NonNegativeIntegerArray} x.shape - dimensions
430430
* @param {IntegerArray} x.strides - stride lengths
431431
* @param {NonNegativeInteger} x.offset - index offset
432432
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
433433
* @param {Array&lt;Function&gt;} x.accessors - data buffer accessors
434434
* @param {Object} y - object containing input ndarray meta data
435-
* @param {string} y.dtype - data type
435+
* @param {*} y.dtype - data type
436436
* @param {Collection} y.data - data buffer
437437
* @param {NonNegativeIntegerArray} y.shape - dimensions
438438
* @param {IntegerArray} y.strides - stride lengths
439439
* @param {NonNegativeInteger} y.offset - index offset
440440
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
441441
* @param {Array&lt;Function&gt;} y.accessors - data buffer accessors
442442
* @param {Object} z - object containing output ndarray meta data
443-
* @param {string} z.dtype - data type
443+
* @param {*} z.dtype - data type
444444
* @param {Collection} z.data - data buffer
445445
* @param {NonNegativeIntegerArray} z.shape - dimensions
446446
* @param {IntegerArray} z.strides - stride lengths
@@ -571,7 +571,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
571571
<div class='footer quiet pad2 space-top1 center small'>
572572
Code coverage generated by
573573
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
574-
at 2025-09-18T00:05:29.059Z
574+
at 2025-09-18T22:46:13.493Z
575575
</div>
576576
<script src="../../../../prettify.js"></script>
577577
<script>

ndarray/base/binary/2d.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -462,21 +462,21 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
462462
*
463463
* @private
464464
* @param {Object} x - object containing input ndarray meta data
465-
* @param {string} x.dtype - data type
465+
* @param {*} x.dtype - data type
466466
* @param {Collection} x.data - data buffer
467467
* @param {NonNegativeIntegerArray} x.shape - dimensions
468468
* @param {IntegerArray} x.strides - stride lengths
469469
* @param {NonNegativeInteger} x.offset - index offset
470470
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
471471
* @param {Object} y - object containing input ndarray meta data
472-
* @param {string} y.dtype - data type
472+
* @param {*} y.dtype - data type
473473
* @param {Collection} y.data - data buffer
474474
* @param {NonNegativeIntegerArray} y.shape - dimensions
475475
* @param {IntegerArray} y.strides - stride lengths
476476
* @param {NonNegativeInteger} y.offset - index offset
477477
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
478478
* @param {Object} z - object containing output ndarray meta data
479-
* @param {string} z.dtype - data type
479+
* @param {*} z.dtype - data type
480480
* @param {Collection} z.data - data buffer
481481
* @param {NonNegativeIntegerArray} z.shape - dimensions
482482
* @param {IntegerArray} z.strides - stride lengths
@@ -628,7 +628,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
628628
<div class='footer quiet pad2 space-top1 center small'>
629629
Code coverage generated by
630630
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
631-
at 2025-09-18T00:05:29.059Z
631+
at 2025-09-18T22:46:13.493Z
632632
</div>
633633
<script src="../../../../prettify.js"></script>
634634
<script>

ndarray/base/binary/2d_accessors.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -494,23 +494,23 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
494494
*
495495
* @private
496496
* @param {Object} x - object containing input ndarray meta data
497-
* @param {string} x.dtype - data type
497+
* @param {*} x.dtype - data type
498498
* @param {Collection} x.data - data buffer
499499
* @param {NonNegativeIntegerArray} x.shape - dimensions
500500
* @param {IntegerArray} x.strides - stride lengths
501501
* @param {NonNegativeInteger} x.offset - index offset
502502
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
503503
* @param {Array&lt;Function&gt;} x.accessors - data buffer accessors
504504
* @param {Object} y - object containing input ndarray meta data
505-
* @param {string} y.dtype - data type
505+
* @param {*} y.dtype - data type
506506
* @param {Collection} y.data - data buffer
507507
* @param {NonNegativeIntegerArray} y.shape - dimensions
508508
* @param {IntegerArray} y.strides - stride lengths
509509
* @param {NonNegativeInteger} y.offset - index offset
510510
* @param {string} y.order - specifies whether `y` is row-major (C-style) or column-major (Fortran-style)
511511
* @param {Array&lt;Function&gt;} y.accessors - data buffer accessors
512512
* @param {Object} z - object containing output ndarray meta data
513-
* @param {string} z.dtype - data type
513+
* @param {*} z.dtype - data type
514514
* @param {Collection} z.data - data buffer
515515
* @param {NonNegativeIntegerArray} z.shape - dimensions
516516
* @param {IntegerArray} z.strides - stride lengths
@@ -676,7 +676,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
676676
<div class='footer quiet pad2 space-top1 center small'>
677677
Code coverage generated by
678678
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
679-
at 2025-09-18T00:05:29.059Z
679+
at 2025-09-18T22:46:13.493Z
680680
</div>
681681
<script src="../../../../prettify.js"></script>
682682
<script>

0 commit comments

Comments
 (0)