definition: |
getTimingsNF :: a -> IO (Int,Int,Int) getTimingsNF exp = do (_,rt,et,gc) <- getTimings (seq (id $!! exp) (return ())) return (rt,et,gc) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Evaluates the argument to normal form --- and returns the run time, elapsed time, and number of garbage collections --- needed for this evaluation. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
getTimingsNF |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
a -> Prelude.IO (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 |