pub fn expry_parse_expression<'a, 'b, 'c>(
    reader: &'a str,
    scope: &mut MemoryScope<'c>
) -> Result<DecodedValue<'b>, CompileError<'b>>
where 'a: 'b, 'c: 'b,
Expand description

Parses an expry expression input to a decoded value. This involves compiling and evaluating the input. For more flexibility and re-use of compiled expression, see [expry_compile] and expry_eval.