rust-ndarray / ndarray

ndarray: an N-dimensional array with array views, multidimensional slicing, and efficient operations
https://docs.rs/ndarray/
Apache License 2.0
3.43k stars 295 forks source link

Fix contig check for single element arrays #1362

Closed bluss closed 4 months ago

bluss commented 4 months ago

When an array has 0 or 1 elements, strides don't matter anymore. The general case of this function handled this correctly, but the special case for ndim == 1 did not.

Fixes #1359

bluss commented 4 months ago

thanks for checking. The lint fixes are helpful here too, best to get them in.