gethostbyname

gethostbyname NAME

our

our VARLIST our TYPE VARLIST our VARLIST : ATTRS our TYPE VARLIST : ATTRS our makes a lexical alias to a package (i.e. global) variable of the same name in the current package for use within the current lexical scope. our has the same scoping rules as my or state, meaning that it is only valid within a lexical scope. Unlike my and state, which both declare new (lexical) variables, our only creates an alias to an existing variable: a package variable of the same name. This means that when use st

TAP::Parser::YAMLish::Writer - Write YAMLish data

NAME VERSION SYNOPSIS DESCRIPTION METHODSClass Methods Instance Methods AUTHOR SEE ALSO COPYRIGHT NAME TAP::Parser::YAMLish::Writer - Write YAMLish data VERSION Version 3.35 SYNOPSIS use TAP::Parser::YAMLish::Writer; my $data = { one => 1, two => 2, three => [ 1, 2, 3 ], }; my $yw = TAP::Parser::YAMLish::Writer->new; # Write to an array... $yw->write( $data, \@some_array ); # ...an open file handle... $yw->write( $data, $some_file_handle ); # ...a string .

HANDLE->format_page_number(EXPR)

HANDLE->format_page_number(EXPR)

$DEBUGGING

$DEBUGGING

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

perlhaiku - Perl version 5.10+ on Haiku

NAME DESCRIPTION BUILD AND INSTALL KNOWN PROBLEMS CONTACT NAME perlhaiku - Perl version 5.10+ on Haiku DESCRIPTION This file contains instructions how to build Perl for Haiku and lists known problems. BUILD AND INSTALL The build procedure is completely standard: ./Configure -de make make install Make perl executable and create a symlink for libperl: chmod a+x /boot/common/bin/perl cd /boot/common/lib; ln -s perl5/5.22.0/BePC-haiku/CORE/libperl.so . Replace 5.22.0 with your respective versio

Bitwise Or and Exclusive Or

Bitwise Or and Exclusive Or Binary "|" returns its operands ORed together bit by bit. Binary "^" returns its operands XORed together bit by bit. Although no warning is currently raised, the results are not well defined when these operations are performed on operands that aren't either numbers (see Integer Arithmetic) nor bitstrings (see Bitwise String Operators). Note that "|" and "^" have lower priority than relational operators, so for example the parentheses are essential in a test like pri

@LAST_MATCH_START

@LAST_MATCH_START

sigtrap - Perl pragma to enable simple signal handling

NAME SYNOPSIS DESCRIPTION OPTIONSSIGNAL HANDLERS SIGNAL LISTS OTHER EXAMPLES NAME sigtrap - Perl pragma to enable simple signal handling SYNOPSIS use sigtrap; use sigtrap qw(stack-trace old-interface-signals); # equivalent use sigtrap qw(BUS SEGV PIPE ABRT); use sigtrap qw(die INT QUIT); use sigtrap qw(die normal-signals); use sigtrap qw(die untrapped normal-signals); use sigtrap qw(die untrapped normal-signals stack-trace any error-signals); use sigtrap 'han