pub fn has_duplicates<T>(iter: T) -> bool
where T: IntoIterator, <T as IntoIterator>::Item: Eq + Hash,
Expand description

Returns true if the given iterator has duplicate elements.