3 using System.Collections.Generic;
8 public static class ListUtils
13 public static void Shuffle (
this IList list)
15 Random rng =
new Random();
22 int k = rng.Next(n + 1);
32 public static T PopFirst<T>(
this List<T> list)
34 T poppedValue = list[0];
42 public static T PopLast<T> (
this List<T> list)
44 T poppedValue = list[list.Count - 1];
45 list.RemoveAt(list.Count - 1);
52 public static T PopNth<T> (
this List<T> list,
int n)
54 T poppedValue = list[n];
62 public static T GetRandom<T> (
this List<T> list)
64 Random rng =
new Random();
65 return list[rng.Next() % list.Count];