getnetbyaddr

getnetbyaddr ADDR,ADDRTYPE

App::Prove::State::Result::Test - Individual test results.

NAME VERSION DESCRIPTION SYNOPSIS METHODSClass Methods Instance Methods NAME App::Prove::State::Result::Test - Individual test results. VERSION Version 3.35 DESCRIPTION The prove command supports a --state option that instructs it to store persistent state across runs. This module encapsulates the results for a single test. SYNOPSIS # Re-run failed tests $ prove --state=failed,save -rbv METHODS Class Methods new Instance Methods name The name of the test. Usually a filename. elapsed

perluniprops - Index of Unicode Version 7.0.0 character properties in Perl

NAME DESCRIPTION Properties accessible through \p{} and \P{}Legal \p{} and \P{} constructs that match no characters Properties accessible through Unicode::UCD Properties accessible through other means Unicode character properties that are NOT accepted by Perl Other information in the Unicode data base SEE ALSO NAME perluniprops - Index of Unicode Version 7.0.0 character properties in Perl DESCRIPTION This document provides information about the portion of the Unicode database that deals with

tell

tell FILEHANDLE tell Returns the current position in bytes for FILEHANDLE, or -1 on error. FILEHANDLE may be an expression whose value gives the name of the actual filehandle. If FILEHANDLE is omitted, assumes the file last read. Note the in bytes: even if the filehandle has been set to operate on characters (for example by using the :encoding(utf8) open layer), tell() will return byte offsets, not character offsets (because that would render seek() and tell() rather slow). The return value of

$^M

$^M By default, running out of memory is an untrappable, fatal error. However, if suitably built, Perl can use the contents of $^M as an emergency memory pool after die()ing. Suppose that your Perl were compiled with -DPERL_EMERGENCY_SBRK and used Perl's malloc. Then $^M = 'a' x (1 << 16); would allocate a 64K buffer for use in an emergency. See the INSTALL file in the Perl distribution for information on how to add custom C compilation flags when compiling perl. To discourage casual us

Locale::Maketext::GutsLoader - Deprecated module to load Locale::Maketext utf8 code

NAME SYNOPSIS DESCRIPTION NAME Locale::Maketext::GutsLoader - Deprecated module to load Locale::Maketext utf8 code SYNOPSIS # Do this instead please use Locale::Maketext DESCRIPTION Previously Locale::Maketext::Guts performed some magic to load Locale::Maketext when utf8 was unavailable. The subs this module provided were merged back into Locale::Maketext.

IO - load various IO modules

NAME SYNOPSIS DESCRIPTION DEPRECATED NAME IO - load various IO modules SYNOPSIS use IO qw(Handle File); # loads IO modules, here IO::Handle, IO::File use IO; # DEPRECATED DESCRIPTION IO provides a simple mechanism to load several of the IO modules in one go. The IO modules belonging to the core are: IO::Handle IO::Seekable IO::File IO::Pipe IO::Socket IO::Dir IO::Select IO::Poll Some other IO modules don't belong to the perl core but can be loaded as well if they have been i

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

gmtime

gmtime EXPR gmtime Works just like localtime but the returned values are localized for the standard Greenwich time zone. Note: When called in list context, $isdst, the last value returned by gmtime, is always 0 . There is no Daylight Saving Time in GMT. Portability issues: gmtime in perlport.

Multiplicative Operators

Multiplicative Operators Binary "*" multiplies two numbers. Binary "/" divides two numbers. Binary "%" is the modulo operator, which computes the division remainder of its first argument with respect to its second argument. Given integer operands $m and $n : If $n is positive, then $m % $n is $m minus the largest multiple of $n less than or equal to $m . If $n is negative, then $m % $n is $m minus the smallest multiple of $n that is not less than $m (that is, the result will be less than or