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

8 lines
99 B
Ruby

def hash_keys(x)
x.report "keys" do
100000.times do
$small_hash.keys
end
end
end