definition:
|
addFailedFuncToStats :: String -> String -> VStateM ()
addFailedFuncToStats fn qfun =
modify $ \vstate -> vstate { failedFuncs = (fn,qfun) : failedFuncs vstate }
|
demand:
|
no demanded arguments
|
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:
|
{(_,_) |-> _}
|
name:
|
addFailedFuncToStats
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> String -> Control.Monad.Trans.State.StateT VState Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|