pokerkit 1.1.0

Core type aliases, traits, and constants for robopoker
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Generic action translation over typed lattices (folded in from the former
//! `dragoman` crate). Game-agnostic: anchors are `f64` + caller payloads on a
//! totally-ordered, axis-tagged scalar. The runtime `Translation` enum that
//! consumes these primitives lives in `super::translation`.
mod anchor;
mod axis;
mod bracket;
mod lattice;
mod scalar;
mod translated;

pub use anchor::*;
pub use axis::*;
pub use bracket::*;
pub use lattice::*;
pub use scalar::*;
pub use translated::*;