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:
  print label.to_s.ljust(@width)
  @list << res = Benchmark.measure(label, &blk)
  print res.format(@format, *format)
  res
end