definition:
|
tConsArgs :: TypeExpr -> [TypeExpr]
tConsArgs texpr = case texpr of
(TCons _ args) -> args
_ -> error "FlatCurryGoodies.tConsArgs: no constructed type"
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- get arguments from constructed type
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({TCons}) |-> _ || ({TVar}) |-> _ || ({FuncType}) |-> _ || ({ForallType}) |-> _}
|
name:
|
tConsArgs
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
FlatCurry.Types.TypeExpr -> [FlatCurry.Types.TypeExpr]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|