Kind of object

$ irb

class MyHash < Hash ; end

=> nil

h = MyHash.new

=> {}

h.is_a? Hash

=> true

Cheers,

Andy