Creating and assinging a subroutine reference to a typeglob is quite easy:
*{$name} = sub { return 'piece of cake' };
what I've not been able to figure out is how to remove one:
# error: Can't modify glob elem in scalar assignment
*{$name}{CODE} = undef;
# error: delete argument is not a HASH or ARRAY element or slice
delete *{$name}{CODE};
# no error, but doesn't work:
delete $My::Package::{$name}{CODE};
what i'm basically looking for is a way to 'undo' changes made to the symbol table. Once i've registered a subroutine in a symbol table, i'd like to be able to unregister it later. There are many examples of the polymorphic assignment abilities of a typeglob in Programming Perl and Damian's OOP book, but nothing I can find there or online addresses removing things from the symbol table.
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.