We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement Clone for IntoIter<A: Array> where A: Clone
This would be in line with the Iter struct that is returned when calling into_iter() on a Vec. https://doc.rust-lang.org/std/slice/struct.Iter.html
into_iter()
Vec
The text was updated successfully, but these errors were encountered:
If someone would like to implement this, it could be done using IntoIter::as_slice (recently added in #182) and SmallVec::from_slice.
IntoIter::as_slice
SmallVec::from_slice
Sorry, something went wrong.
941d6aa
Successfully merging a pull request may close this issue.
Implement Clone for IntoIter<A: Array> where A: Clone
This would be in line with the Iter struct that is returned when calling
into_iter()
on aVec
.https://doc.rust-lang.org/std/slice/struct.Iter.html
The text was updated successfully, but these errors were encountered: