mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 03:28:28 -07:00
52 lines
No EOL
1.6 KiB
C#
52 lines
No EOL
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Ombi.Helpers
|
|
{
|
|
public static class LinqHelpers
|
|
{
|
|
public static IEnumerable<TSource> DistinctBy<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector)
|
|
{
|
|
HashSet<TKey> knownKeys = new HashSet<TKey>();
|
|
foreach (TSource source1 in source)
|
|
{
|
|
if (knownKeys.Add(keySelector(source1)))
|
|
yield return source1;
|
|
}
|
|
}
|
|
|
|
public static HashSet<T> ToHashSet<T>(
|
|
this IEnumerable<T> source,
|
|
IEqualityComparer<T> comparer = null)
|
|
{
|
|
return new HashSet<T>(source, comparer);
|
|
}
|
|
|
|
public static IEnumerable<T> Shuffle<T>(this IEnumerable<T> source)
|
|
{
|
|
return source.Shuffle(new Random());
|
|
}
|
|
|
|
public static IEnumerable<T> Shuffle<T>(this IEnumerable<T> source, Random rng)
|
|
{
|
|
if (source == null) throw new ArgumentNullException(nameof(source));
|
|
if (rng == null) throw new ArgumentNullException(nameof(rng));
|
|
|
|
return source.ShuffleIterator(rng);
|
|
}
|
|
|
|
private static IEnumerable<T> ShuffleIterator<T>(
|
|
this IEnumerable<T> source, Random rng)
|
|
{
|
|
var buffer = source.ToList();
|
|
for (int i = 0; i < buffer.Count; i++)
|
|
{
|
|
int j = rng.Next(i, buffer.Count);
|
|
yield return buffer[j];
|
|
|
|
buffer[j] = buffer[i];
|
|
}
|
|
}
|
|
}
|
|
} |