add random shuffle util
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
1a09eb0f02
commit
d82ea331cf
2 changed files with 7 additions and 2 deletions
|
@ -4,7 +4,12 @@ use std::{
|
|||
};
|
||||
|
||||
use arrayvec::ArrayString;
|
||||
use rand::{thread_rng, Rng};
|
||||
use rand::{seq::SliceRandom, thread_rng, Rng};
|
||||
|
||||
pub fn shuffle<T>(vec: &mut [T]) {
|
||||
let mut rng = thread_rng();
|
||||
vec.shuffle(&mut rng);
|
||||
}
|
||||
|
||||
pub fn string(length: usize) -> String {
|
||||
thread_rng()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue