definition:
|
range :: TypeExpr -> TypeExpr
range texpr = case texpr of
(FuncType _ ran) -> ran
_ -> error "FlatCurryGoodies.range: no functional type"
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- get range from functional type
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({FuncType}) |-> _ || ({TVar}) |-> _ || ({TCons}) |-> _ || ({ForallType}) |-> _}
|
name:
|
range
|
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
|