1//! Host funcitons 2use crate::{value::Value, Result}; 3 4/// Host function generic type 5pub type HostFuncType<T> = fn(&mut T, &[Value]) -> Result<Option<Value>>;