From: Marcus Holland-Moritz Date: Mon, 26 Jul 2004 17:14:37 +0000 (+0000) Subject: The byte-order modifiers won't go into 5.8. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7a4d29052c3419a899eda557f978391707f60fc0;p=p5sagit%2Fp5-mst-13.2.git The byte-order modifiers won't go into 5.8. p4raw-id: //depot/perl@23163 --- diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index f23c8a2..8708313 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -3587,7 +3587,7 @@ and C<'87654321'> are big-endian. If you want portable packed integers you can either use the formats C, C, C, and C, or you can use the C> and C> -modifiers. These modifiers are only available as of perl 5.8.5. +modifiers. These modifiers are only available as of perl 5.9.2. See also L. =item * diff --git a/pod/perlport.pod b/pod/perlport.pod index 8b8062c..e7fcde7 100644 --- a/pod/perlport.pod +++ b/pod/perlport.pod @@ -224,7 +224,7 @@ them in big-endian mode. To avoid this problem in network (socket) connections use the C and C formats C and C, the "network" orders. These are guaranteed to be portable. -As of perl 5.8.5, you can also use the C> and C> modifiers +As of perl 5.9.2, you can also use the C> and C> modifiers to force big- or little-endian byte-order. This is useful if you want to store signed integers or 64-bit integers, for example.