3e76390151e1337fd8b4a51cc50e0535ddbe7220
[p5sagit/p5-mst-13.2.git] / pod / perltoc.pod
1
2 =head1 NAME
3
4 perltoc - perl documentation table of contents
5
6 =head1 DESCRIPTION
7
8 This page provides a brief table of contents for the rest of the Perl
9 documentation set.  It is meant to be scanned quickly or grepped
10 through to locate the proper section you're looking for.
11
12 =head1 BASIC DOCUMENTATION
13
14 =head2 perl - Practical Extraction and Report Language
15
16 =over 4
17
18 =item SYNOPSIS
19
20 =over 4
21
22 =item Overview
23
24 =item Tutorials
25
26 =item Reference Manual
27
28 =item Internals and C Language Interface
29
30 =item Miscellaneous
31
32 =item Platform-Specific
33
34 =back
35
36 =item DESCRIPTION
37
38 =item AVAILABILITY
39
40 =item ENVIRONMENT
41
42 =item AUTHOR
43
44 =item FILES
45
46 =item SEE ALSO
47
48 =item DIAGNOSTICS
49
50 =item BUGS
51
52 =item NOTES
53
54 =back
55
56 =head2 perlintro -- a brief introduction and overview of Perl
57
58 =over 4
59
60 =item DESCRIPTION
61
62 =over 4
63
64 =item What is Perl?
65
66 =item Running Perl programs
67
68 =item Basic syntax overview
69
70 =item Perl variable types
71
72 Scalars, Arrays, Hashes
73
74 =item Variable scoping
75
76 =item Conditional and looping constructs
77
78 if, while, for, foreach
79
80 =item Builtin operators and functions
81
82 Arithmetic, Numeric comparison, String comparison, Boolean logic,
83 Miscellaneous
84
85 =item Files and I/O
86
87 =item Regular expressions
88
89 Simple matching, Simple substitution, More complex regular expressions,
90 Parentheses for capturing, Other regexp features
91
92 =item Writing subroutines
93
94 =item OO Perl
95
96 =item Using Perl modules
97
98 =back
99
100 =item AUTHOR
101
102 =back
103
104 =head2 perlfaq - frequently asked questions about Perl ($Date: 2002/01/31
105 04:27:54 $)
106
107 =over 4
108
109 =item DESCRIPTION
110
111 =over 4
112
113 =item perlfaq: Structural overview of the FAQ.
114
115 =item L<perlfaq1>: General Questions About Perl
116
117 =item L<perlfaq2>: Obtaining and Learning about Perl
118
119 =item L<perlfaq3>: Programming Tools
120
121 =item L<perlfaq4>: Data Manipulation
122
123 =item L<perlfaq5>: Files and Formats
124
125 =item L<perlfaq6>: Regular Expressions
126
127 =item L<perlfaq7>: General Perl Language Issues
128
129 =item L<perlfaq8>: System Interaction
130
131 =item L<perlfaq9>: Networking
132
133 =back
134
135 =item About the perlfaq documents
136
137 =over 4
138
139 =item Where to get the perlfaq
140
141 =item How to contribute to the perlfaq
142
143 =item What will happen if you mail your Perl programming problems to the
144 authors
145
146 =back
147
148 =item Credits
149
150 =item Author and Copyright Information
151
152 =over 4
153
154 =item Bundled Distributions
155
156 =item Disclaimer
157
158 =back
159
160 =item Changes
161
162 1/November/2000, 23/May/99, 13/April/99, 7/January/99, 22/June/98,
163 24/April/97, 23/April/97, 25/March/97, 18/March/97, 17/March/97 Version,
164 Initial Release: 11/March/97
165
166 =back
167
168 =head2 perlbook - Perl book information
169
170 =over 4
171
172 =item DESCRIPTION
173
174 =back
175
176 =head2 perlsyn - Perl syntax
177
178 =over 4
179
180 =item DESCRIPTION
181
182 =over 4
183
184 =item Declarations
185
186 =item Simple statements
187
188 =item Compound statements
189
190 =item Loop Control
191
192 =item For Loops
193
194 =item Foreach Loops
195
196 =item Basic BLOCKs and Switch Statements
197
198 =item Goto
199
200 =item PODs: Embedded Documentation
201
202 =item Plain Old Comments (Not!)
203
204 =back
205
206 =back
207
208 =head2 perldata - Perl data types
209
210 =over 4
211
212 =item DESCRIPTION
213
214 =over 4
215
216 =item Variable names
217
218 =item Context
219
220 =item Scalar values
221
222 =item Scalar value constructors
223
224 =item List value constructors
225
226 =item Slices
227
228 =item Typeglobs and Filehandles
229
230 =back
231
232 =item SEE ALSO
233
234 =back
235
236 =head2 perlop - Perl operators and precedence
237
238 =over 4
239
240 =item SYNOPSIS
241
242 =item DESCRIPTION
243
244 =over 4
245
246 =item Terms and List Operators (Leftward)
247
248 =item The Arrow Operator
249
250 =item Auto-increment and Auto-decrement
251
252 =item Exponentiation
253
254 =item Symbolic Unary Operators
255
256 =item Binding Operators
257
258 =item Multiplicative Operators
259
260 =item Additive Operators
261
262 =item Shift Operators
263
264 =item Named Unary Operators
265
266 =item Relational Operators
267
268 =item Equality Operators
269
270 =item Bitwise And
271
272 =item Bitwise Or and Exclusive Or
273
274 =item C-style Logical And
275
276 =item C-style Logical Or
277
278 =item Range Operators
279
280 =item Conditional Operator
281
282 =item Assignment Operators
283
284 =item Comma Operator
285
286 =item List Operators (Rightward)
287
288 =item Logical Not
289
290 =item Logical And
291
292 =item Logical or and Exclusive Or
293
294 =item C Operators Missing From Perl
295
296 unary &, unary *, (TYPE)
297
298 =item Quote and Quote-like Operators
299
300 =item Regexp Quote-Like Operators
301
302 ?PATTERN?, m/PATTERN/cgimosx, /PATTERN/cgimosx, q/STRING/, C<'STRING'>,
303 qq/STRING/, "STRING", qr/STRING/imosx, qx/STRING/, `STRING`, qw/STRING/,
304 s/PATTERN/REPLACEMENT/egimosx, tr/SEARCHLIST/REPLACEMENTLIST/cds,
305 y/SEARCHLIST/REPLACEMENTLIST/cds, <<EOF
306
307 =item Gory details of parsing quoted constructs
308
309 Finding the end, Removal of backslashes before delimiters, Interpolation,
310 C<<<'EOF'>, C<m''>, C<s'''>, C<tr///>, C<y///>, C<''>, C<q//>, C<"">,
311 C<``>, C<qq//>, C<qx//>, C<< <file*glob> >>, C<?RE?>, C</RE/>, C<m/RE/>,
312 C<s/RE/foo/>,, Interpolation of regular expressions, Optimization of
313 regular expressions
314
315 =item I/O Operators
316
317 =item Constant Folding
318
319 =item Bitwise String Operators
320
321 =item Integer Arithmetic
322
323 =item Floating-point Arithmetic
324
325 =item Bigger Numbers
326
327 =back
328
329 =back
330
331 =head2 perlsub - Perl subroutines
332
333 =over 4
334
335 =item SYNOPSIS
336
337 =item DESCRIPTION
338
339 =over 4
340
341 =item Private Variables via my()
342
343 =item Persistent Private Variables
344
345 =item Temporary Values via local()
346
347 =item Lvalue subroutines
348
349 =item Passing Symbol Table Entries (typeglobs)
350
351 =item When to Still Use local()
352
353 =item Pass by Reference
354
355 =item Prototypes
356
357 =item Constant Functions
358
359 =item Overriding Built-in Functions
360
361 =item Autoloading
362
363 =item Subroutine Attributes
364
365 =back
366
367 =item SEE ALSO
368
369 =back
370
371 =head2 perlfunc - Perl builtin functions
372
373 =over 4
374
375 =item DESCRIPTION
376
377 =over 4
378
379 =item Perl Functions by Category
380
381 Functions for SCALARs or strings, Regular expressions and pattern matching,
382 Numeric functions, Functions for real @ARRAYs, Functions for list data,
383 Functions for real %HASHes, Input and output functions, Functions for fixed
384 length data or records, Functions for filehandles, files, or directories,
385 Keywords related to the control flow of your perl program, Keywords related
386 to scoping, Miscellaneous functions, Functions for processes and process
387 groups, Keywords related to perl modules, Keywords related to classes and
388 object-orientedness, Low-level socket functions, System V interprocess
389 communication functions, Fetching user and group info, Fetching network
390 info, Time-related functions, Functions new in perl5, Functions obsoleted
391 in perl5
392
393 =item Portability
394
395 =item Alphabetical Listing of Perl Functions
396
397 I<-X> FILEHANDLE, I<-X> EXPR, I<-X>, abs VALUE, abs, accept
398 NEWSOCKET,GENERICSOCKET, alarm SECONDS, alarm, atan2 Y,X, bind SOCKET,NAME,
399 binmode FILEHANDLE, DISCIPLINE, binmode FILEHANDLE, bless REF,CLASSNAME,
400 bless REF, caller EXPR, caller, chdir EXPR, chmod LIST, chomp VARIABLE,
401 chomp( LIST ), chomp, chop VARIABLE, chop( LIST ), chop, chown LIST, chr
402 NUMBER, chr, chroot FILENAME, chroot, close FILEHANDLE, close, closedir
403 DIRHANDLE, connect SOCKET,NAME, continue BLOCK, cos EXPR, cos, crypt
404 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MASK, defined EXPR,
405 defined, delete EXPR, die LIST, do BLOCK, do SUBROUTINE(LIST), do EXPR,
406 dump LABEL, dump, each HASH, eof FILEHANDLE, eof (), eof, eval EXPR, eval
407 BLOCK, exec LIST, exec PROGRAM LIST, exists EXPR, exit EXPR, exp EXPR, exp,
408 fcntl FILEHANDLE,FUNCTION,SCALAR, fileno FILEHANDLE, flock
409 FILEHANDLE,OPERATION, fork, format, formline PICTURE,LIST, getc FILEHANDLE,
410 getc, getlogin, getpeername SOCKET, getpgrp PID, getppid, getpriority
411 WHICH,WHO, getpwnam NAME, getgrnam NAME, gethostbyname NAME, getnetbyname
412 NAME, getprotobyname NAME, getpwuid UID, getgrgid GID, getservbyname
413 NAME,PROTO, gethostbyaddr ADDR,ADDRTYPE, getnetbyaddr ADDR,ADDRTYPE,
414 getprotobynumber NUMBER, getservbyport PORT,PROTO, getpwent, getgrent,
415 gethostent, getnetent, getprotoent, getservent, setpwent, setgrent,
416 sethostent STAYOPEN, setnetent STAYOPEN, setprotoent STAYOPEN, setservent
417 STAYOPEN, endpwent, endgrent, endhostent, endnetent, endprotoent,
418 endservent, getsockname SOCKET, getsockopt SOCKET,LEVEL,OPTNAME, glob EXPR,
419 glob, gmtime EXPR, goto LABEL, goto EXPR, goto &NAME, grep BLOCK LIST, grep
420 EXPR,LIST, hex EXPR, hex, import, index STR,SUBSTR,POSITION, index
421 STR,SUBSTR, int EXPR, int, ioctl FILEHANDLE,FUNCTION,SCALAR, join
422 EXPR,LIST, keys HASH, kill SIGNAL, LIST, last LABEL, last, lc EXPR, lc,
423 lcfirst EXPR, lcfirst, length EXPR, length, link OLDFILE,NEWFILE, listen
424 SOCKET,QUEUESIZE, local EXPR, localtime EXPR, lock THING, log EXPR, log,
425 lstat EXPR, lstat, m//, map BLOCK LIST, map EXPR,LIST, mkdir FILENAME,MASK,
426 mkdir FILENAME, msgctl ID,CMD,ARG, msgget KEY,FLAGS, msgrcv
427 ID,VAR,SIZE,TYPE,FLAGS, msgsnd ID,MSG,FLAGS, my EXPR, my EXPR : ATTRIBUTES,
428 next LABEL, next, no Module LIST, oct EXPR, oct, open FILEHANDLE,EXPR, open
429 FILEHANDLE,MODE,EXPR, open FILEHANDLE,MODE,EXPR,LIST, open
430 FILEHANDLE,MODE,REFERENCE, open FILEHANDLE, opendir DIRHANDLE,EXPR, ord
431 EXPR, ord, our EXPR, our EXPR : ATTRIBUTES, pack TEMPLATE,LIST, package
432 NAMESPACE, package, pipe READHANDLE,WRITEHANDLE, pop ARRAY, pop, pos
433 SCALAR, pos, print FILEHANDLE LIST, print LIST, print, printf FILEHANDLE
434 FORMAT, LIST, printf FORMAT, LIST, prototype FUNCTION, push ARRAY,LIST,
435 q/STRING/, qq/STRING/, qr/STRING/, qx/STRING/, qw/STRING/, quotemeta EXPR,
436 quotemeta, rand EXPR, rand, read FILEHANDLE,SCALAR,LENGTH,OFFSET, read
437 FILEHANDLE,SCALAR,LENGTH, readdir DIRHANDLE, readline EXPR, readlink EXPR,
438 readlink, readpipe EXPR, recv SOCKET,SCALAR,LENGTH,FLAGS, redo LABEL, redo,
439 ref EXPR, ref, rename OLDNAME,NEWNAME, require VERSION, require EXPR,
440 require, reset EXPR, reset, return EXPR, return, reverse LIST, rewinddir
441 DIRHANDLE, rindex STR,SUBSTR,POSITION, rindex STR,SUBSTR, rmdir FILENAME,
442 rmdir, s///, scalar EXPR, seek FILEHANDLE,POSITION,WHENCE, seekdir
443 DIRHANDLE,POS, select FILEHANDLE, select, select RBITS,WBITS,EBITS,TIMEOUT,
444 semctl ID,SEMNUM,CMD,ARG, semget KEY,NSEMS,FLAGS, semop KEY,OPSTRING, send
445 SOCKET,MSG,FLAGS,TO, send SOCKET,MSG,FLAGS, setpgrp PID,PGRP, setpriority
446 WHICH,WHO,PRIORITY, setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL, shift ARRAY,
447 shift, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS, shmread ID,VAR,POS,SIZE,
448 shmwrite ID,STRING,POS,SIZE, shutdown SOCKET,HOW, sin EXPR, sin, sleep
449 EXPR, sleep, sockatmark SOCKET, socket SOCKET,DOMAIN,TYPE,PROTOCOL,
450 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, sort SUBNAME LIST, sort
451 BLOCK LIST, sort LIST, splice ARRAY,OFFSET,LENGTH,LIST, splice
452 ARRAY,OFFSET,LENGTH, splice ARRAY,OFFSET, splice ARRAY, split
453 /PATTERN/,EXPR,LIMIT, split /PATTERN/,EXPR, split /PATTERN/, split, sprintf
454 FORMAT, LIST, sqrt EXPR, sqrt, srand EXPR, srand, stat FILEHANDLE, stat
455 EXPR, stat, study SCALAR, study, sub BLOCK, sub NAME, sub NAME BLOCK,
456 substr EXPR,OFFSET,LENGTH,REPLACEMENT, substr EXPR,OFFSET,LENGTH, substr
457 EXPR,OFFSET, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
458 FILEHANDLE,FILENAME,MODE, sysopen FILEHANDLE,FILENAME,MODE,PERMS, sysread
459 FILEHANDLE,SCALAR,LENGTH,OFFSET, sysread FILEHANDLE,SCALAR,LENGTH, sysseek
460 FILEHANDLE,POSITION,WHENCE, system LIST, system PROGRAM LIST, syswrite
461 FILEHANDLE,SCALAR,LENGTH,OFFSET, syswrite FILEHANDLE,SCALAR,LENGTH,
462 syswrite FILEHANDLE,SCALAR, tell FILEHANDLE, tell, telldir DIRHANDLE, tie
463 VARIABLE,CLASSNAME,LIST, tied VARIABLE, time, times, tr///, truncate
464 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, uc EXPR, uc, ucfirst EXPR,
465 ucfirst, umask EXPR, umask, undef EXPR, undef, unlink LIST, unlink, unpack
466 TEMPLATE,EXPR, untie VARIABLE, unshift ARRAY,LIST, use Module VERSION LIST,
467 use Module VERSION, use Module LIST, use Module, use VERSION, utime LIST,
468 values HASH, vec EXPR,OFFSET,BITS, wait, waitpid PID,FLAGS, wantarray, warn
469 LIST, write FILEHANDLE, write EXPR, write, y///
470
471 =back
472
473 =back
474
475 =head2 perlreftut - Mark's very short tutorial about references
476
477 =over 4
478
479 =item DESCRIPTION
480
481 =item Who Needs Complicated Data Structures?
482
483 =item The Solution
484
485 =item Syntax
486
487 =over 4
488
489 =item Making References
490
491 =item Using References
492
493 =back
494
495 =item An Example
496
497 =item Arrow Rule
498
499 =item Solution
500
501 =item The Rest
502
503 =item Summary
504
505 =item Credits
506
507 =over 4
508
509 =item Distribution Conditions
510
511 =back
512
513 =back
514
515 =head2 perldsc - Perl Data Structures Cookbook
516
517 =over 4
518
519 =item DESCRIPTION
520
521 arrays of arrays, hashes of arrays, arrays of hashes, hashes of hashes,
522 more elaborate constructs
523
524 =item REFERENCES
525
526 =item COMMON MISTAKES
527
528 =item CAVEAT ON PRECEDENCE
529
530 =item WHY YOU SHOULD ALWAYS C<use strict>
531
532 =item DEBUGGING
533
534 =item CODE EXAMPLES
535
536 =item ARRAYS OF ARRAYS
537
538 =over 4
539
540 =item Declaration of an ARRAY OF ARRAYS
541
542 =item Generation of an ARRAY OF ARRAYS
543
544 =item Access and Printing of an ARRAY OF ARRAYS
545
546 =back
547
548 =item HASHES OF ARRAYS
549
550 =over 4
551
552 =item Declaration of a HASH OF ARRAYS
553
554 =item Generation of a HASH OF ARRAYS
555
556 =item Access and Printing of a HASH OF ARRAYS
557
558 =back
559
560 =item ARRAYS OF HASHES
561
562 =over 4
563
564 =item Declaration of an ARRAY OF HASHES
565
566 =item Generation of an ARRAY OF HASHES
567
568 =item Access and Printing of an ARRAY OF HASHES
569
570 =back
571
572 =item HASHES OF HASHES
573
574 =over 4
575
576 =item Declaration of a HASH OF HASHES
577
578 =item Generation of a HASH OF HASHES
579
580 =item Access and Printing of a HASH OF HASHES
581
582 =back
583
584 =item MORE ELABORATE RECORDS
585
586 =over 4
587
588 =item Declaration of MORE ELABORATE RECORDS
589
590 =item Declaration of a HASH OF COMPLEX RECORDS
591
592 =item Generation of a HASH OF COMPLEX RECORDS
593
594 =back
595
596 =item Database Ties
597
598 =item SEE ALSO
599
600 =item AUTHOR
601
602 =back
603
604 =head2 perlrequick - Perl regular expressions quick start
605
606 =over 4
607
608 =item DESCRIPTION
609
610 =item The Guide
611
612 =over 4
613
614 =item Simple word matching
615
616 =item Using character classes
617
618 =item Matching this or that
619
620 =item Grouping things and hierarchical matching
621
622 =item Extracting matches
623
624 =item Matching repetitions
625
626 =item More matching
627
628 =item Search and replace
629
630 =item The split operator
631
632 =back
633
634 =item BUGS
635
636 =item SEE ALSO
637
638 =item AUTHOR AND COPYRIGHT
639
640 =over 4
641
642 =item Acknowledgments
643
644 =back
645
646 =back
647
648 =head2 perlpod - the Plain Old Documentation format
649
650 =over 4
651
652 =item DESCRIPTION
653
654 =over 4
655
656 =item Ordinary Paragraph
657
658 =item Verbatim Paragraph
659
660 =item Command Paragraph
661
662 C<=head1 I<Heading Text>>, C<=head2 I<Heading Text>>, C<=head3 I<Heading
663 Text>>, C<=head4 I<Heading Text>>, C<=over I<indentlevel>>, C<=item
664 I<stuff...>>, C<=back>, C<=cut>, C<=pod>, C<=begin I<formatname>>, C<=end
665 I<formatname>>, C<=for I<formatname> I<text...>>
666
667 =item Formatting Codes
668
669 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
670 C<CE<lt>codeE<gt>> -- code text, C<LE<lt>nameE<gt>> -- a hyperlink,
671 C<EE<lt>escapeE<gt>> -- a character escape, C<FE<lt>filenameE<gt>> -- used
672 for filenames, C<SE<lt>textE<gt>> -- text contains non-breaking spaces,
673 C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a null
674 (zero-effect) formatting code
675
676 =item The Intent
677
678 =item Embedding Pods in Perl Modules
679
680 =item Hints for Writing Pod
681
682 =back
683
684 =item SEE ALSO
685
686 =item AUTHOR
687
688 =back
689
690 =head2 perlpodspec - Plain Old Documentation: format specification and
691 notes
692
693 =over 4
694
695 =item DESCRIPTION
696
697 =item Pod Definitions
698
699 =item Pod Commands
700
701 "=head1", "=head2", "=head3", "=head4", "=pod", "=cut", "=over", "=item",
702 "=back", "=begin formatname", "=end formatname", "=for formatname text..."
703
704 =item Pod Formatting Codes
705
706 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
707 C<CE<lt>codeE<gt>> -- code text, C<FE<lt>filenameE<gt>> -- style for
708 filenames, C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a
709 null (zero-effect) formatting code, C<LE<lt>nameE<gt>> -- a hyperlink,
710 C<EE<lt>escapeE<gt>> -- a character escape, C<SE<lt>textE<gt>> -- text
711 contains non-breaking spaces
712
713 =item Notes on Implementing Pod Processors
714
715 =item About LE<lt>...E<gt> Codes
716
717 First:, Second:, Third:, Fourth:, Fifth:, Sixth:
718
719 =item About =over...=back Regions
720
721 =item About Data Paragraphs and "=begin/=end" Regions
722
723 =item SEE ALSO
724
725 =item AUTHOR
726
727 =back
728
729 =head2 perlstyle - Perl style guide
730
731 =over 4
732
733 =item DESCRIPTION
734
735 =back
736
737 =head2 perltrap - Perl traps for the unwary
738
739 =over 4
740
741 =item DESCRIPTION
742
743 =over 4
744
745 =item Awk Traps
746
747 =item C Traps
748
749 =item Sed Traps
750
751 =item Shell Traps
752
753 =item Perl Traps
754
755 =item Perl4 to Perl5 Traps
756
757 Discontinuance, Deprecation, and BugFix traps, Parsing Traps, Numerical
758 Traps, General data type traps, Context Traps - scalar, list contexts,
759 Precedence Traps, General Regular Expression Traps using s///, etc,
760 Subroutine, Signal, Sorting Traps, OS Traps, DBM Traps, Unclassified Traps
761
762 =item Discontinuance, Deprecation, and BugFix traps
763
764 Discontinuance, Deprecation, BugFix, Discontinuance, Discontinuance,
765 Discontinuance, BugFix, Discontinuance, Discontinuance, BugFix,
766 Discontinuance, Deprecation, Discontinuance, Discontinuance
767
768 =item Parsing Traps
769
770 Parsing, Parsing, Parsing, Parsing, Parsing
771
772 =item Numerical Traps
773
774 Numerical, Numerical, Numerical, Bitwise string ops
775
776 =item General data type traps
777
778 (Arrays), (Arrays), (Hashes), (Globs), (Globs), (Scalar String),
779 (Constants), (Scalars), (Variable Suicide)
780
781 =item Context Traps - scalar, list contexts
782
783 (list context), (scalar context), (scalar context), (list, builtin)
784
785 =item Precedence Traps
786
787 Precedence, Precedence, Precedence, Precedence, Precedence, Precedence,
788 Precedence
789
790 =item General Regular Expression Traps using s///, etc.
791
792 Regular Expression, Regular Expression, Regular Expression, Regular
793 Expression, Regular Expression, Regular Expression, Regular Expression,
794 Regular Expression
795
796 =item Subroutine, Signal, Sorting Traps
797
798 (Signals), (Sort Subroutine), warn() won't let you specify a filehandle
799
800 =item OS Traps
801
802 (SysV), (SysV)
803
804 =item Interpolation Traps
805
806 Interpolation, Interpolation, Interpolation, Interpolation, Interpolation,
807 Interpolation, Interpolation, Interpolation, Interpolation
808
809 =item DBM Traps
810
811 DBM, DBM
812
813 =item Unclassified Traps
814
815 C<require>/C<do> trap using returned value, C<split> on empty string with
816 LIMIT specified
817
818 =back
819
820 =back
821
822 =head2 perlrun - how to execute the Perl interpreter
823
824 =over 4
825
826 =item SYNOPSIS
827
828 =item DESCRIPTION
829
830 =over 4
831
832 =item #! and quoting on non-Unix systems
833
834 OS/2, MS-DOS, Win95/NT, Macintosh, VMS
835
836 =item Location of Perl
837
838 =item Command Switches
839
840 B<-0>[I<digits>], B<-a>, B<-C>, B<-c>, B<-d>, B<-d:>I<foo[=bar,baz]>,
841 B<-D>I<letters>, B<-D>I<number>, B<-e> I<commandline>, B<-F>I<pattern>,
842 B<-h>, B<-i>[I<extension>], B<-I>I<directory>, B<-l>[I<octnum>],
843 B<-m>[B<->]I<module>, B<-M>[B<->]I<module>, B<-M>[B<->]I<'module ...'>,
844 B<-[mM]>[B<->]I<module=arg[,arg]...>, B<-n>, B<-p>, B<-P>, B<-s>, B<-S>,
845 B<-t>, B<-T>, B<-u>, B<-U>, B<-v>, B<-V>, B<-V:>I<name>, B<-w>, B<-W>,
846 B<-X>, B<-x> I<directory>
847
848 =back
849
850 =item ENVIRONMENT
851
852 HOME, LOGDIR, PATH, PERL5LIB, PERL5OPT, PERLLIB, PERL5DB, PERL5SHELL
853 (specific to the Win32 port), PERL_DEBUG_MSTATS, PERL_DESTRUCT_LEVEL,
854 PERL_ENCODING, PERL_ROOT (specific to the VMS port), SYS$LOGIN (specific to
855 the VMS port)
856
857 =item DESCRIPTION
858
859 accept() on closed socket %s, Allocation too large: %lx, '!' allowed only
860 after types %s, Ambiguous call resolved as CORE::%s(), qualify as such or
861 use &, Ambiguous range in transliteration operator, Ambiguous use of %s
862 resolved as %s, '|' and '<' may not both be specified on command line, '|'
863 and '>' may not both be specified on command line, Applying %s to %s will
864 act on scalar(%s), Args must match #! line, Arg too short for msgsnd, %s
865 argument is not a HASH or ARRAY element, %s argument is not a HASH or ARRAY
866 element or slice, %s argument is not a subroutine name, Argument "%s" isn't
867 numeric%s, Array @%s missing the @ in argument %d of %s(), assertion
868 botched: %s, Assertion failed: file "%s", Assignment to both a list and a
869 scalar, Attempt to access disallowed key '%s' in a fixed hash, Attempt to
870 clear a fixed hash, Attempt to delete readonly key '%s' from a fixed hash,
871 Attempt to delete disallowed key '%s' from a fixed hash, Attempt to bless
872 into a reference, Attempt to free non-arena SV: 0x%lx, Attempt to free
873 nonexistent shared string, Attempt to free temp prematurely, Attempt to
874 free unreferenced glob pointers, Attempt to free unreferenced scalar,
875 Attempt to join self, Attempt to pack pointer to temporary value, Attempt
876 to use reference as lvalue in substr, Bad arg length for %s, is %d, should
877 be %s, Bad evalled substitution pattern, Bad filehandle: %s, Bad free()
878 ignored, Bad hash, Bad index while coercing array into hash, Badly placed
879 ()'s, Bad name after %s::, Bad realloc() ignored, Bad symbol for array, Bad
880 symbol for filehandle, Bad symbol for hash, Bareword found in conditional,
881 Bareword "%s" not allowed while "strict subs" in use, Bareword "%s" refers
882 to nonexistent package, BEGIN failed--compilation aborted, BEGIN not safe
883 after errors--compilation aborted, \1 better written as $1, Binary number >
884 0b11111111111111111111111111111111 non-portable, bind() on closed socket
885 %s, binmode() on closed filehandle %s, Bit vector size > 32 non-portable,
886 Bizarre copy of %s in %s, B<-P> not allowed for setuid/setgid script,
887 Buffer overflow in prime_env_iter: %s, Callback called exit, %s() called
888 too early to check prototype, / cannot take a count, Can't bless
889 non-reference value, Can't call method "%s" in empty package "%s", Can't
890 call method "%s" on an undefined value, Can't call method "%s" on unblessed
891 reference, Can't call method "%s" without a package or object reference,
892 Can't chdir to %s, Can't check filesystem of script "%s" for nosuid, Can't
893 coerce array into hash, Can't coerce %s to integer in %s, Can't coerce %s
894 to number in %s, Can't coerce %s to string in %s, Can't create pipe
895 mailbox, Can't declare class for non-scalar %s in "%s", Can't declare %s in
896 "%s", Can't do inplace edit: %s is not a regular file, Can't do inplace
897 edit on %s: %s, Can't do inplace edit without backup, Can't do inplace
898 edit: %s would not be unique, Can't do {n,m} with n > m in regex; marked by
899 <-- HERE in m/%s/, Can't do setegid!, Can't do seteuid!, Can't do setuid,
900 Can't do waitpid with flags, Can't emulate -%s on #! line, Can't exec "%s":
901 %s, Can't exec %s, Can't execute %s, Can't find an opnumber for "%s", Can't
902 find %s character property "%s", Can't find label %s, Can't find %s on
903 PATH, Can't find %s on PATH, '.' not in PATH, Can't find string terminator
904 %s anywhere before EOF, Can't find %s property definition %s, Can't fork,
905 Can't get filespec - stale stat buffer?, Can't get pipe mailbox device
906 name, Can't get SYSGEN parameter value for MAXBUF, Can't "goto" into the
907 middle of a foreach loop, Can't "goto" out of a pseudo block, Can't goto
908 subroutine from an eval-string, Can't goto subroutine outside a subroutine,
909 Can't ignore signal CHLD, forcing to default, Can't "last" outside a loop
910 block, Can't localize lexical variable %s, Can't localize pseudo-hash
911 element, Can't localize through a reference, Can't locate %s, Can't locate
912 auto/%s.al in @INC, Can't locate object method "%s" via package "%s",
913 (perhaps you forgot to load "%s"?), Can't locate package %s for @%s::ISA,
914 Can't make list assignment to \%ENV on this system, Can't modify %s in %s,
915 Can't modify nonexistent substring, Can't modify non-lvalue subroutine
916 call, Can't msgrcv to read-only var, Can't "next" outside a loop block,
917 Can't open %s: %s, Can't open bidirectional pipe, Can't open error file %s
918 as stderr, Can't open input file %s as stdin, Can't open output file %s as
919 stdout, Can't open output pipe (name: %s), Can't open perl script%s: %s,
920 Can't read CRTL environ, Can't redefine active sort subroutine %s, Can't
921 "redo" outside a loop block, Can't remove %s: %s, skipping file, Can't
922 rename %s to %s: %s, skipping file, Can't reopen input pipe (name: %s) in
923 binary mode, Can't resolve method `%s' overloading `%s' in package `%s',
924 Can't reswap uid and euid, Can't return %s from lvalue subroutine, Can't
925 return %s to lvalue scalar context, Can't return outside a subroutine,
926 Can't stat script "%s", Can't swap uid and euid, Can't take log of %g,
927 Can't take sqrt of %g, Can't undef active subroutine, Can't unshift, Can't
928 upgrade that kind of scalar, Can't upgrade to undef, Can't use an undefined
929 value as %s reference, Can't use anonymous symbol table for method lookup,
930 Can't use bareword ("%s") as %s ref while "strict refs" in use, Can't use
931 %! because Errno.pm is not available, Can't use %s for loop variable, Can't
932 use global %s in "my", Can't use "my %s" in sort comparison, Can't use %s
933 ref as %s ref, Can't use string ("%s") as %s ref while "strict refs" in
934 use, Can't use subscript on %s, Can't use \%c to mean $%c in expression,
935 Can't weaken a nonreference, Can't x= to read-only value, Character in "C"
936 format wrapped, Character in "c" format wrapped, close() on unopened
937 filehandle %s, %s: Command not found, Compilation failed in require,
938 Complex regular subexpression recursion limit (%d) exceeded, connect() on
939 closed socket %s, Constant(%s)%s: %s, Constant is not %s reference,
940 Constant subroutine %s redefined, Constant subroutine %s undefined, Copy
941 method did not return a reference, CORE::%s is not a keyword, corrupted
942 regexp pointers, corrupted regexp program, Corrupt malloc ptr 0x%lx at
943 0x%lx, C<-p> destination: %s, C<-T> and C<-B> not implemented on
944 filehandles, Deep recursion on subroutine "%s", defined(@array) is
945 deprecated, defined(%hash) is deprecated, %s defines neither package nor
946 VERSION--version check failed, Delimiter for here document is too long, Did
947 not produce a valid header, %s did not return a true value, (Did you mean
948 &%s instead?), (Did you mean "local" instead of "our"?), (Did you mean $ or
949 @ instead of %?), Died, Document contains no data, %s does not define
950 %s::VERSION--version check failed, Don't know how to handle magic of type
951 '%s', do_study: out of memory, (Do you need to predeclare %s?), dump()
952 better written as CORE::dump(), Duplicate free() ignored, elseif should be
953 elsif, Empty %s, entering effective %s failed, Error converting file
954 specification %s, %s: Eval-group in insecure regular expression, %s:
955 Eval-group not allowed at run time, %s: Eval-group not allowed, use re
956 'eval', Excessively long <> operator, exec? I'm not *that* kind of
957 operating system, Execution of %s aborted due to compilation errors,
958 Exiting eval via %s, Exiting format via %s, Exiting pseudo-block via %s,
959 Exiting subroutine via %s, Exiting substitution via %s, Explicit blessing
960 to '' (assuming package main), %s: Expression syntax, %s failed--call queue
961 aborted, False [] range "%s" in regex; marked by <-- HERE in m/%s/, Fatal
962 VMS error at %s, line %d, fcntl is not implemented, Filehandle %s opened
963 only for input, Filehandle %s opened only for output, Final $ should be \$
964 or $name, Final @ should be \@ or @name, flock() on closed filehandle %s,
965 Quantifier follows nothing in regex;, Format not terminated, Format %s
966 redefined, Found = in conditional, should be ==, %s found where operator
967 expected, gdbm store returned %d, errno %d, key "%s", gethostent not
968 implemented, get%sname() on closed socket %s, getpwnam returned invalid UIC
969 %#o for user "%s", getsockopt() on closed socket %s, Global symbol "%s"
970 requires explicit package name, glob failed (%s), Glob not terminated, Got
971 an error from DosAllocMem, goto must have label, %s-group starts with a
972 count, %s had compilation errors, Had to create %s unexpectedly, Hash %%s
973 missing the % in argument %d of %s(), %s has too many errors, Hexadecimal
974 number > 0xffffffff non-portable, Identifier too long, Illegal binary digit
975 %s, Illegal binary digit %s ignored, Illegal character %s (carriage
976 return), Illegal character in prototype for %s : %s, Illegal division by
977 zero, Illegal hexadecimal digit %s ignored, Illegal modulus zero, Illegal
978 number of bits in vec, Illegal octal digit %s, Illegal octal digit %s
979 ignored, Illegal switch in PERL5OPT: %s, Ill-formed CRTL environ value
980 "%s", Ill-formed message in prime_env_iter: |%s|, (in cleanup) %s, In
981 EBCDIC the v-string components cannot exceed 2147483647, Insecure
982 dependency in %s, Insecure directory in %s, Insecure $ENV{%s} while running
983 %s, Integer overflow in %s number, Internal disaster in regex; marked by
984 <-- HERE in m/%s/, Internal inconsistency in tracking vforks, Internal urp
985 in regex; marked by <-- HERE in m/%s/, %s (...) interpreted as function,
986 Invalid %s attribute: %s, Invalid %s attributes: %s, Invalid conversion in
987 %s: "%s", Invalid [] range "%s" in regex; marked by <-- HERE in m/%s/,
988 Invalid [] range "%s" in transliteration operator, Invalid separator
989 character %s in attribute list, Invalid type in pack: '%s', Invalid type in
990 unpack: '%s', ioctl is not implemented, ioctl() on unopened %s,
991 IO::Socket::atmark not implemented on this architecture, `%s' is not a code
992 reference, `%s' is not an overloadable type, junk on end of regexp, Label
993 not found for "last %s", Label not found for "next %s", Label not found for
994 "redo %s", leaving effective %s failed, listen() on closed socket %s,
995 lstat() on filehandle %s, Lvalue subs returning %s not implemented yet,
996 Lookbehind longer than %d not implemented in regex;, Malformed
997 PERLLIB_PREFIX, Malformed prototype for %s: %s, Malformed UTF-8 character
998 (%s), Malformed UTF-16 surrogate, %s matches null string many times in
999 regex;, "%s" may clash with future reserved word, % may only be used in
1000 unpack, Method for operation %s not found in package %s during blessing,
1001 Method %s not permitted, Might be a runaway multi-line %s string starting
1002 on line %d, Misplaced _ in number, Missing %sbrace%s on \N{}, Missing comma
1003 after first argument to %s function, Missing command in piped open, Missing
1004 name in "my sub", Missing $ on loop variable, (Missing operator before
1005 %s?), Missing right brace on %s, Missing right curly or square bracket,
1006 (Missing semicolon on previous line?), Modification of a read-only value
1007 attempted, Modification of non-creatable array value attempted, %s,
1008 Modification of non-creatable hash value attempted, %s, Module name must be
1009 constant, Module name required with -%c option, More than one argument to
1010 open, msg%s not implemented, Multidimensional syntax %s not supported, /
1011 must be followed by a*, A* or Z*, / must be followed by a, A or Z, / must
1012 follow a numeric type, "my sub" not yet implemented, "my" variable %s can't
1013 be in a package, Name "%s::%s" used only once: possible typo, Negative
1014 length, Negative offset to vec in lvalue context, Nested quantifiers in
1015 regex; marked by <-- HERE in m/%s/, %s never introduced, No %s allowed
1016 while running setuid, No B<-e> allowed in setuid scripts, No comma allowed
1017 after %s, No command into which to pipe on command line, No DB::DB routine
1018 defined, No dbm on this machine, No DBsub routine, No error file after 2>
1019 or 2>> on command line, No input file after < on command line, No #! line,
1020 "no" not allowed in expression, No output file after > on command line, No
1021 output file after > or >> on command line, No package name allowed for
1022 variable %s in "our", No Perl script found in input, No setregid available,
1023 No setreuid available, No space allowed after -%c, No %s specified for -%c,
1024 No such class %s, No such pipe open, No such pseudo-hash field "%s", No
1025 such pseudo-hash field "%s" in variable %s of type %s, No such signal:
1026 SIG%s, Not a CODE reference, Not a format reference, Not a GLOB reference,
1027 Not a HASH reference, Not an ARRAY reference, Not a perl script, Not a
1028 SCALAR reference, Not a subroutine reference, Not a subroutine reference in
1029 overload table, Not enough arguments for %s, Not enough format arguments,
1030 %s: not found, %s not allowed in length fields, no UTC offset information;
1031 assuming local time is UTC, Null filename used, NULL OP IN RUN, Null
1032 picture in formline, Null realloc, NULL regexp argument, NULL regexp
1033 parameter, Number too long, Octal number in vector unsupported, Octal
1034 number > 037777777777 non-portable, Odd number of arguments for
1035 overload::constant, Odd number of elements in anonymous hash, Odd number of
1036 elements in hash assignment, Offset outside string, -%s on unopened
1037 filehandle %s, %s() on unopened %s, oops: oopsAV, oops: oopsHV, Operation
1038 `%s': no method found, %s, Operator or semicolon missing before %s, "our"
1039 variable %s redeclared, Out of memory!, Out of memory during "large"
1040 request for %s, Out of memory during request for %s, Out of memory during
1041 ridiculously large request, Out of memory for yacc stack, @ outside of
1042 string, %s package attribute may clash with future reserved word: %s, page
1043 overflow, panic: %s, panic: ck_grep, panic: ck_split, panic: corrupt saved
1044 stack index, panic: del_backref, panic: die %s, panic: pp_match%s, panic:
1045 do_subst, panic: do_trans_%s, panic: frexp, panic: goto, panic:
1046 INTERPCASEMOD, panic: INTERPCONCAT, panic: kid popen errno read, panic:
1047 last, panic: leave_scope clearsv, panic: leave_scope inconsistency, panic:
1048 magic_killbackrefs, panic: malloc, panic: mapstart, panic: null array,
1049 panic: pad_alloc, panic: pad_free curpad, panic: pad_free po, panic:
1050 pad_reset curpad, panic: pad_sv po, panic: pad_swipe curpad, panic:
1051 pad_swipe po, panic: pp_iter, panic: pp_split, panic: realloc, panic:
1052 restartop, panic: return, panic: scan_num, panic: sv_insert, panic:
1053 top_env, panic: yylex, panic: utf16_to_utf8: odd bytelen, Parentheses
1054 missing around "%s" list, Perl %s required--this is only version %s,
1055 stopped, PERL_SH_DIR too long, perl: warning: Setting locale failed,
1056 perlio: argument list not closed for layer "%s", perlio: invalid separator
1057 character %s in attribute list, perlio: unknown layer "%s", Permission
1058 denied, pid %x not a child, P must have an explicit size, POSIX syntax [%s]
1059 belongs inside character classes in regex;, POSIX syntax [. .] is reserved
1060 for future extensions in regex;, POSIX syntax [= =] is reserved for future
1061 extensions in regex;, POSIX class [:%s:] unknown in regex;, POSIX getpgrp
1062 can't take an argument, Possible attempt to put comments in qw() list,
1063 Possible attempt to separate words with commas, Possible memory corruption:
1064 %s overflowed 3rd argument, Possible unintended interpolation of %s in
1065 string, Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME :
1066 ATTRS" instead, Precedence problem: open %s should be open(%s), Premature
1067 end of script headers, printf() on closed filehandle %s, print() on closed
1068 filehandle %s, Process terminated by SIG%s, Prototype mismatch: %s vs %s,
1069 Prototype not terminated, Quantifier in {,} bigger than %d in regex;,
1070 Quantifier unexpected on zero-length expression;, Range iterator outside
1071 integer range, readline() on closed filehandle %s, Reallocation too large:
1072 %lx, realloc() of freed memory ignored, Recompile perl with B<-D>DEBUGGING
1073 to use B<-D> switch, Recursive inheritance detected in package '%s',
1074 Recursive inheritance detected while looking for method %s, Reference found
1075 where even-sized list expected, Reference is already weak, Reference
1076 miscount in sv_replace(), Reference to nonexistent group in regex;, regexp
1077 memory corruption, Regexp out of space, Repeat count in pack overflows,
1078 Repeat count in unpack overflows, Reversed %s= operator, Runaway format,
1079 Scalar value @%s[%s] better written as $%s[%s], Scalar value @%s{%s} better
1080 written as $%s{%s}, Scalars leaked: %d, Script is not setuid/setgid in
1081 suidperl, Search pattern not terminated, %sseek() on unopened filehandle,
1082 select not implemented, Self-ties of arrays and hashes are not supported,
1083 Semicolon seems to be missing, semi-panic: attempt to dup freed string,
1084 sem%s not implemented, send() on closed socket %s, Sequence (? incomplete
1085 in regex; marked by <-- HERE in m/%s/, Sequence (?{...}) not terminated or
1086 not {}-balanced in regex;, Sequence (?%s...) not implemented in regex;,
1087 Sequence (?%s...) not recognized in regex;, Sequence (?#... not terminated
1088 in regex;, 500 Server error, Server error, setegid() not implemented,
1089 seteuid() not implemented, setpgrp can't take arguments, setrgid() not
1090 implemented, setruid() not implemented, setsockopt() on closed socket %s,
1091 Setuid/gid script is writable by world, shm%s not implemented, <> should be
1092 quotes, /%s/ should probably be written as "%s", shutdown() on closed
1093 socket %s, SIG%s handler "%s" not defined, sort is now a reserved word,
1094 Sort subroutine didn't return a numeric value, Sort subroutine didn't
1095 return single value, splice() offset past end of array, Split loop,
1096 Statement unlikely to be reached, stat() on unopened filehandle %s, Stub
1097 found while resolving method `%s' overloading %s, Subroutine %s redefined,
1098 Substitution loop, Substitution pattern not terminated, Substitution
1099 replacement not terminated, substr outside of string, suidperl is no longer
1100 needed since %s, Switch (?(condition)... contains too many branches in
1101 regex;, Switch condition not recognized in regex;, switching effective %s
1102 is not implemented, syntax error, syntax error at line %d: `%s' unexpected,
1103 syntax error in file %s at line %d, next 2 tokens "%s", %s syntax OK,
1104 System V %s is not implemented on this machine, syswrite() on closed
1105 filehandle %s, Target of goto is too deeply nested, tell() on unopened
1106 filehandle, That use of $[ is unsupported, The crypt() function is
1107 unimplemented due to excessive paranoia, The %s function is unimplemented,
1108 The stat preceding %s wasn't an lstat, This Perl can't reset CRTL environ
1109 elements (%s), This Perl can't set CRTL environ elements (%s=%s), times not
1110 implemented, Too few args to syscall, Too late for "B<-T>" option, Too late
1111 for "-%s" option, Too late to run %s block, Too many args to syscall, Too
1112 many arguments for %s, Too many )'s, Too many ('s, Trailing \ in regex
1113 m/%s/, Transliteration pattern not terminated, Transliteration replacement
1114 not terminated, truncate not implemented, Type of arg %d to %s must be %s
1115 (not %s), umask not implemented, Unable to create sub named "%s",
1116 Unbalanced context: %d more PUSHes than POPs, Unbalanced saves: %d more
1117 saves than restores, Unbalanced scopes: %d more ENTERs than LEAVEs,
1118 Unbalanced tmps: %d more allocs than frees, Undefined format "%s" called,
1119 Undefined sort subroutine "%s" called, Undefined subroutine &%s called,
1120 Undefined subroutine called, Undefined subroutine in sort, Undefined top
1121 format "%s" called, Undefined value assigned to typeglob, %s: Undefined
1122 variable, unexec of %s into %s failed!, Unicode character %s is illegal,
1123 Unknown BYTEORDER, Unknown "re" subpragma '%s' (known ones are: %s),
1124 Unknown switch condition (?(%.2s in regex;, Unknown open() mode '%s',
1125 Unknown process %x sent message to prime_env_iter: %s, Unknown warnings
1126 category '%s', unmatched [ in regex; marked by <-- HERE in m/%s/, unmatched
1127 ( in regex; marked by <-- HERE in m/%s/, Unmatched right %s bracket,
1128 Unquoted string "%s" may clash with future reserved word, Unrecognized
1129 character %s, /%s/: Unrecognized escape \\%c in character class passed
1130 through, Unrecognized escape \\%c passed through in regex;, Unrecognized
1131 escape \\%c passed through, Unrecognized signal name "%s", Unrecognized
1132 switch: -%s  (-h will show valid options), Unsuccessful %s on filename
1133 containing newline, Unsupported directory function "%s" called, Unsupported
1134 function %s, Unsupported function fork, Unsupported script encoding,
1135 Unsupported socket function "%s" called, Unterminated attribute list,
1136 Unterminated attribute parameter in attribute list, Unterminated compressed
1137 integer, Unterminated <> operator, untie attempted while %d inner
1138 references still exist, Useless (?%s) - use /%s modifier in regex;, Useless
1139 (?-%s) - don't use /%s modifier in regex;, Useless use of %s in void
1140 context, Useless use of "re" pragma, Useless use of sort in scalar context,
1141 Useless use of %s with no values, "use" not allowed in expression, Use of
1142 bare << to mean <<"" is deprecated, Use of *glob{FILEHANDLE} is deprecated,
1143 Use of chdir('') or chdir(undef) as chdir() deprecated, Use of implicit
1144 split to @_ is deprecated, Use of inherited AUTOLOAD for non-method %s() is
1145 deprecated, Use of -l on filehandle %s, Use of "package" with no arguments
1146 is deprecated, Use of %s in printf format not supported, Use of $* is
1147 deprecated, Use of %s is deprecated, Use of $# is deprecated, Use of
1148 reference "%s" as array index, Use of reserved word "%s" is deprecated, Use
1149 of tainted arguments in %s is deprecated, Use of uninitialized value%s,
1150 Using a hash as a reference is deprecated, Using an array as a reference is
1151 deprecated, UTF-16 surrogate %s, Value of %s can be "0"; test with
1152 defined(), Value of CLI symbol "%s" too long, Variable "%s" is not
1153 imported%s, "%s" variable %s masks earlier declaration in same %s, Variable
1154 "%s" may be unavailable, Variable syntax, Variable "%s" will not stay
1155 shared, Variable length lookbehind not implemented in regex;, Version
1156 number must be a constant number, v-string in use/require is non-portable,
1157 Warning: something's wrong, Warning: unable to close filehandle %s
1158 properly, Warning: Use of "%s" without parentheses is ambiguous, Wide
1159 character in %s, write() on closed filehandle %s, X outside of string, x
1160 outside of string, Xsub "%s" called in sort, Xsub called in sort, YOU
1161 HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET!, You need to quote "%s"
1162
1163 =back
1164
1165 =head2 perllexwarn - Perl Lexical Warnings
1166
1167 =over 4
1168
1169 =item DESCRIPTION
1170
1171 =over 4
1172
1173 =item Default Warnings and Optional Warnings
1174
1175 =item What's wrong with B<-w> and C<$^W>
1176
1177 =item Controlling Warnings from the Command Line
1178
1179 B<-w>, B<-W>, B<-X>
1180
1181 =item Backward Compatibility
1182
1183 =item Category Hierarchy
1184
1185 =item Fatal Warnings
1186
1187 =item Reporting Warnings from a Module
1188
1189 =back
1190
1191 =item TODO
1192
1193 =item SEE ALSO
1194
1195 =item AUTHOR
1196
1197 =back
1198
1199 =head2 perldebtut - Perl debugging tutorial
1200
1201 =over 4
1202
1203 =item DESCRIPTION
1204
1205 =item use strict
1206
1207 =item Looking at data and -w and v
1208
1209 =item help
1210
1211 =item Stepping through code
1212
1213 =item Placeholder for a, w, t, T
1214
1215 =item REGULAR EXPRESSIONS
1216
1217 =item OUTPUT TIPS
1218
1219 =item CGI
1220
1221 =item GUIs
1222
1223 =item SUMMARY
1224
1225 =item SEE ALSO
1226
1227 =item AUTHOR
1228
1229 =item CONTRIBUTORS
1230
1231 =back
1232
1233 =head2 perldebug - Perl debugging
1234
1235 =over 4
1236
1237 =item DESCRIPTION
1238
1239 =item The Perl Debugger
1240
1241 =over 4
1242
1243 =item Debugger Commands
1244
1245 h, h [command], h h, p expr, x [maxdepth] expr, V [pkg [vars]], X [vars],
1246 T, s [expr], n [expr], r, <CR>, c [line|sub], l, l min+incr, l min-max, l
1247 line, l subname, -, v [line], f filename, /pattern/, ?pattern?, L [abw], S
1248 [[!]regex], t, t expr, b, b [line] [condition], b subname [condition], b
1249 postpone subname [condition], b load filename, b compile subname, B line, B
1250 *, a [line] command, A line, A *, w expr, W expr, W *, o, o booloption ..,
1251 o anyoption? .., o option=value .., < ?, < [ command ], << command, > ?, >
1252 command, >> command, { ?, { [ command ], {{ command, ! number, ! -number, !
1253 pattern, !! cmd, @ file, H -number, q or ^D, R, |dbcmd, ||dbcmd, command, m
1254 expr, M, man [manpage]
1255
1256 =item Configurable Options
1257
1258 C<recallCommand>, C<ShellBang>, C<pager>, C<tkRunning>, C<signalLevel>,
1259 C<warnLevel>, C<dieLevel>, C<AutoTrace>, C<LineInfo>, C<inhibit_exit>,
1260 C<PrintRet>, C<ornaments>, C<frame>, C<maxTraceLen>, C<windowSize>,
1261 C<arrayDepth>, C<hashDepth>, C<dumpDepth>, C<compactDump>, C<veryCompact>,
1262 C<globPrint>, C<DumpDBFiles>, C<DumpPackages>, C<DumpReused>, C<quote>,
1263 C<HighBit>, C<undefPrint>, C<UsageOnly>, C<TTY>, C<noTTY>, C<ReadLine>,
1264 C<NonStop>
1265
1266 =item Debugger input/output
1267
1268 Prompt, Multiline commands, Stack backtrace, Line Listing Format, Frame
1269 listing
1270
1271 =item Debugging compile-time statements
1272
1273 =item Debugger Customization
1274
1275 =item Readline Support
1276
1277 =item Editor Support for Debugging
1278
1279 =item The Perl Profiler
1280
1281 =back
1282
1283 =item Debugging regular expressions
1284
1285 =item Debugging memory usage
1286
1287 =item SEE ALSO
1288
1289 =item BUGS
1290
1291 =back
1292
1293 =head2 perlvar - Perl predefined variables
1294
1295 =over 4
1296
1297 =item DESCRIPTION
1298
1299 =over 4
1300
1301 =item Predefined Names
1302
1303 $ARG, $_, $a, $b, $<I<digits>>, $MATCH, $&, $PREMATCH, $`, $POSTMATCH, $',
1304 $LAST_PAREN_MATCH, $+, $^N, @LAST_MATCH_END, @+, $MULTILINE_MATCHING, $*,
1305 HANDLE->input_line_number(EXPR), $INPUT_LINE_NUMBER, $NR, $,
1306 IO::Handle->input_record_separator(EXPR), $INPUT_RECORD_SEPARATOR, $RS, $/,
1307 HANDLE->autoflush(EXPR), $OUTPUT_AUTOFLUSH, $|,
1308 IO::Handle->output_field_separator EXPR, $OUTPUT_FIELD_SEPARATOR, $OFS, $,,
1309 IO::Handle->output_record_separator EXPR, $OUTPUT_RECORD_SEPARATOR, $ORS,
1310 $\, $LIST_SEPARATOR, $", $SUBSCRIPT_SEPARATOR, $SUBSEP, $;, $OFMT, $#,
1311 HANDLE->format_page_number(EXPR), $FORMAT_PAGE_NUMBER, $%,
1312 HANDLE->format_lines_per_page(EXPR), $FORMAT_LINES_PER_PAGE, $=,
1313 HANDLE->format_lines_left(EXPR), $FORMAT_LINES_LEFT, $-, @LAST_MATCH_START,
1314 @-, C<$`> is the same as C<substr($var, 0, $-[0])>, C<$&> is the same as
1315 C<substr($var, $-[0], $+[0] - $-[0])>, C<$'> is the same as C<substr($var,
1316 $+[0])>, C<$1> is the same as C<substr($var, $-[1], $+[1] - $-[1])>, C<$2>
1317 is the same as C<substr($var, $-[2], $+[2] - $-[2])>, C<$3> is the same as
1318 C<substr $var, $-[3], $+[3] - $-[3])>, HANDLE->format_name(EXPR),
1319 $FORMAT_NAME, $~, HANDLE->format_top_name(EXPR), $FORMAT_TOP_NAME, $^,
1320 IO::Handle->format_line_break_characters EXPR,
1321 $FORMAT_LINE_BREAK_CHARACTERS, $:, IO::Handle->format_formfeed EXPR,
1322 $FORMAT_FORMFEED, $^L, $ACCUMULATOR, $^A, $CHILD_ERROR, $?, ${^ENCODING},
1323 $OS_ERROR, $ERRNO, $!, $EXTENDED_OS_ERROR, $^E, $EVAL_ERROR, $@,
1324 $PROCESS_ID, $PID, $$, $REAL_USER_ID, $UID, $<, $EFFECTIVE_USER_ID, $EUID,
1325 $>, $REAL_GROUP_ID, $GID, $(, $EFFECTIVE_GROUP_ID, $EGID, $),
1326 $PROGRAM_NAME, $0, $[, $], $COMPILING, $^C, $DEBUGGING, $^D,
1327 $SYSTEM_FD_MAX, $^F, $^H, %^H, $INPLACE_EDIT, $^I, $^M, $OSNAME, $^O,
1328 ${^OPEN}, $PERLDB, $^P, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
1329 0x100, 0x200, $LAST_REGEXP_CODE_RESULT, $^R, $EXCEPTIONS_BEING_CAUGHT, $^S,
1330 $BASETIME, $^T, ${^TAINT}, $PERL_VERSION, $^V, $WARNING, $^W,
1331 ${^WARNING_BITS}, ${^WIDE_SYSTEM_CALLS}, $EXECUTABLE_NAME, $^X, ARGV,
1332 $ARGV, @ARGV, @F, @INC, @_, %INC, %ENV, $ENV{expr}, %SIG, $SIG{expr}
1333
1334 =item Error Indicators
1335
1336 =item Technical Note on the Syntax of Variable Names
1337
1338 =back
1339
1340 =item BUGS
1341
1342 =back
1343
1344 =head2 perllol - Manipulating Arrays of Arrays in Perl
1345
1346 =over 4
1347
1348 =item DESCRIPTION
1349
1350 =over 4
1351
1352 =item Declaration and Access of Arrays of Arrays
1353
1354 =item Growing Your Own
1355
1356 =item Access and Printing
1357
1358 =item Slices
1359
1360 =back
1361
1362 =item SEE ALSO
1363
1364 =item AUTHOR
1365
1366 =back
1367
1368 =head2 perlopentut - tutorial on opening things in Perl
1369
1370 =over 4
1371
1372 =item DESCRIPTION
1373
1374 =item Open E<agrave> la shell
1375
1376 =over 4
1377
1378 =item Simple Opens
1379
1380 =item Pipe Opens
1381
1382 =item The Minus File
1383
1384 =item Mixing Reads and Writes
1385
1386 =item Filters 
1387
1388 =back
1389
1390 =item Open E<agrave> la C
1391
1392 =over 4
1393
1394 =item Permissions E<agrave> la mode
1395
1396 =back
1397
1398 =item Obscure Open Tricks
1399
1400 =over 4
1401
1402 =item Re-Opening Files (dups)
1403
1404 =item Dispelling the Dweomer
1405
1406 =item Paths as Opens
1407
1408 =item Single Argument Open
1409
1410 =item Playing with STDIN and STDOUT
1411
1412 =back
1413
1414 =item Other I/O Issues
1415
1416 =over 4
1417
1418 =item Opening Non-File Files
1419
1420 =item Binary Files
1421
1422 =item File Locking
1423
1424 =back
1425
1426 =item SEE ALSO 
1427
1428 =item AUTHOR and COPYRIGHT
1429
1430 =item HISTORY
1431
1432 =back
1433
1434 =head2 perlpacktut - tutorial on C<pack> and C<unpack>
1435
1436 =over 4
1437
1438 =item DESCRIPTION
1439
1440 =item The Basic Principle
1441
1442 =item Packing Text
1443
1444 =item Packing Numbers
1445
1446 =over 4
1447
1448 =item Integers
1449
1450 =item Unpacking a Stack Frame
1451
1452 =item How to Eat an Egg on a Net
1453
1454 =item Floating point Numbers
1455
1456 =back
1457
1458 =item Exotic Templates
1459
1460 =over 4
1461
1462 =item Bit Strings
1463
1464 =item Uuencoding
1465
1466 =item Doing Sums
1467
1468 =item  Unicode
1469
1470 =item Another Portable Binary Encoding
1471
1472 =back
1473
1474 =item Lengths and Widths
1475
1476 =over 4
1477
1478 =item String Lengths
1479
1480 =item Dynamic Templates
1481
1482 =back
1483
1484 =item Packing and Unpacking C Structures
1485
1486 =over 4
1487
1488 =item The Alignment Pit
1489
1490 =item Alignment, Take 2
1491
1492 =item Alignment, Take 3
1493
1494 =item Pointers for How to Use Them
1495
1496 =back
1497
1498 =item Pack Recipes
1499
1500 =item Funnies Section
1501
1502 =item Authors
1503
1504 =back
1505
1506 =head2 perlretut - Perl regular expressions tutorial
1507
1508 =over 4
1509
1510 =item DESCRIPTION
1511
1512 =item Part 1: The basics
1513
1514 =over 4
1515
1516 =item Simple word matching
1517
1518 =item Using character classes
1519
1520 =item Matching this or that
1521
1522 =item Grouping things and hierarchical matching
1523
1524 =item Extracting matches
1525
1526 =item Matching repetitions
1527
1528 =item Building a regexp
1529
1530 =item Using regular expressions in Perl
1531
1532 =back
1533
1534 =item Part 2: Power tools
1535
1536 =over 4
1537
1538 =item More on characters, strings, and character classes
1539
1540 =item Compiling and saving regular expressions
1541
1542 =item Embedding comments and modifiers in a regular expression
1543
1544 =item Non-capturing groupings
1545
1546 =item Looking ahead and looking behind
1547
1548 =item Using independent subexpressions to prevent backtracking
1549
1550 =item Conditional expressions
1551
1552 =item A bit of magic: executing Perl code in a regular expression
1553
1554 =item Pragmas and debugging
1555
1556 =back
1557
1558 =item BUGS
1559
1560 =item SEE ALSO
1561
1562 =item AUTHOR AND COPYRIGHT
1563
1564 =over 4
1565
1566 =item Acknowledgments
1567
1568 =back
1569
1570 =back
1571
1572 =head2 perlre - Perl regular expressions
1573
1574 =over 4
1575
1576 =item DESCRIPTION
1577
1578 i, m, s, x
1579
1580 =over 4
1581
1582 =item Regular Expressions
1583
1584 [1], [2], [3], cntrl, graph, print, punct, xdigit
1585
1586 =item Extended Patterns
1587
1588 C<(?#text)>, C<(?imsx-imsx)>, C<(?:pattern)>, C<(?imsx-imsx:pattern)>,
1589 C<(?=pattern)>, C<(?!pattern)>, C<(?<=pattern)>, C<(?<!pattern)>, C<(?{
1590 code })>, C<(??{ code })>, C<< (?>pattern) >>,
1591 C<(?(condition)yes-pattern|no-pattern)>, C<(?(condition)yes-pattern)>
1592
1593 =item Backtracking
1594
1595 =item Version 8 Regular Expressions
1596
1597 =item Warning on \1 vs $1
1598
1599 =item Repeated patterns matching zero-length substring
1600
1601 =item Combining pieces together
1602
1603 C<ST>, C<S|T>, C<S{REPEAT_COUNT}>, C<S{min,max}>, C<S{min,max}?>, C<S?>,
1604 C<S*>, C<S+>, C<S??>, C<S*?>, C<S+?>, C<< (?>S) >>, C<(?=S)>, C<(?<=S)>,
1605 C<(?!S)>, C<(?<!S)>, C<(??{ EXPR })>,
1606 C<(?(condition)yes-pattern|no-pattern)>
1607
1608 =item Creating custom RE engines
1609
1610 =back
1611
1612 =item BUGS
1613
1614 =item SEE ALSO
1615
1616 =back
1617
1618 =head2 perlref - Perl references and nested data structures
1619
1620 =over 4
1621
1622 =item NOTE
1623
1624 =item DESCRIPTION
1625
1626 =over 4
1627
1628 =item Making References
1629
1630 =item Using References
1631
1632 =item Symbolic references
1633
1634 =item Not-so-symbolic references
1635
1636 =item Pseudo-hashes: Using an array as a hash
1637
1638 =item Function Templates
1639
1640 =back
1641
1642 =item WARNING
1643
1644 =item SEE ALSO
1645
1646 =back
1647
1648 =head2 perlform - Perl formats
1649
1650 =over 4
1651
1652 =item DESCRIPTION
1653
1654 =over 4
1655
1656 =item Format Variables
1657
1658 =back
1659
1660 =item NOTES
1661
1662 =over 4
1663
1664 =item Footers
1665
1666 =item Accessing Formatting Internals
1667
1668 =back
1669
1670 =item WARNINGS
1671
1672 =back
1673
1674 =head2 perlboot - Beginner's Object-Oriented Tutorial
1675
1676 =over 4
1677
1678 =item DESCRIPTION
1679
1680 =over 4
1681
1682 =item If we could talk to the animals...
1683
1684 =item Introducing the method invocation arrow
1685
1686 =item Invoking a barnyard
1687
1688 =item The extra parameter of method invocation
1689
1690 =item Calling a second method to simplify things
1691
1692 =item Inheriting the windpipes
1693
1694 =item A few notes about @ISA
1695
1696 =item Overriding the methods
1697
1698 =item Starting the search from a different place
1699
1700 =item The SUPER way of doing things
1701
1702 =item Where we're at so far...
1703
1704 =item A horse is a horse, of course of course -- or is it?
1705
1706 =item Invoking an instance method
1707
1708 =item Accessing the instance data
1709
1710 =item How to build a horse
1711
1712 =item Inheriting the constructor
1713
1714 =item Making a method work with either classes or instances
1715
1716 =item Adding parameters to a method
1717
1718 =item More interesting instances
1719
1720 =item A horse of a different color
1721
1722 =item Summary
1723
1724 =back
1725
1726 =item SEE ALSO
1727
1728 =item COPYRIGHT
1729
1730 =back
1731
1732 =head2 perltoot - Tom's object-oriented tutorial for perl
1733
1734 =over 4
1735
1736 =item DESCRIPTION
1737
1738 =item Creating a Class
1739
1740 =over 4
1741
1742 =item Object Representation
1743
1744 =item Class Interface
1745
1746 =item Constructors and Instance Methods
1747
1748 =item Planning for the Future: Better Constructors
1749
1750 =item Destructors
1751
1752 =item Other Object Methods
1753
1754 =back
1755
1756 =item Class Data
1757
1758 =over 4
1759
1760 =item Accessing Class Data
1761
1762 =item Debugging Methods
1763
1764 =item Class Destructors
1765
1766 =item Documenting the Interface
1767
1768 =back
1769
1770 =item Aggregation
1771
1772 =item Inheritance
1773
1774 =over 4
1775
1776 =item Overridden Methods
1777
1778 =item Multiple Inheritance
1779
1780 =item UNIVERSAL: The Root of All Objects
1781
1782 =back
1783
1784 =item Alternate Object Representations
1785
1786 =over 4
1787
1788 =item Arrays as Objects
1789
1790 =item Closures as Objects
1791
1792 =back
1793
1794 =item AUTOLOAD: Proxy Methods
1795
1796 =over 4
1797
1798 =item Autoloaded Data Methods
1799
1800 =item Inherited Autoloaded Data Methods
1801
1802 =back
1803
1804 =item Metaclassical Tools
1805
1806 =over 4
1807
1808 =item Class::Struct
1809
1810 =item Data Members as Variables
1811
1812 =back
1813
1814 =item NOTES
1815
1816 =over 4
1817
1818 =item Object Terminology
1819
1820 =back
1821
1822 =item SEE ALSO
1823
1824 =item AUTHOR AND COPYRIGHT
1825
1826 =item COPYRIGHT
1827
1828 =over 4
1829
1830 =item Acknowledgments
1831
1832 =back
1833
1834 =back
1835
1836 =head2 perltooc - Tom's OO Tutorial for Class Data in Perl
1837
1838 =over 4
1839
1840 =item DESCRIPTION
1841
1842 =item Class Data in a Can
1843
1844 =item Class Data as Package Variables
1845
1846 =over 4
1847
1848 =item Putting All Your Eggs in One Basket
1849
1850 =item Inheritance Concerns
1851
1852 =item The Eponymous Meta-Object
1853
1854 =item Indirect References to Class Data
1855
1856 =item Monadic Classes
1857
1858 =item Translucent Attributes
1859
1860 =back
1861
1862 =item Class Data as Lexical Variables
1863
1864 =over 4
1865
1866 =item Privacy and Responsibility 
1867
1868 =item File-Scoped Lexicals
1869
1870 =item More Inheritance Concerns
1871
1872 =item Locking the Door and Throwing Away the Key
1873
1874 =item Translucency Revisited
1875
1876 =back
1877
1878 =item NOTES
1879
1880 =item SEE ALSO
1881
1882 =item AUTHOR AND COPYRIGHT
1883
1884 =item ACKNOWLEDGEMENTS
1885
1886 =item HISTORY
1887
1888 =back
1889
1890 =head2 perlobj - Perl objects
1891
1892 =over 4
1893
1894 =item DESCRIPTION
1895
1896 =over 4
1897
1898 =item An Object is Simply a Reference
1899
1900 =item A Class is Simply a Package
1901
1902 =item A Method is Simply a Subroutine
1903
1904 =item Method Invocation
1905
1906 =item Indirect Object Syntax
1907
1908 =item Default UNIVERSAL methods
1909
1910 isa(CLASS), can(METHOD), VERSION( [NEED] )
1911
1912 =item Destructors
1913
1914 =item Summary
1915
1916 =item Two-Phased Garbage Collection
1917
1918 =back
1919
1920 =item SEE ALSO
1921
1922 =back
1923
1924 =head2 perlbot - Bag'o Object Tricks (the BOT)
1925
1926 =over 4
1927
1928 =item DESCRIPTION
1929
1930 =item OO SCALING TIPS
1931
1932 =item INSTANCE VARIABLES
1933
1934 =item SCALAR INSTANCE VARIABLES
1935
1936 =item INSTANCE VARIABLE INHERITANCE
1937
1938 =item OBJECT RELATIONSHIPS
1939
1940 =item OVERRIDING SUPERCLASS METHODS
1941
1942 =item USING RELATIONSHIP WITH SDBM
1943
1944 =item THINKING OF CODE REUSE
1945
1946 =item CLASS CONTEXT AND THE OBJECT
1947
1948 =item INHERITING A CONSTRUCTOR
1949
1950 =item DELEGATION
1951
1952 =back
1953
1954 =head2 perltie - how to hide an object class in a simple variable
1955
1956 =over 4
1957
1958 =item SYNOPSIS
1959
1960 =item DESCRIPTION
1961
1962 =over 4
1963
1964 =item Tying Scalars
1965
1966 TIESCALAR classname, LIST, FETCH this, STORE this, value, UNTIE this,
1967 DESTROY this
1968
1969 =item Tying Arrays
1970
1971 TIEARRAY classname, LIST, FETCH this, index, STORE this, index, value,
1972 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
1973 key, DELETE this, key, CLEAR this, PUSH this, LIST, POP this, SHIFT this,
1974 UNSHIFT this, LIST, SPLICE this, offset, length, LIST, UNTIE this, DESTROY
1975 this
1976
1977 =item Tying Hashes
1978
1979 USER, HOME, CLOBBER, LIST, TIEHASH classname, LIST, FETCH this, key, STORE
1980 this, key, value, DELETE this, key, CLEAR this, EXISTS this, key, FIRSTKEY
1981 this, NEXTKEY this, lastkey, UNTIE this, DESTROY this
1982
1983 =item Tying FileHandles
1984
1985 TIEHANDLE classname, LIST, WRITE this, LIST, PRINT this, LIST, PRINTF this,
1986 LIST, READ this, LIST, READLINE this, GETC this, CLOSE this, UNTIE this,
1987 DESTROY this
1988
1989 =item UNTIE this
1990
1991 =item The C<untie> Gotcha
1992
1993 =back
1994
1995 =item SEE ALSO
1996
1997 =item BUGS
1998
1999 =item AUTHOR
2000
2001 =back
2002
2003 =head2 perlipc - Perl interprocess communication (signals, fifos, pipes,
2004 safe subprocesses, sockets, and semaphores)
2005
2006 =over 4
2007
2008 =item DESCRIPTION
2009
2010 =item Signals
2011
2012 =item Named Pipes
2013
2014 =over 4
2015
2016 =item WARNING
2017
2018 =back
2019
2020 =item Using open() for IPC
2021
2022 =over 4
2023
2024 =item Filehandles
2025
2026 =item Background Processes
2027
2028 =item Complete Dissociation of Child from Parent
2029
2030 =item Safe Pipe Opens
2031
2032 =item Bidirectional Communication with Another Process
2033
2034 =item Bidirectional Communication with Yourself
2035
2036 =back
2037
2038 =item Sockets: Client/Server Communication
2039
2040 =over 4
2041
2042 =item Internet Line Terminators
2043
2044 =item Internet TCP Clients and Servers
2045
2046 =item Unix-Domain TCP Clients and Servers
2047
2048 =back
2049
2050 =item TCP Clients with IO::Socket
2051
2052 =over 4
2053
2054 =item A Simple Client
2055
2056 C<Proto>, C<PeerAddr>, C<PeerPort>
2057
2058 =item A Webget Client
2059
2060 =item Interactive Client with IO::Socket
2061
2062 =back
2063
2064 =item TCP Servers with IO::Socket
2065
2066 Proto, LocalPort, Listen, Reuse
2067
2068 =item UDP: Message Passing
2069
2070 =item SysV IPC
2071
2072 =item NOTES
2073
2074 =item BUGS
2075
2076 =item AUTHOR
2077
2078 =item SEE ALSO
2079
2080 =back
2081
2082 =head2 perlfork - Perl's fork() emulation (EXPERIMENTAL, subject to change)
2083
2084 =over 4
2085
2086 =item SYNOPSIS
2087
2088 =item DESCRIPTION
2089
2090 =over 4
2091
2092 =item Behavior of other Perl features in forked pseudo-processes
2093
2094 $$ or $PROCESS_ID, %ENV, chdir() and all other builtins that accept
2095 filenames, wait() and waitpid(), kill(), exec(), exit(), Open handles to
2096 files, directories and network sockets
2097
2098 =item Resource limits
2099
2100 =item Killing the parent process
2101
2102 =item Lifetime of the parent process and pseudo-processes
2103
2104 =item CAVEATS AND LIMITATIONS
2105
2106 BEGIN blocks, Open filehandles, Forking pipe open() not yet implemented,
2107 Global state maintained by XSUBs, Interpreter embedded in larger
2108 application, Thread-safety of extensions
2109
2110 =back
2111
2112 =item BUGS
2113
2114 =item AUTHOR
2115
2116 =item SEE ALSO
2117
2118 =back
2119
2120 =head2 perlnumber - semantics of numbers and numeric operations in Perl
2121
2122 =over 4
2123
2124 =item SYNOPSIS
2125
2126 =item DESCRIPTION
2127
2128 =item Storing numbers
2129
2130 =item Numeric operators and numeric conversions
2131
2132 =item Flavors of Perl numeric operations
2133
2134 Arithmetic operators except, C<no integer>, Arithmetic operators except,
2135 C<use integer>, Bitwise operators, C<no integer>, Bitwise operators, C<use
2136 integer>, Operators which expect an integer, Operators which expect a
2137 string
2138
2139 =item AUTHOR
2140
2141 =item SEE ALSO
2142
2143 =back
2144
2145 =head2 perlthrtut - tutorial on threads in Perl
2146
2147 =over 4
2148
2149 =item DESCRIPTION
2150
2151 =back
2152
2153 =head2 perlothrtut - old tutorial on threads in Perl
2154
2155 =over 4
2156
2157 =item DESCRIPTION
2158
2159 =item What Is A Thread Anyway?
2160
2161 =item Threaded Program Models
2162
2163 =over 4
2164
2165 =item Boss/Worker
2166
2167 =item Work Crew
2168
2169 =item Pipeline
2170
2171 =back
2172
2173 =item Native threads
2174
2175 =item What kind of threads are perl threads?
2176
2177 =item Threadsafe Modules
2178
2179 =item Thread Basics
2180
2181 =over 4
2182
2183 =item Basic Thread Support
2184
2185 =item Creating Threads
2186
2187 =item Giving up control
2188
2189 =item Waiting For A Thread To Exit
2190
2191 =item Errors In Threads
2192
2193 =item Ignoring A Thread
2194
2195 =back
2196
2197 =item Threads And Data
2198
2199 =over 4
2200
2201 =item Shared And Unshared Data
2202
2203 =item Thread Pitfall: Races
2204
2205 =item Controlling access: lock()
2206
2207 =item Thread Pitfall: Deadlocks
2208
2209 =item Queues: Passing Data Around
2210
2211 =back
2212
2213 =item Threads And Code
2214
2215 =over 4
2216
2217 =item Semaphores: Synchronizing Data Access
2218
2219 Basic semaphores, Advanced Semaphores
2220
2221 =item Attributes: Restricting Access To Subroutines
2222
2223 =item Subroutine Locks
2224
2225 =item Methods
2226
2227 =item Locking A Subroutine
2228
2229 =back
2230
2231 =item General Thread Utility Routines
2232
2233 =over 4
2234
2235 =item What Thread Am I In?
2236
2237 =item Thread IDs
2238
2239 =item Are These Threads The Same?
2240
2241 =item What Threads Are Running?
2242
2243 =back
2244
2245 =item A Complete Example
2246
2247 =item Conclusion
2248
2249 =item Bibliography
2250
2251 =over 4
2252
2253 =item Introductory Texts
2254
2255 =item OS-Related References
2256
2257 =item Other References
2258
2259 =back
2260
2261 =item Acknowledgements
2262
2263 =item AUTHOR
2264
2265 =item Copyrights
2266
2267 =back
2268
2269 =head2 perlport - Writing portable Perl
2270
2271 =over 4
2272
2273 =item DESCRIPTION
2274
2275 Not all Perl programs have to be portable, Nearly all of Perl already I<is>
2276 portable
2277
2278 =item ISSUES
2279
2280 =over 4
2281
2282 =item Newlines
2283
2284 =item Numbers endianness and Width
2285
2286 =item Files and Filesystems
2287
2288 =item System Interaction
2289
2290 =item Interprocess Communication (IPC)
2291
2292 =item External Subroutines (XS)
2293
2294 =item Standard Modules
2295
2296 =item Time and Date
2297
2298 =item Character sets and character encoding
2299
2300 =item Internationalisation
2301
2302 =item System Resources
2303
2304 =item Security
2305
2306 =item Style
2307
2308 =back
2309
2310 =item CPAN Testers
2311
2312 Mailing list: cpan-testers@perl.org, Testing results:
2313 http://testers.cpan.org/
2314
2315 =item PLATFORMS
2316
2317 =over 4
2318
2319 =item Unix
2320
2321 =item DOS and Derivatives
2322
2323 =item S<Mac OS>
2324
2325 =item VMS
2326
2327 =item VOS
2328
2329 =item EBCDIC Platforms
2330
2331 =item Acorn RISC OS
2332
2333 =item Other perls
2334
2335 =back
2336
2337 =item FUNCTION IMPLEMENTATIONS
2338
2339 =over 4
2340
2341 =item Alphabetical Listing of Perl Functions
2342
2343 -I<X> FILEHANDLE, -I<X> EXPR, -I<X>, alarm SECONDS, alarm, binmode
2344 FILEHANDLE, chmod LIST, chown LIST, chroot FILENAME, chroot, crypt
2345 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MODE, dump LABEL, exec
2346 LIST, exit EXPR, exit, fcntl FILEHANDLE,FUNCTION,SCALAR, flock
2347 FILEHANDLE,OPERATION, fork, getlogin, getpgrp PID, getppid, getpriority
2348 WHICH,WHO, getpwnam NAME, getgrnam NAME, getnetbyname NAME, getpwuid UID,
2349 getgrgid GID, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
2350 getservbyport PORT,PROTO, getpwent, getgrent, gethostent, getnetent,
2351 getprotoent, getservent, setpwent, setgrent, sethostent STAYOPEN, setnetent
2352 STAYOPEN, setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent,
2353 endhostent, endnetent, endprotoent, endservent, getsockopt
2354 SOCKET,LEVEL,OPTNAME, glob EXPR, glob, ioctl FILEHANDLE,FUNCTION,SCALAR,
2355 kill SIGNAL, LIST, link OLDFILE,NEWFILE, lstat FILEHANDLE, lstat EXPR,
2356 lstat, msgctl ID,CMD,ARG, msgget KEY,FLAGS, msgsnd ID,MSG,FLAGS, msgrcv
2357 ID,VAR,SIZE,TYPE,FLAGS, open FILEHANDLE,EXPR, open FILEHANDLE, pipe
2358 READHANDLE,WRITEHANDLE, readlink EXPR, readlink, select
2359 RBITS,WBITS,EBITS,TIMEOUT, semctl ID,SEMNUM,CMD,ARG, semget
2360 KEY,NSEMS,FLAGS, semop KEY,OPSTRING, setgrent, setpgrp PID,PGRP,
2361 setpriority WHICH,WHO,PRIORITY, setpwent, setsockopt
2362 SOCKET,LEVEL,OPTNAME,OPTVAL, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS,
2363 shmread ID,VAR,POS,SIZE, shmwrite ID,STRING,POS,SIZE, sockatmark SOCKET,
2364 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, stat FILEHANDLE, stat
2365 EXPR, stat, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
2366 FILEHANDLE,FILENAME,MODE,PERMS, system LIST, times, truncate
2367 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, umask EXPR, umask, utime LIST,
2368 wait, waitpid PID,FLAGS
2369
2370 =back
2371
2372 =item CHANGES
2373
2374 v1.48, 02 February 2001, v1.47, 22 March 2000, v1.46, 12 February 2000,
2375 v1.45, 20 December 1999, v1.44, 19 July 1999, v1.43, 24 May 1999, v1.42, 22
2376 May 1999, v1.41, 19 May 1999, v1.40, 11 April 1999, v1.39, 11 February
2377 1999, v1.38, 31 December 1998, v1.37, 19 December 1998, v1.36, 9 September
2378 1998, v1.35, 13 August 1998, v1.33, 06 August 1998, v1.32, 05 August 1998,
2379 v1.30, 03 August 1998, v1.23, 10 July 1998
2380
2381 =item Supported Platforms
2382
2383 =item SEE ALSO
2384
2385 =item AUTHORS / CONTRIBUTORS
2386
2387 =back
2388
2389 =head2 perllocale - Perl locale handling (internationalization and
2390 localization)
2391
2392 =over 4
2393
2394 =item DESCRIPTION
2395
2396 =item PREPARING TO USE LOCALES
2397
2398 =item USING LOCALES
2399
2400 =over 4
2401
2402 =item The use locale pragma
2403
2404 =item The setlocale function
2405
2406 =item Finding locales
2407
2408 =item LOCALE PROBLEMS
2409
2410 =item Temporarily fixing locale problems
2411
2412 =item Permanently fixing locale problems
2413
2414 =item Permanently fixing your system's locale configuration
2415
2416 =item Fixing system locale configuration
2417
2418 =item The localeconv function
2419
2420 =item I18N::Langinfo
2421
2422 =back
2423
2424 =item LOCALE CATEGORIES
2425
2426 =over 4
2427
2428 =item Category LC_COLLATE: Collation
2429
2430 =item Category LC_CTYPE: Character Types
2431
2432 =item Category LC_NUMERIC: Numeric Formatting
2433
2434 =item Category LC_MONETARY: Formatting of monetary amounts
2435
2436 =item LC_TIME
2437
2438 =item Other categories
2439
2440 =back
2441
2442 =item SECURITY
2443
2444 =item ENVIRONMENT
2445
2446 PERL_BADLANG, LC_ALL, LANGUAGE, LC_CTYPE, LC_COLLATE, LC_MONETARY,
2447 LC_NUMERIC, LC_TIME, LANG
2448
2449 =item NOTES
2450
2451 =over 4
2452
2453 =item Backward compatibility
2454
2455 =item I18N:Collate obsolete
2456
2457 =item Sort speed and memory use impacts
2458
2459 =item write() and LC_NUMERIC
2460
2461 =item Freely available locale definitions
2462
2463 =item I18n and l10n
2464
2465 =item An imperfect standard
2466
2467 =back
2468
2469 =item BUGS
2470
2471 =over 4
2472
2473 =item Broken systems
2474
2475 =back
2476
2477 =item SEE ALSO
2478
2479 =item HISTORY
2480
2481 =back
2482
2483 =head2 perluniintro - Perl Unicode introduction
2484
2485 =over 4
2486
2487 =item DESCRIPTION
2488
2489 =over 4
2490
2491 =item Unicode
2492
2493 =item Perl's Unicode Support
2494
2495 =item Perl's Unicode Model
2496
2497 =item Creating Unicode
2498
2499 =item Handling Unicode
2500
2501 =item Legacy Encodings
2502
2503 =item Unicode I/O
2504
2505 =item Displaying Unicode As Text
2506
2507 =item Special Cases
2508
2509 =item Advanced Topics
2510
2511 =item Miscellaneous
2512
2513 =item Questions With Answers
2514
2515 , , , , , , 
2516
2517 =item Hexadecimal Notation
2518
2519 =item Further Resources
2520
2521 =back
2522
2523 =item UNICODE IN OLDER PERLS
2524
2525 =item SEE ALSO
2526
2527 =item ACKNOWLEDGEMENTS
2528
2529 =item AUTHOR, COPYRIGHT, AND LICENSE
2530
2531 =back
2532
2533 =head2 perlunicode - Unicode support in Perl
2534
2535 =over 4
2536
2537 =item DESCRIPTION
2538
2539 =over 4
2540
2541 =item Important Caveats
2542
2543 Input and Output Disciplines, Regular Expressions, C<use utf8> still needed
2544 to enable UTF-8/UTF-EBCDIC in scripts
2545
2546 =item Byte and Character semantics
2547
2548 =item Effects of character semantics
2549
2550 =item Scripts
2551
2552 =item Blocks
2553
2554 =item Character encodings for input and output
2555
2556 =item Unicode Regular Expression Support Level
2557
2558 =item Unicode Encodings
2559
2560 =item Security Implications of Malformed UTF-8
2561
2562 =item Unicode in Perl on EBCDIC
2563
2564 =item Using Unicode in XS
2565
2566 =back
2567
2568 =item BUGS
2569
2570 =back
2571
2572 =head2 perlebcdic - Considerations for running Perl on EBCDIC platforms
2573
2574 =over 4
2575
2576 =item DESCRIPTION
2577
2578 =item COMMON CHARACTER CODE SETS
2579
2580 =over 4
2581
2582 =item ASCII
2583
2584 =item ISO 8859
2585
2586 =item Latin 1 (ISO 8859-1)
2587
2588 =item EBCDIC
2589
2590 =item 13 variant characters
2591
2592 =item 0037
2593
2594 =item 1047
2595
2596 =item POSIX-BC
2597
2598 =item Unicode and UTF
2599
2600 =item Using Encode
2601
2602 =back
2603
2604 =item SINGLE OCTET TABLES
2605
2606 recipe 0, recipe 1, recipe 2, recipe 3, recipe 4, recipe 5, recipe 6
2607
2608 =item IDENTIFYING CHARACTER CODE SETS
2609
2610 =item CONVERSIONS
2611
2612 =over 4
2613
2614 =item tr///
2615
2616 =item iconv
2617
2618 =item C RTL
2619
2620 =back
2621
2622 =item OPERATOR DIFFERENCES
2623
2624 =item FUNCTION DIFFERENCES
2625
2626 chr(), ord(), pack(), print(), printf(), sort(), sprintf(), unpack()
2627
2628 =item REGULAR EXPRESSION DIFFERENCES
2629
2630 =item SOCKETS
2631
2632 =item SORTING
2633
2634 =over 4
2635
2636 =item Ignore ASCII vs. EBCDIC sort differences.
2637
2638 =item MONO CASE then sort data.
2639
2640 =item Convert, sort data, then re convert.
2641
2642 =item Perform sorting on one type of machine only.
2643
2644 =back
2645
2646 =item TRANSFORMATION FORMATS
2647
2648 =over 4
2649
2650 =item URL decoding and encoding
2651
2652 =item uu encoding and decoding
2653
2654 =item Quoted-Printable encoding and decoding
2655
2656 =item Caesarian ciphers
2657
2658 =back
2659
2660 =item Hashing order and checksums
2661
2662 =item I18N AND L10N
2663
2664 =item MULTI OCTET CHARACTER SETS
2665
2666 =item OS ISSUES
2667
2668 =over 4
2669
2670 =item OS/400 
2671
2672 IFS access
2673
2674 =item OS/390, z/OS
2675
2676 chcp, dataset access, OS/390, z/OS iconv, locales
2677
2678 =item VM/ESA?
2679
2680 =item POSIX-BC?
2681
2682 =back
2683
2684 =item BUGS
2685
2686 =item SEE ALSO
2687
2688 =item REFERENCES
2689
2690 =item HISTORY
2691
2692 =item AUTHOR
2693
2694 =back
2695
2696 =head2 perlsec - Perl security
2697
2698 =over 4
2699
2700 =item DESCRIPTION
2701
2702 =over 4
2703
2704 =item Laundering and Detecting Tainted Data
2705
2706 =item Switches On the "#!" Line
2707
2708 =item Cleaning Up Your Path
2709
2710 =item Security Bugs
2711
2712 =item Protecting Your Programs
2713
2714 =back
2715
2716 =item SEE ALSO
2717
2718 =back
2719
2720 =head2 perlmod - Perl modules (packages and symbol tables)
2721
2722 =over 4
2723
2724 =item DESCRIPTION
2725
2726 =over 4
2727
2728 =item Packages
2729
2730 =item Symbol Tables
2731
2732 =item Package Constructors and Destructors
2733
2734 =item Perl Classes
2735
2736 =item Perl Modules
2737
2738 =item Making your module threadsafe
2739
2740 =back
2741
2742 =item SEE ALSO
2743
2744 =back
2745
2746 =head2 perlmodinstall - Installing CPAN Modules
2747
2748 =over 4
2749
2750 =item DESCRIPTION
2751
2752 =over 4
2753
2754 =item PREAMBLE
2755
2756 B<DECOMPRESS> the file, B<UNPACK> the file into a directory, B<BUILD> the
2757 module (sometimes unnecessary), B<INSTALL> the module
2758
2759 =back
2760
2761 =item PORTABILITY
2762
2763 =item HEY
2764
2765 =item AUTHOR
2766
2767 =item COPYRIGHT
2768
2769 =back
2770
2771 =head2 perlmodlib - constructing new Perl modules and finding existing ones
2772
2773 =over 4
2774
2775 =item DESCRIPTION
2776
2777 =item THE PERL MODULE LIBRARY
2778
2779 =over 4
2780
2781 =item Pragmatic Modules
2782
2783 attributes, autouse, base, blib, bytes, charnames, constant, diagnostics,
2784 encoding, fields, filetest, integer, less, locale, open, overload, sigtrap,
2785 sort, strict, subs, utf8, vars, vmsish, warnings, warnings::register
2786
2787 =item Standard Modules
2788
2789 AnyDBM_File, Attribute::Handlers, AutoLoader, AutoSplit, Benchmark, CGI,
2790 CGI::Apache, CGI::Carp, CGI::Cookie, CGI::Fast, CGI::Pretty, CGI::Push,
2791 CGI::Switch, CGI::Util, CPAN, CPAN::FirstTime, CPAN::Nox, Carp,
2792 Carp::Heavy, Class::ISA, Class::Struct, Cwd, DB, Devel::SelfStubber,
2793 Digest, DirHandle, Dumpvalue, English, Env, Exporter, Exporter::Heavy,
2794 ExtUtils::Command, ExtUtils::Constant, ExtUtils::Embed, ExtUtils::Install,
2795 ExtUtils::Installed, ExtUtils::Liblist, ExtUtils::MM_Cygwin,
2796 ExtUtils::MM_NW5, ExtUtils::MM_OS2, ExtUtils::MM_Unix, ExtUtils::MM_VMS,
2797 ExtUtils::MM_Win32, ExtUtils::MakeMaker, ExtUtils::Manifest,
2798 ExtUtils::Mkbootstrap, ExtUtils::Mksymlists, ExtUtils::Packlist,
2799 ExtUtils::testlib, Fatal, File::Basename, File::CheckTree, File::Compare,
2800 File::Copy, File::DosGlob, File::Find, File::Path, File::Spec,
2801 File::Spec::Cygwin, File::Spec::Epoc, File::Spec::Functions,
2802 File::Spec::Mac, File::Spec::OS2, File::Spec::Unix, File::Spec::VMS,
2803 File::Spec::Win32, File::Temp, File::stat, FileCache, FileHandle,
2804 Filter::Simple, FindBin, Getopt::Long, Getopt::Std, I18N::Collate,
2805 I18N::LangTags, I18N::LangTags::List, IPC::Open2, IPC::Open3,
2806 Locale::Constants, Locale::Country, Locale::Currency, Locale::Language,
2807 Locale::Maketext, Locale::Maketext::TPJ13, Math::BigFloat, Math::BigInt,
2808 Math::BigInt::Calc, Math::Complex, Math::Trig, Memoize,
2809 Memoize::AnyDBM_File, Memoize::Expire, Memoize::ExpireFile,
2810 Memoize::ExpireTest, Memoize::NDBM_File, Memoize::SDBM_File,
2811 Memoize::Storable, NEXT, Net::Cmd, Net::Config, Net::Domain, Net::FTP,
2812 Net::NNTP, Net::Netrc, Net::POP3, Net::Ping, Net::SMTP, Net::Time,
2813 Net::hostent, Net::libnetFAQ, Net::netent, Net::protoent, Net::servent,
2814 PerlIO, Pod::Checker, Pod::Find, Pod::Functions, Pod::Html,
2815 Pod::InputObjects, Pod::LaTeX, Pod::Man, Pod::ParseLink, Pod::ParseUtils,
2816 Pod::Parser, Pod::Plainer, Pod::Select, Pod::Text, Pod::Text::Color,
2817 Pod::Text::Overstrike, Pod::Text::Termcap, Pod::Usage, Pod::t::basic,
2818 Search::Dict, SelectSaver, SelfLoader, Shell, Switch, Symbol,
2819 Term::ANSIColor, Term::Cap, Term::Complete, Term::ReadLine, Test,
2820 Test::Builder, Test::Harness, Test::More, Test::Simple, Test::Tutorial,
2821 Text::Abbrev, Text::Balanced, Text::ParseWords, Text::Soundex, Text::Tabs,
2822 Text::Wrap, Thread, Tie::Array, Tie::Handle, Tie::Hash, Tie::RefHash,
2823 Tie::Scalar, Tie::SubstrHash, Time::Local, Time::gmtime, Time::localtime,
2824 Time::tm, UNIVERSAL, Unicode::Collate, Unicode::UCD, User::grent,
2825 User::pwent, Win32
2826
2827 =item Extension Modules
2828
2829 =back
2830
2831 =item CPAN
2832
2833 =over 4
2834
2835 =item Africa
2836
2837 =item Asia
2838
2839 =item Central America
2840
2841 =item Europe
2842
2843 =item North America
2844
2845 =item Oceania
2846
2847 =item South America
2848
2849 =back
2850
2851 =item Modules: Creation, Use, and Abuse
2852
2853 =over 4
2854
2855 =item Guidelines for Module Creation
2856
2857 =item Guidelines for Converting Perl 4 Library Scripts into Modules
2858
2859 =item Guidelines for Reusing Application Code
2860
2861 =back
2862
2863 =item NOTE
2864
2865 =back
2866
2867 =head2 perlmodstyle - Perl module style guide
2868
2869 =over 4
2870
2871 =item INTRODUCTION
2872
2873 =item QUICK CHECKLIST
2874
2875 =over 4
2876
2877 =item Before you start
2878
2879 =item The API
2880
2881 =item Stability
2882
2883 =item Documentation
2884
2885 =item Release considerations
2886
2887 =back
2888
2889 =item BEFORE YOU START WRITING A MODULE
2890
2891 =over 4
2892
2893 =item Has it been done before?
2894
2895 =item Do one thing and do it well
2896
2897 =item What's in a name?
2898
2899 =back
2900
2901 =item DESIGNING AND WRITING YOUR MODULE
2902
2903 =over 4
2904
2905 =item To OO or not to OO?
2906
2907 =item Designing your API
2908
2909 Write simple routines to do simple things, Separate functionality from
2910 output, Provide sensible shortcuts and defaults, Naming conventions,
2911 Parameter passing
2912
2913 =item Strictness and warnings
2914
2915 =item Backwards compatibility
2916
2917 =item Error handling and messages
2918
2919 =back
2920
2921 =item DOCUMENTING YOUR MODULE
2922
2923 =over 4
2924
2925 =item POD
2926
2927 =item README, INSTALL, release notes, changelogs
2928
2929 =back
2930
2931 =item RELEASE CONSIDERATIONS
2932
2933 =over 4
2934
2935 =item Version numbering
2936
2937 =item Pre-requisites
2938
2939 =item Testing
2940
2941 =item Packaging
2942
2943 =item Licensing
2944
2945 =back
2946
2947 =item COMMON PITFALLS
2948
2949 =over 4
2950
2951 =item Reinventing the wheel
2952
2953 =item Trying to do too much
2954
2955 =item Inappropriate documentation
2956
2957 =back
2958
2959 =item SEE ALSO
2960
2961 L<perlstyle>, L<perlnewmod>, L<perlpod>, L<podchecker>, Testing tools,
2962 http://pause.perl.org/, Any good book on software engineering
2963
2964 =item AUTHOR
2965
2966 =back
2967
2968 =head2 perlnewmod - preparing a new module for distribution
2969
2970 =over 4
2971
2972 =item DESCRIPTION
2973
2974 =over 4
2975
2976 =item Warning
2977
2978 =item What should I make into a module?
2979
2980 =item Step-by-step: Preparing the ground
2981
2982 Look around, Check it's new, Discuss the need, Choose a name, Check again
2983
2984 =item Step-by-step: Making the module
2985
2986 Start with F<h2xs>, Use L<strict|strict> and L<warnings|warnings>, Use
2987 L<Carp|Carp>, Use L<Exporter|Exporter> - wisely!, Use L<plain old
2988 documentation|perlpod>, Write tests, Write the README
2989
2990 =item Step-by-step: Distributing your module
2991
2992 Get a CPAN user ID, C<perl Makefile.PL; make test; make dist>, Upload the
2993 tarball, Announce to the modules list, Announce to clpa, Fix bugs!
2994
2995 =back
2996
2997 =item AUTHOR
2998
2999 =item SEE ALSO
3000
3001 =back
3002
3003 =head2 perlfaq1 - General Questions About Perl ($Revision: 1.6 $, $Date:
3004 2002/01/31 01:46:23 $)
3005
3006 =over 4
3007
3008 =item DESCRIPTION
3009
3010 =over 4
3011
3012 =item What is Perl?
3013
3014 =item Who supports Perl?  Who develops it?  Why is it free?
3015
3016 =item Which version of Perl should I use?
3017
3018 =item What are perl4 and perl5?
3019
3020 =item What is perl6?
3021
3022 =item How stable is Perl?
3023
3024 =item Is Perl difficult to learn?
3025
3026 =item How does Perl compare with other languages like Java, Python, REXX,
3027 Scheme, or Tcl?
3028
3029 =item Can I do [task] in Perl?
3030
3031 =item When shouldn't I program in Perl?
3032
3033 =item What's the difference between "perl" and "Perl"?
3034
3035 =item Is it a Perl program or a Perl script?
3036
3037 =item What is a JAPH?
3038
3039 =item Where can I get a list of Larry Wall witticisms?
3040
3041 =item How can I convince my sysadmin/supervisor/employees to use version
3042 5/5.6.1/Perl instead of some other language?
3043
3044 =back
3045
3046 =item AUTHOR AND COPYRIGHT
3047
3048 =back
3049
3050 =head2 perlfaq2 - Obtaining and Learning about Perl ($Revision: 1.8 $,
3051 $Date: 2002/02/08 22:31:57 $)
3052
3053 =over 4
3054
3055 =item DESCRIPTION
3056
3057 =over 4
3058
3059 =item What machines support Perl?  Where do I get it?
3060
3061 =item How can I get a binary version of Perl?
3062
3063 =item I don't have a C compiler on my system.  How can I compile perl?
3064
3065 =item I copied the Perl binary from one machine to another, but scripts
3066 don't work.
3067
3068 =item I grabbed the sources and tried to compile but gdbm/dynamic
3069 loading/malloc/linking/... failed.  How do I make it work?
3070
3071 =item What modules and extensions are available for Perl?  What is CPAN? 
3072 What does CPAN/src/... mean?
3073
3074 =item Is there an ISO or ANSI certified version of Perl?
3075
3076 =item Where can I get information on Perl?
3077
3078 =item What are the Perl newsgroups on Usenet?  Where do I post questions?
3079
3080 =item Where should I post source code?
3081
3082 =item Perl Books
3083
3084 References, Tutorials, Task-Oriented, Special Topics
3085
3086 =item Perl in Magazines
3087
3088 =item Perl on the Net: FTP and WWW Access
3089
3090 =item What mailing lists are there for Perl?
3091
3092 =item Archives of comp.lang.perl.misc
3093
3094 =item Where can I buy a commercial version of Perl?
3095
3096 =item Where do I send bug reports?
3097
3098 =item What is perl.com? Perl Mongers? pm.org? perl.org? cpan.org?
3099
3100 =back
3101
3102 =item AUTHOR AND COPYRIGHT
3103
3104 =back
3105
3106 =head2 perlfaq3 - Programming Tools ($Revision: 1.15 $, $Date: 2002/02/11
3107 19:29:52 $)
3108
3109 =over 4
3110
3111 =item DESCRIPTION
3112
3113 =over 4
3114
3115 =item How do I do (anything)?
3116
3117 =item How can I use Perl interactively?
3118
3119 =item Is there a Perl shell?
3120
3121 =item How do I debug my Perl programs?
3122
3123 =item How do I profile my Perl programs?
3124
3125 =item How do I cross-reference my Perl programs?
3126
3127 =item Is there a pretty-printer (formatter) for Perl?
3128
3129 =item Is there a ctags for Perl?
3130
3131 =item Is there an IDE or Windows Perl Editor?
3132
3133 Komodo, The Object System, Open Perl IDE, PerlBuilder, visiPerl+,
3134 CodeMagicCD, GNU Emacs, MicroEMACS, XEmacs, Elvis, Vile, Vim, Codewright,
3135 MultiEdit, SlickEdit, Bash, Ksh, Tcsh, Zsh, BBEdit and BBEdit Lite, Alpha
3136
3137 =item Where can I get Perl macros for vi?
3138
3139 =item Where can I get perl-mode for emacs?
3140
3141 =item How can I use curses with Perl?
3142
3143 =item How can I use X or Tk with Perl?
3144
3145 =item How can I generate simple menus without using CGI or Tk?
3146
3147 =item How can I make my Perl program run faster?
3148
3149 =item How can I make my Perl program take less memory?
3150
3151 Don't slurp!, Use map and grep selectively, Avoid unnecessary quotes and
3152 stringification, Pass by reference, Tie large variables to disk
3153
3154 =item Is it unsafe to return a pointer to local data?
3155
3156 =item How can I free an array or hash so my program shrinks?
3157
3158 =item How can I make my CGI script more efficient?
3159
3160 =item How can I hide the source for my Perl program?
3161
3162 =item How can I compile my Perl program into byte code or C?
3163
3164 =item How can I compile Perl into Java?
3165
3166 =item How can I get C<#!perl> to work on [MS-DOS,NT,...]?
3167
3168 =item Can I write useful Perl programs on the command line?
3169
3170 =item Why don't Perl one-liners work on my DOS/Mac/VMS system?
3171
3172 =item Where can I learn about CGI or Web programming in Perl?
3173
3174 =item Where can I learn about object-oriented Perl programming?
3175
3176 =item Where can I learn about linking C with Perl? [h2xs, xsubpp]
3177
3178 =item I've read perlembed, perlguts, etc., but I can't embed perl in
3179 my C program; what am I doing wrong?
3180
3181 =item When I tried to run my script, I got this message. What does it mean?
3182
3183 =item What's MakeMaker?
3184
3185 =back
3186
3187 =item AUTHOR AND COPYRIGHT
3188
3189 =back
3190
3191 =head2 perlfaq4 - Data Manipulation ($Revision: 1.14 $, $Date: 2002/02/08
3192 22:30:23 $)
3193
3194 =over 4
3195
3196 =item DESCRIPTION
3197
3198 =item Data: Numbers
3199
3200 =over 4
3201
3202 =item Why am I getting long decimals (eg, 19.9499999999999) instead of the
3203 numbers I should be getting (eg, 19.95)?
3204
3205 =item Why isn't my octal data interpreted correctly?
3206
3207 =item Does Perl have a round() function?  What about ceil() and floor()? 
3208 Trig functions?
3209
3210 =item How do I convert between numeric representations?
3211
3212 B<How do I convert Hexadecimal into decimal:>, B<How do I convert from
3213 decimal to hexadecimal:>, B<How do I convert from octal to decimal:>, B<How
3214 do I convert from decimal to octal:>, B<How do I convert from binary to
3215 decimal:>, B<How do I convert from decimal to binary:>
3216
3217 =item Why doesn't & work the way I want it to?
3218
3219 =item How do I multiply matrices?
3220
3221 =item How do I perform an operation on a series of integers?
3222
3223 =item How can I output Roman numerals?
3224
3225 =item Why aren't my random numbers random?
3226
3227 =back
3228
3229 =item Data: Dates
3230
3231 =over 4
3232
3233 =item How do I find the week-of-the-year/day-of-the-year?
3234
3235 =item How do I find the current century or millennium?
3236
3237 =item How can I compare two dates and find the difference?
3238
3239 =item How can I take a string and turn it into epoch seconds?
3240
3241 =item How can I find the Julian Day?
3242
3243 =item How do I find yesterday's date?
3244
3245 =item Does Perl have a Year 2000 problem?  Is Perl Y2K compliant?
3246
3247 =back
3248
3249 =item Data: Strings
3250
3251 =over 4
3252
3253 =item How do I validate input?
3254
3255 =item How do I unescape a string?
3256
3257 =item How do I remove consecutive pairs of characters?
3258
3259 =item How do I expand function calls in a string?
3260
3261 =item How do I find matching/nesting anything?
3262
3263 =item How do I reverse a string?
3264
3265 =item How do I expand tabs in a string?
3266
3267 =item How do I reformat a paragraph?
3268
3269 =item How can I access/change the first N letters of a string?
3270
3271 =item How do I change the Nth occurrence of something?
3272
3273 =item How can I count the number of occurrences of a substring within a
3274 string?
3275
3276 =item How do I capitalize all the words on one line?
3277
3278 =item How can I split a [character] delimited string except when inside
3279 [character]? (Comma-separated files)
3280
3281 =item How do I strip blank space from the beginning/end of a string?
3282
3283 =item How do I pad a string with blanks or pad a number with zeroes?
3284
3285 =item How do I extract selected columns from a string?
3286
3287 =item How do I find the soundex value of a string?
3288
3289 =item How can I expand variables in text strings?
3290
3291 =item What's wrong with always quoting "$vars"?
3292
3293 =item Why don't my <<HERE documents work?
3294
3295 1. There must be no space after the << part, 2. There (probably) should be
3296 a semicolon at the end, 3. You can't (easily) have any space in front of
3297 the tag
3298
3299 =back
3300
3301 =item Data: Arrays
3302
3303 =over 4
3304
3305 =item What is the difference between a list and an array?
3306
3307 =item What is the difference between $array[1] and @array[1]?
3308
3309 =item How can I remove duplicate elements from a list or array?
3310
3311 a), b), c), d), e)
3312
3313 =item How can I tell whether a certain element is contained in a list or
3314 array?
3315
3316 =item How do I compute the difference of two arrays?  How do I compute the
3317 intersection of two arrays?
3318
3319 =item How do I test whether two arrays or hashes are equal?
3320
3321 =item How do I find the first array element for which a condition is true?
3322
3323 =item How do I handle linked lists?
3324
3325 =item How do I handle circular lists?
3326
3327 =item How do I shuffle an array randomly?
3328
3329 =item How do I process/modify each element of an array?
3330
3331 =item How do I select a random element from an array?
3332
3333 =item How do I permute N elements of a list?
3334
3335 =item How do I sort an array by (anything)?
3336
3337 =item How do I manipulate arrays of bits?
3338
3339 =item Why does defined() return true on empty arrays and hashes?
3340
3341 =back
3342
3343 =item Data: Hashes (Associative Arrays)
3344
3345 =over 4
3346
3347 =item How do I process an entire hash?
3348
3349 =item What happens if I add or remove keys from a hash while iterating over
3350 it?
3351
3352 =item How do I look up a hash element by value?
3353
3354 =item How can I know how many entries are in a hash?
3355
3356 =item How do I sort a hash (optionally by value instead of key)?
3357
3358 =item How can I always keep my hash sorted?
3359
3360 =item What's the difference between "delete" and "undef" with hashes?
3361
3362 =item Why don't my tied hashes make the defined/exists distinction?
3363
3364 =item How do I reset an each() operation part-way through?
3365
3366 =item How can I get the unique keys from two hashes?
3367
3368 =item How can I store a multidimensional array in a DBM file?
3369
3370 =item How can I make my hash remember the order I put elements into it?
3371
3372 =item Why does passing a subroutine an undefined element in a hash create
3373 it?
3374
3375 =item How can I make the Perl equivalent of a C structure/C++ class/hash or
3376 array of hashes or arrays?
3377
3378 =item How can I use a reference as a hash key?
3379
3380 =back
3381
3382 =item Data: Misc
3383
3384 =over 4
3385
3386 =item How do I handle binary data correctly?
3387
3388 =item How do I determine whether a scalar is a number/whole/integer/float?
3389
3390 =item How do I keep persistent data across program calls?
3391
3392 =item How do I print out or copy a recursive data structure?
3393
3394 =item How do I define methods for every class/object?
3395
3396 =item How do I verify a credit card checksum?
3397
3398 =item How do I pack arrays of doubles or floats for XS code?
3399
3400 =back
3401
3402 =item AUTHOR AND COPYRIGHT
3403
3404 =back
3405
3406 =head2 perlfaq5 - Files and Formats ($Revision: 1.9 $, $Date: 2002/02/11
3407 19:30:21 $)
3408
3409 =over 4
3410
3411 =item DESCRIPTION
3412
3413 =over 4
3414
3415 =item How do I flush/unbuffer an output filehandle?  Why must I do this?
3416
3417 =item How do I change one line in a file/delete a line in a file/insert a
3418 line in the middle of a file/append to the beginning of a file?
3419
3420 =item How do I count the number of lines in a file?
3421
3422 =item How do I make a temporary file name?
3423
3424 =item How can I manipulate fixed-record-length files?
3425
3426 =item How can I make a filehandle local to a subroutine?  How do I pass
3427 filehandles between subroutines?  How do I make an array of filehandles?
3428
3429 =item How can I use a filehandle indirectly?
3430
3431 =item How can I set up a footer format to be used with write()?
3432
3433 =item How can I write() into a string?
3434
3435 =item How can I output my numbers with commas added?
3436
3437 =item How can I translate tildes (~) in a filename?
3438
3439 =item How come when I open a file read-write it wipes it out?
3440
3441 =item Why do I sometimes get an "Argument list too long" when I use <*>?
3442
3443 =item Is there a leak/bug in glob()?
3444
3445 =item How can I open a file with a leading ">" or trailing blanks?
3446
3447 =item How can I reliably rename a file?
3448
3449 =item How can I lock a file?
3450
3451 =item Why can't I just open(FH, ">file.lock")?
3452
3453 =item I still don't get locking.  I just want to increment the number in
3454 the file.  How can I do this?
3455
3456 =item All I want to do is append a small amount of text to the end of a
3457 file.  Do I still have to use locking?
3458
3459 =item How do I randomly update a binary file?
3460
3461 =item How do I get a file's timestamp in perl?
3462
3463 =item How do I set a file's timestamp in perl?
3464
3465 =item How do I print to more than one file at once?
3466
3467 =item How can I read in an entire file all at once?
3468
3469 =item How can I read in a file by paragraphs?
3470
3471 =item How can I read a single character from a file?  From the keyboard?
3472
3473 =item How can I tell whether there's a character waiting on a filehandle?
3474
3475 =item How do I do a C<tail -f> in perl?
3476
3477 =item How do I dup() a filehandle in Perl?
3478
3479 =item How do I close a file descriptor by number?
3480
3481 =item Why can't I use "C:\temp\foo" in DOS paths?  What doesn't
3482 `C:\temp\foo.exe` work?
3483
3484 =item Why doesn't glob("*.*") get all the files?
3485
3486 =item Why does Perl let me delete read-only files?  Why does C<-i> clobber
3487 protected files?  Isn't this a bug in Perl?
3488
3489 =item How do I select a random line from a file?
3490
3491 =item Why do I get weird spaces when I print an array of lines?
3492
3493 =back
3494
3495 =item AUTHOR AND COPYRIGHT
3496
3497 =back
3498
3499 =head2 perlfaq6 - Regular Expressions ($Revision: 1.8 $, $Date: 2002/01/31
3500 04:27:55 $)
3501
3502 =over 4
3503
3504 =item DESCRIPTION
3505
3506 =over 4
3507
3508 =item How can I hope to use regular expressions without creating illegible
3509 and unmaintainable code?
3510
3511 Comments Outside the Regex, Comments Inside the Regex, Different Delimiters
3512
3513 =item I'm having trouble matching over more than one line.  What's wrong?
3514
3515 =item How can I pull out lines between two patterns that are themselves on
3516 different lines?
3517
3518 =item I put a regular expression into $/ but it didn't work. What's wrong?
3519
3520 =item How do I substitute case insensitively on the LHS while preserving
3521 case on the RHS?
3522
3523 =item How can I make C<\w> match national character sets?
3524
3525 =item How can I match a locale-smart version of C</[a-zA-Z]/>?
3526
3527 =item How can I quote a variable to use in a regex?
3528
3529 =item What is C</o> really for?
3530
3531 =item How do I use a regular expression to strip C style comments from a
3532 file?
3533
3534 =item Can I use Perl regular expressions to match balanced text?
3535
3536 =item What does it mean that regexes are greedy?  How can I get around it?
3537
3538 =item How do I process each word on each line?
3539
3540 =item How can I print out a word-frequency or line-frequency summary?
3541
3542 =item How can I do approximate matching?
3543
3544 =item How do I efficiently match many regular expressions at once?
3545
3546 =item Why don't word-boundary searches with C<\b> work for me?
3547
3548 =item Why does using $&, $`, or $' slow my program down?
3549
3550 =item What good is C<\G> in a regular expression?
3551
3552 =item Are Perl regexes DFAs or NFAs?  Are they POSIX compliant?
3553
3554 =item What's wrong with using grep or map in a void context?
3555
3556 =item How can I match strings with multibyte characters?
3557
3558 =item How do I match a pattern that is supplied by the user?
3559
3560 =back
3561
3562 =item AUTHOR AND COPYRIGHT
3563
3564 =back
3565
3566 =head2 perlfaq7 - General Perl Language Issues ($Revision: 1.7 $, $Date:
3567 2002/01/31 04:27:55 $)
3568
3569 =over 4
3570
3571 =item DESCRIPTION
3572
3573 =over 4
3574
3575 =item Can I get a BNF/yacc/RE for the Perl language?
3576
3577 =item What are all these $@%&* punctuation signs, and how do I know when to
3578 use them?
3579
3580 =item Do I always/never have to quote my strings or use semicolons and
3581 commas?
3582
3583 =item How do I skip some return values?
3584
3585 =item How do I temporarily block warnings?
3586
3587 =item What's an extension?
3588
3589 =item Why do Perl operators have different precedence than C operators?
3590
3591 =item How do I declare/create a structure?
3592
3593 =item How do I create a module?
3594
3595 =item How do I create a class?
3596
3597 =item How can I tell if a variable is tainted?
3598
3599 =item What's a closure?
3600
3601 =item What is variable suicide and how can I prevent it?
3602
3603 =item How can I pass/return a {Function, FileHandle, Array, Hash, Method,
3604 Regex}?
3605
3606 Passing Variables and Functions, Passing Filehandles, Passing Regexes,
3607 Passing Methods
3608
3609 =item How do I create a static variable?
3610
3611 =item What's the difference between dynamic and lexical (static) scoping? 
3612 Between local() and my()?
3613
3614 =item How can I access a dynamic variable while a similarly named lexical
3615 is in scope?
3616
3617 =item What's the difference between deep and shallow binding?
3618
3619 =item Why doesn't "my($foo) = <FILE>;" work right?
3620
3621 =item How do I redefine a builtin function, operator, or method?
3622
3623 =item What's the difference between calling a function as &foo and foo()?
3624
3625 =item How do I create a switch or case statement?
3626
3627 =item How can I catch accesses to undefined variables/functions/methods?
3628
3629 =item Why can't a method included in this same file be found?
3630
3631 =item How can I find out my current package?
3632
3633 =item How can I comment out a large block of perl code?
3634
3635 =item How do I clear a package?
3636
3637 =item How can I use a variable as a variable name?
3638
3639 =back
3640
3641 =item AUTHOR AND COPYRIGHT
3642
3643 =back
3644
3645 =head2 perlfaq8 - System Interaction ($Revision: 1.6 $, $Date: 2002/01/28
3646 04:17:27 $)
3647
3648 =over 4
3649
3650 =item DESCRIPTION
3651
3652 =over 4
3653
3654 =item How do I find out which operating system I'm running under?
3655
3656 =item How come exec() doesn't return?
3657
3658 =item How do I do fancy stuff with the keyboard/screen/mouse?
3659
3660 Keyboard, Screen, Mouse
3661
3662 =item How do I print something out in color?
3663
3664 =item How do I read just one key without waiting for a return key?
3665
3666 =item How do I check whether input is ready on the keyboard?
3667
3668 =item How do I clear the screen?
3669
3670 =item How do I get the screen size?
3671
3672 =item How do I ask the user for a password?
3673
3674 =item How do I read and write the serial port?
3675
3676 lockfiles, open mode, end of line, flushing output, non-blocking input
3677
3678 =item How do I decode encrypted password files?
3679
3680 =item How do I start a process in the background?
3681
3682 STDIN, STDOUT, and STDERR are shared, Signals, Zombies
3683
3684 =item How do I trap control characters/signals?
3685
3686 =item How do I modify the shadow password file on a Unix system?
3687
3688 =item How do I set the time and date?
3689
3690 =item How can I sleep() or alarm() for under a second?
3691
3692 =item How can I measure time under a second?
3693
3694 =item How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
3695
3696 =item Why doesn't my sockets program work under System V (Solaris)?  What
3697 does the error message "Protocol not supported" mean?
3698
3699 =item How can I call my system's unique C functions from Perl?
3700
3701 =item Where do I get the include files to do ioctl() or syscall()?
3702
3703 =item Why do setuid perl scripts complain about kernel problems?
3704
3705 =item How can I open a pipe both to and from a command?
3706
3707 =item Why can't I get the output of a command with system()?
3708
3709 =item How can I capture STDERR from an external command?
3710
3711 =item Why doesn't open() return an error when a pipe open fails?
3712
3713 =item What's wrong with using backticks in a void context?
3714
3715 =item How can I call backticks without shell processing?
3716
3717 =item Why can't my script read from STDIN after I gave it EOF (^D on Unix,
3718 ^Z on MS-DOS)?
3719
3720 =item How can I convert my shell script to perl?
3721
3722 =item Can I use perl to run a telnet or ftp session?
3723
3724 =item How can I write expect in Perl?
3725
3726 =item Is there a way to hide perl's command line from programs such as
3727 "ps"?
3728
3729 =item I {changed directory, modified my environment} in a perl script.  How
3730 come the change disappeared when I exited the script?  How do I get my
3731 changes to be visible?
3732
3733 Unix
3734
3735 =item How do I close a process's filehandle without waiting for it to
3736 complete?
3737
3738 =item How do I fork a daemon process?
3739
3740 =item How do I find out if I'm running interactively or not?
3741
3742 =item How do I timeout a slow event?
3743
3744 =item How do I set CPU limits?
3745
3746 =item How do I avoid zombies on a Unix system?
3747
3748 =item How do I use an SQL database?
3749
3750 =item How do I make a system() exit on control-C?
3751
3752 =item How do I open a file without blocking?
3753
3754 =item How do I install a module from CPAN?
3755
3756 =item What's the difference between require and use?
3757
3758 =item How do I keep my own module/library directory?
3759
3760 =item How do I add the directory my program lives in to the module/library
3761 search path?
3762
3763 =item How do I add a directory to my include path at runtime?
3764
3765 =item What is socket.ph and where do I get it?
3766
3767 =back
3768
3769 =item AUTHOR AND COPYRIGHT
3770
3771 =back
3772
3773 =head2 perlfaq9 - Networking ($Revision: 1.7 $, $Date: 2002/01/28 04:17:27
3774 $)
3775
3776 =over 4
3777
3778 =item DESCRIPTION
3779
3780 =over 4
3781
3782 =item What is the correct form of response from a CGI script?
3783
3784 =item My CGI script runs from the command line but not the browser.  (500
3785 Server Error)
3786
3787 =item How can I get better error messages from a CGI program?
3788
3789 =item How do I remove HTML from a string?
3790
3791 =item How do I extract URLs?
3792
3793 =item How do I download a file from the user's machine?  How do I open a
3794 file on another machine?
3795
3796 =item How do I make a pop-up menu in HTML?
3797
3798 =item How do I fetch an HTML file?
3799
3800 =item How do I automate an HTML form submission?
3801
3802 =item How do I decode or create those %-encodings on the web?
3803
3804 =item How do I redirect to another page?
3805
3806 =item How do I put a password on my web pages?
3807
3808 =item How do I edit my .htpasswd and .htgroup files with Perl?
3809
3810 =item How do I make sure users can't enter values into a form that cause my
3811 CGI script to do bad things?
3812
3813 =item How do I parse a mail header?
3814
3815 =item How do I decode a CGI form?
3816
3817 =item How do I check a valid mail address?
3818
3819 =item How do I decode a MIME/BASE64 string?
3820
3821 =item How do I return the user's mail address?
3822
3823 =item How do I send mail?
3824
3825 =item How do I use MIME to make an attachment to a mail message?
3826
3827 =item How do I read mail?
3828
3829 =item How do I find out my hostname/domainname/IP address?
3830
3831 =item How do I fetch a news article or the active newsgroups?
3832
3833 =item How do I fetch/put an FTP file?
3834
3835 =item How can I do RPC in Perl?
3836
3837 =back
3838
3839 =item AUTHOR AND COPYRIGHT
3840
3841 =back
3842
3843 =head2 perlcompile - Introduction to the Perl Compiler-Translator 
3844
3845 =over 4
3846
3847 =item DESCRIPTION
3848
3849 =over 4
3850
3851 =item Layout
3852
3853 B::Bytecode, B::C, B::CC, B::Lint, B::Deparse, B::Xref
3854
3855 =back
3856
3857 =item Using The Back Ends
3858
3859 =over 4
3860
3861 =item The Cross Referencing Back End
3862
3863 i, &, s, r
3864
3865 =item The Decompiling Back End
3866
3867 =item The Lint Back End
3868
3869 =item The Simple C Back End
3870
3871 =item The Bytecode Back End
3872
3873 =item The Optimized C Back End
3874
3875 B, O, B::Asmdata, B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC,
3876 B::Debug, B::Deparse, B::Disassembler, B::Lint, B::Showlex, B::Stackobj,
3877 B::Stash, B::Terse, B::Xref
3878
3879 =back
3880
3881 =item KNOWN PROBLEMS
3882
3883 =item AUTHOR
3884
3885 =back
3886
3887 =head2 perlembed - how to embed perl in your C program
3888
3889 =over 4
3890
3891 =item DESCRIPTION
3892
3893 =over 4
3894
3895 =item PREAMBLE
3896
3897 B<Use C from Perl?>, B<Use a Unix program from Perl?>, B<Use Perl from
3898 Perl?>, B<Use C from C?>, B<Use Perl from C?>
3899
3900 =item ROADMAP
3901
3902 =item Compiling your C program
3903
3904 =item Adding a Perl interpreter to your C program
3905
3906 =item Calling a Perl subroutine from your C program
3907
3908 =item Evaluating a Perl statement from your C program
3909
3910 =item Performing Perl pattern matches and substitutions from your C program
3911
3912 =item Fiddling with the Perl stack from your C program
3913
3914 =item Maintaining a persistent interpreter
3915
3916 =item Execution of END blocks
3917
3918 =item Maintaining multiple interpreter instances
3919
3920 =item Using Perl modules, which themselves use C libraries, from your C
3921 program
3922
3923 =back
3924
3925 =item Embedding Perl under Win32
3926
3927 =item MORAL
3928
3929 =item AUTHOR
3930
3931 =item COPYRIGHT
3932
3933 =back
3934
3935 =head2 perldebguts - Guts of Perl debugging 
3936
3937 =over 4
3938
3939 =item DESCRIPTION
3940
3941 =item Debugger Internals
3942
3943 =over 4
3944
3945 =item Writing Your Own Debugger
3946
3947 =back
3948
3949 =item Frame Listing Output Examples
3950
3951 =item Debugging regular expressions
3952
3953 =over 4
3954
3955 =item Compile-time output
3956
3957 C<anchored> I<STRING> C<at> I<POS>, C<floating> I<STRING> C<at>
3958 I<POS1..POS2>, C<matching floating/anchored>, C<minlen>, C<stclass>
3959 I<TYPE>, C<noscan>, C<isall>, C<GPOS>, C<plus>, C<implicit>, C<with eval>,
3960 C<anchored(TYPE)>
3961
3962 =item Types of nodes
3963
3964 =item Run-time output
3965
3966 =back
3967
3968 =item Debugging Perl memory usage
3969
3970 =over 4
3971
3972 =item Using C<$ENV{PERL_DEBUG_MSTATS}>
3973
3974 C<buckets SMALLEST(APPROX)..GREATEST(APPROX)>, Free/Used, C<Total sbrk():
3975 SBRKed/SBRKs:CONTINUOUS>, C<pad: 0>, C<heads: 2192>, C<chain: 0>, C<tail:
3976 6144>
3977
3978 =item Example of using B<-DL> switch
3979
3980 C<717>, C<002>, C<054>, C<602>, C<702>, C<704>
3981
3982 =item B<-DL> details
3983
3984 C<!!!>, C<!!>, C<!>
3985
3986 =item Limitations of B<-DL> statistics
3987
3988 =back
3989
3990 =item SEE ALSO
3991
3992 =back
3993
3994 =head2 perlxstut, perlXStut - Tutorial for writing XSUBs
3995
3996 =over 4
3997
3998 =item DESCRIPTION
3999
4000 =item SPECIAL NOTES
4001
4002 =over 4
4003
4004 =item make
4005
4006 =item Version caveat
4007
4008 =item Dynamic Loading versus Static Loading
4009
4010 =back
4011
4012 =item TUTORIAL
4013
4014 =over 4
4015
4016 =item EXAMPLE 1
4017
4018 =item EXAMPLE 2
4019
4020 =item What has gone on?
4021
4022 =item Writing good test scripts
4023
4024 =item EXAMPLE 3
4025
4026 =item What's new here?
4027
4028 =item Input and Output Parameters
4029
4030 =item The XSUBPP Program
4031
4032 =item The TYPEMAP file
4033
4034 =item Warning about Output Arguments
4035
4036 =item EXAMPLE 4
4037
4038 =item What has happened here?
4039
4040 =item Anatomy of .xs file
4041
4042 =item Getting the fat out of XSUBs
4043
4044 =item More about XSUB arguments
4045
4046 =item The Argument Stack
4047
4048 =item Extending your Extension
4049
4050 =item Documenting your Extension
4051
4052 =item Installing your Extension
4053
4054 =item EXAMPLE 5
4055
4056 =item New Things in this Example
4057
4058 =item EXAMPLE 6
4059
4060 =item New Things in this Example
4061
4062 =item EXAMPLE 7 (Coming Soon)
4063
4064 =item EXAMPLE 8 (Coming Soon)
4065
4066 =item EXAMPLE 9 (Coming Soon)
4067
4068 =item Troubleshooting these Examples
4069
4070 =back
4071
4072 =item See also
4073
4074 =item Author
4075
4076 =over 4
4077
4078 =item Last Changed
4079
4080 =back
4081
4082 =back
4083
4084 =head2 perlxs - XS language reference manual
4085
4086 =over 4
4087
4088 =item DESCRIPTION
4089
4090 =over 4
4091
4092 =item Introduction
4093
4094 =item On The Road
4095
4096 =item The Anatomy of an XSUB
4097
4098 =item The Argument Stack
4099
4100 =item The RETVAL Variable
4101
4102 =item The MODULE Keyword
4103
4104 =item The PACKAGE Keyword
4105
4106 =item The PREFIX Keyword
4107
4108 =item The OUTPUT: Keyword
4109
4110 =item The NO_OUTPUT Keyword
4111
4112 =item The CODE: Keyword
4113
4114 =item The INIT: Keyword
4115
4116 =item The NO_INIT Keyword
4117
4118 =item Initializing Function Parameters
4119
4120 =item Default Parameter Values
4121
4122 =item The PREINIT: Keyword
4123
4124 =item The SCOPE: Keyword
4125
4126 =item The INPUT: Keyword
4127
4128 =item The IN/OUTLIST/IN_OUTLIST/OUT/IN_OUT Keywords
4129
4130 =item The C<length(NAME)> Keyword
4131
4132 =item Variable-length Parameter Lists
4133
4134 =item The C_ARGS: Keyword
4135
4136 =item The PPCODE: Keyword
4137
4138 =item Returning Undef And Empty Lists
4139
4140 =item The REQUIRE: Keyword
4141
4142 =item The CLEANUP: Keyword
4143
4144 =item The POSTCALL: Keyword
4145
4146 =item The BOOT: Keyword
4147
4148 =item The VERSIONCHECK: Keyword
4149
4150 =item The PROTOTYPES: Keyword
4151
4152 =item The PROTOTYPE: Keyword
4153
4154 =item The ALIAS: Keyword
4155
4156 =item The OVERLOAD: Keyword
4157
4158 =item The INTERFACE: Keyword
4159
4160 =item The INTERFACE_MACRO: Keyword
4161
4162 =item The INCLUDE: Keyword
4163
4164 =item The CASE: Keyword
4165
4166 =item The & Unary Operator
4167
4168 =item Inserting POD, Comments and C Preprocessor Directives
4169
4170 =item Using XS With C++
4171
4172 =item Interface Strategy
4173
4174 =item Perl Objects And C Structures
4175
4176 =item The Typemap
4177
4178 =item Safely Storing Static Data in XS
4179
4180 MY_CXT_KEY, typedef my_cxt_t, START_MY_CXT, MY_CXT_INIT, dMY_CXT, MY_CXT
4181
4182 =back
4183
4184 =item EXAMPLES
4185
4186 =item XS VERSION
4187
4188 =item AUTHOR
4189
4190 =back
4191
4192 =head2 perlclib - Internal replacements for standard C library functions
4193
4194 =over 4
4195
4196 =item DESCRIPTION
4197
4198 =over 4
4199
4200 =item Conventions
4201
4202 C<t>, C<p>, C<n>, C<s>
4203
4204 =item File Operations
4205
4206 =item File Input and Output
4207
4208 =item File Positioning
4209
4210 =item Memory Management and String Handling
4211
4212 =item Character Class Tests
4213
4214 =item F<stdlib.h> functions
4215
4216 =item Miscellaneous functions
4217
4218 =back
4219
4220 =item SEE ALSO
4221
4222 =back
4223
4224 =head2 perlguts - Introduction to the Perl API
4225
4226 =over 4
4227
4228 =item DESCRIPTION
4229
4230 =item Variables
4231
4232 =over 4
4233
4234 =item Datatypes
4235
4236 =item What is an "IV"?
4237
4238 =item Working with SVs
4239
4240 =item Offsets
4241
4242 =item What's Really Stored in an SV?
4243
4244 =item Working with AVs
4245
4246 =item Working with HVs
4247
4248 =item Hash API Extensions
4249
4250 =item References
4251
4252 =item Blessed References and Class Objects
4253
4254 =item Creating New Variables
4255
4256 =item Reference Counts and Mortality
4257
4258 =item Stashes and Globs
4259
4260 =item Double-Typed SVs
4261
4262 =item Magic Variables
4263
4264 =item Assigning Magic
4265
4266 =item Magic Virtual Tables
4267
4268 =item Finding Magic
4269
4270 =item Understanding the Magic of Tied Hashes and Arrays
4271
4272 =item Localizing changes
4273
4274 C<SAVEINT(int i)>, C<SAVEIV(IV i)>, C<SAVEI32(I32 i)>, C<SAVELONG(long i)>,
4275 C<SAVESPTR(s)>, C<SAVEPPTR(p)>, C<SAVEFREESV(SV *sv)>, C<SAVEMORTALIZESV(SV
4276 *sv)>, C<SAVEFREEOP(OP *op)>, C<SAVEFREEPV(p)>, C<SAVECLEARSV(SV *sv)>,
4277 C<SAVEDELETE(HV *hv, char *key, I32 length)>,
4278 C<SAVEDESTRUCTOR(DESTRUCTORFUNC_NOCONTEXT_t f, void *p)>,
4279 C<SAVEDESTRUCTOR_X(DESTRUCTORFUNC_t f, void *p)>, C<SAVESTACK_POS()>, C<SV*
4280 save_scalar(GV *gv)>, C<AV* save_ary(GV *gv)>, C<HV* save_hash(GV *gv)>,
4281 C<void save_item(SV *item)>, C<void save_list(SV **sarg, I32 maxsarg)>,
4282 C<SV* save_svref(SV **sptr)>, C<void save_aptr(AV **aptr)>, C<void
4283 save_hptr(HV **hptr)>
4284
4285 =back
4286
4287 =item Subroutines
4288
4289 =over 4
4290
4291 =item XSUBs and the Argument Stack
4292
4293 =item Calling Perl Routines from within C Programs
4294
4295 =item Memory Allocation
4296
4297 =item PerlIO
4298
4299 =item Putting a C value on Perl stack
4300
4301 =item Scratchpads
4302
4303 =item Scratchpads and recursion
4304
4305 =back
4306
4307 =item Compiled code
4308
4309 =over 4
4310
4311 =item Code tree
4312
4313 =item Examining the tree
4314
4315 =item Compile pass 1: check routines
4316
4317 =item Compile pass 1a: constant folding
4318
4319 =item Compile pass 2: context propagation
4320
4321 =item Compile pass 3: peephole optimization
4322
4323 =item Pluggable runops
4324
4325 =back
4326
4327 =item Examining internal data structures with the C<dump> functions
4328
4329 =item How multiple interpreters and concurrency are supported
4330
4331 =over 4
4332
4333 =item Background and PERL_IMPLICIT_CONTEXT
4334
4335 =item So what happened to dTHR?
4336
4337 =item How do I use all this in extensions?
4338
4339 =item Should I do anything special if I call perl from multiple threads?
4340
4341 =item Future Plans and PERL_IMPLICIT_SYS
4342
4343 =back
4344
4345 =item Internal Functions
4346
4347 A, p, d, s, n, r, f, M, o, j, x
4348
4349 =over 4
4350
4351 =item Formatted Printing of IVs, UVs, and NVs
4352
4353 =item Pointer-To-Integer and Integer-To-Pointer
4354
4355 =item Source Documentation
4356
4357 =back
4358
4359 =item Unicode Support
4360
4361 =over 4
4362
4363 =item What B<is> Unicode, anyway?
4364
4365 =item How can I recognise a UTF8 string?
4366
4367 =item How does UTF8 represent Unicode characters?
4368
4369 =item How does Perl store UTF8 strings?
4370
4371 =item How do I convert a string to UTF8?
4372
4373 =item Is there anything else I need to know?
4374
4375 =back
4376
4377 =item Custom Operators
4378
4379 =item AUTHORS
4380
4381 =item SEE ALSO
4382
4383 =back
4384
4385 =head2 perlcall - Perl calling conventions from C
4386
4387 =over 4
4388
4389 =item DESCRIPTION
4390
4391 An Error Handler, An Event Driven Program
4392
4393 =item THE CALL_ FUNCTIONS
4394
4395 call_sv, call_pv, call_method, call_argv
4396
4397 =item FLAG VALUES
4398
4399 =over 4
4400
4401 =item  G_VOID
4402
4403 =item  G_SCALAR
4404
4405 =item G_ARRAY
4406
4407 =item G_DISCARD
4408
4409 =item G_NOARGS
4410
4411 =item G_EVAL
4412
4413 =item G_KEEPERR
4414
4415 =item Determining the Context
4416
4417 =back
4418
4419 =item KNOWN PROBLEMS
4420
4421 =item EXAMPLES
4422
4423 =over 4
4424
4425 =item No Parameters, Nothing returned
4426
4427 =item Passing Parameters
4428
4429 =item Returning a Scalar
4430
4431 =item Returning a list of values
4432
4433 =item Returning a list in a scalar context
4434
4435 =item Returning Data from Perl via the parameter list
4436
4437 =item Using G_EVAL
4438
4439 =item Using G_KEEPERR
4440
4441 =item Using call_sv
4442
4443 =item Using call_argv
4444
4445 =item Using call_method
4446
4447 =item Using GIMME_V
4448
4449 =item Using Perl to dispose of temporaries
4450
4451 =item Strategies for storing Callback Context Information
4452
4453 1. Ignore the problem - Allow only 1 callback, 2. Create a sequence of
4454 callbacks - hard wired limit, 3. Use a parameter to map to the Perl
4455 callback
4456
4457 =item Alternate Stack Manipulation
4458
4459 =item Creating and calling an anonymous subroutine in C
4460
4461 =back
4462
4463 =item SEE ALSO
4464
4465 =item AUTHOR
4466
4467 =item DATE
4468
4469 =back
4470
4471 =head2 perlutil - utilities packaged with the Perl distribution
4472
4473 =over 4
4474
4475 =item DESCRIPTION
4476
4477 =over 4
4478
4479 =item DOCUMENTATION
4480
4481 L<perldoc|perldoc>, L<pod2man|pod2man> and L<pod2text|pod2text>,
4482 L<pod2html|pod2html> and L<pod2latex|pod2latex>, L<pod2usage|pod2usage>,
4483 L<podselect|podselect>, L<podchecker|podchecker>, L<splain|splain>,
4484 L<roffitall|roffitall>
4485
4486 =item CONVERTORS
4487
4488 L<a2p|a2p>, L<s2p|s2p>, L<find2perl|find2perl>
4489
4490 =item Administration
4491
4492 L<libnetcfg|libnetcfg>
4493
4494 =item Development
4495
4496 L<perlbug|perlbug>, L<h2ph|h2ph>, L<c2ph|c2ph> and L<pstruct|pstruct>,
4497 L<h2xs|h2xs>, L<dprofpp|dprofpp>, L<perlcc|perlcc>
4498
4499 =item SEE ALSO
4500
4501 =back
4502
4503 =back
4504
4505 =head2 perlfilter - Source Filters
4506
4507 =over 4
4508
4509 =item DESCRIPTION
4510
4511 =item CONCEPTS
4512
4513 =item USING FILTERS
4514
4515 =item WRITING A SOURCE FILTER
4516
4517 =item WRITING A SOURCE FILTER IN C
4518
4519 B<Decryption Filters>
4520
4521 =item CREATING A SOURCE FILTER AS A SEPARATE EXECUTABLE
4522
4523 =item WRITING A SOURCE FILTER IN PERL
4524
4525 =item USING CONTEXT: THE DEBUG FILTER
4526
4527 =item CONCLUSION
4528
4529 =item REQUIREMENTS
4530
4531 =item AUTHOR
4532
4533 =item Copyrights
4534
4535 =back
4536
4537 =head2 perldbmfilter - Perl DBM Filters
4538
4539 =over 4
4540
4541 =item SYNOPSIS
4542
4543 =item DESCRIPTION
4544
4545 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
4546 B<filter_fetch_value>
4547
4548 =over 4
4549
4550 =item The Filter
4551
4552 =item An Example -- the NULL termination problem.
4553
4554 =item Another Example -- Key is a C int.
4555
4556 =back
4557
4558 =item SEE ALSO
4559
4560 =item AUTHOR
4561
4562 =back
4563
4564 =head2 perlapi - autogenerated documentation for the perl public API
4565
4566 =over 4
4567
4568 =item DESCRIPTION
4569
4570 =item "Gimme" Values
4571
4572 GIMME, GIMME_V, G_ARRAY, G_DISCARD, G_EVAL, G_NOARGS, G_SCALAR, G_VOID
4573
4574 =item Array Manipulation Functions
4575
4576 AvFILL, av_clear, av_delete, av_exists, av_extend, av_fetch, av_fill,
4577 av_len, av_make, av_pop, av_push, av_shift, av_store, av_undef, av_unshift,
4578 get_av, newAV, Nullav, sortsv
4579
4580 =item Callback Functions
4581
4582 call_argv, call_method, call_pv, call_sv, ENTER, eval_pv, eval_sv,
4583 FREETMPS, LEAVE, SAVETMPS
4584
4585 =item Character classes
4586
4587 isALNUM, isALPHA, isDIGIT, isLOWER, isSPACE, isUPPER, toLOWER, toUPPER
4588
4589 =item Cloning an interpreter
4590
4591 perl_clone
4592
4593 =item CV Manipulation Functions
4594
4595 CvSTASH, get_cv, Nullcv
4596
4597 =item Embedding Functions
4598
4599 load_module, perl_alloc, perl_construct, perl_destruct, perl_free,
4600 perl_parse, perl_run, require_pv
4601
4602 =item Functions in file pp_pack.c
4603
4604 pack_cat, unpack_str
4605
4606 =item Global Variables
4607
4608 PL_modglobal, PL_na, PL_sv_no, PL_sv_undef, PL_sv_yes
4609
4610 =item GV Functions
4611
4612 GvSV, gv_fetchmeth, gv_fetchmethod, gv_fetchmethod_autoload,
4613 gv_fetchmeth_autoload, gv_stashpv, gv_stashsv
4614
4615 =item Handy Values
4616
4617 HEf_SVKEY, Nullch, Nullsv
4618
4619 =item Hash Manipulation Functions
4620
4621 get_hv, HeHASH, HeKEY, HeKLEN, HePV, HeSVKEY, HeSVKEY_force, HeSVKEY_set,
4622 HeVAL, HvNAME, hv_clear, hv_delete, hv_delete_ent, hv_exists,
4623 hv_exists_ent, hv_fetch, hv_fetch_ent, hv_iterinit, hv_iterkey,
4624 hv_iterkeysv, hv_iternext, hv_iternextsv, hv_iterval, hv_magic, hv_store,
4625 hv_store_ent, hv_undef, newHV, Nullhv
4626
4627 =item Magical Functions
4628
4629 mg_clear, mg_copy, mg_find, mg_free, mg_get, mg_length, mg_magical, mg_set,
4630 SvGETMAGIC, SvLOCK, SvSETMAGIC, SvSetMagicSV, SvSetMagicSV_nosteal,
4631 SvSetSV, SvSetSV_nosteal, SvSHARE
4632
4633 =item Memory Management
4634
4635 Copy, Move, New, Newc, NEWSV, Newz, Renew, Renewc, Safefree, savepv,
4636 savepvn, savesharedpv, StructCopy, Zero
4637
4638 =item Miscellaneous Functions
4639
4640 fbm_compile, fbm_instr, form, getcwd_sv, strEQ, strGE, strGT, strLE, strLT,
4641 strNE, strnEQ, strnNE
4642
4643 =item Numeric functions
4644
4645 grok_bin, grok_hex, grok_number, grok_numeric_radix, grok_oct, scan_bin,
4646 scan_hex, scan_oct
4647
4648 =item Optree Manipulation Functions
4649
4650 cv_const_sv, newCONSTSUB, newXS
4651
4652 =item Stack Manipulation Macros
4653
4654 dMARK, dORIGMARK, dSP, EXTEND, MARK, ORIGMARK, POPi, POPl, POPn, POPp,
4655 POPpbytex, POPpx, POPs, PUSHi, PUSHMARK, PUSHn, PUSHp, PUSHs, PUSHu,
4656 PUTBACK, SP, SPAGAIN, XPUSHi, XPUSHn, XPUSHp, XPUSHs, XPUSHu, XSRETURN,
4657 XSRETURN_IV, XSRETURN_NO, XSRETURN_NV, XSRETURN_PV, XSRETURN_UNDEF,
4658 XSRETURN_YES, XST_mIV, XST_mNO, XST_mNV, XST_mPV, XST_mUNDEF, XST_mYES
4659
4660 =item SV Flags
4661
4662 svtype, SVt_IV, SVt_NV, SVt_PV, SVt_PVAV, SVt_PVCV, SVt_PVHV, SVt_PVMG
4663
4664 =item SV Manipulation Functions
4665
4666 get_sv, looks_like_number, memcmp_byte_utf8, newRV_inc, newRV_noinc, newSV,
4667 newSViv, newSVnv, newSVpv, newSVpvf, newSVpvn, newSVpvn_share, newSVrv,
4668 newSVsv, newSVuv, new_vstring, SvCUR, SvCUR_set, SvEND, SvGROW, SvIOK,
4669 SvIOKp, SvIOK_notUV, SvIOK_off, SvIOK_on, SvIOK_only, SvIOK_only_UV,
4670 SvIOK_UV, SvIV, SvIVx, SvIVX, SvLEN, SvNIOK, SvNIOKp, SvNIOK_off, SvNOK,
4671 SvNOKp, SvNOK_off, SvNOK_on, SvNOK_only, SvNV, SvNVx, SvNVX, SvOK, SvOOK,
4672 SvPOK, SvPOKp, SvPOK_off, SvPOK_on, SvPOK_only, SvPOK_only_UTF8, SvPV,
4673 SvPVbyte, SvPVbytex, SvPVbytex_force, SvPVbyte_force, SvPVbyte_nolen,
4674 SvPVutf8, SvPVutf8x, SvPVutf8x_force, SvPVutf8_force, SvPVutf8_nolen,
4675 SvPVx, SvPVX, SvPV_force, SvPV_force_nomg, SvPV_nolen, SvREFCNT,
4676 SvREFCNT_dec, SvREFCNT_inc, SvROK, SvROK_off, SvROK_on, SvRV, SvSTASH,
4677 SvTAINT, SvTAINTED, SvTAINTED_off, SvTAINTED_on, SvTRUE, SvTYPE, SvUNLOCK,
4678 SvUOK, SvUPGRADE, SvUTF8, SvUTF8_off, SvUTF8_on, SvUV, SvUVx, SvUVX,
4679 sv_2bool, sv_2cv, sv_2io, sv_2iv, sv_2mortal, sv_2nv, sv_2pvbyte,
4680 sv_2pvbyte_nolen, sv_2pvutf8, sv_2pvutf8_nolen, sv_2pv_flags, sv_2pv_nolen,
4681 sv_2uv, sv_backoff, sv_bless, sv_catpv, sv_catpvf, sv_catpvf_mg, sv_catpvn,
4682 sv_catpvn_flags, sv_catpvn_mg, sv_catpv_mg, sv_catsv, sv_catsv_flags,
4683 sv_catsv_mg, sv_chop, sv_clear, sv_cmp, sv_cmp_locale, sv_collxfrm,
4684 sv_copypv, sv_dec, sv_derived_from, sv_eq, sv_force_normal,
4685 sv_force_normal_flags, sv_free, sv_gets, sv_grow, sv_inc, sv_insert,
4686 sv_isa, sv_isobject, sv_iv, sv_len, sv_len_utf8, sv_magic, sv_magicext,
4687 sv_mortalcopy, sv_newmortal, sv_newref, sv_nolocking, sv_nosharing,
4688 sv_nounlocking, sv_nv, sv_pos_b2u, sv_pos_u2b, sv_pv, sv_pvbyte,
4689 sv_pvbyten, sv_pvbyten_force, sv_pvn, sv_pvn_force, sv_pvn_force_flags,
4690 sv_pvutf8, sv_pvutf8n, sv_pvutf8n_force, sv_reftype, sv_replace,
4691 sv_report_used, sv_reset, sv_rvweaken, sv_setiv, sv_setiv_mg, sv_setnv,
4692 sv_setnv_mg, sv_setpv, sv_setpvf, sv_setpvf_mg, sv_setpviv, sv_setpviv_mg,
4693 sv_setpvn, sv_setpvn_mg, sv_setpv_mg, sv_setref_iv, sv_setref_nv,
4694 sv_setref_pv, sv_setref_pvn, sv_setref_uv, sv_setsv, sv_setsv_flags,
4695 sv_setsv_mg, sv_setuv, sv_setuv_mg, sv_taint, sv_tainted, sv_true,
4696 sv_unmagic, sv_unref, sv_unref_flags, sv_untaint, sv_upgrade, sv_usepvn,
4697 sv_usepvn_mg, sv_utf8_decode, sv_utf8_downgrade, sv_utf8_encode,
4698 sv_utf8_upgrade, sv_utf8_upgrade_flags, sv_uv, sv_vcatpvfn, sv_vsetpvfn
4699
4700 =item Unicode Support
4701
4702 bytes_from_utf8, bytes_to_utf8, ibcmp_utf8, is_utf8_char, is_utf8_string,
4703 pv_uni_display, sv_recode_to_utf8, sv_uni_display, to_utf8_case,
4704 to_utf8_fold, to_utf8_lower, to_utf8_title, to_utf8_upper, utf8n_to_uvchr,
4705 utf8n_to_uvuni, utf8_distance, utf8_hop, utf8_length, utf8_to_bytes,
4706 utf8_to_uvchr, utf8_to_uvuni, uvchr_to_utf8, uvuni_to_utf8_flags
4707
4708 =item Variables created by C<xsubpp> and C<xsubpp> internal functions
4709
4710 ax, CLASS, dAX, dITEMS, dXSARGS, dXSI32, items, ix, newXSproto, RETVAL, ST,
4711 THIS, XS, XSRETURN_EMPTY, XS_VERSION, XS_VERSION_BOOTCHECK
4712
4713 =item Warning and Dieing
4714
4715 croak, warn
4716
4717 =item AUTHORS
4718
4719 =item SEE ALSO
4720
4721 =back
4722
4723 =head2 perlintern - autogenerated documentation of purely B<internal>
4724                  Perl functions
4725
4726 =over 4
4727
4728 =item DESCRIPTION
4729
4730 =item Global Variables
4731
4732 PL_DBsingle, PL_DBsub, PL_DBtrace, PL_dowarn, PL_last_in_gv, PL_ofs_sv,
4733 PL_rs
4734
4735 =item GV Functions
4736
4737 is_gv_magical
4738
4739 =item IO Functions
4740
4741 start_glob
4742
4743 =item Pad Data Structures
4744
4745 CvPADLIST
4746
4747 =item Stack Manipulation Macros
4748
4749 djSP, LVRET
4750
4751 =item SV Manipulation Functions
4752
4753 report_uninit, sv_add_arena, sv_clean_all, sv_clean_objs, sv_free_arenas
4754
4755 =item AUTHORS
4756
4757 =item SEE ALSO
4758
4759 =back
4760
4761 =head2 perliol - C API for Perl's implementation of IO in Layers.
4762
4763 =over 4
4764
4765 =item SYNOPSIS
4766
4767 =item DESCRIPTION
4768
4769 =over 4
4770
4771 =item History and Background
4772
4773 =item Layers vs Disciplines
4774
4775 =item Data Structures
4776
4777 =item Functions and Attributes
4778
4779 =item Per-instance Data
4780
4781 =item Layers in action.
4782
4783 =item Per-instance flag bits
4784
4785 PERLIO_F_EOF, PERLIO_F_CANWRITE,  PERLIO_F_CANREAD, PERLIO_F_ERROR,
4786 PERLIO_F_TRUNCATE, PERLIO_F_APPEND, PERLIO_F_CRLF, PERLIO_F_UTF8,
4787 PERLIO_F_UNBUF, PERLIO_F_WRBUF, PERLIO_F_RDBUF, PERLIO_F_LINEBUF,
4788 PERLIO_F_TEMP, PERLIO_F_OPEN, PERLIO_F_FASTGETS
4789
4790 =item Methods in Detail
4791
4792 name, size, kind, PERLIO_K_BUFFERED, PERLIO_K_CANCRLF, PERLIO_K_FASTGETS,
4793 PERLIO_K_MULTIARG, PERLIO_K_RAW, Pushed, Popped, Open, Getarg, Fileno, Dup,
4794 Read, Write, Seek, Tell, Close, Flush, Fill, Eof, Error,  Clearerr,
4795 Setlinebuf, Get_base, Get_bufsiz, Get_ptr, Get_cnt, Set_ptrcnt
4796
4797 =item Core Layers
4798
4799 "unix", "perlio", "stdio", "crlf", "mmap", "pending", "raw", "utf8"
4800
4801 =item Extension Layers
4802
4803 ":encoding", ":Scalar", ":Object" or ":Perl"
4804
4805 =back
4806
4807 =item TODO
4808
4809 =back
4810
4811 =head2 perlapio - perl's IO abstraction interface.
4812
4813 =over 4
4814
4815 =item SYNOPSIS
4816
4817 =item DESCRIPTION
4818
4819 1. USE_STDIO, 2. USE_SFIO, 3. USE_PERLIO, B<PerlIO_stdin()>,
4820 B<PerlIO_stdout()>, B<PerlIO_stderr()>, B<PerlIO_open(path, mode)>,
4821 B<PerlIO_fdopen(fd,mode)>, B<PerlIO_reopen(path,mode,f)>,
4822 B<PerlIO_printf(f,fmt,...)>, B<PerlIO_vprintf(f,fmt,a)>,
4823 B<PerlIO_stdoutf(fmt,...)>, B<PerlIO_read(f,buf,count)>,
4824 B<PerlIO_write(f,buf,count)>, B<PerlIO_close(f)>, B<PerlIO_puts(f,s)>,
4825 B<PerlIO_putc(f,c)>, B<PerlIO_ungetc(f,c)>, B<PerlIO_getc(f)>,
4826 B<PerlIO_eof(f)>, B<PerlIO_error(f)>, B<PerlIO_fileno(f)>,
4827 B<PerlIO_clearerr(f)>, B<PerlIO_flush(f)>, B<PerlIO_seek(f,offset,whence)>,
4828 B<PerlIO_tell(f)>, B<PerlIO_getpos(f,p)>, B<PerlIO_setpos(f,p)>,
4829 B<PerlIO_rewind(f)>, B<PerlIO_tmpfile()>, B<PerlIO_setlinebuf(f)>
4830
4831 =over 4
4832
4833 =item Co-existence with stdio
4834
4835 B<PerlIO_importFILE(f,flags)>, B<PerlIO_exportFILE(f,flags)>,
4836 B<PerlIO_findFILE(f)>, B<PerlIO_releaseFILE(p,f)>
4837
4838 =item "Fast gets" Functions
4839
4840 B<PerlIO_fast_gets(f)>, B<PerlIO_has_cntptr(f)>, B<PerlIO_get_cnt(f)>,
4841 B<PerlIO_get_ptr(f)>, B<PerlIO_set_ptrcnt(f,p,c)>, B<PerlIO_canset_cnt(f)>,
4842 B<PerlIO_set_cnt(f,c)>, B<PerlIO_has_base(f)>, B<PerlIO_get_base(f)>,
4843 B<PerlIO_get_bufsiz(f)>
4844
4845 =item Other Functions
4846
4847 PerlIO_apply_layers(f,mode,layers), PerlIO_binmode(f,ptype,imode,layers),
4848 'E<lt>' read, 'E<gt>' write, '+' read/write, PerlIO_debug(fmt,...)
4849
4850 =back
4851
4852 =back
4853
4854 =head2 perltodo - Perl TO-DO List
4855
4856 =over 4
4857
4858 =item DESCRIPTION
4859
4860 =item To do during 5.6.x
4861
4862 =over 4
4863
4864 =item Support for I/O disciplines
4865
4866 =item Autoload bytes.pm
4867
4868 =item Make "\u{XXXX}" et al work
4869
4870 =item Create a char *sv_pvprintify(sv, STRLEN *lenp, UV flags)
4871
4872 =item Overloadable regex assertions
4873
4874 =item Unicode
4875
4876 =item use Thread for iThreads
4877
4878 =item make perl_clone optionally clone ops
4879
4880 =item Work out exit/die semantics for threads
4881
4882 =item Typed lexicals for compiler
4883
4884 =item Compiler workarounds for Win32
4885
4886 =item AUTOLOADing in the compiler
4887
4888 =item Fixing comppadlist when compiling
4889
4890 =item Cleaning up exported namespace
4891
4892 =item Complete signal handling
4893
4894 =item Out-of-source builds
4895
4896 =item POSIX realtime support
4897
4898 =item UNIX98 support
4899
4900 =item IPv6 Support
4901
4902 =item Long double conversion
4903
4904 =item Locales
4905
4906 =item Thread-safe regexes
4907
4908 =item Arithmetic on non-Arabic numerals
4909
4910 =item POSIX Unicode character classes
4911
4912 =item Factoring out common suffices/prefices in regexps (trie optimization)
4913
4914 =item Security audit shipped utilities
4915
4916 =item Sort out the uid-setting mess
4917
4918 =item DLL Versioning
4919
4920 =item Introduce @( and @)
4921
4922 =item Floating point handling
4923
4924 =item IV/UV preservation
4925
4926 =item Replace pod2html with something using Pod::Parser
4927
4928 =item Automate module testing on CPAN
4929
4930 =item sendmsg and recvmsg
4931
4932 =item Rewrite perlre documentation
4933
4934 =item Convert example code to IO::Handle filehandles
4935
4936 =item Document Win32 choices
4937
4938 =item Check new modules
4939
4940 =item Make roffitall find pods and libs itself
4941
4942 =back
4943
4944 =item To do at some point
4945
4946 =over 4
4947
4948 =item Remove regular expression recursion
4949
4950 =item Memory leaks after failed eval
4951
4952 =item bitfields in pack
4953
4954 =item Cross compilation
4955
4956 =item Perl preprocessor / macros
4957
4958 =item Perl lexer in Perl
4959
4960 =item Using POSIX calls internally
4961
4962 =item -i rename file when changed
4963
4964 =item All ARGV input should act like E<lt>E<gt>
4965
4966 =item Support for rerunning debugger
4967
4968 =item Test Suite for the Debugger
4969
4970 =item my sub foo { }
4971
4972 =item One-pass global destruction
4973
4974 =item Rewrite regexp parser
4975
4976 =item Cache recently used regexps
4977
4978 =item Re-entrant functions
4979
4980 =item Cross-compilation support
4981
4982 =item Bit-shifting bitvectors
4983
4984 =item debugger pragma
4985
4986 =item use less pragma
4987
4988 =item switch structures
4989
4990 =item Cache eval tree
4991
4992 =item rcatmaybe
4993
4994 =item Shrink opcode tables
4995
4996 =item Optimize away @_
4997
4998 =item Prototypes versus indirect objects
4999
5000 =item Install HTML
5001
5002 =item Prototype method calls
5003
5004 =item Return context prototype declarations
5005
5006 =item magic_setisa
5007
5008 =item Garbage collection
5009
5010 =item IO tutorial
5011
5012 =item Rewrite perldoc
5013
5014 =item Install .3p manpages
5015
5016 =item Unicode tutorial
5017
5018 =item Update POSIX.pm for 1003.1-2
5019
5020 =item Retargetable installation
5021
5022 =item POSIX emulation on non-POSIX systems
5023
5024 =item Rename Win32 headers
5025
5026 =item Finish off lvalue functions
5027
5028 =item Update sprintf documentation
5029
5030 =item Use fchown/fchmod internally
5031
5032 =item Make v-strings overloaded objects
5033
5034 =item Allow restricted hash assignment
5035
5036 =back
5037
5038 =item Vague ideas
5039
5040 =over 4
5041
5042 =item ref() in list context
5043
5044 =item Make tr/// return histogram of characters in list context
5045
5046 =item Compile to real threaded code
5047
5048 =item Structured types
5049
5050 =item Modifiable $1 et al.
5051
5052 =item Procedural interfaces for IO::*, etc.
5053
5054 =item RPC modules
5055
5056 =item Attach/detach debugger from running program
5057
5058 =item GUI::Native
5059
5060 =item foreach(reverse ...)
5061
5062 =item Constant function cache
5063
5064 =item Approximate regular expression matching
5065
5066 =back
5067
5068 =item Ongoing
5069
5070 =over 4
5071
5072 =item Update guts documentation
5073
5074 =item Add more tests
5075
5076 =item Update auxiliary tools
5077
5078 =back
5079
5080 =item Recently done things
5081
5082 =over 4
5083
5084 =item Alternative RE syntax module
5085
5086 =item Safe signal handling
5087
5088 =item Tie Modules
5089
5090 =item gettimeofday
5091
5092 =item setitimer and getimiter
5093
5094 =item Testing __DIE__ hook
5095
5096 =item CPP equivalent in Perl
5097
5098 =item Explicit switch statements
5099
5100 =item autocroak
5101
5102 =item UTF/EBCDIC
5103
5104 =item UTF Regexes
5105
5106 =item perlcc to produce executable
5107
5108 =item END blocks saved in compiled output
5109
5110 =item Secure temporary file module
5111
5112 =item Integrate Time::HiRes
5113
5114 =item Turn Cwd into XS
5115
5116 =item Mmap for input
5117
5118 =item Byte to/from UTF8 and UTF8 to/from local conversion
5119
5120 =item Add sockatmark support
5121
5122 =item Mailing list archives
5123
5124 =item Bug tracking
5125
5126 =item Integrate MacPerl
5127
5128 =item Web "nerve center" for Perl
5129
5130 =item Regular expression tutorial
5131
5132 =item Debugging Tutorial
5133
5134 =item Integrate new modules
5135
5136 =item Integrate profiler
5137
5138 =item Y2K error detection
5139
5140 =item Regular expression debugger
5141
5142 =item POD checker
5143
5144 =item "Dynamic" lexicals
5145
5146 =item Cache precompiled modules
5147
5148 =back
5149
5150 =item Deprecated Wishes
5151
5152 =over 4
5153
5154 =item Loop control on do{}
5155
5156 =item Lexically scoped typeglobs
5157
5158 =item format BOTTOM
5159
5160 =item report HANDLE
5161
5162 =item Generalised want()/caller())
5163
5164 =item Named prototypes
5165
5166 =item Built-in globbing
5167
5168 =item Regression tests for suidperl
5169
5170 =item Cached hash values
5171
5172 =item Add compression modules
5173
5174 =item Reorganise documentation into tutorials/references
5175
5176 =item Remove distinction between functions and operators
5177
5178 =item Make XS easier to use
5179
5180 =item Make embedding easier to use
5181
5182 =item man for perl
5183
5184 =item my $Package::variable
5185
5186 =item "or" tests defined, not truth
5187
5188 =item "class"-based lexicals
5189
5190 =item byteperl
5191
5192 =item Lazy evaluation / tail recursion removal
5193
5194 =item Make "use utf8" the default
5195
5196 =item Unicode collation and normalization
5197
5198 =item Create debugging macros
5199
5200 =item truncate to the people
5201
5202 =item pack/unpack tutorial
5203
5204 =back
5205
5206 =back
5207
5208 =head2 perlhack - How to hack at the Perl internals
5209
5210 =over 4
5211
5212 =item DESCRIPTION
5213
5214 Does concept match the general goals of Perl?, Where is the
5215 implementation?, Backwards compatibility, Could it be a module instead?, Is
5216 the feature generic enough?, Does it potentially introduce new bugs?, Does
5217 it preclude other desirable features?, Is the implementation robust?, Is
5218 the implementation generic enough to be portable?, Is the implementation
5219 tested?, Is there enough documentation?, Is there another way to do it?,
5220 Does it create too much work?, Patches speak louder than words
5221
5222 =over 4
5223
5224 =item Keeping in sync
5225
5226 rsync'ing the source tree, Using rsync over the LAN, Using pushing over the
5227 NFS, rsync'ing the patches
5228
5229 =item Why rsync the source tree
5230
5231 It's easier to rsync the source tree, It's more recent, It's more reliable
5232
5233 =item Why rsync the patches
5234
5235 It's easier to rsync the patches, It's a good reference, Finding a start
5236 point, Finding how to fix a bug, Finding the source of misbehaviour
5237
5238 =item Perlbug remote interface
5239
5240 1 http://bugs.perl.org, 2 bugdb@perl.org, 3
5241 commands_and_bugdids@bugs.perl.org, notes, patches, tests
5242
5243 =item Submitting patches
5244
5245 L<perlguts>, L<perlxstut> and L<perlxs>, L<perlapi>,
5246 F<Porting/pumpkin.pod>, The perl5-porters FAQ
5247
5248 =item Finding Your Way Around
5249
5250 Core modules, Tests, Documentation, Configure, Interpreter
5251
5252 =item Elements of the interpreter
5253
5254 Startup, Parsing, Optimization, Running
5255
5256 =item Internal Variable Types
5257
5258 =item Op Trees
5259
5260 =item Stacks
5261
5262 Argument stack, Mark stack, Save stack
5263
5264 =item Millions of Macros
5265
5266 =item Poking at Perl
5267
5268 =item Using a source-level debugger
5269
5270 run [args], break function_name, break source.c:xxx, step, next, continue,
5271 finish, 'enter', print
5272
5273 =item Dumping Perl Data Structures
5274
5275 =item Patching
5276
5277 =item Patching a core module
5278
5279 =item Adding a new function to the core
5280
5281 =item Writing a test
5282
5283 F<t/base/>, F<t/cmd/>, F<t/comp/>, F<t/io/>, F<t/lib/>, F<t/op/>,
5284 F<t/pod/>, F<t/run/>, t/base t/comp, t/cmd t/run t/io t/op, t/lib ext lib
5285
5286 =back
5287
5288 =item EXTERNAL TOOLS FOR DEBUGGING PERL
5289
5290 =over 4
5291
5292 =item Rational Software's Purify
5293
5294 =item Purify on Unix
5295
5296 -Accflags=-DPURIFY, -Doptimize='-g', -Uusemymalloc, -Dusemultiplicity
5297
5298 =item Purify on NT
5299
5300 DEFINES, USE_MULTI = define, #PERL_MALLOC = define, CFG = Debug
5301
5302 =item Compaq's/Digital's Third Degree
5303
5304 =item PERL_DESTRUCT_LEVEL
5305
5306 =item Profiling
5307
5308 =item Gprof Profiling
5309
5310 -a, -b, -e routine, -f routine, -s, -z
5311
5312 =item GCC gcov Profiling
5313
5314 =item Pixie Profiling
5315
5316 -h, -l, -p[rocedures], -h[eavy], -i[nvocations], -l[ines], -testcoverage,
5317 -z[ero]
5318
5319 =item CONCLUSION
5320
5321 I<The Road goes ever on and on, down from the door where it began.>
5322
5323 =back
5324
5325 =item AUTHOR
5326
5327 =back
5328
5329 =head2 perlhist - the Perl history records
5330
5331 =over 4
5332
5333 =item DESCRIPTION
5334
5335 =item INTRODUCTION
5336
5337 =item THE KEEPERS OF THE PUMPKIN
5338
5339 =over 4
5340
5341 =item PUMPKIN?
5342
5343 =back
5344
5345 =item THE RECORDS
5346
5347 =over 4
5348
5349 =item SELECTED RELEASE SIZES
5350
5351 =item SELECTED PATCH SIZES
5352
5353 =back
5354
5355 =item THE KEEPERS OF THE RECORDS
5356
5357 =back
5358
5359 =head2 perldelta - what is new for perl v5.8.0
5360
5361 =over 4
5362
5363 =item DESCRIPTION
5364
5365 =item Highlights In 5.8.0
5366
5367 =item Incompatible Changes
5368
5369 =over 4
5370
5371 =item 64-bit platforms and malloc
5372
5373 =item AIX Dynaloading
5374
5375 =item Attributes for C<my> variables now handled at run-time.
5376
5377 =item Socket Extension Dynamic in VMS
5378
5379 =item IEEE-format Floating Point Default on OpenVMS Alpha
5380
5381 =item New Unicode Properties
5382
5383 =item REF(...) Instead Of SCALAR(...)
5384
5385 =item pack/unpack D/F recycled
5386
5387 =item Deprecations
5388
5389 =back
5390
5391 =item Core Enhancements
5392
5393 =over 4
5394
5395 =item PerlIO is Now The Default
5396
5397 =item Safe Signals
5398
5399 =item Unicode Overhaul
5400
5401 =item Understanding of Numbers
5402
5403 =item Miscellaneous Changes
5404
5405 =back
5406
5407 =item Modules and Pragmata
5408
5409 =over 4
5410
5411 =item New Modules and Pragmata
5412
5413 =item Updated And Improved Modules and Pragmata
5414
5415 =back
5416
5417 =item Utility Changes
5418
5419 =item New Documentation
5420
5421 =item Performance Enhancements
5422
5423 =item Installation and Configuration Improvements
5424
5425 =over 4
5426
5427 =item Generic Improvements
5428
5429 =item New Or Improved Platforms
5430
5431 =back
5432
5433 =item Selected Bug Fixes
5434
5435 =over 4
5436
5437 =item Platform Specific Changes and Fixes
5438
5439 =back
5440
5441 =item New or Changed Diagnostics
5442
5443 =item Changed Internals
5444
5445 =item Security Vulnerability Closed
5446
5447 =item New Tests
5448
5449 =item Known Problems
5450
5451 =over 4
5452
5453 =item AIX
5454
5455 =item Amiga Perl Invoking Mystery
5456
5457 =item lib/ftmp-security tests warn 'system possibly insecure'
5458
5459 =item  HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5460
5461 =item Linux With Sfio Fails op/misc Test 48
5462
5463 =item Mac OS X
5464
5465 =item OS/390
5466
5467 =item op/sprintf tests 129 and 130
5468
5469 =item  Failure of Thread tests
5470
5471 =item UNICOS
5472
5473 =item UNICOS and UNICOS/mk
5474
5475 =item UTS
5476
5477 =item VMS
5478
5479 =item Win32
5480
5481 =item Localising a Tied Variable Leaks Memory
5482
5483 =item Localising Tied Arrays and Hashes Is Broken
5484
5485 =item Self-tying of Arrays and Hashes Is Forbidden
5486
5487 =item Building Extensions Can Fail Because Of Largefiles
5488
5489 =item Unicode Support on EBCDIC Still Spotty
5490
5491 =item The Compiler Suite Is Still Experimental
5492
5493 =item The Long Double Support Is Still Experimental
5494
5495 =item Seen In Perl 5.7 But Gone Now
5496
5497 =back
5498
5499 =item Reporting Bugs
5500
5501 =item SEE ALSO
5502
5503 =item HISTORY
5504
5505 =back
5506
5507 =head2 perl572delta - what's new for perl v5.7.2
5508
5509 =over 4
5510
5511 =item DESCRIPTION
5512
5513 =item Security Vulnerability Closed
5514
5515 =item Incompatible Changes
5516
5517 =over 4
5518
5519 =item 64-bit platforms and malloc
5520
5521 =item AIX Dynaloading
5522
5523 =item Socket Extension Dynamic in VMS
5524
5525 =item Different Definition of the Unicode Character Classes \p{In...}
5526
5527 =item Deprecations
5528
5529 =back
5530
5531 =item Core Enhancements
5532
5533 =item Modules and Pragmata
5534
5535 =over 4
5536
5537 =item New Modules and Distributions
5538
5539 =item Updated And Improved Modules and Pragmata
5540
5541 =back
5542
5543 =item Utility Changes
5544
5545 =item New Documentation
5546
5547 =item Installation and Configuration Improvements
5548
5549 =over 4
5550
5551 =item New Or Improved Platforms
5552
5553 =item Generic Improvements
5554
5555 =back
5556
5557 =item Selected Bug Fixes
5558
5559 =over 4
5560
5561 =item Platform Specific Changes and Fixes
5562
5563 =back
5564
5565 =item New or Changed Diagnostics
5566
5567 =item Source Code Enhancements
5568
5569 =over 4
5570
5571 =item MAGIC constants
5572
5573 =item Better commented code
5574
5575 =item Regex pre-/post-compilation items matched up
5576
5577 =item gcc -Wall
5578
5579 =back
5580
5581 =item New Tests
5582
5583 =item Known Problems
5584
5585 =over 4
5586
5587 =item AIX
5588
5589 =item Amiga Perl Invoking Mystery
5590
5591 =item lib/ftmp-security tests warn 'system possibly insecure'
5592
5593 =item Cygwin intermittent failures of lib/Memoize/t/expire_file 11 and 12
5594
5595 =item HP-UX lib/io_multihomed Fails When LP64-Configured
5596
5597 =item  HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5598
5599 =item Linux With Sfio Fails op/misc Test 48
5600
5601 =item OS/390
5602
5603 =item op/sprintf tests 129 and 130
5604
5605 =item  Failure of Thread tests
5606
5607 =item UNICOS
5608
5609 =item UTS
5610
5611 =item VMS
5612
5613 =item Win32
5614
5615 =item Localising a Tied Variable Leaks Memory
5616
5617 =item Self-tying of Arrays and Hashes Is Forbidden
5618
5619 =item Variable Attributes are not Currently Usable for Tieing
5620
5621 =item Building Extensions Can Fail Because Of Largefiles
5622
5623 =item The Compiler Suite Is Still Experimental
5624
5625 =item The Long Double Support is Still Experimental
5626
5627 =back
5628
5629 =item Reporting Bugs
5630
5631 =item SEE ALSO
5632
5633 =item HISTORY
5634
5635 =back
5636
5637 =head2 perl571delta - what's new for perl v5.7.1
5638
5639 =over 4
5640
5641 =item DESCRIPTION
5642
5643 =item Security Vulnerability Closed
5644
5645 =item Incompatible Changes
5646
5647 =item Core Enhancements
5648
5649 =over 4
5650
5651 =item AUTOLOAD Is Now Lvaluable
5652
5653 =item PerlIO is Now The Default
5654
5655 =item Signals Are Now Safe
5656
5657 =back
5658
5659 =item Modules and Pragmata
5660
5661 =over 4
5662
5663 =item New Modules
5664
5665 =item Updated And Improved Modules and Pragmata
5666
5667 =back
5668
5669 =item Performance Enhancements
5670
5671 =item Utility Changes
5672
5673 =item New Documentation
5674
5675 =over 4
5676
5677 =item perlclib
5678
5679 =item perliol
5680
5681 =item README.aix
5682
5683 =item README.bs2000
5684
5685 =item README.macos
5686
5687 =item README.mpeix
5688
5689 =item README.solaris
5690
5691 =item README.vos
5692
5693 =item Porting/repository.pod
5694
5695 =back
5696
5697 =item Installation and Configuration Improvements
5698
5699 =over 4
5700
5701 =item New Or Improved Platforms
5702
5703 =item Generic Improvements
5704
5705 d_cmsghdr, d_fcntl_can_lock, d_fsync, d_getitimer, d_getpagsz, d_msghdr_s,
5706 need_va_copy, d_readv, d_recvmsg, d_sendmsg, sig_size, d_sockatmark,
5707 d_strtoq, d_u32align, d_ualarm, d_usleep
5708
5709 =back
5710
5711 =item Selected Bug Fixes
5712
5713 =over 4
5714
5715 =item Platform Specific Changes and Fixes
5716
5717 =back
5718
5719 =item New or Changed Diagnostics
5720
5721 =item Changed Internals
5722
5723 =item New Tests
5724
5725 =item Known Problems
5726
5727 =over 4
5728
5729 =item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
5730
5731 =item lib/ftmp-security tests warn 'system possibly insecure'
5732
5733 =item lib/io_multihomed Fails In LP64-Configured HP-UX
5734
5735 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5736
5737 =item lib/b test 19
5738
5739 =item Linux With Sfio Fails op/misc Test 48
5740
5741 =item sigaction test 13 in VMS
5742
5743 =item sprintf tests 129 and 130
5744
5745 =item  Failure of Thread tests
5746
5747 =item Localising a Tied Variable Leaks Memory
5748
5749 =item Self-tying of Arrays and Hashes Is Forbidden
5750
5751 =item Building Extensions Can Fail Because Of Largefiles
5752
5753 =item The Compiler Suite Is Still Experimental
5754
5755 =back
5756
5757 =item Reporting Bugs
5758
5759 =item SEE ALSO
5760
5761 =item HISTORY
5762
5763 =back
5764
5765 =head2 perl570delta - what's new for perl v5.7.0
5766
5767 =over 4
5768
5769 =item DESCRIPTION
5770
5771 =item Security Vulnerability Closed
5772
5773 =item Incompatible Changes
5774
5775 =item Core Enhancements
5776
5777 =item Modules and Pragmata
5778
5779 =over 4
5780
5781 =item New Modules
5782
5783 =item Updated And Improved Modules and Pragmata
5784
5785 =back
5786
5787 =item Utility Changes
5788
5789 =item New Documentation
5790
5791 =item Performance Enhancements
5792
5793 =item Installation and Configuration Improvements
5794
5795 =over 4
5796
5797 =item Generic Improvements
5798
5799 =back
5800
5801 =item Selected Bug Fixes
5802
5803 =over 4
5804
5805 =item Platform Specific Changes and Fixes
5806
5807 =back
5808
5809 =item New or Changed Diagnostics
5810
5811 =item Changed Internals
5812
5813 =item Known Problems
5814
5815 =over 4
5816
5817 =item Unicode Support Still Far From Perfect
5818
5819 =item EBCDIC Still A Lost Platform
5820
5821 =item Building Extensions Can Fail Because Of Largefiles
5822
5823 =item ftmp-security tests warn 'system possibly insecure'
5824
5825 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5826
5827 =item Long Doubles Still Don't Work In Solaris
5828
5829 =item Linux With Sfio Fails op/misc Test 48
5830
5831 =item Storable tests fail in some platforms
5832
5833 =item Threads Are Still Experimental
5834
5835 =item The Compiler Suite Is Still Experimental
5836
5837 =back
5838
5839 =item Reporting Bugs
5840
5841 =item SEE ALSO
5842
5843 =item HISTORY
5844
5845 =back
5846
5847 =head2 perl561delta - what's new for perl v5.6.x
5848
5849 =over 4
5850
5851 =item DESCRIPTION
5852
5853 =item Summary of changes between 5.6.0 and 5.6.1
5854
5855 =over 4
5856
5857 =item Security Issues
5858
5859 =item Core bug fixes
5860
5861 C<UNIVERSAL::isa()>, Memory leaks, Numeric conversions, qw(a\\b), caller(),
5862 Bugs in regular expressions, "slurp" mode, Autovivification of symbolic
5863 references to special variables, Lexical warnings, Spurious warnings and
5864 errors, glob(), Tainting, sort(), #line directives, Subroutine prototypes,
5865 map(), Debugger, PERL5OPT, chop(), Unicode support, 64-bit support,
5866 Compiler, Lvalue subroutines, IO::Socket, File::Find, xsubpp, C<no
5867 Module;>, Tests
5868
5869 =item Core features
5870
5871 =item Configuration issues
5872
5873 =item Documentation
5874
5875 =item Bundled modules
5876
5877 B::Concise, File::Temp, Pod::LaTeX, Pod::Text::Overstrike, CGI, CPAN,
5878 Class::Struct, DB_File, Devel::Peek, File::Find, Getopt::Long, IO::Poll,
5879 IPC::Open3, Math::BigFloat, Math::Complex, Net::Ping, Opcode, Pod::Parser,
5880 Pod::Text, SDBM_File, Sys::Syslog, Tie::RefHash, Tie::SubstrHash
5881
5882 =item Platform-specific improvements
5883
5884 NCR MP-RAS, NonStop-UX
5885
5886 =back
5887
5888 =item Core Enhancements
5889
5890 =over 4
5891
5892 =item Interpreter cloning, threads, and concurrency
5893
5894 =item Lexically scoped warning categories
5895
5896 =item Unicode and UTF-8 support
5897
5898 =item Support for interpolating named characters
5899
5900 =item "our" declarations
5901
5902 =item Support for strings represented as a vector of ordinals
5903
5904 =item Improved Perl version numbering system
5905
5906 =item New syntax for declaring subroutine attributes
5907
5908 =item File and directory handles can be autovivified
5909
5910 =item open() with more than two arguments
5911
5912 =item 64-bit support
5913
5914 =item Large file support
5915
5916 =item Long doubles
5917
5918 =item "more bits"
5919
5920 =item Enhanced support for sort() subroutines
5921
5922 =item C<sort $coderef @foo> allowed
5923
5924 =item File globbing implemented internally
5925
5926 =item Support for CHECK blocks
5927
5928 =item POSIX character class syntax [: :] supported
5929
5930 =item Better pseudo-random number generator
5931
5932 =item Improved C<qw//> operator
5933
5934 =item Better worst-case behavior of hashes
5935
5936 =item pack() format 'Z' supported
5937
5938 =item pack() format modifier '!' supported
5939
5940 =item pack() and unpack() support counted strings
5941
5942 =item Comments in pack() templates
5943
5944 =item Weak references
5945
5946 =item Binary numbers supported
5947
5948 =item Lvalue subroutines
5949
5950 =item Some arrows may be omitted in calls through references
5951
5952 =item Boolean assignment operators are legal lvalues
5953
5954 =item exists() is supported on subroutine names
5955
5956 =item exists() and delete() are supported on array elements
5957
5958 =item Pseudo-hashes work better
5959
5960 =item Automatic flushing of output buffers
5961
5962 =item Better diagnostics on meaningless filehandle operations
5963
5964 =item Where possible, buffered data discarded from duped input filehandle
5965
5966 =item eof() has the same old magic as <>
5967
5968 =item binmode() can be used to set :crlf and :raw modes
5969
5970 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
5971
5972 =item system(), backticks and pipe open now reflect exec() failure
5973
5974 =item Improved diagnostics
5975
5976 =item Diagnostics follow STDERR
5977
5978 =item More consistent close-on-exec behavior
5979
5980 =item syswrite() ease-of-use
5981
5982 =item Better syntax checks on parenthesized unary operators
5983
5984 =item Bit operators support full native integer width
5985
5986 =item Improved security features
5987
5988 =item More functional bareword prototype (*)
5989
5990 =item C<require> and C<do> may be overridden
5991
5992 =item $^X variables may now have names longer than one character
5993
5994 =item New variable $^C reflects C<-c> switch
5995
5996 =item New variable $^V contains Perl version as a string
5997
5998 =item Optional Y2K warnings
5999
6000 =item Arrays now always interpolate into double-quoted strings
6001
6002 =back
6003
6004 =item Modules and Pragmata
6005
6006 =over 4
6007
6008 =item Modules
6009
6010 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6011 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6012 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6013 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6014 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6015 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6016 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6017 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6018
6019 =item Pragmata
6020
6021 =back
6022
6023 =item Utility Changes
6024
6025 =over 4
6026
6027 =item dprofpp
6028
6029 =item find2perl
6030
6031 =item h2xs
6032
6033 =item perlcc
6034
6035 =item perldoc
6036
6037 =item The Perl Debugger
6038
6039 =back
6040
6041 =item Improved Documentation
6042
6043 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6044 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6045 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6046 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6047
6048 =item Performance enhancements
6049
6050 =over 4
6051
6052 =item Simple sort() using { $a <=> $b } and the like are optimized
6053
6054 =item Optimized assignments to lexical variables
6055
6056 =item Faster subroutine calls
6057
6058 =item delete(), each(), values() and hash iteration are faster
6059
6060 =back
6061
6062 =item Installation and Configuration Improvements
6063
6064 =over 4
6065
6066 =item -Dusethreads means something different
6067
6068 =item New Configure flags
6069
6070 =item Threadedness and 64-bitness now more daring
6071
6072 =item Long Doubles
6073
6074 =item -Dusemorebits
6075
6076 =item -Duselargefiles
6077
6078 =item installusrbinperl
6079
6080 =item SOCKS support
6081
6082 =item C<-A> flag
6083
6084 =item Enhanced Installation Directories
6085
6086 =item gcc automatically tried if 'cc' does not seem to be working
6087
6088 =back
6089
6090 =item Platform specific changes
6091
6092 =over 4
6093
6094 =item Supported platforms
6095
6096 =item DOS
6097
6098 =item OS390 (OpenEdition MVS)
6099
6100 =item VMS
6101
6102 =item Win32
6103
6104 =back
6105
6106 =item Significant bug fixes
6107
6108 =over 4
6109
6110 =item <HANDLE> on empty files
6111
6112 =item C<eval '...'> improvements
6113
6114 =item All compilation errors are true errors
6115
6116 =item Implicitly closed filehandles are safer
6117
6118 =item Behavior of list slices is more consistent
6119
6120 =item C<(\$)> prototype and C<$foo{a}>
6121
6122 =item C<goto &sub> and AUTOLOAD
6123
6124 =item C<-bareword> allowed under C<use integer>
6125
6126 =item Failures in DESTROY()
6127
6128 =item Locale bugs fixed
6129
6130 =item Memory leaks
6131
6132 =item Spurious subroutine stubs after failed subroutine calls
6133
6134 =item Taint failures under C<-U>
6135
6136 =item END blocks and the C<-c> switch
6137
6138 =item Potential to leak DATA filehandles
6139
6140 =back
6141
6142 =item New or Changed Diagnostics
6143
6144 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6145 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6146 / cannot take a count, / must be followed by a, A or Z, / must be followed
6147 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6148 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6149 passed through, /%s/ should probably be written as "%s", %s() called too
6150 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6151 argument is not a HASH or ARRAY element or slice, %s argument is not a
6152 subroutine name, %s package attribute may clash with future reserved word:
6153 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6154 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6155 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6156 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6157 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6158 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6159 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6160 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6161 weaken a nonreference, Character class [:%s:] unknown, Character class
6162 syntax [%s] belongs inside character classes, Constant is not %s reference,
6163 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6164 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6165 "local" instead of "our"?), Document contains no data, entering effective
6166 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6167 output, flock() on closed filehandle %s, Global symbol "%s" requires
6168 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6169 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6170 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6171 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6172 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6173 separator character %s in attribute list, Invalid separator character %s in
6174 subroutine attribute list, leaving effective %s failed, Lvalue subs
6175 returning %s not implemented yet, Method %s not permitted, Missing
6176 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6177 No %s specified for -%c, No package name allowed for variable %s in "our",
6178 No space allowed after -%c, no UTC offset information; assuming local time
6179 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6180 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6181 around "%s" list, Possible unintended interpolation of %s in string,
6182 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6183 instead, Premature end of script headers, Repeat count in pack overflows,
6184 Repeat count in unpack overflows, realloc() of freed memory ignored,
6185 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6186 zero-length expression, switching effective %s is not implemented, This
6187 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6188 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6189 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6190 escape \\%c passed through, Unterminated attribute parameter in attribute
6191 list, Unterminated attribute list, Unterminated attribute parameter in
6192 subroutine attribute list, Unterminated subroutine attribute list, Value of
6193 CLI symbol "%s" too long, Version number must be a constant number
6194
6195 =item New tests
6196
6197 =item Incompatible Changes
6198
6199 =over 4
6200
6201 =item Perl Source Incompatibilities
6202
6203 CHECK is a new keyword, Treatment of list slices of undef has changed,
6204 Format of $English::PERL_VERSION is different, Literals of the form
6205 C<1.2.3> parse differently, Possibly changed pseudo-random number
6206 generator, Hashing function for hash keys has changed, C<undef> fails on
6207 read only values, Close-on-exec bit may be set on pipe and socket handles,
6208 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6209 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6210 Text of some diagnostic output has changed, C<%@> has been removed,
6211 Parenthesized not() behaves like a list operator, Semantics of bareword
6212 prototype C<(*)> have changed, Semantics of bit operators may have changed
6213 on 64-bit platforms, More builtins taint their results
6214
6215 =item C Source Incompatibilities
6216
6217 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6218
6219 =item Compatible C Source API Changes
6220
6221 C<PATCHLEVEL> is now C<PERL_VERSION>
6222
6223 =item Binary Incompatibilities
6224
6225 =back
6226
6227 =item Known Problems
6228
6229 =over 4
6230
6231 =item Localizing a tied hash element may leak memory
6232
6233 =item Known test failures
6234
6235 , , 
6236
6237 =item EBCDIC platforms not fully supported
6238
6239 =item UNICOS/mk CC failures during Configure run
6240
6241 =item Arrow operator and arrays
6242
6243 =item Experimental features
6244
6245 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6246 pseudo-hash data type, The Compiler suite, Internal implementation of file
6247 globbing, The DB module, The regular expression code constructs:
6248
6249 =back
6250
6251 =item Obsolete Diagnostics
6252
6253 Character class syntax [: :] is reserved for future extensions, Ill-formed
6254 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6255 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6256 to mean "${$}<digit>" is deprecated
6257
6258 =item Reporting Bugs
6259
6260 =item SEE ALSO
6261
6262 =item HISTORY
6263
6264 =back
6265
6266 =head2 perl56delta - what's new for perl v5.6.0
6267
6268 =over 4
6269
6270 =item DESCRIPTION
6271
6272 =item Core Enhancements
6273
6274 =over 4
6275
6276 =item Interpreter cloning, threads, and concurrency
6277
6278 =item Lexically scoped warning categories
6279
6280 =item Unicode and UTF-8 support
6281
6282 =item Support for interpolating named characters
6283
6284 =item "our" declarations
6285
6286 =item Support for strings represented as a vector of ordinals
6287
6288 =item Improved Perl version numbering system
6289
6290 =item New syntax for declaring subroutine attributes
6291
6292 =item File and directory handles can be autovivified
6293
6294 =item open() with more than two arguments
6295
6296 =item 64-bit support
6297
6298 =item Large file support
6299
6300 =item Long doubles
6301
6302 =item "more bits"
6303
6304 =item Enhanced support for sort() subroutines
6305
6306 =item C<sort $coderef @foo> allowed
6307
6308 =item File globbing implemented internally
6309
6310 =item Support for CHECK blocks
6311
6312 =item POSIX character class syntax [: :] supported
6313
6314 =item Better pseudo-random number generator
6315
6316 =item Improved C<qw//> operator
6317
6318 =item Better worst-case behavior of hashes
6319
6320 =item pack() format 'Z' supported
6321
6322 =item pack() format modifier '!' supported
6323
6324 =item pack() and unpack() support counted strings
6325
6326 =item Comments in pack() templates
6327
6328 =item Weak references
6329
6330 =item Binary numbers supported
6331
6332 =item Lvalue subroutines
6333
6334 =item Some arrows may be omitted in calls through references
6335
6336 =item Boolean assignment operators are legal lvalues
6337
6338 =item exists() is supported on subroutine names
6339
6340 =item exists() and delete() are supported on array elements
6341
6342 =item Pseudo-hashes work better
6343
6344 =item Automatic flushing of output buffers
6345
6346 =item Better diagnostics on meaningless filehandle operations
6347
6348 =item Where possible, buffered data discarded from duped input filehandle
6349
6350 =item eof() has the same old magic as <>
6351
6352 =item binmode() can be used to set :crlf and :raw modes
6353
6354 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
6355
6356 =item system(), backticks and pipe open now reflect exec() failure
6357
6358 =item Improved diagnostics
6359
6360 =item Diagnostics follow STDERR
6361
6362 =item More consistent close-on-exec behavior
6363
6364 =item syswrite() ease-of-use
6365
6366 =item Better syntax checks on parenthesized unary operators
6367
6368 =item Bit operators support full native integer width
6369
6370 =item Improved security features
6371
6372 =item More functional bareword prototype (*)
6373
6374 =item C<require> and C<do> may be overridden
6375
6376 =item $^X variables may now have names longer than one character
6377
6378 =item New variable $^C reflects C<-c> switch
6379
6380 =item New variable $^V contains Perl version as a string
6381
6382 =item Optional Y2K warnings
6383
6384 =item Arrays now always interpolate into double-quoted strings
6385
6386 =back
6387
6388 =item Modules and Pragmata
6389
6390 =over 4
6391
6392 =item Modules
6393
6394 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6395 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6396 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6397 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6398 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6399 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6400 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6401 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6402
6403 =item Pragmata
6404
6405 =back
6406
6407 =item Utility Changes
6408
6409 =over 4
6410
6411 =item dprofpp
6412
6413 =item find2perl
6414
6415 =item h2xs
6416
6417 =item perlcc
6418
6419 =item perldoc
6420
6421 =item The Perl Debugger
6422
6423 =back
6424
6425 =item Improved Documentation
6426
6427 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6428 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6429 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6430 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6431
6432 =item Performance enhancements
6433
6434 =over 4
6435
6436 =item Simple sort() using { $a <=> $b } and the like are optimized
6437
6438 =item Optimized assignments to lexical variables
6439
6440 =item Faster subroutine calls
6441
6442 =item delete(), each(), values() and hash iteration are faster
6443
6444 =back
6445
6446 =item Installation and Configuration Improvements
6447
6448 =over 4
6449
6450 =item -Dusethreads means something different
6451
6452 =item New Configure flags
6453
6454 =item Threadedness and 64-bitness now more daring
6455
6456 =item Long Doubles
6457
6458 =item -Dusemorebits
6459
6460 =item -Duselargefiles
6461
6462 =item installusrbinperl
6463
6464 =item SOCKS support
6465
6466 =item C<-A> flag
6467
6468 =item Enhanced Installation Directories
6469
6470 =back
6471
6472 =item Platform specific changes
6473
6474 =over 4
6475
6476 =item Supported platforms
6477
6478 =item DOS
6479
6480 =item OS390 (OpenEdition MVS)
6481
6482 =item VMS
6483
6484 =item Win32
6485
6486 =back
6487
6488 =item Significant bug fixes
6489
6490 =over 4
6491
6492 =item <HANDLE> on empty files
6493
6494 =item C<eval '...'> improvements
6495
6496 =item All compilation errors are true errors
6497
6498 =item Implicitly closed filehandles are safer
6499
6500 =item Behavior of list slices is more consistent
6501
6502 =item C<(\$)> prototype and C<$foo{a}>
6503
6504 =item C<goto &sub> and AUTOLOAD
6505
6506 =item C<-bareword> allowed under C<use integer>
6507
6508 =item Failures in DESTROY()
6509
6510 =item Locale bugs fixed
6511
6512 =item Memory leaks
6513
6514 =item Spurious subroutine stubs after failed subroutine calls
6515
6516 =item Taint failures under C<-U>
6517
6518 =item END blocks and the C<-c> switch
6519
6520 =item Potential to leak DATA filehandles
6521
6522 =back
6523
6524 =item New or Changed Diagnostics
6525
6526 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6527 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6528 / cannot take a count, / must be followed by a, A or Z, / must be followed
6529 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6530 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6531 passed through, /%s/ should probably be written as "%s", %s() called too
6532 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6533 argument is not a HASH or ARRAY element or slice, %s argument is not a
6534 subroutine name, %s package attribute may clash with future reserved word:
6535 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6536 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6537 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6538 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6539 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6540 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6541 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6542 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6543 weaken a nonreference, Character class [:%s:] unknown, Character class
6544 syntax [%s] belongs inside character classes, Constant is not %s reference,
6545 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6546 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6547 "local" instead of "our"?), Document contains no data, entering effective
6548 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6549 output, flock() on closed filehandle %s, Global symbol "%s" requires
6550 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6551 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6552 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6553 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6554 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6555 separator character %s in attribute list, Invalid separator character %s in
6556 subroutine attribute list, leaving effective %s failed, Lvalue subs
6557 returning %s not implemented yet, Method %s not permitted, Missing
6558 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6559 No %s specified for -%c, No package name allowed for variable %s in "our",
6560 No space allowed after -%c, no UTC offset information; assuming local time
6561 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6562 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6563 around "%s" list, Possible unintended interpolation of %s in string,
6564 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6565 instead, Premature end of script headers, Repeat count in pack overflows,
6566 Repeat count in unpack overflows, realloc() of freed memory ignored,
6567 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6568 zero-length expression, switching effective %s is not implemented, This
6569 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6570 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6571 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6572 escape \\%c passed through, Unterminated attribute parameter in attribute
6573 list, Unterminated attribute list, Unterminated attribute parameter in
6574 subroutine attribute list, Unterminated subroutine attribute list, Value of
6575 CLI symbol "%s" too long, Version number must be a constant number
6576
6577 =item New tests
6578
6579 =item Incompatible Changes
6580
6581 =over 4
6582
6583 =item Perl Source Incompatibilities
6584
6585 CHECK is a new keyword, Treatment of list slices of undef has changed,
6586 Format of $English::PERL_VERSION is different, Literals of the form
6587 C<1.2.3> parse differently, Possibly changed pseudo-random number
6588 generator, Hashing function for hash keys has changed, C<undef> fails on
6589 read only values, Close-on-exec bit may be set on pipe and socket handles,
6590 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6591 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6592 Text of some diagnostic output has changed, C<%@> has been removed,
6593 Parenthesized not() behaves like a list operator, Semantics of bareword
6594 prototype C<(*)> have changed, Semantics of bit operators may have changed
6595 on 64-bit platforms, More builtins taint their results
6596
6597 =item C Source Incompatibilities
6598
6599 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6600
6601 =item Compatible C Source API Changes
6602
6603 C<PATCHLEVEL> is now C<PERL_VERSION>
6604
6605 =item Binary Incompatibilities
6606
6607 =back
6608
6609 =item Known Problems
6610
6611 =over 4
6612
6613 =item Thread test failures
6614
6615 =item EBCDIC platforms not supported
6616
6617 =item In 64-bit HP-UX the lib/io_multihomed test may hang
6618
6619 =item NEXTSTEP 3.3 POSIX test failure
6620
6621 =item Tru64 (aka Digital UNIX, aka DEC OSF/1) lib/sdbm test failure with
6622 gcc
6623
6624 =item UNICOS/mk CC failures during Configure run
6625
6626 =item Arrow operator and arrays
6627
6628 =item Experimental features
6629
6630 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6631 pseudo-hash data type, The Compiler suite, Internal implementation of file
6632 globbing, The DB module, The regular expression code constructs:
6633
6634 =back
6635
6636 =item Obsolete Diagnostics
6637
6638 Character class syntax [: :] is reserved for future extensions, Ill-formed
6639 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6640 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6641 to mean "${$}<digit>" is deprecated
6642
6643 =item Reporting Bugs
6644
6645 =item SEE ALSO
6646
6647 =item HISTORY
6648
6649 =back
6650
6651 =head2 perl5005delta - what's new for perl5.005
6652
6653 =over 4
6654
6655 =item DESCRIPTION
6656
6657 =item About the new versioning system
6658
6659 =item Incompatible Changes
6660
6661 =over 4
6662
6663 =item WARNING:  This version is not binary compatible with Perl 5.004.
6664
6665 =item Default installation structure has changed
6666
6667 =item Perl Source Compatibility
6668
6669 =item C Source Compatibility
6670
6671 =item Binary Compatibility
6672
6673 =item Security fixes may affect compatibility
6674
6675 =item Relaxed new mandatory warnings introduced in 5.004
6676
6677 =item Licensing
6678
6679 =back
6680
6681 =item Core Changes
6682
6683 =over 4
6684
6685 =item Threads
6686
6687 =item Compiler
6688
6689 =item Regular Expressions
6690
6691 Many new and improved optimizations, Many bug fixes, New regular expression
6692 constructs, New operator for precompiled regular expressions, Other
6693 improvements, Incompatible changes
6694
6695 =item   Improved malloc()
6696
6697 =item Quicksort is internally implemented
6698
6699 =item Reliable signals
6700
6701 =item Reliable stack pointers
6702
6703 =item More generous treatment of carriage returns
6704
6705 =item Memory leaks
6706
6707 =item Better support for multiple interpreters
6708
6709 =item Behavior of local() on array and hash elements is now well-defined
6710
6711 =item C<%!> is transparently tied to the L<Errno> module
6712
6713 =item Pseudo-hashes are supported
6714
6715 =item C<EXPR foreach EXPR> is supported
6716
6717 =item Keywords can be globally overridden
6718
6719 =item C<$^E> is meaningful on Win32
6720
6721 =item C<foreach (1..1000000)> optimized
6722
6723 =item C<Foo::> can be used as implicitly quoted package name
6724
6725 =item C<exists $Foo::{Bar::}> tests existence of a package
6726
6727 =item Better locale support
6728
6729 =item Experimental support for 64-bit platforms
6730
6731 =item prototype() returns useful results on builtins
6732
6733 =item Extended support for exception handling
6734
6735 =item Re-blessing in DESTROY() supported for chaining DESTROY() methods
6736
6737 =item All C<printf> format conversions are handled internally
6738
6739 =item New C<INIT> keyword
6740
6741 =item New C<lock> keyword
6742
6743 =item New C<qr//> operator
6744
6745 =item C<our> is now a reserved word
6746
6747 =item Tied arrays are now fully supported
6748
6749 =item Tied handles support is better
6750
6751 =item 4th argument to substr
6752
6753 =item Negative LENGTH argument to splice
6754
6755 =item Magic lvalues are now more magical
6756
6757 =item <> now reads in records
6758
6759 =back
6760
6761 =item Supported Platforms
6762
6763 =over 4
6764
6765 =item New Platforms
6766
6767 =item Changes in existing support
6768
6769 =back
6770
6771 =item Modules and Pragmata
6772
6773 =over 4
6774
6775 =item New Modules
6776
6777 B, Data::Dumper, Dumpvalue, Errno, File::Spec, ExtUtils::Installed,
6778 ExtUtils::Packlist, Fatal, IPC::SysV, Test, Tie::Array, Tie::Handle,
6779 Thread, attrs, fields, re
6780
6781 =item Changes in existing modules
6782
6783 Benchmark, Carp, CGI, Fcntl, Math::Complex, Math::Trig, POSIX, DB_File,
6784 MakeMaker, CPAN, Cwd
6785
6786 =back
6787
6788 =item Utility Changes
6789
6790 =item Documentation Changes
6791
6792 =item New Diagnostics
6793
6794 Ambiguous call resolved as CORE::%s(), qualify as such or use &, Bad index
6795 while coercing array into hash, Bareword "%s" refers to nonexistent
6796 package, Can't call method "%s" on an undefined value, Can't check
6797 filesystem of script "%s" for nosuid, Can't coerce array into hash, Can't
6798 goto subroutine from an eval-string, Can't localize pseudo-hash element,
6799 Can't use %%! because Errno.pm is not available, Cannot find an opnumber
6800 for "%s", Character class syntax [. .] is reserved for future extensions,
6801 Character class syntax [: :] is reserved for future extensions, Character
6802 class syntax [= =] is reserved for future extensions, %s: Eval-group in
6803 insecure regular expression, %s: Eval-group not allowed, use re 'eval', %s:
6804 Eval-group not allowed at run time, Explicit blessing to '' (assuming
6805 package main), Illegal hex digit ignored, No such array field, No such
6806 field "%s" in variable %s of type %s, Out of memory during ridiculously
6807 large request, Range iterator outside integer range, Recursive inheritance
6808 detected while looking for method '%s' %s, Reference found where even-sized
6809 list expected, Undefined value assigned to typeglob, Use of reserved word
6810 "%s" is deprecated, perl: warning: Setting locale failed
6811
6812 =item Obsolete Diagnostics
6813
6814 Can't mktemp(), Can't write to temp file for B<-e>: %s, Cannot open
6815 temporary file, regexp too big
6816
6817 =item Configuration Changes
6818
6819 =item BUGS
6820
6821 =item SEE ALSO
6822
6823 =item HISTORY
6824
6825 =back
6826
6827 =head2 perl5004delta - what's new for perl5.004
6828
6829 =over 4
6830
6831 =item DESCRIPTION
6832
6833 =item Supported Environments
6834
6835 =item Core Changes
6836
6837 =over 4
6838
6839 =item List assignment to %ENV works
6840
6841 =item Change to "Can't locate Foo.pm in @INC" error
6842
6843 =item Compilation option: Binary compatibility with 5.003
6844
6845 =item $PERL5OPT environment variable
6846
6847 =item Limitations on B<-M>, B<-m>, and B<-T> options
6848
6849 =item More precise warnings
6850
6851 =item Deprecated: Inherited C<AUTOLOAD> for non-methods
6852
6853 =item Previously deprecated %OVERLOAD is no longer usable
6854
6855 =item Subroutine arguments created only when they're modified
6856
6857 =item Group vector changeable with C<$)>
6858
6859 =item Fixed parsing of $$<digit>, &$<digit>, etc.
6860
6861 =item Fixed localization of $<digit>, $&, etc.
6862
6863 =item No resetting of $. on implicit close
6864
6865 =item C<wantarray> may return undef
6866
6867 =item C<eval EXPR> determines value of EXPR in scalar context
6868
6869 =item Changes to tainting checks
6870
6871 No glob() or <*>, No spawning if tainted $CDPATH, $ENV, $BASH_ENV, No
6872 spawning if tainted $TERM doesn't look like a terminal name
6873
6874 =item New Opcode module and revised Safe module
6875
6876 =item Embedding improvements
6877
6878 =item Internal change: FileHandle class based on IO::* classes
6879
6880 =item Internal change: PerlIO abstraction interface
6881
6882 =item New and changed syntax
6883
6884 $coderef->(PARAMS)
6885
6886 =item New and changed builtin constants
6887
6888 __PACKAGE__
6889
6890 =item New and changed builtin variables
6891
6892 $^E, $^H, $^M
6893
6894 =item New and changed builtin functions
6895
6896 delete on slices, flock, printf and sprintf, keys as an lvalue, my() in
6897 Control Structures, pack() and unpack(), sysseek(), use VERSION, use Module
6898 VERSION LIST, prototype(FUNCTION), srand, $_ as Default, C<m//gc> does not
6899 reset search position on failure, C<m//x> ignores whitespace before ?*+{},
6900 nested C<sub{}> closures work now, formats work right on changing lexicals
6901
6902 =item New builtin methods
6903
6904 isa(CLASS), can(METHOD), VERSION( [NEED] )
6905
6906 =item TIEHANDLE now supported
6907
6908 TIEHANDLE classname, LIST, PRINT this, LIST, PRINTF this, LIST, READ this
6909 LIST, READLINE this, GETC this, DESTROY this
6910
6911 =item Malloc enhancements
6912
6913 -DPERL_EMERGENCY_SBRK, -DPACK_MALLOC, -DTWO_POT_OPTIMIZE
6914
6915 =item Miscellaneous efficiency enhancements
6916
6917 =back
6918
6919 =item Support for More Operating Systems
6920
6921 =over 4
6922
6923 =item Win32
6924
6925 =item Plan 9
6926
6927 =item QNX
6928
6929 =item AmigaOS
6930
6931 =back
6932
6933 =item Pragmata
6934
6935 use autouse MODULE => qw(sub1 sub2 sub3), use blib, use blib 'dir', use
6936 constant NAME => VALUE, use locale, use ops, use vmsish
6937
6938 =item Modules
6939
6940 =over 4
6941
6942 =item Required Updates
6943
6944 =item Installation directories
6945
6946 =item Module information summary
6947
6948 =item Fcntl
6949
6950 =item IO
6951
6952 =item Math::Complex
6953
6954 =item Math::Trig
6955
6956 =item DB_File
6957
6958 =item Net::Ping
6959
6960 =item Object-oriented overrides for builtin operators
6961
6962 =back
6963
6964 =item Utility Changes
6965
6966 =over 4
6967
6968 =item pod2html
6969
6970 Sends converted HTML to standard output
6971
6972 =item xsubpp
6973
6974 C<void> XSUBs now default to returning nothing
6975
6976 =back
6977
6978 =item C Language API Changes
6979
6980 C<gv_fetchmethod> and C<perl_call_sv>, C<perl_eval_pv>, Extended API for
6981 manipulating hashes
6982
6983 =item Documentation Changes
6984
6985 L<perldelta>, L<perlfaq>, L<perllocale>, L<perltoot>, L<perlapio>,
6986 L<perlmodlib>, L<perldebug>, L<perlsec>
6987
6988 =item New Diagnostics
6989
6990 "my" variable %s masks earlier declaration in same scope, %s argument is
6991 not a HASH element or slice, Allocation too large: %lx, Allocation too
6992 large, Applying %s to %s will act on scalar(%s), Attempt to free
6993 nonexistent shared string, Attempt to use reference as lvalue in substr,
6994 Bareword "%s" refers to nonexistent package, Can't redefine active sort
6995 subroutine %s, Can't use bareword ("%s") as %s ref while "strict refs" in
6996 use, Cannot resolve method `%s' overloading `%s' in package `%s', Constant
6997 subroutine %s redefined, Constant subroutine %s undefined, Copy method did
6998 not return a reference, Died, Exiting pseudo-block via %s, Identifier too
6999 long, Illegal character %s (carriage return), Illegal switch in PERL5OPT:
7000 %s, Integer overflow in hex number, Integer overflow in octal number,
7001 internal error: glob failed, Invalid conversion in %s: "%s", Invalid type
7002 in pack: '%s', Invalid type in unpack: '%s', Name "%s::%s" used only once:
7003 possible typo, Null picture in formline, Offset outside string, Out of
7004 memory!, Out of memory during request for %s, panic: frexp, Possible
7005 attempt to put comments in qw() list, Possible attempt to separate words
7006 with commas, Scalar value @%s{%s} better written as $%s{%s}, Stub found
7007 while resolving method `%s' overloading `%s' in %s, Too late for "B<-T>"
7008 option, untie attempted while %d inner references still exist, Unrecognized
7009 character %s, Unsupported function fork, Use of "$$<digit>" to mean
7010 "${$}<digit>" is deprecated, Value of %s can be "0"; test with defined(),
7011 Variable "%s" may be unavailable, Variable "%s" will not stay shared,
7012 Warning: something's wrong, Ill-formed logical name |%s| in prime_env_iter,
7013 Got an error from DosAllocMem, Malformed PERLLIB_PREFIX, PERL_SH_DIR too
7014 long, Process terminated by SIG%s
7015
7016 =item BUGS
7017
7018 =item SEE ALSO
7019
7020 =item HISTORY
7021
7022 =back
7023
7024 =head2 perlaix, README.aix - Perl version 5 on IBM Unix (AIX) systems
7025
7026 =over 4
7027
7028 =item DESCRIPTION
7029
7030 =over 4
7031
7032 =item Compiling Perl 5 on AIX
7033
7034 =item OS level
7035
7036 =item Building Dynamic Extensions on AIX
7037
7038 =item The IBM ANSI C Compiler
7039
7040 =item Using GNU's gcc for building perl
7041
7042 =item Using Large Files with Perl
7043
7044 =item Threaded Perl
7045
7046 =item 64-bit Perl
7047
7048 =item AIX 4.2 and extensions using C++ with statics
7049
7050 =back
7051
7052 =item AUTHOR
7053
7054 =item DATE
7055
7056 =back
7057
7058 =head2 perlapollo, README.apollo - Perl version 5 on Apollo DomainOS
7059
7060 =over 4
7061
7062 =item DESCRIPTION
7063
7064 =item AUTHOR
7065
7066 =back
7067
7068 =head2 perlamiga - Perl under Amiga OS
7069
7070 =over 4
7071
7072 =item SYNOPSIS
7073
7074 =back
7075
7076 =over 4
7077
7078 =item DESCRIPTION
7079
7080 =over 4
7081
7082 =item Prerequisites for Compiling Perl on AmigaOS
7083
7084 B<Unix emulation for AmigaOS: ixemul.library>, B<Version of Amiga OS>
7085
7086 =item Starting Perl programs under AmigaOS
7087
7088 =item Shortcomings of Perl under AmigaOS
7089
7090 =back
7091
7092 =item INSTALLATION
7093
7094 =item Accessing documentation
7095
7096 =over 4
7097
7098 =item Manpages for Perl on AmigaOS
7099
7100 =item Perl HTML Documentation on AmigaOS
7101
7102 =item Perl GNU Info Files on AmigaOS
7103
7104 =item Perl LaTeX Documentation on AmigaOS
7105
7106 =back
7107
7108 =item BUILDING PERL ON AMIGAOS
7109
7110 =over 4
7111
7112 =item Build Prerequisites for Perl on AmigaOS
7113
7114 =item Getting the Perl Source for AmigaOS
7115
7116 =item Making Perl on AmigaOS
7117
7118 =item Testing Perl on AmigaOS
7119
7120 =item Installing the built Perl on AmigaOS
7121
7122 =back
7123
7124 =item AUTHORS
7125
7126 =item SEE ALSO
7127
7128 =back
7129
7130 =head2 perlbeos, README.beos - Perl version 5 on BeOS
7131
7132 =over 4
7133
7134 =item DESCRIPTION
7135
7136 =over 4
7137
7138 =item General Issues with Perl on BeOS
7139
7140 =item BeOS Release-specific Notes
7141
7142 R4 x86, R4 PPC
7143
7144 =item Contact Information
7145
7146 =item Update 2002-03-02
7147
7148 =back
7149
7150 =back
7151
7152 =head2 perlbs2000, README.BS2000 - building and installing Perl for BS2000.
7153
7154 =over 4
7155
7156 =item SYNOPSIS
7157
7158 =item DESCRIPTION
7159
7160 =over 4
7161
7162 =item gzip on BS2000
7163
7164 =item bison on BS2000
7165
7166 =item Unpacking Perl Distribution on BS2000
7167
7168 =item Compiling Perl on BS2000
7169
7170 =item Testing Perl on BS2000
7171
7172 =item Installing Perl on BS2000
7173
7174 =item Using Perl in the Posix-Shell of BS2000
7175
7176 =item Using Perl in "native" BS2000
7177
7178 =item Floating point anomalies on BS2000
7179
7180 =back
7181
7182 =item AUTHORS
7183
7184 =item SEE ALSO
7185
7186 =over 4
7187
7188 =item Mailing list
7189
7190 =back
7191
7192 =item HISTORY
7193
7194 =back
7195
7196 =over 4
7197
7198 =item Name
7199
7200 =item Description
7201
7202 =item Build
7203
7204 =over 4
7205
7206 =item Tools & SDK
7207
7208 =item Make
7209
7210 =back
7211
7212 =item Acknowledgements
7213
7214 =item Author
7215
7216 =back
7217
7218 =head2 perlcygwin, README.cygwin - Perl for Cygwin
7219
7220 =over 4
7221
7222 =item SYNOPSIS
7223
7224 =item PREREQUISITES FOR COMPILING PERL ON CYGWIN
7225
7226 =over 4
7227
7228 =item Cygwin = GNU+Cygnus+Windows (Don't leave UNIX without it)
7229
7230 =item Cygwin Configuration
7231
7232 C<PATH>, I<nroff>, Permissions
7233
7234 =back
7235
7236 =item CONFIGURE PERL ON CYGWIN
7237
7238 =over 4
7239
7240 =item Stripping Perl Binaries on Cygwin
7241
7242 =item Optional Libraries for Perl on Cygwin
7243
7244 C<-lcrypt>, C<-lgdbm> (C<use GDBM_File>), C<-ldb> (C<use DB_File>),
7245 C<-lcygipc> (C<use IPC::SysV>)
7246
7247 =item Configure-time Options for Perl on Cygwin
7248
7249 C<-Uusedl>, C<-Uusemymalloc>, C<-Uuseperlio>, C<-Dusemultiplicity>,
7250 C<-Duse64bitint>, C<-Duselongdouble>, C<-Dusethreads>, C<-Duselargefiles>,
7251 C<-Dmksymlinks>
7252
7253 =item Suspicious Warnings on Cygwin
7254
7255 I<dlsym()>, Win9x and C<d_eofnblk>, Compiler/Preprocessor defines
7256
7257 =back
7258
7259 =item MAKE ON CYGWIN
7260
7261 =over 4
7262
7263 =item Warnings on Cygwin
7264
7265 =item ld2 on Cygwin
7266
7267 =back
7268
7269 =item TEST ON CYGWIN
7270
7271 =over 4
7272
7273 =item File Permissions on Cygwin
7274
7275 =item Script Portability on Cygwin
7276
7277 Pathnames, Text/Binary, F<.exe>, chown(), Miscellaneous
7278
7279 =back
7280
7281 =item INSTALL PERL ON CYGWIN
7282
7283 =item MANIFEST ON CYGWIN
7284
7285 Documentation, Build, Configure, Make, Install, Tests, Compiled Perl
7286 Source, Compiled Module Source, Perl Modules/Scripts
7287
7288 =item BUGS ON CYGWIN
7289
7290 =item AUTHORS
7291
7292 =item HISTORY
7293
7294 =back
7295
7296 =head2 perldgux - Perl under DG/UX.
7297
7298 =over 4
7299
7300 =item SYNOPSIS
7301
7302 =back
7303
7304 =over 4
7305
7306 =item DESCRIPTION
7307
7308 =item BUILDING PERL ON DG/UX
7309
7310 =over 4
7311
7312 =item Non-threaded Perl on DG/UX
7313
7314 =item Threaded Perl on DG/UX
7315
7316 =item Testing Perl on DG/UX
7317
7318 =item Installing the built perl on DG/UX
7319
7320 =back
7321
7322 =item AUTHOR
7323
7324 =item SEE ALSO
7325
7326 =back
7327
7328 =head2 perlepoc, README.epoc - Perl for EPOC
7329
7330 =over 4
7331
7332 =item SYNOPSIS
7333
7334 =item INTRODUCTION
7335
7336 =item INSTALLING PERL ON EPOC
7337
7338 =item STARTING PERL ON EPOC
7339
7340 =item STOPPING PERL ON EPOC
7341
7342 =item USING PERL ON EPOC
7343
7344 =over 4
7345
7346 =item I/O Redirection on Epoc
7347
7348 =item PATH Names on Epoc
7349
7350 =item Editors on Epoc
7351
7352 =item Features of Perl on Epoc
7353
7354 =item Restrictions of Perl on Epoc
7355
7356 =item Compiling Perl 5 on the EPOC cross compiling environment
7357
7358 =back
7359
7360 =item SUPPORT STATUS OF PERL ON EPOC
7361
7362 =item AUTHOR
7363
7364 =item LAST UPDATE
7365
7366 =back
7367
7368 =head2 perlhpux, README.hpux - Perl version 5 on Hewlett-Packard Unix
7369 (HP-UX) systems
7370
7371 =over 4
7372
7373 =item DESCRIPTION
7374
7375 =over 4
7376
7377 =item Using perl as shipped with HP-UX
7378
7379 =item Compiling Perl 5 on HP-UX
7380
7381 =item PA-RISC
7382
7383 =item PA-RISC 1.0
7384
7385 =item PA-RISC 1.1
7386
7387 =item PA-RISC 2.0
7388
7389 =item Itanium
7390
7391 =item Portability Between PA-RISC Versions
7392
7393 =item Itanium Processor Family and HP-UX
7394
7395 =item Building Dynamic Extensions on HP-UX
7396
7397 =item The HP ANSI C Compiler
7398
7399 =item Using Large Files with Perl on HP-UX
7400
7401 =item Threaded Perl on HP-UX
7402
7403 =item 64-bit Perl on HP-UX
7404
7405 =item GDBM and Threads on HP-UX
7406
7407 =item NFS filesystems and utime(2) on HP-UX
7408
7409 =item perl -P and // and HP-UX
7410
7411 =item HP-UX Kernel Parameters (maxdsiz) for Compiling Perl
7412
7413 =back
7414
7415 =item nss_delete core dump from op/pwent or op/grent
7416
7417 =item AUTHOR
7418
7419 =item DATE
7420
7421 =back
7422
7423 =head2 perlhurd, README.hurd - Perl version 5 on Hurd
7424
7425 =over 4
7426
7427 =item DESCRIPTION
7428
7429 =over 4
7430
7431 =item Known Problems with Perl on Hurd 
7432
7433 =back
7434
7435 =item AUTHOR
7436
7437 =back
7438
7439 =head2 perlmachten, README.machten - Perl version 5 on Power MachTen
7440 systems
7441
7442 =over 4
7443
7444 =item DESCRIPTION
7445
7446 =over 4
7447
7448 =item Compiling Perl 5 on MachTen
7449
7450 =item Failures during C<make test> on MachTen
7451
7452 op/lexassign.t, pragma/warnings.t
7453
7454 =item Building external modules on MachTen
7455
7456 =back
7457
7458 =item AUTHOR
7459
7460 =item DATE
7461
7462 =back
7463
7464 =head2 perlmacos, README.macos - Perl under Mac OS (Classic)
7465
7466 =over 4
7467
7468 =item SYNOPSIS
7469
7470 =item DESCRIPTION
7471
7472 =item AUTHOR
7473
7474 =item DATE
7475
7476 =back
7477
7478 =head2 perlmint, README.mint - Perl version 5 on Atari MiNT
7479
7480 =over 4
7481
7482 =item DESCRIPTION
7483
7484 =item Known problems with Perl on MiNT
7485
7486 =item AUTHOR
7487
7488 =back
7489
7490 =head2 perlmpeix, README.mpeix - Perl/iX for HP e3000 MPE
7491
7492 =over 4
7493
7494 =item SYNOPSIS
7495
7496 =item NOTE
7497
7498 =item Binary distribution from HP
7499
7500 =item What's New in Perl for MPE/iX
7501
7502 =item Welcome to Perl/iX
7503
7504 =item System Requirements for Perl/iX
7505
7506 =item How to Obtain Perl/iX
7507
7508 =item Perl/iX Distribution Contents Highlights
7509
7510 README, INSTALL, LIBSHP3K, PERL, .cpan/, lib/, man/,
7511 public_html/feedback.cgi, src/perl-5.6.0-mpe
7512
7513 =item How to Compile Perl/iX
7514
7515  4,  6
7516
7517 =item Getting Started with Perl/iX
7518
7519 =item MPE/iX Implementation Considerations
7520
7521 =item Known Perl/iX Bugs Under Investigation
7522
7523 =item Perl/iX To-Do List
7524
7525 =item Perl/iX Change History
7526
7527 =item AUTHOR
7528
7529 =item Name
7530
7531 =item Description
7532
7533 =item Build
7534
7535 =over 4
7536
7537 =item Tools & SDK
7538
7539 =item Setup
7540
7541 Buildtype.bat, SetNWBld.bat, MPKBuild.bat
7542
7543 =item Make
7544
7545 =item Interpreter
7546
7547 =item Extensions
7548
7549 =back
7550
7551 =item Install
7552
7553 =item Build new extensions
7554
7555 =item Known Issues
7556
7557 =item Acknowledgements
7558
7559 =item Authors
7560
7561 =item Date
7562
7563 =back
7564
7565 =head2 perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
7566
7567 =over 4
7568
7569 =item SYNOPSIS
7570
7571 =back
7572
7573 =over 4
7574
7575 =item DESCRIPTION
7576
7577 =over 4
7578
7579 =item Target
7580
7581 =item Other OSes
7582
7583 =item Prerequisites
7584
7585 EMX, RSX, HPFS, pdksh
7586
7587 =item Starting Perl programs under OS/2 (and DOS and...)
7588
7589 =item Starting OS/2 (and DOS) programs under Perl
7590
7591 =back
7592
7593 =item Frequently asked questions
7594
7595 =over 4
7596
7597 =item "It does not work"
7598
7599 =item I cannot run external programs
7600
7601 =item I cannot embed perl into my program, or use F<perl.dll> from my
7602 program. 
7603
7604 Is your program EMX-compiled with C<-Zmt -Zcrtdll>?, Did you use
7605 L<ExtUtils::Embed>?
7606
7607 =item C<``> and pipe-C<open> do not work under DOS.
7608
7609 =item Cannot start C<find.exe "pattern" file>
7610
7611 =back
7612
7613 =item INSTALLATION
7614
7615 =over 4
7616
7617 =item Automatic binary installation
7618
7619 C<PERL_BADLANG>, C<PERL_BADFREE>, F<Config.pm>
7620
7621 =item Manual binary installation
7622
7623 Perl VIO and PM executables (dynamically linked), Perl_ VIO executable
7624 (statically linked), Executables for Perl utilities, Main Perl library,
7625 Additional Perl modules, Tools to compile Perl modules, Manpages for Perl
7626 and utilities, Manpages for Perl modules, Source for Perl documentation,
7627 Perl manual in F<.INF> format, Pdksh
7628
7629 =item B<Warning>
7630
7631 =back
7632
7633 =item Accessing documentation
7634
7635 =over 4
7636
7637 =item OS/2 F<.INF> file
7638
7639 =item Plain text
7640
7641 =item Manpages
7642
7643 =item HTML
7644
7645 =item GNU C<info> files
7646
7647 =item F<PDF> files
7648
7649 =item C<LaTeX> docs
7650
7651 =back
7652
7653 =item BUILD
7654
7655 =over 4
7656
7657 =item The short story
7658
7659 =item Prerequisites
7660
7661 =item Getting perl source
7662
7663 =item Application of the patches
7664
7665 =item Hand-editing
7666
7667 =item Making
7668
7669 =item Testing
7670
7671 A lot of C<bad free>, Process terminated by SIGTERM/SIGINT, F<op/fs.t>,
7672 F<op/stat.t>
7673
7674 =item Installing the built perl
7675
7676 =item C<a.out>-style build
7677
7678 =back
7679
7680 =item Build FAQ
7681
7682 =over 4
7683
7684 =item Some C</> became C<\> in pdksh.
7685
7686 =item C<'errno'> - unresolved external
7687
7688 =item Problems with tr or sed
7689
7690 =item Some problem (forget which ;-)
7691
7692 =item Library ... not found
7693
7694 =item Segfault in make
7695
7696 =item op/sprintf test failure
7697
7698 =back
7699
7700 =item Specific (mis)features of OS/2 port
7701
7702 =over 4
7703
7704 =item C<setpriority>, C<getpriority>
7705
7706 =item C<system()>
7707
7708 =item C<extproc> on the first line
7709
7710 =item Additional modules:
7711
7712 =item Prebuilt methods:
7713
7714 C<File::Copy::syscopy>, C<DynaLoader::mod2fname>,  C<Cwd::current_drive()>,
7715  C<Cwd::sys_chdir(name)>,  C<Cwd::change_drive(name)>, 
7716 C<Cwd::sys_is_absolute(name)>,  C<Cwd::sys_is_rooted(name)>, 
7717 C<Cwd::sys_is_relative(name)>,  C<Cwd::sys_cwd(name)>, 
7718 C<Cwd::sys_abspath(name, dir)>,  C<Cwd::extLibpath([type])>, 
7719 C<Cwd::extLibpath_set( path [, type ] )>,
7720 C<OS2::Error(do_harderror,do_exception)>, C<OS2::Errors2Drive(drive)>,
7721 OS2::SysInfo(), OS2::BootDrive(), C<OS2::MorphPM(serve)>,
7722 C<OS2::UnMorphPM(serve)>, C<OS2::Serve_Messages(force)>,
7723 C<OS2::Process_Messages(force [, cnt])>, C<OS2::_control87(new,mask)>,
7724 OS2::get_control87(), C<OS2::set_control87_em(new=MCW_EM,mask=MCW_EM)>
7725
7726 =item Prebuilt variables:
7727
7728 $OS2::emx_rev, $OS2::emx_env, $OS2::os_ver
7729
7730 =item Misfeatures
7731
7732 =item Modifications
7733
7734 C<popen>, C<tmpnam>, C<tmpfile>, C<ctermid>, C<stat>, C<mkdir>, C<rmdir>,
7735 C<flock>
7736
7737 =item Identifying DLLs
7738
7739 =item Centralized management of resources
7740
7741 C<HAB>, C<HMQ>
7742
7743 =back
7744
7745 =item Perl flavors
7746
7747 =over 4
7748
7749 =item F<perl.exe>
7750
7751 =item F<perl_.exe>
7752
7753 =item F<perl__.exe>
7754
7755 =item F<perl___.exe>
7756
7757 =item Why strange names?
7758
7759 =item Why dynamic linking?
7760
7761 =item Why chimera build?
7762
7763 =back
7764
7765 =item ENVIRONMENT
7766
7767 =over 4
7768
7769 =item C<PERLLIB_PREFIX>
7770
7771 =item C<PERL_BADLANG>
7772
7773 =item C<PERL_BADFREE>
7774
7775 =item C<PERL_SH_DIR>
7776
7777 =item C<USE_PERL_FLOCK>
7778
7779 =item C<TMP> or C<TEMP>
7780
7781 =back
7782
7783 =item Evolution
7784
7785 =over 4
7786
7787 =item Priorities
7788
7789 =item DLL name mangling: pre 5.6.2
7790
7791 =item DLL name mangling: 5.6.2 and beyond
7792
7793 Global DLLs, specific DLLs, C<BEGINLIBPATH> and C<ENDLIBPATH>, F<.> from
7794 C<LIBPATH>
7795
7796 =item DLL forwarder generation
7797
7798 =item Threading
7799
7800 =item Calls to external programs
7801
7802 =item Memory allocation
7803
7804 =item Threads
7805
7806 C<COND_WAIT>, F<os2.c>
7807
7808 =back
7809
7810 =item BUGS
7811
7812 =back
7813
7814 =over 4
7815
7816 =item AUTHOR
7817
7818 =item SEE ALSO
7819
7820 =back
7821
7822 =head2 perlos390, README.os390 - building and installing Perl for OS/390
7823 and z/OS
7824
7825 =over 4
7826
7827 =item SYNOPSIS
7828
7829 =item DESCRIPTION
7830
7831 =over 4
7832
7833 =item Tools
7834
7835 =item Unpacking Perl distribution on OS/390
7836
7837 =item Setup and utilities for Perl on OS/390
7838
7839 =item Configure Perl on OS/390
7840
7841 =item Build, Test, Install Perl on OS/390
7842
7843 =item Build Anomalies with Perl on OS/390
7844
7845 =item Testing Anomalies with Perl on OS/390
7846
7847 =item Installation Anomalies with Perl on OS/390
7848
7849 =item Usage Hints for Perl on OS/390
7850
7851 =item Floating Point Anomalies with Perl on OS/390
7852
7853 =item Modules and Extensions for Perl on OS/390
7854
7855 =back
7856
7857 =item AUTHORS
7858
7859 =item SEE ALSO
7860
7861 =over 4
7862
7863 =item Mailing list for Perl on OS/390
7864
7865 =back
7866
7867 =item HISTORY
7868
7869 =back
7870
7871 =head2 perlqnx, README.qnx - Perl version 5 on QNX
7872
7873 =over 4
7874
7875 =item DESCRIPTION
7876
7877 =over 4
7878
7879 =item Required Software for Compiling Perl on QNX4
7880
7881 /bin/sh, ar, nm, cpp, make
7882
7883 =item Outstanding Issues with Perl on QNX4
7884
7885 =item QNX auxiliary files
7886
7887 qnx/ar, qnx/cpp
7888
7889 =item Outstanding issues with perl under QNX6
7890
7891 =back
7892
7893 =item AUTHOR
7894
7895 =back
7896
7897 =head2 perlplan9 - Plan 9-specific documentation for Perl
7898
7899 =over 4
7900
7901 =item DESCRIPTION
7902
7903 =over 4
7904
7905 =item Invoking Perl
7906
7907 =item What's in Plan 9 Perl
7908
7909 =item What's not in Plan 9 Perl
7910
7911 =item Perl5 Functions not currently supported in Plan 9 Perl
7912
7913 =item Signals in Plan 9 Perl
7914
7915 =back
7916
7917 =item COMPILING AND INSTALLING PERL ON PLAN 9
7918
7919 =over 4
7920
7921 =item Installing Perl Documentation on Plan 9
7922
7923 =back
7924
7925 =item BUGS
7926
7927 =item Revision date
7928
7929 =item AUTHOR
7930
7931 =back
7932
7933 =head2 perlsolaris, README.solaris - Perl version 5 on Solaris systems
7934
7935 =over 4
7936
7937 =item DESCRIPTION
7938
7939 =over 4
7940
7941 =item Solaris Version Numbers.
7942
7943 =back
7944
7945 =item RESOURCES
7946
7947 Solaris FAQ, Precompiled Binaries, Solaris Documentation
7948
7949 =item SETTING UP
7950
7951 =over 4
7952
7953 =item File Extraction Problems on Solaris.
7954
7955 =item Compiler and Related Tools on Solaris.
7956
7957 =item Environment for Compiling Perl on Solaris
7958
7959 =back
7960
7961 =item RUN CONFIGURE.
7962
7963 =over 4
7964
7965 =item 64-bit Issues with Perl on Solaris.
7966
7967 =item Threads in Perl on Solaris.
7968
7969 =item Malloc Issues with Perl on Solaris.
7970
7971 =back
7972
7973 =item MAKE PROBLEMS.
7974
7975 Dynamic Loading Problems With GNU as and GNU ld, ld.so.1: ./perl: fatal:
7976 relocation error:, dlopen: stub interception failed, #error "No
7977 DATAMODEL_NATIVE specified", sh: ar: not found
7978
7979 =item MAKE TEST
7980
7981 =over 4
7982
7983 =item op/stat.t test 4 in Solaris
7984
7985 =item nss_delete core dump from op/pwent or op/grent
7986
7987 =back
7988
7989 =item PREBUILT BINARIES OF PERL FOR SOLARIS.
7990
7991 =item RUNTIME ISSUES FOR PERL ON SOLARIS.
7992
7993 =over 4
7994
7995 =item Limits on Numbers of Open Files on Solaris.
7996
7997 =back
7998
7999 =item SOLARIS-SPECIFIC MODULES.
8000
8001 =item SOLARIS-SPECIFIC PROBLEMS WITH MODULES.
8002
8003 =over 4
8004
8005 =item Proc::ProcessTable on Solaris
8006
8007 =item BSD::Resource on Solaris
8008
8009 =item Net::SSLeay on Solaris
8010
8011 =back
8012
8013 =item AUTHOR
8014
8015 =item LAST MODIFIED
8016
8017 =back
8018
8019 =head2 perltru64, README.tru64 - Perl version 5 on Tru64 (formerly known as
8020 Digital UNIX formerly known as DEC OSF/1) systems
8021
8022 =over 4
8023
8024 =item DESCRIPTION
8025
8026 =over 4
8027
8028 =item Compiling Perl 5 on Tru64
8029
8030 =item Using Large Files with Perl on Tru64
8031
8032 =item Threaded Perl on Tru64
8033
8034 =item Long Doubles on Tru64
8035
8036 =item 64-bit Perl on Tru64
8037
8038 =item Warnings about floating-point overflow when compiling Perl on Tru64
8039
8040 =back
8041
8042 =item Testing Perl on Tru64
8043
8044 =item AUTHOR
8045
8046 =back
8047
8048 =head2 perluts - Perl under UTS
8049
8050 =over 4
8051
8052 =item SYNOPSIS
8053
8054 =item DESCRIPTION
8055
8056 =item BUILDING PERL ON UTS
8057
8058 =item Installing the built perl on UTS
8059
8060 =item AUTHOR
8061
8062 =back
8063
8064 =head2 perlvmesa, README.vmesa - building and installing Perl for VM/ESA.
8065
8066 =over 4
8067
8068 =item SYNOPSIS
8069
8070 =item DESCRIPTION
8071
8072 =over 4
8073
8074 =item Unpacking Perl Distribution on VM/ESA
8075
8076 =item Setup Perl and utilities on VM/ESA
8077
8078 =item Configure Perl on VM/ESA
8079
8080 =item Testing Anomalies of Perl on VM/ESA
8081
8082 =item Usage Hints for Perl on VM/ESA
8083
8084 =back
8085
8086 =item AUTHORS
8087
8088 =item SEE ALSO
8089
8090 =over 4
8091
8092 =item Mailing list for Perl on VM/ESA
8093
8094 =back
8095
8096 =back
8097
8098 =head2 perlvms - VMS-specific documentation for Perl
8099
8100 =over 4
8101
8102 =item DESCRIPTION
8103
8104 =item Installation
8105
8106 =item Organization of Perl Images
8107
8108 =over 4
8109
8110 =item Core Images
8111
8112 =item Perl Extensions
8113
8114 =item Installing static extensions
8115
8116 =item Installing dynamic extensions
8117
8118 =back
8119
8120 =item File specifications
8121
8122 =over 4
8123
8124 =item Syntax
8125
8126 =item Wildcard expansion
8127
8128 =item Pipes
8129
8130 =back
8131
8132 =item PERL5LIB and PERLLIB
8133
8134 =item Command line
8135
8136 =over 4
8137
8138 =item I/O redirection and backgrounding
8139
8140 =item Command line switches
8141
8142 -i, -S, -u
8143
8144 =back
8145
8146 =item Perl functions
8147
8148 File tests, backticks, binmode FILEHANDLE, crypt PLAINTEXT, USER, dump,
8149 exec LIST, fork, getpwent, getpwnam, getpwuid, gmtime, kill, qx//, select
8150 (system call), stat EXPR, system LIST, time, times, unlink LIST, utime
8151 LIST, waitpid PID,FLAGS
8152
8153 =item Perl variables
8154
8155 %ENV, CRTL_ENV, CLISYM_[LOCAL], Any other string, $!, $^E, $?, $|
8156
8157 =item Standard modules with VMS-specific differences
8158
8159 =over 4
8160
8161 =item SDBM_File
8162
8163 =back
8164
8165 =item Revision date
8166
8167 =item AUTHOR
8168
8169 =back
8170
8171 =head2 perlvos, README.vos - Perl for Stratus VOS
8172
8173 =over 4
8174
8175 =item SYNOPSIS
8176
8177 =over 4
8178
8179 =item Multiple methods to build perl for VOS
8180
8181 =item Stratus POSIX Support
8182
8183 =back
8184
8185 =item INSTALLING PERL IN VOS
8186
8187 =over 4
8188
8189 =item Compiling Perl 5 on VOS
8190
8191 =item Installing Perl 5 on VOS
8192
8193 =back
8194
8195 =item USING PERL IN VOS
8196
8197 =over 4
8198
8199 =item Unimplemented Features of Perl on VOS
8200
8201 =item Restrictions of Perl on VOS
8202
8203 =back
8204
8205 =item SUPPORT STATUS
8206
8207 =item AUTHOR
8208
8209 =item LAST UPDATE
8210
8211 =back
8212
8213 =head2 perlwin32 - Perl under Win32
8214
8215 =over 4
8216
8217 =item SYNOPSIS
8218
8219 =item DESCRIPTION
8220
8221 =over 4
8222
8223 =item Setting Up Perl on Win32
8224
8225 Make, Command Shell, Borland C++, Microsoft Visual C++, Mingw32 with GCC
8226
8227 =item Building
8228
8229 =item Testing Perl on Win32
8230
8231 =item Installation of Perl on Win32
8232
8233 =item Usage Hints for Perl on Win32
8234
8235 Environment Variables, File Globbing, Using perl from the command line,
8236 Building Extensions, Command-line Wildcard Expansion, Win32 Specific
8237 Extensions, Running Perl Scripts, Miscellaneous Things
8238
8239 =back
8240
8241 =item BUGS AND CAVEATS
8242
8243 =item AUTHORS
8244
8245 Gary Ng E<lt>71564.1743@CompuServe.COME<gt>, Gurusamy Sarathy
8246 E<lt>gsar@activestate.comE<gt>, Nick Ing-Simmons
8247 E<lt>nick@ing-simmons.netE<gt>
8248
8249 =item SEE ALSO
8250
8251 =item HISTORY
8252
8253 =back
8254
8255 =head1 PRAGMA DOCUMENTATION
8256
8257 =head2 attrs - set/get attributes of a subroutine (deprecated)
8258
8259 =over 4
8260
8261 =item SYNOPSIS
8262
8263 =item DESCRIPTION
8264
8265 method, locked
8266
8267 =back
8268
8269 =head2 re - Perl pragma to alter regular expression behaviour
8270
8271 =over 4
8272
8273 =item SYNOPSIS
8274
8275 =item DESCRIPTION
8276
8277 =back
8278
8279 =head2 threadshared::shared, threads::shared - Perl extension for sharing
8280 data structures between threads
8281
8282 =over 4
8283
8284 =item SYNOPSIS
8285
8286 =item DESCRIPTION
8287
8288 =item EXPORT
8289
8290 =item FUNCTIONS
8291
8292 share VARIABLE, lock VARIABLE, unlock VARIABLE, cond_wait VARIABLE,
8293 cond_signal VARIABLE, cond_broadcast VARIABLE
8294
8295 =item NOTES
8296
8297 =item BUGS
8298
8299 =item AUTHOR
8300
8301 =item SEE ALSO
8302
8303 =back
8304
8305 =head2 threads - Perl extension allowing use of interpreter based threads
8306 from perl
8307
8308 =over 4
8309
8310 =item SYNOPSIS
8311
8312 =item DESCRIPTION
8313
8314 $thread = threads->create(function, LIST), $thread->join, $thread->detach,
8315 threads->self, $thread->tid
8316
8317 =item TODO
8318
8319 Fix so the return value is returned when you join, Add join_all, Fix memory
8320 leaks!
8321
8322 =item AUTHOR and COPYRIGHT
8323
8324 =item BUGS
8325
8326 creating a thread from within a thread is unsafe under win32,
8327 PERL_OLD_SIGNALS are not threadsafe, will not be
8328
8329 =item SEE ALSO
8330
8331 =back
8332
8333 =head2 attributes - get/set subroutine or variable attributes
8334
8335 =over 4
8336
8337 =item SYNOPSIS
8338
8339 =item DESCRIPTION
8340
8341 =over 4
8342
8343 =item Built-in Attributes
8344
8345 locked, method, lvalue
8346
8347 =item Available Subroutines
8348
8349 get, reftype
8350
8351 =item Package-specific Attribute Handling
8352
8353 FETCH_I<type>_ATTRIBUTES, MODIFY_I<type>_ATTRIBUTES
8354
8355 =item Syntax of Attribute Lists
8356
8357 =back
8358
8359 =item EXPORTS
8360
8361 =over 4
8362
8363 =item Default exports
8364
8365 =item Available exports
8366
8367 =item Export tags defined
8368
8369 =back
8370
8371 =item EXAMPLES
8372
8373 =item SEE ALSO
8374
8375 =back
8376
8377 =head2 attrs - set/get attributes of a subroutine (deprecated)
8378
8379 =over 4
8380
8381 =item SYNOPSIS
8382
8383 =item DESCRIPTION
8384
8385 method, locked
8386
8387 =back
8388
8389 =head2 autouse - postpone load of modules until a function is used
8390
8391 =over 4
8392
8393 =item SYNOPSIS
8394
8395 =item DESCRIPTION
8396
8397 =item WARNING
8398
8399 =item AUTHOR
8400
8401 =item SEE ALSO
8402
8403 =back
8404
8405 =head2 base - Establish IS-A relationship with base class at compile time
8406
8407 =over 4
8408
8409 =item SYNOPSIS
8410
8411 =item DESCRIPTION
8412
8413 =item HISTORY
8414
8415 =item SEE ALSO
8416
8417 =back
8418
8419 =head2 blib - Use MakeMaker's uninstalled version of a package
8420
8421 =over 4
8422
8423 =item SYNOPSIS
8424
8425 =item DESCRIPTION
8426
8427 =item BUGS
8428
8429 =item AUTHOR
8430
8431 =back
8432
8433 =head2 bytes - Perl pragma to force byte semantics rather than character
8434 semantics
8435
8436 =over 4
8437
8438 =item SYNOPSIS
8439
8440 =item DESCRIPTION
8441
8442 =item SEE ALSO
8443
8444 =back
8445
8446 =head2 charnames - define character names for C<\N{named}> string literal
8447 escapes.
8448
8449 =over 4
8450
8451 =item SYNOPSIS
8452
8453 =item DESCRIPTION
8454
8455 =item CUSTOM TRANSLATORS
8456
8457 =item charnames::viacode(code)
8458
8459 =item charnames::vianame(code)
8460
8461 =item ILLEGAL CHARACTERS
8462
8463 =item BUGS
8464
8465 =back
8466
8467 =head2 constant - Perl pragma to declare constants
8468
8469 =over 4
8470
8471 =item SYNOPSIS
8472
8473 =item DESCRIPTION
8474
8475 =item NOTES
8476
8477 =over 4
8478
8479 =item List constants
8480
8481 =item Defining multiple constants at once
8482
8483 =item Magic constants
8484
8485 =back
8486
8487 =item TECHNICAL NOTES
8488
8489 =item BUGS
8490
8491 =item AUTHOR
8492
8493 =item COPYRIGHT
8494
8495 =back
8496
8497 =head2 diagnostics - Perl compiler pragma to force verbose warning
8498 diagnostics
8499
8500 =over 4
8501
8502 =item SYNOPSIS
8503
8504 =item DESCRIPTION
8505
8506 =over 4
8507
8508 =item The C<diagnostics> Pragma
8509
8510 =item The I<splain> Program
8511
8512 =back
8513
8514 =item EXAMPLES
8515
8516 =item INTERNALS
8517
8518 =item BUGS
8519
8520 =item AUTHOR
8521
8522 =back
8523
8524 =head2 encoding - pragma to control the conversion of legacy data into
8525 Unicode
8526
8527 =over 4
8528
8529 =item SYNOPSIS
8530
8531 =item DESCRIPTION
8532
8533 =item KNOWN PROBLEMS
8534
8535 =item SEE ALSO
8536
8537 =back
8538
8539 =head2 fields - compile-time class fields
8540
8541 =over 4
8542
8543 =item SYNOPSIS
8544
8545 =item DESCRIPTION
8546
8547 new, phash
8548
8549 =item SEE ALSO
8550
8551 =back
8552
8553 =head2 filetest - Perl pragma to control the filetest permission operators
8554
8555 =over 4
8556
8557 =item SYNOPSIS
8558
8559 =item DESCRIPTION
8560
8561 =over 4
8562
8563 =item subpragma access
8564
8565 =back
8566
8567 =back
8568
8569 =head2 if - C<use> a Perl module if a condition holds
8570
8571 =over 4
8572
8573 =item SYNOPSIS
8574
8575 =item DESCRIPTION
8576
8577 =item BUGS
8578
8579 =item AUTHOR
8580
8581 =back
8582
8583 =head2 integer - Perl pragma to use integer arithmetic instead of floating
8584 point
8585
8586 =over 4
8587
8588 =item SYNOPSIS
8589
8590 =item DESCRIPTION
8591
8592 =back
8593
8594 =head2 less - perl pragma to request less of something from the compiler
8595
8596 =over 4
8597
8598 =item SYNOPSIS
8599
8600 =item DESCRIPTION
8601
8602 =back
8603
8604 =head2 lib - manipulate @INC at compile time
8605
8606 =over 4
8607
8608 =item SYNOPSIS
8609
8610 =item DESCRIPTION
8611
8612 =over 4
8613
8614 =item Adding directories to @INC
8615
8616 =item Deleting directories from @INC
8617
8618 =item Restoring original @INC
8619
8620 =back
8621
8622 =item CAVEATS
8623
8624 =item SEE ALSO
8625
8626 =item AUTHOR
8627
8628 =back
8629
8630 =head2 locale - Perl pragma to use and avoid POSIX locales for built-in
8631 operations
8632
8633 =over 4
8634
8635 =item SYNOPSIS
8636
8637 =item DESCRIPTION
8638
8639 =back
8640
8641 =head2 open - perl pragma to set default disciplines for input and output
8642
8643 =over 4
8644
8645 =item SYNOPSIS
8646
8647 =item DESCRIPTION
8648
8649 =item NONPERLIO FUNCTIONALITY
8650
8651 =item IMPLEMENTATION DETAILS
8652
8653 =item SEE ALSO
8654
8655 =back
8656
8657 =head2 ops - Perl pragma to restrict unsafe operations when compiling
8658
8659 =over 4
8660
8661 =item SYNOPSIS  
8662
8663 =item DESCRIPTION
8664
8665 =item SEE ALSO
8666
8667 =back
8668
8669 =head2 overload - Package for overloading perl operations
8670
8671 =over 4
8672
8673 =item SYNOPSIS
8674
8675 =item DESCRIPTION
8676
8677 =over 4
8678
8679 =item Declaration of overloaded functions
8680
8681 =item Calling Conventions for Binary Operations
8682
8683 FALSE, TRUE, C<undef>
8684
8685 =item Calling Conventions for Unary Operations
8686
8687 =item Calling Conventions for Mutators
8688
8689 C<++> and C<-->, C<x=> and other assignment versions
8690
8691 =item Overloadable Operations
8692
8693 I<Arithmetic operations>, I<Comparison operations>, I<Bit operations>,
8694 I<Increment and decrement>, I<Transcendental functions>, I<Boolean, string
8695 and numeric conversion>, I<Iteration>, I<Dereferencing>, I<Special>
8696
8697 =item Inheritance and overloading
8698
8699 Strings as values of C<use overload> directive, Overloading of an operation
8700 is inherited by derived classes
8701
8702 =back
8703
8704 =item SPECIAL SYMBOLS FOR C<use overload>
8705
8706 =over 4
8707
8708 =item Last Resort
8709
8710 =item Fallback
8711
8712 C<undef>, TRUE, defined, but FALSE
8713
8714 =item Copy Constructor
8715
8716 B<Example>
8717
8718 =back
8719
8720 =item MAGIC AUTOGENERATION
8721
8722 I<Assignment forms of arithmetic operations>, I<Conversion operations>,
8723 I<Increment and decrement>, C<abs($a)>, I<Unary minus>, I<Negation>,
8724 I<Concatenation>, I<Comparison operations>, I<Iterator>, I<Dereferencing>,
8725 I<Copy operator>
8726
8727 =item Losing overloading
8728
8729 =item Run-time Overloading
8730
8731 =item Public functions
8732
8733 overload::StrVal(arg), overload::Overloaded(arg), overload::Method(obj,op)
8734
8735 =item Overloading constants
8736
8737 integer, float, binary, q, qr
8738
8739 =item IMPLEMENTATION
8740
8741 =item Metaphor clash
8742
8743 =item Cookbook
8744
8745 =over 4
8746
8747 =item Two-face scalars
8748
8749 =item Two-face references
8750
8751 =item Symbolic calculator
8752
8753 =item I<Really> symbolic calculator
8754
8755 =back
8756
8757 =item AUTHOR
8758
8759 =item DIAGNOSTICS
8760
8761 Odd number of arguments for overload::constant, `%s' is not an overloadable
8762 type, `%s' is not a code reference
8763
8764 =item BUGS
8765
8766 =back
8767
8768 =head2 re - Perl pragma to alter regular expression behaviour
8769
8770 =over 4
8771
8772 =item SYNOPSIS
8773
8774 =item DESCRIPTION
8775
8776 =back
8777
8778 =head2 sigtrap - Perl pragma to enable simple signal handling
8779
8780 =over 4
8781
8782 =item SYNOPSIS
8783
8784 =item DESCRIPTION
8785
8786 =item OPTIONS
8787
8788 =over 4
8789
8790 =item SIGNAL HANDLERS
8791
8792 B<stack-trace>, B<die>, B<handler> I<your-handler>
8793
8794 =item SIGNAL LISTS
8795
8796 B<normal-signals>, B<error-signals>, B<old-interface-signals>
8797
8798 =item OTHER
8799
8800 B<untrapped>, B<any>, I<signal>, I<number>
8801
8802 =back
8803
8804 =item EXAMPLES
8805
8806 =back
8807
8808 =head2 sort - perl pragma to control sort() behaviour
8809
8810 =over 4
8811
8812 =item SYNOPSIS
8813
8814 =item DESCRIPTION
8815
8816 =back
8817
8818 =head2 strict - Perl pragma to restrict unsafe constructs
8819
8820 =over 4
8821
8822 =item SYNOPSIS
8823
8824 =item DESCRIPTION
8825
8826 C<strict refs>, C<strict vars>, C<strict subs>
8827
8828 =back
8829
8830 =head2 subs - Perl pragma to predeclare sub names
8831
8832 =over 4
8833
8834 =item SYNOPSIS
8835
8836 =item DESCRIPTION
8837
8838 =back
8839
8840 =head2 threads - Perl extension allowing use of interpreter based threads
8841 from perl
8842
8843 =over 4
8844
8845 =item SYNOPSIS
8846
8847 =item DESCRIPTION
8848
8849 $thread = threads->create(function, LIST), $thread->join, $thread->detach,
8850 threads->self, $thread->tid
8851
8852 =item TODO
8853
8854 Fix so the return value is returned when you join, Add join_all, Fix memory
8855 leaks!
8856
8857 =item AUTHOR and COPYRIGHT
8858
8859 =item BUGS
8860
8861 creating a thread from within a thread is unsafe under win32,
8862 PERL_OLD_SIGNALS are not threadsafe, will not be
8863
8864 =item SEE ALSO
8865
8866 =back
8867
8868 =head2 threadshared, threads::shared - Perl extension for sharing data
8869 structures between threads
8870
8871 =over 4
8872
8873 =item SYNOPSIS
8874
8875 =item DESCRIPTION
8876
8877 =item EXPORT
8878
8879 =item FUNCTIONS
8880
8881 share VARIABLE, lock VARIABLE, unlock VARIABLE, cond_wait VARIABLE,
8882 cond_signal VARIABLE, cond_broadcast VARIABLE
8883
8884 =item NOTES
8885
8886 =item BUGS
8887
8888 =item AUTHOR
8889
8890 =item SEE ALSO
8891
8892 =back
8893
8894 =head2 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source
8895 code
8896
8897 =over 4
8898
8899 =item SYNOPSIS
8900
8901 =item DESCRIPTION
8902
8903 =over 4
8904
8905 =item Utility functions
8906
8907 $num_octets = utf8::upgrade($string);, utf8::downgrade($string[, CHECK]),
8908 utf8::encode($string)
8909
8910 =back
8911
8912 =item SEE ALSO
8913
8914 =back
8915
8916 =head2 vars - Perl pragma to predeclare global variable names (obsolete)
8917
8918 =over 4
8919
8920 =item SYNOPSIS
8921
8922 =item DESCRIPTION
8923
8924 =back
8925
8926 =head2 vmsish - Perl pragma to control VMS-specific language features
8927
8928 =over 4
8929
8930 =item SYNOPSIS
8931
8932 =item DESCRIPTION
8933
8934 C<vmsish status>, C<vmsish exit>, C<vmsish time>, C<vmsish hushed>
8935
8936 =back
8937
8938 =head2 warnings - Perl pragma to control optional warnings
8939
8940 =over 4
8941
8942 =item SYNOPSIS
8943
8944 =item DESCRIPTION
8945
8946 use warnings::register, warnings::enabled(), warnings::enabled($category),
8947 warnings::enabled($object), warnings::warn($message),
8948 warnings::warn($category, $message), warnings::warn($object, $message),
8949 warnings::warnif($message), warnings::warnif($category, $message),
8950 warnings::warnif($object, $message)
8951
8952 =back
8953
8954 =head2 warnings::register - warnings import function
8955
8956 =over 4
8957
8958 =item SYNOPSIS
8959
8960 =item DESCRIPTION
8961
8962 =back
8963
8964 =head1 MODULE DOCUMENTATION
8965
8966 =head2 AnyDBM_File - provide framework for multiple DBMs
8967
8968 =over 4
8969
8970 =item SYNOPSIS
8971
8972 =item DESCRIPTION
8973
8974 =over 4
8975
8976 =item DBM Comparisons
8977
8978 [0], [1], [2], [3]
8979
8980 =back
8981
8982 =item SEE ALSO
8983
8984 =back
8985
8986 =head2 Attribute::Handlers - Simpler definition of attribute handlers
8987
8988 =over 4
8989
8990 =item VERSION
8991
8992 =item SYNOPSIS
8993
8994 =item DESCRIPTION
8995
8996 [0], [1], [2], [3], [4], [5]
8997
8998 =over 4
8999
9000 =item Typed lexicals
9001
9002 =item Type-specific attribute handlers
9003
9004 =item Non-interpretive attribute handlers
9005
9006 =item Phase-specific attribute handlers
9007
9008 =item Attributes as C<tie> interfaces
9009
9010 =back
9011
9012 =item EXAMPLES
9013
9014 =item DIAGNOSTICS
9015
9016 C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
9017 attributes>, C<Declaration of %s attribute in package %s may clash with
9018 future reserved word>, C<Can't have two ATTR specifiers on one subroutine>,
9019 C<Can't autotie a %s>, C<Internal error: %s symbol went missing>, C<Won't
9020 be able to apply END handler>
9021
9022 =item AUTHOR
9023
9024 =item BUGS
9025
9026 =item COPYRIGHT
9027
9028 =back
9029
9030 =head2 AutoLoader - load subroutines only on demand
9031
9032 =over 4
9033
9034 =item SYNOPSIS
9035
9036 =item DESCRIPTION
9037
9038 =over 4
9039
9040 =item Subroutine Stubs
9041
9042 =item Using B<AutoLoader>'s AUTOLOAD Subroutine
9043
9044 =item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
9045
9046 =item Package Lexicals
9047
9048 =item Not Using AutoLoader
9049
9050 =item B<AutoLoader> vs. B<SelfLoader>
9051
9052 =back
9053
9054 =item CAVEATS
9055
9056 =item SEE ALSO
9057
9058 =back
9059
9060 =head2 AutoSplit - split a package for autoloading
9061
9062 =over 4
9063
9064 =item SYNOPSIS
9065
9066 =item DESCRIPTION
9067
9068 $keep, $check, $modtime
9069
9070 =over 4
9071
9072 =item Multiple packages
9073
9074 =back
9075
9076 =item DIAGNOSTICS
9077
9078 =back
9079
9080 =head2 B - The Perl Compiler
9081
9082 =over 4
9083
9084 =item SYNOPSIS
9085
9086 =item DESCRIPTION
9087
9088 =item OVERVIEW OF CLASSES
9089
9090 =over 4
9091
9092 =item SV-RELATED CLASSES
9093
9094 =item B::SV METHODS
9095
9096 REFCNT, FLAGS
9097
9098 =item B::IV METHODS
9099
9100 IV, IVX, UVX, int_value, needs64bits, packiv
9101
9102 =item B::NV METHODS
9103
9104 NV, NVX
9105
9106 =item B::RV METHODS
9107
9108 RV
9109
9110 =item B::PV METHODS
9111
9112 PV, RV, PVX
9113
9114 =item B::PVMG METHODS
9115
9116 MAGIC, SvSTASH
9117
9118 =item B::MAGIC METHODS
9119
9120 MOREMAGIC, precomp, PRIVATE, TYPE, FLAGS, OBJ, PTR, REGEX
9121
9122 =item B::PVLV METHODS
9123
9124 TARGOFF, TARGLEN, TYPE, TARG
9125
9126 =item B::BM METHODS
9127
9128 USEFUL, PREVIOUS, RARE, TABLE
9129
9130 =item B::GV METHODS
9131
9132 is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
9133 LINE, FILE, FILEGV, GvREFCNT, FLAGS
9134
9135 =item B::IO METHODS
9136
9137 LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
9138 BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS, IsSTD
9139
9140 =item B::AV METHODS
9141
9142 FILL, MAX, OFF, ARRAY, AvFLAGS
9143
9144 =item B::CV METHODS
9145
9146 STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, XSUB, XSUBANY,
9147 CvFLAGS, const_sv
9148
9149 =item B::HV METHODS
9150
9151 FILL, MAX, KEYS, RITER, NAME, PMROOT, ARRAY
9152
9153 =item OP-RELATED CLASSES
9154
9155 =item B::OP METHODS
9156
9157 next, sibling, name, ppaddr, desc, targ, type, seq, flags, private
9158
9159 =item B::UNOP METHOD
9160
9161 first
9162
9163 =item B::BINOP METHOD
9164
9165 last
9166
9167 =item B::LOGOP METHOD
9168
9169 other
9170
9171 =item B::LISTOP METHOD
9172
9173 children
9174
9175 =item B::PMOP METHODS
9176
9177 pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, pmdynflags,
9178 pmpermflags, precomp, pmoffet
9179
9180 =item B::SVOP METHOD
9181
9182 sv, gv
9183
9184 =item B::PADOP METHOD
9185
9186 padix
9187
9188 =item B::PVOP METHOD
9189
9190 pv
9191
9192 =item B::LOOP METHODS
9193
9194 redoop, nextop, lastop
9195
9196 =item B::COP METHODS
9197
9198 label, stash, file, cop_seq, arybase, line
9199
9200 =back
9201
9202 =item FUNCTIONS EXPORTED BY C<B>
9203
9204 main_cv, init_av, begin_av, end_av, main_root, main_start, comppadlist,
9205 regex_padav, sv_undef, sv_yes, sv_no, amagic_generation, walkoptree(OP,
9206 METHOD), walkoptree_debug(DEBUG), walksymtable(SYMREF, METHOD, RECURSE,
9207 PREFIX), svref_2object(SV), ppname(OPNUM), hash(STR), cast_I32(I), minus_c,
9208 cstring(STR), class(OBJ), threadsv_names
9209
9210 =item AUTHOR
9211
9212 =back
9213
9214 =head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
9215 bytecode
9216
9217 =over 4
9218
9219 =item SYNOPSIS
9220
9221 =item DESCRIPTION
9222
9223 %insn_data, @insn_name, @optype, @specialsv_name
9224
9225 =item AUTHOR
9226
9227 =back
9228
9229 =head2 B::Assembler - Assemble Perl bytecode
9230
9231 =over 4
9232
9233 =item SYNOPSIS
9234
9235 =item DESCRIPTION
9236
9237 =item AUTHORS
9238
9239 =back
9240
9241 =head2 B::Bblock - Walk basic blocks
9242
9243 =over 4
9244
9245 =item SYNOPSIS
9246
9247 =item DESCRIPTION
9248
9249 =over 4
9250
9251 =item Functions
9252
9253 B<find_leaders>
9254
9255 =back
9256
9257 =item AUTHOR
9258
9259 =back
9260
9261 =head2 B::Bytecode - Perl compiler's bytecode backend
9262
9263 =over 4
9264
9265 =item SYNOPSIS
9266
9267 =item DESCRIPTION
9268
9269 =item OPTIONS
9270
9271 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
9272 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
9273 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
9274
9275 =item EXAMPLES
9276
9277 =item BUGS
9278
9279 =item AUTHORS
9280
9281 =back
9282
9283 =head2 B::C - Perl compiler's C backend
9284
9285 =over 4
9286
9287 =item SYNOPSIS
9288
9289 =item DESCRIPTION
9290
9291 =item OPTIONS
9292
9293 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-D>, B<-Do>, B<-Dc>, B<-DA>,
9294 B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fsave-data>, B<-fppaddr>, B<-fwarn-sv>,
9295 B<-fuse-script-name>, B<-fsave-sig-hash>, B<-On>, B<-O0>, B<-O1>, B<-O2>,
9296 B<-llimit>
9297
9298 =item EXAMPLES
9299
9300 =item BUGS
9301
9302 =item AUTHOR
9303
9304 =back
9305
9306 =head2 B::CC - Perl compiler's optimized C translation backend
9307
9308 =over 4
9309
9310 =item SYNOPSIS
9311
9312 =item DESCRIPTION
9313
9314 =item OPTIONS
9315
9316 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-mModulename>, B<-D>, B<-Dr>,
9317 B<-DO>, B<-Ds>, B<-Dp>, B<-Dq>, B<-Dl>, B<-Dt>, B<-f>,
9318 B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
9319
9320 =item EXAMPLES
9321
9322 =item BUGS
9323
9324 =item DIFFERENCES
9325
9326 =over 4
9327
9328 =item Loops
9329
9330 =item Context of ".."
9331
9332 =item Arithmetic
9333
9334 =item Deprecated features
9335
9336 =back
9337
9338 =item AUTHOR
9339
9340 =back
9341
9342 =head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
9343
9344 =over 4
9345
9346 =item SYNOPSIS
9347
9348 =item DESCRIPTION
9349
9350 =item EXAMPLE
9351
9352 =item OPTIONS
9353
9354 B<-basic>, B<-exec>, B<-tree>, B<-compact>, B<-loose>, B<-vt>, B<-ascii>,
9355 B<-main>, B<-base>I<n>, B<-bigendian>, B<-littleendian>, B<-concise>,
9356 B<-terse>, B<-linenoise>, B<-debug>, B<-env>
9357
9358 =item FORMATTING SPECIFICATIONS
9359
9360 B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
9361 B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
9362 B<#>I<var>, B<#>I<var>I<N>, B<~>, B<#addr>, B<#arg>, B<#class>,
9363 B<#classsym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
9364 B<#flags>, B<#flagval>, B<#hyphseq>, B<#label>, B<#lastaddr>, B<#name>,
9365 B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>, B<#private>, B<#privval>,
9366 B<#seq>, B<#seqnum>, B<#sibaddr>, B<#svaddr>, B<#svclass>, B<#svval>,
9367 B<#targ>, B<#targarg>, B<#targarglife>, B<#typenum>
9368
9369 =item ABBREVIATIONS
9370
9371 =over 4
9372
9373 =item OP flags abbreviations
9374
9375 =item OP class abbreviations
9376
9377 =back
9378
9379 =item Using B::Concise outside of the O framework
9380
9381 =item AUTHOR
9382
9383 =back
9384
9385 =head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
9386
9387 =over 4
9388
9389 =item SYNOPSIS
9390
9391 =item DESCRIPTION
9392
9393 =item AUTHOR
9394
9395 =back
9396
9397 =head2 B::Deparse - Perl compiler backend to produce perl code
9398
9399 =over 4
9400
9401 =item SYNOPSIS
9402
9403 =item DESCRIPTION
9404
9405 =item OPTIONS
9406
9407 B<-l>, B<-p>, B<-P>, B<-q>, B<-f>I<FILE>, B<-s>I<LETTERS>, B<C>,
9408 B<i>I<NUMBER>, B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
9409
9410 =item USING B::Deparse AS A MODULE
9411
9412 =over 4
9413
9414 =item Synopsis
9415
9416 =item Description
9417
9418 =item new
9419
9420 =item ambient_pragmas
9421
9422 strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
9423
9424 =item coderef2text
9425
9426 =back
9427
9428 =item BUGS
9429
9430 =item AUTHOR
9431
9432 =back
9433
9434 =head2 B::Disassembler - Disassemble Perl bytecode
9435
9436 =over 4
9437
9438 =item SYNOPSIS
9439
9440 =item DESCRIPTION
9441
9442 =item AUTHOR
9443
9444 =back
9445
9446 =head2 B::Lint - Perl lint
9447
9448 =over 4
9449
9450 =item SYNOPSIS
9451
9452 =item DESCRIPTION
9453
9454 =item OPTIONS AND LINT CHECKS
9455
9456 B<context>, B<implicit-read> and B<implicit-write>, B<dollar-underscore>,
9457 B<private-names>, B<undefined-subs>, B<regexp-variables>, B<all>, B<none>
9458
9459 =item NON LINT-CHECK OPTIONS
9460
9461 B<-u Package>
9462
9463 =item BUGS
9464
9465 =item AUTHOR
9466
9467 =back
9468
9469 =head2 B::O, O - Generic interface to Perl Compiler backends
9470
9471 =over 4
9472
9473 =item SYNOPSIS
9474
9475 =item DESCRIPTION
9476
9477 =item CONVENTIONS
9478
9479 =item IMPLEMENTATION
9480
9481 =item AUTHOR
9482
9483 =back
9484
9485 =head2 B::Showlex - Show lexical variables used in functions or files
9486
9487 =over 4
9488
9489 =item SYNOPSIS
9490
9491 =item DESCRIPTION
9492
9493 =item AUTHOR
9494
9495 =back
9496
9497 =head2 B::Stackobj - Helper module for CC backend
9498
9499 =over 4
9500
9501 =item SYNOPSIS
9502
9503 =item DESCRIPTION
9504
9505 =item AUTHOR
9506
9507 =back
9508
9509 =head2 B::Stash - show what stashes are loaded
9510
9511 =head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
9512
9513 =over 4
9514
9515 =item SYNOPSIS
9516
9517 =item DESCRIPTION
9518
9519 =item AUTHOR
9520
9521 =back
9522
9523 =head2 B::Xref - Generates cross reference reports for Perl programs
9524
9525 =over 4
9526
9527 =item SYNOPSIS
9528
9529 =item DESCRIPTION
9530
9531 =item OPTIONS
9532
9533 C<-oFILENAME>, C<-r>, C<-D[tO]>
9534
9535 =item BUGS
9536
9537 =item AUTHOR
9538
9539 =back
9540
9541 =head2 Bblock, B::Bblock - Walk basic blocks
9542
9543 =over 4
9544
9545 =item SYNOPSIS
9546
9547 =item DESCRIPTION
9548
9549 =over 4
9550
9551 =item Functions
9552
9553 B<find_leaders>
9554
9555 =back
9556
9557 =item AUTHOR
9558
9559 =back
9560
9561 =head2 Benchmark - benchmark running times of Perl code
9562
9563 =over 4
9564
9565 =item SYNOPSIS
9566
9567 =item DESCRIPTION
9568
9569 =over 4
9570
9571 =item Methods
9572
9573 new, debug, iters
9574
9575 =item Standard Exports
9576
9577 timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
9578 timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
9579 TIMEDIFF, [ STYLE, [ FORMAT ] ] )
9580
9581 =item Optional Exports
9582
9583 clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUT, CODEHASHREF, [
9584 STYLE ] ), cmpthese ( RESULTSHASHREF, [ STYLE ] ), countit(TIME, CODE),
9585 disablecache ( ), enablecache ( ), timesum ( T1, T2 )
9586
9587 =back
9588
9589 =item NOTES
9590
9591 =item EXAMPLES
9592
9593 =item INHERITANCE
9594
9595 =item CAVEATS
9596
9597 =item SEE ALSO
9598
9599 =item AUTHORS
9600
9601 =item MODIFICATION HISTORY
9602
9603 =back
9604
9605 =head2 ByteLoader - load byte compiled perl code
9606
9607 =over 4
9608
9609 =item SYNOPSIS
9610
9611 =item DESCRIPTION
9612
9613 =item AUTHOR
9614
9615 =item SEE ALSO
9616
9617 =back
9618
9619 =head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend
9620
9621 =over 4
9622
9623 =item SYNOPSIS
9624
9625 =item DESCRIPTION
9626
9627 =item OPTIONS
9628
9629 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
9630 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
9631 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
9632
9633 =item EXAMPLES
9634
9635 =item BUGS
9636
9637 =item AUTHORS
9638
9639 =back
9640
9641 =head2 CGI - Simple Common Gateway Interface Class
9642
9643 =over 4
9644
9645 =item SYNOPSIS
9646
9647 =item ABSTRACT
9648
9649 =item DESCRIPTION
9650
9651 =over 4
9652
9653 =item PROGRAMMING STYLE
9654
9655 =item CALLING CGI.PM ROUTINES
9656
9657 =item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
9658
9659 =item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
9660
9661 =item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
9662
9663 =item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
9664
9665 =item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
9666
9667 =item SETTING THE VALUE(S) OF A NAMED PARAMETER:
9668
9669 =item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
9670
9671 =item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
9672
9673 =item DELETING A PARAMETER COMPLETELY:
9674
9675 =item DELETING ALL PARAMETERS:
9676
9677 =item DIRECT ACCESS TO THE PARAMETER LIST:
9678
9679 =item FETCHING THE PARAMETER LIST AS A HASH:
9680
9681 =item SAVING THE STATE OF THE SCRIPT TO A FILE:
9682
9683 =item RETRIEVING CGI ERRORS
9684
9685 =item USING THE FUNCTION-ORIENTED INTERFACE
9686
9687 B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:html4>, B<:netscape>, B<:html>,
9688 B<:standard>, B<:all>
9689
9690 =item PRAGMAS
9691
9692 -any, -compile, -nosticky, -no_undef_params, -no_xhtml, -nph,
9693 -newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
9694 -private_tempfiles
9695
9696 =item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
9697
9698 1. start_table() (generates a <table> tag), 2. end_table() (generates a
9699 </table> tag), 3. start_ul() (generates a <ul> tag), 4. end_ul() (generates
9700 a </ul> tag)
9701
9702 =back
9703
9704 =item GENERATING DYNAMIC DOCUMENTS
9705
9706 =over 4
9707
9708 =item CREATING A STANDARD HTTP HEADER:
9709
9710 =item GENERATING A REDIRECTION HEADER
9711
9712 =item CREATING THE HTML DOCUMENT HEADER
9713
9714 B<Parameters:>, 4, 5, 6..
9715
9716 =item ENDING THE HTML DOCUMENT:
9717
9718 =item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
9719
9720 =item OBTAINING THE SCRIPT'S URL
9721
9722 B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
9723 (B<-query_string>), B<-base>
9724
9725 =item MIXING POST AND URL PARAMETERS
9726
9727 =back
9728
9729 =item CREATING STANDARD HTML ELEMENTS:
9730
9731 =over 4
9732
9733 =item PROVIDING ARGUMENTS TO HTML SHORTCUTS
9734
9735 =item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
9736
9737 =item HTML SHORTCUTS AND LIST INTERPOLATION
9738
9739 =item NON-STANDARD HTML SHORTCUTS
9740
9741 =item AUTOESCAPING HTML
9742
9743 $escaped_string = escapeHTML("unescaped string");, $charset =
9744 charset([$charset]);, $flag = autoEscape([$flag]);
9745
9746 =item PRETTY-PRINTING HTML
9747
9748 =back
9749
9750 =item CREATING FILL-OUT FORMS:
9751
9752 =over 4
9753
9754 =item CREATING AN ISINDEX TAG
9755
9756 =item STARTING AND ENDING A FORM
9757
9758 B<application/x-www-form-urlencoded>, B<multipart/form-data>
9759
9760 =item CREATING A TEXT FIELD
9761
9762 B<Parameters>
9763
9764 =item CREATING A BIG TEXT FIELD
9765
9766 =item CREATING A PASSWORD FIELD
9767
9768 =item CREATING A FILE UPLOAD FIELD
9769
9770 B<Parameters>
9771
9772 =item CREATING A POPUP MENU
9773
9774 =item CREATING A SCROLLING LIST
9775
9776 B<Parameters:>
9777
9778 =item CREATING A GROUP OF RELATED CHECKBOXES
9779
9780 B<Parameters:>
9781
9782 =item CREATING A STANDALONE CHECKBOX
9783
9784 B<Parameters:>
9785
9786 =item CREATING A RADIO BUTTON GROUP
9787
9788 B<Parameters:>
9789
9790 =item CREATING A SUBMIT BUTTON 
9791
9792 B<Parameters:>
9793
9794 =item CREATING A RESET BUTTON
9795
9796 =item CREATING A DEFAULT BUTTON
9797
9798 =item CREATING A HIDDEN FIELD
9799
9800 B<Parameters:>
9801
9802 =item CREATING A CLICKABLE IMAGE BUTTON
9803
9804 B<Parameters:>
9805
9806 =item CREATING A JAVASCRIPT ACTION BUTTON
9807
9808 =back
9809
9810 =item HTTP COOKIES
9811
9812 1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
9813 B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
9814
9815 =item WORKING WITH FRAMES
9816
9817 1. Create a <Frameset> document, 2. Specify the destination for the
9818 document in the HTTP header, 3. Specify the destination for the document in
9819 the <form> tag
9820
9821 =item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
9822
9823 =item DEBUGGING
9824
9825 =over 4
9826
9827 =item DUMPING OUT ALL THE NAME/VALUE PAIRS
9828
9829 =back
9830
9831 =item FETCHING ENVIRONMENT VARIABLES
9832
9833 B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
9834 B<path_translated()>, B<remote_host()>, B<script_name()>, B<referer()>,
9835 B<auth_type ()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
9836 B<server_software ()>, B<remote_user ()>, B<user_name ()>,
9837 B<request_method()>, B<content_type()>, B<http()>, B<https()>
9838
9839 =item USING NPH SCRIPTS
9840
9841 In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
9842 parameters
9843
9844 =item Server Push
9845
9846 multipart_init(), multipart_start(), multipart_end(), multipart_final()
9847
9848 =item Avoiding Denial of Service Attacks
9849
9850 B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
9851 basis>, B<2. Globally for all scripts>
9852
9853 =item COMPATIBILITY WITH CGI-LIB.PL
9854
9855 =item AUTHOR INFORMATION
9856
9857 =item CREDITS
9858
9859 Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
9860 (james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
9861 (mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
9862 (jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
9863 (applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
9864 (tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
9865 (tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
9866 MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
9867 (kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
9868 Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
9869 MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
9870 ...and many many more..
9871
9872 =item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
9873
9874 =item BUGS
9875
9876 =item SEE ALSO
9877
9878 =back
9879
9880 =head2 CGI::Apache - Backward compatibility module for CGI.pm
9881
9882 =over 4
9883
9884 =item SYNOPSIS
9885
9886 =item ABSTRACT
9887
9888 =item DESCRIPTION
9889
9890 =item AUTHOR INFORMATION
9891
9892 =item BUGS
9893
9894 =item SEE ALSO
9895
9896 =back
9897
9898 =head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
9899 other) error log
9900
9901 =over 4
9902
9903 =item SYNOPSIS
9904
9905 =item DESCRIPTION
9906
9907 =item REDIRECTING ERROR MESSAGES
9908
9909 =item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
9910
9911 =over 4
9912
9913 =item Changing the default message
9914
9915 =back
9916
9917 =item MAKING WARNINGS APPEAR AS HTML COMMENTS
9918
9919 =item CHANGE LOG
9920
9921 =item AUTHORS
9922
9923 =item SEE ALSO
9924
9925 =back
9926
9927 =head2 CGI::Cookie - Interface to Netscape Cookies
9928
9929 =over 4
9930
9931 =item SYNOPSIS
9932
9933 =item DESCRIPTION
9934
9935 =item USING CGI::Cookie
9936
9937 B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
9938
9939 =over 4
9940
9941 =item Creating New Cookies
9942
9943 =item Sending the Cookie to the Browser
9944
9945 =item Recovering Previous Cookies
9946
9947 =item Manipulating Cookies
9948
9949 B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
9950
9951 =back
9952
9953 =item AUTHOR INFORMATION
9954
9955 =item BUGS
9956
9957 =item SEE ALSO
9958
9959 =back
9960
9961 =head2 CGI::Fast - CGI Interface for Fast CGI
9962
9963 =over 4
9964
9965 =item SYNOPSIS
9966
9967 =item DESCRIPTION
9968
9969 =item OTHER PIECES OF THE PUZZLE
9970
9971 =item WRITING FASTCGI PERL SCRIPTS
9972
9973 =item INSTALLING FASTCGI SCRIPTS
9974
9975 =item USING FASTCGI SCRIPTS AS CGI SCRIPTS
9976
9977 =item EXTERNAL FASTCGI SERVER INVOCATION
9978
9979 FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
9980
9981 =item CAVEATS
9982
9983 =item AUTHOR INFORMATION
9984
9985 =item BUGS
9986
9987 =item SEE ALSO
9988
9989 =back
9990
9991 =head2 CGI::Pretty - module to produce nicely formatted HTML code
9992
9993 =over 4
9994
9995 =item SYNOPSIS
9996
9997 =item DESCRIPTION
9998
9999 =over 4
10000
10001 =item Tags that won't be formatted
10002
10003 =item Customizing the Indenting
10004
10005 =back
10006
10007 =item BUGS
10008
10009 =item AUTHOR
10010
10011 =item SEE ALSO
10012
10013 =back
10014
10015 =head2 CGI::Push - Simple Interface to Server Push
10016
10017 =over 4
10018
10019 =item SYNOPSIS
10020
10021 =item DESCRIPTION
10022
10023 =item USING CGI::Push
10024
10025 -next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
10026
10027 =over 4
10028
10029 =item Heterogeneous Pages
10030
10031 =item Changing the Page Delay on the Fly
10032
10033 =back
10034
10035 =item INSTALLING CGI::Push SCRIPTS
10036
10037 =item AUTHOR INFORMATION
10038
10039 =item BUGS
10040
10041 =item SEE ALSO
10042
10043 =back
10044
10045 =head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
10046
10047 =over 4
10048
10049 =item SYNOPSIS
10050
10051 =item ABSTRACT
10052
10053 =item DESCRIPTION
10054
10055 =item AUTHOR INFORMATION
10056
10057 =item BUGS
10058
10059 =item SEE ALSO
10060
10061 =back
10062
10063 =head2 CGI::Util - Internal utilities used by CGI module
10064
10065 =over 4
10066
10067 =item SYNOPSIS
10068
10069 =item DESCRIPTION
10070
10071 =item AUTHOR INFORMATION
10072
10073 =item SEE ALSO
10074
10075 =back
10076
10077 =head2 CPAN - query, download and build perl modules from CPAN sites
10078
10079 =over 4
10080
10081 =item SYNOPSIS
10082
10083 =item DESCRIPTION
10084
10085 =over 4
10086
10087 =item Interactive Mode
10088
10089 Searching for authors, bundles, distribution files and modules, make, test,
10090 install, clean  modules or distributions, get, readme, look module or
10091 distribution, ls author, Signals
10092
10093 =item CPAN::Shell
10094
10095 =item autobundle
10096
10097 =item recompile
10098
10099 =item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
10100
10101 =item Programmer's interface
10102
10103 expand($type,@things), expandany(@things), Programming Examples
10104
10105 =item Methods in the other Classes
10106
10107 CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
10108 CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
10109 CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
10110 CPAN::Bundle::clean(), CPAN::Bundle::contains(),
10111 CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
10112 CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
10113 CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
10114 CPAN::Bundle::readme(), CPAN::Bundle::test(),
10115 CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
10116 CPAN::Distribution::clean(), CPAN::Distribution::containsmods(),
10117 CPAN::Distribution::cvs_import(), CPAN::Distribution::dir(),
10118 CPAN::Distribution::force($method,@args), CPAN::Distribution::get(),
10119 CPAN::Distribution::install(), CPAN::Distribution::isa_perl(),
10120 CPAN::Distribution::look(), CPAN::Distribution::make(),
10121 CPAN::Distribution::prereq_pm(), CPAN::Distribution::readme(),
10122 CPAN::Distribution::test(), CPAN::Distribution::uptodate(),
10123 CPAN::Index::force_reload(), CPAN::Index::reload(), CPAN::InfoObj::dump(),
10124 CPAN::Module::as_glimpse(), CPAN::Module::as_string(),
10125 CPAN::Module::clean(), CPAN::Module::cpan_file(),
10126 CPAN::Module::cpan_version(), CPAN::Module::cvs_import(),
10127 CPAN::Module::description(), CPAN::Module::force($method,@args),
10128 CPAN::Module::get(), CPAN::Module::inst_file(),
10129 CPAN::Module::inst_version(), CPAN::Module::install(),
10130 CPAN::Module::look(), CPAN::Module::make(),
10131 CPAN::Module::manpage_headline(), CPAN::Module::readme(),
10132 CPAN::Module::test(), CPAN::Module::uptodate(), CPAN::Module::userid()
10133
10134 =item Cache Manager
10135
10136 =item Bundles
10137
10138 =item Prerequisites
10139
10140 =item Finding packages and VERSION
10141
10142 =item Debugging
10143
10144 =item Floppy, Zip, Offline Mode
10145
10146 =back
10147
10148 =item CONFIGURATION
10149
10150 C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
10151 E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
10152 optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
10153 [unshift|push|splice] E<lt>listE<gt>>
10154
10155 =over 4
10156
10157 =item Note on urllist parameter's format
10158
10159 =item urllist parameter has CD-ROM support
10160
10161 =back
10162
10163 =item SECURITY
10164
10165 =item EXPORT
10166
10167 =item POPULATE AN INSTALLATION WITH LOTS OF MODULES
10168
10169 =item WORKING WITH CPAN.pm BEHIND FIREWALLS
10170
10171 =over 4
10172
10173 =item Three basic types of firewalls
10174
10175 http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
10176
10177 =item Configuring lynx or ncftp for going through a firewall
10178
10179 =back
10180
10181 =item FAQ
10182
10183 1), 2), 3), 4), 5), 6), 7), 8), 9), 10)
10184
10185 =item BUGS
10186
10187 =item AUTHOR
10188
10189 =item TRANSLATIONS
10190
10191 =item SEE ALSO
10192
10193 =back
10194
10195 =head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
10196
10197 =over 4
10198
10199 =item SYNOPSIS
10200
10201 =item DESCRIPTION
10202
10203 =back
10204
10205 =head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
10206 module
10207
10208 =over 4
10209
10210 =item SYNOPSIS
10211
10212 =item DESCRIPTION
10213
10214 =item  SEE ALSO
10215
10216 =back
10217
10218 =head2 Carp, carp    - warn of errors (from perspective of caller)
10219
10220 =over 4
10221
10222 =item SYNOPSIS
10223
10224 =item DESCRIPTION
10225
10226 =over 4
10227
10228 =item Forcing a Stack Trace
10229
10230 =back
10231
10232 =item BUGS
10233
10234 =back
10235
10236 =head2 Carp::Heavy, Carp heavy machinery - no user serviceable parts inside
10237
10238 =head2 Class::ISA -- report the search path for a class's ISA tree
10239
10240 =over 4
10241
10242 =item SYNOPSIS
10243
10244 =item DESCRIPTION
10245
10246 =item FUNCTIONS
10247
10248 the function Class::ISA::super_path($CLASS), the function
10249 Class::ISA::self_and_super_path($CLASS), the function
10250 Class::ISA::self_and_super_versions($CLASS)
10251
10252 =item CAUTIONARY NOTES
10253
10254 =item COPYRIGHT
10255
10256 =item AUTHOR
10257
10258 =back
10259
10260 =head2 Class::Struct - declare struct-like datatypes as Perl classes
10261
10262 =over 4
10263
10264 =item SYNOPSIS
10265
10266 =item DESCRIPTION
10267
10268 =over 4
10269
10270 =item The C<struct()> function
10271
10272 =item Class Creation at Compile Time
10273
10274 =item Element Types and Accessor Methods
10275
10276 Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
10277 C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
10278
10279 =item Initializing with C<new>
10280
10281 =back
10282
10283 =item EXAMPLES
10284
10285 Example 1, Example 2, Example 3
10286
10287 =item Author and Modification History
10288
10289 =back
10290
10291 =head2 Config - access Perl configuration information
10292
10293 =over 4
10294
10295 =item SYNOPSIS
10296
10297 =item DESCRIPTION
10298
10299 myconfig(), config_sh(), config_vars(@names)
10300
10301 =item EXAMPLE
10302
10303 =item WARNING
10304
10305 =item GLOSSARY
10306
10307 =over 4
10308
10309 =item _
10310
10311 C<_a>, C<_exe>, C<_o>
10312
10313 =item a
10314
10315 C<afs>, C<afsroot>, C<alignbytes>, C<ansi2knr>, C<aphostname>,
10316 C<api_revision>, C<api_subversion>, C<api_version>, C<api_versionstring>,
10317 C<ar>, C<archlib>, C<archlibexp>, C<archname64>, C<archname>, C<archobjs>,
10318 C<awk>
10319
10320 =item b
10321
10322 C<baserev>, C<bash>, C<bin>, C<bincompat5005>, C<binexp>, C<bison>,
10323 C<byacc>, C<byteorder>
10324
10325 =item c
10326
10327 C<c>, C<castflags>, C<cat>, C<cc>, C<cccdlflags>, C<ccdlflags>, C<ccflags>,
10328 C<ccflags_uselargefiles>, C<ccname>, C<ccsymbols>, C<ccversion>, C<cf_by>,
10329 C<cf_email>, C<cf_time>, C<charsize>, C<chgrp>, C<chmod>, C<chown>,
10330 C<clocktype>, C<comm>, C<compress>, C<contains>, C<cp>, C<cpio>, C<cpp>,
10331 C<cpp_stuff>, C<cppccsymbols>, C<cppflags>, C<cpplast>, C<cppminus>,
10332 C<cpprun>, C<cppstdin>, C<cppsymbols>, C<cryptlib>, C<csh>
10333
10334 =item d
10335
10336 C<d__fwalk>, C<d_access>, C<d_accessx>, C<d_alarm>, C<d_archlib>,
10337 C<d_atolf>, C<d_atoll>, C<d_attribut>, C<d_bcmp>, C<d_bcopy>,
10338 C<d_bincompat5005>, C<d_bsd>, C<d_bsdgetpgrp>, C<d_bsdsetpgrp>, C<d_bzero>,
10339 C<d_casti32>, C<d_castneg>, C<d_charvspr>, C<d_chown>, C<d_chroot>,
10340 C<d_chsize>, C<d_class>, C<d_closedir>, C<d_cmsghdr_s>, C<d_const>,
10341 C<d_crypt>, C<d_csh>, C<d_cuserid>, C<d_dbl_dig>, C<d_dbminitproto>,
10342 C<d_difftime>, C<d_dirfd>, C<d_dirnamlen>, C<d_dlerror>, C<d_dlopen>,
10343 C<d_dlsymun>, C<d_dosuid>, C<d_drand48proto>, C<d_dup2>, C<d_eaccess>,
10344 C<d_endgrent>, C<d_endhent>, C<d_endnent>, C<d_endpent>, C<d_endpwent>,
10345 C<d_endsent>, C<d_eofnblk>, C<d_eunice>, C<d_fchdir>, C<d_fchmod>,
10346 C<d_fchown>, C<d_fcntl>, C<d_fcntl_can_lock>, C<d_fd_macros>, C<d_fd_set>,
10347 C<d_fds_bits>, C<d_fgetpos>, C<d_finite>, C<d_finitel>, C<d_flexfnam>,
10348 C<d_flock>, C<d_flockproto>, C<d_fork>, C<d_fp_class>, C<d_fpathconf>,
10349 C<d_fpclass>, C<d_fpclassify>, C<d_fpclassl>, C<d_fpos64_t>, C<d_frexpl>,
10350 C<d_fs_data_s>, C<d_fseeko>, C<d_fsetpos>, C<d_fstatfs>, C<d_fstatvfs>,
10351 C<d_fsync>, C<d_ftello>, C<d_ftime>, C<d_Gconvert>, C<d_getcwd>,
10352 C<d_getespwnam>, C<d_getfsstat>, C<d_getgrent>, C<d_getgrps>,
10353 C<d_gethbyaddr>, C<d_gethbyname>, C<d_gethent>, C<d_gethname>,
10354 C<d_gethostprotos>, C<d_getitimer>, C<d_getlogin>, C<d_getmnt>,
10355 C<d_getmntent>, C<d_getnbyaddr>, C<d_getnbyname>, C<d_getnent>,
10356 C<d_getnetprotos>, C<d_getpagsz>, C<d_getpbyname>, C<d_getpbynumber>,
10357 C<d_getpent>, C<d_getpgid>, C<d_getpgrp2>, C<d_getpgrp>, C<d_getppid>,
10358 C<d_getprior>, C<d_getprotoprotos>, C<d_getprpwnam>, C<d_getpwent>,
10359 C<d_getsbyname>, C<d_getsbyport>, C<d_getsent>, C<d_getservprotos>,
10360 C<d_getspnam>, C<d_gettimeod>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>,
10361 C<d_htonl>, C<d_index>, C<d_inetaton>, C<d_int64_t>, C<d_isascii>,
10362 C<d_isfinite>, C<d_isinf>, C<d_isnan>, C<d_isnanl>, C<d_killpg>,
10363 C<d_lchown>, C<d_ldbl_dig>, C<d_link>, C<d_locconv>, C<d_lockf>,
10364 C<d_longdbl>, C<d_longlong>, C<d_lseekproto>, C<d_lstat>, C<d_madvise>,
10365 C<d_mblen>, C<d_mbstowcs>, C<d_mbtowc>, C<d_memchr>, C<d_memcmp>,
10366 C<d_memcpy>, C<d_memmove>, C<d_memset>, C<d_mkdir>, C<d_mkdtemp>,
10367 C<d_mkfifo>, C<d_mkstemp>, C<d_mkstemps>, C<d_mktime>, C<d_mmap>,
10368 C<d_modfl>, C<d_modfl_pow32_bug>, C<d_mprotect>, C<d_msg>, C<d_msg_ctrunc>,
10369 C<d_msg_dontroute>, C<d_msg_oob>, C<d_msg_peek>, C<d_msg_proxy>,
10370 C<d_msgctl>, C<d_msgget>, C<d_msghdr_s>, C<d_msgrcv>, C<d_msgsnd>,
10371 C<d_msync>, C<d_munmap>, C<d_mymalloc>, C<d_nice>, C<d_nl_langinfo>,
10372 C<d_nv_preserves_uv>, C<d_nv_preserves_uv_bits>, C<d_off64_t>,
10373 C<d_old_pthread_create_joinable>, C<d_oldpthreads>, C<d_oldsock>,
10374 C<d_open3>, C<d_pathconf>, C<d_pause>, C<d_perl_otherlibdirs>,
10375 C<d_phostname>, C<d_pipe>, C<d_poll>, C<d_portable>, C<d_PRId64>,
10376 C<d_PRIeldbl>, C<d_PRIEUldbl>, C<d_PRIfldbl>, C<d_PRIFUldbl>,
10377 C<d_PRIgldbl>, C<d_PRIGUldbl>, C<d_PRIi64>, C<d_PRIo64>, C<d_PRIu64>,
10378 C<d_PRIx64>, C<d_PRIXU64>, C<d_procselfexe>, C<d_pthread_atfork>,
10379 C<d_pthread_yield>, C<d_pwage>, C<d_pwchange>, C<d_pwclass>,
10380 C<d_pwcomment>, C<d_pwexpire>, C<d_pwgecos>, C<d_pwpasswd>, C<d_pwquota>,
10381 C<d_qgcvt>, C<d_quad>, C<d_readdir>, C<d_readlink>, C<d_readv>,
10382 C<d_recvmsg>, C<d_rename>, C<d_rewinddir>, C<d_rmdir>, C<d_safebcpy>,
10383 C<d_safemcpy>, C<d_sanemcmp>, C<d_sbrkproto>, C<d_sched_yield>,
10384 C<d_scm_rights>, C<d_SCNfldbl>, C<d_seekdir>, C<d_select>, C<d_sem>,
10385 C<d_semctl>, C<d_semctl_semid_ds>, C<d_semctl_semun>, C<d_semget>,
10386 C<d_semop>, C<d_sendmsg>, C<d_setegid>, C<d_seteuid>, C<d_setgrent>,
10387 C<d_setgrps>, C<d_sethent>, C<d_setitimer>, C<d_setlinebuf>,
10388 C<d_setlocale>, C<d_setnent>, C<d_setpent>, C<d_setpgid>, C<d_setpgrp2>,
10389 C<d_setpgrp>, C<d_setprior>, C<d_setproctitle>, C<d_setpwent>,
10390 C<d_setregid>, C<d_setresgid>, C<d_setresuid>, C<d_setreuid>, C<d_setrgid>,
10391 C<d_setruid>, C<d_setsent>, C<d_setsid>, C<d_setvbuf>, C<d_sfio>, C<d_shm>,
10392 C<d_shmat>, C<d_shmatprototype>, C<d_shmctl>, C<d_shmdt>, C<d_shmget>,
10393 C<d_sigaction>, C<d_sigprocmask>, C<d_sigsetjmp>, C<d_sockatmark>,
10394 C<d_sockatmarkproto>, C<d_socket>, C<d_socklen_t>, C<d_sockpair>,
10395 C<d_socks5_init>, C<d_sqrtl>, C<d_sresgproto>, C<d_sresuproto>,
10396 C<d_statblks>, C<d_statfs_f_flags>, C<d_statfs_s>, C<d_statvfs>,
10397 C<d_stdio_cnt_lval>, C<d_stdio_ptr_lval>, C<d_stdio_ptr_lval_nochange_cnt>,
10398 C<d_stdio_ptr_lval_sets_cnt>, C<d_stdio_stream_array>, C<d_stdiobase>,
10399 C<d_stdstdio>, C<d_strchr>, C<d_strcoll>, C<d_strctcpy>, C<d_strerrm>,
10400 C<d_strerror>, C<d_strftime>, C<d_strtod>, C<d_strtol>, C<d_strtold>,
10401 C<d_strtoll>, C<d_strtoq>, C<d_strtoul>, C<d_strtoull>, C<d_strtouq>,
10402 C<d_strxfrm>, C<d_suidsafe>, C<d_symlink>, C<d_syscall>, C<d_syscallproto>,
10403 C<d_sysconf>, C<d_sysernlst>, C<d_syserrlst>, C<d_system>, C<d_tcgetpgrp>,
10404 C<d_tcsetpgrp>, C<d_telldir>, C<d_telldirproto>, C<d_time>, C<d_times>,
10405 C<d_tm_tm_gmtoff>, C<d_tm_tm_zone>, C<d_truncate>, C<d_tzname>,
10406 C<d_u32align>, C<d_ualarm>, C<d_umask>, C<d_uname>, C<d_union_semun>,
10407 C<d_unordered>, C<d_usleep>, C<d_usleepproto>, C<d_ustat>, C<d_vendorarch>,
10408 C<d_vendorbin>, C<d_vendorlib>, C<d_vfork>, C<d_void_closedir>,
10409 C<d_voidsig>, C<d_voidtty>, C<d_volatile>, C<d_vprintf>, C<d_wait4>,
10410 C<d_waitpid>, C<d_wcstombs>, C<d_wctomb>, C<d_writev>, C<d_xenix>, C<date>,
10411 C<db_hashtype>, C<db_prefixtype>, C<db_version_major>, C<db_version_minor>,
10412 C<db_version_patch>, C<defvoidused>, C<direntrytype>, C<dlext>, C<dlsrc>,
10413 C<doublesize>, C<drand01>, C<dynamic_ext>
10414
10415 =item e
10416
10417 C<eagain>, C<ebcdic>, C<echo>, C<egrep>, C<emacs>, C<eunicefix>,
10418 C<exe_ext>, C<expr>, C<extensions>, C<extras>
10419
10420 =item f
10421
10422 C<fflushall>, C<fflushNULL>, C<find>, C<firstmakefile>, C<flex>,
10423 C<fpossize>, C<fpostype>, C<freetype>, C<from>, C<full_ar>, C<full_csh>,
10424 C<full_sed>
10425
10426 =item g
10427
10428 C<gccosandvers>, C<gccversion>, C<gidformat>, C<gidsign>, C<gidsize>,
10429 C<gidtype>, C<glibpth>, C<gmake>, C<grep>, C<groupcat>, C<groupstype>,
10430 C<gzip>
10431
10432 =item h
10433
10434 C<h_fcntl>, C<h_sysfile>, C<hint>, C<hostcat>
10435
10436 =item i
10437
10438 C<i16size>, C<i16type>, C<i32size>, C<i32type>, C<i64size>, C<i64type>,
10439 C<i8size>, C<i8type>, C<i_arpainet>, C<i_bsdioctl>, C<i_db>, C<i_dbm>,
10440 C<i_dirent>, C<i_dld>, C<i_dlfcn>, C<i_fcntl>, C<i_float>, C<i_fp>,
10441 C<i_fp_class>, C<i_gdbm>, C<i_grp>, C<i_ieeefp>, C<i_inttypes>,
10442 C<i_langinfo>, C<i_libutil>, C<i_limits>, C<i_locale>, C<i_machcthr>,
10443 C<i_malloc>, C<i_math>, C<i_memory>, C<i_mntent>, C<i_ndbm>, C<i_netdb>,
10444 C<i_neterrno>, C<i_netinettcp>, C<i_niin>, C<i_poll>, C<i_prot>,
10445 C<i_pthread>, C<i_pwd>, C<i_rpcsvcdbm>, C<i_sfio>, C<i_sgtty>, C<i_shadow>,
10446 C<i_socks>, C<i_stdarg>, C<i_stddef>, C<i_stdlib>, C<i_string>,
10447 C<i_sunmath>, C<i_sysaccess>, C<i_sysdir>, C<i_sysfile>, C<i_sysfilio>,
10448 C<i_sysin>, C<i_sysioctl>, C<i_syslog>, C<i_sysmman>, C<i_sysmode>,
10449 C<i_sysmount>, C<i_sysndir>, C<i_sysparam>, C<i_sysresrc>, C<i_syssecrt>,
10450 C<i_sysselct>, C<i_syssockio>, C<i_sysstat>, C<i_sysstatfs>,
10451 C<i_sysstatvfs>, C<i_systime>, C<i_systimek>, C<i_systimes>, C<i_systypes>,
10452 C<i_sysuio>, C<i_sysun>, C<i_sysutsname>, C<i_sysvfs>, C<i_syswait>,
10453 C<i_termio>, C<i_termios>, C<i_time>, C<i_unistd>, C<i_ustat>, C<i_utime>,
10454 C<i_values>, C<i_varargs>, C<i_varhdr>, C<i_vfork>,
10455 C<ignore_versioned_solibs>, C<inc_version_list>, C<inc_version_list_init>,
10456 C<incpath>, C<inews>, C<installarchlib>, C<installbin>, C<installman1dir>,
10457 C<installman3dir>, C<installprefix>, C<installprefixexp>,
10458 C<installprivlib>, C<installscript>, C<installsitearch>, C<installsitebin>,
10459 C<installsitelib>, C<installstyle>, C<installusrbinperl>,
10460 C<installvendorarch>, C<installvendorbin>, C<installvendorlib>, C<intsize>,
10461 C<issymlink>, C<ivdformat>, C<ivsize>, C<ivtype>
10462
10463 =item k
10464
10465 C<known_extensions>, C<ksh>
10466
10467 =item l
10468
10469 C<ld>, C<lddlflags>, C<ldflags>, C<ldflags_uselargefiles>, C<ldlibpthname>,
10470 C<less>, C<lib_ext>, C<libc>, C<libperl>, C<libpth>, C<libs>, C<libsdirs>,
10471 C<libsfiles>, C<libsfound>, C<libspath>, C<libswanted>,
10472 C<libswanted_uselargefiles>, C<line>, C<lint>, C<lkflags>, C<ln>, C<lns>,
10473 C<locincpth>, C<loclibpth>, C<longdblsize>, C<longlongsize>, C<longsize>,
10474 C<lp>, C<lpr>, C<ls>, C<lseeksize>, C<lseektype>
10475
10476 =item m
10477
10478 C<mail>, C<mailx>, C<make>, C<make_set_make>, C<mallocobj>, C<mallocsrc>,
10479 C<malloctype>, C<man1dir>, C<man1direxp>, C<man1ext>, C<man3dir>,
10480 C<man3direxp>, C<man3ext>
10481
10482 =item M
10483
10484 C<Mcc>, C<mips_type>, C<mkdir>, C<mmaptype>, C<modetype>, C<more>,
10485 C<multiarch>, C<mv>, C<myarchname>, C<mydomain>, C<myhostname>, C<myuname>
10486
10487 =item n
10488
10489 C<n>, C<need_va_copy>, C<netdb_hlen_type>, C<netdb_host_type>,
10490 C<netdb_name_type>, C<netdb_net_type>, C<nm>, C<nm_opt>, C<nm_so_opt>,
10491 C<nonxs_ext>, C<nroff>, C<nveformat>, C<nvEUformat>, C<nvfformat>,
10492 C<nvFUformat>, C<nvgformat>, C<nvGUformat>, C<nvsize>, C<nvtype>
10493
10494 =item o
10495
10496 C<o_nonblock>, C<obj_ext>, C<old_pthread_create_joinable>, C<optimize>,
10497 C<orderlib>, C<osname>, C<osvers>, C<otherlibdirs>
10498
10499 =item p
10500
10501 C<package>, C<pager>, C<passcat>, C<patchlevel>, C<path_sep>, C<perl5>,
10502 C<perl>, C<perl_patchlevel>
10503
10504 =item P
10505
10506 C<PERL_REVISION>, C<PERL_SUBVERSION>, C<PERL_VERSION>, C<perladmin>,
10507 C<perllibs>, C<perlpath>, C<pg>, C<phostname>, C<pidtype>, C<plibpth>,
10508 C<pm_apiversion>, C<pmake>, C<pr>, C<prefix>, C<prefixexp>, C<privlib>,
10509 C<privlibexp>, C<procselfexe>, C<prototype>, C<ptrsize>
10510
10511 =item q
10512
10513 C<quadkind>, C<quadtype>
10514
10515 =item r
10516
10517 C<randbits>, C<randfunc>, C<randseedtype>, C<ranlib>, C<rd_nodata>,
10518 C<revision>, C<rm>, C<rmail>, C<run>, C<runnm>
10519
10520 =item s
10521
10522 C<sched_yield>, C<scriptdir>, C<scriptdirexp>, C<sed>, C<seedfunc>,
10523 C<selectminbits>, C<selecttype>, C<sendmail>, C<sh>, C<shar>, C<sharpbang>,
10524 C<shmattype>, C<shortsize>, C<shrpenv>, C<shsharp>, C<sig_count>,
10525 C<sig_name>, C<sig_name_init>, C<sig_num>, C<sig_num_init>, C<sig_size>,
10526 C<signal_t>, C<sitearch>, C<sitearchexp>, C<sitebin>, C<sitebinexp>,
10527 C<sitelib>, C<sitelib_stem>, C<sitelibexp>, C<siteprefix>,
10528 C<siteprefixexp>, C<sizesize>, C<sizetype>, C<sleep>, C<smail>, C<so>,
10529 C<sockethdr>, C<socketlib>, C<socksizetype>, C<sort>, C<spackage>,
10530 C<spitshell>, C<sPRId64>, C<sPRIeldbl>, C<sPRIEUldbl>, C<sPRIfldbl>,
10531 C<sPRIFUldbl>, C<sPRIgldbl>, C<sPRIGUldbl>, C<sPRIi64>, C<sPRIo64>,
10532 C<sPRIu64>, C<sPRIx64>, C<sPRIXU64>, C<src>, C<sSCNfldbl>, C<ssizetype>,
10533 C<startperl>, C<startsh>, C<static_ext>, C<stdchar>, C<stdio_base>,
10534 C<stdio_bufsiz>, C<stdio_cnt>, C<stdio_filbuf>, C<stdio_ptr>,
10535 C<stdio_stream_array>, C<strings>, C<submit>, C<subversion>, C<sysman>
10536
10537 =item t
10538
10539 C<tail>, C<tar>, C<targetarch>, C<tbl>, C<tee>, C<test>, C<timeincl>,
10540 C<timetype>, C<to>, C<touch>, C<tr>, C<trnl>, C<troff>
10541
10542 =item u
10543
10544 C<u16size>, C<u16type>, C<u32size>, C<u32type>, C<u64size>, C<u64type>,
10545 C<u8size>, C<u8type>, C<uidformat>, C<uidsign>, C<uidsize>, C<uidtype>,
10546 C<uname>, C<uniq>, C<uquadtype>, C<use5005threads>, C<use64bitall>,
10547 C<use64bitint>, C<usecrosscompile>, C<usedl>, C<useithreads>,
10548 C<uselargefiles>, C<uselongdouble>, C<usemorebits>, C<usemultiplicity>,
10549 C<usemymalloc>, C<usenm>, C<useopcode>, C<useperlio>, C<useposix>,
10550 C<usereentrant>, C<usesfio>, C<useshrplib>, C<usesocks>, C<usethreads>,
10551 C<usevendorprefix>, C<usevfork>, C<usrinc>, C<uuname>, C<uvoformat>,
10552 C<uvsize>, C<uvtype>, C<uvuformat>, C<uvxformat>, C<uvXUformat>
10553
10554 =item v
10555
10556 C<vendorarch>, C<vendorarchexp>, C<vendorbin>, C<vendorbinexp>,
10557 C<vendorlib>, C<vendorlib_stem>, C<vendorlibexp>, C<vendorprefix>,
10558 C<vendorprefixexp>, C<version>, C<version_patchlevel_string>,
10559 C<versiononly>, C<vi>, C<voidflags>
10560
10561 =item x
10562
10563 C<xlibpth>, C<xs_apiversion>
10564
10565 =item y
10566
10567 C<yacc>, C<yaccflags>
10568
10569 =item z
10570
10571 C<zcat>, C<zip>
10572
10573 =back
10574
10575 =item NOTE
10576
10577 =back
10578
10579 =head2 Cwd - get pathname of current working directory
10580
10581 =over 4
10582
10583 =item SYNOPSIS
10584
10585 =item DESCRIPTION
10586
10587 =over 4
10588
10589 =item getcwd and friends
10590
10591 getcwd, cwd, fastcwd, fastgetcwd
10592
10593 =item abs_path and friends
10594
10595 abs_path, realpath, fast_abs_path
10596
10597 =item $ENV{PWD}
10598
10599 =back
10600
10601 =item NOTES
10602
10603 =item SEE ALSO
10604
10605 =back
10606
10607 =head2 DB - programmatic interface to the Perl debugging API (draft,
10608 subject to
10609 change)
10610
10611 =over 4
10612
10613 =item SYNOPSIS
10614
10615 =item DESCRIPTION
10616
10617 =over 4
10618
10619 =item Global Variables
10620
10621  $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace,  @DB::args, 
10622 @DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
10623 $DB::lineno
10624
10625 =item API Methods
10626
10627 CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
10628 CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
10629
10630 =item Client Callback Methods
10631
10632 CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
10633 CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
10634 CLIENT->output(LIST)
10635
10636 =back
10637
10638 =item BUGS
10639
10640 =item AUTHOR
10641
10642 =back
10643
10644 =head2 DB_File - Perl5 access to Berkeley DB version 1.x
10645
10646 =over 4
10647
10648 =item SYNOPSIS
10649
10650 =item DESCRIPTION
10651
10652 B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
10653
10654 =over 4
10655
10656 =item Using DB_File with Berkeley DB version 2 or greater
10657
10658 =item Interface to Berkeley DB
10659
10660 =item Opening a Berkeley DB Database File
10661
10662 =item Default Parameters
10663
10664 =item In Memory Databases
10665
10666 =back
10667
10668 =item DB_HASH
10669
10670 =over 4
10671
10672 =item A Simple Example
10673
10674 =back
10675
10676 =item DB_BTREE
10677
10678 =over 4
10679
10680 =item Changing the BTREE sort order
10681
10682 =item Handling Duplicate Keys 
10683
10684 =item The get_dup() Method
10685
10686 =item The find_dup() Method
10687
10688 =item The del_dup() Method
10689
10690 =item Matching Partial Keys 
10691
10692 =back
10693
10694 =item DB_RECNO
10695
10696 =over 4
10697
10698 =item The 'bval' Option
10699
10700 =item A Simple Example
10701
10702 =item Extra RECNO Methods
10703
10704 B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
10705 B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
10706 length, elements);>
10707
10708 =item Another Example
10709
10710 =back
10711
10712 =item THE API INTERFACE
10713
10714 B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
10715 $X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
10716 $flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
10717 $value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
10718
10719 =item DBM FILTERS
10720
10721 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
10722 B<filter_fetch_value>
10723
10724 =over 4
10725
10726 =item The Filter
10727
10728 =item An Example -- the NULL termination problem.
10729
10730 =item Another Example -- Key is a C int.
10731
10732 =back
10733
10734 =item HINTS AND TIPS 
10735
10736 =over 4
10737
10738 =item Locking: The Trouble with fd
10739
10740 =item Safe ways to lock a database
10741
10742 B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
10743
10744 =item Sharing Databases With C Applications
10745
10746 =item The untie() Gotcha
10747
10748 =back
10749
10750 =item COMMON QUESTIONS
10751
10752 =over 4
10753
10754 =item Why is there Perl source in my database?
10755
10756 =item How do I store complex data structures with DB_File?
10757
10758 =item What does "Invalid Argument" mean?
10759
10760 =item What does "Bareword 'DB_File' not allowed" mean? 
10761
10762 =back
10763
10764 =item REFERENCES
10765
10766 =item HISTORY
10767
10768 =item BUGS
10769
10770 =item AVAILABILITY
10771
10772 =item COPYRIGHT
10773
10774 =item SEE ALSO
10775
10776 =item AUTHOR
10777
10778 =back
10779
10780 =head2 Data::Dumper - stringified perl data structures, suitable for both
10781 printing and C<eval>
10782
10783 =over 4
10784
10785 =item SYNOPSIS
10786
10787 =item DESCRIPTION
10788
10789 =over 4
10790
10791 =item Methods
10792
10793 I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
10794 I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
10795 I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
10796 I<$OBJ>->Reset
10797
10798 =item Functions
10799
10800 Dumper(I<LIST>)
10801
10802 =item Configuration Variables or Methods
10803
10804 $Data::Dumper::Indent  I<or>  I<$OBJ>->Indent(I<[NEWVAL]>),
10805 $Data::Dumper::Purity  I<or>  I<$OBJ>->Purity(I<[NEWVAL]>),
10806 $Data::Dumper::Pad  I<or>  I<$OBJ>->Pad(I<[NEWVAL]>),
10807 $Data::Dumper::Varname  I<or>  I<$OBJ>->Varname(I<[NEWVAL]>),
10808 $Data::Dumper::Useqq  I<or>  I<$OBJ>->Useqq(I<[NEWVAL]>),
10809 $Data::Dumper::Terse  I<or>  I<$OBJ>->Terse(I<[NEWVAL]>),
10810 $Data::Dumper::Freezer  I<or>  $I<OBJ>->Freezer(I<[NEWVAL]>),
10811 $Data::Dumper::Toaster  I<or>  $I<OBJ>->Toaster(I<[NEWVAL]>),
10812 $Data::Dumper::Deepcopy  I<or>  $I<OBJ>->Deepcopy(I<[NEWVAL]>),
10813 $Data::Dumper::Quotekeys  I<or>  $I<OBJ>->Quotekeys(I<[NEWVAL]>),
10814 $Data::Dumper::Bless  I<or>  $I<OBJ>->Bless(I<[NEWVAL]>),
10815 $Data::Dumper::Maxdepth  I<or>  $I<OBJ>->Maxdepth(I<[NEWVAL]>),
10816 $Data::Dumper::Useperl  I<or>  $I<OBJ>->Useperl(I<[NEWVAL]>),
10817 $Data::Dumper::Sortkeys  I<or>  $I<OBJ>->Sortkeys(I<[NEWVAL]>),
10818 $Data::Dumper::Deparse  I<or>  $I<OBJ>->Deparse(I<[NEWVAL]>)
10819
10820 =item Exports
10821
10822 Dumper
10823
10824 =back
10825
10826 =item EXAMPLES
10827
10828 =item BUGS
10829
10830 =item AUTHOR
10831
10832 =item VERSION
10833
10834 =item SEE ALSO
10835
10836 =back
10837
10838 =head2 Data::Util - A selection of general-utility data subroutines
10839
10840 =over 4
10841
10842 =item SYNOPSIS
10843
10844 =item DESCRIPTION
10845
10846 sv_readonly_flag
10847
10848 =item AUTHOR
10849
10850 =item SEE ALSO
10851
10852 =back
10853
10854 =head2 Data::Utilib::Data::Util, Data::Util - A selection of
10855 general-utility data subroutines
10856
10857 =over 4
10858
10859 =item SYNOPSIS
10860
10861 =item DESCRIPTION
10862
10863 sv_readonly_flag
10864
10865 =item AUTHOR
10866
10867 =item SEE ALSO
10868
10869 =back
10870
10871 =head2 Data::Utilib::Hash::Util, Hash::Util - A selection of
10872 general-utility hash subroutines
10873
10874 =over 4
10875
10876 =item SYNOPSIS
10877
10878 =item DESCRIPTION
10879
10880 =over 4
10881
10882 =item Restricted hashes
10883
10884 lock_keys, unlock_keys
10885
10886 =back
10887
10888 =back
10889
10890 lock_value, unlock_value
10891
10892 B<lock_hash>, B<unlock_hash>
10893
10894 =over 4
10895
10896 =item AUTHOR
10897
10898 =item SEE ALSO
10899
10900 =back
10901
10902 =head2 Devel::DProf - a Perl code profiler
10903
10904 =over 4
10905
10906 =item SYNOPSIS
10907
10908 =item DESCRIPTION
10909
10910 =item PROFILE FORMAT
10911
10912 =item AUTOLOAD
10913
10914 =item ENVIRONMENT
10915
10916 =item BUGS
10917
10918 =item SEE ALSO
10919
10920 =back
10921
10922 =head2 Devel::PPPort, Perl/Pollution/Portability
10923
10924 =over 4
10925
10926 =item SYNOPSIS
10927
10928 =item DESCRIPTION
10929
10930 =over 4
10931
10932 =item WriteFile
10933
10934 =back
10935
10936 =item ppport.h
10937
10938 =item AUTHOR
10939
10940 =item SEE ALSO
10941
10942 =back
10943
10944 =head2 Devel::Peek - A data debugging tool for the XS programmer
10945
10946 =over 4
10947
10948 =item SYNOPSIS
10949
10950 =item DESCRIPTION
10951
10952 =over 4
10953
10954 =item Runtime debugging
10955
10956 =item Memory footprint debugging
10957
10958 =back
10959
10960 =item EXAMPLES
10961
10962 =over 4
10963
10964 =item A simple scalar string
10965
10966 =item A simple scalar number
10967
10968 =item A simple scalar with an extra reference
10969
10970 =item A reference to a simple scalar
10971
10972 =item A reference to an array
10973
10974 =item A reference to a hash
10975
10976 =item Dumping a large array or hash
10977
10978 =item A reference to an SV which holds a C pointer
10979
10980 =item A reference to a subroutine
10981
10982 =back
10983
10984 =item EXPORTS
10985
10986 =item BUGS
10987
10988 =item AUTHOR
10989
10990 =item SEE ALSO
10991
10992 =back
10993
10994 =head2 Devel::SelfStubber - generate stubs for a SelfLoading module
10995
10996 =over 4
10997
10998 =item SYNOPSIS
10999
11000 =item DESCRIPTION
11001
11002 =back
11003
11004 =head2 Digest:: - Modules that calculate message digests
11005
11006 =over 4
11007
11008 =item SYNOPSIS
11009
11010 =item DESCRIPTION
11011
11012 I<binary>, I<hex>, I<base64>
11013
11014 =item OO INTERFACE
11015
11016 $ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
11017 Digest::XXX->new($arg,...), $ctx->reset, $ctx->add($data,...),
11018 $ctx->addfile($io_handle), $ctx->digest, $ctx->hexdigest, $ctx->b64digest
11019
11020 =item SEE ALSO
11021
11022 =item AUTHOR
11023
11024 =back
11025
11026 =head2 Digest::MD5 - Perl interface to the MD5 Algorithm
11027
11028 =over 4
11029
11030 =item SYNOPSIS
11031
11032 =item DESCRIPTION
11033
11034 =item FUNCTIONS
11035
11036 md5($data,...), md5_hex($data,...), md5_base64($data,...)
11037
11038 =item METHODS
11039
11040 $md5 = Digest::MD5->new, $md5->reset, $md5->add($data,...),
11041 $md5->addfile($io_handle), $md5->digest, $md5->hexdigest, $md5->b64digest
11042
11043 =item EXAMPLES
11044
11045 =item SEE ALSO
11046
11047 =item COPYRIGHT
11048
11049 =item AUTHORS
11050
11051 =back
11052
11053 =head2 DirHandle - supply object methods for directory handles
11054
11055 =over 4
11056
11057 =item SYNOPSIS
11058
11059 =item DESCRIPTION
11060
11061 =item NOTES
11062
11063 =back
11064
11065 =head2 Dumpvalue - provides screen dump of Perl data.
11066
11067 =over 4
11068
11069 =item SYNOPSIS
11070
11071 =item DESCRIPTION
11072
11073 =over 4
11074
11075 =item Creation
11076
11077 C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
11078 C<dumpDBFiles>, C<dumpPackages>, C<dumpReused>, C<tick>, C<quoteHighBit>,
11079 C<printUndef>, C<usageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
11080 stopDbSignal
11081
11082 =item Methods
11083
11084 dumpValue, dumpValues, dumpvars, set_quote, set_unctrl, compactDump,
11085 veryCompact, set, get
11086
11087 =back
11088
11089 =back
11090
11091 =head2 DynaLoader - Dynamically load C libraries into Perl code
11092
11093 =over 4
11094
11095 =item SYNOPSIS
11096
11097 =item DESCRIPTION
11098
11099 @dl_library_path, @dl_resolve_using, @dl_require_symbols, @dl_librefs,
11100 @dl_modules, dl_error(), $dl_debug, dl_findfile(), dl_expandspec(),
11101 dl_load_file(), dl_unload_file(), dl_loadflags(), dl_find_symbol(),
11102 dl_find_symbol_anywhere(), dl_undef_symbols(), dl_install_xsub(),
11103 bootstrap()
11104
11105 =item AUTHOR
11106
11107 =back
11108
11109 =head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
11110 Perl code
11111
11112 =over 4
11113
11114 =item SYNOPSIS
11115
11116 =item DESCRIPTION
11117
11118 =item AUTHOR
11119
11120 =back
11121
11122 =head2 Encode - character encodings
11123
11124 =over 4
11125
11126 =item SYNOPSIS
11127
11128 =item DESCRIPTION
11129
11130 =over 4
11131
11132 =item TERMINOLOGY
11133
11134 =back
11135
11136 =item ENCODINGS
11137
11138 =over 4
11139
11140 =item Characteristics of an Encoding
11141
11142 =item Types of Encodings
11143
11144 Fixed length 8-bit (or less) encodings, Fixed length 16-bit encodings,
11145 Fixed length 32-bit encodings, Multi-byte encodings, "Escape" encodings
11146
11147 =item Specifying Encodings
11148
11149 1. By name, 2. As an object
11150
11151 =item Encoding Names
11152
11153 The MIME name as defined in IETF RFCs, The name in the IANA registry, The
11154 name used by the organization that defined it
11155
11156 =back
11157
11158 =item PERL ENCODING API
11159
11160 =over 4
11161
11162 =item Generic Encoding Interface
11163
11164 =item Handling Malformed Data
11165
11166 Scheme 1, Scheme 2, Other Schemes
11167
11168 =item UTF-8 / utf8
11169
11170 =item Other Encodings of Unicode
11171
11172 =item Listing available encodings
11173
11174 =item Defining Aliases
11175
11176 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
11177 reference, e.g.:
11178
11179 =item Defining Encodings
11180
11181 =back
11182
11183 =item Encoding and IO
11184
11185 =item Encoding How to ...
11186
11187 IO with mixed content (faking iso-2020-*), MIME's Content-Length:, UTF-8
11188 strings in binary data, Perl/Encode wrappers on non-Unicode XS modules
11189
11190 =item Messing with Perl's Internals
11191
11192 is_utf8(STRING [, CHECK]), valid_utf8(STRING)
11193
11194 =item IMPLEMENTATION CLASSES
11195
11196 -E<gt>name, -E<gt>new_sequence, -E<gt>encode($string,$check),
11197 -E<gt>decode($octets,$check)
11198
11199 =over 4
11200
11201 =item Compiled Encodings
11202
11203 .enc, .ucm, .ucm, .c, .xs, ascii and iso-8859-*, IBM-1047 and two other
11204 variants of EBCDIC, symbol and dingbats as used by Tk on X11
11205
11206 =back
11207
11208 =item SEE ALSO
11209
11210 =back
11211
11212 =head2 Encode::Tcl - Tcl encodings
11213
11214 =over 4
11215
11216 =item SYNOPSIS
11217
11218 =item DESCRIPTION
11219
11220 =item SEE ALSO
11221
11222 =back
11223
11224 =head2 Encode::Tcl::Escape - Tcl Escape encodings
11225
11226 =over 4
11227
11228 =item SYNOPSIS
11229
11230 =item DESCRIPTION
11231
11232 =item SEE ALSO
11233
11234 =back
11235
11236 =head2 Encode::Tcl::Extended - Tcl EUC encodings
11237
11238 =over 4
11239
11240 =item SYNOPSIS
11241
11242 =item DESCRIPTION
11243
11244 =item SEE ALSO
11245
11246 =back
11247
11248 =head2 Encode::Tcl::Table - Tcl Table encodings
11249
11250 =over 4
11251
11252 =item SYNOPSIS
11253
11254 =item DESCRIPTION
11255
11256 =item SEE ALSO
11257
11258 =back
11259
11260 =head2 Encode::lib::Encode::Tcl, Encode::Tcl - Tcl encodings
11261
11262 =over 4
11263
11264 =item SYNOPSIS
11265
11266 =item DESCRIPTION
11267
11268 =item SEE ALSO
11269
11270 =back
11271
11272 =head2 Encode::lib::Encode::Tcl::Escape, Encode::Tcl::Escape - Tcl Escape
11273 encodings
11274
11275 =over 4
11276
11277 =item SYNOPSIS
11278
11279 =item DESCRIPTION
11280
11281 =item SEE ALSO
11282
11283 =back
11284
11285 =head2 Encode::lib::Encode::Tcl::Extended, Encode::Tcl::Extended - Tcl EUC
11286 encodings
11287
11288 =over 4
11289
11290 =item SYNOPSIS
11291
11292 =item DESCRIPTION
11293
11294 =item SEE ALSO
11295
11296 =back
11297
11298 =head2 Encode::lib::Encode::Tcl::Table, Encode::Tcl::Table - Tcl Table
11299 encodings
11300
11301 =over 4
11302
11303 =item SYNOPSIS
11304
11305 =item DESCRIPTION
11306
11307 =item SEE ALSO
11308
11309 =back
11310
11311 =head2 Encode::lib::EncodeFormat, EncodeFormat - the format of encoding
11312 tables of the Encode extension
11313
11314 =over 4
11315
11316 =item DESCRIPTION
11317
11318 [1]   B<S>, [2]   B<D>, [3]   B<M>, [4]   B<E>
11319
11320 =item KEYWORDS
11321
11322 =item COPYRIGHT
11323
11324 =back
11325
11326 =head2 EncodeFormat - the format of encoding tables of the Encode extension
11327
11328 =over 4
11329
11330 =item DESCRIPTION
11331
11332 [1]   B<S>, [2]   B<D>, [3]   B<M>, [4]   B<E>
11333
11334 =item KEYWORDS
11335
11336 =item COPYRIGHT
11337
11338 =back
11339
11340 =head2 English - use nice English (or awk) names for ugly punctuation
11341 variables
11342
11343 =over 4
11344
11345 =item SYNOPSIS
11346
11347 =item DESCRIPTION
11348
11349 =item PERFORMANCE
11350
11351 =back
11352
11353 =head2 Env - perl module that imports environment variables as scalars or
11354 arrays
11355
11356 =over 4
11357
11358 =item SYNOPSIS
11359
11360 =item DESCRIPTION
11361
11362 =item LIMITATIONS
11363
11364 =item AUTHOR
11365
11366 =back
11367
11368 =head2 Errno - System errno constants
11369
11370 =over 4
11371
11372 =item SYNOPSIS
11373
11374 =item DESCRIPTION
11375
11376 =item CAVEATS
11377
11378 =item AUTHOR
11379
11380 =item COPYRIGHT
11381
11382 =back
11383
11384 =head2 Exporter - Implements default import method for modules
11385
11386 =over 4
11387
11388 =item SYNOPSIS
11389
11390 =item DESCRIPTION
11391
11392 =over 4
11393
11394 =item How to Export
11395
11396 =item Selecting What To Export
11397
11398 =item How to Import
11399
11400 C<use ModuleName;>, C<use ModuleName ();>, C<use ModuleName qw(...);>
11401
11402 =back
11403
11404 =item Advanced features
11405
11406 =over 4
11407
11408 =item Specialised Import Lists
11409
11410 =item Exporting without using Exporter's import method
11411
11412 =item Module Version Checking
11413
11414 =item Managing Unknown Symbols
11415
11416 =item Tag Handling Utility Functions
11417
11418 =item Generating combined tags
11419
11420 =item C<AUTOLOAD>ed Constants
11421
11422 =back
11423
11424 =back
11425
11426 =head2 Exporter::Heavy - Exporter guts
11427
11428 =over 4
11429
11430 =item SYNOPSIS
11431
11432 =item DESCRIPTION
11433
11434 =back
11435
11436 =head2 ExtUtils::Command - utilities to replace common UNIX commands in
11437 Makefiles etc.
11438
11439 =over 4
11440
11441 =item SYNOPSIS
11442
11443 =item DESCRIPTION
11444
11445 =back
11446
11447 cat
11448
11449 eqtime src dst
11450
11451 rm_rf files...
11452
11453 rm_f files...
11454
11455 touch files ..
11456
11457 mv source... destination
11458
11459 cp source... destination
11460
11461 chmod mode files..
11462
11463 mkpath directory..
11464
11465 test_f file
11466
11467 =over 4
11468
11469 =item BUGS
11470
11471 =item SEE ALSO 
11472
11473 =item AUTHOR
11474
11475 =back
11476
11477 =head2 ExtUtils::Constant - generate XS code to import C header constants
11478
11479 =over 4
11480
11481 =item SYNOPSIS
11482
11483 =item DESCRIPTION
11484
11485 =item USAGE
11486
11487 IV, UV, NV, PV, PVN, SV, YES, NO, UNDEF
11488
11489 =item FUNCTIONS
11490
11491 =back
11492
11493 C_stringify NAME
11494
11495 constant_types
11496
11497 memEQ_clause NAME, CHECKED_AT, INDENT
11498
11499 assign INDENT, TYPE, PRE, POST, VALUE..
11500
11501 return_clause
11502
11503 switch_clause INDENT, NAMELEN, ITEMHASH, ITEM..
11504
11505 params WHAT
11506
11507 dump_names
11508
11509 dogfood
11510
11511 C_constant, name, type, value, macro, default, pre, post, def_pre =item
11512 def_post
11513
11514 XS_constant PACKAGE, TYPES, SUBNAME, C_SUBNAME
11515
11516 autoload PACKAGE, VERSION, AUTOLOADER
11517
11518 WriteMakefileSnippet
11519
11520 WriteConstants ATTRIBUTE =E<gt> VALUE [, ...], NAME, DEFAULT_TYPE,
11521 BREAKOUT_AT, NAMES, C_FILE, XS_FILE, SUBNAME, C_SUBNAME
11522
11523 =over 4
11524
11525 =item AUTHOR
11526
11527 =back
11528
11529 =head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
11530
11531 =over 4
11532
11533 =item SYNOPSIS
11534
11535 =item DESCRIPTION
11536
11537 =item @EXPORT
11538
11539 =item FUNCTIONS
11540
11541 xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
11542 ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
11543
11544 =item EXAMPLES
11545
11546 =item SEE ALSO
11547
11548 =item AUTHOR
11549
11550 =back
11551
11552 =head2 ExtUtils::Install - install files from here to there
11553
11554 =over 4
11555
11556 =item SYNOPSIS
11557
11558 =item DESCRIPTION
11559
11560 =back
11561
11562 =head2 ExtUtils::Installed - Inventory management of installed modules
11563
11564 =over 4
11565
11566 =item SYNOPSIS
11567
11568 =item DESCRIPTION
11569
11570 =item USAGE
11571
11572 =item FUNCTIONS
11573
11574 new(), modules(), files(), directories(), directory_tree(), validate(),
11575 packlist(), version()
11576
11577 =item EXAMPLE
11578
11579 =item AUTHOR
11580
11581 =back
11582
11583 =head2 ExtUtils::Liblist - determine libraries to use and how to use them
11584
11585 =over 4
11586
11587 =item SYNOPSIS
11588
11589 =item DESCRIPTION
11590
11591 For static extensions, For dynamic extensions, For dynamic extensions
11592
11593 =over 4
11594
11595 =item EXTRALIBS
11596
11597 =item LDLOADLIBS and LD_RUN_PATH
11598
11599 =item BSLOADLIBS
11600
11601 =back
11602
11603 =item PORTABILITY
11604
11605 =over 4
11606
11607 =item VMS implementation
11608
11609 =item Win32 implementation
11610
11611 =back
11612
11613 =item SEE ALSO
11614
11615 =back
11616
11617 =head2 ExtUtils::MM_BeOS - methods to override UN*X behaviour in
11618 ExtUtils::MakeMaker
11619
11620 =over 4
11621
11622 =item SYNOPSIS
11623
11624 =item DESCRIPTION
11625
11626 =back
11627
11628 perl_archive
11629
11630 =head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
11631 ExtUtils::MakeMaker
11632
11633 =over 4
11634
11635 =item SYNOPSIS
11636
11637 =item DESCRIPTION
11638
11639 canonpath, cflags, manifypods, perl_archive
11640
11641 =back
11642
11643 =head2 ExtUtils::MM_NW5 - methods to override UN*X behaviour in
11644 ExtUtils::MakeMaker
11645
11646 =over 4
11647
11648 =item SYNOPSIS
11649
11650 =item DESCRIPTION
11651
11652 =back
11653
11654 catfile
11655
11656 constants (o)
11657
11658 static_lib (o)
11659
11660 dynamic_bs (o)
11661
11662 dynamic_lib (o)
11663
11664 canonpath
11665
11666 perl_script
11667
11668 pm_to_blib
11669
11670 test_via_harness (o)
11671
11672 tool_autosplit (override)
11673
11674 tools_other (o)
11675
11676 xs_o (o)
11677
11678 top_targets (o)
11679
11680 htmlifypods (o)
11681
11682 manifypods (o)
11683
11684 dist_ci (o)
11685
11686 dist_core (o)
11687
11688 pasthru (o)
11689
11690 =head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
11691 ExtUtils::MakeMaker
11692
11693 =over 4
11694
11695 =item SYNOPSIS
11696
11697 =item DESCRIPTION
11698
11699 =item METHODS
11700
11701 =back
11702
11703 perl_archive_after
11704
11705 =head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
11706
11707 =over 4
11708
11709 =item SYNOPSIS
11710
11711 =item DESCRIPTION
11712
11713 =item METHODS
11714
11715 =over 4
11716
11717 =item Preloaded methods
11718
11719 canonpath
11720
11721 =back
11722
11723 =back
11724
11725 catdir
11726
11727 catfile
11728
11729 curdir
11730
11731 rootdir
11732
11733 updir
11734
11735 =over 4
11736
11737 =item SelfLoaded methods
11738
11739 c_o (o)
11740
11741 =back
11742
11743 cflags (o)
11744
11745 clean (o)
11746
11747 const_cccmd (o)
11748
11749 const_config (o)
11750
11751 const_loadlibs (o)
11752
11753 constants (o)
11754
11755 depend (o)
11756
11757 dir_target (o)
11758
11759 dist (o)
11760
11761 dist_basics (o)
11762
11763 dist_ci (o)
11764
11765 dist_core (o)
11766
11767 dist_dir (o)
11768
11769 dist_test (o)
11770
11771 dlsyms (o)
11772
11773 dynamic (o)
11774
11775 dynamic_bs (o)
11776
11777 dynamic_lib (o)
11778
11779 exescan
11780
11781 extliblist
11782
11783 file_name_is_absolute
11784
11785 find_perl
11786
11787 =over 4
11788
11789 =item Methods to actually produce chunks of text for the Makefile
11790
11791 fixin
11792
11793 =back
11794
11795 force (o)
11796
11797 guess_name
11798
11799 has_link_code
11800
11801 htmlifypods (o)
11802
11803 init_dirscan
11804
11805 init_main
11806
11807 init_others
11808
11809 install (o)
11810
11811 installbin (o)
11812
11813 libscan (o)
11814
11815 linkext (o)
11816
11817 lsdir
11818
11819 macro (o)
11820
11821 makeaperl (o)
11822
11823 makefile (o)
11824
11825 manifypods (o)
11826
11827 maybe_command
11828
11829 maybe_command_in_dirs
11830
11831 needs_linking (o)
11832
11833 nicetext
11834
11835 parse_version
11836
11837 parse_abstract
11838
11839 pasthru (o)
11840
11841 path
11842
11843 perl_script
11844
11845 perldepend (o)
11846
11847 ppd
11848
11849 perm_rw (o)
11850
11851 perm_rwx (o)
11852
11853 pm_to_blib
11854
11855 post_constants (o)
11856
11857 post_initialize (o)
11858
11859 postamble (o)
11860
11861 prefixify
11862
11863 processPL (o)
11864
11865 quote_paren
11866
11867 realclean (o)
11868
11869 replace_manpage_separator
11870
11871 static (o)
11872
11873 static_lib (o)
11874
11875 staticmake (o)
11876
11877 subdir_x (o)
11878
11879 subdirs (o)
11880
11881 test (o)
11882
11883 test_via_harness (o)
11884
11885 test_via_script (o)
11886
11887 tool_autosplit (o)
11888
11889 tools_other (o)
11890
11891 tool_xsubpp (o)
11892
11893 top_targets (o)
11894
11895 writedoc
11896
11897 xs_c (o)
11898
11899 xs_cpp (o)
11900
11901 xs_o (o)
11902
11903 perl_archive
11904
11905 perl_archive_after
11906
11907 export_list
11908
11909 =over 4
11910
11911 =item SEE ALSO
11912
11913 =back
11914
11915 =head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
11916 ExtUtils::MakeMaker
11917
11918 =over 4
11919
11920 =item SYNOPSIS
11921
11922 =item DESCRIPTION
11923
11924 =over 4
11925
11926 =item Methods always loaded
11927
11928 wraplist
11929
11930 =back
11931
11932 =back
11933
11934 rootdir (override)
11935
11936 =over 4
11937
11938 =item SelfLoaded methods
11939
11940 guess_name (override)
11941
11942 =back
11943
11944 find_perl (override)
11945
11946 path (override)
11947
11948 maybe_command (override)
11949
11950 maybe_command_in_dirs (override)
11951
11952 perl_script (override)
11953
11954 file_name_is_absolute (override)
11955
11956 replace_manpage_separator
11957
11958 init_others (override)
11959
11960 constants (override)
11961
11962 cflags (override)
11963
11964 const_cccmd (override)
11965
11966 pm_to_blib (override)
11967
11968 tool_autosplit (override)
11969
11970 tool_sxubpp (override)
11971
11972 xsubpp_version (override)
11973
11974 tools_other (override)
11975
11976 dist (override)
11977
11978 c_o (override)
11979
11980 xs_c (override)
11981
11982 xs_o (override)
11983
11984 top_targets (override)
11985
11986 dlsyms (override)
11987
11988 dynamic_lib (override)
11989
11990 dynamic_bs (override)
11991
11992 static_lib (override)
11993
11994 manifypods (override)
11995
11996 processPL (override)
11997
11998 installbin (override)
11999
12000 subdir_x (override)
12001
12002 clean (override)
12003
12004 realclean (override)
12005
12006 dist_basics (override)
12007
12008 dist_core (override)
12009
12010 dist_dir (override)
12011
12012 dist_test (override)
12013
12014 install (override)
12015
12016 perldepend (override)
12017
12018 makefile (override)
12019
12020 test (override)
12021
12022 test_via_harness (override)
12023
12024 test_via_script (override)
12025
12026 makeaperl (override)
12027
12028 nicetext (override)
12029
12030 =head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
12031 ExtUtils::MakeMaker
12032
12033 =over 4
12034
12035 =item SYNOPSIS
12036
12037 =item DESCRIPTION
12038
12039 =back
12040
12041 catfile
12042
12043 constants (o)
12044
12045 static_lib (o)
12046
12047 dynamic_bs (o)
12048
12049 dynamic_lib (o)
12050
12051 canonpath
12052
12053 perl_script
12054
12055 pm_to_blib
12056
12057 test_via_harness (o)
12058
12059 tool_autosplit (override)
12060
12061 tools_other (o)
12062
12063 xs_o (o)
12064
12065 top_targets (o)
12066
12067 htmlifypods (o)
12068
12069 manifypods (o)
12070
12071 dist_ci (o)
12072
12073 dist_core (o)
12074
12075 pasthru (o)
12076
12077 =head2 ExtUtils::MakeMaker - create an extension Makefile
12078
12079 =over 4
12080
12081 =item SYNOPSIS
12082
12083 =item DESCRIPTION
12084
12085 =over 4
12086
12087 =item How To Write A Makefile.PL
12088
12089 =item Default Makefile Behaviour
12090
12091 =item make test
12092
12093 =item make testdb
12094
12095 =item make install
12096
12097 =item PREFIX and LIB attribute
12098
12099 =item AFS users
12100
12101 =item Static Linking of a new Perl Binary
12102
12103 =item Determination of Perl Library and Installation Locations
12104
12105 =item Which architecture dependent directory?
12106
12107 =item Using Attributes and Parameters
12108
12109 ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CCFLAGS, CONFIG,
12110 CONFIGURE, DEFINE, DIR, DISTNAME, DL_FUNCS, DL_VARS, EXCLUDE_EXT,
12111 EXE_FILES, FIRST_MAKEFILE, FULLPERL, FUNCLIST, H, HTMLLIBPODS,
12112 HTMLSCRIPTPODS, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB, INSTALLBIN,
12113 INSTALLDIRS, INSTALLHTMLPRIVLIBDIR, INSTALLHTMLSCRIPTDIR,
12114 INSTALLHTMLSITELIBDIR, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB,
12115 INSTALLSCRIPT, INSTALLSITEARCH, INSTALLSITELIB, INST_ARCHLIB, INST_BIN,
12116 INST_EXE, INST_HTMLLIBDIR, INST_HTMLSCRIPTDIR, INST_LIB, INST_MAN1DIR,
12117 INST_MAN3DIR, INST_SCRIPT, LDFROM, LIB, LIBPERL_A, LIBS, LINKTYPE,
12118 MAKEAPERL, MAKEFILE, MAN1PODS, MAN3PODS, MAP_TARGET, MYEXTLIB, NAME,
12119 NEEDS_LINKING, NOECHO, NORECURS, NO_VC, OBJECT, OPTIMIZE, PERL, PERL_CORE,
12120 PERLMAINCC, PERL_ARCHLIB, PERL_LIB, PERL_MALLOC_OK, PERLRUN, PERM_RW,
12121 PERM_RWX, PL_FILES, PM, PMLIBDIRS, PM_FILTER, POLLUTE, PPM_INSTALL_EXEC,
12122 PPM_INSTALL_SCRIPT, PREFIX, PREREQ_PM, PREREQ_FATAL, PREREQ_PRINT,
12123 PRINT_PREREQ, SKIP, TEST_LIBS, VERSION, VERSION_FROM, XS, XSOPT,
12124 XSPROTOARG, XS_VERSION
12125
12126 =item Additional lowercase attributes
12127
12128 clean, depend, dist, dynamic_lib, linkext, macro, realclean, test,
12129 tool_autosplit
12130
12131 =item Overriding MakeMaker Methods
12132
12133 =item Hintsfile support
12134
12135 =item Distribution Support
12136
12137    make distcheck,    make skipcheck,    make distclean,    make manifest, 
12138   make distdir,    make tardist,    make dist,    make uutardist,    make
12139 shdist,    make zipdist,    make ci
12140
12141 =item Disabling an extension
12142
12143 =back
12144
12145 =item ENVIRONMENT
12146
12147 PERL_MM_OPT, PERL_MM_USE_DEFAULT
12148
12149 =item SEE ALSO
12150
12151 =item AUTHORS
12152
12153 =back
12154
12155 =head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
12156
12157 =over 4
12158
12159 =item SYNOPSIS
12160
12161 =item DESCRIPTION
12162
12163 =item MANIFEST.SKIP
12164
12165 =item EXPORT_OK
12166
12167 =item GLOBAL VARIABLES
12168
12169 =item DIAGNOSTICS
12170
12171 C<Not in MANIFEST:> I<file>, C<No such file:> I<file>, C<MANIFEST:> I<$!>,
12172 C<Added to MANIFEST:> I<file>
12173
12174 =item ENVIRONMENT
12175
12176 B<PERL_MM_MANIFEST_DEBUG>
12177
12178 =item SEE ALSO
12179
12180 =item AUTHOR
12181
12182 =back
12183
12184 =head2 ExtUtils::Miniperl, writemain - write the C code for perlmain.c
12185
12186 =over 4
12187
12188 =item SYNOPSIS
12189
12190 =item DESCRIPTION
12191
12192 =item SEE ALSO
12193
12194 =back
12195
12196 =head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
12197
12198 =over 4
12199
12200 =item SYNOPSIS
12201
12202 =item DESCRIPTION
12203
12204 =back
12205
12206 =head2 ExtUtils::Mksymlists - write linker options files for dynamic
12207 extension
12208
12209 =over 4
12210
12211 =item SYNOPSIS
12212
12213 =item DESCRIPTION
12214
12215 DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
12216
12217 =item AUTHOR
12218
12219 =item REVISION
12220
12221 =back
12222
12223 =head2 ExtUtils::Packlist - manage .packlist files
12224
12225 =over 4
12226
12227 =item SYNOPSIS
12228
12229 =item DESCRIPTION
12230
12231 =item USAGE
12232
12233 =item FUNCTIONS
12234
12235 new(), read(), write(), validate(), packlist_file()
12236
12237 =item EXAMPLE
12238
12239 =item AUTHOR
12240
12241 =back
12242
12243 =head2 ExtUtils::testlib - add blib/* directories to @INC
12244
12245 =over 4
12246
12247 =item SYNOPSIS
12248
12249 =item DESCRIPTION
12250
12251 =back
12252
12253 =head2 Fatal - replace functions with equivalents which succeed or die
12254
12255 =over 4
12256
12257 =item SYNOPSIS
12258
12259 =item DESCRIPTION
12260
12261 =item AUTHOR
12262
12263 =back
12264
12265 =head2 Fcntl - load the C Fcntl.h defines
12266
12267 =over 4
12268
12269 =item SYNOPSIS
12270
12271 =item DESCRIPTION
12272
12273 =item NOTE
12274
12275 =item EXPORTED SYMBOLS
12276
12277 =back
12278
12279 =head2 File::Basename, fileparse - split a pathname into pieces
12280
12281 =over 4
12282
12283 =item SYNOPSIS
12284
12285 =item DESCRIPTION
12286
12287 fileparse_set_fstype, fileparse
12288
12289 =item EXAMPLES
12290
12291 C<basename>, C<dirname>
12292
12293 =back
12294
12295 =head2 File::CheckTree, validate - run many filetest checks on a tree
12296
12297 =over 4
12298
12299 =item SYNOPSIS
12300
12301 =item DESCRIPTION
12302
12303 =back
12304
12305 =head2 File::Compare - Compare files or filehandles
12306
12307 =over 4
12308
12309 =item SYNOPSIS
12310
12311 =item DESCRIPTION
12312
12313 =item RETURN
12314
12315 =item AUTHOR
12316
12317 =back
12318
12319 =head2 File::Copy - Copy files or filehandles
12320
12321 =over 4
12322
12323 =item SYNOPSIS
12324
12325 =item DESCRIPTION
12326
12327 =over 4
12328
12329 =item Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
12330
12331 rmscopy($from,$to[,$date_flag])
12332
12333 =back
12334
12335 =item RETURN
12336
12337 =item NOTES
12338
12339 =item AUTHOR
12340
12341 =back
12342
12343 =head2 File::DosGlob - DOS like globbing and then some
12344
12345 =over 4
12346
12347 =item SYNOPSIS
12348
12349 =item DESCRIPTION
12350
12351 =item NOTES
12352
12353 =item EXPORTS (by request only)
12354
12355 =item BUGS
12356
12357 =item AUTHOR
12358
12359 =item HISTORY
12360
12361 =item SEE ALSO
12362
12363 =back
12364
12365 =head2 File::Find - Traverse a directory tree.
12366
12367 =over 4
12368
12369 =item SYNOPSIS
12370
12371 =item DESCRIPTION
12372
12373 B<find>, B<finddepth>
12374
12375 =over 4
12376
12377 =item %options
12378
12379 C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
12380 C<follow_fast>, C<follow_skip>, C<dangling_symlinks>, C<no_chdir>,
12381 C<untaint>, C<untaint_pattern>, C<untaint_skip>
12382
12383 =item The wanted function
12384
12385 C<$File::Find::dir> is the current directory name,, C<$_> is the current
12386 filename within that directory, C<$File::Find::name> is the complete
12387 pathname to the file
12388
12389 =back
12390
12391 =item WARNINGS
12392
12393 =item CAVEAT
12394
12395 $dont_use_nlink, symlinks
12396
12397 =item NOTES
12398
12399 =item HISTORY
12400
12401 =back
12402
12403 =head2 File::Glob - Perl extension for BSD glob routine
12404
12405 =over 4
12406
12407 =item SYNOPSIS
12408
12409 =item DESCRIPTION
12410
12411 C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
12412 C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
12413 C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
12414
12415 =item DIAGNOSTICS
12416
12417 C<GLOB_NOSPACE>, C<GLOB_ABEND>
12418
12419 =item NOTES
12420
12421 =item AUTHOR
12422
12423 =back
12424
12425 =head2 File::Path - create or remove directory trees
12426
12427 =over 4
12428
12429 =item SYNOPSIS
12430
12431 =item DESCRIPTION
12432
12433 =item AUTHORS
12434
12435 =back
12436
12437 =head2 File::Spec - portably perform operations on file names
12438
12439 =over 4
12440
12441 =item SYNOPSIS
12442
12443 =item DESCRIPTION
12444
12445 =item METHODS
12446
12447 canonpath, catdir, catfile, curdir, devnull, rootdir, tmpdir, updir,
12448 no_upwards, case_tolerant, file_name_is_absolute, path, join, splitpath,
12449 splitdir, catpath(), abs2rel, rel2abs()
12450
12451 =item SEE ALSO
12452
12453 =item AUTHORS
12454
12455 =back
12456
12457 =head2 File::Spec::Cygwin - methods for Cygwin file specs
12458
12459 =over 4
12460
12461 =item SYNOPSIS
12462
12463 =item DESCRIPTION
12464
12465 =back
12466
12467 =head2 File::Spec::Epoc - methods for Epoc file specs
12468
12469 =over 4
12470
12471 =item SYNOPSIS
12472
12473 =item DESCRIPTION
12474
12475 devnull
12476
12477 =back
12478
12479 tmpdir
12480
12481 path
12482
12483 canonpath()
12484
12485 splitpath
12486
12487 splitdir
12488
12489 catpath
12490
12491 abs2rel
12492
12493 rel2abs()
12494
12495 =over 4
12496
12497 =item SEE ALSO
12498
12499 =back
12500
12501 =head2 File::Spec::Functions - portably perform operations on file names
12502
12503 =over 4
12504
12505 =item SYNOPSIS
12506
12507 =item DESCRIPTION
12508
12509 =over 4
12510
12511 =item Exports
12512
12513 =back
12514
12515 =item SEE ALSO
12516
12517 =back
12518
12519 =head2 File::Spec::Mac - File::Spec for Mac OS (Classic)
12520
12521 =over 4
12522
12523 =item SYNOPSIS
12524
12525 =item DESCRIPTION
12526
12527 =item METHODS
12528
12529 canonpath
12530
12531 =back
12532
12533 catdir()
12534
12535 catfile
12536
12537 curdir
12538
12539 devnull
12540
12541 rootdir
12542
12543 tmpdir
12544
12545 updir
12546
12547 file_name_is_absolute
12548
12549 path
12550
12551 splitpath
12552
12553 splitdir
12554
12555 catpath
12556
12557 abs2rel
12558
12559 rel2abs
12560
12561 =over 4
12562
12563 =item AUTHORS
12564
12565 =item SEE ALSO
12566
12567 =back
12568
12569 canonpath
12570
12571 splitpath
12572
12573 splitdir
12574
12575 catpath
12576
12577 =head2 File::Spec::OS2 - methods for OS/2 file specs
12578
12579 =over 4
12580
12581 =item SYNOPSIS
12582
12583 =item DESCRIPTION
12584
12585 =back
12586
12587 =head2 File::Spec::Unix - File::Spec for Unix, base for other File::Spec
12588 modules
12589
12590 =over 4
12591
12592 =item SYNOPSIS
12593
12594 =item DESCRIPTION
12595
12596 =item METHODS
12597
12598 canonpath()
12599
12600 =back
12601
12602 catdir()
12603
12604 catfile
12605
12606 curdir
12607
12608 devnull
12609
12610 rootdir
12611
12612 tmpdir
12613
12614 updir
12615
12616 no_upwards
12617
12618 case_tolerant
12619
12620 file_name_is_absolute
12621
12622 path
12623
12624 join
12625
12626 splitpath
12627
12628 splitdir
12629
12630 catpath()
12631
12632 abs2rel
12633
12634 rel2abs()
12635
12636 =over 4
12637
12638 =item SEE ALSO
12639
12640 =back
12641
12642 =head2 File::Spec::VMS - methods for VMS file specs
12643
12644 =over 4
12645
12646 =item SYNOPSIS
12647
12648 =item DESCRIPTION
12649
12650 eliminate_macros
12651
12652 =back
12653
12654 fixpath
12655
12656 =over 4
12657
12658 =item Methods always loaded
12659
12660 canonpath (override)
12661
12662 =back
12663
12664 catdir
12665
12666 catfile
12667
12668 curdir (override)
12669
12670 devnull (override)
12671
12672 rootdir (override)
12673
12674 tmpdir (override)
12675
12676 updir (override)
12677
12678 case_tolerant (override)
12679
12680 path (override)
12681
12682 file_name_is_absolute (override)
12683
12684 splitpath (override)
12685
12686 splitdir (override)
12687
12688 catpath (override)
12689
12690 abs2rel (override)
12691
12692 rel2abs (override)
12693
12694 =over 4
12695
12696 =item SEE ALSO
12697
12698 =back
12699
12700 =head2 File::Spec::Win32 - methods for Win32 file specs
12701
12702 =over 4
12703
12704 =item SYNOPSIS
12705
12706 =item DESCRIPTION
12707
12708 devnull
12709
12710 =back
12711
12712 tmpdir
12713
12714 catfile
12715
12716 canonpath
12717
12718 splitpath
12719
12720 splitdir
12721
12722 catpath
12723
12724 =over 4
12725
12726 =item SEE ALSO
12727
12728 =back
12729
12730 =head2 File::Temp - return name and handle of a temporary file safely
12731
12732 =over 4
12733
12734 =item PORTABILITY
12735
12736 =item SYNOPSIS
12737
12738 =item DESCRIPTION
12739
12740 =back
12741
12742 =over 4
12743
12744 =item FUNCTIONS
12745
12746 B<tempfile>
12747
12748 =back
12749
12750 B<tempdir>
12751
12752 =over 4
12753
12754 =item MKTEMP FUNCTIONS
12755
12756 B<mkstemp>
12757
12758 =back
12759
12760 B<mkstemps>
12761
12762 B<mkdtemp>
12763
12764 B<mktemp>
12765
12766 =over 4
12767
12768 =item POSIX FUNCTIONS
12769
12770 B<tmpnam>
12771
12772 =back
12773
12774 B<tmpfile>
12775
12776 =over 4
12777
12778 =item ADDITIONAL FUNCTIONS
12779
12780 B<tempnam>
12781
12782 =back
12783
12784 =over 4
12785
12786 =item UTILITY FUNCTIONS
12787
12788 B<unlink0>
12789
12790 =back
12791
12792 =over 4
12793
12794 =item PACKAGE VARIABLES
12795
12796 B<safe_level>, STANDARD, MEDIUM, HIGH
12797
12798 =back
12799
12800 TopSystemUID
12801
12802 =over 4
12803
12804 =item WARNING
12805
12806 =over 4
12807
12808 =item Temporary files and NFS
12809
12810 =back
12811
12812 =item HISTORY
12813
12814 =item SEE ALSO
12815
12816 =item AUTHOR
12817
12818 =back
12819
12820 =head2 File::stat - by-name interface to Perl's built-in stat() functions
12821
12822 =over 4
12823
12824 =item SYNOPSIS
12825
12826 =item DESCRIPTION
12827
12828 =item NOTE
12829
12830 =item AUTHOR
12831
12832 =back
12833
12834 =head2 FileCache - keep more files open than the system permits
12835
12836 =over 4
12837
12838 =item SYNOPSIS
12839
12840 =item DESCRIPTION
12841
12842 =item BUGS
12843
12844 =back
12845
12846 =head2 FileHandle - supply object methods for filehandles
12847
12848 =over 4
12849
12850 =item SYNOPSIS
12851
12852 =item DESCRIPTION
12853
12854 $fh->print, $fh->printf, $fh->getline, $fh->getlines
12855
12856 =item SEE ALSO
12857
12858 =back
12859
12860 =head2 Filter::Simple - Simplified source filtering
12861
12862 =over 4
12863
12864 =item SYNOPSIS
12865
12866 =item DESCRIPTION
12867
12868 =over 4
12869
12870 =item The Problem
12871
12872 =item A Solution
12873
12874 =item Disabling or changing <no> behaviour
12875
12876 =item All-in-one interface
12877
12878 =item Filtering only specific components of source code
12879
12880 C<"code">, C<"executable">, C<"quotelike">, C<"string">, C<"regex">,
12881 C<"all">
12882
12883 =item Filtering only the code parts of source code
12884
12885 Most source code ceases to be grammatically correct when it is broken up
12886 into the pieces between string literals and regexes. So the C<'code'>
12887 component filter behaves slightly differently from the other partial
12888 filters
12889 described in the previous section.
12890
12891 =item Using Filter::Simple with an explicit C<import> subroutine
12892
12893 =item Using Filter::Simple and Exporter together
12894
12895 =item How it works
12896
12897 =back
12898
12899 =item AUTHOR
12900
12901 =item COPYRIGHT
12902
12903 =back
12904
12905 =head2 Filter::Util::Call - Perl Source Filter Utility Module
12906
12907 =over 4
12908
12909 =item SYNOPSIS
12910
12911 =item DESCRIPTION
12912
12913 =over 4
12914
12915 =item B<use Filter::Util::Call>
12916
12917 =item B<import()>
12918
12919 =item B<filter() and anonymous sub>
12920
12921 B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
12922
12923 =back
12924
12925 =item EXAMPLES
12926
12927 =over 4
12928
12929 =item Example 1: A simple filter.
12930
12931 =item Example 2: Using the context
12932
12933 =item Example 3: Using the context within the filter
12934
12935 =item Example 4: Using filter_del
12936
12937 =back
12938
12939 =item Filter::Simple
12940
12941 =item AUTHOR
12942
12943 =item DATE
12944
12945 =back
12946
12947 =head2 FindBin - Locate directory of original perl script
12948
12949 =over 4
12950
12951 =item SYNOPSIS
12952
12953 =item DESCRIPTION
12954
12955 =item EXPORTABLE VARIABLES
12956
12957 =item KNOWN ISSUES
12958
12959 =item KNOWN BUGS
12960
12961 =item AUTHORS
12962
12963 =item COPYRIGHT
12964
12965 =back
12966
12967 =head2 GDBM_File - Perl5 access to the gdbm library.
12968
12969 =over 4
12970
12971 =item SYNOPSIS
12972
12973 =item DESCRIPTION
12974
12975 =item AVAILABILITY
12976
12977 =item BUGS
12978
12979 =item SEE ALSO
12980
12981 =back
12982
12983 =head2 Getopt::Long - Extended processing of command line options
12984
12985 =over 4
12986
12987 =item SYNOPSIS
12988
12989 =item DESCRIPTION
12990
12991 =item Command Line Options, an Introduction
12992
12993 =item Getting Started with Getopt::Long
12994
12995 =over 4
12996
12997 =item Simple options
12998
12999 =item A little bit less simple options
13000
13001 =item Mixing command line option with other arguments
13002
13003 =item Options with values
13004
13005 =item Options with multiple values
13006
13007 =item Options with hash values
13008
13009 =item User-defined subroutines to handle options
13010
13011 =item Options with multiple names
13012
13013 =item Case and abbreviations
13014
13015 =item Summary of Option Specifications
13016
13017 !, +, s, i, o, f, : I<type> [ I<desttype> ], : I<number> [ I<desttype> ], :
13018 + [ I<desttype> ]
13019
13020 =back
13021
13022 =item Advanced Possibilities
13023
13024 =over 4
13025
13026 =item Object oriented interface
13027
13028 =item Documentation and help texts
13029
13030 =item Storing options in a hash
13031
13032 =item Bundling
13033
13034 =item The lonesome dash
13035
13036 =item Argument callback
13037
13038 =back
13039
13040 =item Configuring Getopt::Long
13041
13042 default, posix_default, auto_abbrev, getopt_compat, gnu_compat, gnu_getopt,
13043 require_order, permute, bundling (default: disabled), bundling_override
13044 (default: disabled), ignore_case  (default: enabled), ignore_case_always
13045 (default: disabled), pass_through (default: disabled), prefix,
13046 prefix_pattern, debug (default: disabled)
13047
13048 =item Return values and Errors
13049
13050 =item Legacy
13051
13052 =over 4
13053
13054 =item Default destinations
13055
13056 =item Alternative option starters
13057
13058 =item Configuration variables
13059
13060 =back
13061
13062 =item Trouble Shooting
13063
13064 =over 4
13065
13066 =item Warning: Ignoring '!' modifier for short option
13067
13068 =item GetOptions does not return a false result when an option is not
13069 supplied
13070
13071 =item GetOptions does not split the command line correctly
13072
13073 =item How do I put a "-?" option into a Getopt::Long?
13074
13075 =back
13076
13077 =item AUTHOR
13078
13079 =item COPYRIGHT AND DISCLAIMER
13080
13081 =back
13082
13083 =head2 Getopt::Std, getopt - Process single-character switches with switch
13084 clustering
13085
13086 =over 4
13087
13088 =item SYNOPSIS
13089
13090 =item DESCRIPTION
13091
13092 =back
13093
13094 =head2 Hash::Util - A selection of general-utility hash subroutines
13095
13096 =over 4
13097
13098 =item SYNOPSIS
13099
13100 =item DESCRIPTION
13101
13102 =over 4
13103
13104 =item Restricted hashes
13105
13106 lock_keys, unlock_keys
13107
13108 =back
13109
13110 =back
13111
13112 lock_value, unlock_value
13113
13114 B<lock_hash>, B<unlock_hash>
13115
13116 =over 4
13117
13118 =item AUTHOR
13119
13120 =item SEE ALSO
13121
13122 =back
13123
13124 =head2 I18N::Collate - compare 8-bit scalar data according to the current
13125 locale
13126
13127 =over 4
13128
13129 =item SYNOPSIS
13130
13131 =item DESCRIPTION
13132
13133 =back
13134
13135 =head2 I18N::LangTags - functions for dealing with RFC3066-style language
13136 tags
13137
13138 =over 4
13139
13140 =item SYNOPSIS
13141
13142 =item DESCRIPTION
13143
13144 =back
13145
13146 the function is_language_tag($lang1)
13147
13148 the function extract_language_tags($whatever)
13149
13150 the function same_language_tag($lang1, $lang2)
13151
13152 the function similarity_language_tag($lang1, $lang2)
13153
13154 the function is_dialect_of($lang1, $lang2)
13155
13156 the function super_languages($lang1)
13157
13158 the function locale2language_tag($locale_identifier)
13159
13160 the function encode_language_tag($lang1)
13161
13162 the function alternate_language_tags($lang1)
13163
13164 the function @langs = panic_languages(@accept_languages)
13165
13166 =over 4
13167
13168 =item ABOUT LOWERCASING
13169
13170 =item ABOUT UNICODE PLAINTEXT LANGUAGE TAGS
13171
13172 =item SEE ALSO
13173
13174 =item COPYRIGHT
13175
13176 =item AUTHOR
13177
13178 =back
13179
13180 =head2 I18N::LangTags::List -- tags and names for human languages
13181
13182 =over 4
13183
13184 =item SYNOPSIS
13185
13186 =item DESCRIPTION
13187
13188 =item ABOUT LANGUAGE TAGS
13189
13190 =item LIST OF LANGUAGES
13191
13192 {ab} : Abkhazian, {ace} : Achinese, {ach} : Acoli, {ada} : Adangme, {aa} :
13193 Afar, {afh} : Afrihili, {af} : Afrikaans, [{afa} : Afro-Asiatic (Other)],
13194 {aka} : Akan, {akk} : Akkadian, {sq} : Albanian, {ale} : Aleut, [{alg} :
13195 Algonquian languages], [{tut} : Altaic (Other)], {am} : Amharic, {i-ami} :
13196 Ami, [{apa} : Apache languages], {ar} : Arabic, {arc} : Aramaic, {arp} :
13197 Arapaho, {arn} : Araucanian, {arw} : Arawak, {hy} : Armenian, [{art} :
13198 Artificial (Other)], {as} : Assamese, [{ath} : Athapascan languages],
13199 [{aus} : Australian languages], [{map} : Austronesian (Other)], {ava} :
13200 Avaric, {ae} : Avestan, {awa} : Awadhi, {ay} : Aymara, {az} : Azerbaijani,
13201 {ban} : Balinese, [{bat} : Baltic (Other)], {bal} : Baluchi, {bam} :
13202 Bambara, [{bai} : Bamileke languages], {bad} : Banda, [{bnt} : Bantu
13203 (Other)], {bas} : Basa, {ba} : Bashkir, {eu} : Basque, {btk} : Batak
13204 (Indonesia), {bej} : Beja, {be} : Belarusian, {bem} : Bemba, {bn} :
13205 Bengali, [{ber} : Berber (Other)], {bho} : Bhojpuri, {bh} : Bihari, {bik} :
13206 Bikol, {bin} : Bini, {bi} : Bislama, {bs} : Bosnian, {bra} : Braj, {br} :
13207 Breton, {bug} : Buginese, {bg} : Bulgarian, {i-bnn} : Bunun, {bua} :
13208 Buriat, {my} : Burmese, {cad} : Caddo, {car} : Carib, {ca} : Catalan,
13209 [{cau} : Caucasian (Other)], {ceb} : Cebuano, [{cel} : Celtic (Other)],
13210 [{cai} : Central American Indian (Other)], {chg} : Chagatai, [{cmc} :
13211 Chamic languages], {ch} : Chamorro, {ce} : Chechen, {chr} : Cherokee, {chy}
13212 : Cheyenne, {chb} : Chibcha, {ny} : Chichewa, {zh} : Chinese, {chn} :
13213 Chinook Jargon, {chp} : Chipewyan, {cho} : Choctaw, {cu} : Church Slavic,
13214 {chk} : Chuukese, {cv} : Chuvash, {cop} : Coptic, {kw} : Cornish, {co} :
13215 Corsican, {cre} : Cree, {mus} : Creek, [{cpe} : English-based Creoles and
13216 pidgins (Other)], [{cpf} : French-based Creoles and pidgins (Other)],
13217 [{cpp} : Portuguese-based Creoles and pidgins (Other)], [{crp} : Creoles
13218 and pidgins (Other)], {hr} : Croatian, [{cus} : Cushitic (Other)], {cs} :
13219 Czech, {dak} : Dakota, {da} : Danish, {day} : Dayak, {i-default} : Default
13220 (Fallthru) Language, {del} : Delaware, {din} : Dinka, {div} : Divehi, {doi}
13221 : Dogri, {dgr} : Dogrib, [{dra} : Dravidian (Other)], {dua} : Duala, {nl} :
13222 Dutch, {dum} : Middle Dutch (ca.1050-1350), {dyu} : Dyula, {dz} : Dzongkha,
13223 {efi} : Efik, {egy} : Ancient Egyptian, {eka} : Ekajuk, {elx} : Elamite,
13224 {en} : English, {enm} : Old English (1100-1500), {ang} : Old English
13225 (ca.450-1100), {eo} : Esperanto, {et} : Estonian, {ewe} : Ewe, {ewo} :
13226 Ewondo, {fan} : Fang, {fat} : Fanti, {fo} : Faroese, {fj} : Fijian, {fi} :
13227 Finnish, [{fiu} : Finno-Ugrian (Other)], {fon} : Fon, {fr} : French, {frm}
13228 : Middle French (ca.1400-1600), {fro} : Old French (842-ca.1400), {fy} :
13229 Frisian, {fur} : Friulian, {ful} : Fulah, {gaa} : Ga, {gd} : Scots Gaelic,
13230 {gl} : Gallegan, {lug} : Ganda, {gay} : Gayo, {gba} : Gbaya, {gez} : Geez,
13231 {ka} : Georgian, {de} : German, {gmh} : Middle High German (ca.1050-1500),
13232 {goh} : Old High German (ca.750-1050), [{gem} : Germanic (Other)], {gil} :
13233 Gilbertese, {gon} : Gondi, {gor} : Gorontalo, {got} : Gothic, {grb} :
13234 Grebo, {grc} : Ancient Greek, {el} : Modern Greek, {gn} : Guarani, {gu} :
13235 Gujarati, {gwi} : Gwich'in, {hai} : Haida, {ha} : Hausa, {haw} : Hawaiian,
13236 {he} : Hebrew, {hz} : Herero, {hil} : Hiligaynon, {him} : Himachali, {hi} :
13237 Hindi, {ho} : Hiri Motu, {hit} : Hittite, {hmn} : Hmong, {hu} : Hungarian,
13238 {hup} : Hupa, {iba} : Iban, {is} : Icelandic, {ibo} : Igbo, {ijo} : Ijo,
13239 {ilo} : Iloko, [{inc} : Indic (Other)], [{ine} : Indo-European (Other)],
13240 {id} : Indonesian, {ia} : Interlingua (International Auxiliary Language
13241 Association), {ie} : Interlingue, {iu} : Inuktitut, {ik} : Inupiaq, [{ira}
13242 : Iranian (Other)], {ga} : Irish, {mga} : Middle Irish (900-1200), {sga} :
13243 Old Irish (to 900), [{iro} : Iroquoian languages], {it} : Italian, {ja} :
13244 Japanese, {jw} : Javanese, {jrb} : Judeo-Arabic, {jpr} : Judeo-Persian,
13245 {kab} : Kabyle, {kac} : Kachin, {kl} : Kalaallisut, {kam} : Kamba, {kn} :
13246 Kannada, {kau} : Kanuri, {kaa} : Kara-Kalpak, {kar} : Karen, {ks} :
13247 Kashmiri, {kaw} : Kawi, {kk} : Kazakh, {kha} : Khasi, {km} : Khmer, [{khi}
13248 : Khoisan (Other)], {kho} : Khotanese, {ki} : Kikuyu, {kmb} : Kimbundu,
13249 {rw} : Kinyarwanda, {ky} : Kirghiz, {i-klingon} : Klingon, {kv} : Komi,
13250 {kon} : Kongo, {kok} : Konkani, {ko} : Korean, {kos} : Kosraean, {kpe} :
13251 Kpelle, {kro} : Kru, {kj} : Kuanyama, {kum} : Kumyk, {ku} : Kurdish, {kru}
13252 : Kurukh, {kut} : Kutenai, {lad} : Ladino, {lah} : Lahnda, {lam} : Lamba,
13253 {lo} : Lao, {la} : Latin, {lv} : Latvian, {lb} : Letzeburgesch, {lez} :
13254 Lezghian, {ln} : Lingala, {lt} : Lithuanian, {nds} : Low German, {loz} :
13255 Lozi, {lub} : Luba-Katanga, {lua} : Luba-Lulua, {lui} : Luiseno, {lun} :
13256 Lunda, {luo} : Luo (Kenya and Tanzania), {lus} : Lushai, {mk} : Macedonian,
13257 {mad} : Madurese, {mag} : Magahi, {mai} : Maithili, {mak} : Makasar, {mg} :
13258 Malagasy, {ms} : Malay, {ml} : Malayalam, {mt} : Maltese, {mnc} : Manchu,
13259 {mdr} : Mandar, {man} : Mandingo, {mni} : Manipuri, [{mno} : Manobo
13260 languages], {gv} : Manx, {mi} : Maori, {mr} : Marathi, {chm} : Mari, {mh} :
13261 Marshall, {mwr} : Marwari, {mas} : Masai, [{myn} : Mayan languages], {men}
13262 : Mende, {mic} : Micmac, {min} : Minangkabau, {i-mingo} : Mingo, [{mis} :
13263 Miscellaneous languages], {moh} : Mohawk, {mo} : Moldavian, [{mkh} :
13264 Mon-Khmer (Other)], {lol} : Mongo, {mn} : Mongolian, {mos} : Mossi, [{mul}
13265 : Multiple languages], [{mun} : Munda languages], {nah} : Nahuatl, {na} :
13266 Nauru, {nv} : Navajo, {nd} : North Ndebele, {nr} : South Ndebele, {ng} :
13267 Ndonga, {ne} : Nepali, {new} : Newari, {nia} : Nias, [{nic} :
13268 Niger-Kordofanian (Other)], [{ssa} : Nilo-Saharan (Other)], {niu} : Niuean,
13269 {non} : Old Norse, [{nai} : North American Indian], {se} : Northern Sami,
13270 {no} : Norwegian, {nb} : Norwegian Bokmal, {nn} : Norwegian Nynorsk, [{nub}
13271 : Nubian languages], {nym} : Nyamwezi, {nyn} : Nyankole, {nyo} : Nyoro,
13272 {nzi} : Nzima, {oc} : Occitan (post 1500), {oji} : Ojibwa, {or} : Oriya,
13273 {om} : Oromo, {osa} : Osage, {os} : Ossetian; Ossetic, [{oto} : Otomian
13274 languages], {pal} : Pahlavi, {i-pwn} : Paiwan, {pau} : Palauan, {pi} :
13275 Pali, {pam} : Pampanga, {pag} : Pangasinan, {pa} : Panjabi, {pap} :
13276 Papiamento, [{paa} : Papuan (Other)], {fa} : Persian, {peo} : Old Persian
13277 (ca.600-400 B.C.), [{phi} : Philippine (Other)], {phn} : Phoenician, {pon}
13278 : Pohnpeian, {pl} : Polish, {pt} : Portuguese, [{pra} : Prakrit languages],
13279 {pro} : Old Provencal (to 1500), {ps} : Pushto, {qu} : Quechua, {rm} :
13280 Raeto-Romance, {raj} : Rajasthani, {rap} : Rapanui, {rar} : Rarotongan,
13281 [{qaa - qtz} : Reserved for local use.], [{roa} : Romance (Other)], {ro} :
13282 Romanian, {rom} : Romany, {rn} : Rundi, {ru} : Russian, [{sal} : Salishan
13283 languages], {sam} : Samaritan Aramaic, [{smi} : Sami languages (Other)],
13284 {sm} : Samoan, {sad} : Sandawe, {sg} : Sango, {sa} : Sanskrit, {sat} :
13285 Santali, {sc} : Sardinian, {sas} : Sasak, {sco} : Scots, {sel} : Selkup,
13286 [{sem} : Semitic (Other)], {sr} : Serbian, {srr} : Serer, {shn} : Shan,
13287 {sn} : Shona, {sid} : Sidamo, {sgn-...} : Sign Languages, {bla} : Siksika,
13288 {sd} : Sindhi, {si} : Sinhalese, [{sit} : Sino-Tibetan (Other)], [{sio} :
13289 Siouan languages], {den} : Slave (Athapascan), [{sla} : Slavic (Other)],
13290 {sk} : Slovak, {sl} : Slovenian, {sog} : Sogdian, {so} : Somali, {son} :
13291 Songhai, {snk} : Soninke, {wen} : Sorbian languages, {nso} : Northern
13292 Sotho, {st} : Southern Sotho, [{sai} : South American Indian (Other)], {es}
13293 : Spanish, {suk} : Sukuma, {sux} : Sumerian, {su} : Sundanese, {sus} :
13294 Susu, {sw} : Swahili, {ss} : Swati, {sv} : Swedish, {syr} : Syriac, {tl} :
13295 Tagalog, {ty} : Tahitian, [{tai} : Tai (Other)], {tg} : Tajik, {tmh} :
13296 Tamashek, {ta} : Tamil, {i-tao} : Tao, {tt} : Tatar, {i-tay} : Tayal, {te}
13297 : Telugu, {ter} : Tereno, {tet} : Tetum, {th} : Thai, {bo} : Tibetan, {tig}
13298 : Tigre, {ti} : Tigrinya, {tem} : Timne, {tiv} : Tiv, {tli} : Tlingit,
13299 {tpi} : Tok Pisin, {tkl} : Tokelau, {tog} : Tonga (Nyasa), {to} : Tonga
13300 (Tonga Islands), {tsi} : Tsimshian, {ts} : Tsonga, {i-tsu} : Tsou, {tn} :
13301 Tswana, {tum} : Tumbuka, {tr} : Turkish, {ota} : Ottoman Turkish
13302 (1500-1928), {tk} : Turkmen, {tvl} : Tuvalu, {tyv} : Tuvinian, {tw} : Twi,
13303 {uga} : Ugaritic, {ug} : Uighur, {uk} : Ukrainian, {umb} : Umbundu, {und} :
13304 Undetermined, {ur} : Urdu, {uz} : Uzbek, {vai} : Vai, {ven} : Venda, {vi} :
13305 Vietnamese, {vo} : Volapuk, {vot} : Votic, [{wak} : Wakashan languages],
13306 {wal} : Walamo, {war} : Waray, {was} : Washo, {cy} : Welsh, {wo} : Wolof,
13307 {x-...} : Unregistered (Semi-Private Use), {xh} : Xhosa, {sah} : Yakut,
13308 {yao} : Yao, {yap} : Yapese, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik
13309 languages], {znd} : Zande, [{zap} : Zapotec], {zen} : Zenaga, {za} :
13310 Zhuang, {zu} : Zulu, {zun} : Zuni
13311
13312 =item SEE ALSO
13313
13314 =item COPYRIGHT AND DISCLAIMER
13315
13316 =item AUTHOR
13317
13318 =back
13319
13320 =head2 I18N::Langinfo - query locale information
13321
13322 =over 4
13323
13324 =item SYNOPSIS
13325
13326 =item DESCRIPTION
13327
13328 =over 4
13329
13330 =item EXPORT
13331
13332 =back
13333
13334 =item SEE ALSO
13335
13336 =item AUTHOR
13337
13338 =item COPYRIGHT AND LICENSE
13339
13340 =back
13341
13342 =head2 IO - load various IO modules
13343
13344 =over 4
13345
13346 =item SYNOPSIS
13347
13348 =item DESCRIPTION
13349
13350 =back
13351
13352 =head2 IO::Dir - supply object methods for directory handles
13353
13354 =over 4
13355
13356 =item SYNOPSIS
13357
13358 =item DESCRIPTION
13359
13360 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
13361 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
13362
13363 =item SEE ALSO
13364
13365 =item AUTHOR
13366
13367 =item COPYRIGHT
13368
13369 =back
13370
13371 =head2 IO::File - supply object methods for filehandles
13372
13373 =over 4
13374
13375 =item SYNOPSIS
13376
13377 =item DESCRIPTION
13378
13379 =item CONSTRUCTOR
13380
13381 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
13382
13383 =item METHODS
13384
13385 open( FILENAME [,MODE [,PERMS]] )
13386
13387 =item SEE ALSO
13388
13389 =item HISTORY
13390
13391 =back
13392
13393 =head2 IO::Handle - supply object methods for I/O handles
13394
13395 =over 4
13396
13397 =item SYNOPSIS
13398
13399 =item DESCRIPTION
13400
13401 =item CONSTRUCTOR
13402
13403 new (), new_from_fd ( FD, MODE )
13404
13405 =item METHODS
13406
13407 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
13408 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
13409 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
13410 $io->blocking ( [ BOOL ] ), $io->untaint
13411
13412 =item NOTE
13413
13414 =item SEE ALSO
13415
13416 =item BUGS
13417
13418 =item HISTORY
13419
13420 =back
13421
13422 =head2 IO::Pipe - supply object methods for pipes
13423
13424 =over 4
13425
13426 =item SYNOPSIS
13427
13428 =item DESCRIPTION
13429
13430 =item CONSTRUCTOR
13431
13432 new ( [READER, WRITER] )
13433
13434 =item METHODS
13435
13436 reader ([ARGS]), writer ([ARGS]), handles ()
13437
13438 =item SEE ALSO
13439
13440 =item AUTHOR
13441
13442 =item COPYRIGHT
13443
13444 =back
13445
13446 =head2 IO::Poll - Object interface to system poll call
13447
13448 =over 4
13449
13450 =item SYNOPSIS
13451
13452 =item DESCRIPTION
13453
13454 =item METHODS
13455
13456 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
13457 IO ), handles( [ EVENT_MASK ] )
13458
13459 =item SEE ALSO
13460
13461 =item AUTHOR
13462
13463 =item COPYRIGHT
13464
13465 =back
13466
13467 =head2 IO::Seekable - supply seek based methods for I/O objects
13468
13469 =over 4
13470
13471 =item SYNOPSIS
13472
13473 =item DESCRIPTION
13474
13475 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
13476 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
13477 $io->tell
13478
13479 =item SEE ALSO
13480
13481 =item HISTORY
13482
13483 =back
13484
13485 =head2 IO::Select - OO interface to the select system call
13486
13487 =over 4
13488
13489 =item SYNOPSIS
13490
13491 =item DESCRIPTION
13492
13493 =item CONSTRUCTOR
13494
13495 new ( [ HANDLES ] )
13496
13497 =item METHODS
13498
13499 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
13500 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
13501 count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] )
13502
13503 =item EXAMPLE
13504
13505 =item AUTHOR
13506
13507 =item COPYRIGHT
13508
13509 =back
13510
13511 =head2 IO::Socket - Object interface to socket communications
13512
13513 =over 4
13514
13515 =item SYNOPSIS
13516
13517 =item DESCRIPTION
13518
13519 =item CONSTRUCTOR
13520
13521 new ( [ARGS] )
13522
13523 =item METHODS
13524
13525 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
13526 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
13527
13528 =item SEE ALSO
13529
13530 =item AUTHOR
13531
13532 =item COPYRIGHT
13533
13534 =back
13535
13536 =head2 IO::Socket::INET - Object interface for AF_INET domain sockets
13537
13538 =over 4
13539
13540 =item SYNOPSIS
13541
13542 =item DESCRIPTION
13543
13544 =item CONSTRUCTOR
13545
13546 new ( [ARGS] )
13547
13548 =over 4
13549
13550 =item METHODS
13551
13552 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
13553 ()
13554
13555 =back
13556
13557 =item SEE ALSO
13558
13559 =item AUTHOR
13560
13561 =item COPYRIGHT
13562
13563 =back
13564
13565 =head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
13566
13567 =over 4
13568
13569 =item SYNOPSIS
13570
13571 =item DESCRIPTION
13572
13573 =item CONSTRUCTOR
13574
13575 new ( [ARGS] )
13576
13577 =item METHODS
13578
13579 hostpath(), peerpath()
13580
13581 =item SEE ALSO
13582
13583 =item AUTHOR
13584
13585 =item COPYRIGHT
13586
13587 =back
13588
13589 =head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
13590 handles
13591
13592 =over 4
13593
13594 =item SYNOPSIS
13595
13596 =item DESCRIPTION
13597
13598 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
13599 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
13600
13601 =item SEE ALSO
13602
13603 =item AUTHOR
13604
13605 =item COPYRIGHT
13606
13607 =back
13608
13609 =head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
13610
13611 =over 4
13612
13613 =item SYNOPSIS
13614
13615 =item DESCRIPTION
13616
13617 =item CONSTRUCTOR
13618
13619 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
13620
13621 =item METHODS
13622
13623 open( FILENAME [,MODE [,PERMS]] )
13624
13625 =item SEE ALSO
13626
13627 =item HISTORY
13628
13629 =back
13630
13631 =head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
13632 handles
13633
13634 =over 4
13635
13636 =item SYNOPSIS
13637
13638 =item DESCRIPTION
13639
13640 =item CONSTRUCTOR
13641
13642 new (), new_from_fd ( FD, MODE )
13643
13644 =item METHODS
13645
13646 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
13647 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
13648 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
13649 $io->blocking ( [ BOOL ] ), $io->untaint
13650
13651 =item NOTE
13652
13653 =item SEE ALSO
13654
13655 =item BUGS
13656
13657 =item HISTORY
13658
13659 =back
13660
13661 =head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
13662
13663 =over 4
13664
13665 =item SYNOPSIS
13666
13667 =item DESCRIPTION
13668
13669 =item CONSTRUCTOR
13670
13671 new ( [READER, WRITER] )
13672
13673 =item METHODS
13674
13675 reader ([ARGS]), writer ([ARGS]), handles ()
13676
13677 =item SEE ALSO
13678
13679 =item AUTHOR
13680
13681 =item COPYRIGHT
13682
13683 =back
13684
13685 =head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
13686
13687 =over 4
13688
13689 =item SYNOPSIS
13690
13691 =item DESCRIPTION
13692
13693 =item METHODS
13694
13695 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
13696 IO ), handles( [ EVENT_MASK ] )
13697
13698 =item SEE ALSO
13699
13700 =item AUTHOR
13701
13702 =item COPYRIGHT
13703
13704 =back
13705
13706 =head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
13707 I/O objects
13708
13709 =over 4
13710
13711 =item SYNOPSIS
13712
13713 =item DESCRIPTION
13714
13715 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
13716 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
13717 $io->tell
13718
13719 =item SEE ALSO
13720
13721 =item HISTORY
13722
13723 =back
13724
13725 =head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
13726 call
13727
13728 =over 4
13729
13730 =item SYNOPSIS
13731
13732 =item DESCRIPTION
13733
13734 =item CONSTRUCTOR
13735
13736 new ( [ HANDLES ] )
13737
13738 =item METHODS
13739
13740 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
13741 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
13742 count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] )
13743
13744 =item EXAMPLE
13745
13746 =item AUTHOR
13747
13748 =item COPYRIGHT
13749
13750 =back
13751
13752 =head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
13753 communications
13754
13755 =over 4
13756
13757 =item SYNOPSIS
13758
13759 =item DESCRIPTION
13760
13761 =item CONSTRUCTOR
13762
13763 new ( [ARGS] )
13764
13765 =item METHODS
13766
13767 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
13768 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
13769
13770 =item SEE ALSO
13771
13772 =item AUTHOR
13773
13774 =item COPYRIGHT
13775
13776 =back
13777
13778 =head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
13779 AF_INET domain sockets
13780
13781 =over 4
13782
13783 =item SYNOPSIS
13784
13785 =item DESCRIPTION
13786
13787 =item CONSTRUCTOR
13788
13789 new ( [ARGS] )
13790
13791 =over 4
13792
13793 =item METHODS
13794
13795 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
13796 ()
13797
13798 =back
13799
13800 =item SEE ALSO
13801
13802 =item AUTHOR
13803
13804 =item COPYRIGHT
13805
13806 =back
13807
13808 =head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
13809 AF_UNIX domain sockets
13810
13811 =over 4
13812
13813 =item SYNOPSIS
13814
13815 =item DESCRIPTION
13816
13817 =item CONSTRUCTOR
13818
13819 new ( [ARGS] )
13820
13821 =item METHODS
13822
13823 hostpath(), peerpath()
13824
13825 =item SEE ALSO
13826
13827 =item AUTHOR
13828
13829 =item COPYRIGHT
13830
13831 =back
13832
13833 =head2 IPC::Msg - SysV Msg IPC object class
13834
13835 =over 4
13836
13837 =item SYNOPSIS
13838
13839 =item DESCRIPTION
13840
13841 =item METHODS
13842
13843 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
13844 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
13845 FLAGS ] ), stat
13846
13847 =item SEE ALSO
13848
13849 =item AUTHOR
13850
13851 =item COPYRIGHT
13852
13853 =back
13854
13855 =head2 IPC::Open2, open2 - open a process for both reading and writing
13856
13857 =over 4
13858
13859 =item SYNOPSIS
13860
13861 =item DESCRIPTION
13862
13863 =item WARNING 
13864
13865 =item SEE ALSO
13866
13867 =back
13868
13869 =head2 IPC::Open3, open3 - open a process for reading, writing, and error
13870 handling
13871
13872 =over 4
13873
13874 =item SYNOPSIS
13875
13876 =item DESCRIPTION
13877
13878 =item WARNING
13879
13880 =back
13881
13882 =head2 IPC::Semaphore - SysV Semaphore IPC object class
13883
13884 =over 4
13885
13886 =item SYNOPSIS
13887
13888 =item DESCRIPTION
13889
13890 =item METHODS
13891
13892 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
13893 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
13894 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
13895 , VALUE ), stat
13896
13897 =item SEE ALSO
13898
13899 =item AUTHOR
13900
13901 =item COPYRIGHT
13902
13903 =back
13904
13905 =head2 IPC::SysV - SysV IPC constants
13906
13907 =over 4
13908
13909 =item SYNOPSIS
13910
13911 =item DESCRIPTION
13912
13913 ftok( PATH, ID )
13914
13915 =item SEE ALSO
13916
13917 =item AUTHORS
13918
13919 =item COPYRIGHT
13920
13921 =back
13922
13923 =head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
13924
13925 =over 4
13926
13927 =item SYNOPSIS
13928
13929 =item DESCRIPTION
13930
13931 =item METHODS
13932
13933 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
13934 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
13935 FLAGS ] ), stat
13936
13937 =item SEE ALSO
13938
13939 =item AUTHOR
13940
13941 =item COPYRIGHT
13942
13943 =back
13944
13945 =head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
13946 class
13947
13948 =over 4
13949
13950 =item SYNOPSIS
13951
13952 =item DESCRIPTION
13953
13954 =item METHODS
13955
13956 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
13957 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
13958 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
13959 , VALUE ), stat
13960
13961 =item SEE ALSO
13962
13963 =item AUTHOR
13964
13965 =item COPYRIGHT
13966
13967 =back
13968
13969 =head2 List::Util - A selection of general-utility list subroutines
13970
13971 =over 4
13972
13973 =item SYNOPSIS
13974
13975 =item DESCRIPTION
13976
13977 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
13978 BLOCK LIST, shuffle LIST, sum LIST
13979
13980 =item KNOWN BUGS
13981
13982 =item SUGGESTED ADDITIONS
13983
13984 =item COPYRIGHT
13985
13986 =back
13987
13988 =head2 List::Utilib::List::Util, List::Util - A selection of
13989 general-utility list subroutines
13990
13991 =over 4
13992
13993 =item SYNOPSIS
13994
13995 =item DESCRIPTION
13996
13997 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
13998 BLOCK LIST, shuffle LIST, sum LIST
13999
14000 =item KNOWN BUGS
14001
14002 =item SUGGESTED ADDITIONS
14003
14004 =item COPYRIGHT
14005
14006 =back
14007
14008 =head2 List::Utilib::Scalar::Util, Scalar::Util - A selection of
14009 general-utility scalar subroutines
14010
14011 =over 4
14012
14013 =item SYNOPSIS
14014
14015 =item DESCRIPTION
14016
14017 blessed EXPR, dualvar NUM, STRING, isweak EXPR, readonly SCALAR, reftype
14018 EXPR, tainted EXPR, weaken REF
14019
14020 =item KNOWN BUGS
14021
14022 =item COPYRIGHT
14023
14024 =item BLATANT PLUG
14025
14026 =back
14027
14028 =head2 Locale::Constants - constants for Locale codes
14029
14030 =over 4
14031
14032 =item SYNOPSIS
14033
14034 =item DESCRIPTION
14035
14036 =item KNOWN BUGS AND LIMITATIONS
14037
14038 =item SEE ALSO
14039
14040 Locale::Language, Locale::Country, Locale::Script, Locale::Currency
14041
14042 =item AUTHOR
14043
14044 =item COPYRIGHT
14045
14046 =back
14047
14048 =head2 Locale::Country - ISO codes for country identification (ISO 3166)
14049
14050 =over 4
14051
14052 =item SYNOPSIS
14053
14054 =item DESCRIPTION
14055
14056 B<alpha-2>, B<alpha-3>, B<numeric>
14057
14058 =item CONVERSION ROUTINES
14059
14060 code2country( CODE, [ CODESET ] ), country2code( STRING, [ CODESET ] ),
14061 country_code2code( CODE, CODESET, CODESET )
14062
14063 =item QUERY ROUTINES
14064
14065 C<all_country_codes( [ CODESET ] )>, C<all_country_names( [ CODESET ] )>
14066
14067 =item SEMI-PRIVATE ROUTINES
14068
14069 =over 4
14070
14071 =item alias_code
14072
14073 =item rename_country
14074
14075 =back
14076
14077 =item EXAMPLES
14078
14079 =item DOMAIN NAMES
14080
14081 =item KNOWN BUGS AND LIMITATIONS
14082
14083 =item SEE ALSO
14084
14085 Locale::Language, Locale::Script, Locale::Currency, Locale::SubCountry, ISO
14086 3166-1, http://www.iso.org/iso/en/prods-services/iso3166ma/index.html,
14087 http://www.egt.ie/standards/iso3166/iso3166-1-en.html,
14088 http://www.cia.gov/cia/publications/factbook/docs/app-f.html
14089
14090 =item AUTHOR
14091
14092 =item COPYRIGHT
14093
14094 =back
14095
14096 =head2 Locale::Currency - ISO three letter codes for currency
14097 identification (ISO 4217)
14098
14099 =over 4
14100
14101 =item SYNOPSIS
14102
14103 =item DESCRIPTION
14104
14105 XTS, XXX
14106
14107 =item CONVERSION ROUTINES
14108
14109 code2currency(), currency2code()
14110
14111 =item QUERY ROUTINES
14112
14113 C<all_currency_codes()>, C<all_currency_names()>
14114
14115 =item EXAMPLES
14116
14117 =item KNOWN BUGS AND LIMITATIONS
14118
14119 =item SEE ALSO
14120
14121 Locale::Country, Locale::Script, ISO 4217:1995,
14122 http://www.bsi-global.com/iso4217currency
14123
14124 =item AUTHOR
14125
14126 =item COPYRIGHT
14127
14128 =back
14129
14130 =head2 Locale::Language - ISO two letter codes for language identification
14131 (ISO 639)
14132
14133 =over 4
14134
14135 =item SYNOPSIS
14136
14137 =item DESCRIPTION
14138
14139 =item CONVERSION ROUTINES
14140
14141 code2language(), language2code()
14142
14143 =item QUERY ROUTINES
14144
14145 C<all_language_codes()>, C<all_language_names()>
14146
14147 =item EXAMPLES
14148
14149 =item KNOWN BUGS AND LIMITATIONS
14150
14151 =item SEE ALSO
14152
14153 Locale::Country, Locale::Script, Locale::Currency, ISO 639:1988 (E/F),
14154 http://lcweb.loc.gov/standards/iso639-2/langhome.html
14155
14156 =item AUTHOR
14157
14158 =item COPYRIGHT
14159
14160 =back
14161
14162 =head2 Locale::Maketext -- framework for localization
14163
14164 =over 4
14165
14166 =item SYNOPSIS
14167
14168 =item DESCRIPTION
14169
14170 =item QUICK OVERVIEW
14171
14172 =item METHODS
14173
14174 =over 4
14175
14176 =item Construction Methods
14177
14178 =item The "maketext" Method
14179
14180 $lh->fail_with I<or> $lh->fail_with(I<PARAM>), $lh->failure_handler_auto
14181
14182 =item Utility Methods
14183
14184 $language->quant($number, $singular), $language->quant($number, $singular,
14185 $plural), $language->quant($number, $singular, $plural, $negative),
14186 $language->numf($number), $language->sprintf($format, @items),
14187 $language->language_tag(), $language->encoding()
14188
14189 =item Language Handle Attributes and Internals
14190
14191 =back
14192
14193 =item LANGUAGE CLASS HIERARCHIES
14194
14195 =item ENTRIES IN EACH LEXICON
14196
14197 =item BRACKET NOTATION
14198
14199 =item AUTO LEXICONS
14200
14201 =item CONTROLLING LOOKUP FAILURE
14202
14203 =item HOW TO USE MAKETEXT
14204
14205 =item SEE ALSO
14206
14207 =item COPYRIGHT AND DISCLAIMER
14208
14209 =item AUTHOR
14210
14211 =back
14212
14213 =head2 Locale::Maketext::TPJ13 -- article about software localization
14214
14215 =over 4
14216
14217 =item SYNOPSIS
14218
14219 =item DESCRIPTION
14220
14221 =item Localization and Perl: gettext breaks, Maketext fixes
14222
14223 =over 4
14224
14225 =item A Localization Horror Story: It Could Happen To You
14226
14227 =item The Linguistic View
14228
14229 =item Breaking gettext
14230
14231 =item Replacing gettext
14232
14233 =item Buzzwords: Abstraction and Encapsulation
14234
14235 =item Buzzword: Isomorphism
14236
14237 =item Buzzword: Inheritance
14238
14239 =item Buzzword: Concision
14240
14241 =item The Devil in the Details
14242
14243 =item The Proof in the Pudding: Localizing Web Sites
14244
14245 =item References
14246
14247 =back
14248
14249 =back
14250
14251 =head2 Locale::Script - ISO codes for script identification (ISO 15924)
14252
14253 =over 4
14254
14255 =item SYNOPSIS
14256
14257 =item DESCRIPTION
14258
14259 B<alpha-2>, B<alpha-3>, B<numeric>
14260
14261 =over 4
14262
14263 =item SPECIAL CODES
14264
14265 =back
14266
14267 =item CONVERSION ROUTINES
14268
14269 code2script( CODE, [ CODESET ] ), script2code( STRING, [ CODESET ] ),
14270 script_code2code( CODE, CODESET, CODESET )
14271
14272 =item QUERY ROUTINES
14273
14274 C<all_script_codes ( [ CODESET ] )>, C<all_script_names ( [ CODESET ] )>
14275
14276 =item EXAMPLES
14277
14278 =item KNOWN BUGS AND LIMITATIONS
14279
14280 =item SEE ALSO
14281
14282 Locale::Language, Locale::Currency, Locale::Country, ISO 15924,
14283 http://www.evertype.com/standards/iso15924/
14284
14285 =item AUTHOR
14286
14287 =item COPYRIGHT
14288
14289 =back
14290
14291 =head2 MIME::Base64 - Encoding and decoding of base64 strings
14292
14293 =over 4
14294
14295 =item SYNOPSIS
14296
14297 =item DESCRIPTION
14298
14299 encode_base64($str, [$eol]), decode_base64($str)
14300
14301 =item DIAGNOSTICS
14302
14303 Premature end of base64 data, Premature padding of base64 data
14304
14305 =item EXAMPLES
14306
14307 =item COPYRIGHT
14308
14309 =back
14310
14311 =head2 MIME::Base64::QuotedPrint, MIME::QuotedPrint - Encoding and decoding
14312 of quoted-printable strings
14313
14314 =over 4
14315
14316 =item SYNOPSIS
14317
14318 =item DESCRIPTION
14319
14320 encode_qp($str), decode_qp($str);
14321
14322 =item COPYRIGHT
14323
14324 =back
14325
14326 =head2 MIME::QuotedPrint - Encoding and decoding of quoted-printable
14327 strings
14328
14329 =over 4
14330
14331 =item SYNOPSIS
14332
14333 =item DESCRIPTION
14334
14335 encode_qp($str), decode_qp($str);
14336
14337 =item COPYRIGHT
14338
14339 =back
14340
14341 =head2 Math::BigFloat - Arbitrary size floating point math package
14342
14343 =over 4
14344
14345 =item SYNOPSIS
14346
14347 =item DESCRIPTION
14348
14349 =over 4
14350
14351 =item Canonical notation
14352
14353 =item Output
14354
14355 =item C<mantissa()>, C<exponent()> and C<parts()>
14356
14357 =item Accuracy vs. Precision
14358
14359 =item Rounding
14360
14361 ffround ( +$scale ), ffround ( -$scale ), ffround ( 0 ), fround  ( +$scale
14362 ), fround  ( -$scale ) and fround ( 0 )
14363
14364 =back
14365
14366 =item EXAMPLES
14367
14368   # not ready yet
14369
14370 =item Autocreating constants
14371
14372 =item BUGS
14373
14374 =item CAVEAT
14375
14376 stringify, bstr(), bdiv, Modifying and =, bpow
14377
14378 =item LICENSE
14379
14380 =item AUTHORS
14381
14382 =back
14383
14384 =head2 Math::BigInt - Arbitrary size integer math package
14385
14386 =over 4
14387
14388 =item SYNOPSIS
14389
14390 =item DESCRIPTION
14391
14392 Canonical notation, Input, Output
14393
14394 =item METHODS
14395
14396 =over 4
14397
14398 =item accuracy
14399
14400 =item brsft
14401
14402 =item new
14403
14404 =item bnan
14405
14406 =item bzero
14407
14408 =item binf
14409
14410 =item bone
14411
14412 =item is_one() / is_zero() / is_nan() / is_positive() / is_negative() /
14413 is_inf() / is_odd() / is_even() / is_int()
14414
14415         $x->is_zero();                  # true if arg is +0
14416         $x->is_nan();                   # true if arg is NaN
14417         $x->is_one();                   # true if arg is +1
14418         $x->is_one('-');                # true if arg is -1
14419         $x->is_odd();                   # true if odd, false for even
14420         $x->is_even();                  # true if even, false for odd
14421         $x->is_positive();              # true if >= 0
14422         $x->is_negative();              # true if <  0
14423         $x->is_inf();                   # true if +inf
14424         $x->is_inf('-');                # true if -inf (sign is default
14425 '+')
14426         $x->is_int();                   # true if $x is an integer
14427
14428 =item bcmp
14429
14430 =item bacmp
14431
14432 =item sign
14433
14434 =item bcmp
14435
14436 =item bneg
14437
14438 =item babs
14439
14440 =item bnorm
14441
14442 =item bnot
14443
14444 =item binc
14445
14446 =item bdec
14447
14448 =item badd
14449
14450 =item bsub
14451
14452 =item bmul
14453
14454 =item bdiv
14455
14456 =item bmod
14457
14458 =item bpow
14459
14460 =item blsft
14461
14462 =item brsft
14463
14464 =item band
14465
14466 =item bior
14467
14468 =item bxor
14469
14470 =item bnot
14471
14472 =item bsqrt
14473
14474 =item bfac
14475
14476 =item round
14477
14478 =item bround
14479
14480 =item bfround
14481
14482 =item bfloor
14483
14484 =item bceil
14485
14486 =item bgcd
14487
14488 =item blcm
14489
14490 =item exponent
14491
14492 =item mantissa
14493
14494 =item parts
14495
14496 =item copy
14497
14498 =item as_number
14499
14500 =item bsstr
14501
14502 =item as_hex
14503
14504 =item as_bin
14505
14506 =back
14507
14508 =item ACCURACY and PRECISION
14509
14510 =over 4
14511
14512 =item Precision P
14513
14514 =item Accuracy A
14515
14516 =item Fallback F
14517
14518 =item Rounding mode R
14519
14520 'trunc', 'even', 'odd', '+inf', '-inf', 'zero', Precision, Accuracy
14521 (significant digits), Setting/Accessing, Creating numbers, Usage,
14522 Precedence, Overriding globals, Local settings, Rounding, Default values,
14523 Remarks
14524
14525 =back
14526
14527 =item INTERNALS
14528
14529 =over 4
14530
14531 =item MATH LIBRARY
14532
14533 =item SIGN
14534
14535 =item mantissa(), exponent() and parts()
14536
14537 =back
14538
14539 =item EXAMPLES
14540
14541   use Math::BigInt;
14542
14543 =item Autocreating constants
14544
14545 =item PERFORMANCE
14546
14547 =over 4
14548
14549 =item Alternative math libraries
14550
14551 =item SUBCLASSING
14552
14553 =back
14554
14555 =item Subclassing Math::BigInt
14556
14557 =item UPGRADING
14558
14559 =over 4
14560
14561 =item Auto-upgrade
14562
14563 bsqrt(), div(), blog()
14564
14565 =back
14566
14567 =item BUGS
14568
14569 Out of Memory!, Fails to load Calc on Perl prior 5.6.0
14570
14571 =item CAVEATS
14572
14573 stringify, bstr(), bsstr() and 'cmp', int(), length, bdiv, infinity
14574 handling, Modifying and =, bpow, Overloading -$x, Mixing different object
14575 types, bsqrt(), brsft()
14576
14577 =item LICENSE
14578
14579 =item SEE ALSO
14580
14581 =item AUTHORS
14582
14583 =back
14584
14585 =head2 Math::BigInt::Calc - Pure Perl module to support Math::BigInt
14586
14587 =over 4
14588
14589 =item SYNOPSIS
14590
14591 =item DESCRIPTION
14592
14593 =item EXPORT
14594
14595 =item WRAP YOUR OWN
14596
14597 =item LICENSE
14598
14599 This program is free software; you may redistribute it and/or modify it
14600 under
14601 the same terms as Perl itself. 
14602
14603 =item AUTHORS
14604
14605 =item SEE ALSO
14606
14607 =back
14608
14609 =head2 Math::Complex - complex numbers and associated mathematical
14610 functions
14611
14612 =over 4
14613
14614 =item SYNOPSIS
14615
14616 =item DESCRIPTION
14617
14618 =item OPERATIONS
14619
14620 =item CREATION
14621
14622 =item STRINGIFICATION
14623
14624 =over 4
14625
14626 =item CHANGED IN PERL 5.6
14627
14628 =back
14629
14630 =item USAGE
14631
14632 =item ERRORS DUE TO DIVISION BY ZERO OR LOGARITHM OF ZERO
14633
14634 =item ERRORS DUE TO INDIGESTIBLE ARGUMENTS
14635
14636 =item BUGS
14637
14638 =item AUTHORS
14639
14640 =back
14641
14642 =head2 Math::Trig - trigonometric functions
14643
14644 =over 4
14645
14646 =item SYNOPSIS
14647
14648 =item DESCRIPTION
14649
14650 =item TRIGONOMETRIC FUNCTIONS
14651
14652 B<tan>
14653
14654 =over 4
14655
14656 =item ERRORS DUE TO DIVISION BY ZERO
14657
14658 =item SIMPLE (REAL) ARGUMENTS, COMPLEX RESULTS
14659
14660 =back
14661
14662 =item PLANE ANGLE CONVERSIONS
14663
14664 =item RADIAL COORDINATE CONVERSIONS
14665
14666 =over 4
14667
14668 =item COORDINATE SYSTEMS
14669
14670 =item 3-D ANGLE CONVERSIONS
14671
14672 cartesian_to_cylindrical, cartesian_to_spherical, cylindrical_to_cartesian,
14673 cylindrical_to_spherical, spherical_to_cartesian, spherical_to_cylindrical
14674
14675 =back
14676
14677 =item GREAT CIRCLE DISTANCES AND DIRECTIONS
14678
14679 =item EXAMPLES
14680
14681 =over 4
14682
14683 =item CAVEAT FOR GREAT CIRCLE FORMULAS
14684
14685 =back
14686
14687 =item BUGS
14688
14689 =item AUTHORS
14690
14691 =back
14692
14693 =head2 Memoize - Make your functions faster by trading space for time
14694
14695 =over 4
14696
14697 =item SYNOPSIS
14698
14699 =item DESCRIPTION
14700
14701 =item DETAILS
14702
14703 =item OPTIONS
14704
14705 =over 4
14706
14707 =item INSTALL
14708
14709 =item NORMALIZER
14710
14711 =item C<SCALAR_CACHE>, C<LIST_CACHE>
14712
14713 C<MEMORY>, C<HASH>, C<TIE>, C<FAULT>, C<MERGE>
14714
14715 =back
14716
14717 =item OTHER FACILITIES
14718
14719 =over 4
14720
14721 =item C<unmemoize>
14722
14723 =item C<flush_cache>
14724
14725 =back
14726
14727 =item CAVEATS
14728
14729 =item PERSISTENT CACHE SUPPORT
14730
14731 =item EXPIRATION SUPPORT
14732
14733 =item BUGS
14734
14735 =item MAILING LIST
14736
14737 =item AUTHOR
14738
14739 =item COPYRIGHT AND LICENSE
14740
14741 =item THANK YOU
14742
14743 =back
14744
14745 =head2 Memoize::AnyDBM_File - glue to provide EXISTS for AnyDBM_File for
14746 Storable use
14747
14748 =over 4
14749
14750 =item DESCRIPTION
14751
14752 =back
14753
14754 =head2 Memoize::Expire - Plug-in module for automatic expiration of
14755 memoized values
14756
14757 =over 4
14758
14759 =item SYNOPSIS
14760
14761 =item DESCRIPTION
14762
14763 =item INTERFACE
14764
14765  TIEHASH,  EXISTS,  STORE
14766
14767 =item ALTERNATIVES
14768
14769 =item CAVEATS
14770
14771 =item AUTHOR
14772
14773 =item SEE ALSO
14774
14775 =back
14776
14777 =head2 Memoize::ExpireFile - test for Memoize expiration semantics
14778
14779 =over 4
14780
14781 =item DESCRIPTION
14782
14783 =back
14784
14785 =head2 Memoize::ExpireTest - test for Memoize expiration semantics
14786
14787 =over 4
14788
14789 =item DESCRIPTION
14790
14791 =back
14792
14793 =head2 Memoize::NDBM_File - glue to provide EXISTS for NDBM_File for
14794 Storable use
14795
14796 =over 4
14797
14798 =item DESCRIPTION
14799
14800 =back
14801
14802 =head2 Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for
14803 Storable use
14804
14805 =over 4
14806
14807 =item DESCRIPTION
14808
14809 =back
14810
14811 =head2 Memoize::Storable - store Memoized data in Storable database
14812
14813 =over 4
14814
14815 =item DESCRIPTION
14816
14817 =back
14818
14819 =head2 NDBM_File - Tied access to ndbm files
14820
14821 =over 4
14822
14823 =item SYNOPSIS
14824
14825 =item DESCRIPTION
14826
14827 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
14828
14829 =item DIAGNOSTICS
14830
14831 =over 4
14832
14833 =item C<ndbm store returned -1, errno 22, key "..." at ...>
14834
14835 =back
14836
14837 =item BUGS AND WARNINGS
14838
14839 =back
14840
14841 =head2 NEXT - Provide a pseudo-class NEXT that allows method redispatch
14842
14843 =over 4
14844
14845 =item SYNOPSIS
14846
14847 =item DESCRIPTION
14848
14849 =over 4
14850
14851 =item Enforcing redispatch
14852
14853 =item Avoiding repetitions
14854
14855 =back
14856
14857 =item AUTHOR
14858
14859 =item BUGS AND IRRITATIONS
14860
14861 =item COPYRIGHT
14862
14863 =back
14864
14865 =head2 Net::Cmd - Network Command class (as used by FTP, SMTP etc)
14866
14867 =over 4
14868
14869 =item SYNOPSIS
14870
14871 =item DESCRIPTION
14872
14873 =item USER METHODS
14874
14875 debug ( VALUE ), message (), code (), ok (), status (), datasend ( DATA ),
14876 dataend ()
14877
14878 =item CLASS METHODS
14879
14880 debug_print ( DIR, TEXT ), debug_text ( TEXT ), command ( CMD [, ARGS, ...
14881 ]), unsupported (), response (), parse_response ( TEXT ), getline (),
14882 ungetline ( TEXT ), read_until_dot (), tied_fh ()
14883
14884 =item EXPORTS
14885
14886 =item AUTHOR
14887
14888 =item COPYRIGHT
14889
14890 =back
14891
14892 =head2 Net::Config - Local configuration data for libnet
14893
14894 =over 4
14895
14896 =item SYNOPSYS
14897
14898 =item DESCRIPTION
14899
14900 =item METHODS
14901
14902 requires_firewall HOST
14903
14904 =item NetConfig VALUES
14905
14906 nntp_hosts, snpp_hosts, pop3_hosts, smtp_hosts, ph_hosts, daytime_hosts,
14907 time_hosts, inet_domain, ftp_firewall, ftp_firewall_type, ftp_ext_passive,
14908 ftp_int_pasive, local_netmask, test_hosts, test_exists
14909
14910 =back
14911
14912 =head2 Net::Domain - Attempt to evaluate the current host's internet name
14913 and domain
14914
14915 =over 4
14916
14917 =item SYNOPSIS
14918
14919 =item DESCRIPTION
14920
14921 hostfqdn (), hostname (), hostdomain ()
14922
14923 =item AUTHOR
14924
14925 =item COPYRIGHT
14926
14927 =back
14928
14929 =head2 Net::FTP - FTP Client class
14930
14931 =over 4
14932
14933 =item SYNOPSIS
14934
14935 =item DESCRIPTION
14936
14937 =item OVERVIEW
14938
14939 =item CONSTRUCTOR
14940
14941 new (HOST [,OPTIONS])
14942
14943 =item METHODS
14944
14945 login ([LOGIN [,PASSWORD [, ACCOUNT] ] ]), authorize ( [AUTH [, RESP]]),
14946 site (ARGS), type (TYPE [, ARGS]), ascii ([ARGS]) binary([ARGS])
14947 ebcdic([ARGS]) byte([ARGS]), rename ( OLDNAME, NEWNAME ), delete ( FILENAME
14948 ), cwd ( [ DIR ] ), cdup (), pwd (), restart ( WHERE ), rmdir ( DIR ),
14949 mkdir ( DIR [, RECURSE ]), ls ( [ DIR ] ), dir ( [ DIR ] ), get (
14950 REMOTE_FILE [, LOCAL_FILE [, WHERE]] ), put ( LOCAL_FILE [, REMOTE_FILE ]
14951 ), put_unique ( LOCAL_FILE [, REMOTE_FILE ] ), append ( LOCAL_FILE [,
14952 REMOTE_FILE ] ), unique_name (), mdtm ( FILE ), size ( FILE ), supported (
14953 CMD ), hash ( [FILEHANDLE_GLOB_REF],[ BYTES_PER_HASH_MARK] ), nlst ( [ DIR
14954 ] ), list ( [ DIR ] ), retr ( FILE ), stor ( FILE ), stou ( FILE ), appe (
14955 FILE ), port ( [ PORT ] ), pasv (), pasv_xfer ( SRC_FILE, DEST_SERVER [,
14956 DEST_FILE ] ), pasv_xfer_unique ( SRC_FILE, DEST_SERVER [, DEST_FILE ] ),
14957 pasv_wait ( NON_PASV_SERVER ), abort (), quit ()
14958
14959 =over 4
14960
14961 =item Methods for the adventurous
14962
14963 quot (CMD [,ARGS])
14964
14965 =back
14966
14967 =item THE dataconn CLASS
14968
14969 read ( BUFFER, SIZE [, TIMEOUT ] ), write ( BUFFER, SIZE [, TIMEOUT ] ),
14970 bytes_read (), abort (), close ()
14971
14972 =item UNIMPLEMENTED
14973
14974 B<ALLO>, B<SMNT>, B<HELP>, B<MODE>, B<SYST>, B<STAT>, B<STRU>, B<REIN>
14975
14976 =item REPORTING BUGS
14977
14978 =item AUTHOR
14979
14980 =item SEE ALSO
14981
14982 =item USE EXAMPLES
14983
14984 http://www.csh.rit.edu/~adam/Progs/autoftp-2.0.tar.gz
14985
14986 =item CREDITS
14987
14988 =item COPYRIGHT
14989
14990 =back
14991
14992 =head2 Net::NNTP - NNTP Client class
14993
14994 =over 4
14995
14996 =item SYNOPSIS
14997
14998 =item DESCRIPTION
14999
15000 =item CONSTRUCTOR
15001
15002 new ( [ HOST ] [, OPTIONS ])
15003
15004 =item METHODS
15005
15006 article ( [ MSGID|MSGNUM ], [FH] ), body ( [ MSGID|MSGNUM ], [FH] ), head (
15007 [ MSGID|MSGNUM ], [FH] ), articlefh ( [ MSGID|MSGNUM ] ), bodyfh ( [
15008 MSGID|MSGNUM ] ), headfh ( [ MSGID|MSGNUM ] ), nntpstat ( [ MSGID|MSGNUM ]
15009 ), group ( [ GROUP ] ), ihave ( MSGID [, MESSAGE ]), last (), date (),
15010 postok (), authinfo ( USER, PASS ), list (), newgroups ( SINCE [,
15011 DISTRIBUTIONS ]), newnews ( SINCE [, GROUPS [, DISTRIBUTIONS ]]), next (),
15012 post ( [ MESSAGE ] ), postfh (), slave (), quit ()
15013
15014 =over 4
15015
15016 =item Extension methods
15017
15018 newsgroups ( [ PATTERN ] ), distributions (), subscriptions (),
15019 overview_fmt (), active_times (), active ( [ PATTERN ] ), xgtitle ( PATTERN
15020 ), xhdr ( HEADER, MESSAGE-SPEC ), xover ( MESSAGE-SPEC ), xpath (
15021 MESSAGE-ID ), xpat ( HEADER, PATTERN, MESSAGE-SPEC), xrover, listgroup ( [
15022 GROUP ] ), reader
15023
15024 =back
15025
15026 =item UNSUPPORTED
15027
15028 =item DEFINITIONS
15029
15030 MESSAGE-SPEC, PATTERN, Examples, C<[^]-]>, C<*bdc>, C<[0-9a-zA-Z]>, C<a??d>
15031
15032 =item SEE ALSO
15033
15034 =item AUTHOR
15035
15036 =item COPYRIGHT
15037
15038 =back
15039
15040 =head2 Net::POP3 - Post Office Protocol 3 Client class (RFC1939)
15041
15042 =over 4
15043
15044 =item SYNOPSIS
15045
15046 =item DESCRIPTION
15047
15048 =item EXAMPLES
15049
15050 =item CONSTRUCTOR
15051
15052 new ( [ HOST, ] [ OPTIONS ] )
15053
15054 =item METHODS
15055
15056 user ( USER ), pass ( PASS ), login ( [ USER [, PASS ]] ), apop ( [ USER [,
15057 PASS ]] ), top ( MSGNUM [, NUMLINES ] ), list ( [ MSGNUM ] ), get ( MSGNUM
15058 [, FH ] ), getfh ( MSGNUM ), last (), popstat (), ping ( USER ), uidl ( [
15059 MSGNUM ] ), delete ( MSGNUM ), reset (), quit ()
15060
15061 =item NOTES
15062
15063 =item SEE ALSO
15064
15065 =item AUTHOR
15066
15067 =item COPYRIGHT
15068
15069 =back
15070
15071 =head2 Net::Ping - check a remote host for reachability
15072
15073 =over 4
15074
15075 =item SYNOPSIS
15076
15077 =item DESCRIPTION
15078
15079 =over 4
15080
15081 =item Functions
15082
15083 Net::Ping->new([$proto [, $def_timeout [, $bytes]]]);,
15084 $p->bind($local_addr);, $p->ping($host [, $timeout]);, $p->open($host);,
15085 $p->open($host);, $p->close();, pingecho($host [, $timeout]);
15086
15087 =back
15088
15089 =item WARNING
15090
15091 =item NOTES
15092
15093 =item AUTHORS
15094
15095 =item COPYRIGHT
15096
15097 =back
15098
15099 =head2 Net::SMTP - Simple Mail Transfer Protocol Client
15100
15101 =over 4
15102
15103 =item SYNOPSIS
15104
15105 =item DESCRIPTION
15106
15107 =item EXAMPLES
15108
15109 =item CONSTRUCTOR
15110
15111 new Net::SMTP [ HOST, ] [ OPTIONS ]
15112
15113 =item METHODS
15114
15115 banner (), domain (), hello ( DOMAIN ), etrn ( DOMAIN ), auth ( USERNAME,
15116 PASSWORD ), mail ( ADDRESS [, OPTIONS] ), send ( ADDRESS ), send_or_mail (
15117 ADDRESS ), send_and_mail ( ADDRESS ), reset (), recipient ( ADDRESS [,
15118 ADDRESS [ ...]] [, OPTIONS ] ), to ( ADDRESS [, ADDRESS [...]] ), cc (
15119 ADDRESS [, ADDRESS [...]] ), bcc ( ADDRESS [, ADDRESS [...]] ), data ( [
15120 DATA ] ), expand ( ADDRESS ), verify ( ADDRESS ), help ( [ $subject ] ),
15121 quit ()
15122
15123 =item SEE ALSO
15124
15125 =item AUTHOR
15126
15127 =item COPYRIGHT
15128
15129 =back
15130
15131 =head2 Net::Time - time and daytime network client interface
15132
15133 =over 4
15134
15135 =item SYNOPSIS
15136
15137 =item DESCRIPTION
15138
15139 inet_time ( [HOST [, PROTOCOL [, TIMEOUT]]]), inet_daytime ( [HOST [,
15140 PROTOCOL [, TIMEOUT]]])
15141
15142 =item AUTHOR
15143
15144 =item COPYRIGHT
15145
15146 =back
15147
15148 =head2 Net::hostent - by-name interface to Perl's built-in gethost*()
15149 functions
15150
15151 =over 4
15152
15153 =item SYNOPSIS
15154
15155 =item DESCRIPTION
15156
15157 =item EXAMPLES
15158
15159 =item NOTE
15160
15161 =item AUTHOR
15162
15163 =back
15164
15165 =head2 Net::libnetFAQ, libnetFAQ - libnet Frequently Asked Questions
15166
15167 =over 4
15168
15169 =item DESCRIPTION
15170
15171 =over 4
15172
15173 =item Where to get this document
15174
15175 =item How to contribute to this document
15176
15177 =back
15178
15179 =item Author and Copyright Information
15180
15181 =over 4
15182
15183 =item Disclaimer
15184
15185 =back
15186
15187 =item Obtaining and installing libnet
15188
15189 =over 4
15190
15191 =item What is libnet ?
15192
15193 =item Which version of perl do I need ?
15194
15195 =item What other modules do I need ?
15196
15197 =item What machines support libnet ?
15198
15199 =item Where can I get the latest libnet release
15200
15201 =back
15202
15203 =item Using Net::FTP
15204
15205 =over 4
15206
15207 =item How do I download files from an FTP server ?
15208
15209 =item How do I transfer files in binary mode ?
15210
15211 =item How can I get the size of a file on a remote FTP server ?
15212
15213 =item How can I get the modification time of a file on a remote FTP server
15214 ?
15215
15216 =item How can I change the permissions of a file on a remote server ?
15217
15218 =item Can I do a reget operation like the ftp command ?
15219
15220 =item How do I get a directory listing from an FTP server ?
15221
15222 =item Changing directory to "" does not fail ?
15223
15224 =item I am behind a SOCKS firewall, but the Firewall option does not work ?
15225
15226 =item I am behind an FTP proxy firewall, but cannot access machines outside
15227 ?
15228
15229 =item My ftp proxy firewall does not listen on port 21
15230
15231 =item Is it possible to change the file permissions of a file on an FTP
15232 server ?
15233
15234 =item I have seen scripts call a method message, but cannot find it
15235 documented ?
15236
15237 =item Why does Net::FTP not implement mput and mget methods
15238
15239 =back
15240
15241 =item Using Net::SMTP
15242
15243 =over 4
15244
15245 =item Why can't the part of an Email address after the @ be used as the
15246 hostname ?
15247
15248 =item Why does Net::SMTP not do DNS MX lookups ?
15249
15250 =item The verify method always returns true ?
15251
15252 =back
15253
15254 =item Debugging scripts
15255
15256 =over 4
15257
15258 =item How can I debug my scripts that use Net::* modules ?
15259
15260 =back
15261
15262 =item AUTHOR AND COPYRIGHT
15263
15264 =back
15265
15266 =head2 Net::netent - by-name interface to Perl's built-in getnet*()
15267 functions
15268
15269 =over 4
15270
15271 =item SYNOPSIS
15272
15273 =item DESCRIPTION
15274
15275 =item EXAMPLES
15276
15277 =item NOTE
15278
15279 =item AUTHOR
15280
15281 =back
15282
15283 =head2 Net::protoent - by-name interface to Perl's built-in getproto*()
15284 functions
15285
15286 =over 4
15287
15288 =item SYNOPSIS
15289
15290 =item DESCRIPTION
15291
15292 =item NOTE
15293
15294 =item AUTHOR
15295
15296 =back
15297
15298 =head2 Net::servent - by-name interface to Perl's built-in getserv*()
15299 functions
15300
15301 =over 4
15302
15303 =item SYNOPSIS
15304
15305 =item DESCRIPTION
15306
15307 =item EXAMPLES
15308
15309 =item NOTE
15310
15311 =item AUTHOR
15312
15313 =back
15314
15315 =head2 Netrc, Net::Netrc - OO interface to users netrc file
15316
15317 =over 4
15318
15319 =item SYNOPSIS
15320
15321 =item DESCRIPTION
15322
15323 =item THE .netrc FILE
15324
15325 machine name, default, login name, password string, account string, macdef
15326 name
15327
15328 =item CONSTRUCTOR
15329
15330 lookup ( MACHINE [, LOGIN ])
15331
15332 =item METHODS
15333
15334 login (), password (), account (), lpa ()
15335
15336 =item AUTHOR
15337
15338 =item SEE ALSO
15339
15340 =item COPYRIGHT
15341
15342 =back
15343
15344 =head2 O - Generic interface to Perl Compiler backends
15345
15346 =over 4
15347
15348 =item SYNOPSIS
15349
15350 =item DESCRIPTION
15351
15352 =item CONVENTIONS
15353
15354 =item IMPLEMENTATION
15355
15356 =item AUTHOR
15357
15358 =back
15359
15360 =head2 ODBM_File - Tied access to odbm files
15361
15362 =over 4
15363
15364 =item SYNOPSIS
15365
15366 =item DESCRIPTION
15367
15368 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
15369
15370 =item DIAGNOSTICS
15371
15372 =over 4
15373
15374 =item C<odbm store returned -1, errno 22, key "..." at ...>
15375
15376 =back
15377
15378 =item BUGS AND WARNINGS
15379
15380 =back
15381
15382 =head2 Opcode - Disable named opcodes when compiling perl code
15383
15384 =over 4
15385
15386 =item SYNOPSIS
15387
15388 =item DESCRIPTION
15389
15390 =item NOTE
15391
15392 =item WARNING
15393
15394 =item Operator Names and Operator Lists
15395
15396 an operator name (opname), an operator tag name (optag), a negated opname
15397 or optag, an operator set (opset)
15398
15399 =item Opcode Functions
15400
15401 opcodes, opset (OP, ...), opset_to_ops (OPSET), opset_to_hex (OPSET),
15402 full_opset, empty_opset, invert_opset (OPSET), verify_opset (OPSET, ...),
15403 define_optag (OPTAG, OPSET), opmask_add (OPSET), opmask, opdesc (OP, ...),
15404 opdump (PAT)
15405
15406 =item Manipulating Opsets
15407
15408 =item TO DO (maybe)
15409
15410 =back
15411
15412 =over 4
15413
15414 =item Predefined Opcode Tags
15415
15416 :base_core, :base_mem, :base_loop, :base_io, :base_orig, :base_math,
15417 :base_thread, :default, :filesys_read, :sys_db, :browse, :filesys_open,
15418 :filesys_write, :subprocess, :ownprocess, :others, :still_to_be_decided,
15419 :dangerous
15420
15421 =item SEE ALSO
15422
15423 =item AUTHORS
15424
15425 =back
15426
15427 =head2 Opcode::Safe, Safe - Compile and execute code in restricted
15428 compartments
15429
15430 =over 4
15431
15432 =item SYNOPSIS
15433
15434 =item DESCRIPTION
15435
15436 a new namespace, an operator mask
15437
15438 =item WARNING
15439
15440 =over 4
15441
15442 =item RECENT CHANGES
15443
15444 =item Methods in class Safe
15445
15446 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
15447 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
15448 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
15449 root (NAMESPACE), mask (MASK)
15450
15451 =item Some Safety Issues
15452
15453 Memory, CPU, Snooping, Signals, State Changes
15454
15455 =item AUTHOR
15456
15457 =back
15458
15459 =back
15460
15461 =head2 Opcode::ops, ops - Perl pragma to restrict unsafe operations when
15462 compiling
15463
15464 =over 4
15465
15466 =item SYNOPSIS  
15467
15468 =item DESCRIPTION
15469
15470 =item SEE ALSO
15471
15472 =back
15473
15474 =head2 POSIX - Perl interface to IEEE Std 1003.1
15475
15476 =over 4
15477
15478 =item SYNOPSIS
15479
15480 =item DESCRIPTION
15481
15482 =item NOTE
15483
15484 =item CAVEATS 
15485
15486 =item FUNCTIONS
15487
15488 _exit, abort, abs, access, acos, alarm, asctime, asin, assert, atan, atan2,
15489 atexit, atof, atoi, atol, bsearch, calloc, ceil, chdir, chmod, chown,
15490 clearerr, clock, close, closedir, cos, cosh, creat, ctermid, ctime,
15491 cuserid, difftime, div, dup, dup2, errno, execl, execle, execlp, execv,
15492 execve, execvp, exit, exp, fabs, fclose, fcntl, fdopen, feof, ferror,
15493 fflush, fgetc, fgetpos, fgets, fileno, floor, fmod, fopen, fork, fpathconf,
15494 fprintf, fputc, fputs, fread, free, freopen, frexp, fscanf, fseek, fsetpos,
15495 fstat, ftell, fwrite, getc, getchar, getcwd, getegid, getenv, geteuid,
15496 getgid, getgrgid, getgrnam, getgroups, getlogin, getpgrp, getpid, getppid,
15497 getpwnam, getpwuid, gets, getuid, gmtime, isalnum, isalpha, isatty,
15498 iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace, isupper,
15499 isxdigit, kill, labs, ldexp, ldiv, link, localeconv, localtime, log, log10,
15500 longjmp, lseek, malloc, mblen, mbstowcs, mbtowc, memchr, memcmp, memcpy,
15501 memmove, memset, mkdir, mkfifo, mktime, modf, nice, offsetof, open,
15502 opendir, pathconf, pause, perror, pipe, pow, printf, putc, putchar, puts,
15503 qsort, raise, rand, read, readdir, realloc, remove, rename, rewind,
15504 rewinddir, rmdir, scanf, setgid, setjmp, setlocale, setpgid, setsid,
15505 setuid, sigaction, siglongjmp, sigpending, sigprocmask, sigsetjmp,
15506 sigsuspend, sin, sinh, sleep, sprintf, sqrt, srand, sscanf, stat, strcat,
15507 strchr, strcmp, strcoll, strcpy, strcspn, strerror, strftime, strlen,
15508 strncat, strncmp, strncpy, strpbrk, strrchr, strspn, strstr, strtod,
15509 strtok, strtol, strtoul, strxfrm, sysconf, system, tan, tanh, tcdrain,
15510 tcflow, tcflush, tcgetpgrp, tcsendbreak, tcsetpgrp, time, times, tmpfile,
15511 tmpnam, tolower, toupper, ttyname, tzname, tzset, umask, uname, ungetc,
15512 unlink, utime, vfprintf, vprintf, vsprintf, wait, waitpid, wcstombs,
15513 wctomb, write
15514
15515 =item CLASSES
15516
15517 =over 4
15518
15519 =item POSIX::SigAction
15520
15521 new
15522
15523 =item POSIX::SigSet
15524
15525 new, addset, delset, emptyset, fillset, ismember
15526
15527 =item POSIX::Termios
15528
15529 new, getattr, getcc, getcflag, getiflag, getispeed, getlflag, getoflag,
15530 getospeed, setattr, setcc, setcflag, setiflag, setispeed, setlflag,
15531 setoflag, setospeed, Baud rate values, Terminal interface values, c_cc
15532 field values, c_cflag field values, c_iflag field values, c_lflag field
15533 values, c_oflag field values
15534
15535 =back
15536
15537 =item PATHNAME CONSTANTS
15538
15539 Constants
15540
15541 =item POSIX CONSTANTS
15542
15543 Constants
15544
15545 =item SYSTEM CONFIGURATION
15546
15547 Constants
15548
15549 =item ERRNO
15550
15551 Constants
15552
15553 =item FCNTL
15554
15555 Constants
15556
15557 =item FLOAT
15558
15559 Constants
15560
15561 =item LIMITS
15562
15563 Constants
15564
15565 =item LOCALE
15566
15567 Constants
15568
15569 =item MATH
15570
15571 Constants
15572
15573 =item SIGNAL
15574
15575 Constants
15576
15577 =item STAT
15578
15579 Constants, Macros
15580
15581 =item STDLIB
15582
15583 Constants
15584
15585 =item STDIO
15586
15587 Constants
15588
15589 =item TIME
15590
15591 Constants
15592
15593 =item UNISTD
15594
15595 Constants
15596
15597 =item WAIT
15598
15599 Constants, WNOHANG, WUNTRACED, Macros, WIFEXITED, WEXITSTATUS, WIFSIGNALED,
15600 WTERMSIG, WIFSTOPPED, WSTOPSIG
15601
15602 =back
15603
15604 =head2 PerlIO - On demand loader for PerlIO layers and root of PerlIO::*
15605 name space
15606
15607 =over 4
15608
15609 =item SYNOPSIS
15610
15611 =item DESCRIPTION
15612
15613 unix, stdio, perlio, crlf, utf8, raw
15614
15615 =over 4
15616
15617 =item Defaults and how to override them
15618
15619 =back
15620
15621 =item AUTHOR
15622
15623 =item SEE ALSO
15624
15625 =back
15626
15627 =head2 PerlIO::Scalar - support module for in-memory IO.
15628
15629 =over 4
15630
15631 =item SYNOPSIS
15632
15633 =item DESCRIPTION
15634
15635 =back
15636
15637 =head2 PerlIO::Via - Helper class for PerlIO layers implemented in perl
15638
15639 =over 4
15640
15641 =item SYNOPSIS
15642
15643 =item DESCRIPTION
15644
15645 $class->PUSHED([$mode[,$fh]]), $obj->POPPED([$fh]),
15646 $class->OPEN($path,$mode[,$fh]), $class->FDOPEN($fd),
15647 $class->SYSOPEN($path,$imode,$perm,$fh), $obj->FILENO($fh),
15648 $obj->READ($buffer,$len,$fh), $obj->WRITE($buffer,$fh), $obj->FILL($fh),
15649 $obj->CLOSE($fh), $obj->SEEK($posn,$whence,$fh), $obj->TELL($fh),
15650 $obj->UNREAD($buffer,$fh), $obj->FLUSH($fh), $obj->SETLINEBUF($fh),
15651 $obj->CLEARERR($fh), $obj->ERROR($fh), $obj->EOF($fh)
15652
15653 =over 4
15654
15655 =item Example - a Hexadecimal Handle
15656
15657 =back
15658
15659 =back
15660
15661 =head2 Pod::Checker, podchecker() - check pod documents for syntax errors
15662
15663 =over 4
15664
15665 =item SYNOPSIS
15666
15667 =item OPTIONS/ARGUMENTS
15668
15669 =over 4
15670
15671 =item podchecker()
15672
15673 B<-warnings> =E<gt> I<val>
15674
15675 =back
15676
15677 =item DESCRIPTION
15678
15679 =item DIAGNOSTICS
15680
15681 =over 4
15682
15683 =item Errors
15684
15685 empty =headn, =over on line I<N> without closing =back, =item without
15686 previous =over, =back without previous =over, No argument for =begin, =end
15687 without =begin, Nested =begin's, =for without formatter specification,
15688 unresolved internal link I<NAME>, Unknown command "I<CMD>", Unknown
15689 interior-sequence "I<SEQ>", nested commands
15690 I<CMD>E<lt>...I<CMD>E<lt>...E<gt>...E<gt>, garbled entity I<STRING>, Entity
15691 number out of range, malformed link LE<lt>E<gt>, nonempty ZE<lt>E<gt>,
15692 empty XE<lt>E<gt>, Spurious text after =pod / =cut, Spurious character(s)
15693 after =back
15694
15695 =item Warnings
15696
15697 multiple occurence of link target I<name>, line containing nothing but
15698 whitespace in paragraph, file does not start with =head, previous =item has
15699 no contents, preceding non-item paragraph(s), =item type mismatch (I<one>
15700 vs. I<two>), I<N> unescaped C<E<lt>E<gt>> in paragraph, Unknown entity, No
15701 items in =over, No argument for =item, empty section in previous paragraph,
15702 Verbatim paragraph in NAME section
15703
15704 =item Hyperlinks
15705
15706 ignoring leading/trailing whitespace in link, (section) in '$page'
15707 deprecated, alternative text/node '%s' contains non-escaped | or /
15708
15709 =back
15710
15711 =item RETURN VALUE
15712
15713 =item EXAMPLES
15714
15715 =item INTERFACE
15716
15717 =back
15718
15719 C<Pod::Checker-E<gt>new( %options )>
15720
15721 C<$checker-E<gt>poderror( @args )>, C<$checker-E<gt>poderror( {%opts},
15722 @args )>
15723
15724 C<$checker-E<gt>num_errors()>
15725
15726 C<$checker-E<gt>name()>
15727
15728 C<$checker-E<gt>node()>
15729
15730 C<$checker-E<gt>idx()>
15731
15732 C<$checker-E<gt>hyperlink()>
15733
15734 =over 4
15735
15736 =item AUTHOR
15737
15738 =back
15739
15740 =head2 Pod::Find - find POD documents in directory trees
15741
15742 =over 4
15743
15744 =item SYNOPSIS
15745
15746 =item DESCRIPTION
15747
15748 =back
15749
15750 =over 4
15751
15752 =item C<pod_find( { %opts } , @directories )>
15753
15754 C<-verbose =E<gt> 1>, C<-perl =E<gt> 1>, C<-script =E<gt> 1>, C<-inc =E<gt>
15755 1>
15756
15757 =back
15758
15759 =over 4
15760
15761 =item C<simplify_name( $str )>
15762
15763 =back
15764
15765 =over 4
15766
15767 =item C<pod_where( { %opts }, $pod )>
15768
15769 C<-inc =E<gt> 1>, C<-dirs =E<gt> [ $dir1, $dir2, ... ]>, C<-verbose =E<gt>
15770 1>
15771
15772 =back
15773
15774 =over 4
15775
15776 =item C<contains_pod( $file , $verbose )>
15777
15778 =back
15779
15780 =over 4
15781
15782 =item AUTHOR
15783
15784 =item SEE ALSO
15785
15786 =back
15787
15788 =head2 Pod::Html - module to convert pod files to HTML
15789
15790 =over 4
15791
15792 =item SYNOPSIS
15793
15794 =item DESCRIPTION
15795
15796 =item ARGUMENTS
15797
15798 backlink, cachedir, css, flush, header, help, htmldir, htmlroot, index,
15799 infile, libpods, netscape, outfile, podpath, podroot, quiet, recurse,
15800 title, verbose
15801
15802 =item EXAMPLE
15803
15804 =item ENVIRONMENT
15805
15806 =item AUTHOR
15807
15808 =item SEE ALSO
15809
15810 =item COPYRIGHT
15811
15812 =back
15813
15814 =head2 Pod::InputObjects - objects representing POD input paragraphs,
15815 commands, etc.
15816
15817 =over 4
15818
15819 =item SYNOPSIS
15820
15821 =item REQUIRES
15822
15823 =item EXPORTS
15824
15825 =item DESCRIPTION
15826
15827 package B<Pod::InputSource>, package B<Pod::Paragraph>, package
15828 B<Pod::InteriorSequence>, package B<Pod::ParseTree>
15829
15830 =back
15831
15832 =over 4
15833
15834 =item B<Pod::InputSource>
15835
15836 =back
15837
15838 =over 4
15839
15840 =item B<new()>
15841
15842 =back
15843
15844 =over 4
15845
15846 =item B<name()>
15847
15848 =back
15849
15850 =over 4
15851
15852 =item B<handle()>
15853
15854 =back
15855
15856 =over 4
15857
15858 =item B<was_cutting()>
15859
15860 =back
15861
15862 =over 4
15863
15864 =item B<Pod::Paragraph>
15865
15866 =back
15867
15868 =over 4
15869
15870 =item Pod::Paragraph-E<gt>B<new()>
15871
15872 =back
15873
15874 =over 4
15875
15876 =item $pod_para-E<gt>B<cmd_name()>
15877
15878 =back
15879
15880 =over 4
15881
15882 =item $pod_para-E<gt>B<text()>
15883
15884 =back
15885
15886 =over 4
15887
15888 =item $pod_para-E<gt>B<raw_text()>
15889
15890 =back
15891
15892 =over 4
15893
15894 =item $pod_para-E<gt>B<cmd_prefix()>
15895
15896 =back
15897
15898 =over 4
15899
15900 =item $pod_para-E<gt>B<cmd_separator()>
15901
15902 =back
15903
15904 =over 4
15905
15906 =item $pod_para-E<gt>B<parse_tree()>
15907
15908 =back
15909
15910 =over 4
15911
15912 =item $pod_para-E<gt>B<file_line()>
15913
15914 =back
15915
15916 =over 4
15917
15918 =item B<Pod::InteriorSequence>
15919
15920 =back
15921
15922 =over 4
15923
15924 =item Pod::InteriorSequence-E<gt>B<new()>
15925
15926 =back
15927
15928 =over 4
15929
15930 =item $pod_seq-E<gt>B<cmd_name()>
15931
15932 =back
15933
15934 =over 4
15935
15936 =item $pod_seq-E<gt>B<prepend()>
15937
15938 =back
15939
15940 =over 4
15941
15942 =item $pod_seq-E<gt>B<append()>
15943
15944 =back
15945
15946 =over 4
15947
15948 =item $pod_seq-E<gt>B<nested()>
15949
15950 =back
15951
15952 =over 4
15953
15954 =item $pod_seq-E<gt>B<raw_text()>
15955
15956 =back
15957
15958 =over 4
15959
15960 =item $pod_seq-E<gt>B<left_delimiter()>
15961
15962 =back
15963
15964 =over 4
15965
15966 =item $pod_seq-E<gt>B<right_delimiter()>
15967
15968 =back
15969
15970 =over 4
15971
15972 =item $pod_seq-E<gt>B<parse_tree()>
15973
15974 =back
15975
15976 =over 4
15977
15978 =item $pod_seq-E<gt>B<file_line()>
15979
15980 =back
15981
15982 =over 4
15983
15984 =item Pod::InteriorSequence::B<DESTROY()>
15985
15986 =back
15987
15988 =over 4
15989
15990 =item B<Pod::ParseTree>
15991
15992 =back
15993
15994 =over 4
15995
15996 =item Pod::ParseTree-E<gt>B<new()>
15997
15998 =back
15999
16000 =over 4
16001
16002 =item $ptree-E<gt>B<top()>
16003
16004 =back
16005
16006 =over 4
16007
16008 =item $ptree-E<gt>B<children()>
16009
16010 =back
16011
16012 =over 4
16013
16014 =item $ptree-E<gt>B<prepend()>
16015
16016 =back
16017
16018 =over 4
16019
16020 =item $ptree-E<gt>B<append()>
16021
16022 =back
16023
16024 =over 4
16025
16026 =item $ptree-E<gt>B<raw_text()>
16027
16028 =back
16029
16030 =over 4
16031
16032 =item Pod::ParseTree::B<DESTROY()>
16033
16034 =back
16035
16036 =over 4
16037
16038 =item SEE ALSO
16039
16040 =item AUTHOR
16041
16042 =back
16043
16044 =head2 Pod::LaTeX - Convert Pod data to formatted Latex
16045
16046 =over 4
16047
16048 =item SYNOPSIS
16049
16050 =item DESCRIPTION
16051
16052 =back
16053
16054 =over 4
16055
16056 =item OBJECT METHODS
16057
16058 C<initialize>
16059
16060 =back
16061
16062 =over 4
16063
16064 =item Data Accessors
16065
16066 B<AddPreamble>
16067
16068 =back
16069
16070 B<AddPostamble>
16071
16072 B<Head1Level>
16073
16074 B<Label>
16075
16076 B<LevelNoNum>
16077
16078 B<MakeIndex>
16079
16080 B<ReplaceNAMEwithSection>
16081
16082 B<StartWithNewPage>
16083
16084 B<TableOfContents>
16085
16086 B<UniqueLabels>
16087
16088 B<UserPreamble>
16089
16090 B<UserPostamble>
16091
16092 B<Lists>
16093
16094 =over 4
16095
16096 =item Subclassed methods
16097
16098 =back
16099
16100 B<begin_pod>
16101
16102 B<end_pod>
16103
16104 B<command>
16105
16106 B<verbatim>
16107
16108 B<textblock>
16109
16110 B<interior_sequence>
16111
16112 =over 4
16113
16114 =item List Methods
16115
16116 B<begin_list>
16117
16118 =back
16119
16120 B<end_list>
16121
16122 B<add_item>
16123
16124 =over 4
16125
16126 =item Methods for headings
16127
16128 B<head>
16129
16130 =back
16131
16132 =over 4
16133
16134 =item Internal methods
16135
16136 B<_output>
16137
16138 =back
16139
16140 B<_replace_special_chars>
16141
16142 B<_replace_special_chars_late>
16143
16144 B<_create_label>
16145
16146 B<_create_index>
16147
16148 B<_clean_latex_commands>
16149
16150 B<_split_delimited>
16151
16152 =over 4
16153
16154 =item NOTES
16155
16156 =item SEE ALSO
16157
16158 =item AUTHORS
16159
16160 =item COPYRIGHT
16161
16162 =item REVISION
16163
16164 =back
16165
16166 =head2 Pod::Man - Convert POD data to formatted *roff input
16167
16168 =over 4
16169
16170 =item SYNOPSIS
16171
16172 =item DESCRIPTION
16173
16174 center, date, fixed, fixedbold, fixeditalic, fixedbolditalic, name, quotes,
16175 release, section
16176
16177 =item DIAGNOSTICS
16178
16179 roff font should be 1 or 2 chars, not "%s", Invalid link %s, Invalid quote
16180 specification "%s", %s:%d: Unknown command paragraph "%s", %s:%d: Unknown
16181 escape EE<lt>%sE<gt>, %s:%d: Unknown formatting code %s, %s:%d: Unmatched
16182 =back
16183
16184 =item BUGS
16185
16186 =item CAVEATS
16187
16188 =item SEE ALSO
16189
16190 =item AUTHOR
16191
16192 =item COPYRIGHT AND LICENSE
16193
16194 =back
16195
16196 =head2 Pod::ParseLink -- Parse an LE<lt>E<gt> formatting code in POD text
16197
16198 =over 4
16199
16200 =item SYNOPSIS
16201
16202 =item DESCRIPTION
16203
16204 =item AUTHOR
16205
16206 =item COPYRIGHT AND LICENSE
16207
16208 =back
16209
16210 =head2 Pod::ParseUtils - helpers for POD parsing and conversion
16211
16212 =over 4
16213
16214 =item SYNOPSIS
16215
16216 =item DESCRIPTION
16217
16218 =back
16219
16220 =over 4
16221
16222 =item Pod::List
16223
16224 Pod::List-E<gt>new()
16225
16226 =back
16227
16228 $list-E<gt>file()
16229
16230 $list-E<gt>start()
16231
16232 $list-E<gt>indent()
16233
16234 $list-E<gt>type()
16235
16236 $list-E<gt>rx()
16237
16238 $list-E<gt>item()
16239
16240 $list-E<gt>parent()
16241
16242 $list-E<gt>tag()
16243
16244 =over 4
16245
16246 =item Pod::Hyperlink
16247
16248 Pod::Hyperlink-E<gt>new()
16249
16250 =back
16251
16252 $link-E<gt>parse($string)
16253
16254 $link-E<gt>markup($string)
16255
16256 $link-E<gt>text()
16257
16258 $link-E<gt>warning()
16259
16260 $link-E<gt>file(), $link-E<gt>line()
16261
16262 $link-E<gt>page()
16263
16264 $link-E<gt>node()
16265
16266 $link-E<gt>alttext()
16267
16268 $link-E<gt>type()
16269
16270 $link-E<gt>link()
16271
16272 =over 4
16273
16274 =item Pod::Cache
16275
16276 Pod::Cache-E<gt>new()
16277
16278 =back
16279
16280 $cache-E<gt>item()
16281
16282 $cache-E<gt>find_page($name)
16283
16284 =over 4
16285
16286 =item Pod::Cache::Item
16287
16288 Pod::Cache::Item-E<gt>new()
16289
16290 =back
16291
16292 $cacheitem-E<gt>page()
16293
16294 $cacheitem-E<gt>description()
16295
16296 $cacheitem-E<gt>path()
16297
16298 $cacheitem-E<gt>file()
16299
16300 $cacheitem-E<gt>nodes()
16301
16302 $cacheitem-E<gt>find_node($name)
16303
16304 $cacheitem-E<gt>idx()
16305
16306 =over 4
16307
16308 =item AUTHOR
16309
16310 =item SEE ALSO
16311
16312 =back
16313
16314 =head2 Pod::Parser - base class for creating POD filters and translators
16315
16316 =over 4
16317
16318 =item SYNOPSIS
16319
16320 =item REQUIRES
16321
16322 =item EXPORTS
16323
16324 =item DESCRIPTION
16325
16326 =item QUICK OVERVIEW
16327
16328 =item PARSING OPTIONS
16329
16330 B<-want_nonPODs> (default: unset), B<-process_cut_cmd> (default: unset),
16331 B<-warnings> (default: unset)
16332
16333 =back
16334
16335 =over 4
16336
16337 =item RECOMMENDED SUBROUTINE/METHOD OVERRIDES
16338
16339 =back
16340
16341 =over 4
16342
16343 =item B<command()>
16344
16345 C<$cmd>, C<$text>, C<$line_num>, C<$pod_para>
16346
16347 =back
16348
16349 =over 4
16350
16351 =item B<verbatim()>
16352
16353 C<$text>, C<$line_num>, C<$pod_para>
16354
16355 =back
16356
16357 =over 4
16358
16359 =item B<textblock()>
16360
16361 C<$text>, C<$line_num>, C<$pod_para>
16362
16363 =back
16364
16365 =over 4
16366
16367 =item B<interior_sequence()>
16368
16369 =back
16370
16371 =over 4
16372
16373 =item OPTIONAL SUBROUTINE/METHOD OVERRIDES
16374
16375 =back
16376
16377 =over 4
16378
16379 =item B<new()>
16380
16381 =back
16382
16383 =over 4
16384
16385 =item B<initialize()>
16386
16387 =back
16388
16389 =over 4
16390
16391 =item B<begin_pod()>
16392
16393 =back
16394
16395 =over 4
16396
16397 =item B<begin_input()>
16398
16399 =back
16400
16401 =over 4
16402
16403 =item B<end_input()>
16404
16405 =back
16406
16407 =over 4
16408
16409 =item B<end_pod()>
16410
16411 =back
16412
16413 =over 4
16414
16415 =item B<preprocess_line()>
16416
16417 =back
16418
16419 =over 4
16420
16421 =item B<preprocess_paragraph()>
16422
16423 =back
16424
16425 =over 4
16426
16427 =item METHODS FOR PARSING AND PROCESSING
16428
16429 =back
16430
16431 =over 4
16432
16433 =item B<parse_text()>
16434
16435 B<-expand_seq> =E<gt> I<code-ref>|I<method-name>, B<-expand_text> =E<gt>
16436 I<code-ref>|I<method-name>, B<-expand_ptree> =E<gt>
16437 I<code-ref>|I<method-name>
16438
16439 =back
16440
16441 =over 4
16442
16443 =item B<interpolate()>
16444
16445 =back
16446
16447 =over 4
16448
16449 =item B<parse_paragraph()>
16450
16451 =back
16452
16453 =over 4
16454
16455 =item B<parse_from_filehandle()>
16456
16457 =back
16458
16459 =over 4
16460
16461 =item B<parse_from_file()>
16462
16463 =back
16464
16465 =over 4
16466
16467 =item ACCESSOR METHODS
16468
16469 =back
16470
16471 =over 4
16472
16473 =item B<errorsub()>
16474
16475 =back
16476
16477 =over 4
16478
16479 =item B<cutting()>
16480
16481 =back
16482
16483 =over 4
16484
16485 =item B<parseopts()>
16486
16487 =back
16488
16489 =over 4
16490
16491 =item B<output_file()>
16492
16493 =back
16494
16495 =over 4
16496
16497 =item B<output_handle()>
16498
16499 =back
16500
16501 =over 4
16502
16503 =item B<input_file()>
16504
16505 =back
16506
16507 =over 4
16508
16509 =item B<input_handle()>
16510
16511 =back
16512
16513 =over 4
16514
16515 =item B<input_streams()>
16516
16517 =back
16518
16519 =over 4
16520
16521 =item B<top_stream()>
16522
16523 =back
16524
16525 =over 4
16526
16527 =item PRIVATE METHODS AND DATA
16528
16529 =back
16530
16531 =over 4
16532
16533 =item B<_push_input_stream()>
16534
16535 =back
16536
16537 =over 4
16538
16539 =item B<_pop_input_stream()>
16540
16541 =back
16542
16543 =over 4
16544
16545 =item TREE-BASED PARSING
16546
16547 =item SEE ALSO
16548
16549 =item AUTHOR
16550
16551 =back
16552
16553 =head2 Pod::Plainer - Perl extension for converting Pod to old style Pod.
16554
16555 =over 4
16556
16557 =item SYNOPSIS
16558
16559 =item DESCRIPTION
16560
16561 =over 4
16562
16563 =item EXPORT
16564
16565 =back
16566
16567 =item AUTHOR
16568
16569 =item SEE ALSO
16570
16571 =back
16572
16573 =head2 Pod::Select, podselect() - extract selected sections of POD from
16574 input
16575
16576 =over 4
16577
16578 =item SYNOPSIS
16579
16580 =item REQUIRES
16581
16582 =item EXPORTS
16583
16584 =item DESCRIPTION
16585
16586 =item SECTION SPECIFICATIONS
16587
16588 =item RANGE SPECIFICATIONS
16589
16590 =back
16591
16592 =over 4
16593
16594 =item OBJECT METHODS
16595
16596 =back
16597
16598 =over 4
16599
16600 =item B<curr_headings()>
16601
16602 =back
16603
16604 =over 4
16605
16606 =item B<select()>
16607
16608 =back
16609
16610 =over 4
16611
16612 =item B<add_selection()>
16613
16614 =back
16615
16616 =over 4
16617
16618 =item B<clear_selections()>
16619
16620 =back
16621
16622 =over 4
16623
16624 =item B<match_section()>
16625
16626 =back
16627
16628 =over 4
16629
16630 =item B<is_selected()>
16631
16632 =back
16633
16634 =over 4
16635
16636 =item EXPORTED FUNCTIONS
16637
16638 =back
16639
16640 =over 4
16641
16642 =item B<podselect()>
16643
16644 B<-output>, B<-sections>, B<-ranges>
16645
16646 =back
16647
16648 =over 4
16649
16650 =item PRIVATE METHODS AND DATA
16651
16652 =back
16653
16654 =over 4
16655
16656 =item B<_compile_section_spec()>
16657
16658 =back
16659
16660 =over 4
16661
16662 =item $self->{_SECTION_HEADINGS}
16663
16664 =back
16665
16666 =over 4
16667
16668 =item $self->{_SELECTED_SECTIONS}
16669
16670 =back
16671
16672 =over 4
16673
16674 =item SEE ALSO
16675
16676 =item AUTHOR
16677
16678 =back
16679
16680 =head2 Pod::Text - Convert POD data to formatted ASCII text
16681
16682 =over 4
16683
16684 =item SYNOPSIS
16685
16686 =item DESCRIPTION
16687
16688 alt, code, indent, loose, quotes, sentence, width
16689
16690 =item DIAGNOSTICS
16691
16692 Bizarre space in item, Item called without tag, Can't open %s for reading:
16693 %s, Invalid quote specification "%s", %s:%d: Unknown command paragraph: %s,
16694 %s:%d: Unknown escape: %s, %s:%d: Unknown formatting code: %s, %s:%d:
16695 Unmatched =back
16696
16697 =item RESTRICTIONS
16698
16699 =item NOTES
16700
16701 =item SEE ALSO
16702
16703 =item AUTHOR
16704
16705 =item COPYRIGHT AND LICENSE
16706
16707 =back
16708
16709 =head2 Pod::Text::Color - Convert POD data to formatted color ASCII text
16710
16711 =over 4
16712
16713 =item SYNOPSIS
16714
16715 =item DESCRIPTION
16716
16717 =item BUGS
16718
16719 =item SEE ALSO
16720
16721 =item AUTHOR
16722
16723 =item COPYRIGHT AND LICENSE
16724
16725 =back
16726
16727 =head2 Pod::Text::Overstrike - Convert POD data to formatted overstrike
16728 text
16729
16730 =over 4
16731
16732 =item SYNOPSIS
16733
16734 =item DESCRIPTION
16735
16736 =item BUGS
16737
16738 =item SEE ALSO
16739
16740 =item AUTHOR
16741
16742 =item COPYRIGHT AND LICENSE
16743
16744 =back
16745
16746 =head2 Pod::Text::Termcap, Pod::Text::Color - Convert POD data to ASCII
16747 text with format escapes
16748
16749 =over 4
16750
16751 =item SYNOPSIS
16752
16753 =item DESCRIPTION
16754
16755 =item NOTES
16756
16757 =item SEE ALSO
16758
16759 =item AUTHOR
16760
16761 =item COPYRIGHT AND LICENSE
16762
16763 =back
16764
16765 =head2 Pod::Usage, pod2usage() - print a usage message from embedded pod
16766 documentation
16767
16768 =over 4
16769
16770 =item SYNOPSIS
16771
16772 =item ARGUMENTS
16773
16774 C<-message>, C<-msg>, C<-exitval>, C<-verbose>, C<-output>, C<-input>,
16775 C<-pathlist>
16776
16777 =item DESCRIPTION
16778
16779 =item EXAMPLES
16780
16781 =over 4
16782
16783 =item Recommended Use
16784
16785 =back
16786
16787 =item CAVEATS
16788
16789 =item AUTHOR
16790
16791 =item ACKNOWLEDGEMENTS
16792
16793 =back
16794
16795 =head2 Pod::t::basic, basic.pod - Test of various basic POD features in
16796 translators.
16797
16798 =over 4
16799
16800 =item HEADINGS
16801
16802 =item This C<is> a "level 1" heading
16803
16804 =over 4
16805
16806 =item ``Level'' "2 I<heading>
16807
16808 =back
16809
16810 =item This C<is> a "level 1" heading
16811
16812 =over 4
16813
16814 =item ``Level'' 2 I<heading>
16815
16816 =back
16817
16818 =item LINKS
16819
16820 =item OVER AND ITEMS
16821
16822 This  is a test, a, b, a, b, c, d, "foo", B<bar>, C<baz>, Some longer item
16823 text
16824
16825 =item FORMATTING CODES
16826
16827 E<amp>, E<apos>, E<lt>, E<gt>, E<quot>, E<sol>
16828
16829 =item VERBATIM
16830
16831 =item CONCLUSION
16832
16833 =back
16834
16835 =head2 SDBM_File - Tied access to sdbm files
16836
16837 =over 4
16838
16839 =item SYNOPSIS
16840
16841 =item DESCRIPTION
16842
16843 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
16844
16845 =item DIAGNOSTICS
16846
16847 =over 4
16848
16849 =item C<sdbm store returned -1, errno 22, key "..." at ...>
16850
16851 =back
16852
16853 =item BUGS AND WARNINGS
16854
16855 =back
16856
16857 =head2 Safe - Compile and execute code in restricted compartments
16858
16859 =over 4
16860
16861 =item SYNOPSIS
16862
16863 =item DESCRIPTION
16864
16865 a new namespace, an operator mask
16866
16867 =item WARNING
16868
16869 =over 4
16870
16871 =item RECENT CHANGES
16872
16873 =item Methods in class Safe
16874
16875 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
16876 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
16877 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
16878 root (NAMESPACE), mask (MASK)
16879
16880 =item Some Safety Issues
16881
16882 Memory, CPU, Snooping, Signals, State Changes
16883
16884 =item AUTHOR
16885
16886 =back
16887
16888 =back
16889
16890 =head2 Scalar::Util - A selection of general-utility scalar subroutines
16891
16892 =over 4
16893
16894 =item SYNOPSIS
16895
16896 =item DESCRIPTION
16897
16898 blessed EXPR, dualvar NUM, STRING, isweak EXPR, readonly SCALAR, reftype
16899 EXPR, tainted EXPR, weaken REF
16900
16901 =item KNOWN BUGS
16902
16903 =item COPYRIGHT
16904
16905 =item BLATANT PLUG
16906
16907 =back
16908
16909 =head2 Search::Dict, look - search for key in dictionary file
16910
16911 =over 4
16912
16913 =item SYNOPSIS
16914
16915 =item DESCRIPTION
16916
16917 =back
16918
16919 =head2 SelectSaver - save and restore selected file handle
16920
16921 =over 4
16922
16923 =item SYNOPSIS
16924
16925 =item DESCRIPTION
16926
16927 =back
16928
16929 =head2 SelfLoader - load functions only on demand
16930
16931 =over 4
16932
16933 =item SYNOPSIS
16934
16935 =item DESCRIPTION
16936
16937 =over 4
16938
16939 =item The __DATA__ token
16940
16941 =item SelfLoader autoloading
16942
16943 =item Autoloading and package lexicals
16944
16945 =item SelfLoader and AutoLoader
16946
16947 =item __DATA__, __END__, and the FOOBAR::DATA filehandle.
16948
16949 =item Classes and inherited methods.
16950
16951 =back
16952
16953 =item Multiple packages and fully qualified subroutine names
16954
16955 =back
16956
16957 =head2 Shell - run shell commands transparently within perl
16958
16959 =over 4
16960
16961 =item SYNOPSIS
16962
16963 =item DESCRIPTION
16964
16965 =over 4
16966
16967 =item OBJECT ORIENTED SYNTAX
16968
16969 =back
16970
16971 =item AUTHOR
16972
16973 =back
16974
16975 =head2 Socket, sockaddr_in, sockaddr_un, inet_aton, inet_ntoa - load the C
16976 socket.h defines and structure manipulators 
16977
16978 =over 4
16979
16980 =item SYNOPSIS
16981
16982 =item DESCRIPTION
16983
16984 inet_aton HOSTNAME, inet_ntoa IP_ADDRESS, INADDR_ANY, INADDR_BROADCAST,
16985 INADDR_LOOPBACK, INADDR_NONE, sockaddr_family SOCKADDR, sockaddr_in PORT,
16986 ADDRESS, sockaddr_in SOCKADDR_IN, pack_sockaddr_in PORT, IP_ADDRESS,
16987 unpack_sockaddr_in SOCKADDR_IN, sockaddr_un PATHNAME, sockaddr_un
16988 SOCKADDR_UN, pack_sockaddr_un PATH, unpack_sockaddr_un SOCKADDR_UN
16989
16990 =back
16991
16992 =head2 Storable - persistency for perl data structures
16993
16994 =over 4
16995
16996 =item SYNOPSIS
16997
16998 =item DESCRIPTION
16999
17000 =item MEMORY STORE
17001
17002 =item ADVISORY LOCKING
17003
17004 =item SPEED
17005
17006 =item CANONICAL REPRESENTATION
17007
17008 =item ERROR REPORTING
17009
17010 =item WIZARDS ONLY
17011
17012 =over 4
17013
17014 =item Hooks
17015
17016 C<STORABLE_freeze> I<obj>, I<cloning>, C<STORABLE_thaw> I<obj>, I<cloning>,
17017 I<serialized>, ..
17018
17019 =item Predicates
17020
17021 C<Storable::last_op_in_netorder>, C<Storable::is_storing>,
17022 C<Storable::is_retrieving>
17023
17024 =item Recursion
17025
17026 =item Deep Cloning
17027
17028 =back
17029
17030 =item Storable magic
17031
17032 =item EXAMPLES
17033
17034 =item WARNING
17035
17036 =item BUGS
17037
17038 =item CREDITS
17039
17040 =item TRANSLATIONS
17041
17042 =item AUTHOR
17043
17044 =item SEE ALSO
17045
17046 =back
17047
17048 =head2 Switch - A switch statement for Perl
17049
17050 =over 4
17051
17052 =item VERSION
17053
17054 =item SYNOPSIS
17055
17056 =item BACKGROUND
17057
17058 =item DESCRIPTION
17059
17060 =over 4
17061
17062 =item Allowing fall-through
17063
17064 =item Automating fall-through
17065
17066 =item Alternative syntax
17067
17068 =item Higher-order Operations
17069
17070 =back
17071
17072 =item DEPENDENCIES
17073
17074 =item AUTHOR
17075
17076 =item BUGS
17077
17078 =item LIMITATION
17079
17080 =item COPYRIGHT
17081
17082 =back
17083
17084 =head2 Symbol - manipulate Perl symbols and their names
17085
17086 =over 4
17087
17088 =item SYNOPSIS
17089
17090 =item DESCRIPTION
17091
17092 =back
17093
17094 =head2 Sys::Hostname - Try every conceivable way to get hostname
17095
17096 =over 4
17097
17098 =item SYNOPSIS
17099
17100 =item DESCRIPTION
17101
17102 =item AUTHOR
17103
17104 =back
17105
17106 =head2 Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl
17107 interface to the UNIX syslog(3) calls
17108
17109 =over 4
17110
17111 =item SYNOPSIS
17112
17113 =item DESCRIPTION
17114
17115 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
17116 setlogmask $mask_priority, setlogsock $sock_type (added in 5.004_02),
17117 closelog
17118
17119 =item EXAMPLES
17120
17121 =item SEE ALSO
17122
17123 =item AUTHOR
17124
17125 =back
17126
17127 =head2 Syslog::Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog -
17128 Perl interface to the UNIX syslog(3) calls
17129
17130 =over 4
17131
17132 =item SYNOPSIS
17133
17134 =item DESCRIPTION
17135
17136 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
17137 setlogmask $mask_priority, setlogsock $sock_type (added in 5.004_02),
17138 closelog
17139
17140 =item EXAMPLES
17141
17142 =item SEE ALSO
17143
17144 =item AUTHOR
17145
17146 =back
17147
17148 =head2 Term::ANSIColor - Color screen output using ANSI escape sequences
17149
17150 =over 4
17151
17152 =item SYNOPSIS
17153
17154 =item DESCRIPTION
17155
17156 =item DIAGNOSTICS
17157
17158 Bad escape sequence %s, Bareword "%s" not allowed while "strict subs" in
17159 use, Invalid attribute name %s, Name "%s" used only once: possible typo, No
17160 comma allowed after filehandle, No name for escape sequence %s
17161
17162 =item ENVIRONMENT
17163
17164 ANSI_COLORS_DISABLED
17165
17166 =item RESTRICTIONS
17167
17168 =item NOTES
17169
17170 =item SEE ALSO
17171
17172 =item AUTHORS
17173
17174 =item LICENSE
17175
17176 =back
17177
17178 =head2 Term::Cap - Perl termcap interface
17179
17180 =over 4
17181
17182 =item SYNOPSIS
17183
17184 =item DESCRIPTION
17185
17186 =over 4
17187
17188 =item METHODS
17189
17190 =back
17191
17192 =back
17193
17194 B<Tgetent>, OSPEED, TERM
17195
17196 B<Tpad>, B<$string>, B<$cnt>, B<$FH>
17197
17198 B<Tputs>, B<$cap>, B<$cnt>, B<$FH>
17199
17200 B<Tgoto>, B<$cap>, B<$col>, B<$row>, B<$FH>
17201
17202 B<Trequire>
17203
17204 =over 4
17205
17206 =item EXAMPLES
17207
17208 =item COPYRIGHT AND LICENSE
17209
17210 =item AUTHOR
17211
17212 =item SEE ALSO
17213
17214 =back
17215
17216 =head2 Term::Complete - Perl word completion module
17217
17218 =over 4
17219
17220 =item SYNOPSIS
17221
17222 =item DESCRIPTION
17223
17224 E<lt>tabE<gt>, ^D, ^U, E<lt>delE<gt>, E<lt>bsE<gt>
17225
17226 =item DIAGNOSTICS
17227
17228 =item BUGS
17229
17230 =item AUTHOR
17231
17232 =back
17233
17234 =head2 Term::ReadLine - Perl interface to various C<readline> packages. If
17235 no real package is found, substitutes stubs instead of basic functions.
17236
17237 =over 4
17238
17239 =item SYNOPSIS
17240
17241 =item DESCRIPTION
17242
17243 =item Minimal set of supported functions
17244
17245 C<ReadLine>, C<new>, C<readline>, C<addhistory>, C<IN>, $C<OUT>,
17246 C<MinLine>, C<findConsole>, Attribs, C<Features>
17247
17248 =item Additional supported functions
17249
17250 C<tkRunning>, C<ornaments>, C<newTTY>
17251
17252 =item EXPORTS
17253
17254 =item ENVIRONMENT
17255
17256 =item CAVEATS
17257
17258 =back
17259
17260 =head2 Test - provides a simple framework for writing test scripts
17261
17262 =over 4
17263
17264 =item SYNOPSIS
17265
17266 =item DESCRIPTION
17267
17268 =over 4
17269
17270 =item Functions
17271
17272 B<plan>
17273
17274 =back
17275
17276 =back
17277
17278 B<_to_value>
17279
17280 B<ok>
17281
17282 =over 4
17283
17284 =item TEST TYPES
17285
17286 NORMAL TESTS, SKIPPED TESTS, TODO TESTS
17287
17288 =item ONFAIL
17289
17290 =item BUGS and CAVEATS
17291
17292 =item NOTE
17293
17294 =item SEE ALSO
17295
17296 =item AUTHOR
17297
17298 =back
17299
17300 =head2 Test::Builder - Backend for building test libraries
17301
17302 =over 4
17303
17304 =item SYNOPSIS
17305
17306 =item DESCRIPTION
17307
17308 =over 4
17309
17310 =item Construction
17311
17312 B<new>
17313
17314 =back
17315
17316 =back
17317
17318 =over 4
17319
17320 =item Setting up tests
17321
17322 B<exported_to>
17323
17324 =back
17325
17326 B<plan>
17327
17328 B<expected_tests>
17329
17330 B<no_plan>
17331
17332 B<skip_all>
17333
17334 =over 4
17335
17336 =item Running tests
17337
17338 B<ok>
17339
17340 =back
17341
17342 B<is_eq>, B<is_num>
17343
17344 B<isnt_eq>, B<isnt_num>
17345
17346 B<like>, B<unlike>
17347
17348 B<cmp_ok>
17349
17350 B<BAILOUT>
17351
17352 B<skip>
17353
17354 B<todo_skip>
17355
17356 B<skip_rest>
17357
17358 =over 4
17359
17360 =item Test style
17361
17362 B<level>
17363
17364 =back
17365
17366 B<use_numbers>
17367
17368 B<no_header>, B<no_ending>
17369
17370 =over 4
17371
17372 =item Output
17373
17374 B<diag>
17375
17376 =back
17377
17378 B<_print>
17379
17380 B<output>, B<failure_output>, B<todo_output>
17381
17382 =over 4
17383
17384 =item Test Status and Info
17385
17386 B<current_test>
17387
17388 =back
17389
17390 B<summary>
17391
17392 B<details>  I<UNIMPLEMENTED>, B<todo>
17393
17394 B<caller>
17395
17396 B<_sanity_check>
17397
17398 B<_whoa>
17399
17400 B<_my_exit>
17401
17402 =over 4
17403
17404 =item EXAMPLES
17405
17406 =item SEE ALSO
17407
17408 =item AUTHORS
17409
17410 =item COPYRIGHT
17411
17412 =back
17413
17414 =head2 Test::Harness - run perl standard test scripts with statistics
17415
17416 =over 4
17417
17418 =item SYNOPSIS
17419
17420 =item DESCRIPTION
17421
17422 =over 4
17423
17424 =item The test script output
17425
17426 B<'1..M'>, B<'ok', 'not ok'.  Ok?>, B<test numbers>, B<test names>,
17427 B<Skipping tests>, B<Todo tests>, B<Bail out!>, B<Comments>, B<Anything
17428 else>
17429
17430 =item Taint mode
17431
17432 =item Configuration variables.
17433
17434 B<$Test::Harness::verbose>, B<$Test::Harness::switches>
17435
17436 =item Failure
17437
17438 B<Failed Test>, B<Stat>, B<Wstat>, B<Total>, B<Fail>, B<Failed>, B<List of
17439 Failed>
17440
17441 =item Functions
17442
17443 B<runtests>
17444
17445 =back
17446
17447 =back
17448
17449 B<_all_ok>
17450
17451 B<_globdir>
17452
17453 B<_run_all_tests>
17454
17455 B<_mk_leader>
17456
17457 B<_leader_width>
17458
17459 =over 4
17460
17461 =item EXPORT
17462
17463 =item DIAGNOSTICS
17464
17465 C<All tests successful.\nFiles=%d,  Tests=%d, %s>, C<FAILED tests
17466 %s\n\tFailed %d/%d tests, %.2f%% okay.>, C<Test returned status %d (wstat
17467 %d)>, C<Failed 1 test, %.2f%% okay. %s>, C<Failed %d/%d tests, %.2f%% okay.
17468 %s>, C<FAILED--Further testing stopped%s>
17469
17470 =item ENVIRONMENT
17471
17472 C<HARNESS_IGNORE_EXITCODE>, C<HARNESS_NOTTY>, C<HARNESS_COMPILE_TEST>,
17473 C<HARNESS_FILELEAK_IN_DIR>, C<HARNESS_PERL_SWITCHES>, C<HARNESS_COLUMNS>,
17474 C<HARNESS_ACTIVE>
17475
17476 =item EXAMPLE
17477
17478 =item SEE ALSO
17479
17480 =item AUTHORS
17481
17482 =item TODO
17483
17484 =item BUGS
17485
17486 =back
17487
17488 =head2 Test::Harness::Assert - simple assert
17489
17490 =over 4
17491
17492 =item SYNOPSIS
17493
17494 =item DESCRIPTION
17495
17496 =over 4
17497
17498 =item Functions
17499
17500 B<assert>
17501
17502 =back
17503
17504 =back
17505
17506 =over 4
17507
17508 =item AUTHOR
17509
17510 =item SEE ALSO
17511
17512 =back
17513
17514 =head2 Test::Harness::Iterator - Internal Test::Harness Iterator
17515
17516 =over 4
17517
17518 =item SYNOPSIS
17519
17520 =item DESCRIPTION
17521
17522 =back
17523
17524 =head2 Test::Harness::Straps - detailed analysis of test results
17525
17526 =over 4
17527
17528 =item SYNOPSIS
17529
17530 =item DESCRIPTION
17531
17532 =over 4
17533
17534 =item Construction
17535
17536 B<new>
17537
17538 =back
17539
17540 =back
17541
17542 B<_init>
17543
17544 =over 4
17545
17546 =item Analysis
17547
17548 B<analyze>
17549
17550 =back
17551
17552 B<analyze_fh>
17553
17554 B<analyze_file>
17555
17556 B<_switches>
17557
17558 B<_INC2PERL5LIB>
17559
17560 B<_filtered_INC>
17561
17562 B<_restore_PERL5LIB>
17563
17564 =over 4
17565
17566 =item Parsing
17567
17568 B<_is_comment>
17569
17570 =back
17571
17572 B<_is_header>
17573
17574 B<_is_test>
17575
17576 B<_is_bail_out>
17577
17578 B<_reset_file_state>
17579
17580 =over 4
17581
17582 =item Results
17583
17584 B<_detailize>
17585
17586 =back
17587
17588 =over 4
17589
17590 =item EXAMPLES
17591
17592 =item AUTHOR
17593
17594 =item SEE ALSO
17595
17596 =back
17597
17598 =head2 Test::More - yet another framework for writing test scripts
17599
17600 =over 4
17601
17602 =item SYNOPSIS
17603
17604 =item DESCRIPTION
17605
17606 =over 4
17607
17608 =item I love it when a plan comes together
17609
17610 =back
17611
17612 =back
17613
17614 =over 4
17615
17616 =item Test names
17617
17618 =item I'm ok, you're not ok.
17619
17620 B<ok>
17621
17622 =back
17623
17624 B<is>, B<isnt>
17625
17626 B<like>
17627
17628 B<unlike>
17629
17630 B<cmp_ok>
17631
17632 B<can_ok>
17633
17634 B<isa_ok>
17635
17636 B<pass>, B<fail>
17637
17638 =over 4
17639
17640 =item Diagnostics
17641
17642 B<diag>
17643
17644 =back
17645
17646 =over 4
17647
17648 =item Module tests
17649
17650 B<use_ok>
17651
17652 =back
17653
17654 B<require_ok>
17655
17656 =over 4
17657
17658 =item Conditional tests
17659
17660 B<SKIP: BLOCK>
17661
17662 =back
17663
17664 B<TODO: BLOCK>, B<todo_skip>
17665
17666 =over 4
17667
17668 =item Comparison functions
17669
17670 B<is_deeply>
17671
17672 =back
17673
17674 B<eq_array>
17675
17676 B<eq_hash>
17677
17678 B<eq_set>
17679
17680 =over 4
17681
17682 =item Extending and Embedding Test::More
17683
17684 B<builder>
17685
17686 =back
17687
17688 =over 4
17689
17690 =item NOTES
17691
17692 =item BUGS and CAVEATS
17693
17694 Making your own ok(), The eq_* family has some caveats, Test::Harness
17695 upgrades
17696
17697 =item HISTORY
17698
17699 =item SEE ALSO
17700
17701 =item AUTHORS
17702
17703 =item COPYRIGHT
17704
17705 =back
17706
17707 =head2 Test::Simple - Basic utilities for writing tests.
17708
17709 =over 4
17710
17711 =item SYNOPSIS
17712
17713 =item DESCRIPTION
17714
17715 B<ok>
17716
17717 =back
17718
17719 =over 4
17720
17721 =item EXAMPLE
17722
17723 =item CAVEATS
17724
17725 =item NOTES
17726
17727 =item HISTORY
17728
17729 =item SEE ALSO
17730
17731 L<Test::More>, L<Test>, L<Test::Unit>, L<Test::Inline>, L<SelfTest>,
17732 L<Test::Harness>
17733
17734 =item AUTHORS
17735
17736 =item COPYRIGHT
17737
17738 =back
17739
17740 =head2 Test::Tutorial - A tutorial about writing really basic tests
17741
17742 =over 4
17743
17744 =item DESCRIPTION
17745
17746 =over 4
17747
17748 =item Nuts and bolts of testing.
17749
17750 =item Where to start?
17751
17752 =item Names
17753
17754 =item Test the manual
17755
17756 =item Sometimes the tests are wrong
17757
17758 =item Testing lots of values
17759
17760 =item Informative names
17761
17762 =item Skipping tests
17763
17764 =item Todo tests
17765
17766 =item Testing with taint mode.
17767
17768 =back
17769
17770 =item FOOTNOTES
17771
17772 =item AUTHORS
17773
17774 =item COPYRIGHT
17775
17776 =back
17777
17778 =head2 Text::Abbrev, abbrev - create an abbreviation table from a list
17779
17780 =over 4
17781
17782 =item SYNOPSIS
17783
17784 =item DESCRIPTION
17785
17786 =item EXAMPLE
17787
17788 =back
17789
17790 =head2 Text::Balanced - Extract delimited text sequences from strings.
17791
17792 =over 4
17793
17794 =item SYNOPSIS
17795
17796 =item DESCRIPTION
17797
17798 =over 4
17799
17800 =item General behaviour in list contexts
17801
17802 [0], [1], [2]
17803
17804 =item General behaviour in scalar and void contexts
17805
17806 =item A note about prefixes
17807
17808 =item C<extract_delimited>
17809
17810 =item C<extract_bracketed>
17811
17812 =item C<extract_tagged>
17813
17814 C<reject =E<gt> $listref>, C<ignore =E<gt> $listref>, C<fail =E<gt> $str>,
17815 [0], [1], [2], [3], [4], [5]
17816
17817 =item C<gen_extract_tagged>
17818
17819 =item C<extract_quotelike>
17820
17821 [0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10]
17822
17823 =item C<extract_quotelike> and "here documents"
17824
17825 [0], [1], [2], [3], [4], [5], [6], [7..10]
17826
17827 =item C<extract_codeblock>
17828
17829 =item C<extract_multiple>
17830
17831 =item C<gen_delimited_pat>
17832
17833 =back
17834
17835 =item DIAGNOSTICS
17836
17837  C<Did not find a suitable bracket: "%s">,  C<Did not find prefix: /%s/>, 
17838 C<Did not find opening bracket after prefix: "%s">,  C<No quotelike
17839 operator found after prefix: "%s">,  C<Unmatched closing bracket: "%c">, 
17840 C<Unmatched opening bracket(s): "%s">, C<Unmatched embedded quote (%s)>,
17841 C<Did not find closing delimiter to match '%s'>,  C<Mismatched closing
17842 bracket: expected "%c" but found "%s">,  C<No block delimiter found after
17843 quotelike "%s">, C<Did not find leading dereferencer>, C<Bad identifier
17844 after dereferencer>, C<Did not find expected opening bracket at %s>,
17845 C<Improperly nested codeblock at %s>,  C<Missing second block for quotelike
17846 "%s">, C<No match found for opening bracket>, C<Did not find opening tag:
17847 /%s/>, C<Unable to construct closing tag to match: /%s/>, C<Found invalid
17848 nested tag: %s>, C<Found unbalanced nested tag: %s>, C<Did not find closing
17849 tag>
17850
17851 =item AUTHOR
17852
17853 =item BUGS AND IRRITATIONS
17854
17855 =item COPYRIGHT
17856
17857 =back
17858
17859 =head2 Text::ParseWords - parse text into an array of tokens or array of
17860 arrays
17861
17862 =over 4
17863
17864 =item SYNOPSIS
17865
17866 =item DESCRIPTION
17867
17868 =item EXAMPLES
17869
17870 =item AUTHORS
17871
17872 =back
17873
17874 =head2 Text::Soundex - Implementation of the Soundex Algorithm as Described
17875 by Knuth
17876
17877 =over 4
17878
17879 =item SYNOPSIS
17880
17881 =item DESCRIPTION
17882
17883 =item EXAMPLES
17884
17885 =item LIMITATIONS
17886
17887 =item AUTHOR
17888
17889 =back
17890
17891 =head2 Text::Tabs -- expand and unexpand tabs per the unix expand(1) and
17892 unexpand(1)
17893
17894 =over 4
17895
17896 =item SYNOPSIS
17897
17898 =item DESCRIPTION
17899
17900 =item BUGS
17901
17902 =item AUTHOR
17903
17904 =back
17905
17906 =head2 Text::Wrap - line wrapping to form simple paragraphs
17907
17908 =over 4
17909
17910 =item SYNOPSIS 
17911
17912 =item DESCRIPTION
17913
17914 =item OVERRIDES
17915
17916 =item EXAMPLE
17917
17918 =item AUTHOR
17919
17920 =back
17921
17922 =head2 Thread - manipulate threads in Perl
17923
17924 =over 4
17925
17926 =item CAVEAT
17927
17928 =item SYNOPSIS
17929
17930 =item DESCRIPTION
17931
17932 =item FUNCTIONS
17933
17934 $thread = Thread->new(\&start_sub), $thread = Thread->new(\&start_sub,
17935 LIST), lock VARIABLE, async BLOCK;, Thread->self, cond_wait VARIABLE,
17936 cond_signal VARIABLE, cond_broadcast VARIABLE, yield
17937
17938 =item METHODS
17939
17940 join, eval, detach, equal, tid, flags, done
17941
17942 =item LIMITATIONS
17943
17944 =item SEE ALSO
17945
17946 =back
17947
17948 =head2 Thread::Queue - thread-safe queues
17949
17950 =over 4
17951
17952 =item SYNOPSIS
17953
17954 =item DESCRIPTION
17955
17956 =item FUNCTIONS AND METHODS
17957
17958 new, enqueue LIST, dequeue, dequeue_nb, pending
17959
17960 =item SEE ALSO
17961
17962 =back
17963
17964 =head2 Thread::Semaphore - thread-safe semaphores
17965
17966 =over 4
17967
17968 =item SYNOPSIS
17969
17970 =item DESCRIPTION
17971
17972 =item FUNCTIONS AND METHODS
17973
17974 new, new NUMBER, down, down NUMBER, up, up NUMBER
17975
17976 =back
17977
17978 =head2 Thread::Signal - Start a thread which runs signal handlers reliably
17979
17980 =over 4
17981
17982 =item SYNOPSIS
17983
17984 =item DESCRIPTION
17985
17986 =item BUGS
17987
17988 =back
17989
17990 =head2 Thread::Specific - thread-specific keys
17991
17992 =over 4
17993
17994 =item SYNOPSIS
17995
17996 =item DESCRIPTION
17997
17998 =back
17999
18000 =head2 Tie::Array - base class for tied arrays
18001
18002 =over 4
18003
18004 =item SYNOPSIS
18005
18006 =item DESCRIPTION
18007
18008 TIEARRAY classname, LIST, STORE this, index, value, FETCH this, index,
18009 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
18010 key, DELETE this, key, CLEAR this, DESTROY this, PUSH this, LIST, POP this,
18011 SHIFT this, UNSHIFT this, LIST, SPLICE this, offset, length, LIST
18012
18013 =item CAVEATS
18014
18015 =item AUTHOR
18016
18017 =back
18018
18019 =head2 Tie::File - Access the lines of a disk file via a Perl array
18020
18021 =over 4
18022
18023 =item SYNOPSIS
18024
18025 =item DESCRIPTION
18026
18027 =over 4
18028
18029 =item C<recsep>
18030
18031 =item C<mode>
18032
18033 =item C<cachesize>
18034
18035 =item Option Format
18036
18037 =back
18038
18039 =item Public Methods
18040
18041 =over 4
18042
18043 =item C<flock>
18044
18045 =item Tying to an already-opened filehandle
18046
18047 =back
18048
18049 =item CAVEATS
18050
18051 =over 4
18052
18053 =item Efficiency Note
18054
18055 =item Efficiency Note 2
18056
18057 =item Efficiency Note 3
18058
18059 =back
18060
18061 =item CAVEATS
18062
18063 =item AUTHOR
18064
18065 =item LICENSE
18066
18067 =item WARRANTY
18068
18069 =item THANKS
18070
18071 =item TODO
18072
18073 =back
18074
18075 =head2 Tie::Handle, Tie::StdHandle  - base class definitions for tied
18076 handles
18077
18078 =over 4
18079
18080 =item SYNOPSIS
18081
18082 =item DESCRIPTION
18083
18084 TIEHANDLE classname, LIST, WRITE this, scalar, length, offset, PRINT this,
18085 LIST, PRINTF this, format, LIST, READ this, scalar, length, offset,
18086 READLINE this, GETC this, CLOSE this, OPEN this, filename, BINMODE this,
18087 EOF this, TELL this, SEEK this, offset, whence, DESTROY this
18088
18089 =item MORE INFORMATION
18090
18091 =item COMPATIBILITY
18092
18093 =back
18094
18095 =head2 Tie::Hash, Tie::StdHash, Tie::ExtraHash - base class definitions for
18096 tied hashes
18097
18098 =over 4
18099
18100 =item SYNOPSIS
18101
18102 =item DESCRIPTION
18103
18104 TIEHASH classname, LIST, STORE this, key, value, FETCH this, key, FIRSTKEY
18105 this, NEXTKEY this, lastkey, EXISTS this, key, DELETE this, key, CLEAR this
18106
18107 =item Inheriting from B<Tie::StdHash>
18108
18109 =item Inheriting from B<Tie::ExtraHash>
18110
18111 =item C<UNTIE> and C<DESTROY>
18112
18113 =item MORE INFORMATION
18114
18115 =back
18116
18117 =head2 Tie::Memoize - add data to hash when needed
18118
18119 =over 4
18120
18121 =item SYNOPSIS
18122
18123 =item DESCRIPTION
18124
18125 =item Inheriting from B<Tie::Memoize>
18126
18127 =item EXAMPLE
18128
18129 =item BUGS
18130
18131 =item AUTHOR
18132
18133 =back
18134
18135 =head2 Tie::RefHash - use references as hash keys
18136
18137 =over 4
18138
18139 =item SYNOPSIS
18140
18141 =item DESCRIPTION
18142
18143 =item EXAMPLE
18144
18145 =item AUTHOR
18146
18147 =item VERSION
18148
18149 =item SEE ALSO
18150
18151 =back
18152
18153 =head2 Tie::Scalar, Tie::StdScalar - base class definitions for tied
18154 scalars
18155
18156 =over 4
18157
18158 =item SYNOPSIS
18159
18160 =item DESCRIPTION
18161
18162 TIESCALAR classname, LIST, FETCH this, STORE this, value, DESTROY this
18163
18164 =item MORE INFORMATION
18165
18166 =back
18167
18168 =head2 Tie::SubstrHash - Fixed-table-size, fixed-key-length hashing
18169
18170 =over 4
18171
18172 =item SYNOPSIS
18173
18174 =item DESCRIPTION
18175
18176 =item CAVEATS
18177
18178 =back
18179
18180 =head2 Time::HiRes - High resolution alarm, sleep, gettimeofday, interval
18181 timers
18182
18183 =over 4
18184
18185 =item SYNOPSIS
18186
18187 =item DESCRIPTION
18188
18189 gettimeofday (), usleep ( $useconds ), ualarm ( $useconds [,
18190 $interval_useconds ] ), tv_interval, time (), sleep ( $floating_seconds ),
18191 alarm ( $floating_seconds [, $interval_floating_seconds ] ), setitimer,
18192 getitimer ( $which )
18193
18194 =item EXAMPLES
18195
18196 =item C API
18197
18198 =item CAVEATS
18199
18200 =item AUTHORS
18201
18202 =item REVISION
18203
18204 =item COPYRIGHT
18205
18206 =back
18207
18208 =head2 Time::Local - efficiently compute time from local and GMT time
18209
18210 =over 4
18211
18212 =item SYNOPSIS
18213
18214 =item DESCRIPTION
18215
18216 =item IMPLEMENTATION
18217
18218 =item BUGS
18219
18220 =back
18221
18222 =head2 Time::gmtime - by-name interface to Perl's built-in gmtime()
18223 function
18224
18225 =over 4
18226
18227 =item SYNOPSIS
18228
18229 =item DESCRIPTION
18230
18231 =item NOTE
18232
18233 =item AUTHOR
18234
18235 =back
18236
18237 =head2 Time::localtime - by-name interface to Perl's built-in localtime()
18238 function
18239
18240 =over 4
18241
18242 =item SYNOPSIS
18243
18244 =item DESCRIPTION
18245
18246 =item NOTE
18247
18248 =item AUTHOR
18249
18250 =back
18251
18252 =head2 Time::tm - internal object used by Time::gmtime and Time::localtime
18253
18254 =over 4
18255
18256 =item SYNOPSIS
18257
18258 =item DESCRIPTION
18259
18260 =item AUTHOR
18261
18262 =back
18263
18264 =head2 UNIVERSAL - base class for ALL classes (blessed references)
18265
18266 =over 4
18267
18268 =item SYNOPSIS
18269
18270 =item DESCRIPTION
18271
18272 $obj->isa( TYPE ), CLASS->isa( TYPE ), isa( VAL, TYPE ), $obj->can( METHOD
18273 ), CLASS->can( METHOD ), can( VAL, METHOD ), VERSION ( [ REQUIRE ] )
18274
18275 =back
18276
18277 =head2 Unicode::Collate - use UCA (Unicode Collation Algorithm)
18278
18279 =over 4
18280
18281 =item SYNOPSIS
18282
18283 =item DESCRIPTION
18284
18285 =over 4
18286
18287 =item Constructor and Tailoring
18288
18289 alternate, backwards, entry, ignoreName, ignoreChar, level, normalization,
18290 overrideCJK, overrideHangul, preprocess, rearrange, table, undefName,
18291 undefChar, katakana_before_hiragana, upper_before_lower
18292
18293 =item Other methods
18294
18295 C<@sorted = $Collator-E<gt>sort(@not_sorted)>, C<$result =
18296 $Collator-E<gt>cmp($a, $b)>, C<$result = $Collator-E<gt>eq($a, $b)>,
18297 C<$result = $Collator-E<gt>ne($a, $b)>, C<$result = $Collator-E<gt>lt($a,
18298 $b)>, C<$result = $Collator-E<gt>le($a, $b)>, C<$result =
18299 $Collator-E<gt>gt($a, $b)>, C<$result = $Collator-E<gt>ge($a, $b)>,
18300 C<$sortKey = $Collator-E<gt>getSortKey($string)>, C<$position =
18301 $Collator-E<gt>index($string, $substring)>, C<($position, $length) =
18302 $Collator-E<gt>index($string, $substring)>
18303
18304 =item EXPORT
18305
18306 =item TODO
18307
18308 =item CAVEAT
18309
18310 =back
18311
18312 =item AUTHOR
18313
18314 =item SEE ALSO
18315
18316 Unicode Collation Algorithm - Unicode TR #10, L<Unicode::Normalize>
18317
18318 =back
18319
18320 =head2 Unicode::Normalize - normalized forms of Unicode text
18321
18322 =over 4
18323
18324 =item SYNOPSIS
18325
18326 =item DESCRIPTION
18327
18328 =over 4
18329
18330 =item Normalization Forms
18331
18332 C<$string_NFD = NFD($raw_string)>, C<$string_NFC = NFC($raw_string)>,
18333 C<$string_NFKD = NFKD($raw_string)>, C<$string_NFKC = NFKC($raw_string)>,
18334 C<$normalized_string = normalize($form_name, $raw_string)>
18335
18336 =item Character Data
18337
18338 C<$canonical_decomposed = getCanon($codepoint)>,
18339 C<$compatibility_decomposed = getCompat($codepoint)>, C<$uv_composite =
18340 getComposite($uv_here, $uv_next)>, C<$combining_class =
18341 getCombinClass($codepoint)>, C<$is_exclusion = isExclusion($codepoint)>
18342
18343 =item EXPORT
18344
18345 =item TODO
18346
18347 =back
18348
18349 =item AUTHOR
18350
18351 =item SEE ALSO
18352
18353 http://www.unicode.org/unicode/reports/tr15/
18354
18355 =back
18356
18357 =head2 Unicode::UCD - Unicode character database
18358
18359 =over 4
18360
18361 =item SYNOPSIS
18362
18363 =item DESCRIPTION
18364
18365 =back
18366
18367 =over 4
18368
18369 =item charinfo
18370
18371 =back
18372
18373 =over 4
18374
18375 =item charblock
18376
18377 =back
18378
18379 =over 4
18380
18381 =item charscript
18382
18383 =back
18384
18385 =over 4
18386
18387 =item charblocks
18388
18389 =back
18390
18391 =over 4
18392
18393 =item charscripts
18394
18395 =back
18396
18397 =over 4
18398
18399 =item Blocks versus Scripts
18400
18401 =item Matching Scripts and Blocks
18402
18403 =item Code Point Arguments
18404
18405 =item charinrange
18406
18407 =back
18408
18409 =over 4
18410
18411 =item compexcl
18412
18413 =back
18414
18415 =over 4
18416
18417 =item casefold
18418
18419 =back
18420
18421 =over 4
18422
18423 =item casespec
18424
18425 =back
18426
18427 =over 4
18428
18429 =item Unicode::UCD::UnicodeVersion
18430
18431 =back
18432
18433 =over 4
18434
18435 =item Implementation Note
18436
18437 =back
18438
18439 =over 4
18440
18441 =item BUGS
18442
18443 =item AUTHOR
18444
18445 =back
18446
18447 =head2 User::grent - by-name interface to Perl's built-in getgr*()
18448 functions
18449
18450 =over 4
18451
18452 =item SYNOPSIS
18453
18454 =item DESCRIPTION
18455
18456 =item NOTE
18457
18458 =item AUTHOR
18459
18460 =back
18461
18462 =head2 User::pwent - by-name interface to Perl's built-in getpw*()
18463 functions
18464
18465 =over 4
18466
18467 =item SYNOPSIS
18468
18469 =item DESCRIPTION
18470
18471 =over 4
18472
18473 =item System Specifics
18474
18475 =back
18476
18477 =item NOTE
18478
18479 =item AUTHOR
18480
18481 =item HISTORY
18482
18483 March 18th, 2000
18484
18485 =back
18486
18487 =head2 Win32 - Interfaces to some Win32 API Functions
18488
18489 =over 4
18490
18491 =item DESCRIPTION
18492
18493 =over 4
18494
18495 =item Alphabetical Listing of Win32 Functions
18496
18497 Win32::AbortSystemShutdown(MACHINE), Win32::BuildNumber(),
18498 Win32::CopyFile(FROM, TO, OVERWRITE), Win32::DomainName(),
18499 Win32::ExpandEnvironmentStrings(STRING), Win32::FormatMessage(ERRORCODE),
18500 Win32::FsType(), Win32::FreeLibrary(HANDLE), Win32::GetArchName(),
18501 Win32::GetChipName(), Win32::GetCwd(), Win32::GetFullPathName(FILENAME),
18502 Win32::GetLastError(), Win32::GetLongPathName(PATHNAME),
18503 Win32::GetNextAvailDrive(), Win32::GetOSVersion(),
18504 Win32::GetShortPathName(PATHNAME), Win32::GetProcAddress(INSTANCE,
18505 PROCNAME), Win32::GetTickCount(), Win32::InitiateSystemShutdown,
18506 Win32::IsWinNT(), Win32::IsWin95(), Win32::LoadLibrary(LIBNAME),
18507 Win32::LoginName(), Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID,
18508 SIDTYPE), Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE),
18509 Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]]), Win32::NodeName(),
18510 Win32::RegisterServer(LIBRARYNAME), Win32::SetChildShowWindow(SHOWWINDOW),
18511 Win32::SetCwd(NEWDIRECTORY), Win32::SetLastError(ERROR),
18512 Win32::Sleep(TIME), Win32::Spawn(COMMAND, ARGS, PID),
18513 Win32::UnregisterServer(LIBRARYNAME)
18514
18515 =back
18516
18517 =back
18518
18519 =head2 XS::Typemap - module to test the XS typemaps distributed with perl
18520
18521 =over 4
18522
18523 =item SYNOPSIS
18524
18525 =item DESCRIPTION
18526
18527 =back
18528
18529 =over 4
18530
18531 =item NOTES
18532
18533 =item AUTHOR
18534
18535 =back
18536
18537 =head2 XSLoader - Dynamically load C libraries into Perl code
18538
18539 =over 4
18540
18541 =item SYNOPSIS
18542
18543 =item DESCRIPTION
18544
18545 =item AUTHOR
18546
18547 =back
18548
18549 =head1 AUXILIARY DOCUMENTATION
18550
18551 Here should be listed all the extra programs' documentation, but they
18552 don't all have manual pages yet:
18553
18554 =over 4
18555
18556 =item a2p
18557
18558 =item s2p
18559
18560 =item find2perl
18561
18562 =item h2ph
18563
18564 =item c2ph
18565
18566 =item h2xs
18567
18568 =item xsubpp
18569
18570 =item pod2man
18571
18572 =item wrapsuid
18573
18574 =back
18575
18576 =head1 AUTHOR
18577
18578 Larry Wall <F<larry@wall.org>>, with the help of oodles
18579 of other folks.
18580