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
Currently, many collections (including Vec) both implement the IntoIterator trait (which has .into_iter() as a required method) and implement .into_iter() as an inherent method. I think that we should remove the inherent method and put the IntoIterator trait in the prelude.
The text was updated successfully, but these errors were encountered:
Currently, many collections (including
Vec
) both implement theIntoIterator
trait (which has.into_iter()
as a required method) and implement.into_iter()
as an inherent method. I think that we should remove the inherent method and put theIntoIterator
trait in the prelude.The text was updated successfully, but these errors were encountered: