qplan
Compile typed query expressions (qexpr) into execution-friendly query plans.
This crate is intentionally narrow today: it supports compiling a subset of QExpr
into a conjunctive plan (AND of terms/phrases/near constraints). Unsupported operators
return explicit errors so downstream systems can choose a fallback.
Usage
[]
= { = "https://github.com/arclabs561/qplan" }
Example:
use ;
use compile_conjunctive;
let q = And;
let p = compile_conjunctive.unwrap;
assert!;
Development