hash_shift_u24.rb   [plain text]


h = {}

(0xff4000..0xffffff).each do |i|
  h[i] = nil
end

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