fudd 0.1.9

Fun with poker. Named after that most famous of rabbit hunters.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::analysis::store::holdem::heads_up_odds::HeadsUpOdds;
use std::collections::HashMap;

#[derive(Clone, Debug, Default)]
pub struct HeadsUpCsv(HashMap<String, HeadsUpOdds>);

impl HeadsUpCsv {
    // pub fn add(&mut self, _row: HeadsUpOdds) {}
}

#[cfg(test)]
#[allow(non_snake_case)]
mod analysis_store_holdem_heads_up_csv {
    // use super::*;
}