(no title)
davnola | 13 years ago
s = "foo"
d = SimpleDelegator.new s
s2 = d << "bar"
s2.object_id == s # true
I think SimpleDelegator is really neat but totally dangerous. Doesn't this ring alarm bells with you? # delegate.rb L117
#
# Returns true if two objects are considered of equal value.
#
def ==(obj)
return true if obj.equal?(self)
self.__getobj__ == obj
end
No comments yet.