From: "dtrusty@..." Date: 2007-03-31T03:40:05+09:00 Subject: Is there a library/mechanism for an object/hash hybrid? Hi, There are times when I want to store items in a hash, and yet refer the items using class/object method syntax. For example, I may want to do this: myhash['aaa'] = 'bbb' and then be able to refer to the 'aaa' element either as myhash['aaa'] --or-- myhash.aaa I started writing my own class to do this, but I wanted to check to see if anyone had already done so. What do you think? Thanks, David