Are there special cases of any sort (e.g. different environments, architectures) where the pack/unpack achieve anything different ?
I don't know of any such examples wrt to the
U0C* template.
But I'm pretty unknowledgeable when it comes to Unicode, so I likely wouldn't know anyway ;-)
In general, there are some instances where
pack($template, $scalar) will lose information that unpack() has no hope of restoring.
For example, on a perl whose
$Config{nvsize} is greater than
$Config{doublesize}:
>perl -wle "print 'ok' if 2.3 != unpack 'd', pack 'd', 2.3;"
ok
A similar thing could happen with the
I or
i templates on a perl whose
$Config{ivsize} is greater than
$Config{intsize}.
Cheers,
Rob
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.