Skip to main content

BuiltinFn

Type Alias BuiltinFn 

Source
pub type BuiltinFn<O> = Rc<dyn Fn(&mut Interpreter<O>, FunctionCallArgs<O>) -> Result<Value<O>, RuntimeError>>;
Expand description

Type signature for builtin functions (can be function pointers or closures)

Aliased Typeยง

pub struct BuiltinFn<O> { /* private fields */ }