NAME Symbol::Util - Additional utils for Perl symbols manipulation SYNOPSIS use Symbol::Util ':all'; my $caller = caller; *{ fetch_glob("${caller}::foo") } = sub { "this is foo" }; print join "\n", keys %{ Symbol::stash("main") }; delete_glob("${caller}::foo", "CODE"); DESCRIPTION This module provides a set of additional functions useful for Perl symbols manipulation. I.e. `delete_glob' function allows to delete specific slot of symbol name without deleting others. AUTHOR Piotr Roszatycki COPYRIGHT Copyright (C) 2009 by Piotr Roszatycki . This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://www.perl.com/perl/misc/Artistic.html