PATH:
usr
/
share
/
perl5
package subs; our $VERSION = '1.02'; =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 my $sym (@imports) { *{"${callpack}::$sym"} = \&{"${callpack}::$sym"}; } }; 1;
[-] vars.pm
[edit]
[-] DirHandle.pm
[edit]
[+]
Devel
[-] PerlIO.pm
[edit]
[+]
Math
[-] Memoize.pm
[edit]
[-] deprecate.pm
[edit]
[+]
Time
[-] _charnames.pm
[edit]
[-] DB.pm
[edit]
[-] vmsish.pm
[edit]
[+]
Locale
[+]
Config
[-] subs.pm
[edit]
[-] XSLoader.pm
[edit]
[-] bytes_heavy.pl
[edit]
[-] filetest.pm
[edit]
[-] fields.pm
[edit]
[+]
Search
[-] bytes.pm
[edit]
[-] if.pm
[edit]
[-] DBM_Filter.pm
[edit]
[-] base.pm
[edit]
[-] Dumpvalue.pm
[edit]
[-] locale.pm
[edit]
[-] SelfLoader.pm
[edit]
[+]
Tie
[+]
IO
[-] Thread.pm
[edit]
[-] FileHandle.pm
[edit]
[+]
unicore
[-] Benchmark.pm
[edit]
[-] diagnostics.pm
[edit]
[+]
Module
[-] CORE.pod
[edit]
[-] utf8.pm
[edit]
[-] overloading.pm
[edit]
[+]
vendor_perl
[-] FindBin.pm
[edit]
[-] feature.pm
[edit]
[-] URI.pm
[edit]
[-] dumpvar.pl
[edit]
[-] Safe.pm
[edit]
[-] open.pm
[edit]
[-] English.pm
[edit]
[-] warnings.pm
[edit]
[+]
Text
[+]
Term
[+]
..
[-] AnyDBM_File.pm
[edit]
[+]
I18N
[+]
Attribute
[-] autouse.pm
[edit]
[-] less.pm
[edit]
[+]
Class
[+]
File
[-] strict.pm
[edit]
[-] sort.pm
[edit]
[+]
Memoize
[-] meta_notation.pm
[edit]
[+]
URI
[-] Symbol.pm
[edit]
[+]
Unicode
[-] NEXT.pm
[edit]
[+]
Getopt
[-] Test.pm
[edit]
[+]
Net
[-] AutoLoader.pm
[edit]
[+]
encoding
[-] blib.pm
[edit]
[-] charnames.pm
[edit]
[-] UNIVERSAL.pm
[edit]
[-] AutoSplit.pm
[edit]
[-] integer.pm
[edit]
[-] sigtrap.pm
[edit]
[+]
User
[+]
warnings
[+]
IPC
[-] SelectSaver.pm
[edit]
[-] perl5db.pl
[edit]
[-] overload.pm
[edit]
[+]
DBM_Filter
[+]
B
[-] FileCache.pm
[edit]
[+]
Compress
[+]
Thread
[+]
ExtUtils
[+]
Pod
[+]
pod
[-] utf8_heavy.pl
[edit]
[+]
CPAN
[+]
overload
[-] Internals.pod
[edit]