diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-14 19:31:53 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-14 19:31:53 +0000 |
commit | b38f6a391036f7db7d1fabe868dff4ea8261a014 (patch) | |
tree | 08236459cf5cd1742216068aa3e4e306d1c1cd1a /pod/perlnumber.pod | |
parent | 9228e8cadade046a4baa03d1e0ca1ffb6422ddd1 (diff) | |
download | perl-b38f6a391036f7db7d1fabe868dff4ea8261a014.tar.gz |
regen perltoc, other pod nits
p4raw-id: //depot/perl@5735
Diffstat (limited to 'pod/perlnumber.pod')
-rw-r--r-- | pod/perlnumber.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlnumber.pod b/pod/perlnumber.pod index d64fda4eda..9f628cc9a8 100644 --- a/pod/perlnumber.pod +++ b/pod/perlnumber.pod @@ -26,7 +26,7 @@ p-adic arithmetic, and so on. See L<overload> for details. =head1 Storing numbers -Perl can internally represents numbers in 3 different ways: as native +Perl can internally represent numbers in 3 different ways: as native integers, as native floating point numbers, and as decimal strings. Decimal strings may have an exponential notation part, as in C<"12.34e-56">. I<Native> here means "a format supported by the C compiler which was used @@ -54,7 +54,7 @@ The upshot of all this is that Perl cannot store a number like 12345678901234567 as a floating point number on such architectures without loss of information. -Similarly, decimal strings may represent only those numbers which have a +Similarly, decimal strings can represent only those numbers which have a finite decimal expansion. Being strings, and thus of arbitrary length, there is no practical limit for the exponent or number of decimal digits for these numbers. (But realize that what we are discussing the rules for just the |