Example #1
0
 public static T RemoveRandom <T>(this IList <T> list)
 => Rnd.Draw(list);
Example #2
0
 public int Compare(object x, object y)
 => Rnd.Integer();
Example #3
0
 public static T ElementAtRandom <T>(this ICollection <T> coll)
 => Rnd.Item(coll);