poker/
constants.rs

1//! Private constants used throughout the crate.
2
3/// The first thirteen prime numbers in ascending order.
4pub const PRIMES: [i32; 13] = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41];
5
6/// Represents a range from 0 to and including 12, used for representing card
7/// ranks in some instances.
8pub const INT_RANKS: std::ops::Range<i16> = 0..13;