From b26f773aa019e05655a2367a3e865858cdb33200 Mon Sep 17 00:00:00 2001 From: Adam Kern Date: Tue, 20 May 2025 21:29:14 -0400 Subject: [PATCH] Removes `DataOwned` bound on `remove_index` Closes #1442 --- src/impl_methods.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/impl_methods.rs b/src/impl_methods.rs index 9c2c5efc9..2025ca4ff 100644 --- a/src/impl_methods.rs +++ b/src/impl_methods.rs @@ -3179,13 +3179,7 @@ impl ArrayRef Zip::from(self.lanes_mut(axis)).map_collect(mapping) } } -} -impl ArrayBase -where - S: DataOwned + DataMut, - D: Dimension, -{ /// Remove the `index`th elements along `axis` and shift down elements from higher indexes. /// /// Note that this "removes" the elements by swapping them around to the end of the axis and