コード例 #1
0
 public static IEnumerable <T> Shuffle <T>(this IEnumerable <T> items)
 {
     return(items.OrderBy(_ => IntegerGenerator.Any()));
 }