We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89e6423 commit de7b62dCopy full SHA for de7b62d
lib/node_modules/@stdlib/blas/ext/base/slast-index-of/docs/types/test.ts
@@ -52,11 +52,11 @@ import slastIndexOf = require( './index' );
52
53
// The compiler throws an error if the function is provided a third argument which is not a Float32Array...
54
{
55
- slastIndexOf( x.length, 1.0, '1', 1 ); // $ExpectError
56
- slastIndexOf( x.length, 1.0, true, 1 ); // $ExpectError
57
- slastIndexOf( x.length, 1.0, false, 1 ); // $ExpectError
58
- slastIndexOf( x.length, 1.0, null, 1 ); // $ExpectError
59
- slastIndexOf( x.length, 1.0, {}, 1 ); // $ExpectError
+ slastIndexOf( 3, 1.0, '1', 1 ); // $ExpectError
+ slastIndexOf( 3, 1.0, true, 1 ); // $ExpectError
+ slastIndexOf( 3, 1.0, false, 1 ); // $ExpectError
+ slastIndexOf( 3, 1.0, null, 1 ); // $ExpectError
+ slastIndexOf( 3, 1.0, {}, 1 ); // $ExpectError
60
}
61
62
// The compiler throws an error if the function is provided a fourth argument which is not a number...
0 commit comments