pub fn parse_condition(condition_str: &str) -> Result<Value>Expand description
Parse a condition string into a Value (for if statements) Supports: var > value, var < value, var == value, var != value, var >= value, var <= value Also supports logical operators: &&/and, ||/or, !/not