예제 #1
0
파일: Distinct.cs 프로젝트: 0xCM/arrows
 public static HashSet <T> SampleDistinct <T>(this IPolyrand random, T[] source, int count)
 => random.SampleDistinct(source.Length, count).Select(i => source[i]).ToHashSet();