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

9 lines
128 B
Ruby

def hash_each_key(x)
x.report "each_key" do
100000.times do
$small_hash.each_key do |k|
end
end
end
end