definition:
|
parseFunDec :: SMTParser SMT.FunDec
parseFunDec
= terminal LParen *> return SMT.FunDec <*> parseSym <* terminal LParen
<*> many parseSortedVar <* terminal RParen <*> parseSort <* terminal RParen
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- parser for a function declaration
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> _}
|
name:
|
parseFunDec
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
ParserComb.Parser Language.SMTLIB.Scanner.Token Language.SMTLIB.Types.FunDec
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|