This isn't a JAPH. It's an obfuscation that's actually
useful. (And yes, it's really an obfuscation. I don't know
of any other way to accomplish this.)
What does it do? It manufactures an object that can be used as either
an array reference or a hash reference.
Why would you ever want such a thing? Well, it's the natural way to
present an ordered hash. You could then use $orderedhash->[7] to get
item number seven, or $orderedhash->{key} to get the item with the
specified key.
Or for example you could have an object that represents a directory.
$dir->[3] gets the name of file number 3 from the directory, so it is
easy to iterate over the files in the directory, and $dir->{name} gets
the stat information for the file named name. (The test.pl file
supplied with the module has
a demonstration of how to do this.)
Since it was actually useful, I put it on CPAN.
Visit search.cpan.org
and search for ArrayHashMonster, or
just download it now.
Of course, figuring out how it works is left as an exercise.
Don't post spoilers here.
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.