definition:
|
starVarExp :: TAExpr -> TAExpr
starVarExp e = case e of
AVar _ i -> AVar boolType (starVar i)
_ -> error $ "Function argument must be variable but found " ++ show e
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Transform variable into a starred variable
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({AVar}) |-> {AVar} || ({ALit}) |-> _ || ({AComb}) |-> _ || ({ALet}) |-> _ || ({AFree}) |-> _ || ({AOr}) |-> _ || ({ACase}) |-> _ || ({ATyped}) |-> _}
|
name:
|
starVarExp
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
FlatCurry.Annotated.Types.AExpr FlatCurry.Types.TypeExpr
-> FlatCurry.Annotated.Types.AExpr FlatCurry.Types.TypeExpr
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|