MinByWithTies.cs 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT License.
  3. // See the LICENSE file in the project root for more information.
  4. using System.Collections.Generic;
  5. namespace System.Linq
  6. {
  7. public static partial class EnumerableEx
  8. {
  9. /// <summary>
  10. /// Returns the elements with the minimum key value by using the default comparer to compare key values.
  11. /// </summary>
  12. /// <typeparam name="TSource">Source sequence element type.</typeparam>
  13. /// <typeparam name="TKey">Key type.</typeparam>
  14. /// <param name="source">Source sequence.</param>
  15. /// <param name="keySelector">Key selector used to extract the key for each element in the sequence.</param>
  16. /// <returns>List with the elements that share the same minimum key value.</returns>
  17. public static IList<TSource> MinByWithTies<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector)
  18. {
  19. if (source == null)
  20. throw new ArgumentNullException(nameof(source));
  21. if (keySelector == null)
  22. throw new ArgumentNullException(nameof(keySelector));
  23. return MinByWithTies(source, keySelector, Comparer<TKey>.Default);
  24. }
  25. /// <summary>
  26. /// Returns the elements with the minimum key value by using the specified comparer to compare key values.
  27. /// </summary>
  28. /// <typeparam name="TSource">Source sequence element type.</typeparam>
  29. /// <typeparam name="TKey">Key type.</typeparam>
  30. /// <param name="source">Source sequence.</param>
  31. /// <param name="keySelector">Key selector used to extract the key for each element in the sequence.</param>
  32. /// <param name="comparer">Comparer used to determine the minimum key value.</param>
  33. /// <returns>List with the elements that share the same minimum key value.</returns>
  34. public static IList<TSource> MinByWithTies<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector, IComparer<TKey> comparer)
  35. {
  36. if (source == null)
  37. throw new ArgumentNullException(nameof(source));
  38. if (keySelector == null)
  39. throw new ArgumentNullException(nameof(keySelector));
  40. if (comparer == null)
  41. throw new ArgumentNullException(nameof(comparer));
  42. return ExtremaBy(source, keySelector, (key, minValue) => -comparer.Compare(key, minValue));
  43. }
  44. }
  45. }