definition:
|
funcOf :: String -> [IFunction] -> IFunction
funcOf fn [] = error $ "Function '" ++ fn ++ "' not found!"
funcOf fn (fd@(IFunction (_,f,_) _ _ _ _) : funs) =
if fn==f then fd else funcOf fn funs
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Returns the function with a given (unqualified) name.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{[]}) |-> _ || (_,{:}) |-> _}
|
name:
|
funcOf
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> [ICurry.Types.IFunction] -> ICurry.Types.IFunction
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|