CurryInfo: verify-non-fail-2.0.0 / Verify.ESMT.allQIdsOfTerm

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