pub trait Evaluatable { // Required method fn eval(&self, shell: &mut Shell) -> Result<i64, EvalError>; }
Trait implemented by evaluatable arithmetic expressions.
Evaluate the given arithmetic expression, returning the resulting numeric value.
shell