pub fn expry_compile<'b, 'c>(
    expr: &'b str,
    static_value: Option<&DecodedValue<'b>>,
    scope: &mut MemoryScope<'c>
) -> Result<BytecodeRef<'b>, CompileError<'b>> where
    'c: 'b, 
Expand description

Compiles an expression to bytecode that can quickly be evaluated using expry_eval and expry_slice.