CurryInfo: property-prover-2.0.0 / ESMT.allQIdsOfTerm

definition:
allQIdsOfTerm :: SMT.Term -> [SMT.QIdent]
allQIdsOfTerm (SMT.TConst _)     = []
allQIdsOfTerm (SMT.TComb f args) = foldr union [f] (map allQIdsOfTerm args)
allQIdsOfTerm (SMT.Forall _ arg) = allQIdsOfTerm arg
allQIdsOfTerm (SMT.Exists _ arg) = allQIdsOfTerm arg
allQIdsOfTerm (SMT.Let bs e)     =
  foldr union [] $ map allQIdsOfTerm $ e : map snd bs
allQIdsOfTerm (SMT.Match e ps)   =
  foldr union [] $ map allQIdsOfTerm $ e : map snd ps
allQIdsOfTerm (SMT.Annot e _)    = allQIdsOfTerm e
demand:
argument 1
deterministic:
deterministic operation
documentation:
---------------------------------------------------------------------------
-- All possibly sorted identifiers occurring in a SMT term.
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({TConst}) |-> {[]} || ({TComb}) |-> _ || ({Forall}) |-> _ || ({Exists}) |-> _ || ({Let}) |-> _ || ({Match}) |-> _ || ({Annot}) |-> _}
name:
allQIdsOfTerm
precedence:
no precedence defined
result-values:
_
signature:
Language.SMTLIB.Types.Term -> [Language.SMTLIB.Types.QIdent]
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
reducible on all ground data terms