definition: |
getTimings :: IO a -> IO (a,Int,Int,Int) getTimings action = do garbageCollect pi1 <- getProcessInfos result <- action pi2 <- getProcessInfos return (result, infoDiff pi1 pi2 RunTime, infoDiff pi1 pi2 ElapsedTime, infoDiff pi1 pi2 GarbageCollections) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Returns the run time, elapsed time, and number of garbage collections --- needed to execute a given IO action. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
getTimings |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Prelude.IO a -> Prelude.IO (a, Prelude.Int, Prelude.Int, Prelude.Int) |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |