mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-05-06 08:53:29 +08:00
9 lines
165 B
Ruby
9 lines
165 B
Ruby
def hash_delete_if(x)
|
|
x.report "delete_if" do
|
|
10000.times do
|
|
small_hash = $small_hash.dup
|
|
small_hash.delete_if { |k,v| v.even? }
|
|
end
|
|
end
|
|
end
|