definition:
|
demandOf :: String -> [IFunction] -> Maybe Int
demandOf fn prog = case d of
[] -> Nothing
[i] -> Just i
_ -> error $ "Function '" ++ fn ++
"' has more than one demanded argument (not yet supported)"
where
IFunction _ _ _ d _ = funcOf fn prog
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Returns the demanded argument of a given function name.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
demandOf
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> [ICurry.Types.IFunction] -> Prelude.Maybe Prelude.Int
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|