pub trait SymParser<Sym, Input>: Copy {
    fn parse_sym(self, i: Input) -> SmtRes<Sym>;
}
Expand description

Can parse symbols.

Required Methods

Parses a symbol.

Implementations on Foreign Types

Implementors