Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Coderefs in @INC (was: Building a Simple Perl Module Database)

by Aristotle (Chancellor)
on Aug 25, 2002 at 04:23 UTC ( [id://192635]=note: print w/replies, xml ) Need Help??


in reply to Building a Simple Perl Module Database

Did you know you can put coderefs in @INC?
#!/usr/bin/perl -wl BEGIN { unshift @INC, \&magic_inc; sub magic_inc { print $_[1]; my $i; return \&magic_load if $_[1] eq "Foo/Bar.pm"; } my @src = ("print q(Foo::Bar loaded!);", "1;"); sub magic_load { return defined($_ = shift @src); } } use strict; use Data::Dumper; use Foo::Bar;
The interface is somewhat obscure, but this close to the guts, you have to expect it.

Makeshifts last the longest.

Replies are listed 'Best First'.
Re: Coderefs in @INC (was: Building a Simple Perl Module Database)
by djantzen (Priest) on Aug 26, 2002 at 00:05 UTC

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://192635]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (3)
As of 2024-04-20 02:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found