let mut iter = IntoIterator::into_iter(y);
let mut iter = y.into_iter();
> Otherwise you'd be writing methods with absolutely no idea how the language would interact with it.
Right, this is what's guessed, because it makes the most sense.
> Otherwise you'd be writing methods with absolutely no idea how the language would interact with it.
Right, this is what's guessed, because it makes the most sense.