Files
RubyMotion/test/Benchmark/app/benchmark/hash/each.rb
2013-11-16 15:35:50 +09:00

9 lines
119 B
Ruby

def hash_each(x)
x.report "each" do
100000.times do
$small_hash.each do |k, v|
end
end
end
end