perlintern - autogenerated documentation of purely internal Perl functions

NAME DESCRIPTION Compile-time scope hooks Custom Operators CV Manipulation Functions CV reference counts and CvOUTSIDE Embedding Functions GV Functions Hash Manipulation Functions IO Functions Lexer interface Magical Functions Miscellaneous Functions MRO Functions Optree Manipulation Functions Pad Data Structures Per-Interpreter Variables Stack Manipulation Macros SV Manipulation Functions SV-Body Allocation Unicode Support Undocumented functions AUTHORS SEE ALSO NAME perlintern - autogenera

@ARG

@ARG

AUTOLOAD

AUTOLOAD This keyword is documented in Autoloading in perlsub.

if - use a Perl module if a condition holds (also can no a module)

NAME SYNOPSIS DESCRIPTIONEXAMPLES BUGS SEE ALSO AUTHOR NAME if - use a Perl module if a condition holds (also can no a module) SYNOPSIS use if CONDITION, MODULE => ARGUMENTS; no if CONDITION, MODULE => ARGUMENTS; DESCRIPTION The if module is used to conditionally load or unload another module. The construct use if CONDITION, MODULE => ARGUMENTS; will load MODULE only if CONDITION evaluates to true. The above statement has no effect unless CONDITION is true. If the CONDITION does e

perlce - Perl for WinCE

NAME Building Perl for WinCEWARNING DESCRIPTION General explanations on cross-compiling WinCE CURRENT BUILD INSTRUCTIONS OLD BUILD INSTRUCTIONS Using Perl on WinCEDESCRIPTION LIMITATIONS ENVIRONMENT REGISTRY XS BUGS INSTALLATION ACKNOWLEDGEMENTS History of WinCE port AUTHORS NAME perlce - Perl for WinCE Building Perl for WinCE WARNING Much of this document has become very out of date and needs updating, rewriting or deleting. The build process was overhauled during the 5.19 development tr

Pod::Simple::Search - find POD documents in directory trees

NAME SYNOPSIS DESCRIPTION CONSTRUCTOR ACCESSORS MAIN SEARCH METHODS$search->survey( @directories ) $search->simplify_name( $str ) $search->find( $pod ) $search->find( $pod, @search_dirs ) $self->contains_pod( $file ) COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Simple::Search - find POD documents in directory trees SYNOPSIS use Pod::Simple::Search; my $name2path = Pod::Simple::Search->new->limit_glob('LWP::*')->survey; print "Looky see what I found: ", join(' ', sort

warn

warn LIST Prints the value of LIST to STDERR. If the last element of LIST does not end in a newline, it appends the same file/line number text as die does. If the output is empty and $@ already contains a value (typically from a previous eval) that value is used after appending "\t...caught" to $@ . This is useful for staying almost, but not entirely similar to die. If $@ is empty then the string "Warning: Something's wrong" is used. No message is printed if there is a $SIG{__WARN__} handler in

getservent

getservent

lib - manipulate @INC at compile time

NAME SYNOPSIS DESCRIPTIONAdding directories to @INC Deleting directories from @INC Restoring original @INC CAVEATS NOTES SEE ALSO AUTHOR COPYRIGHT AND LICENSE NAME lib - manipulate @INC at compile time SYNOPSIS use lib LIST; no lib LIST; DESCRIPTION This is a small simple module which simplifies the manipulation of @INC at compile time. It is typically used to add extra directories to perl's search path so that later use or require statements will find modules which are not located on per

$-

$- The number of lines left on the page of the currently selected output channel. Mnemonic: lines_on_page - lines_printed.