Devel::SelfStubber - generate stubs for a SelfLoading module

NAME SYNOPSIS DESCRIPTION NAME Devel::SelfStubber - generate stubs for a SelfLoading module SYNOPSIS To generate just the stubs: use Devel::SelfStubber; Devel::SelfStubber->stub('MODULENAME','MY_LIB_DIR'); or to generate the whole module with stubs inserted correctly use Devel::SelfStubber; $Devel::SelfStubber::JUST_STUBS=0; Devel::SelfStubber->stub('MODULENAME','MY_LIB_DIR'); MODULENAME is the Perl module name, e.g. Devel::SelfStubber, NOT 'Devel/SelfStubber' or 'Devel/SelfStubber.pm

@ARGV

@ARGV The array @ARGV contains the command-line arguments intended for the script. $#ARGV is generally the number of arguments minus one, because $ARGV[0] is the first argument, not the program's command name itself. See $0 for the command name.

File::Glob - Perl extension for BSD glob routine

NAME SYNOPSIS DESCRIPTIONMETA CHARACTERS EXPORTS POSIX FLAGS DIAGNOSTICS NOTES SEE ALSO AUTHOR NAME File::Glob - Perl extension for BSD glob routine SYNOPSIS use File::Glob ':bsd_glob'; @list = bsd_glob('*.[ch]'); $homedir = bsd_glob('~gnat', GLOB_TILDE | GLOB_ERR); if (GLOB_ERROR) { # an error occurred reading $homedir } ## override the core glob (CORE::glob() does this automatically ## by default anyway, since v5.6.0) use File::Glob ':globally'; my @sources = <*.{c,h,y}>; ## o

C-style Logical And

C-style Logical And Binary "&&" performs a short-circuit logical AND operation. That is, if the left operand is false, the right operand is not even evaluated. Scalar or list context propagates down to the right operand if it is evaluated.

Regexp Quote-Like Operators

Regexp Quote-Like Operators Here are the quote-like operators that apply to pattern matching and related activities. qr/STRING/msixpodualn This operator quotes (and possibly compiles) its STRING as a regular expression. STRING is interpolated the same way as PATTERN in m/PATTERN/. If "'" is used as the delimiter, no interpolation is done. Returns a Perl value which may be used instead of the corresponding /STRING/msixpodualn expression. The returned value is a normalized version of the origi

listen

listen SOCKET,QUEUESIZE Does the same thing that the listen(2) system call does. Returns true if it succeeded, false otherwise. See the example in Sockets: Client/Server Communication in perlipc.

flock

flock FILEHANDLE,OPERATION Calls flock(2), or an emulation of it, on FILEHANDLE. Returns true for success, false on failure. Produces a fatal error if used on a machine that doesn't implement flock(2), fcntl(2) locking, or lockf(3). flock is Perl's portable file-locking interface, although it locks entire files only, not records. Two potentially non-obvious but traditional flock semantics are that it waits indefinitely until the lock is granted, and that its locks are merely advisory. Such disc

$^O

$^O The name of the operating system under which this copy of Perl was built, as determined during the configuration process. For examples see PLATFORMS in perlport. The value is identical to $Config{'osname'} . See also Config and the -V command-line switch documented in perlrun. In Windows platforms, $^O is not very helpful: since it is always MSWin32 , it doesn't tell the difference between 95/98/ME/NT/2000/XP/CE/.NET. Use Win32::GetOSName() or Win32::GetOSVersion() (see Win32 and perlport)

threads - Perl interpreter-based threads

NAME VERSION WARNING SYNOPSIS DESCRIPTION EXITING A THREAD THREAD STATE THREAD CONTEXTExplicit context Implicit context $thr->wantarray() threads->wantarray() THREAD STACK SIZE THREAD SIGNALLING WARNINGS ERRORS BUGS AND LIMITATIONS REQUIREMENTS SEE ALSO AUTHOR LICENSE ACKNOWLEDGEMENTS NAME threads - Perl interpreter-based threads VERSION This document describes threads version 2.01 WARNING The "interpreter-based threads" provided by Perl are not the fast, lightweight system for multit

DESTROY

DESTROY This method keyword is documented in Destructors in perlobj.