From: Thomas Hafner Date: 2007-03-11T08:55:06+09:00 Subject: get object from its object-specific class? Hello, is there a way to get an object, if only its object-specific class is given? For instance, given c = class << Hash[:a, 5] def mult(x) self[:a] * x end self end can I retrieve the hash object via evaluation of c? Regards Thomas