definition:
|
unionFDecls :: [FuncDecl] -> [FuncDecl] -> [FuncDecl]
unionFDecls = unionBy (\fd1 fd2 -> funcName fd1 == funcName fd2)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
name:
|
unionFDecls
|
precedence:
|
no precedence defined
|
result-values:
|
{unionBy}
|
signature:
|
[FlatCurry.Types.FuncDecl] -> [FlatCurry.Types.FuncDecl]
-> [FlatCurry.Types.FuncDecl]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|