rs_handstrength/
lib.rs

1#![feature(test)]
2extern crate test;
3mod card;
4pub use card::{Card, Suit};
5mod sorting;
6pub use sorting::*;
7mod can_quads;
8pub use can_quads::can_have_quads;
9mod can_libs;
10pub use can_libs::*;
11mod can_strflush;
12pub use can_strflush::*;
13mod can_fullhouse;
14pub use can_fullhouse::*;
15mod can_flush;
16pub use can_flush::*;
17mod can_str;
18pub use can_str::*;
19mod can_trips;
20pub use can_trips::*;
21mod can_twopair;
22pub use can_twopair::*;
23mod can_pair;
24pub use can_pair::*;
25mod can_highcard;
26pub use can_highcard::*;
27mod get_nut_rank;
28pub use get_nut_rank::*;
29mod equity;
30pub use equity::*;
31mod get_winner;
32pub use get_winner::*;
33mod pf_rank;
34pub use pf_rank::*; 
35mod tests;