Numeric#integer? returns true if the receiver is an instance of integral class, or false.
BigDecimal is not an integral object, so it must return false always, as well as Float.
On 02/09/2012 05:45, nobu (Nobuyoshi Nakada) wrote:
Issue #6958 has been updated by nobu (Nobuyoshi Nakada).
Status changed from Open to Rejected
I was wrong.
Numeric#integer? returns true if the receiver is an instance of integral class, or false.
BigDecimal is not an integral object, so it must return false always, as well as Float.
That's an implementation detail, surely? Mathematically, isn't it true
to say that 1.0 (as understood by BigDecimal) is an integer? If so,
wouldn't a second method, #integral? be better for the case where you
want to know if a numeric is of an integral class?
Sure. I've created #6973 for this, although I've switched the method names around from my suggestion above. I'm guessing there's rather more code relying on #integer?'s current implementation than I'd want to personally fix right now :-)
Closing, as it is now covered by feature request #6973
I was also surprised by the fact that .integer? is equivalent to is_a?(Integer). It makes that method completely redundant (and less clear than using is_a?).