Tagged Questions

2
votes
3answers
200 views

Can I overload Perl’s =? (And a problem while use Tie)

I choose to use tie and find this: package Galaxy::IO::INI; sub new { my $invocant = shift; my $class = ref($invocant) || $invocant; my $self = {']' => []}; # ini s …
1
vote
1answer
237 views

Why can’t Win32::TieRegistry list subkeys?

Using Cygwin Perl v5.8.8 and Win32::TieRegistry 0.26. We can get a tied hash object thing for HKEY_CURRENT_USER: $ perl -e ' my %RegHash; use Win32::TieRegistry( TiedHash => \ …
3
votes
5answers
174 views

Deferring code on scope change in Perl

I often find it useful to be able to schedule code to be executed upon leaving the current scope. In my previous life in TCL, a friend created a function we called defer. It enabl …
1
vote
2answers
178 views

How can I call methods on a tied variable?

I've just started to learn about tie. I have a class named Link which I would like to do the following thing: if fetched, return the link's address if stored, store the new addre …
11
votes
4answers
802 views

How can I hook into Perl’s print?

Here's a scenario. You have a large amount of legacy scripts, all using a common library. Said scripts use the 'print' statement for diagnostic output. No changes are allowed to …