Posts Tagged ‘perl’

enc2xs — Perl Encode Module Generator
USAGE
enc2xs -[options]
enc2xs -M ModName mapfiles…
enc2xs -C

DESCRIPTION
enc2xs builds a Perl extension for use by Encode from either [...]

Saturday, August 29th, 2009 at 00:33 | Comments Off
Categories: E
Tags: ,

constant – Perl pragma to declare constants
USAGE
use constant PI => 4 * atan2(1, 1);
use constant DEBUG => 0;

print “Pi [...]

Thursday, August 27th, 2009 at 01:58 | Comments Off
Categories: c
Tags: ,

autouse – postpone load of modules until a function is used
USAGE
use autouse ’Carp’ => qw(carp croak);
carp “this carp was predeclared and autoused “;

DESCRIPTION
If the module “Module” is already loaded, then [...]

Wednesday, August 26th, 2009 at 02:10 | Comments Off
Categories: A
Tags: ,

attrs – set/get attributes of a subroutine (deprecated)
USAGE
sub foo {
use attrs qw(locked method);

[...]

Wednesday, August 26th, 2009 at 02:09 | Comments Off
Categories: A
Tags: ,

attributes – get/set subroutine or variable attributes
USAGE
sub foo : method ;
my ($x,@y,%z) : Bent = 1;
my $s = sub : method { … };

[...]

Wednesday, August 26th, 2009 at 02:08 | Comments Off
Categories: A

a2p – Awk to Perl translator
USAGE
a2p [options] filename

DESCRIPTION
A2p takes an awk script specified on the command line (or from standard
input) and produces a comparable perl script on the standard output.

[...]

Tuesday, August 25th, 2009 at 21:56 | Comments Off
Categories: A
Tags: , , , ,
TOP