definition:
|
unwrapApply :: CTypeExpr -> [CTypeExpr]
unwrapApply te = case te of
CTApply a b -> unwrapApply a ++ [b]
_ -> [te]
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Converts a recursive type expression to a sequence of type expressions
---
--- Example:
--- unwrapApply (CTApply (CTApply (Cons "map") (Var "x")) (Var "y")) = [Cons "map", Var "x", Var "y"]
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({CTApply}) |-> _ || ({CTVar}) |-> _ || ({CFuncType}) |-> _ || ({CTCons}) |-> _}
|
name:
|
unwrapApply
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
AbstractCurry.Types.CTypeExpr -> [AbstractCurry.Types.CTypeExpr]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|