Paketname | librelative-perl |
Beschreibung | Load modules with relative names |
Archiv/Repository | Offizielles Debian Archiv squeeze (main) |
Version | 0.04-1 |
Sektion | perl |
Priorität | optional |
Installierte Größe | 60 Byte |
Hängt ab von | perl (>= 5.6.0-16), libuniversal-require-perl |
Empfohlene Pakete | |
Paketbetreuer | Debian Perl Group |
Quelle | |
Paketgröße | 9180 Byte |
Prüfsumme MD5 | 880078f43a005ab5c3eb8ae0134b85e1 |
Prüfsumme SHA1 | 674545e72cd7db94979ae984e9b7f37326abfd91 |
Prüfsumme SHA256 | 17144e738f69f7bc2a781867f9a360edea0ee917f2826b8c9575cd6e40d7c2b9 |
Link zum Herunterladen | librelative-perl_0.04-1_all.deb |
Ausführliche Beschreibung | This module allows you to load modules using only parts of their name,
relatively to the current module or to a given module. Module names are
by default searched below the current module, but can be searched upper
in the hierarchy using the ..:: syntax.
.
In order to further loosen the namespace coupling, import returns
the full names of the loaded modules, making object-oriented code easier
to write:
.
use relative;
.
my ($Maker, $Publisher) = import relative qw(Create Publish);
my $report = $Maker->new;
my $publisher = $Publisher->new;
|