Constant eff_wordlist::large::LIST

source ·
pub const LIST: &[(u32, &str)];
Expand description

The wordlist as an array of tuples - the first element being the dice roll and second the equivalent word

§Examples:

let (first_roll, first_word) = eff_wordlist::large::LIST[0];
assert_eq!(11111, first_roll);
assert_eq!("abacus", first_word);