// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information. 
using System.Collections.Generic;
namespace System.Linq
{
    public static partial class EnumerableEx
    {
        /// 
        /// Returns elements with a distinct key value by using the default equality comparer to compare key values.
        /// 
        /// Source sequence element type.
        /// Key type.
        /// Source sequence.
        /// Key selector.
        /// Sequence that contains the elements from the source sequence with distinct key values.
        public static IEnumerable Distinct(this IEnumerable source, Func keySelector)
        {
            if (source == null)
                throw new ArgumentNullException(nameof(source));
            if (keySelector == null)
                throw new ArgumentNullException(nameof(keySelector));
            return DistinctCore(source, keySelector, EqualityComparer.Default);
        }
        /// 
        /// Returns elements with a distinct key value by using the specified equality comparer to compare key values.
        /// 
        /// Source sequence element type.
        /// Key type.
        /// Source sequence.
        /// Key selector.
        /// Comparer used to compare key values.
        /// Sequence that contains the elements from the source sequence with distinct key values.
        public static IEnumerable Distinct(this IEnumerable source, Func keySelector, IEqualityComparer comparer)
        {
            if (source == null)
                throw new ArgumentNullException(nameof(source));
            if (keySelector == null)
                throw new ArgumentNullException(nameof(keySelector));
            if (comparer == null)
                throw new ArgumentNullException(nameof(comparer));
            return DistinctCore(source, keySelector, comparer);
        }
        private static IEnumerable DistinctCore(IEnumerable source, Func keySelector, IEqualityComparer comparer)
        {
            var set = new HashSet(comparer);
            foreach (var item in source)
            {
                var key = keySelector(item);
                if (set.Add(key))
                {
                    yield return item;
                }
            }
        }
    }
}