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 8721f7b commit c3c8813Copy full SHA for c3c8813
lib/node_modules/@stdlib/ndarray/base/some/lib/main.js
@@ -292,12 +292,12 @@ function some( arrays ) {
292
}
293
// Fall-through to linear view iteration without regard for how data is stored in memory (i.e., take the slow path)...
294
if ( x.accessorProtocol ) {
295
- return accessorsomend( x );
+ return accessorsomend( x, N );
296
297
if ( isCmplx ) {
298
- return complexsomend( x );
+ return complexsomend( x, N );
299
300
- return somend( x );
+ return somend( x, N );
301
302
303
0 commit comments