definition:
|
pairBench :: Benchmark a -> Benchmark b -> Benchmark (a,b)
pairBench bench1 bench2 = benchmark $
execBench bench1 >>= \x -> execBench bench2 >>= \y -> return (x,y)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Combines two benchmarks to a single benchmark where the results
--- are paired.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
pairBench
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Benchmark a -> Benchmark b -> Benchmark (a, b)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|