definition:
|
findDecl4name :: [FuncDecl] -> QName -> FuncDecl
findDecl4name [] _ = error "Internal error in fundDecl4name!"
findDecl4name (fd:fds) qn | funcName fd == qn = fd
| otherwise = findDecl4name fds qn
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- find a function declaration in a list of fdecls for a given name:
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({:},_) |-> _}
|
name:
|
findDecl4name
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[FlatCurry.Types.FuncDecl] -> (String, String) -> FlatCurry.Types.FuncDecl
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|