definition: |
externalDependent :: [FuncDecl] -> [(QName,[QName])] externalDependent funcs = map (\ (f,fs)->(f,filter (`elem` externalFuncs) fs)) (indirectlyDependent funcs) where externalFuncs = concatMap getExternal funcs getExternal (Func _ _ _ _ (Rule _ _)) = [] getExternal (Func f _ _ _ (External _)) = [f] |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
-- external functions on which a function depends |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> {:,[]}} |
name: |
externalDependent |
precedence: |
no precedence defined |
result-values: |
{:,[]} |
signature: |
[FlatCurry.Types.FuncDecl] -> [((String, String), [(String, String)])] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |