Alex Crichton 0ee95b917b std: Mark IntoIterator::into_iter as #[stable
Right now it is not possible to write a `for` loop without opting-in to the
`core` feature due to the way they're expanding (calling
`::std::iter::IntoIterator::into_iter`). There are some planned tweaks to the
`IntoIterator` trait (adding an `Item` associated type) which will cause
implementations of `IntoIterator` to break, but the *usage* of the trait is
currently stable.

This commit marks the method `into_iter` as stable as the name will not be
changing, nor the fact that it takes no arguments and returns one type (which is
determiend by the `Self` type). This means that usage of `for` loops is now
stable but manual implementations of the `IntoIterator` trait will continue to
be unstable.
2015-02-09 16:26:52 -08:00
..
2015-02-07 10:49:58 -08:00
2015-02-07 10:49:58 -08:00
2015-02-09 19:58:49 +13:00
2015-02-06 11:59:10 +01:00
2015-02-07 10:49:58 -08:00
2015-02-09 19:58:49 +13:00
2015-02-09 19:58:49 +13:00
2015-02-07 10:49:58 -08:00
2015-02-09 19:58:49 +13:00