shuffle method

void shuffle ([Random random ])
override

Shuffles the elements of this list randomly.

Implementation

void shuffle([math.Random random]) {
  _listBase.shuffle(random);
}