Skip to content

Commit 68110cc

Browse files
committed
GROOVY-11296: DGM: shuffled preserves input order
4_0_X backport
1 parent 106257a commit 68110cc

File tree

1 file changed

+30
-25
lines changed

1 file changed

+30
-25
lines changed

src/main/java/org/codehaus/groovy/runtime/DefaultGroovyMethods.java

+30-25
Original file line numberDiff line numberDiff line change
@@ -12426,13 +12426,14 @@ public static void shuffle(List<?> self, Random rnd) {
1242612426
}
1242712427

1242812428
/**
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.
1243112430
* <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) }
1243612437
* </pre>
1243712438
*
1243812439
* @param self a List
@@ -12446,14 +12447,16 @@ public static <T> List<T> shuffled(List<T> self) {
1244612447
}
1244712448

1244812449
/**
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.
1245112452
* <pre class="groovyTestCase">
1245212453
* 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) }
1245712460
* </pre>
1245812461
*
1245912462
* @param self a List
@@ -12517,10 +12520,12 @@ public static <T> void shuffle(T[] self, Random rnd) {
1251712520
/**
1251812521
* Creates a new array containing the elements of the specified array but in a random order.
1251912522
* <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}
1252412529
* </pre>
1252512530
*
1252612531
* @param self an array
@@ -12535,14 +12540,16 @@ public static <T> T[] shuffled(T[] self) {
1253512540
}
1253612541

1253712542
/**
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.
1254012545
* <pre class="groovyTestCase">
1254112546
* 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}
1254612553
* </pre>
1254712554
*
1254812555
* @param self an array
@@ -12551,9 +12558,7 @@ public static <T> T[] shuffled(T[] self) {
1255112558
*/
1255212559
public static <T> T[] shuffled(T[] self, Random rnd) {
1255312560
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);
1255712562
return result;
1255812563
}
1255912564

0 commit comments

Comments
 (0)