mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-05-27 18:00:50 +08:00
16 lines
214 B
Ruby
16 lines
214 B
Ruby
def hash_clear(x)
|
|
x.report "clear with empty hash" do
|
|
h = {}
|
|
10000.times do
|
|
h.clear
|
|
end
|
|
end
|
|
|
|
x.report "clear" do
|
|
10000.times do
|
|
h = $small_hash.dup
|
|
h.clear
|
|
end
|
|
end
|
|
end
|