macro_rules! parse {
    ($lhs:expr) => { ... };
}
Expand description

Parse Macro

Given a single expression, tokenize and parse the expression into a Cell.

This macro assumes the input is a single valid expression and will panic!() if it encounters lex or parse errors.

Arguments

lhs - The expression to parse