Randomly shuffle a sequence in-place. :param seq: sequence to shuffle randomly :type seq: list
(self, seq)
| 111 | return selection |
| 112 | |
| 113 | def randShuffle(self, seq): |
| 114 | """ |
| 115 | Randomly shuffle a sequence in-place. |
| 116 | |
| 117 | :param seq: sequence to shuffle randomly |
| 118 | :type seq: list |
| 119 | """ |
| 120 | RandomGen.randGen.shuffle(seq) |
| 121 | |
| 122 | def randGenVar(self, minVarLen=None, maxVarLen=None): |
| 123 | """ |
no outgoing calls
no test coverage detected