Remove specialized impl

This commit is contained in:
L0uisc
2019-12-13 20:54:01 +02:00
parent d116e267d6
commit 209af2201d
-9
View File
@@ -1504,15 +1504,6 @@ pub struct IntoIter<A: Array> {
end: usize,
}
/*impl<A: Array + Clone> Clone for IntoIter<A>
where
A::Item: Copy,
{
fn clone(&self) -> IntoIter<A> {
SmallVec::from_slice(self.as_slice()).into_iter()
}
}*/
impl<A: Array + Clone> Clone for IntoIter<A>
where
A::Item: Clone,