Expand description
This crate provides a library for working with logical expressions.
It defines the LogicalExpression
enum, which represents a logical expression with conditions
combined using AND and OR operators. The library also provides functions for parsing logical
expressions from strings and expanding them into a list of lists, where the inner lists represent
the AND conditions and the outer lists represent the OR conditions.
Enumsยง
- Logical
Expression - Represents a logical expression with conditions combined using AND and OR operators.
- Parse
Error - Represents the possible errors that can occur during parsing of a logical expression.