openpql-runner 0.1.4

A high-performance Rust implementation of Poker Query Language (PQL), enabling SQL-like queries for poker analysis and calculations. This project is a spiritual successor to the original Java implementation developed by Odds Oracle.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use super::*;

mod internal;
mod kind;
mod pql_error;
mod runtime;
mod vm;

pub use internal::*;
pub use kind::*;
pub use pql_error::*;
pub use runtime::*;
pub use vm::*;

pub type PQLResult<T> = Result<T, PQLError>;