google_hash
it allows for
a = GoogleHash.new
a[3] = 4
>> a[3]
=> 4
http://www.ruby-forum.com/topic/200649
and allows for #each calls quite a bit faster than 1.9
while storing the keys as native int's
so far so good :)
I guess I could store them as longs, though that wouldn't gain my
anything on 32-bit machines...
-r