mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
37 lines
1.0 KiB
C#
37 lines
1.0 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Wabbajack
|
|||
|
{
|
|||
|
public static class EnumerableExt
|
|||
|
{
|
|||
|
#region Shuffle
|
|||
|
/// https://stackoverflow.com/questions/5807128/an-extension-method-on-ienumerable-needed-for-shuffling
|
|||
|
|
|||
|
public static IEnumerable<T> Shuffle<T>(this IEnumerable<T> source, Random rng)
|
|||
|
{
|
|||
|
if (source == null) throw new ArgumentNullException("source");
|
|||
|
if (rng == null) throw new ArgumentNullException("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];
|
|||
|
}
|
|||
|
}
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|