CurryInfo: curry-interface-2.0.1 / CurryInterface.Parser.unwrapApply

definition:
unwrapApply :: TypeExpr -> [TypeExpr]
unwrapApply t = case t of
    ApplyType l r -> unwrapApply l ++ unwrapApply r
    _ -> [t]
demand:
argument 1
deterministic:
deterministic operation
documentation:
-- Completely unwraps applications of type expressions
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({ApplyType}) |-> _ || ({ConstructorType}) |-> _ || ({VariableType}) |-> _ || ({TupleType}) |-> _ || ({ListType}) |-> _ || ({ArrowType}) |-> _ || ({ParenType}) |-> _ || ({ForallType}) |-> _}
name:
unwrapApply
precedence:
no precedence defined
result-values:
_
signature:
CurryInterface.Types.TypeExpr -> [CurryInterface.Types.TypeExpr]
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
reducible on all ground data terms