From: "headius (Charles Nutter)" Date: 2012-11-25T02:33:14+09:00 Subject: [ruby-core:50048] [ruby-trunk - Feature #6688] Object#replace Issue #6688 has been updated by headius (Charles Nutter). This is an awful, awful idea. Objects should never change their basic type in-place, or the very essence of OO is destroyed. Matz has also said in the past he did not like #become and would not add it to Ruby. It is bad enough that we currently have methods like IO#reopen that change the class of the object. This method is nearly impossible to support in JRuby, because once an object has been constructed we can no longer change its essential type. No no, a thousand times no to #become in Ruby. ---------------------------------------- Feature #6688: Object#replace https://bugs.ruby-lang.org/issues/6688#change-33824 Author: prijutme4ty (Ilya Vorontsov) Status: Open Priority: Normal Assignee: Category: core Target version: Next Major I suggest that #replace works not only on Enumerables but on any Object. It can make use the same object in different places more consistent. It makes it possible to write class Egg; end class Hen; end class HenHouse; attr_accessor :species; end class Incubator; def incubate(egg) Hen.new; end # Here it is! class IncubatorWithReplace; def incubate(egg) egg.replace(Hen.new) end end e1,e2,e3 = Egg.new, Egg.new, Egg.new h1, h2 = HenHouse.new, HenHouse.new # One egg is shared between hen houses h1.species = [e1, e2] h2.species = [e1, e3] p h1 # ==> ,#] p h2 # ==> ,#] # First option. It's bad choise because it makes two "data structures" HenHouse inconsistent: # they have different object while must have the same h1[0] = Incubator.new.incubate(h1[0]) p h1 # ==> ,#] p h2 # ==> ,#] # Second option is ok - now both shared objects're changed. IncubatorWithReplace.new.incubate(h1[0]) h1 # ==> ,#] h2 # ==> ,#] # Third option is bad - it wouldn't affect HenHouses at all e1 = Incubator.new.incubate(e1) p h1 # ==> ,#] p h2 # ==> ,#] # while Fourth option is ok and works as second do IncubatorWithReplace.new.incubate(e1) ## would affect both HenHouses p h1 # ==> ,#] p h2 # ==> ,#] I can't imagine how it'd be realized, it looks like some dark magic with ObjectSpace needed to replace one object at a reference with another at the same reference. But I didn't found a solution. About ret-value. I think it should be two forms: Object#replace(obj, retain = false) If retain is false #replace should return a reference to a new object (in fact the same reference as to old object but with other content) If retain is true, old object should be moved at another place and new reference to it is returned, so: e1 # ==> e1.replace( Hen.new, true ) # ==> e1 # ==> -- http://bugs.ruby-lang.org/