mro - Method Resolution Order

NAME SYNOPSIS DESCRIPTION OVERVIEW The C3 MROWhat is C3? How does C3 work Functionsmro::get_linear_isa($classname[, $type]) mro::set_mro ($classname, $type) mro::get_mro($classname) mro::get_isarev($classname) mro::is_universal($classname) mro::invalidate_all_method_caches() mro::method_changed_in($classname) mro::get_pkg_gen($classname) next::method next::can maybe::next::method SEE ALSOThe original Dylan paper Pugs Parrot Python 2.3 MRO related links Class::C3 AUTHOR NAME mro - Method

__FILE__

__FILE__ A special token that returns the name of the file in which it occurs.

TAP::Formatter::File - Harness output delegate for file output

NAME VERSION DESCRIPTION SYNOPSISopen_test NAME TAP::Formatter::File - Harness output delegate for file output VERSION Version 3.35 DESCRIPTION This provides file orientated output formatting for TAP::Harness. SYNOPSIS use TAP::Formatter::File; my $harness = TAP::Formatter::File->new( \%args ); open_test See TAP::Formatter::Base

Class::Struct - declare struct-like datatypes as Perl classes

NAME SYNOPSIS DESCRIPTIONThe struct() function Class Creation at Compile Time Element Types and Accessor Methods Initializing with new EXAMPLES Author and Modification History NAME Class::Struct - declare struct-like datatypes as Perl classes SYNOPSIS use Class::Struct; # declare struct, based on array: struct( CLASS_NAME => [ ELEMENT_NAME => ELEMENT_TYPE, ... ]); # declare struct, based on hash: struct( CLASS_NAME => { ELEMENT_NAME => ELEMENT_TYPE, ... }); pack

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

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

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

$FORMAT_FORMFEED

$FORMAT_FORMFEED

Dumpvalue - provides screen dump of Perl data.

NAME SYNOPSIS DESCRIPTIONCreation Methods NAME Dumpvalue - provides screen dump of Perl data. SYNOPSIS use Dumpvalue; my $dumper = Dumpvalue->new; $dumper->set(globPrint => 1); $dumper->dumpValue(\*::); $dumper->dumpvars('main'); my $dump = $dumper->stringify($some_value); DESCRIPTION Creation A new dumper is created by a call $d = Dumpvalue->new(option1 => value1, option2 => value2) Recognized options: arrayDepth , hashDepth Print only first N elements of arr

FindBin - Locate directory of original perl script

NAME SYNOPSIS DESCRIPTION EXPORTABLE VARIABLES KNOWN ISSUES AUTHORS COPYRIGHT NAME FindBin - Locate directory of original perl script SYNOPSIS use FindBin; use lib "$FindBin::Bin/../lib"; or use FindBin qw($Bin); use lib "$Bin/../lib"; DESCRIPTION Locates the full path to the script bin directory to allow the use of paths relative to the bin directory. This allows a user to setup a directory tree for some software with directories <root>/bin and <root>/lib , and then the above