Paketname | libexporter-lite-perl |
Beschreibung | lightweight subset of Exporter |
Archiv/Repository | Offizielles Ubuntu Archiv lucid (universe) |
Version | 0.02-2 |
Sektion | universe/perl |
Priorität | optional |
Installierte Größe | 60 Byte |
Hängt ab von | perl |
Empfohlene Pakete | |
Paketbetreuer | Ubuntu Developers |
Quelle | |
Paketgröße | 8924 Byte |
Prüfsumme MD5 | a4f3a1c1ae2d6b023f6b155660de1113 |
Prüfsumme SHA1 | af83231bdf5cd989caf389445a7b93158c62cb5d |
Prüfsumme SHA256 | a6f15371521232ffbd30d306e4e0ca6f555b13971f51ee80c53dfc8103135e07 |
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);
|