pub trait CExp<T> {
    fn eval(&self, ee: &mut EvalEnv<'_>, data: &[u8]) -> T;
}
Expand description

Compiled expression which yields type T when evaluated.

Required Methods

Evaluate the compiled expression.

Implementors