DEBFIND Suche nach Debian-Paketen

Suchplatform für Softwarepakete und Archive Debian-basierter Linux-Distributionen

beta ! Diese website wird noch weiterentwickelt.

Liste aller Kategorien/Sektionen | Suchmaske | Haftungsausschluß

Paketbeschreibung


Paketnamelibuniversal-require-perl
BeschreibungLoad modules from a variable
Archiv/RepositoryOffizielles Debian Archiv squeeze (main)
Version0.13-1
Sektionperl
Prioritätoptional
Installierte Größe64 Byte
Hängt ab vonperl (>= 5.6.0-16)
Empfohlene Pakete
PaketbetreuerDebian Perl Group
Quelle
Paketgröße8896 Byte
Prüfsumme MD54f45b355139d10af7b5ed2b89f04c62e
Prüfsumme SHA17987529c1186a3d337a430c4422e1c551dd5b1d9
Prüfsumme SHA2564b389d2c2d8ba007e36c98d427b732164870a17bd69e76fa914743d30b5e746f
Link zum Herunterladenlibuniversal-require-perl_0.13-1_all.deb
Ausführliche BeschreibungThis works exactly like the standard require in Perl, except without the bareword restriction, and it does not die. Since require() is placed in the UNIVERSAL namespace, it will work on any module. You just have to use UNIVERSAL::require somewhere in your code. . If you have ever had to do this... . eval "require $module"; . to get around the bareword caveats on require(), this module is for you. It creates a universal require() class method that will work with every Perl module and it is secure. So instead of doing some arcane eval() work, you can do this: . $module->require; . It does not save you much typing, but it will make a lot more sense to someone who is not a ninth level Perl acolyte. . Also provided is a use() method which works in a similar way.


Impressum
Linux is a registered trademark of Linus Torvalds