There is something, added to 5.8, that could help catch the "typo"s from happening. I've been a lurker on the perl5-porters mailing list, and one of the more fascinating discussions I read about, back when I was actually able to take time to read that list, was an idea about creating "clamped" hashes. The idea was to help eliminate accidentally creating hash keys, but it grew from there.
The current implementation has been made a core module called Hash::Util, you can read about it here.
In an attempt to quickly summarize what you'll find at the link above, the following methods are available:
| Method |
Description |
| lock_keys(%hash) | don't allow any keys other than what currently exists |
| lock_keys(%hash,@keys) | dont allow any keys other than those in the array @keys |
| unlock_keys(%hash) | unlock the hash to be able to add keys |
| |
| |
| lock_value(%hash,$key) | Keep the value at $hash{$key} from being changed |
| unlock_value(%hash,$key) | Allow the value to change |
| |
| |
| lock_hash(%hash) | don't allow keys or values to change |
| unlock_hash(%hash) | allow keys and values to change |
-Scott
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.