definition:
|
removeForall :: TypeExpr -> TypeExpr
removeForall texp = case texp of
ForallType _ te -> removeForall te
FuncType te1 te2 -> FuncType (removeForall te1) (removeForall te2)
TCons qn tes -> TCons qn (map removeForall tes)
TVar _ -> texp
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Strip forall type quantifiers in order to keep compatibility
-- with Currygle 0.3.0:
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({ForallType}) |-> _ || ({FuncType}) |-> {FuncType} || ({TCons}) |-> {TCons} || ({TVar}) |-> {TVar}}
|
name:
|
removeForall
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
FlatCurry.Types.TypeExpr -> FlatCurry.Types.TypeExpr
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|