CurryInfo: benchmark-papers-3.0.0 / Test.Benchmark.execBench

definition:
 
execBench :: Benchmark a -> IO a
execBench (BM pre post action) = do
  pre
  result <- action
  post
  return result
demand:
 argument 1
deterministic:
 deterministic operation
documentation:
 
Executes a benchmark and returns the benchmark results.
failfree:
 _
indeterministic:
 referentially transparent operation
infix:
 no fixity defined
iotype:
 {({BM}) |-> _}
name:
 execBench
precedence:
 no precedence defined
result-values:
 _
signature:
 Benchmark a -> Prelude.IO a
solution-complete:
 operation might suspend on free variables
terminating:
 possibly non-terminating
totally-defined:
 reducible on all ground data terms