definition:
|
allVars :: Expr -> [Int]
allVars e = trExpr (:) (const id) comb lt fr (.) cas branch const e []
where
comb _ _ = foldr (.) id
lt bs exp = exp . foldr (.) id (map (\ (n,ns) -> (n:) . ns) bs)
fr vs exp = (vs++) . exp
cas _ exp bs = exp . foldr (.) id bs
branch pat exp = ((args pat)++) . exp
args pat | isConsPattern pat = patArgs pat
| otherwise = []
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- get all variables (also pattern variables) in expression
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
allVars
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
FlatCurry.Types.Expr -> [Prelude.Int]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|