1 2 3 4 5
pub trait FromIterator<A>: Sized { fn from_iter<T>(iter: T) -> Self where T: IntoIterator<Item = A>; }