pub fn parse<'a, T: Iterator<Item = Result<Tokens, String>>>( stream: T, ) -> Result<Box<Node>, String>
Using an iterator (usually LazyTokenStream), parse tokens and return a result with the root node
LazyTokenStream