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

8 lines
148 B
Ruby

def hash_values_at(x)
x.report "values_at" do
1000000.times do
$small_hash.values_at(700648627, 639030613, 471761289)
end
end
end