| Index: sdk/lib/core/list.dart
|
| diff --git a/sdk/lib/core/list.dart b/sdk/lib/core/list.dart
|
| index d311785a231d371c5e289352c9bd6a78c3118a3f..c84c745e8a3f8cf489b26dbefd2f7e139ebec538 100644
|
| --- a/sdk/lib/core/list.dart
|
| +++ b/sdk/lib/core/list.dart
|
| @@ -165,6 +165,11 @@ abstract class List<E> implements Iterable<E> {
|
| void sort([int compare(E a, E b)]);
|
|
|
| /**
|
| + * Shuffles the elements of this list randomly.
|
| + */
|
| + void shuffle();
|
| +
|
| + /**
|
| * Returns the first index of [element] in this list.
|
| *
|
| * Searches the list from index [start] to the length of the list.
|
|
|