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

8 lines
116 B
Ruby

def hash_fetch(x)
x.report "fetch" do
1000000.times do
$small_hash.fetch(:SlBkyplxcZ)
end
end
end