标签: ruby benchmarking
在ruby的基准测试中:
Benchmark.benchmark { |b| 2.times { b.report('1') { sleep 0.1 } } }
在b.report('1')次迭代中调用2.times会导致两个单独的报告。
b.report('1')
2.times
有没有办法动态地,动态地将这些组合成一个报告?