TAP::Parser::Result::Comment - Comment result token.

NAME VERSION DESCRIPTION OVERRIDDEN METHODSInstance Methods NAME TAP::Parser::Result::Comment - Comment result token. VERSION Version 3.35 DESCRIPTION This is a subclass of TAP::Parser::Result. A token of this class will be returned if a comment line is encountered. 1..1 ok 1 - woo hooo! # this is a comment OVERRIDDEN METHODS Mainly listed here to shut up the pitiful screams of the pod coverage tests. They keep me awake at night. as_string Note that this method merely returns the comment

$OFS

$OFS

$FORMAT_NAME

$FORMAT_NAME

Devel::Peek - A data debugging tool for the XS programmer

NAME SYNOPSIS DESCRIPTIONRuntime debugging Memory footprint debugging EXAMPLESA simple scalar string A simple scalar number A simple scalar with an extra reference A reference to a simple scalar A reference to an array A reference to a hash Dumping a large array or hash A reference to an SV which holds a C pointer A reference to a subroutine EXPORTS BUGS AUTHOR SEE ALSO NAME Devel::Peek - A data debugging tool for the XS programmer SYNOPSIS use Devel::Peek; Dump( $a );

Encode::CN::HZ -- internally used by Encode::CN

NAME NAME Encode::CN::HZ -- internally used by Encode::CN

pop

pop ARRAY pop EXPR pop Pops and returns the last value of the array, shortening the array by one element. Returns the undefined value if the array is empty, although this may also happen at other times. If ARRAY is omitted, pops the @ARGV array in the main program, but the @_ array in subroutines, just like shift. Starting with Perl 5.14, pop can take a scalar EXPR, which must hold a reference to an unblessed array. The argument will be dereferenced automatically. This aspect of pop is consider

ExtUtils::MM_Cygwin - methods to override UN*X behaviour in ExtUtils::MakeMaker

NAME SYNOPSIS DESCRIPTION NAME ExtUtils::MM_Cygwin - methods to override UN*X behaviour in ExtUtils::MakeMaker SYNOPSIS use ExtUtils::MM_Cygwin; # Done internally by ExtUtils::MakeMaker if needed DESCRIPTION See ExtUtils::MM_Unix for a documentation of the methods provided there. os_flavor We're Unix and Cygwin. cflags if configured for dynamic loading, triggers #define EXT in EXTERN.h replace_manpage_separator replaces strings '::' with '.' in MAN*POD man page names init_linker point

package

package NAMESPACE package NAMESPACE VERSION package NAMESPACE BLOCK package NAMESPACE VERSION BLOCK Declares the BLOCK or the rest of the compilation unit as being in the given namespace. The scope of the package declaration is either the supplied code BLOCK or, in the absence of a BLOCK, from the declaration itself through the end of current scope (the enclosing block, file, or eval). That is, the forms without a BLOCK are operative through the end of the current scope, just like the my, state

$\

$\ The output record separator for the print operator. If defined, this value is printed after the last of print's arguments. Default is undef. You cannot call output_record_separator() on a handle, only as a static method. See IO::Handle. Mnemonic: you set $\ instead of adding "\n" at the end of the print. Also, it's just like $/ , but it's what you get "back" from Perl.

splice

splice ARRAY,OFFSET,LENGTH,LIST splice ARRAY,OFFSET,LENGTH splice ARRAY,OFFSET splice ARRAY splice EXPR,OFFSET,LENGTH,LIST splice EXPR,OFFSET,LENGTH splice EXPR,OFFSET splice EXPR Removes the elements designated by OFFSET and LENGTH from an array, and replaces them with the elements of LIST, if any. In list context, returns the elements removed from the array. In scalar context, returns the last element removed, or undef if no elements are removed. The array grows or shrinks as necessary. If OF