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 aa86262 commit 5fcde08Copy full SHA for 5fcde08
lib/node_modules/@stdlib/ndarray/base/assign/lib/main.js
@@ -352,7 +352,7 @@ function assign( arrays ) {
352
ioy = iterationOrder( sy ); // +/-1
353
354
// Determine whether we can avoid blocked iteration...
355
- if ( iox !== 0 && ioy !== 0 && strides2order( sx ) === strides2order( sy ) ) {
+ if ( iox !== 0 && ioy !== 0 && strides2order( sx ) === strides2order( sy ) ) { // eslint-disable-line max-len
356
// Determine the minimum and maximum linear indices which are accessible by the array views:
357
xmmv = minmaxViewBufferIndex( shx, sx, x.offset );
358
ymmv = minmaxViewBufferIndex( shy, sy, y.offset );
0 commit comments