pub type BuiltinFn = dyn Fn(&[Value]) -> Result<Value> + Send + Sync;Expand description
A native builtin. Takes already-evaluated args + current env + interpreter handle so it can evaluate Sexp if it needs to (for short-circuit forms, the interpreter uses special-form dispatch instead).