in reply to Re: Something that bugs me about the Numeric class hierarchy in Perl 6
in thread Something that bugs me about the Numeric class hierarchy in Perl 6

The intermediate results are indeed rats. And yes the result is a rat that looks like an integer. My point was that I wish there was no difference between a "rat that looks like an integer" and an actual integer. In other words, I wish integers were a special case of rats, because in math that's what they are, maybe not by definition, but at least by property : the set Z in included in the set Q. Thus my suggestion of using perl6's subset concept.

  • Comment on Re^2: Something that bugs me about the Numeric class hierarchy in Perl 6

Replies are listed 'Best First'.
Re^3: Something that bugs me about the Numeric class hierarchy in Perl 6
by Ovid (Cardinal) on Jan 08, 2016 at 10:10 UTC

    I just noticed this discussion and it's a difference of opinion I've also had with the core P6 devs: integers and rats are the same. That being said, integer math should be much faster than rational math and I don't know how difficult it would be to special case the code for that.

    On the flip side, by restricting this behavior now, they wouldn't need to take it away later if it proved problematic. I expect that heavier usage of the language over time is what will impact decision making here.