pub trait EvalNamespace {
    fn lookup(
        &mut self,
        name: &str,
        args: Vec<f64>,
        keybuf: &mut String
    ) -> Option<f64>; }
Expand description

All fasteval Namespaces must implement the EvalNamespace trait.

Required Methods§

Perform a variable/function lookup.

May return cached values.

Implementors§