mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-05-10 05:48:48 +08:00
14 lines
228 B
Ruby
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
|