From: "jballanc (Joshua Ballanco)" Date: 2013-02-03T19:05:14+09:00 Subject: [ruby-core:51823] [ruby-trunk - Bug #7522] Non-core "Type()" Kernel methods return new objects Issue #7522 has been updated by jballanc (Joshua Ballanco). No apology necessary. Thanks for the help! ---------------------------------------- Bug #7522: Non-core "Type()" Kernel methods return new objects https://bugs.ruby-lang.org/issues/7522#change-35802 Author: jballanc (Joshua Ballanco) Status: Assigned Priority: Normal Assignee: matz (Yukihiro Matsumoto) Category: core Target version: next minor ruby -v: 2.0.0-preview1 The methods Array(), String(), Float(), Integer(), Hash(), and Rational() all return their argument when the argument is already an instance of the type in question. For example: a = [] a.equal? Array(a) #=> true However, the similar methods Pathname(), BigDecimal(), and Complex() do not do this: p = Pathname.new('/tmp') p.equal? Pathname(p) #=> false I had the impression that the "Type()" methods were intended as "safe" coercion methods. That is, if no type conversion is required, then the system is left unchanged (and no new objects are created). The attached patch fixes the three methods mentioned above to adhere to this same invariant. -- http://bugs.ruby-lang.org/