Hi,
Hmmm ... perhaps that should be "Exasperated
by" ... any grammarians out there ?
Anyway, it might not look much but the following (which applies only to 64-bit builds of perl) makes me quite angry:
use warnings;
use integer; # makes no difference
# 144115188075868217 == (2 ** 57) + 12345
$string1 = '144115188075868217';
$string2 = '144115188075868217crap';
$string1 += 0;
{
no warnings 'numeric';
$string2 += 0;
}
print $string1, "\n";
#prints 144115188075868217 ... correct
print $string2, "\n";
# prints 144115188075868224 ... wrong
The first question:
Can someone tell me where it is documented that the strings '144115188075868217' and '144115188075868217crap' will be evaluated differently (in numeric context) on a 64-bit integer build of perl ?
The following also angers me:
use warnings;
use integer; # makes no difference
$num = 1.44115188075868217e17;
print $num, "\n";
#prints 1.44115188075868e+017
The second question:
Is there some way (on a 64-bit integer build of perl) I can get scientific notation of 58-bit integers to DWIM ?
(Some other absurdity is in progress here, too. Although I wanted to see either 144115188075868217 or 1.44115188075868217e17 as output, I actually expected to see 1.44115188075868224e17 ... couldn't even get that much precision.)
With 32-bit builds of perl there's no problems with representing integers as doubles (since precision is never lost). But with 64-bit integer builds of perl you lose integer precision when you switch to the "double" representation ... which makes me wonder why switching to "double" representation on 64-bit integer builds of perl is given such a high priority.
We have a saying at $work regarding the wisdom of the powers that be (and which sums up perfectly our understanding of their actions):
"They know what they're doing."
For a glimpse of the real world problem:
Let's suppose there's a C library - and a perl extension that accesses that C library. The C library can return a string to perl (via XS) such as "1.44115188075868217e17". I would like to be able to convert that string to the numeric value 144115188075868217 on my 64-bit integer build of perl. I would expect that
$num = "1.44115188075868217e17"; would do the trick. There's no problem with that approach regarding 32-bit integers (expressed in scientific notation) on 32-bit builds of perl but, as demonstrated above, it won't work with 64-bit integer builds. Instead I have to remove the "." and remove the "e17" (or "E17", or "e+017", etc., as the case may be). My first thought was to
$string =~ s/\.//;
$string =~ s/e/crap//i;
But no ... I can't just replace the 'e'/'E' with 'crap' ... I have to
remove the 'e' plus whatever follows it. (For some anal-retentive-nitpicker-type-inexplicable reason
that really pisses me off.)
Ok .... so it's no big deal ... but this is perl ... where things are supposed to "just work". (And I'm hard pressed to understand why, in this particular instance, things have been designed to "just not work".)
Cheers,
Rob