open_pql/prim/
mod.rs

1use std::mem::transmute;
2
3pub mod eval;
4mod integer;
5pub mod math;
6pub mod rank;
7
8pub use integer::normalize_u64;
9use math::combinatorics::{
10    combination_of_2_ranks_to_index, combination_of_3_ranks_to_index,
11};