# File lib/facet/integer/times_collect.rb, line 9
  def times_collect(&yld)
    a = []; self.times{ |i| a << yld.call(i) }
    a
  end