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

8 lines
107 B
Ruby

def hash_flatten(x)
x.report "flatten" do
10000.times do
$small_hash.flatten
end
end
end