@@ -12426,13 +12426,14 @@ public static void shuffle(List<?> self, Random rnd) {
12426
12426
}
12427
12427
12428
12428
/**
12429
- * Creates a new list containing the elements of the specified list
12430
- * but in a random order.
12429
+ * Creates a new list containing the elements of the specified list but in a random order.
12431
12430
* <pre class="groovyTestCase">
12432
- * def orig = ["a", 4, false]
12433
- * def shuffled = orig.shuffled()
12434
- * assert orig.size() == shuffled.size()
12435
- * assert orig.every{ shuffled.contains(it) }
12431
+ * def list = ["a", 4, false]
12432
+ * def result = list.shuffled()
12433
+ * assert list !== result
12434
+ * assert list == ["a", 4, false]
12435
+ * assert list.size() == result.size()
12436
+ * assert list.every{ result.contains(it) }
12436
12437
* </pre>
12437
12438
*
12438
12439
* @param self a List
@@ -12446,14 +12447,16 @@ public static <T> List<T> shuffled(List<T> self) {
12446
12447
}
12447
12448
12448
12449
/**
12449
- * Creates a new list containing the elements of the specified list but in a random
12450
- * order using the specified random instance as the source of randomness.
12450
+ * Creates a new list containing the elements of the specified list but in a random order
12451
+ * using the specified random instance as the source of randomness.
12451
12452
* <pre class="groovyTestCase">
12452
12453
* def r = new Random()
12453
- * def orig = ["a", 4, false]
12454
- * def shuffled = orig.shuffled(r)
12455
- * assert orig.size() == shuffled.size()
12456
- * assert orig.every{ shuffled.contains(it) }
12454
+ * def list = ["a", 4, false]
12455
+ * def result = list.shuffled(r)
12456
+ * assert list !== result
12457
+ * assert list == ["a", 4, false]
12458
+ * assert list.size() == result.size()
12459
+ * assert list.every{ result.contains(it) }
12457
12460
* </pre>
12458
12461
*
12459
12462
* @param self a List
@@ -12517,10 +12520,12 @@ public static <T> void shuffle(T[] self, Random rnd) {
12517
12520
/**
12518
12521
* Creates a new array containing the elements of the specified array but in a random order.
12519
12522
* <pre class="groovyTestCase">
12520
- * Integer[] orig = [10, 5, 20]
12521
- * def array = orig.shuffled()
12522
- * assert orig.size() == array.size()
12523
- * assert orig.every{ array.contains(it) }
12523
+ * Integer[] array = [10, 5, 20]
12524
+ * def result = array.shuffled()
12525
+ * assert array !== result
12526
+ * assert array.length == result.length
12527
+ * assert array.every{ result.contains(it) }
12528
+ * assert array == new Integer[] {10, 5, 20}
12524
12529
* </pre>
12525
12530
*
12526
12531
* @param self an array
@@ -12535,14 +12540,16 @@ public static <T> T[] shuffled(T[] self) {
12535
12540
}
12536
12541
12537
12542
/**
12538
- * Creates a new array containing the elements of the specified array but in a random
12539
- * order using the specified random instance as the source of randomness.
12543
+ * Creates a new array containing the elements of the specified array but in a random order
12544
+ * using the specified random instance as the source of randomness.
12540
12545
* <pre class="groovyTestCase">
12541
12546
* def r = new Random()
12542
- * Integer[] orig = [10, 5, 20]
12543
- * def array = orig.shuffled(r)
12544
- * assert orig.size() == array.size()
12545
- * assert orig.every{ array.contains(it) }
12547
+ * Integer[] array = [10, 5, 20]
12548
+ * def result = array.shuffled(r)
12549
+ * assert array !== result
12550
+ * assert array.length == result.length
12551
+ * assert array.every{ result.contains(it) }
12552
+ * assert array == new Integer[] {10, 5, 20}
12546
12553
* </pre>
12547
12554
*
12548
12555
* @param self an array
@@ -12551,9 +12558,7 @@ public static <T> T[] shuffled(T[] self) {
12551
12558
*/
12552
12559
public static <T> T[] shuffled(T[] self, Random rnd) {
12553
12560
T[] result = self.clone();
12554
- List<T> items = Arrays.asList(self);
12555
- Collections.shuffle(items, rnd);
12556
- System.arraycopy(items.toArray(), 0, result, 0, items.size());
12561
+ Collections.shuffle(Arrays.asList(result), rnd);
12557
12562
return result;
12558
12563
}
12559
12564
0 commit comments