mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-05-15 17:08:08 +08:00
15 lines
238 B
Ruby
15 lines
238 B
Ruby
def hash_reject(x)
|
|
x.report "reject" do
|
|
10000.times do
|
|
$small_hash.reject { |k,v| v.even?}
|
|
end
|
|
end
|
|
|
|
x.report "reject!" do
|
|
10000.times do
|
|
h = $small_hash.dup
|
|
h.reject! { |k,v| v.even?}
|
|
end
|
|
end
|
|
end
|