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

14 lines
228 B
Ruby

def hash_select(x)
x.report "select all" do
10000.times do
$small_hash.select { |k,v| true }
end
end
x.report "select none" do
10000.times do
$small_hash.select { |k,v| false }
end
end
end