definition:
|
tconsOf :: CTypeExpr -> [QName]
tconsOf (CTVar _) = []
tconsOf (CFuncType from to) = union (tconsOf from) (tconsOf to)
tconsOf (CTCons tc) = [tc]
tconsOf (CTApply tc ta) = union (tconsOf tc) (tconsOf ta)
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
name:
|
tconsOf
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
AbstractCurry.Types.CTypeExpr -> [(String, String)]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|