Paketname | libexporter-lite-perl |
Beschreibung | lightweight subset of Exporter |
Archiv/Repository | Offizielles Debian Archiv squeeze (main) |
Version | 0.02-2 |
Sektion | perl |
Priorität | optional |
Installierte Größe | 60 Byte |
Hängt ab von | perl (>= 5.6.0-16) |
Empfohlene Pakete | |
Paketbetreuer | Debian Perl Group |
Quelle | |
Paketgröße | 8908 Byte |
Prüfsumme MD5 | f98e76fd02f81cc2e1b258822c04b5ad |
Prüfsumme SHA1 | 93d8b26a5dd8519d3bdb2e00e0d0ae2f5de827ef |
Prüfsumme SHA256 | e7ac5608d0ec944102780332355579a7f4f47edc64d824f4159b0a847ac1e6cb |
Link zum Herunterladen | libexporter-lite-perl_0.02-2_all.deb |
Ausführliche Beschreibung | Exporter::Lite is an alternative to Exporter intended to provide a
lightweight subset of its functionality. It supports import(), @EXPORT and
@EXPORT_OK and not a whole lot else.
.
Unlike Exporter, it is not necessary to inherit from Exporter::Lite
(ie. no @ISA = qw(Exporter::Lite) mantra). Exporter::Lite simply
exports its import() function. This might be called a "mix-in".
.
Setting up a module to export its variables and functions is simple:
.
package My::Module;
use Exporter::Lite;
.
@EXPORT = qw($Foo bar);
|