definition:
|
combArgs :: AExpr a -> [AExpr a]
combArgs aexpr = case aexpr of
(AComb _ _ _ args) -> args
_ -> error "AnnotatedFlatCurryGoodies.combArgs: no combined expression"
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- get arguments of a combined expression
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({AComb}) |-> _ || ({AVar}) |-> _ || ({ALit}) |-> _ || ({ALet}) |-> _ || ({AFree}) |-> _ || ({AOr}) |-> _ || ({ACase}) |-> _ || ({ATyped}) |-> _}
|
name:
|
combArgs
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
FlatCurry.Annotated.Types.AExpr a -> [FlatCurry.Annotated.Types.AExpr a]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|