pub fn evaluate_expression(expr: &str, facts: &Facts) -> Result<Value>Expand description
Evaluate an arithmetic expression with field references Example: “Order.quantity * Order.price” with facts containing Order.quantity=10, Order.price=100 Returns: Value::Integer(1000) or Value::Number(1000.0)