Actions
Bug #7522
closedNon-core "Type()" Kernel methods return new objects
Description
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.
Files
Actions
Like0
Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0Like0