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

8 lines
106 B
Ruby

def hash_length(x)
x.report "length" do
1000000.times do
$small_hash.length
end
end
end