1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//! This is the core module. It exports the non-holdem
//! related code.
pub use RSPokerError;
/// card.rs has value and suit.
/// Re-export Card, Value, and Suit
pub use ;
/// The bitset hand.
/// Export the hand
pub use *;
/// Code related to cards in flattened 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 FlatDeck;
/// 5 Card hand ranking code.
/// Export the trait and the results.
pub use ;
// u16 backed player set.
// u64 backed card set.
// Export the bit set and the iterator
pub use ;
// Export the bit set and the iterator used for cards (52 cards so u64 backed)
pub use ;