David Tolnay | 4c9be37 | 2016-10-06 00:47:37 -0700 | [diff] [blame] | 1 | #[stable(feature = "rust1", since = "1.0.0")] |
2 | impl<T> FromIterator<T> for Vec<T> { | ||||
3 | #[inline] | ||||
4 | fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Vec<T> {} | ||||
5 | } | ||||
6 | |||||
7 | impl<T> IntoIterator for Vec<T> { | ||||
8 | type Item = T; | ||||
9 | type IntoIter = IntoIter<T>; | ||||
10 | } | ||||
11 | |||||
12 | impl<T: ?Sized> !Sync for *mut T {} | ||||
13 | |||||
14 | impl [T; 8] { | ||||
15 | const LEN: usize = 8; | ||||
16 | } |