Thanks for this crate!
I want to know do you plan to support BooleanExpression::Condition(cond,then_exp,else_exp). The conditional operator cond ? then_exp : else_exp is equal to (cond & then_exp) | (!cond & else_exp).
If it is in the plan, I can help for the parser implementation.
Thanks for this crate! I want to know do you plan to support
BooleanExpression::Condition(cond,then_exp,else_exp)
. The conditional operatorcond ? then_exp : else_exp
is equal to(cond & then_exp) | (!cond & else_exp)
. If it is in the plan, I can help for the parser implementation.