PATH:
usr
/
share
/
perl5
package subs; our $VERSION = '1.01'; =head1 NAME subs - Perl pragma to predeclare sub names =head1 SYNOPSIS use subs qw(frob); frob 3..10; =head1 DESCRIPTION This will predeclare all the subroutine whose names are in the list, allowing you to use them without parentheses even before they're declared. Unlike pragmas that affect the C<$^H> hints variable, the C<use vars> and C<use subs> declarations are not BLOCK-scoped. They are thus effective for the entire package in which they appear. You may not rescind such declarations with C<no vars> or C<no subs>. See L<perlmodlib/Pragmatic Modules> and L<strict/strict subs>. =cut require 5.000; sub import { my $callpack = caller; my $pack = shift; my @imports = @_; foreach $sym (@imports) { *{"${callpack}::$sym"} = \&{"${callpack}::$sym"}; } }; 1;
[+]
..
[+]
vendor_perl
[+]
Pod
[-] if.pm
[edit]
[-] AnyDBM_File.pm
[edit]
[+]
App
[+]
Archive
[+]
Attribute
[-] integer.pm
[edit]
[-] AutoLoader.pm
[edit]
[-] less.pm
[edit]
[-] AutoSplit.pm
[edit]
[+]
B
[-] locale.pm
[edit]
[-] Benchmark.pm
[edit]
[-] CORE.pod
[edit]
[+]
Class
[+]
Compress
[+]
Config
[-] DB.pm
[edit]
[+]
DBM_Filter
[-] overloading.pm
[edit]
[-] DBM_Filter.pm
[edit]
[+]
Devel
[-] open.pm
[edit]
[-] DirHandle.pm
[edit]
[+]
overload
[-] Dumpvalue.pm
[edit]
[+]
Encode
[-] English.pm
[edit]
[+]
ExtUtils
[+]
File
[-] overload.pm
[edit]
[-] FileCache.pm
[edit]
[-] perl5db.pl
[edit]
[-] FileHandle.pm
[edit]
[+]
Filter
[-] FindBin.pm
[edit]
[+]
Getopt
[+]
HTTP
[+]
I18N
[+]
IO
[+]
IPC
[+]
JSON
[+]
Locale
[+]
Log
[+]
Math
[+]
Memoize
[-] Memoize.pm
[edit]
[+]
Module
[-] NEXT.pm
[edit]
[+]
Net
[+]
Perl
[+]
PerlIO
[-] PerlIO.pm
[edit]
[-] Safe.pm
[edit]
[+]
Search
[-] URI.pm
[edit]
[-] SelectSaver.pm
[edit]
[-] SelfLoader.pm
[edit]
[-] Symbol.pm
[edit]
[+]
Term
[+]
Test
[-] Test.pm
[edit]
[+]
Text
[+]
Thread
[-] Thread.pm
[edit]
[+]
Tie
[+]
Time
[-] lwpcook.pod
[edit]
[-] UNIVERSAL.pm
[edit]
[+]
Unicode
[+]
User
[+]
Version
[-] XSLoader.pm
[edit]
[-] LWP.pm
[edit]
[-] _charnames.pm
[edit]
[-] autouse.pm
[edit]
[-] base.pm
[edit]
[-] bigint.pm
[edit]
[-] bignum.pm
[edit]
[-] bigrat.pm
[edit]
[-] blib.pm
[edit]
[-] bytes.pm
[edit]
[-] lwptut.pod
[edit]
[-] bytes_heavy.pl
[edit]
[-] charnames.pm
[edit]
[-] CPAN.pm
[edit]
[-] deprecate.pm
[edit]
[-] diagnostics.pm
[edit]
[-] dumpvar.pl
[edit]
[+]
encoding
[-] feature.pm
[edit]
[-] fields.pm
[edit]
[-] filetest.pm
[edit]
[-] perlfaq.pm
[edit]
[+]
pod
[-] sigtrap.pm
[edit]
[-] sort.pm
[edit]
[-] strict.pm
[edit]
[-] subs.pm
[edit]
[+]
unicore
[-] utf8.pm
[edit]
[-] utf8_heavy.pl
[edit]
[-] vars.pm
[edit]
[-] vmsish.pm
[edit]
[+]
warnings
[-] warnings.pm
[edit]
[+]
Package
[+]
Object
[+]
URI
[+]
CPAN
[+]
LWP