openpql-runner 0.2.2

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

#[pqlfn]
pub fn duplicated_hand_ranks(ctx: &PQLFnContext, player: PQLPlayer) -> PQLRankSet {
    core::duplicated_hand_ranks(ctx.get_player_slice(player))
}