You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/ndarray/base/some-by/test/test.nd.js
+20-20Lines changed: 20 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ tape( 'main export is a function', function test( t ) {
42
42
t.end();
43
43
});
44
44
45
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, singleton dimensions)',functiontest(t){
45
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, singleton dimensions)',functiontest(t){
46
46
varactual;
47
47
varord;
48
48
varsh;
@@ -78,7 +78,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
78
78
}
79
79
});
80
80
81
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, singleton dimensions, accessors)',functiontest(t){
81
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, singleton dimensions, accessors)',functiontest(t){
82
82
varactual;
83
83
varxbuf;
84
84
varord;
@@ -289,7 +289,7 @@ tape( 'the function supports specifying the callback execution context (row-majo
289
289
}
290
290
});
291
291
292
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous)',functiontest(t){
292
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous)',functiontest(t){
293
293
varactual;
294
294
varord;
295
295
varsh;
@@ -325,7 +325,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
325
325
}
326
326
});
327
327
328
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, negative strides)',functiontest(t){
328
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, negative strides)',functiontest(t){
329
329
varactual;
330
330
varord;
331
331
varsh;
@@ -361,7 +361,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
361
361
}
362
362
});
363
363
364
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, same sign strides)',functiontest(t){
364
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, same sign strides)',functiontest(t){
365
365
varactual;
366
366
varord;
367
367
varsh;
@@ -397,7 +397,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
397
397
}
398
398
});
399
399
400
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, mixed sign strides)',functiontest(t){
400
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, mixed sign strides)',functiontest(t){
401
401
varactual;
402
402
varord;
403
403
varsh;
@@ -433,7 +433,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
433
433
}
434
434
});
435
435
436
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, accessors)',functiontest(t){
436
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, accessors)',functiontest(t){
437
437
varactual;
438
438
varxbuf;
439
439
varord;
@@ -472,7 +472,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
472
472
}
473
473
});
474
474
475
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, negative strides, accessors)',functiontest(t){
475
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, negative strides, accessors)',functiontest(t){
476
476
varactual;
477
477
varxbuf;
478
478
varord;
@@ -511,7 +511,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
511
511
}
512
512
});
513
513
514
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, same sign strides, accessors)',functiontest(t){
514
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, same sign strides, accessors)',functiontest(t){
515
515
varactual;
516
516
varxbuf;
517
517
varord;
@@ -550,7 +550,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
550
550
}
551
551
});
552
552
553
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, mixed sign strides, accessors)',functiontest(t){
553
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, mixed sign strides, accessors)',functiontest(t){
554
554
varactual;
555
555
varxbuf;
556
556
varord;
@@ -589,7 +589,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
589
589
}
590
590
});
591
591
592
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, singleton dimensions)',functiontest(t){
592
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, singleton dimensions)',functiontest(t){
593
593
varactual;
594
594
varord;
595
595
varsh;
@@ -625,7 +625,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
625
625
}
626
626
});
627
627
628
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, singleton dimensions, accessors)',functiontest(t){
628
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, singleton dimensions, accessors)',functiontest(t){
629
629
varactual;
630
630
varxbuf;
631
631
varord;
@@ -836,7 +836,7 @@ tape( 'the function supports specifying the callback execution context (column-m
836
836
}
837
837
});
838
838
839
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous)',functiontest(t){
839
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous)',functiontest(t){
840
840
varactual;
841
841
varord;
842
842
varsh;
@@ -872,7 +872,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
872
872
}
873
873
});
874
874
875
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, negative strides)',functiontest(t){
875
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, negative strides)',functiontest(t){
876
876
varactual;
877
877
varord;
878
878
varsh;
@@ -908,7 +908,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
908
908
}
909
909
});
910
910
911
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, same sign strides)',functiontest(t){
911
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, same sign strides)',functiontest(t){
912
912
varactual;
913
913
varord;
914
914
varsh;
@@ -944,7 +944,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
944
944
}
945
945
});
946
946
947
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, mixed sign strides)',functiontest(t){
947
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, mixed sign strides)',functiontest(t){
948
948
varactual;
949
949
varord;
950
950
varsh;
@@ -980,7 +980,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
980
980
}
981
981
});
982
982
983
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, accessors)',functiontest(t){
983
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, accessors)',functiontest(t){
984
984
varactual;
985
985
varxbuf;
986
986
varord;
@@ -1019,7 +1019,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
1019
1019
}
1020
1020
});
1021
1021
1022
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, negative strides, accessors)',functiontest(t){
1022
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, negative strides, accessors)',functiontest(t){
1023
1023
varactual;
1024
1024
varxbuf;
1025
1025
varord;
@@ -1058,7 +1058,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
1058
1058
}
1059
1059
});
1060
1060
1061
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, same sign strides, accessors)',functiontest(t){
1061
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, same sign strides, accessors)',functiontest(t){
1062
1062
varactual;
1063
1063
varxbuf;
1064
1064
varord;
@@ -1097,7 +1097,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
1097
1097
}
1098
1098
});
1099
1099
1100
-
tape('the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, mixed sign strides, accessors)',functiontest(t){
1100
+
tape('the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, mixed sign strides, accessors)',functiontest(t){
0 commit comments