Skip to content

Commit 5efceea

Browse files
committed
Update artifacts
1 parent 450786b commit 5efceea

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

blas/ext/last-index-of/assign.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
606606
* // returns true
607607
*
608608
* var arr = ndarray2array( out );
609-
* // returns [ -1, 0 ]
609+
* // returns [ 1, 0 ]
610610
*/
611611
function assign( x, searchElement, fromIndex, out ) {
612612
var hasOptions;
@@ -640,8 +640,8 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
640640
'dims': [ -1 ] // default behavior is to perform a reduction over the last dimension
641641
};
642642
&nbsp;
643-
// Initialize the `fromIndex` to the first element along a dimension:
644-
fidx = 0;
643+
// Initialize the `fromIndex` to the last element along a dimension:
644+
fidx = -1;
645645
&nbsp;
646646
// Initialize a flag indicating whether the `fromIndex` argument is a scalar:
647647
iflg = true;
@@ -739,7 +739,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
739739
<div class='footer quiet pad2 space-top1 center small'>
740740
Code coverage generated by
741741
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
742-
at 2025-09-07T20:56:19.258Z
742+
at 2025-09-08T06:07:28.611Z
743743
</div>
744744
<script src="../../../../prettify.js"></script>
745745
<script>

blas/ext/last-index-of/base.js.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
406406
* })
407407
*
408408
* // Create a from index ndarray:
409-
* var fromIndex = scalar2ndarray( 0, {
409+
* var fromIndex = scalar2ndarray( -1, {
410410
* 'dtype': 'int32'
411411
* })
412412
*
@@ -415,7 +415,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
415415
* // returns &lt;ndarray&gt;
416416
*
417417
* var idx = out.get();
418-
* // returns -1
418+
* // returns 3
419419
*/
420420
var lastIndexOf = factory( table, [ idtypes0, idtypes1, idtypes2 ], odtypes, policies ); // eslint-disable-line max-len
421421
&nbsp;
@@ -430,7 +430,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
430430
<div class='footer quiet pad2 space-top1 center small'>
431431
Code coverage generated by
432432
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
433-
at 2025-09-07T20:56:19.258Z
433+
at 2025-09-08T06:07:28.611Z
434434
</div>
435435
<script src="../../../../prettify.js"></script>
436436
<script>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[662,666,99.3994,77,78,98.7179,3,3,100,662,666,99.3994,"deec645455c23d9564348c502b789a38fac54628","2025-09-07 20:54:32 +0000"]
1+
[662,666,99.3994,77,78,98.7179,3,3,100,662,666,99.3994,"d209b4f4ddeae3c79196ec67d5817d673fe54a8d","2025-09-08 06:04:20 +0000"]

blas/ext/last-index-of/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ <h1><a href="../../../../index.html">All files</a> blas/ext/last-index-of/lib</h
161161
<div class='footer quiet pad2 space-top1 center small'>
162162
Code coverage generated by
163163
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
164-
at 2025-09-07T20:56:19.258Z
164+
at 2025-09-08T06:07:28.611Z
165165
</div>
166166
<script src="../../../../prettify.js"></script>
167167
<script>

blas/ext/last-index-of/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
283283
<div class='footer quiet pad2 space-top1 center small'>
284284
Code coverage generated by
285285
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
286-
at 2025-09-07T20:56:19.258Z
286+
at 2025-09-08T06:07:28.611Z
287287
</div>
288288
<script src="../../../../prettify.js"></script>
289289
<script>

blas/ext/last-index-of/main.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
555555
* // returns &lt;ndarray&gt;
556556
*
557557
* var arr = ndarray2array( out );
558-
* // returns [ -1, 0 ]
558+
* // returns [ 1, 0 ]
559559
*/
560560
function lastIndexOf( x, searchElement, fromIndex ) {
561561
var hasOptions;
@@ -586,8 +586,8 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
586586
'keepdims': false
587587
};
588588
&nbsp;
589-
// Initialize the `fromIndex` to the first element along a dimension:
590-
fidx = 0;
589+
// Initialize the `fromIndex` to the last element along a dimension:
590+
fidx = -1;
591591
&nbsp;
592592
// Initialize a flag indicating whether the `fromIndex` argument is a scalar:
593593
iflg = true;
@@ -676,7 +676,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
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-07T20:56:19.258Z
679+
at 2025-09-08T06:07:28.611Z
680680
</div>
681681
<script src="../../../../prettify.js"></script>
682682
<script>

blas/ext/last-index-of/non_core_shape.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
220220
<div class='footer quiet pad2 space-top1 center small'>
221221
Code coverage generated by
222222
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
223-
at 2025-09-07T20:56:19.258Z
223+
at 2025-09-08T06:07:28.611Z
224224
</div>
225225
<script src="../../../../prettify.js"></script>
226226
<script>

0 commit comments

Comments
 (0)