definition: |
parseNum :: SMTParser SMT.Numeral parseNum = Parser $ \tokens -> case tokens of [] -> (runParser eof) tokens Num n : ts -> Right (ts, n) t : ts -> (runParser (unexpected t)) ts |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- parser for a numeral |
failfree: |
() |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{() |-> _} |
name: |
parseNum |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
ParserComb.Parser Language.SMTLIB.Scanner.Token Prelude.Int |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |