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
The .remove_axis(), .insert_axis(), .into_subview(), and .slice_move() methods do not currently have in-place variants that change the number of dimensions, because for fixed-dimensionality arrays the type changes when changing the number of dimensions. However, dynamic-dimensional arrays do not have this limitation. It would be useful to have variants of these methods for dynamic-dimensional arrays that take &mut self instead of self as the argument.
So, the only one we're missing is an in-place variant of .slice_move(). We'll leave .slice_inplace() deprecated for a while, then remove it, then wait a while, then add .slice_inplace() for IxDyn arrays that removes axes like .slice_move() does.
The
.remove_axis()
,.insert_axis()
,.into_subview()
, and.slice_move()
methods do not currently have in-place variants that change the number of dimensions, because for fixed-dimensionality arrays the type changes when changing the number of dimensions. However, dynamic-dimensional arrays do not have this limitation. It would be useful to have variants of these methods for dynamic-dimensional arrays that take&mut self
instead ofself
as the argument.See #425 for some discussion.
The text was updated successfully, but these errors were encountered: