openpql-runner 0.1.3

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
use super::*;

// TODO: optimize
#[pqlfn]
pub fn scoops(ctx: &PQLFnContext, player: PQLPlayer) -> PQLBoolean {
    best_hi_rating(ctx, player, PQLStreet::River) && !ties_hi(ctx, player)
}