Let's say I have the following class:
class MyClass
@@instances = []
def initialize
@@instances << self
end#def
def delete
@@instances.delete(self)
#what now??
self.replace nil #doesn't do the trick
end#def
end#class
I would like to do the following:
o = MyClass.new
o.delete
And o will be nil on execution of delete. Any ideas?

owhich is a reference to it and which is not accessible from thedeletemethod. – Eureka Dec 5 '12 at 15:11