Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: use Very::Long::Module::Name as Foo;

by Abigail-II (Bishop)
on Oct 14, 2003 at 14:40 UTC ( [id://299125]=note: print w/replies, xml ) Need Help??


in reply to use Very::Long::Module::Name as Foo;

Here's a different way, also using a 'as.pm', but no source filters. Usage:
use as Name => "Very::Long::Class::Name", args ...;
And this is the code:
package as; use strict; use warnings; sub import { my $class = shift; die "Usage: 'use as Name => Very::Long::Class::Name [args...]'" unless @_ >= 2; my $caller = caller (); my ($short, $long) = splice @_ => 0, 2; no strict 'refs'; @{"${short}::ISA"} = $long; eval <<" --"; package $caller; require $long; $short -> import (\@_) if $short -> can ("import"); -- die $@ if $@; } 1;

This follows a similar syntax as 'use if CONDITION, MODULE => ARGS'.

Abigail

Replies are listed 'Best First'.
Re: Re: use Very::Long::Module::Name as Foo;
by liz (Monsignor) on Oct 14, 2003 at 15:33 UTC
    This is essentially the same API as Package::Alias, although different under the hood.

    Liz

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (5)
As of 2024-04-24 21:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found