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