openpql-pql-parser 0.1.5

A parser implementation for Poker Query Language (PQL)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# openpql-pql-parser

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Rust](https://img.shields.io/badge/rust-1.85+-blue.svg)](https://www.rust-lang.org)

PQL syntax parser. Execution lives in [`openpql-runner`](../openpql-runner).

```rust,ignore
use openpql_pql_parser::parse_pql;

let stmts = parse_pql(
    "select equity from hero='AhKh', villain='QQ+', board='Ah9s2c', game='holdem'"
)?;
```

MIT — see [LICENSE](../LICENSE).