pub type ApplicationResult = Result<Reduction, ApplicationError>;
Expand description
The result of applying a rule to an expression. Contains either a set of reduction instructions or an error.
Aliased Type§
enum ApplicationResult {
Ok(Reduction),
Err(ApplicationError),
}