class Benchmark::Report

def item(label = "", *format, &blk) # :yield:

:yield:

formatting rules.
formatted by +format+. See Tms#format for the
Prints the +label+ and measured time for the block,
def item(label = "", *format, &blk) # :yield:
  w = label.to_s.length
  @width = w if @width < w
  @list << res = Benchmark.measure(label, &blk)
  res
end