definition:
|
addFailedFuncToStats :: String -> String -> VState -> VState
addFailedFuncToStats fn qfun vstate =
vstate { failedFuncs = (fn,qfun) : failedFuncs vstate }
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Adds a possibly failing call in a functions and the called function.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,{VState}) |-> {VState}}
|
name:
|
addFailedFuncToStats
|
precedence:
|
no precedence defined
|
result-values:
|
{VState}
|
signature:
|
String -> String -> VState -> VState
|
solution-complete:
|
operationally complete operation
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|