openpql-pql-parser 0.1.0

A parser implementation for Poker Query Language (PQL)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(Debug, Clone, Copy, Eq, PartialEq, derive_more::From)]
pub enum BinOp {
    Add,
    Sub,
    Mul,
    Div,
    Eq,
    Ge,
    Gt,
    Le,
    Lt,
}