//! This is the core module. It exports the non-holdem
//! related code.
/// card.rs has value and suit.
/// Re-export Card, Value, and Suit
pub use ;
/// Code related to cards in hands.
/// Everything in there should be public.
pub use *;
/// We want to be able to iterate over five card hands.
/// Make that functionality public.
pub use *;
/// Deck is the normal 52 card deck.
/// Export `Deck`
pub use Deck;
/// Flattened deck
/// Export the trait and the result.
pub use ;
/// 5 Card hand ranking code.
/// Export the trait and the results.
pub use ;