pub fn expry_eval_func<'a, 'b, 'c>(
    bytecode: BytecodeRef<'b>,
    value: ValueRef<'b>,
    allocator: &mut MemoryScope<'c>,
    funcs: &'a mut dyn CustomFuncs
) -> Result<DecodedValue<'b>, EvalError<'b>> where
    'c: 'b,
    'b: 'a, 
Expand description

Evaluate expression bytecode in the context of the given value, resulting in a decoded object. This version supports custom user defined functions.