hash_shift_u16.rb   [plain text]


h = {}

(16384..65536).each do |i|
  h[i] = nil
end

300000.times do
  k, v = h.shift
  h[k] = v
end