definition:
|
getElapsedTimeNF :: IO a -> IO (a,Int)
getElapsedTimeNF action = do
garbageCollect
pi1 <- getProcessInfos
value <- action >>= (return $!!)
pi2 <- getProcessInfos
return (value, infoDiff pi1 pi2 ElapsedTime)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Execute an I/O action, evaluate result to normal form, and return the
--- result together with the elapsed time (in milliseconds).
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
getElapsedTimeNF
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.IO a -> Prelude.IO (a, Prelude.Int)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|