pub trait Parser {
// Required method
fn next_atom(
&mut self,
tokenizer: &Tokenizer,
) -> Result<Option<Atom>, String>;
}Expand description
Implemented on a type that yields atoms to be interpreted as MeTTa code. Typically by parsing source text