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

Returns true if the given iterator has duplicate elements.