getservbyname

getservbyname NAME,PROTO

perlexperiment - A listing of experimental features in Perl

NAME DESCRIPTIONCurrent experiments Accepted features Removed features SEE ALSO AUTHORS COPYRIGHT LICENSE NAME perlexperiment - A listing of experimental features in Perl DESCRIPTION This document lists the current and past experimental features in the perl core. Although all of these are documented with their appropriate topics, this succinct listing gives you an overview and basic facts about their status. So far we've merely tried to find and list the experimental features and infer thei

redo

redo LABEL redo EXPR redo The redo command restarts the loop block without evaluating the conditional again. The continue block, if any, is not executed. If the LABEL is omitted, the command refers to the innermost enclosing loop. The redo EXPR form, available starting in Perl 5.18.0, allows a label name to be computed at run time, and is otherwise identical to redo LABEL . Programs that want to lie to themselves about what was just input normally use this command: # a simpleminded Pascal comme

Memoize::Storable - store Memoized data in Storable database

NAME DESCRIPTION NAME Memoize::Storable - store Memoized data in Storable database DESCRIPTION See Memoize.

msgsnd

msgsnd ID,MSG,FLAGS Calls the System V IPC function msgsnd to send the message MSG to the message queue ID. MSG must begin with the native long integer message type, be followed by the length of the actual message, and then finally the message itself. This kind of packing can be achieved with pack("l! a*", $type, $message) . Returns true if successful, false on error. See also the IPC::SysV and IPC::SysV::Msg documentation. Portability issues: msgsnd in perlport.

reverse

reverse LIST In list context, returns a list value consisting of the elements of LIST in the opposite order. In scalar context, concatenates the elements of LIST and returns a string value with all characters in the opposite order. print join(", ", reverse "world", "Hello"); # Hello, world print scalar reverse "dlrow ,", "olleH"; # Hello, world Used without arguments in scalar context, reverse() reverses $_ . $_ = "dlrow ,olleH"; print reverse; # No output, list con

vars - Perl pragma to predeclare global variable names

NAME SYNOPSIS DESCRIPTION NAME vars - Perl pragma to predeclare global variable names SYNOPSIS use vars qw($frob @mung %seen); DESCRIPTION NOTE: For use with variables in the current package for a single scope, the functionality provided by this pragma has been superseded by our declarations, available in Perl v5.6.0 or later, and use of this pragma is discouraged. See our. This will predeclare all the variables whose names are in the list, allowing you to use them under "use strict", and di

Pod::Perldoc::ToPod - let Perldoc render Pod as ... Pod!

NAME SYNOPSIS DESCRIPTION SEE ALSO COPYRIGHT AND DISCLAIMERS AUTHOR NAME Pod::Perldoc::ToPod - let Perldoc render Pod as ... Pod! SYNOPSIS perldoc -opod Some::Modulename (That's currently the same as the following:) perldoc -u Some::Modulename DESCRIPTION This is a "plug-in" class that allows Perldoc to display Pod source as itself! Pretty Zen, huh? Currently this class works by just filtering out the non-Pod stuff from a given input file. SEE ALSO Pod::Perldoc COPYRIGHT AND DISCLAIMERS Cop

perlboot - Links to information on object-oriented programming in Perl

NAME DESCRIPTION NAME perlboot - Links to information on object-oriented programming in Perl DESCRIPTION For information on OO programming with Perl, please see perlootut and perlobj. (The above documents supersede the tutorial that was formerly here in perlboot.)

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