One more run_byacc (a hand-tweaked version had slipped in).
[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 =item DESCRIPTION
21
22 =item AVAILABILITY
23
24 =item ENVIRONMENT
25
26 =item AUTHOR
27
28 =item FILES
29
30 =item SEE ALSO
31
32 =item DIAGNOSTICS
33
34 =item BUGS
35
36 =item NOTES
37
38 =back
39
40 =head2 perlfaq - frequently asked questions about Perl ($Date: 1999/05/23
41 20:38:02 $)
42
43 =over 4
44
45 =item DESCRIPTION
46
47 =over 4
48
49 =item perlfaq: Structural overview of the FAQ.
50
51 =item L<perlfaq1>: General Questions About Perl
52
53 =item L<perlfaq2>: Obtaining and Learning about Perl
54
55 =item L<perlfaq3>: Programming Tools
56
57 =item L<perlfaq4>: Data Manipulation
58
59 =item L<perlfaq5>: Files and Formats
60
61 =item L<perlfaq6>: Regexps
62
63 =item L<perlfaq7>: General Perl Language Issues
64
65 =item L<perlfaq8>: System Interaction
66
67 =item L<perlfaq9>: Networking
68
69 =back
70
71 =item About the perlfaq documents
72
73 =over 4
74
75 =item Where to get the perlfaq
76
77 =item How to contribute to the perlfaq
78
79 =item What will happen if you mail your Perl programming problems to the
80 authors
81
82 =back
83
84 =item Credits
85
86 =item Author and Copyright Information
87
88 =over 4
89
90 =item Bundled Distributions
91
92 =item Disclaimer
93
94 =back
95
96 =item Changes
97
98 1/November/2000, 23/May/99, 13/April/99, 7/January/99, 22/June/98,
99 24/April/97, 23/April/97, 25/March/97, 18/March/97, 17/March/97 Version,
100 Initial Release: 11/March/97
101
102 =back
103
104 =head2 perlbook - Perl book information
105
106 =over 4
107
108 =item DESCRIPTION
109
110 =back
111
112 =head2 perlsyn - Perl syntax
113
114 =over 4
115
116 =item DESCRIPTION
117
118 =over 4
119
120 =item Declarations
121
122 =item Simple statements
123
124 =item Compound statements
125
126 =item Loop Control
127
128 =item For Loops
129
130 =item Foreach Loops
131
132 =item Basic BLOCKs and Switch Statements
133
134 =item Goto
135
136 =item PODs: Embedded Documentation
137
138 =item Plain Old Comments (Not!)
139
140 =back
141
142 =back
143
144 =head2 perldata - Perl data types
145
146 =over 4
147
148 =item DESCRIPTION
149
150 =over 4
151
152 =item Variable names
153
154 =item Context
155
156 =item Scalar values
157
158 =item Scalar value constructors
159
160 =item List value constructors
161
162 =item Slices
163
164 =item Typeglobs and Filehandles
165
166 =back
167
168 =item SEE ALSO
169
170 =back
171
172 =head2 perlop - Perl operators and precedence
173
174 =over 4
175
176 =item SYNOPSIS
177
178 =item DESCRIPTION
179
180 =over 4
181
182 =item Terms and List Operators (Leftward)
183
184 =item The Arrow Operator
185
186 =item Auto-increment and Auto-decrement
187
188 =item Exponentiation
189
190 =item Symbolic Unary Operators
191
192 =item Binding Operators
193
194 =item Multiplicative Operators
195
196 =item Additive Operators
197
198 =item Shift Operators
199
200 =item Named Unary Operators
201
202 =item Relational Operators
203
204 =item Equality Operators
205
206 =item Bitwise And
207
208 =item Bitwise Or and Exclusive Or
209
210 =item C-style Logical And
211
212 =item C-style Logical Or
213
214 =item Range Operators
215
216 =item Conditional Operator
217
218 =item Assignment Operators
219
220 =item Comma Operator
221
222 =item List Operators (Rightward)
223
224 =item Logical Not
225
226 =item Logical And
227
228 =item Logical or and Exclusive Or
229
230 =item C Operators Missing From Perl
231
232 unary &, unary *, (TYPE)
233
234 =item Quote and Quote-like Operators
235
236 =item Regexp Quote-Like Operators
237
238 ?PATTERN?, m/PATTERN/cgimosx, /PATTERN/cgimosx, q/STRING/, C<'STRING'>,
239 qq/STRING/, "STRING", qr/STRING/imosx, qx/STRING/, `STRING`, qw/STRING/,
240 s/PATTERN/REPLACEMENT/egimosx, tr/SEARCHLIST/REPLACEMENTLIST/cds,
241 y/SEARCHLIST/REPLACEMENTLIST/cds
242
243 =item Gory details of parsing quoted constructs
244
245 Finding the end, Removal of backslashes before delimiters, Interpolation,
246 C<<<'EOF'>, C<m''>, C<s'''>, C<tr///>, C<y///>, C<''>, C<q//>, C<"">,
247 C<``>, C<qq//>, C<qx//>, C<< <file*glob> >>, C<?RE?>, C</RE/>, C<m/RE/>,
248 C<s/RE/foo/>,, Interpolation of regular expressions, Optimization of
249 regular expressions
250
251 =item I/O Operators
252
253 =item Constant Folding
254
255 =item Bitwise String Operators
256
257 =item Integer Arithmetic
258
259 =item Floating-point Arithmetic
260
261 =item Bigger Numbers
262
263 =back
264
265 =back
266
267 =head2 perlsub - Perl subroutines
268
269 =over 4
270
271 =item SYNOPSIS
272
273 =item DESCRIPTION
274
275 =over 4
276
277 =item Private Variables via my()
278
279 =item Persistent Private Variables
280
281 =item Temporary Values via local()
282
283 =item Lvalue subroutines
284
285 =item Passing Symbol Table Entries (typeglobs)
286
287 =item When to Still Use local()
288
289 =item Pass by Reference
290
291 =item Prototypes
292
293 =item Constant Functions
294
295 =item Overriding Built-in Functions
296
297 =item Autoloading
298
299 =item Subroutine Attributes
300
301 =back
302
303 =item SEE ALSO
304
305 =back
306
307 =head2 perlfunc - Perl builtin functions
308
309 =over 4
310
311 =item DESCRIPTION
312
313 =over 4
314
315 =item Perl Functions by Category
316
317 Functions for SCALARs or strings, Regular expressions and pattern matching,
318 Numeric functions, Functions for real @ARRAYs, Functions for list data,
319 Functions for real %HASHes, Input and output functions, Functions for fixed
320 length data or records, Functions for filehandles, files, or directories,
321 Keywords related to the control flow of your perl program, Keywords related
322 to scoping, Miscellaneous functions, Functions for processes and process
323 groups, Keywords related to perl modules, Keywords related to classes and
324 object-orientedness, Low-level socket functions, System V interprocess
325 communication functions, Fetching user and group info, Fetching network
326 info, Time-related functions, Functions new in perl5, Functions obsoleted
327 in perl5
328
329 =item Portability
330
331 =item Alphabetical Listing of Perl Functions
332
333 I<-X> FILEHANDLE, I<-X> EXPR, I<-X>, abs VALUE, abs, accept
334 NEWSOCKET,GENERICSOCKET, alarm SECONDS, alarm, atan2 Y,X, bind SOCKET,NAME,
335 binmode FILEHANDLE, DISCIPLINE, binmode FILEHANDLE, bless REF,CLASSNAME,
336 bless REF, caller EXPR, caller, chdir EXPR, chmod LIST, chomp VARIABLE,
337 chomp LIST, chomp, chop VARIABLE, chop LIST, chop, chown LIST, chr NUMBER,
338 chr, chroot FILENAME, chroot, close FILEHANDLE, close, closedir DIRHANDLE,
339 connect SOCKET,NAME, continue BLOCK, cos EXPR, cos, crypt PLAINTEXT,SALT,
340 dbmclose HASH, dbmopen HASH,DBNAME,MASK, defined EXPR, defined, delete
341 EXPR, die LIST, do BLOCK, do SUBROUTINE(LIST), do EXPR, dump LABEL, dump,
342 each HASH, eof FILEHANDLE, eof (), eof, eval EXPR, eval BLOCK, exec LIST,
343 exec PROGRAM LIST, exists EXPR, exit EXPR, exp EXPR, exp, fcntl
344 FILEHANDLE,FUNCTION,SCALAR, fileno FILEHANDLE, flock FILEHANDLE,OPERATION,
345 fork, format, formline PICTURE,LIST, getc FILEHANDLE, getc, getlogin,
346 getpeername SOCKET, getpgrp PID, getppid, getpriority WHICH,WHO, getpwnam
347 NAME, getgrnam NAME, gethostbyname NAME, getnetbyname NAME, getprotobyname
348 NAME, getpwuid UID, getgrgid GID, getservbyname NAME,PROTO, gethostbyaddr
349 ADDR,ADDRTYPE, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
350 getservbyport PORT,PROTO, getpwent, getgrent, gethostent, getnetent,
351 getprotoent, getservent, setpwent, setgrent, sethostent STAYOPEN, setnetent
352 STAYOPEN, setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent,
353 endhostent, endnetent, endprotoent, endservent, getsockname SOCKET,
354 getsockopt SOCKET,LEVEL,OPTNAME, glob EXPR, glob, gmtime EXPR, goto LABEL,
355 goto EXPR, goto &NAME, grep BLOCK LIST, grep EXPR,LIST, hex EXPR, hex,
356 import, index STR,SUBSTR,POSITION, index STR,SUBSTR, int EXPR, int, ioctl
357 FILEHANDLE,FUNCTION,SCALAR, join EXPR,LIST, keys HASH, kill SIGNAL, LIST,
358 last LABEL, last, lc EXPR, lc, lcfirst EXPR, lcfirst, length EXPR, length,
359 link OLDFILE,NEWFILE, listen SOCKET,QUEUESIZE, local EXPR, localtime EXPR,
360 lock, log EXPR, log, lstat EXPR, lstat, m//, map BLOCK LIST, map EXPR,LIST,
361 mkdir FILENAME,MASK, mkdir FILENAME, msgctl ID,CMD,ARG, msgget KEY,FLAGS,
362 msgrcv ID,VAR,SIZE,TYPE,FLAGS, msgsnd ID,MSG,FLAGS, my EXPR, my EXPR :
363 ATTRIBUTES, next LABEL, next, no Module LIST, oct EXPR, oct, open
364 FILEHANDLE,EXPR, open FILEHANDLE,MODE,EXPR, open FILEHANDLE,MODE,EXPR,LIST,
365 open FILEHANDLE, opendir DIRHANDLE,EXPR, ord EXPR, ord, our EXPR, our EXPR
366 : ATTRIBUTES, pack TEMPLATE,LIST, package NAMESPACE, package, pipe
367 READHANDLE,WRITEHANDLE, pop ARRAY, pop, pos SCALAR, pos, print FILEHANDLE
368 LIST, print LIST, print, printf FILEHANDLE FORMAT, LIST, printf FORMAT,
369 LIST, prototype FUNCTION, push ARRAY,LIST, q/STRING/, qq/STRING/,
370 qr/STRING/, qx/STRING/, qw/STRING/, quotemeta EXPR, quotemeta, rand EXPR,
371 rand, read FILEHANDLE,SCALAR,LENGTH,OFFSET, read FILEHANDLE,SCALAR,LENGTH,
372 readdir DIRHANDLE, readline EXPR, readlink EXPR, readlink, readpipe EXPR,
373 recv SOCKET,SCALAR,LENGTH,FLAGS, redo LABEL, redo, ref EXPR, ref, rename
374 OLDNAME,NEWNAME, require VERSION, require EXPR, require, reset EXPR, reset,
375 return EXPR, return, reverse LIST, rewinddir DIRHANDLE, rindex
376 STR,SUBSTR,POSITION, rindex STR,SUBSTR, rmdir FILENAME, rmdir, s///, scalar
377 EXPR, seek FILEHANDLE,POSITION,WHENCE, seekdir DIRHANDLE,POS, select
378 FILEHANDLE, select, select RBITS,WBITS,EBITS,TIMEOUT, semctl
379 ID,SEMNUM,CMD,ARG, semget KEY,NSEMS,FLAGS, semop KEY,OPSTRING, send
380 SOCKET,MSG,FLAGS,TO, send SOCKET,MSG,FLAGS, setpgrp PID,PGRP, setpriority
381 WHICH,WHO,PRIORITY, setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL, shift ARRAY,
382 shift, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS, shmread ID,VAR,POS,SIZE,
383 shmwrite ID,STRING,POS,SIZE, shutdown SOCKET,HOW, sin EXPR, sin, sleep
384 EXPR, sleep, sockatmark SOCKET, socket SOCKET,DOMAIN,TYPE,PROTOCOL,
385 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, sort SUBNAME LIST, sort
386 BLOCK LIST, sort LIST, splice ARRAY,OFFSET,LENGTH,LIST, splice
387 ARRAY,OFFSET,LENGTH, splice ARRAY,OFFSET, splice ARRAY, split
388 /PATTERN/,EXPR,LIMIT, split /PATTERN/,EXPR, split /PATTERN/, split, sprintf
389 FORMAT, LIST, sqrt EXPR, sqrt, srand EXPR, srand, stat FILEHANDLE, stat
390 EXPR, stat, study SCALAR, study, sub BLOCK, sub NAME, sub NAME BLOCK,
391 substr EXPR,OFFSET,LENGTH,REPLACEMENT, substr EXPR,OFFSET,LENGTH, substr
392 EXPR,OFFSET, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
393 FILEHANDLE,FILENAME,MODE, sysopen FILEHANDLE,FILENAME,MODE,PERMS, sysread
394 FILEHANDLE,SCALAR,LENGTH,OFFSET, sysread FILEHANDLE,SCALAR,LENGTH, sysseek
395 FILEHANDLE,POSITION,WHENCE, system LIST, system PROGRAM LIST, syswrite
396 FILEHANDLE,SCALAR,LENGTH,OFFSET, syswrite FILEHANDLE,SCALAR,LENGTH,
397 syswrite FILEHANDLE,SCALAR, tell FILEHANDLE, tell, telldir DIRHANDLE, tie
398 VARIABLE,CLASSNAME,LIST, tied VARIABLE, time, times, tr///, truncate
399 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, uc EXPR, uc, ucfirst EXPR,
400 ucfirst, umask EXPR, umask, undef EXPR, undef, unlink LIST, unlink, unpack
401 TEMPLATE,EXPR, untie VARIABLE, unshift ARRAY,LIST, use Module VERSION LIST,
402 use Module VERSION, use Module LIST, use Module, use VERSION, utime LIST,
403 values HASH, vec EXPR,OFFSET,BITS, wait, waitpid PID,FLAGS, wantarray, warn
404 LIST, write FILEHANDLE, write EXPR, write, y///
405
406 =back
407
408 =back
409
410 =head2 perlreftut - Mark's very short tutorial about references
411
412 =over 4
413
414 =item DESCRIPTION
415
416 =item Who Needs Complicated Data Structures?
417
418 =item The Solution
419
420 =item Syntax
421
422 =over 4
423
424 =item Making References
425
426 =item Using References
427
428 =back
429
430 =item An Example
431
432 =item Arrow Rule
433
434 =item Solution
435
436 =item The Rest
437
438 =item Summary
439
440 =item Credits
441
442 =over 4
443
444 =item Distribution Conditions
445
446 =back
447
448 =back
449
450 =head2 perldsc - Perl Data Structures Cookbook
451
452 =over 4
453
454 =item DESCRIPTION
455
456 arrays of arrays, hashes of arrays, arrays of hashes, hashes of hashes,
457 more elaborate constructs
458
459 =item REFERENCES
460
461 =item COMMON MISTAKES
462
463 =item CAVEAT ON PRECEDENCE
464
465 =item WHY YOU SHOULD ALWAYS C<use strict>
466
467 =item DEBUGGING
468
469 =item CODE EXAMPLES
470
471 =item ARRAYS OF ARRAYS
472
473 =over 4
474
475 =item Declaration of a ARRAY OF ARRAYS
476
477 =item Generation of a ARRAY OF ARRAYS
478
479 =item Access and Printing of a ARRAY OF ARRAYS
480
481 =back
482
483 =item HASHES OF ARRAYS
484
485 =over 4
486
487 =item Declaration of a HASH OF ARRAYS
488
489 =item Generation of a HASH OF ARRAYS
490
491 =item Access and Printing of a HASH OF ARRAYS
492
493 =back
494
495 =item ARRAYS OF HASHES
496
497 =over 4
498
499 =item Declaration of a ARRAY OF HASHES
500
501 =item Generation of a ARRAY OF HASHES
502
503 =item Access and Printing of a ARRAY OF HASHES
504
505 =back
506
507 =item HASHES OF HASHES
508
509 =over 4
510
511 =item Declaration of a HASH OF HASHES
512
513 =item Generation of a HASH OF HASHES
514
515 =item Access and Printing of a HASH OF HASHES
516
517 =back
518
519 =item MORE ELABORATE RECORDS
520
521 =over 4
522
523 =item Declaration of MORE ELABORATE RECORDS
524
525 =item Declaration of a HASH OF COMPLEX RECORDS
526
527 =item Generation of a HASH OF COMPLEX RECORDS
528
529 =back
530
531 =item Database Ties
532
533 =item SEE ALSO
534
535 =item AUTHOR
536
537 =back
538
539 =head2 perlrequick - Perl regular expressions quick start
540
541 =over 4
542
543 =item DESCRIPTION
544
545 =item The Guide
546
547 =over 4
548
549 =item Simple word matching
550
551 =item Using character classes
552
553 =item Matching this or that
554
555 =item Grouping things and hierarchical matching
556
557 =item Extracting matches
558
559 =item Matching repetitions
560
561 =item More matching
562
563 =item Search and replace
564
565 =item The split operator
566
567 =back
568
569 =item BUGS
570
571 =item SEE ALSO
572
573 =item AUTHOR AND COPYRIGHT
574
575 =over 4
576
577 =item Acknowledgments
578
579 =back
580
581 =back
582
583 =head2 perlpod - plain old documentation
584
585 =over 4
586
587 =item DESCRIPTION
588
589 =over 4
590
591 =item Verbatim Paragraph
592
593 =item Command Paragraph
594
595 =item Ordinary Block of Text
596
597 =item The Intent
598
599 =item Embedding Pods in Perl Modules
600
601 =item Common Pod Pitfalls
602
603 =back
604
605 =item SEE ALSO
606
607 =item AUTHOR
608
609 =back
610
611 =head2 perlstyle - Perl style guide
612
613 =over 4
614
615 =item DESCRIPTION
616
617 =back
618
619 =head2 perltrap - Perl traps for the unwary
620
621 =over 4
622
623 =item DESCRIPTION
624
625 =over 4
626
627 =item Awk Traps
628
629 =item C Traps
630
631 =item Sed Traps
632
633 =item Shell Traps
634
635 =item Perl Traps
636
637 =item Perl4 to Perl5 Traps
638
639 Discontinuance, Deprecation, and BugFix traps, Parsing Traps, Numerical
640 Traps, General data type traps, Context Traps - scalar, list contexts,
641 Precedence Traps, General Regular Expression Traps using s///, etc,
642 Subroutine, Signal, Sorting Traps, OS Traps, DBM Traps, Unclassified Traps
643
644 =item Discontinuance, Deprecation, and BugFix traps
645
646 Discontinuance, Deprecation, BugFix, Discontinuance, Discontinuance,
647 Discontinuance, BugFix, Discontinuance, Discontinuance, BugFix,
648 Discontinuance, Deprecation, Discontinuance, Discontinuance
649
650 =item Parsing Traps
651
652 Parsing, Parsing, Parsing, Parsing
653
654 =item Numerical Traps
655
656 Numerical, Numerical, Numerical, Bitwise string ops
657
658 =item General data type traps
659
660 (Arrays), (Arrays), (Hashes), (Globs), (Globs), (Scalar String),
661 (Constants), (Scalars), (Variable Suicide)
662
663 =item Context Traps - scalar, list contexts
664
665 (list context), (scalar context), (scalar context), (list, builtin)
666
667 =item Precedence Traps
668
669 Precedence, Precedence, Precedence, Precedence, Precedence, Precedence,
670 Precedence
671
672 =item General Regular Expression Traps using s///, etc.
673
674 Regular Expression, Regular Expression, Regular Expression, Regular
675 Expression, Regular Expression, Regular Expression, Regular Expression,
676 Regular Expression
677
678 =item Subroutine, Signal, Sorting Traps
679
680 (Signals), (Sort Subroutine), warn() won't let you specify a filehandle
681
682 =item OS Traps
683
684 (SysV), (SysV)
685
686 =item Interpolation Traps
687
688 Interpolation, Interpolation, Interpolation, Interpolation, Interpolation,
689 Interpolation, Interpolation, Interpolation, Interpolation
690
691 =item DBM Traps
692
693 DBM, DBM
694
695 =item Unclassified Traps
696
697 C<require>/C<do> trap using returned value, C<split> on empty string with
698 LIMIT specified
699
700 =back
701
702 =back
703
704 =head2 perlrun - how to execute the Perl interpreter
705
706 =over 4
707
708 =item SYNOPSIS
709
710 =item DESCRIPTION
711
712 =over 4
713
714 =item #! and quoting on non-Unix systems
715
716 OS/2, MS-DOS, Win95/NT, Macintosh, VMS
717
718 =item Location of Perl
719
720 =item Command Switches
721
722 B<-0>[I<digits>], B<-a>, B<-C>, B<-c>, B<-d>, B<-d:>I<foo[=bar,baz]>,
723 B<-D>I<letters>, B<-D>I<number>, B<-e> I<commandline>, B<-F>I<pattern>,
724 B<-h>, B<-i>[I<extension>], B<-I>I<directory>, B<-l>[I<octnum>],
725 B<-m>[B<->]I<module>, B<-M>[B<->]I<module>, B<-M>[B<->]I<'module ...'>,
726 B<-[mM]>[B<->]I<module=arg[,arg]...>, B<-n>, B<-p>, B<-P>, B<-s>, B<-S>,
727 B<-T>, B<-u>, B<-U>, B<-v>, B<-V>, B<-V:>I<name>, B<-w>, B<-W>, B<-X>,
728 B<-x> I<directory>
729
730 =back
731
732 =item ENVIRONMENT
733
734 HOME, LOGDIR, PATH, PERL5LIB, PERL5OPT, PERLLIB, PERL5DB, PERL5SHELL
735 (specific to the Win32 port), PERL_DEBUG_MSTATS, PERL_DESTRUCT_LEVEL,
736 PERL_ROOT (specific to the VMS port), SYS$LOGIN (specific to the VMS port)
737
738 =back
739
740 =head2 perldiag - various Perl diagnostics
741
742 =over 4
743
744 =item DESCRIPTION
745
746 =back
747
748 =head2 perllexwarn - Perl Lexical Warnings
749
750 =over 4
751
752 =item DESCRIPTION
753
754 =over 4
755
756 =item Default Warnings and Optional Warnings
757
758 =item What's wrong with B<-w> and C<$^W>
759
760 =item Controlling Warnings from the Command Line
761
762 B<-w>, B<-W>, B<-X>
763
764 =item Backward Compatibility
765
766 =item Category Hierarchy
767
768 =item Fatal Warnings
769
770 =item Reporting Warnings from a Module
771
772 =back
773
774 =item TODO
775
776 =item SEE ALSO
777
778 =item AUTHOR
779
780 =back
781
782 =head2 perldebtut - Perl debugging tutorial
783
784 =over 4
785
786 =item DESCRIPTION
787
788 =item use strict
789
790 =item Looking at data and -w and w
791
792 =item help
793
794 =item Stepping through code
795
796 =item Placeholder for a, w, t, T
797
798 =item REGULAR EXPRESSIONS
799
800 =item OUTPUT TIPS
801
802 =item CGI
803
804 =item GUIs
805
806 =item SUMMARY
807
808 =item SEE ALSO
809
810 =item AUTHOR
811
812 =item CONTRIBUTORS
813
814 =back
815
816 =head2 perldebug - Perl debugging
817
818 =over 4
819
820 =item DESCRIPTION
821
822 =item The Perl Debugger
823
824 =over 4
825
826 =item Debugger Commands
827
828 h [command], p expr, x expr, V [pkg [vars]], X [vars], T, s [expr], n
829 [expr], r, <CR>, c [line|sub], l, l min+incr, l min-max, l line, l subname,
830 -, w [line], f filename, /pattern/, ?pattern?, L, S [[!]regex], t, t expr,
831 b [line] [condition], b subname [condition], b postpone subname
832 [condition], b load filename, b compile subname, d [line], D, a [line]
833 command, a [line], A, W expr, W, O booloption .., O anyoption? .., O
834 option=value .., < ?, < [ command ], << command, > ?, > command, >>
835 command, { ?, { [ command ], {{ command, ! number, ! -number, ! pattern, !!
836 cmd, H -number, q or ^D, R, |dbcmd, ||dbcmd, command, m expr, man [manpage]
837
838 =item Configurable Options
839
840 C<recallCommand>, C<ShellBang>, C<pager>, C<tkRunning>, C<signalLevel>,
841 C<warnLevel>, C<dieLevel>, C<AutoTrace>, C<LineInfo>, C<inhibit_exit>,
842 C<PrintRet>, C<ornaments>, C<frame>, C<maxTraceLen>, C<arrayDepth>,
843 C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>, C<DumpDBFiles>,
844 C<DumpPackages>, C<DumpReused>, C<quote>, C<HighBit>, C<undefPrint>,
845 C<UsageOnly>, C<TTY>, C<noTTY>, C<ReadLine>, C<NonStop>
846
847 =item Debugger input/output
848
849 Prompt, Multiline commands, Stack backtrace, Line Listing Format, Frame
850 listing
851
852 =item Debugging compile-time statements
853
854 =item Debugger Customization
855
856 =item Readline Support
857
858 =item Editor Support for Debugging
859
860 =item The Perl Profiler
861
862 =back
863
864 =item Debugging regular expressions
865
866 =item Debugging memory usage
867
868 =item SEE ALSO
869
870 =item BUGS
871
872 =back
873
874 =head2 perlvar - Perl predefined variables
875
876 =over 4
877
878 =item DESCRIPTION
879
880 =over 4
881
882 =item Predefined Names
883
884 $ARG, $_, $a, $b, $<I<digits>>, $MATCH, $&, $PREMATCH, $`, $POSTMATCH, $',
885 $LAST_PAREN_MATCH, $+, @LAST_MATCH_END, @+, $MULTILINE_MATCHING, $*,
886 input_line_number HANDLE EXPR, $INPUT_LINE_NUMBER, $NR, $,
887 input_record_separator HANDLE EXPR, $INPUT_RECORD_SEPARATOR, $RS, $/,
888 autoflush HANDLE EXPR, $OUTPUT_AUTOFLUSH, $|, output_field_separator HANDLE
889 EXPR, $OUTPUT_FIELD_SEPARATOR, $OFS, $,, output_record_separator HANDLE
890 EXPR, $OUTPUT_RECORD_SEPARATOR, $ORS, $\, $LIST_SEPARATOR, $",
891 $SUBSCRIPT_SEPARATOR, $SUBSEP, $;, $OFMT, $#, format_page_number HANDLE
892 EXPR, $FORMAT_PAGE_NUMBER, $%, format_lines_per_page HANDLE EXPR,
893 $FORMAT_LINES_PER_PAGE, $=, format_lines_left HANDLE EXPR,
894 $FORMAT_LINES_LEFT, $-, @LAST_MATCH_START, @-, C<$`> is the same as
895 C<substr($var, 0, $-[0])>, C<$&> is the same as C<substr($var, $-[0], $+[0]
896 - $-[0])>, C<$'> is the same as C<substr($var, $+[0])>, C<$1> is the same
897 as C<substr($var, $-[1], $+[1] - $-[1])>, C<$2> is the same as
898 C<substr($var, $-[2], $+[2] - $-[2])>, C<$3> is the same as C<substr $var,
899 $-[3], $+[3] - $-[3])>, format_name HANDLE EXPR, $FORMAT_NAME, $~,
900 format_top_name HANDLE EXPR, $FORMAT_TOP_NAME, $^,
901 format_line_break_characters HANDLE EXPR, $FORMAT_LINE_BREAK_CHARACTERS,
902 $:, format_formfeed HANDLE EXPR, $FORMAT_FORMFEED, $^L, $ACCUMULATOR, $^A,
903 $CHILD_ERROR, $?, $OS_ERROR, $ERRNO, $!, $EXTENDED_OS_ERROR, $^E,
904 $EVAL_ERROR, $@, $PROCESS_ID, $PID, $$, $REAL_USER_ID, $UID, $<,
905 $EFFECTIVE_USER_ID, $EUID, $>, $REAL_GROUP_ID, $GID, $(,
906 $EFFECTIVE_GROUP_ID, $EGID, $), $PROGRAM_NAME, $0, $[, $], $COMPILING, $^C,
907 $DEBUGGING, $^D, $SYSTEM_FD_MAX, $^F, $^H, %^H, $INPLACE_EDIT, $^I, $^M,
908 $OSNAME, $^O, $PERLDB, $^P, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
909 0x100, 0x200, $LAST_REGEXP_CODE_RESULT, $^R, $EXCEPTIONS_BEING_CAUGHT, $^S,
910 $BASETIME, $^T, $PERL_VERSION, $^V, $WARNING, $^W, ${^WARNING_BITS},
911 ${^WIDE_SYSTEM_CALLS}, $EXECUTABLE_NAME, $^X, $ARGV, @ARGV, @F, @INC, @_,
912 %INC, %ENV, $ENV{expr}, %SIG, $SIG{expr}
913
914 =item Error Indicators
915
916 =item Technical Note on the Syntax of Variable Names
917
918 =back
919
920 =item BUGS
921
922 =back
923
924 =head2 perllol - Manipulating Arrays of Arrays in Perl
925
926 =over 4
927
928 =item DESCRIPTION
929
930 =over 4
931
932 =item Declaration and Access of Arrays of Arrays
933
934 =item Growing Your Own
935
936 =item Access and Printing
937
938 =item Slices
939
940 =back
941
942 =item SEE ALSO
943
944 =item AUTHOR
945
946 =back
947
948 =head2 perlopentut - tutorial on opening things in Perl
949
950 =over 4
951
952 =item DESCRIPTION
953
954 =item Open E<agrave> la shell
955
956 =over 4
957
958 =item Simple Opens
959
960 =item Pipe Opens
961
962 =item The Minus File
963
964 =item Mixing Reads and Writes
965
966 =item Filters 
967
968 =back
969
970 =item Open E<agrave> la C
971
972 =over 4
973
974 =item Permissions E<agrave> la mode
975
976 =back
977
978 =item Obscure Open Tricks
979
980 =over 4
981
982 =item Re-Opening Files (dups)
983
984 =item Dispelling the Dweomer
985
986 =item Paths as Opens
987
988 =item Single Argument Open
989
990 =item Playing with STDIN and STDOUT
991
992 =back
993
994 =item Other I/O Issues
995
996 =over 4
997
998 =item Opening Non-File Files
999
1000 =item Binary Files
1001
1002 =item File Locking
1003
1004 =back
1005
1006 =item SEE ALSO 
1007
1008 =item AUTHOR and COPYRIGHT
1009
1010 =item HISTORY
1011
1012 =back
1013
1014 =head2 perlretut - Perl regular expressions tutorial
1015
1016 =over 4
1017
1018 =item DESCRIPTION
1019
1020 =item Part 1: The basics
1021
1022 =over 4
1023
1024 =item Simple word matching
1025
1026 =item Using character classes
1027
1028 =item Matching this or that
1029
1030 =item Grouping things and hierarchical matching
1031
1032 =item Extracting matches
1033
1034 =item Matching repetitions
1035
1036 =item Building a regexp
1037
1038 =item Using regular expressions in Perl
1039
1040 =back
1041
1042 =item Part 2: Power tools
1043
1044 =over 4
1045
1046 =item More on characters, strings, and character classes
1047
1048 =item Compiling and saving regular expressions
1049
1050 =item Embedding comments and modifiers in a regular expression
1051
1052 =item Non-capturing groupings
1053
1054 =item Looking ahead and looking behind
1055
1056 =item Using independent subexpressions to prevent backtracking
1057
1058 =item Conditional expressions
1059
1060 =item A bit of magic: executing Perl code in a regular expression
1061
1062 =item Pragmas and debugging
1063
1064 =back
1065
1066 =item BUGS
1067
1068 =item SEE ALSO
1069
1070 =item AUTHOR AND COPYRIGHT
1071
1072 =over 4
1073
1074 =item Acknowledgments
1075
1076 =back
1077
1078 =back
1079
1080 =head2 perlre - Perl regular expressions
1081
1082 =over 4
1083
1084 =item DESCRIPTION
1085
1086 i, m, s, x
1087
1088 =over 4
1089
1090 =item Regular Expressions
1091
1092 cntrl, graph, print, punct, xdigit
1093
1094 =item Extended Patterns
1095
1096 C<(?#text)>, C<(?imsx-imsx)>, C<(?:pattern)>, C<(?imsx-imsx:pattern)>,
1097 C<(?=pattern)>, C<(?!pattern)>, C<(?<=pattern)>, C<(?<!pattern)>, C<(?{
1098 code })>, C<(??{ code })>, C<< (?>pattern) >>,
1099 C<(?(condition)yes-pattern|no-pattern)>, C<(?(condition)yes-pattern)>
1100
1101 =item Backtracking
1102
1103 =item Version 8 Regular Expressions
1104
1105 =item Warning on \1 vs $1
1106
1107 =item Repeated patterns matching zero-length substring
1108
1109 =item Combining pieces together
1110
1111 C<ST>, C<S|T>, C<S{REPEAT_COUNT}>, C<S{min,max}>, C<S{min,max}?>, C<S?>,
1112 C<S*>, C<S+>, C<S??>, C<S*?>, C<S+?>, C<< (?>S) >>, C<(?=S)>, C<(?<=S)>,
1113 C<(?!S)>, C<(?<!S)>, C<(??{ EXPR })>,
1114 C<(?(condition)yes-pattern|no-pattern)>
1115
1116 =item Creating custom RE engines
1117
1118 =back
1119
1120 =item BUGS
1121
1122 =item SEE ALSO
1123
1124 =back
1125
1126 =head2 perlref - Perl references and nested data structures
1127
1128 =over 4
1129
1130 =item NOTE
1131
1132 =item DESCRIPTION
1133
1134 =over 4
1135
1136 =item Making References
1137
1138 =item Using References
1139
1140 =item Symbolic references
1141
1142 =item Not-so-symbolic references
1143
1144 =item Pseudo-hashes: Using an array as a hash
1145
1146 =item Function Templates
1147
1148 =back
1149
1150 =item WARNING
1151
1152 =item SEE ALSO
1153
1154 =back
1155
1156 =head2 perlform - Perl formats
1157
1158 =over 4
1159
1160 =item DESCRIPTION
1161
1162 =over 4
1163
1164 =item Format Variables
1165
1166 =back
1167
1168 =item NOTES
1169
1170 =over 4
1171
1172 =item Footers
1173
1174 =item Accessing Formatting Internals
1175
1176 =back
1177
1178 =item WARNINGS
1179
1180 =back
1181
1182 =head2 perlboot - Beginner's Object-Oriented Tutorial
1183
1184 =over 4
1185
1186 =item DESCRIPTION
1187
1188 =over 4
1189
1190 =item If we could talk to the animals...
1191
1192 =item Introducing the method invocation arrow
1193
1194 =item Invoking a barnyard
1195
1196 =item The extra parameter of method invocation
1197
1198 =item Calling a second method to simplify things
1199
1200 =item Inheriting the windpipes
1201
1202 =item A few notes about @ISA
1203
1204 =item Overriding the methods
1205
1206 =item Starting the search from a different place
1207
1208 =item The SUPER way of doing things
1209
1210 =item Where we're at so far...
1211
1212 =item A horse is a horse, of course of course -- or is it?
1213
1214 =item Invoking an instance method
1215
1216 =item Accessing the instance data
1217
1218 =item How to build a horse
1219
1220 =item Inheriting the constructor
1221
1222 =item Making a method work with either classes or instances
1223
1224 =item Adding parameters to a method
1225
1226 =item More interesting instances
1227
1228 =item A horse of a different color
1229
1230 =item Summary
1231
1232 =back
1233
1234 =item SEE ALSO
1235
1236 =item COPYRIGHT
1237
1238 =back
1239
1240 =head2 perltoot - Tom's object-oriented tutorial for perl
1241
1242 =over 4
1243
1244 =item DESCRIPTION
1245
1246 =item Creating a Class
1247
1248 =over 4
1249
1250 =item Object Representation
1251
1252 =item Class Interface
1253
1254 =item Constructors and Instance Methods
1255
1256 =item Planning for the Future: Better Constructors
1257
1258 =item Destructors
1259
1260 =item Other Object Methods
1261
1262 =back
1263
1264 =item Class Data
1265
1266 =over 4
1267
1268 =item Accessing Class Data
1269
1270 =item Debugging Methods
1271
1272 =item Class Destructors
1273
1274 =item Documenting the Interface
1275
1276 =back
1277
1278 =item Aggregation
1279
1280 =item Inheritance
1281
1282 =over 4
1283
1284 =item Overridden Methods
1285
1286 =item Multiple Inheritance
1287
1288 =item UNIVERSAL: The Root of All Objects
1289
1290 =back
1291
1292 =item Alternate Object Representations
1293
1294 =over 4
1295
1296 =item Arrays as Objects
1297
1298 =item Closures as Objects
1299
1300 =back
1301
1302 =item AUTOLOAD: Proxy Methods
1303
1304 =over 4
1305
1306 =item Autoloaded Data Methods
1307
1308 =item Inherited Autoloaded Data Methods
1309
1310 =back
1311
1312 =item Metaclassical Tools
1313
1314 =over 4
1315
1316 =item Class::Struct
1317
1318 =item Data Members as Variables
1319
1320 =back
1321
1322 =item NOTES
1323
1324 =over 4
1325
1326 =item Object Terminology
1327
1328 =back
1329
1330 =item SEE ALSO
1331
1332 =item AUTHOR AND COPYRIGHT
1333
1334 =item COPYRIGHT
1335
1336 =over 4
1337
1338 =item Acknowledgments
1339
1340 =back
1341
1342 =back
1343
1344 =head2 perltootc - Tom's OO Tutorial for Class Data in Perl
1345
1346 =over 4
1347
1348 =item DESCRIPTION
1349
1350 =item Class Data in a Can
1351
1352 =item Class Data as Package Variables
1353
1354 =over 4
1355
1356 =item Putting All Your Eggs in One Basket
1357
1358 =item Inheritance Concerns
1359
1360 =item The Eponymous Meta-Object
1361
1362 =item Indirect References to Class Data
1363
1364 =item Monadic Classes
1365
1366 =item Translucent Attributes
1367
1368 =back
1369
1370 =item Class Data as Lexical Variables
1371
1372 =over 4
1373
1374 =item Privacy and Responsibility 
1375
1376 =item File-Scoped Lexicals
1377
1378 =item More Inheritance Concerns
1379
1380 =item Locking the Door and Throwing Away the Key
1381
1382 =item Translucency Revisited
1383
1384 =back
1385
1386 =item NOTES
1387
1388 =item SEE ALSO
1389
1390 =item AUTHOR AND COPYRIGHT
1391
1392 =item ACKNOWLEDGEMENTS
1393
1394 =item HISTORY
1395
1396 =back
1397
1398 =head2 perlobj - Perl objects
1399
1400 =over 4
1401
1402 =item DESCRIPTION
1403
1404 =over 4
1405
1406 =item An Object is Simply a Reference
1407
1408 =item A Class is Simply a Package
1409
1410 =item A Method is Simply a Subroutine
1411
1412 =item Method Invocation
1413
1414 =item Indirect Object Syntax
1415
1416 =item Default UNIVERSAL methods
1417
1418 isa(CLASS), can(METHOD), VERSION( [NEED] )
1419
1420 =item Destructors
1421
1422 =item Summary
1423
1424 =item Two-Phased Garbage Collection
1425
1426 =back
1427
1428 =item SEE ALSO
1429
1430 =back
1431
1432 =head2 perlbot - Bag'o Object Tricks (the BOT)
1433
1434 =over 4
1435
1436 =item DESCRIPTION
1437
1438 =item OO SCALING TIPS
1439
1440 =item INSTANCE VARIABLES
1441
1442 =item SCALAR INSTANCE VARIABLES
1443
1444 =item INSTANCE VARIABLE INHERITANCE
1445
1446 =item OBJECT RELATIONSHIPS
1447
1448 =item OVERRIDING SUPERCLASS METHODS
1449
1450 =item USING RELATIONSHIP WITH SDBM
1451
1452 =item THINKING OF CODE REUSE
1453
1454 =item CLASS CONTEXT AND THE OBJECT
1455
1456 =item INHERITING A CONSTRUCTOR
1457
1458 =item DELEGATION
1459
1460 =back
1461
1462 =head2 perltie - how to hide an object class in a simple variable
1463
1464 =over 4
1465
1466 =item SYNOPSIS
1467
1468 =item DESCRIPTION
1469
1470 =over 4
1471
1472 =item Tying Scalars
1473
1474 TIESCALAR classname, LIST, FETCH this, STORE this, value, UNTIE this,
1475 DESTROY this
1476
1477 =item Tying Arrays
1478
1479 TIEARRAY classname, LIST, FETCH this, index, STORE this, index, value,
1480 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
1481 key, DELETE this, key, CLEAR this, PUSH this, LIST, POP this, SHIFT this,
1482 UNSHIFT this, LIST, SPLICE this, offset, length, LIST, UNTIE this, DESTROY
1483 this
1484
1485 =item Tying Hashes
1486
1487 USER, HOME, CLOBBER, LIST, TIEHASH classname, LIST, FETCH this, key, STORE
1488 this, key, value, DELETE this, key, CLEAR this, EXISTS this, key, FIRSTKEY
1489 this, NEXTKEY this, lastkey, UNTIE this, DESTROY this
1490
1491 =item Tying FileHandles
1492
1493 TIEHANDLE classname, LIST, WRITE this, LIST, PRINT this, LIST, PRINTF this,
1494 LIST, READ this, LIST, READLINE this, GETC this, CLOSE this, UNTIE this,
1495 DESTROY this
1496
1497 =item UNTIE this
1498
1499 =item The C<untie> Gotcha
1500
1501 =back
1502
1503 =item SEE ALSO
1504
1505 =item BUGS
1506
1507 =item AUTHOR
1508
1509 =back
1510
1511 =head2 perlipc - Perl interprocess communication (signals, fifos, pipes,
1512 safe subprocesses, sockets, and semaphores)
1513
1514 =over 4
1515
1516 =item DESCRIPTION
1517
1518 =item Signals
1519
1520 =item Named Pipes
1521
1522 =over 4
1523
1524 =item WARNING
1525
1526 =back
1527
1528 =item Using open() for IPC
1529
1530 =over 4
1531
1532 =item Filehandles
1533
1534 =item Background Processes
1535
1536 =item Complete Dissociation of Child from Parent
1537
1538 =item Safe Pipe Opens
1539
1540 =item Bidirectional Communication with Another Process
1541
1542 =item Bidirectional Communication with Yourself
1543
1544 =back
1545
1546 =item Sockets: Client/Server Communication
1547
1548 =over 4
1549
1550 =item Internet Line Terminators
1551
1552 =item Internet TCP Clients and Servers
1553
1554 =item Unix-Domain TCP Clients and Servers
1555
1556 =back
1557
1558 =item TCP Clients with IO::Socket
1559
1560 =over 4
1561
1562 =item A Simple Client
1563
1564 C<Proto>, C<PeerAddr>, C<PeerPort>
1565
1566 =item A Webget Client
1567
1568 =item Interactive Client with IO::Socket
1569
1570 =back
1571
1572 =item TCP Servers with IO::Socket
1573
1574 Proto, LocalPort, Listen, Reuse
1575
1576 =item UDP: Message Passing
1577
1578 =item SysV IPC
1579
1580 =item NOTES
1581
1582 =item BUGS
1583
1584 =item AUTHOR
1585
1586 =item SEE ALSO
1587
1588 =back
1589
1590 =head2 perlfork - Perl's fork() emulation (EXPERIMENTAL, subject to change)
1591
1592 =over 4
1593
1594 =item SYNOPSIS
1595
1596 =item DESCRIPTION
1597
1598 =over 4
1599
1600 =item Behavior of other Perl features in forked pseudo-processes
1601
1602 $$ or $PROCESS_ID, %ENV, chdir() and all other builtins that accept
1603 filenames, wait() and waitpid(), kill(), exec(), exit(), Open handles to
1604 files, directories and network sockets
1605
1606 =item Resource limits
1607
1608 =item Killing the parent process
1609
1610 =item Lifetime of the parent process and pseudo-processes
1611
1612 =item CAVEATS AND LIMITATIONS
1613
1614 BEGIN blocks, Open filehandles, Forking pipe open() not yet implemented,
1615 Global state maintained by XSUBs, Interpreter embedded in larger
1616 application, Thread-safety of extensions
1617
1618 =back
1619
1620 =item BUGS
1621
1622 =item AUTHOR
1623
1624 =item SEE ALSO
1625
1626 =back
1627
1628 =head2 perlnumber - semantics of numbers and numeric operations in Perl
1629
1630 =over 4
1631
1632 =item SYNOPSIS
1633
1634 =item DESCRIPTION
1635
1636 =item Storing numbers
1637
1638 =item Numeric operators and numeric conversions
1639
1640 =item Flavors of Perl numeric operations
1641
1642 Arithmetic operators except, C<no integer>, Arithmetic operators except,
1643 C<use integer>, Bitwise operators, C<no integer>, Bitwise operators, C<use
1644 integer>, Operators which expect an integer, Operators which expect a
1645 string
1646
1647 =item AUTHOR
1648
1649 =item SEE ALSO
1650
1651 =back
1652
1653 =head2 perlthrtut - tutorial on threads in Perl
1654
1655 =over 4
1656
1657 =item DESCRIPTION
1658
1659 =item What Is A Thread Anyway?
1660
1661 =item Threaded Program Models
1662
1663 =over 4
1664
1665 =item Boss/Worker
1666
1667 =item Work Crew
1668
1669 =item Pipeline
1670
1671 =back
1672
1673 =item Native threads
1674
1675 =item What kind of threads are perl threads?
1676
1677 =item Threadsafe Modules
1678
1679 =item Thread Basics
1680
1681 =over 4
1682
1683 =item Basic Thread Support
1684
1685 =item Creating Threads
1686
1687 =item Giving up control
1688
1689 =item Waiting For A Thread To Exit
1690
1691 =item Errors In Threads
1692
1693 =item Ignoring A Thread
1694
1695 =back
1696
1697 =item Threads And Data
1698
1699 =over 4
1700
1701 =item Shared And Unshared Data
1702
1703 =item Thread Pitfall: Races
1704
1705 =item Controlling access: lock()
1706
1707 =item Thread Pitfall: Deadlocks
1708
1709 =item Queues: Passing Data Around
1710
1711 =back
1712
1713 =item Threads And Code
1714
1715 =over 4
1716
1717 =item Semaphores: Synchronizing Data Access
1718
1719 Basic semaphores, Advanced Semaphores
1720
1721 =item Attributes: Restricting Access To Subroutines
1722
1723 =item Subroutine Locks
1724
1725 =item Methods
1726
1727 =item Locking A Subroutine
1728
1729 =back
1730
1731 =item General Thread Utility Routines
1732
1733 =over 4
1734
1735 =item What Thread Am I In?
1736
1737 =item Thread IDs
1738
1739 =item Are These Threads The Same?
1740
1741 =item What Threads Are Running?
1742
1743 =back
1744
1745 =item A Complete Example
1746
1747 =item Conclusion
1748
1749 =item Bibliography
1750
1751 =over 4
1752
1753 =item Introductory Texts
1754
1755 =item OS-Related References
1756
1757 =item Other References
1758
1759 =back
1760
1761 =item Acknowledgements
1762
1763 =item AUTHOR
1764
1765 =item Copyrights
1766
1767 =back
1768
1769 =head2 perlport - Writing portable Perl
1770
1771 =over 4
1772
1773 =item DESCRIPTION
1774
1775 Not all Perl programs have to be portable, Nearly all of Perl already I<is>
1776 portable
1777
1778 =item ISSUES
1779
1780 =over 4
1781
1782 =item Newlines
1783
1784 =item Numbers endianness and Width
1785
1786 =item Files and Filesystems
1787
1788 =item System Interaction
1789
1790 =item Interprocess Communication (IPC)
1791
1792 =item External Subroutines (XS)
1793
1794 =item Standard Modules
1795
1796 =item Time and Date
1797
1798 =item Character sets and character encoding
1799
1800 =item Internationalisation
1801
1802 =item System Resources
1803
1804 =item Security
1805
1806 =item Style
1807
1808 =back
1809
1810 =item CPAN Testers
1811
1812 Mailing list: cpan-testers@perl.org, Testing results:
1813 http://testers.cpan.org/
1814
1815 =item PLATFORMS
1816
1817 =over 4
1818
1819 =item Unix
1820
1821 =item DOS and Derivatives
1822
1823 =item S<Mac OS>
1824
1825 =item VMS
1826
1827 =item VOS
1828
1829 =item EBCDIC Platforms
1830
1831 =item Acorn RISC OS
1832
1833 =item Other perls
1834
1835 =back
1836
1837 =item FUNCTION IMPLEMENTATIONS
1838
1839 =over 4
1840
1841 =item Alphabetical Listing of Perl Functions
1842
1843 -I<X> FILEHANDLE, -I<X> EXPR, -I<X>, alarm SECONDS, alarm, binmode
1844 FILEHANDLE, chmod LIST, chown LIST, chroot FILENAME, chroot, crypt
1845 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MODE, dump LABEL, exec
1846 LIST, fcntl FILEHANDLE,FUNCTION,SCALAR, flock FILEHANDLE,OPERATION, fork,
1847 getlogin, getpgrp PID, getppid, getpriority WHICH,WHO, getpwnam NAME,
1848 getgrnam NAME, getnetbyname NAME, getpwuid UID, getgrgid GID, getnetbyaddr
1849 ADDR,ADDRTYPE, getprotobynumber NUMBER, getservbyport PORT,PROTO, getpwent,
1850 getgrent, gethostent, getnetent, getprotoent, getservent, setpwent,
1851 setgrent, sethostent STAYOPEN, setnetent STAYOPEN, setprotoent STAYOPEN,
1852 setservent STAYOPEN, endpwent, endgrent, endhostent, endnetent,
1853 endprotoent, endservent, getsockopt SOCKET,LEVEL,OPTNAME, glob EXPR, glob,
1854 ioctl FILEHANDLE,FUNCTION,SCALAR, kill SIGNAL, LIST, link OLDFILE,NEWFILE,
1855 lstat FILEHANDLE, lstat EXPR, lstat, msgctl ID,CMD,ARG, msgget KEY,FLAGS,
1856 msgsnd ID,MSG,FLAGS, msgrcv ID,VAR,SIZE,TYPE,FLAGS, open FILEHANDLE,EXPR,
1857 open FILEHANDLE, pipe READHANDLE,WRITEHANDLE, readlink EXPR, readlink,
1858 select RBITS,WBITS,EBITS,TIMEOUT, semctl ID,SEMNUM,CMD,ARG, semget
1859 KEY,NSEMS,FLAGS, semop KEY,OPSTRING, setgrent, setpgrp PID,PGRP,
1860 setpriority WHICH,WHO,PRIORITY, setpwent, setsockopt
1861 SOCKET,LEVEL,OPTNAME,OPTVAL, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS,
1862 shmread ID,VAR,POS,SIZE, shmwrite ID,STRING,POS,SIZE, sockatmark SOCKET,
1863 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, stat FILEHANDLE, stat
1864 EXPR, stat, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
1865 FILEHANDLE,FILENAME,MODE,PERMS, system LIST, times, truncate
1866 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, umask EXPR, umask, utime LIST,
1867 wait, waitpid PID,FLAGS
1868
1869 =back
1870
1871 =item CHANGES
1872
1873 v1.48, 02 February 2001, v1.47, 22 March 2000, v1.46, 12 February 2000,
1874 v1.45, 20 December 1999, v1.44, 19 July 1999, v1.43, 24 May 1999, v1.42, 22
1875 May 1999, v1.41, 19 May 1999, v1.40, 11 April 1999, v1.39, 11 February
1876 1999, v1.38, 31 December 1998, v1.37, 19 December 1998, v1.36, 9 September
1877 1998, v1.35, 13 August 1998, v1.33, 06 August 1998, v1.32, 05 August 1998,
1878 v1.30, 03 August 1998, v1.23, 10 July 1998
1879
1880 =item Supported Platforms
1881
1882 =item SEE ALSO
1883
1884 =item AUTHORS / CONTRIBUTORS
1885
1886 =item VERSION
1887
1888 =back
1889
1890 =head2 perllocale - Perl locale handling (internationalization and
1891 localization)
1892
1893 =over 4
1894
1895 =item DESCRIPTION
1896
1897 =item PREPARING TO USE LOCALES
1898
1899 =item USING LOCALES
1900
1901 =over 4
1902
1903 =item The use locale pragma
1904
1905 =item The setlocale function
1906
1907 =item Finding locales
1908
1909 =item LOCALE PROBLEMS
1910
1911 =item Temporarily fixing locale problems
1912
1913 =item Permanently fixing locale problems
1914
1915 =item Permanently fixing your system's locale configuration
1916
1917 =item Fixing system locale configuration
1918
1919 =item The localeconv function
1920
1921 =back
1922
1923 =item LOCALE CATEGORIES
1924
1925 =over 4
1926
1927 =item Category LC_COLLATE: Collation
1928
1929 =item Category LC_CTYPE: Character Types
1930
1931 =item Category LC_NUMERIC: Numeric Formatting
1932
1933 =item Category LC_MONETARY: Formatting of monetary amounts
1934
1935 =item LC_TIME
1936
1937 =item Other categories
1938
1939 =back
1940
1941 =item SECURITY
1942
1943 =item ENVIRONMENT
1944
1945 PERL_BADLANG, LC_ALL, LANGUAGE, LC_CTYPE, LC_COLLATE, LC_MONETARY,
1946 LC_NUMERIC, LC_TIME, LANG
1947
1948 =item NOTES
1949
1950 =over 4
1951
1952 =item Backward compatibility
1953
1954 =item I18N:Collate obsolete
1955
1956 =item Sort speed and memory use impacts
1957
1958 =item write() and LC_NUMERIC
1959
1960 =item Freely available locale definitions
1961
1962 =item I18n and l10n
1963
1964 =item An imperfect standard
1965
1966 =back
1967
1968 =item BUGS
1969
1970 =over 4
1971
1972 =item Broken systems
1973
1974 =back
1975
1976 =item SEE ALSO
1977
1978 =item HISTORY
1979
1980 =back
1981
1982 =head2 perlunicode - Unicode support in Perl
1983
1984 =over 4
1985
1986 =item DESCRIPTION
1987
1988 =over 4
1989
1990 =item Important Caveats
1991
1992 Input and Output Disciplines, Regular Expressions, C<use utf8> still needed
1993 to enable a few features
1994
1995 =item Byte and Character semantics
1996
1997 =item Effects of character semantics
1998
1999 =item Character encodings for input and output
2000
2001 =back
2002
2003 =item CAVEATS
2004
2005 =item SEE ALSO
2006
2007 =back
2008
2009 =head2 perlebcdic - Considerations for running Perl on EBCDIC platforms
2010
2011 =over 4
2012
2013 =item DESCRIPTION
2014
2015 =item COMMON CHARACTER CODE SETS
2016
2017 =over 4
2018
2019 =item ASCII
2020
2021 =item ISO 8859
2022
2023 =item Latin 1 (ISO 8859-1)
2024
2025 =item EBCDIC
2026
2027 =item 13 variant characters
2028
2029 =item 0037
2030
2031 =item 1047
2032
2033 =item POSIX-BC
2034
2035 =item Unicode and UTF
2036
2037 =back
2038
2039 =item SINGLE OCTET TABLES
2040
2041 recipe 0, recipe 1, recipe 2, recipe 3, recipe 4, recipe 5, recipe 6
2042
2043 =item IDENTIFYING CHARACTER CODE SETS
2044
2045 =item CONVERSIONS
2046
2047 =over 4
2048
2049 =item tr///
2050
2051 =item iconv
2052
2053 =item C RTL
2054
2055 =back
2056
2057 =item OPERATOR DIFFERENCES
2058
2059 =item FUNCTION DIFFERENCES
2060
2061 chr(), ord(), pack(), print(), printf(), sort(), sprintf(), unpack()
2062
2063 =item REGULAR EXPRESSION DIFFERENCES
2064
2065 =item SOCKETS
2066
2067 =item SORTING
2068
2069 =over 4
2070
2071 =item Ignore ASCII vs. EBCDIC sort differences.
2072
2073 =item MONO CASE then sort data.
2074
2075 =item Convert, sort data, then re convert.
2076
2077 =item Perform sorting on one type of machine only.
2078
2079 =back
2080
2081 =item TRANSFORMATION FORMATS
2082
2083 =over 4
2084
2085 =item URL decoding and encoding
2086
2087 =item uu encoding and decoding
2088
2089 =item Quoted-Printable encoding and decoding
2090
2091 =item Caesarian ciphers
2092
2093 =back
2094
2095 =item Hashing order and checksums
2096
2097 =item I18N AND L10N
2098
2099 =item MULTI OCTET CHARACTER SETS
2100
2101 =item OS ISSUES
2102
2103 =over 4
2104
2105 =item OS/400 
2106
2107 IFS access
2108
2109 =item OS/390, z/OS
2110
2111 chcp, dataset access, OS/390, z/OS iconv, locales
2112
2113 =item VM/ESA?
2114
2115 =item POSIX-BC?
2116
2117 =back
2118
2119 =item BUGS
2120
2121 =item SEE ALSO
2122
2123 =item REFERENCES
2124
2125 =item HISTORY
2126
2127 =item AUTHOR
2128
2129 =back
2130
2131 =head2 perlsec - Perl security
2132
2133 =over 4
2134
2135 =item DESCRIPTION
2136
2137 =over 4
2138
2139 =item Laundering and Detecting Tainted Data
2140
2141 =item Switches On the "#!" Line
2142
2143 =item Cleaning Up Your Path
2144
2145 =item Security Bugs
2146
2147 =item Protecting Your Programs
2148
2149 =back
2150
2151 =item SEE ALSO
2152
2153 =back
2154
2155 =head2 perlmod - Perl modules (packages and symbol tables)
2156
2157 =over 4
2158
2159 =item DESCRIPTION
2160
2161 =over 4
2162
2163 =item Packages
2164
2165 =item Symbol Tables
2166
2167 =item Package Constructors and Destructors
2168
2169 =item Perl Classes
2170
2171 =item Perl Modules
2172
2173 =back
2174
2175 =item SEE ALSO
2176
2177 =back
2178
2179 =head2 perlmodlib - constructing new Perl modules and finding existing ones
2180
2181 =over 4
2182
2183 =item DESCRIPTION
2184
2185 =item THE PERL MODULE LIBRARY
2186
2187 =over 4
2188
2189 =item Pragmatic Modules
2190
2191 attributes, attrs, autouse, base, blib, bytes, charnames, constant,
2192 diagnostics, fields, filetest, integer, less, locale, open, ops, overload,
2193 re, sigtrap, strict, subs, unicode::distinct, utf8, vars, warnings,
2194 warnings::register
2195
2196 =item Standard Modules
2197
2198 AnyDBM_File, Attribute::Handlers, AutoLoader, AutoSplit, B, B::Asmdata,
2199 B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC, B::Concise, B::Debug,
2200 B::Deparse, B::Disassembler, B::Lint, B::Showlex, B::Stackobj, B::Stash,
2201 B::Terse, B::Xref, Benchmark, ByteLoader, CGI, CGI::Apache, CGI::Carp,
2202 CGI::Cookie, CGI::Fast, CGI::Pretty, CGI::Push, CGI::Switch, CGI::Util,
2203 CPAN, CPAN::FirstTime, CPAN::Nox, Carp, Carp::Heavy, Class::ISA,
2204 Class::Struct, Cwd, DB, DB_File, Devel::SelfStubber, Digest, DirHandle,
2205 Dumpvalue, Encode, Encode::EncodeFormat, Encode::Tcl, English, Env,
2206 Exporter, Exporter::Heavy, ExtUtils::Command, ExtUtils::Constant,
2207 ExtUtils::Embed, ExtUtils::Install, ExtUtils::Installed, ExtUtils::Liblist,
2208 ExtUtils::MM_Cygwin, ExtUtils::MM_OS2, ExtUtils::MM_Unix, ExtUtils::MM_VMS,
2209 ExtUtils::MM_Win32, ExtUtils::MakeMaker, ExtUtils::Manifest,
2210 ExtUtils::Mkbootstrap, ExtUtils::Mksymlists, ExtUtils::Packlist,
2211 ExtUtils::testlib, Fatal, Fcntl, File::Basename, File::CheckTree,
2212 File::Compare, File::Copy, File::DosGlob, File::Find, File::Path,
2213 File::Spec, File::Spec::Epoc, File::Spec::Functions, File::Spec::Mac,
2214 File::Spec::OS2, File::Spec::Unix, File::Spec::VMS, File::Spec::Win32,
2215 File::Temp, File::stat, FileCache, FileHandle, Filter::Simple, FindBin,
2216 Getopt::Long, Getopt::Std, I18N::Collate, I18N::LangTags,
2217 I18N::LangTags::List, IO, IPC::Open2, IPC::Open3, Locale::Constants,
2218 Locale::Country, Locale::Currency, Locale::Language, Locale::Maketext,
2219 Locale::Maketext::TPJ13, Math::BigFloat, Math::BigInt, Math::Complex,
2220 Math::Trig, NDBM_File, NEXT, Net::Ping, Net::hostent, Net::netent,
2221 Net::protoent, Net::servent, O, ODBM_File, Opcode, POSIX, PerlIO,
2222 Pod::Checker, Pod::Find, Pod::Html, Pod::InputObjects, Pod::LaTeX,
2223 Pod::Man, Pod::ParseUtils, Pod::Parser, Pod::Plainer, Pod::Select,
2224 Pod::Text, Pod::Text::Color, Pod::Text::Overstrike, Pod::Text::Termcap,
2225 Pod::Usage, SDBM_File, Safe, Search::Dict, SelectSaver, SelfLoader, Shell,
2226 Socket, Storable, Switch, Symbol, Term::ANSIColor, Term::Cap,
2227 Term::Complete, Term::ReadLine, Test, Test::Harness, Text::Abbrev,
2228 Text::Balanced, Text::ParseWords, Text::Soundex, Text::Tabs, Text::Wrap,
2229 Tie::Array, Tie::Handle, Tie::Hash, Tie::RefHash, Tie::Scalar,
2230 Tie::SubstrHash, Time::Local, Time::gmtime, Time::localtime, Time::tm,
2231 UNIVERSAL, User::grent, User::pwent, Win32
2232
2233 =item Extension Modules
2234
2235 =back
2236
2237 =item CPAN
2238
2239 =over 4
2240
2241 =item Africa
2242
2243 =item Asia
2244
2245 =item Central America
2246
2247 =item Europe
2248
2249 =item North America
2250
2251 =item Oceania
2252
2253 =item South America
2254
2255 =back
2256
2257 =item Modules: Creation, Use, and Abuse
2258
2259 =over 4
2260
2261 =item Guidelines for Module Creation
2262
2263 Adding a Copyright Notice
2264
2265 =item Guidelines for Converting Perl 4 Library Scripts into Modules
2266
2267 =item Guidelines for Reusing Application Code
2268
2269 =back
2270
2271 =item NOTE
2272
2273 =back
2274
2275 =head2 perlmodinstall - Installing CPAN Modules
2276
2277 =over 4
2278
2279 =item DESCRIPTION
2280
2281 =over 4
2282
2283 =item PREAMBLE
2284
2285 B<DECOMPRESS> the file, B<UNPACK> the file into a directory, B<BUILD> the
2286 module (sometimes unnecessary), B<INSTALL> the module
2287
2288 =back
2289
2290 =item PORTABILITY
2291
2292 =item HEY
2293
2294 =item AUTHOR
2295
2296 =item COPYRIGHT
2297
2298 =back
2299
2300 =head2 perlnewmod - preparing a new module for distribution
2301
2302 =over 4
2303
2304 =item DESCRIPTION
2305
2306 =over 4
2307
2308 =item Warning
2309
2310 =item What should I make into a module?
2311
2312 =item Step-by-step: Preparing the ground
2313
2314 Look around, Check it's new, Discuss the need, Choose a name, Check again
2315
2316 =item Step-by-step: Making the module
2317
2318 Start with F<h2xs>, Use L<strict|strict> and L<warnings|warnings>, Use
2319 L<Carp|Carp>, Use L<Exporter|Exporter> - wisely!, Use L<plain old
2320 documentation|perlpod>, Write tests, Write the README
2321
2322 =item Step-by-step: Distributing your module
2323
2324 Get a CPAN user ID, C<perl Makefile.PL; make test; make dist>, Upload the
2325 tarball, Announce to the modules list, Announce to clpa, Fix bugs!
2326
2327 =back
2328
2329 =item AUTHOR
2330
2331 =item SEE ALSO
2332
2333 =back
2334
2335 =head2 perlfaq1 - General Questions About Perl ($Revision: 1.23 $, $Date:
2336 1999/05/23 16:08:30 $)
2337
2338 =over 4
2339
2340 =item DESCRIPTION
2341
2342 =over 4
2343
2344 =item What is Perl?
2345
2346 =item Who supports Perl?  Who develops it?  Why is it free?
2347
2348 =item Which version of Perl should I use?
2349
2350 =item What are perl4 and perl5?
2351
2352 =item What is perl6?
2353
2354 =item How stable is Perl?
2355
2356 =item Is Perl difficult to learn?
2357
2358 =item How does Perl compare with other languages like Java, Python, REXX,
2359 Scheme, or Tcl?
2360
2361 =item Can I do [task] in Perl?
2362
2363 =item When shouldn't I program in Perl?
2364
2365 =item What's the difference between "perl" and "Perl"?
2366
2367 =item Is it a Perl program or a Perl script?
2368
2369 =item What is a JAPH?
2370
2371 =item Where can I get a list of Larry Wall witticisms?
2372
2373 =item How can I convince my sysadmin/supervisor/employees to use version
2374 5/5.005/Perl instead of some other language?
2375
2376 =back
2377
2378 =item AUTHOR AND COPYRIGHT
2379
2380 =back
2381
2382 =head2 perlfaq2 - Obtaining and Learning about Perl ($Revision: 1.32 $,
2383 $Date: 1999/10/14 18:46:09 $)
2384
2385 =over 4
2386
2387 =item DESCRIPTION
2388
2389 =over 4
2390
2391 =item What machines support Perl?  Where do I get it?
2392
2393 =item How can I get a binary version of Perl?
2394
2395 =item I don't have a C compiler on my system.  How can I compile perl?
2396
2397 =item I copied the Perl binary from one machine to another, but scripts
2398 don't work.
2399
2400 =item I grabbed the sources and tried to compile but gdbm/dynamic
2401 loading/malloc/linking/... failed.  How do I make it work?
2402
2403 =item What modules and extensions are available for Perl?  What is CPAN? 
2404 What does CPAN/src/... mean?
2405
2406 =item Is there an ISO or ANSI certified version of Perl?
2407
2408 =item Where can I get information on Perl?
2409
2410 =item What are the Perl newsgroups on Usenet?  Where do I post questions?
2411
2412 =item Where should I post source code?
2413
2414 =item Perl Books
2415
2416 References, Tutorials, Task-Oriented, Special Topics
2417
2418 =item Perl in Magazines
2419
2420 =item Perl on the Net: FTP and WWW Access
2421
2422 =item What mailing lists are there for Perl?
2423
2424 =item Archives of comp.lang.perl.misc
2425
2426 =item Where can I buy a commercial version of Perl?
2427
2428 =item Where do I send bug reports?
2429
2430 =item What is perl.com? Perl Mongers? pm.org? perl.org?
2431
2432 =back
2433
2434 =item AUTHOR AND COPYRIGHT
2435
2436 =back
2437
2438 =head2 perlfaq3 - Programming Tools ($Revision: 1.38 $, $Date: 1999/05/23
2439 16:08:30 $)
2440
2441 =over 4
2442
2443 =item DESCRIPTION
2444
2445 =over 4
2446
2447 =item How do I do (anything)?
2448
2449 =item How can I use Perl interactively?
2450
2451 =item Is there a Perl shell?
2452
2453 =item How do I debug my Perl programs?
2454
2455 =item How do I profile my Perl programs?
2456
2457 =item How do I cross-reference my Perl programs?
2458
2459 =item Is there a pretty-printer (formatter) for Perl?
2460
2461 =item Is there a ctags for Perl?
2462
2463 =item Is there an IDE or Windows Perl Editor?
2464
2465 Komodo, The Object System, Open Perl IDE, PerlBuilder, visiPerl+,
2466 CodeMagicCD, GNU Emacs, MicroEMACS, XEmacs, Elvis, Vile, Vim, Codewright,
2467 MultiEdit, SlickEdit, Bash, Ksh, Tcsh, Zsh, BBEdit and BBEdit Lite, Alpha
2468
2469 =item Where can I get Perl macros for vi?
2470
2471 =item Where can I get perl-mode for emacs?
2472
2473 =item How can I use curses with Perl?
2474
2475 =item How can I use X or Tk with Perl?
2476
2477 =item How can I generate simple menus without using CGI or Tk?
2478
2479 =item What is undump?
2480
2481 =item How can I make my Perl program run faster?
2482
2483 =item How can I make my Perl program take less memory?
2484
2485 =item Is it unsafe to return a pointer to local data?
2486
2487 =item How can I free an array or hash so my program shrinks?
2488
2489 =item How can I make my CGI script more efficient?
2490
2491 =item How can I hide the source for my Perl program?
2492
2493 =item How can I compile my Perl program into byte code or C?
2494
2495 =item How can I compile Perl into Java?
2496
2497 =item How can I get C<#!perl> to work on [MS-DOS,NT,...]?
2498
2499 =item Can I write useful Perl programs on the command line?
2500
2501 =item Why don't Perl one-liners work on my DOS/Mac/VMS system?
2502
2503 =item Where can I learn about CGI or Web programming in Perl?
2504
2505 =item Where can I learn about object-oriented Perl programming?
2506
2507 =item Where can I learn about linking C with Perl? [h2xs, xsubpp]
2508
2509 =item I've read perlembed, perlguts, etc., but I can't embed perl in
2510 my C program; what am I doing wrong?
2511
2512 =item When I tried to run my script, I got this message. What does it
2513 mean?
2514
2515 =item What's MakeMaker?
2516
2517 =back
2518
2519 =item AUTHOR AND COPYRIGHT
2520
2521 =back
2522
2523 =head2 perlfaq4 - Data Manipulation ($Revision: 1.49 $, $Date: 1999/05/23
2524 20:37:49 $)
2525
2526 =over 4
2527
2528 =item DESCRIPTION
2529
2530 =item Data: Numbers
2531
2532 =over 4
2533
2534 =item Why am I getting long decimals (eg, 19.9499999999999) instead of the
2535 numbers I should be getting (eg, 19.95)?
2536
2537 =item Why isn't my octal data interpreted correctly?
2538
2539 =item Does Perl have a round() function?  What about ceil() and floor()? 
2540 Trig functions?
2541
2542 =item How do I convert bits into ints?
2543
2544 =item Why doesn't & work the way I want it to?
2545
2546 =item How do I multiply matrices?
2547
2548 =item How do I perform an operation on a series of integers?
2549
2550 =item How can I output Roman numerals?
2551
2552 =item Why aren't my random numbers random?
2553
2554 =back
2555
2556 =item Data: Dates
2557
2558 =over 4
2559
2560 =item How do I find the week-of-the-year/day-of-the-year?
2561
2562 =item How do I find the current century or millennium?
2563
2564 =item How can I compare two dates and find the difference?
2565
2566 =item How can I take a string and turn it into epoch seconds?
2567
2568 =item How can I find the Julian Day?
2569
2570 =item How do I find yesterday's date?
2571
2572 =item Does Perl have a Year 2000 problem?  Is Perl Y2K compliant?
2573
2574 =back
2575
2576 =item Data: Strings
2577
2578 =over 4
2579
2580 =item How do I validate input?
2581
2582 =item How do I unescape a string?
2583
2584 =item How do I remove consecutive pairs of characters?
2585
2586 =item How do I expand function calls in a string?
2587
2588 =item How do I find matching/nesting anything?
2589
2590 =item How do I reverse a string?
2591
2592 =item How do I expand tabs in a string?
2593
2594 =item How do I reformat a paragraph?
2595
2596 =item How can I access/change the first N letters of a string?
2597
2598 =item How do I change the Nth occurrence of something?
2599
2600 =item How can I count the number of occurrences of a substring within a
2601 string?
2602
2603 =item How do I capitalize all the words on one line?
2604
2605 =item How can I split a [character] delimited string except when inside
2606 [character]? (Comma-separated files)
2607
2608 =item How do I strip blank space from the beginning/end of a string?
2609
2610 =item How do I pad a string with blanks or pad a number with zeroes?
2611
2612 =item How do I extract selected columns from a string?
2613
2614 =item How do I find the soundex value of a string?
2615
2616 =item How can I expand variables in text strings?
2617
2618 =item What's wrong with always quoting "$vars"?
2619
2620 =item Why don't my <<HERE documents work?
2621
2622 1. There must be no space after the << part, 2. There (probably) should be
2623 a semicolon at the end, 3. You can't (easily) have any space in front of
2624 the tag
2625
2626 =back
2627
2628 =item Data: Arrays
2629
2630 =over 4
2631
2632 =item What is the difference between a list and an array?
2633
2634 =item What is the difference between $array[1] and @array[1]?
2635
2636 =item How can I remove duplicate elements from a list or array?
2637
2638 a), b), c), d), e)
2639
2640 =item How can I tell whether a list or array contains a certain element?
2641
2642 =item How do I compute the difference of two arrays?  How do I compute the
2643 intersection of two arrays?
2644
2645 =item How do I test whether two arrays or hashes are equal?
2646
2647 =item How do I find the first array element for which a condition is true?
2648
2649 =item How do I handle linked lists?
2650
2651 =item How do I handle circular lists?
2652
2653 =item How do I shuffle an array randomly?
2654
2655 =item How do I process/modify each element of an array?
2656
2657 =item How do I select a random element from an array?
2658
2659 =item How do I permute N elements of a list?
2660
2661 =item How do I sort an array by (anything)?
2662
2663 =item How do I manipulate arrays of bits?
2664
2665 =item Why does defined() return true on empty arrays and hashes?
2666
2667 =back
2668
2669 =item Data: Hashes (Associative Arrays)
2670
2671 =over 4
2672
2673 =item How do I process an entire hash?
2674
2675 =item What happens if I add or remove keys from a hash while iterating over
2676 it?
2677
2678 =item How do I look up a hash element by value?
2679
2680 =item How can I know how many entries are in a hash?
2681
2682 =item How do I sort a hash (optionally by value instead of key)?
2683
2684 =item How can I always keep my hash sorted?
2685
2686 =item What's the difference between "delete" and "undef" with hashes?
2687
2688 =item Why don't my tied hashes make the defined/exists distinction?
2689
2690 =item How do I reset an each() operation part-way through?
2691
2692 =item How can I get the unique keys from two hashes?
2693
2694 =item How can I store a multidimensional array in a DBM file?
2695
2696 =item How can I make my hash remember the order I put elements into it?
2697
2698 =item Why does passing a subroutine an undefined element in a hash create
2699 it?
2700
2701 =item How can I make the Perl equivalent of a C structure/C++ class/hash or
2702 array of hashes or arrays?
2703
2704 =item How can I use a reference as a hash key?
2705
2706 =back
2707
2708 =item Data: Misc
2709
2710 =over 4
2711
2712 =item How do I handle binary data correctly?
2713
2714 =item How do I determine whether a scalar is a number/whole/integer/float?
2715
2716 =item How do I keep persistent data across program calls?
2717
2718 =item How do I print out or copy a recursive data structure?
2719
2720 =item How do I define methods for every class/object?
2721
2722 =item How do I verify a credit card checksum?
2723
2724 =item How do I pack arrays of doubles or floats for XS code?
2725
2726 =back
2727
2728 =item AUTHOR AND COPYRIGHT
2729
2730 =back
2731
2732 =head2 perlfaq5 - Files and Formats ($Revision: 1.38 $, $Date: 1999/05/23
2733 16:08:30 $)
2734
2735 =over 4
2736
2737 =item DESCRIPTION
2738
2739 =over 4
2740
2741 =item How do I flush/unbuffer an output filehandle?  Why must I do this?
2742
2743 =item How do I change one line in a file/delete a line in a file/insert a
2744 line in the middle of a file/append to the beginning of a file?
2745
2746 =item How do I count the number of lines in a file?
2747
2748 =item How do I make a temporary file name?
2749
2750 =item How can I manipulate fixed-record-length files?
2751
2752 =item How can I make a filehandle local to a subroutine?  How do I pass
2753 filehandles between subroutines?  How do I make an array of filehandles?
2754
2755 =item How can I use a filehandle indirectly?
2756
2757 =item How can I set up a footer format to be used with write()?
2758
2759 =item How can I write() into a string?
2760
2761 =item How can I output my numbers with commas added?
2762
2763 =item How can I translate tildes (~) in a filename?
2764
2765 =item How come when I open a file read-write it wipes it out?
2766
2767 =item Why do I sometimes get an "Argument list too long" when I use <*>?
2768
2769 =item Is there a leak/bug in glob()?
2770
2771 =item How can I open a file with a leading ">" or trailing blanks?
2772
2773 =item How can I reliably rename a file?
2774
2775 =item How can I lock a file?
2776
2777 =item Why can't I just open(FH, ">file.lock")?
2778
2779 =item I still don't get locking.  I just want to increment the number in
2780 the file.  How can I do this?
2781
2782 =item All I want to do is append a small amount of text to the end of a
2783 file.  Do I still have to use locking?
2784
2785 =item How do I randomly update a binary file?
2786
2787 =item How do I get a file's timestamp in perl?
2788
2789 =item How do I set a file's timestamp in perl?
2790
2791 =item How do I print to more than one file at once?
2792
2793 =item How can I read in an entire file all at once?
2794
2795 =item How can I read in a file by paragraphs?
2796
2797 =item How can I read a single character from a file?  From the keyboard?
2798
2799 =item How can I tell whether there's a character waiting on a filehandle?
2800
2801 =item How do I do a C<tail -f> in perl?
2802
2803 =item How do I dup() a filehandle in Perl?
2804
2805 =item How do I close a file descriptor by number?
2806
2807 =item Why can't I use "C:\temp\foo" in DOS paths?  What doesn't
2808 `C:\temp\foo.exe` work?
2809
2810 =item Why doesn't glob("*.*") get all the files?
2811
2812 =item Why does Perl let me delete read-only files?  Why does C<-i> clobber
2813 protected files?  Isn't this a bug in Perl?
2814
2815 =item How do I select a random line from a file?
2816
2817 =item Why do I get weird spaces when I print an array of lines?
2818
2819 =back
2820
2821 =item AUTHOR AND COPYRIGHT
2822
2823 =back
2824
2825 =head2 perlfaq6 - Regexes ($Revision: 1.27 $, $Date: 1999/05/23 16:08:30 $)
2826
2827 =over 4
2828
2829 =item DESCRIPTION
2830
2831 =over 4
2832
2833 =item How can I hope to use regular expressions without creating illegible
2834 and unmaintainable code?
2835
2836 Comments Outside the Regex, Comments Inside the Regex, Different Delimiters
2837
2838 =item I'm having trouble matching over more than one line.  What's wrong?
2839
2840 =item How can I pull out lines between two patterns that are themselves on
2841 different lines?
2842
2843 =item I put a regular expression into $/ but it didn't work. What's wrong?
2844
2845 =item How do I substitute case insensitively on the LHS while preserving
2846 case on the RHS?
2847
2848 =item How can I make C<\w> match national character sets?
2849
2850 =item How can I match a locale-smart version of C</[a-zA-Z]/>?
2851
2852 =item How can I quote a variable to use in a regex?
2853
2854 =item What is C</o> really for?
2855
2856 =item How do I use a regular expression to strip C style comments from a
2857 file?
2858
2859 =item Can I use Perl regular expressions to match balanced text?
2860
2861 =item What does it mean that regexes are greedy?  How can I get around it?
2862
2863 =item How do I process each word on each line?
2864
2865 =item How can I print out a word-frequency or line-frequency summary?
2866
2867 =item How can I do approximate matching?
2868
2869 =item How do I efficiently match many regular expressions at once?
2870
2871 =item Why don't word-boundary searches with C<\b> work for me?
2872
2873 =item Why does using $&, $`, or $' slow my program down?
2874
2875 =item What good is C<\G> in a regular expression?
2876
2877 =item Are Perl regexes DFAs or NFAs?  Are they POSIX compliant?
2878
2879 =item What's wrong with using grep or map in a void context?
2880
2881 =item How can I match strings with multibyte characters?
2882
2883 =item How do I match a pattern that is supplied by the user?
2884
2885 =back
2886
2887 =item AUTHOR AND COPYRIGHT
2888
2889 =back
2890
2891 =head2 perlfaq7 - Perl Language Issues ($Revision: 1.28 $, $Date:
2892 1999/05/23 20:36:18 $)
2893
2894 =over 4
2895
2896 =item DESCRIPTION
2897
2898 =over 4
2899
2900 =item Can I get a BNF/yacc/RE for the Perl language?
2901
2902 =item What are all these $@%&* punctuation signs, and how do I know when to
2903 use them?
2904
2905 =item Do I always/never have to quote my strings or use semicolons and
2906 commas?
2907
2908 =item How do I skip some return values?
2909
2910 =item How do I temporarily block warnings?
2911
2912 =item What's an extension?
2913
2914 =item Why do Perl operators have different precedence than C operators?
2915
2916 =item How do I declare/create a structure?
2917
2918 =item How do I create a module?
2919
2920 =item How do I create a class?
2921
2922 =item How can I tell if a variable is tainted?
2923
2924 =item What's a closure?
2925
2926 =item What is variable suicide and how can I prevent it?
2927
2928 =item How can I pass/return a {Function, FileHandle, Array, Hash, Method,
2929 Regex}?
2930
2931 Passing Variables and Functions, Passing Filehandles, Passing Regexes,
2932 Passing Methods
2933
2934 =item How do I create a static variable?
2935
2936 =item What's the difference between dynamic and lexical (static) scoping? 
2937 Between local() and my()?
2938
2939 =item How can I access a dynamic variable while a similarly named lexical
2940 is in scope?
2941
2942 =item What's the difference between deep and shallow binding?
2943
2944 =item Why doesn't "my($foo) = <FILE>;" work right?
2945
2946 =item How do I redefine a builtin function, operator, or method?
2947
2948 =item What's the difference between calling a function as &foo and foo()?
2949
2950 =item How do I create a switch or case statement?
2951
2952 =item How can I catch accesses to undefined variables/functions/methods?
2953
2954 =item Why can't a method included in this same file be found?
2955
2956 =item How can I find out my current package?
2957
2958 =item How can I comment out a large block of perl code?
2959
2960 =item How do I clear a package?
2961
2962 =item How can I use a variable as a variable name?
2963
2964 =back
2965
2966 =item AUTHOR AND COPYRIGHT
2967
2968 =back
2969
2970 =head2 perlfaq8 - System Interaction ($Revision: 1.39 $, $Date: 1999/05/23
2971 18:37:57 $)
2972
2973 =over 4
2974
2975 =item DESCRIPTION
2976
2977 =over 4
2978
2979 =item How do I find out which operating system I'm running under?
2980
2981 =item How come exec() doesn't return?
2982
2983 =item How do I do fancy stuff with the keyboard/screen/mouse?
2984
2985 Keyboard, Screen, Mouse
2986
2987 =item How do I print something out in color?
2988
2989 =item How do I read just one key without waiting for a return key?
2990
2991 =item How do I check whether input is ready on the keyboard?
2992
2993 =item How do I clear the screen?
2994
2995 =item How do I get the screen size?
2996
2997 =item How do I ask the user for a password?
2998
2999 =item How do I read and write the serial port?
3000
3001 lockfiles, open mode, end of line, flushing output, non-blocking input
3002
3003 =item How do I decode encrypted password files?
3004
3005 =item How do I start a process in the background?
3006
3007 STDIN, STDOUT, and STDERR are shared, Signals, Zombies
3008
3009 =item How do I trap control characters/signals?
3010
3011 =item How do I modify the shadow password file on a Unix system?
3012
3013 =item How do I set the time and date?
3014
3015 =item How can I sleep() or alarm() for under a second?
3016
3017 =item How can I measure time under a second?
3018
3019 =item How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
3020
3021 =item Why doesn't my sockets program work under System V (Solaris)?  What
3022 does the error message "Protocol not supported" mean?
3023
3024 =item How can I call my system's unique C functions from Perl?
3025
3026 =item Where do I get the include files to do ioctl() or syscall()?
3027
3028 =item Why do setuid perl scripts complain about kernel problems?
3029
3030 =item How can I open a pipe both to and from a command?
3031
3032 =item Why can't I get the output of a command with system()?
3033
3034 =item How can I capture STDERR from an external command?
3035
3036 =item Why doesn't open() return an error when a pipe open fails?
3037
3038 =item What's wrong with using backticks in a void context?
3039
3040 =item How can I call backticks without shell processing?
3041
3042 =item Why can't my script read from STDIN after I gave it EOF (^D on Unix,
3043 ^Z on MS-DOS)?
3044
3045 =item How can I convert my shell script to perl?
3046
3047 =item Can I use perl to run a telnet or ftp session?
3048
3049 =item How can I write expect in Perl?
3050
3051 =item Is there a way to hide perl's command line from programs such as
3052 "ps"?
3053
3054 =item I {changed directory, modified my environment} in a perl script.  How
3055 come the change disappeared when I exited the script?  How do I get my
3056 changes to be visible?
3057
3058 Unix
3059
3060 =item How do I close a process's filehandle without waiting for it to
3061 complete?
3062
3063 =item How do I fork a daemon process?
3064
3065 =item How do I find out if I'm running interactively or not?
3066
3067 =item How do I timeout a slow event?
3068
3069 =item How do I set CPU limits?
3070
3071 =item How do I avoid zombies on a Unix system?
3072
3073 =item How do I use an SQL database?
3074
3075 =item How do I make a system() exit on control-C?
3076
3077 =item How do I open a file without blocking?
3078
3079 =item How do I install a module from CPAN?
3080
3081 =item What's the difference between require and use?
3082
3083 =item How do I keep my own module/library directory?
3084
3085 =item How do I add the directory my program lives in to the module/library
3086 search path?
3087
3088 =item How do I add a directory to my include path at runtime?
3089
3090 =item What is socket.ph and where do I get it?
3091
3092 =back
3093
3094 =item AUTHOR AND COPYRIGHT
3095
3096 =back
3097
3098 =head2 perlfaq9 - Networking ($Revision: 1.26 $, $Date: 1999/05/23 16:08:30
3099 $)
3100
3101 =over 4
3102
3103 =item DESCRIPTION
3104
3105 =over 4
3106
3107 =item My CGI script runs from the command line but not the browser.  (500
3108 Server Error)
3109
3110 =item How can I get better error messages from a CGI program?
3111
3112 =item How do I remove HTML from a string?
3113
3114 =item How do I extract URLs?
3115
3116 =item How do I download a file from the user's machine?  How do I open a
3117 file on another machine?
3118
3119 =item How do I make a pop-up menu in HTML?
3120
3121 =item How do I fetch an HTML file?
3122
3123 =item How do I automate an HTML form submission?
3124
3125 =item How do I decode or create those %-encodings on the web?
3126
3127 =item How do I redirect to another page?
3128
3129 =item How do I put a password on my web pages?
3130
3131 =item How do I edit my .htpasswd and .htgroup files with Perl?
3132
3133 =item How do I make sure users can't enter values into a form that cause my
3134 CGI script to do bad things?
3135
3136 =item How do I parse a mail header?
3137
3138 =item How do I decode a CGI form?
3139
3140 =item How do I check a valid mail address?
3141
3142 =item How do I decode a MIME/BASE64 string?
3143
3144 =item How do I return the user's mail address?
3145
3146 =item How do I send mail?
3147
3148 =item How do I use MIME to make an attachment to a mail message?
3149
3150 =item How do I read mail?
3151
3152 =item How do I find out my hostname/domainname/IP address?
3153
3154 =item How do I fetch a news article or the active newsgroups?
3155
3156 =item How do I fetch/put an FTP file?
3157
3158 =item How can I do RPC in Perl?
3159
3160 =back
3161
3162 =item AUTHOR AND COPYRIGHT
3163
3164 =back
3165
3166 =head2 perlcompile - Introduction to the Perl Compiler-Translator 
3167
3168 =over 4
3169
3170 =item DESCRIPTION
3171
3172 =over 4
3173
3174 =item Layout
3175
3176 B::Bytecode, B::C, B::CC, B::Lint, B::Deparse, B::Xref
3177
3178 =back
3179
3180 =item Using The Back Ends
3181
3182 =over 4
3183
3184 =item The Cross Referencing Back End
3185
3186 i, &, s, r
3187
3188 =item The Decompiling Back End
3189
3190 =item The Lint Back End
3191
3192 =item The Simple C Back End
3193
3194 =item The Bytecode Back End
3195
3196 =item The Optimized C Back End
3197
3198 B, O, B::Asmdata, B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC,
3199 B::Debug, B::Deparse, B::Disassembler, B::Lint, B::Showlex, B::Stackobj,
3200 B::Stash, B::Terse, B::Xref
3201
3202 =back
3203
3204 =item KNOWN PROBLEMS
3205
3206 =item AUTHOR
3207
3208 =back
3209
3210 =head2 perlembed - how to embed perl in your C program
3211
3212 =over 4
3213
3214 =item DESCRIPTION
3215
3216 =over 4
3217
3218 =item PREAMBLE
3219
3220 B<Use C from Perl?>, B<Use a Unix program from Perl?>, B<Use Perl from
3221 Perl?>, B<Use C from C?>, B<Use Perl from C?>
3222
3223 =item ROADMAP
3224
3225 =item Compiling your C program
3226
3227 =item Adding a Perl interpreter to your C program
3228
3229 =item Calling a Perl subroutine from your C program
3230
3231 =item Evaluating a Perl statement from your C program
3232
3233 =item Performing Perl pattern matches and substitutions from your C program
3234
3235 =item Fiddling with the Perl stack from your C program
3236
3237 =item Maintaining a persistent interpreter
3238
3239 =item Maintaining multiple interpreter instances
3240
3241 =item Using Perl modules, which themselves use C libraries, from your C
3242 program
3243
3244 =back
3245
3246 =item Embedding Perl under Win32
3247
3248 =item MORAL
3249
3250 =item AUTHOR
3251
3252 =item COPYRIGHT
3253
3254 =back
3255
3256 =head2 perldebguts - Guts of Perl debugging 
3257
3258 =over 4
3259
3260 =item DESCRIPTION
3261
3262 =item Debugger Internals
3263
3264 =over 4
3265
3266 =item Writing Your Own Debugger
3267
3268 =back
3269
3270 =item Frame Listing Output Examples
3271
3272 =item Debugging regular expressions
3273
3274 =over 4
3275
3276 =item Compile-time output
3277
3278 C<anchored> I<STRING> C<at> I<POS>, C<floating> I<STRING> C<at>
3279 I<POS1..POS2>, C<matching floating/anchored>, C<minlen>, C<stclass>
3280 I<TYPE>, C<noscan>, C<isall>, C<GPOS>, C<plus>, C<implicit>, C<with eval>,
3281 C<anchored(TYPE)>
3282
3283 =item Types of nodes
3284
3285 =item Run-time output
3286
3287 =back
3288
3289 =item Debugging Perl memory usage
3290
3291 =over 4
3292
3293 =item Using C<$ENV{PERL_DEBUG_MSTATS}>
3294
3295 C<buckets SMALLEST(APPROX)..GREATEST(APPROX)>, Free/Used, C<Total sbrk():
3296 SBRKed/SBRKs:CONTINUOUS>, C<pad: 0>, C<heads: 2192>, C<chain: 0>, C<tail:
3297 6144>
3298
3299 =item Example of using B<-DL> switch
3300
3301 C<717>, C<002>, C<054>, C<602>, C<702>, C<704>
3302
3303 =item B<-DL> details
3304
3305 C<!!!>, C<!!>, C<!>
3306
3307 =item Limitations of B<-DL> statistics
3308
3309 =back
3310
3311 =item SEE ALSO
3312
3313 =back
3314
3315 =head2 perlxstut, perlXStut - Tutorial for writing XSUBs
3316
3317 =over 4
3318
3319 =item DESCRIPTION
3320
3321 =item SPECIAL NOTES
3322
3323 =over 4
3324
3325 =item make
3326
3327 =item Version caveat
3328
3329 =item Dynamic Loading versus Static Loading
3330
3331 =back
3332
3333 =item TUTORIAL
3334
3335 =over 4
3336
3337 =item EXAMPLE 1
3338
3339 =item EXAMPLE 2
3340
3341 =item What has gone on?
3342
3343 =item Writing good test scripts
3344
3345 =item EXAMPLE 3
3346
3347 =item What's new here?
3348
3349 =item Input and Output Parameters
3350
3351 =item The XSUBPP Program
3352
3353 =item The TYPEMAP file
3354
3355 =item Warning about Output Arguments
3356
3357 =item EXAMPLE 4
3358
3359 =item What has happened here?
3360
3361 =item Anatomy of .xs file
3362
3363 =item Getting the fat out of XSUBs
3364
3365 =item More about XSUB arguments
3366
3367 =item The Argument Stack
3368
3369 =item Extending your Extension
3370
3371 =item Documenting your Extension
3372
3373 =item Installing your Extension
3374
3375 =item EXAMPLE 5
3376
3377 =item New Things in this Example
3378
3379 =item EXAMPLE 6
3380
3381 =item New Things in this Example
3382
3383 =item EXAMPLE 7 (Coming Soon)
3384
3385 =item EXAMPLE 8 (Coming Soon)
3386
3387 =item EXAMPLE 9 (Coming Soon)
3388
3389 =item Troubleshooting these Examples
3390
3391 =back
3392
3393 =item See also
3394
3395 =item Author
3396
3397 =over 4
3398
3399 =item Last Changed
3400
3401 =back
3402
3403 =back
3404
3405 =head2 perlxs - XS language reference manual
3406
3407 =over 4
3408
3409 =item DESCRIPTION
3410
3411 =over 4
3412
3413 =item Introduction
3414
3415 =item On The Road
3416
3417 =item The Anatomy of an XSUB
3418
3419 =item The Argument Stack
3420
3421 =item The RETVAL Variable
3422
3423 =item The MODULE Keyword
3424
3425 =item The PACKAGE Keyword
3426
3427 =item The PREFIX Keyword
3428
3429 =item The OUTPUT: Keyword
3430
3431 =item The NO_OUTPUT Keyword
3432
3433 =item The CODE: Keyword
3434
3435 =item The INIT: Keyword
3436
3437 =item The NO_INIT Keyword
3438
3439 =item Initializing Function Parameters
3440
3441 =item Default Parameter Values
3442
3443 =item The PREINIT: Keyword
3444
3445 =item The SCOPE: Keyword
3446
3447 =item The INPUT: Keyword
3448
3449 =item The IN/OUTLIST/IN_OUTLIST/OUT/IN_OUT Keywords
3450
3451 =item Variable-length Parameter Lists
3452
3453 =item The C_ARGS: Keyword
3454
3455 =item The PPCODE: Keyword
3456
3457 =item Returning Undef And Empty Lists
3458
3459 =item The REQUIRE: Keyword
3460
3461 =item The CLEANUP: Keyword
3462
3463 =item The POST_CALL: Keyword
3464
3465 =item The BOOT: Keyword
3466
3467 =item The VERSIONCHECK: Keyword
3468
3469 =item The PROTOTYPES: Keyword
3470
3471 =item The PROTOTYPE: Keyword
3472
3473 =item The ALIAS: Keyword
3474
3475 =item The INTERFACE: Keyword
3476
3477 =item The INTERFACE_MACRO: Keyword
3478
3479 =item The INCLUDE: Keyword
3480
3481 =item The CASE: Keyword
3482
3483 =item The & Unary Operator
3484
3485 =item Inserting POD, Comments and C Preprocessor Directives
3486
3487 =item Using XS With C++
3488
3489 =item Interface Strategy
3490
3491 =item Perl Objects And C Structures
3492
3493 =item The Typemap
3494
3495 =back
3496
3497 =item EXAMPLES
3498
3499 =item XS VERSION
3500
3501 =item AUTHOR
3502
3503 =back
3504
3505 =head2 perlclib - Internal replacements for standard C library functions
3506
3507 =over 4
3508
3509 =item DESCRIPTION
3510
3511 =over 4
3512
3513 =item Conventions
3514
3515 C<t>, C<p>, C<n>, C<s>
3516
3517 =item File Operations
3518
3519 =item File Input and Output
3520
3521 =item File Positioning
3522
3523 =item Memory Management and String Handling
3524
3525 =item Character Class Tests
3526
3527 =item F<stdlib.h> functions
3528
3529 =item Miscellaneous functions
3530
3531 =back
3532
3533 =item SEE ALSO
3534
3535 =back
3536
3537 =head2 perlguts - Introduction to the Perl API
3538
3539 =over 4
3540
3541 =item DESCRIPTION
3542
3543 =item Variables
3544
3545 =over 4
3546
3547 =item Datatypes
3548
3549 =item What is an "IV"?
3550
3551 =item Working with SVs
3552
3553 =item Offsets
3554
3555 =item What's Really Stored in an SV?
3556
3557 =item Working with AVs
3558
3559 =item Working with HVs
3560
3561 =item Hash API Extensions
3562
3563 =item References
3564
3565 =item Blessed References and Class Objects
3566
3567 =item Creating New Variables
3568
3569 =item Reference Counts and Mortality
3570
3571 =item Stashes and Globs
3572
3573 =item Double-Typed SVs
3574
3575 =item Magic Variables
3576
3577 =item Assigning Magic
3578
3579 =item Magic Virtual Tables
3580
3581 =item Finding Magic
3582
3583 =item Understanding the Magic of Tied Hashes and Arrays
3584
3585 =item Localizing changes
3586
3587 C<SAVEINT(int i)>, C<SAVEIV(IV i)>, C<SAVEI32(I32 i)>, C<SAVELONG(long i)>,
3588 C<SAVESPTR(s)>, C<SAVEPPTR(p)>, C<SAVEFREESV(SV *sv)>, C<SAVEMORTALIZESV(SV
3589 *sv)>, C<SAVEFREEOP(OP *op)>, C<SAVEFREEPV(p)>, C<SAVECLEARSV(SV *sv)>,
3590 C<SAVEDELETE(HV *hv, char *key, I32 length)>,
3591 C<SAVEDESTRUCTOR(DESTRUCTORFUNC_NOCONTEXT_t f, void *p)>,
3592 C<SAVEDESTRUCTOR_X(DESTRUCTORFUNC_t f, void *p)>, C<SAVESTACK_POS()>, C<SV*
3593 save_scalar(GV *gv)>, C<AV* save_ary(GV *gv)>, C<HV* save_hash(GV *gv)>,
3594 C<void save_item(SV *item)>, C<void save_list(SV **sarg, I32 maxsarg)>,
3595 C<SV* save_svref(SV **sptr)>, C<void save_aptr(AV **aptr)>, C<void
3596 save_hptr(HV **hptr)>
3597
3598 =back
3599
3600 =item Subroutines
3601
3602 =over 4
3603
3604 =item XSUBs and the Argument Stack
3605
3606 =item Calling Perl Routines from within C Programs
3607
3608 =item Memory Allocation
3609
3610 =item PerlIO
3611
3612 =item Putting a C value on Perl stack
3613
3614 =item Scratchpads
3615
3616 =item Scratchpads and recursion
3617
3618 =back
3619
3620 =item Compiled code
3621
3622 =over 4
3623
3624 =item Code tree
3625
3626 =item Examining the tree
3627
3628 =item Compile pass 1: check routines
3629
3630 =item Compile pass 1a: constant folding
3631
3632 =item Compile pass 2: context propagation
3633
3634 =item Compile pass 3: peephole optimization
3635
3636 =back
3637
3638 =item Examining internal data structures with the C<dump> functions
3639
3640 =item How multiple interpreters and concurrency are supported
3641
3642 =over 4
3643
3644 =item Background and PERL_IMPLICIT_CONTEXT
3645
3646 =item So what happened to dTHR?
3647
3648 =item How do I use all this in extensions?
3649
3650 =item Should I do anything special if I call perl from multiple threads?
3651
3652 =item Future Plans and PERL_IMPLICIT_SYS
3653
3654 =back
3655
3656 =item Internal Functions
3657
3658 A, p, d, s, n, r, f, M, o, j, x
3659
3660 =over 4
3661
3662 =item Formatted Printing of IVs, UVs, and NVs
3663
3664 =item Pointer-To-Integer and Integer-To-Pointer
3665
3666 =item Source Documentation
3667
3668 =back
3669
3670 =item Unicode Support
3671
3672 =over 4
3673
3674 =item What B<is> Unicode, anyway?
3675
3676 =item How can I recognise a UTF8 string?
3677
3678 =item How does UTF8 represent Unicode characters?
3679
3680 =item How does Perl store UTF8 strings?
3681
3682 =item How do I convert a string to UTF8?
3683
3684 =item Is there anything else I need to know?
3685
3686 =back
3687
3688 =item AUTHORS
3689
3690 =item SEE ALSO
3691
3692 =back
3693
3694 =head2 perlcall - Perl calling conventions from C
3695
3696 =over 4
3697
3698 =item DESCRIPTION
3699
3700 An Error Handler, An Event Driven Program
3701
3702 =item THE CALL_ FUNCTIONS
3703
3704 call_sv, call_pv, call_method, call_argv
3705
3706 =item FLAG VALUES
3707
3708 =over 4
3709
3710 =item  G_VOID
3711
3712 =item  G_SCALAR
3713
3714 =item G_ARRAY
3715
3716 =item G_DISCARD
3717
3718 =item G_NOARGS
3719
3720 =item G_EVAL
3721
3722 =item G_KEEPERR
3723
3724 =item Determining the Context
3725
3726 =back
3727
3728 =item KNOWN PROBLEMS
3729
3730 =item EXAMPLES
3731
3732 =over 4
3733
3734 =item No Parameters, Nothing returned
3735
3736 =item Passing Parameters
3737
3738 =item Returning a Scalar
3739
3740 =item Returning a list of values
3741
3742 =item Returning a list in a scalar context
3743
3744 =item Returning Data from Perl via the parameter list
3745
3746 =item Using G_EVAL
3747
3748 =item Using G_KEEPERR
3749
3750 =item Using call_sv
3751
3752 =item Using call_argv
3753
3754 =item Using call_method
3755
3756 =item Using GIMME_V
3757
3758 =item Using Perl to dispose of temporaries
3759
3760 =item Strategies for storing Callback Context Information
3761
3762 1. Ignore the problem - Allow only 1 callback, 2. Create a sequence of
3763 callbacks - hard wired limit, 3. Use a parameter to map to the Perl
3764 callback
3765
3766 =item Alternate Stack Manipulation
3767
3768 =item Creating and calling an anonymous subroutine in C
3769
3770 =back
3771
3772 =item SEE ALSO
3773
3774 =item AUTHOR
3775
3776 =item DATE
3777
3778 =back
3779
3780 =head2 perlutil - utilities packaged with the Perl distribution
3781
3782 =over 4
3783
3784 =item DESCRIPTION
3785
3786 =over 4
3787
3788 =item DOCUMENTATION
3789
3790 L<perldoc|perldoc>, L<pod2man|pod2man> and L<pod2text|pod2text>,
3791 L<pod2html|pod2html> and L<pod2latex|pod2latex>, L<pod2usage|pod2usage>,
3792 L<podselect|podselect>, L<podchecker|podchecker>, L<splain|splain>,
3793 L<roffitall|roffitall>
3794
3795 =item CONVERTORS
3796
3797 L<a2p|a2p>, L<s2p|s2p>, L<find2perl|find2perl>
3798
3799 =item Development
3800
3801 L<perlbug|perlbug>, L<h2ph|h2ph>, L<c2ph|c2ph> and L<pstruct|pstruct>,
3802 L<h2xs|h2xs>, L<dprofpp|dprofpp>, L<perlcc|perlcc>
3803
3804 =item SEE ALSO
3805
3806 =back
3807
3808 =back
3809
3810 =head2 perlfilter - Source Filters
3811
3812 =over 4
3813
3814 =item DESCRIPTION
3815
3816 =item CONCEPTS
3817
3818 =item USING FILTERS
3819
3820 =item WRITING A SOURCE FILTER
3821
3822 =item WRITING A SOURCE FILTER IN C
3823
3824 B<Decryption Filters>
3825
3826 =item CREATING A SOURCE FILTER AS A SEPARATE EXECUTABLE
3827
3828 =item WRITING A SOURCE FILTER IN PERL
3829
3830 =item USING CONTEXT: THE DEBUG FILTER
3831
3832 =item CONCLUSION
3833
3834 =item REQUIREMENTS
3835
3836 =item AUTHOR
3837
3838 =item Copyrights
3839
3840 =back
3841
3842 =head2 perldbmfilter - Perl DBM Filters
3843
3844 =over 4
3845
3846 =item SYNOPSIS
3847
3848 =item DESCRIPTION
3849
3850 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
3851 B<filter_fetch_value>
3852
3853 =over 4
3854
3855 =item The Filter
3856
3857 =item An Example -- the NULL termination problem.
3858
3859 =item Another Example -- Key is a C int.
3860
3861 =back
3862
3863 =item SEE ALSO
3864
3865 =item AUTHOR
3866
3867 =back
3868
3869 =head2 perlapi - autogenerated documentation for the perl public API
3870
3871 =over 4
3872
3873 =item DESCRIPTION
3874
3875 AvFILL, av_clear, av_delete, av_exists, av_extend, av_fetch, av_fill,
3876 av_len, av_make, av_pop, av_push, av_shift, av_store, av_undef, av_unshift,
3877 bytes_from_utf8, bytes_to_utf8, call_argv, call_method, call_pv, call_sv,
3878 CLASS, Copy, croak, CvSTASH, cv_const_sv, dMARK, dORIGMARK, dSP, dXSARGS,
3879 dXSI32, ENTER, eval_pv, eval_sv, EXTEND, fbm_compile, fbm_instr, FREETMPS,
3880 get_av, get_cv, get_hv, get_sv, GIMME, GIMME_V, GvSV, gv_fetchmeth,
3881 gv_fetchmethod, gv_fetchmethod_autoload, gv_stashpv, gv_stashsv, G_ARRAY,
3882 G_DISCARD, G_EVAL, G_NOARGS, G_SCALAR, G_VOID, HEf_SVKEY, HeHASH, HeKEY,
3883 HeKLEN, HePV, HeSVKEY, HeSVKEY_force, HeSVKEY_set, HeVAL, HvNAME, hv_clear,
3884 hv_delete, hv_delete_ent, hv_exists, hv_exists_ent, hv_fetch, hv_fetch_ent,
3885 hv_iterinit, hv_iterkey, hv_iterkeysv, hv_iternext, hv_iternextsv,
3886 hv_iterval, hv_magic, hv_store, hv_store_ent, hv_undef, isALNUM, isALPHA,
3887 isDIGIT, isLOWER, isSPACE, isUPPER, is_utf8_char, is_utf8_string, items,
3888 ix, LEAVE, load_module, looks_like_number, MARK, mg_clear, mg_copy,
3889 mg_find, mg_free, mg_get, mg_length, mg_magical, mg_set, Move, New, newAV,
3890 Newc, newCONSTSUB, newHV, newRV_inc, newRV_noinc, NEWSV, newSViv, newSVnv,
3891 newSVpv, newSVpvf, newSVpvn, newSVpvn_share, newSVrv, newSVsv, newSVuv,
3892 newXS, newXSproto, Newz, Nullav, Nullch, Nullcv, Nullhv, Nullsv, ORIGMARK,
3893 perl_alloc, perl_construct, perl_destruct, perl_free, perl_parse, perl_run,
3894 PL_modglobal, PL_na, PL_sv_no, PL_sv_undef, PL_sv_yes, POPi, POPl, POPn,
3895 POPp, POPpbytex, POPpx, POPs, PUSHi, PUSHMARK, PUSHn, PUSHp, PUSHs, PUSHu,
3896 PUTBACK, Renew, Renewc, require_pv, RETVAL, Safefree, savepv, savepvn,
3897 SAVETMPS, SP, SPAGAIN, ST, strEQ, strGE, strGT, strLE, strLT, strNE,
3898 strnEQ, strnNE, StructCopy, SvCUR, SvCUR_set, SvEND, SvGETMAGIC, SvGROW,
3899 SvIOK, SvIOKp, SvIOK_notUV, SvIOK_off, SvIOK_on, SvIOK_only, SvIOK_only_UV,
3900 SvIOK_UV, SvIV, SvIVX, SvLEN, SvNIOK, SvNIOKp, SvNIOK_off, SvNOK, SvNOKp,
3901 SvNOK_off, SvNOK_on, SvNOK_only, SvNV, SvNVX, SvOK, SvOOK, SvPOK, SvPOKp,
3902 SvPOK_off, SvPOK_on, SvPOK_only, SvPOK_only_UTF8, SvPV, SvPVX, SvPV_force,
3903 SvPV_nolen, SvREFCNT, SvREFCNT_dec, SvREFCNT_inc, SvROK, SvROK_off,
3904 SvROK_on, SvRV, SvSETMAGIC, SvSetSV, SvSetSV_nosteal, SvSTASH, SvTAINT,
3905 SvTAINTED, SvTAINTED_off, SvTAINTED_on, SvTRUE, svtype, SvTYPE, SVt_IV,
3906 SVt_NV, SVt_PV, SVt_PVAV, SVt_PVCV, SVt_PVHV, SVt_PVMG, SvUOK, SvUPGRADE,
3907 SvUTF8, SvUTF8_off, SvUTF8_on, SvUV, SvUVX, sv_2mortal, sv_bless, sv_catpv,
3908 sv_catpvf, sv_catpvf_mg, sv_catpvn, sv_catpvn_flags, sv_catpvn_mg,
3909 sv_catpv_mg, sv_catsv, sv_catsv_flags, sv_catsv_mg, sv_chop, sv_clear,
3910 sv_cmp, sv_cmp_locale, sv_dec, sv_derived_from, sv_eq, sv_free, sv_getcwd,
3911 sv_gets, sv_grow, sv_inc, sv_insert, sv_isa, sv_isobject, sv_len,
3912 sv_len_utf8, sv_magic, sv_mortalcopy, sv_newmortal, sv_pvn_force,
3913 sv_pvn_force_flags, sv_pvutf8n_force, sv_realpath, sv_reftype, sv_replace,
3914 sv_rvweaken, sv_setiv, sv_setiv_mg, sv_setnv, sv_setnv_mg, sv_setpv,
3915 sv_setpvf, sv_setpvf_mg, sv_setpviv, sv_setpviv_mg, sv_setpvn,
3916 sv_setpvn_mg, sv_setpv_mg, sv_setref_iv, sv_setref_nv, sv_setref_pv,
3917 sv_setref_pvn, sv_setref_uv, sv_setsv, sv_setsv_flags, sv_setsv_mg,
3918 sv_setuv, sv_setuv_mg, sv_true, sv_unmagic, sv_unref, sv_unref_flags,
3919 sv_upgrade, sv_usepvn, sv_usepvn_mg, sv_utf8_decode, sv_utf8_downgrade,
3920 sv_utf8_encode, sv_utf8_upgrade, sv_utf8_upgrade_flags, sv_vcatpvfn,
3921 sv_vsetpvfn, THIS, toLOWER, toUPPER, utf8n_to_uvchr, utf8n_to_uvuni,
3922 utf8_distance, utf8_hop, utf8_length, utf8_to_bytes, utf8_to_uvchr,
3923 utf8_to_uvuni, uvchr_to_utf8, uvuni_to_utf8, warn, XPUSHi, XPUSHn, XPUSHp,
3924 XPUSHs, XPUSHu, XS, XSRETURN, XSRETURN_EMPTY, XSRETURN_IV, XSRETURN_NO,
3925 XSRETURN_NV, XSRETURN_PV, XSRETURN_UNDEF, XSRETURN_YES, XST_mIV, XST_mNO,
3926 XST_mNV, XST_mPV, XST_mUNDEF, XST_mYES, XS_VERSION, XS_VERSION_BOOTCHECK,
3927 Zero
3928
3929 =item AUTHORS
3930
3931 =item SEE ALSO
3932
3933 =back
3934
3935 =head2 perlintern - autogenerated documentation of purely B<internal>
3936                  Perl functions
3937
3938 =over 4
3939
3940 =item DESCRIPTION
3941
3942 djSP, is_gv_magical, LVRET, PL_DBsingle, PL_DBsub, PL_DBtrace, PL_dowarn,
3943 PL_last_in_gv, PL_ofs_sv, PL_rs, start_glob
3944
3945 =item AUTHORS
3946
3947 =item SEE ALSO
3948
3949 =back
3950
3951 =head2 perliol - C API for Perl's implementation of IO in Layers.
3952
3953 =over 4
3954
3955 =item SYNOPSIS
3956
3957 =item DESCRIPTION
3958
3959 =over 4
3960
3961 =item History and Background
3962
3963 =item Layers vs Disciplines
3964
3965 =item Data Structures
3966
3967 1. The functions and attributes of the "layer class", 2. The per-instance
3968 data for a particular handle
3969
3970 =item Functions and Attributes
3971
3972 =item Per-instance Data
3973
3974 =item Layers in action.
3975
3976 =item Per-instance flag bits
3977
3978 PERLIO_F_EOF, PERLIO_F_CANWRITE,  PERLIO_F_CANREAD, PERLIO_F_ERROR,
3979 PERLIO_F_TRUNCATE, PERLIO_F_APPEND, PERLIO_F_CRLF, PERLIO_F_UTF8,
3980 PERLIO_F_UNBUF, PERLIO_F_WRBUF, PERLIO_F_RDBUF, PERLIO_F_LINEBUF,
3981 PERLIO_F_TEMP, PERLIO_F_OPEN, PERLIO_F_FASTGETS
3982
3983 =item Methods in Detail
3984
3985  IV             (*Pushed)(PerlIO *f,const char *mode, SV *arg);,  IV       
3986     (*Popped)(PerlIO *f);,  PerlIO *        (*Open)(...);, SV *            
3987 (*Getarg)(PerlIO *f);, IV       (*Fileno)(PerlIO *f);,  SSize_t
3988 (*Read)(PerlIO *f, void *vbuf, Size_t count);,  SSize_t (*Unread)(PerlIO
3989 *f, const void *vbuf, Size_t count);,  SSize_t (*Write)(PerlIO *f, const
3990 void *vbuf, Size_t count);,  IV               (*Seek)(PerlIO *f, Off_t
3991 offset, int whence);,  Off_t           (*Tell)(PerlIO *f);,  IV            
3992    (*Close)(PerlIO *f);,  IV               (*Flush)(PerlIO *f);,  IV       
3993        (*Fill)(PerlIO *f);,  IV                (*Eof)(PerlIO *f);,  IV     
3994    (*Error)(PerlIO *f);,  void             (*Clearerr)(PerlIO *f);,  void  
3995        (*Setlinebuf)(PerlIO *f);,  STDCHAR *   (*Get_base)(PerlIO *f);, 
3996 Size_t                (*Get_bufsiz)(PerlIO *f);,  STDCHAR *  
3997 (*Get_ptr)(PerlIO *f);,  SSize_t        (*Get_cnt)(PerlIO *f);,  void      
3998     (*Set_ptrcnt)(PerlIO *f,STDCHAR *ptr,SSize_t cnt);
3999
4000 =item Core Layers
4001
4002 "unix", "perlio", "stdio", "crlf", "mmap", "pending", "raw", "utf8"
4003
4004 =item Extension Layers
4005
4006 ":encoding", ":Scalar", ":Object" or ":Perl"
4007
4008 =back
4009
4010 =back
4011
4012 =head2 perlapio - perl's IO abstraction interface.
4013
4014 =over 4
4015
4016 =item SYNOPSIS
4017
4018 =item DESCRIPTION
4019
4020 1. USE_STDIO, 2. USE_SFIO, 3. USE_PERLIO, B<PerlIO_stdin()>,
4021 B<PerlIO_stdout()>, B<PerlIO_stderr()>, B<PerlIO_open(path, mode)>,
4022 B<PerlIO_fdopen(fd,mode)>, B<PerlIO_reopen(path,mode,f)>,
4023 B<PerlIO_printf(f,fmt,...)>, B<PerlIO_vprintf(f,fmt,a)>,
4024 B<PerlIO_stdoutf(fmt,...)>, B<PerlIO_read(f,buf,count)>,
4025 B<PerlIO_write(f,buf,count)>, B<PerlIO_close(f)>, B<PerlIO_puts(f,s)>,
4026 B<PerlIO_putc(f,c)>, B<PerlIO_ungetc(f,c)>, B<PerlIO_getc(f)>,
4027 B<PerlIO_eof(f)>, B<PerlIO_error(f)>, B<PerlIO_fileno(f)>,
4028 B<PerlIO_clearerr(f)>, B<PerlIO_flush(f)>, B<PerlIO_seek(f,offset,whence)>,
4029 B<PerlIO_tell(f)>, B<PerlIO_getpos(f,p)>, B<PerlIO_setpos(f,p)>,
4030 B<PerlIO_rewind(f)>, B<PerlIO_tmpfile()>, B<PerlIO_setlinebuf(f)>
4031
4032 =over 4
4033
4034 =item Co-existence with stdio
4035
4036 B<PerlIO_importFILE(f,flags)>, B<PerlIO_exportFILE(f,flags)>,
4037 B<PerlIO_findFILE(f)>, B<PerlIO_releaseFILE(p,f)>
4038
4039 =item "Fast gets" Functions
4040
4041 B<PerlIO_fast_gets(f)>, B<PerlIO_has_cntptr(f)>, B<PerlIO_get_cnt(f)>,
4042 B<PerlIO_get_ptr(f)>, B<PerlIO_set_ptrcnt(f,p,c)>, B<PerlIO_canset_cnt(f)>,
4043 B<PerlIO_set_cnt(f,c)>, B<PerlIO_has_base(f)>, B<PerlIO_get_base(f)>,
4044 B<PerlIO_get_bufsiz(f)>
4045
4046 =item Other Functions
4047
4048 PerlIO_apply_layers(f,mode,layers), PerlIO_binmode(f,ptype,imode,layers),
4049 'E<lt>' read, 'E<gt>' write, '+' read/write, PerlIO_debug(fmt,...)
4050
4051 =back
4052
4053 =back
4054
4055 =head2 perltodo - Perl TO-DO List
4056
4057 =over 4
4058
4059 =item DESCRIPTION
4060
4061 =item To do during 5.6.x
4062
4063 =over 4
4064
4065 =item Support for I/O disciplines
4066
4067 =item Eliminate need for "use utf8";
4068
4069 =item Autoload byte.pm
4070
4071 =item Make "\u{XXXX}" et al work
4072
4073 =item Overloadable regex assertions
4074
4075 =item Unicode collation and normalization
4076
4077 =item Unicode case mappings 
4078
4079 =item Unicode regular expression character classes
4080
4081 =item use Thread for iThreads
4082
4083 =item make perl_clone optionally clone ops
4084
4085 =item Work out exit/die semantics for threads
4086
4087 =item Typed lexicals for compiler
4088
4089 =item Compiler workarounds for Win32
4090
4091 =item AUTOLOADing in the compiler
4092
4093 =item Fixing comppadlist when compiling
4094
4095 =item Cleaning up exported namespace
4096
4097 =item Complete signal handling
4098
4099 =item Out-of-source builds
4100
4101 =item POSIX realtime support
4102
4103 =item UNIX98 support
4104
4105 =item IPv6 Support
4106
4107 =item Long double conversion
4108
4109 =item Locales
4110
4111 =item Thread-safe regexes
4112
4113 =item Arithmetic on non-Arabic numerals
4114
4115 =item POSIX Unicode character classes
4116
4117 =item Factoring out common suffices/prefices in regexps (trie optimization)
4118
4119 =item Security audit shipped utilities
4120
4121 =item Custom opcodes
4122
4123 =item spawnvp() on Win32
4124
4125 =item DLL Versioning
4126
4127 =item Introduce @( and @)
4128
4129 =item Floating point handling
4130
4131 =item IV/UV preservation
4132
4133 =item Replace pod2html with something using Pod::Parser
4134
4135 =item Automate module testing on CPAN
4136
4137 =item sendmsg and recvmsg
4138
4139 =item Rewrite perlre documentation
4140
4141 =item Convert example code to IO::Handle filehandles
4142
4143 =item Document Win32 choices
4144
4145 =item Check new modules
4146
4147 =item Make roffitall find pods and libs itself
4148
4149 =back
4150
4151 =item To do at some point
4152
4153 =over 4
4154
4155 =item Remove regular expression recursion
4156
4157 =item Memory leaks after failed eval
4158
4159 =item pack "(stuff)*"
4160
4161 =item bitfields in pack
4162
4163 =item Cross compilation
4164
4165 =item Perl preprocessor / macros
4166
4167 =item Perl lexer in Perl
4168
4169 =item Using POSIX calls internally
4170
4171 =item -i rename file when changed
4172
4173 =item All ARGV input should act like E<lt>E<gt>
4174
4175 =item Support for rerunning debugger
4176
4177 =item my sub foo { }
4178
4179 =item One-pass global destruction
4180
4181 =item Rewrite regexp parser
4182
4183 =item Cache recently used regexps
4184
4185 =item Re-entrant functions
4186
4187 =item Cross-compilation support
4188
4189 =item Bit-shifting bitvectors
4190
4191 =item debugger pragma
4192
4193 =item use less pragma
4194
4195 =item switch structures
4196
4197 =item Cache eval tree
4198
4199 =item rcatmaybe
4200
4201 =item Shrink opcode tables
4202
4203 =item Optimize away @_
4204
4205 =item Prototypes versus indirect objects
4206
4207 =item Install HMTL
4208
4209 =item Prototype method calls
4210
4211 =item Return context prototype declarations
4212
4213 =item magic_setisa
4214
4215 =item Garbage collection
4216
4217 =item IO tutorial
4218
4219 =item pack/unpack tutorial
4220
4221 =item Rewrite perldoc
4222
4223 =item Install .3p manpages
4224
4225 =item Unicode tutorial
4226
4227 =item Update POSIX.pm for 1003.1-2
4228
4229 =item Retargetable installation
4230
4231 =item POSIX emulation on non-POSIX systems
4232
4233 =item Rename Win32 headers
4234
4235 =item Finish off lvalue functions
4236
4237 =item Update sprintf documentation
4238
4239 =item Use fchown/fchmod internally
4240
4241 =back
4242
4243 =item Vague ideas
4244
4245 =over 4
4246
4247 =item ref() in list context
4248
4249 =item Make tr/// return histogram
4250
4251 =item Compile to real threaded code
4252
4253 =item Structured types
4254
4255 =item Modifiable $1 et al.
4256
4257 =item Procedural interfaces for IO::*, etc.
4258
4259 =item RPC modules
4260
4261 =item Attach/detach debugger from running program
4262
4263 =item Alternative RE syntax module
4264
4265 =item GUI::Native
4266
4267 =item foreach(reverse ...)
4268
4269 =item Constant function cache
4270
4271 =item Approximate regular expression matching
4272
4273 =back
4274
4275 =item Ongoing
4276
4277 =over 4
4278
4279 =item Update guts documentation
4280
4281 =item Add more tests
4282
4283 =item Update auxiliary tools
4284
4285 =back
4286
4287 =item Recently done things
4288
4289 =over 4
4290
4291 =item Safe signal handling
4292
4293 =item Tie Modules
4294
4295 =item gettimeofday
4296
4297 =item setitimer and getimiter
4298
4299 =item Testing __DIE__ hook
4300
4301 =item CPP equivalent in Perl
4302
4303 =item Explicit switch statements
4304
4305 =item autocroak
4306
4307 =item UTF/EBCDIC
4308
4309 =item UTF Regexes
4310
4311 =item perlcc to produce executable
4312
4313 =item END blocks saved in compiled output
4314
4315 =item Secure temporary file module
4316
4317 =item Integrate Time::HiRes
4318
4319 =item Turn Cwd into XS
4320
4321 =item Mmap for input
4322
4323 =item Byte to/from UTF8 and UTF8 to/from local conversion
4324
4325 =item Add sockatmark support
4326
4327 =item Mailing list archives
4328
4329 =item Bug tracking
4330
4331 =item Integrate MacPerl
4332
4333 =item Web "nerve center" for Perl
4334
4335 =item Regular expression tutorial
4336
4337 =item Debugging Tutorial
4338
4339 =item Integrate new modules
4340
4341 =item Integrate profiler
4342
4343 =item Y2K error detection
4344
4345 =item Regular expression debugger
4346
4347 =item POD checker
4348
4349 =item "Dynamic" lexicals
4350
4351 =item Cache precompiled modules
4352
4353 =back
4354
4355 =item Deprecated Wishes
4356
4357 =over 4
4358
4359 =item Loop control on do{}
4360
4361 =item Lexically scoped typeglobs
4362
4363 =item format BOTTOM
4364
4365 =item report HANDLE
4366
4367 =item Generalised want()/caller())
4368
4369 =item Named prototypes
4370
4371 =item Built-in globbing
4372
4373 =item Regression tests for suidperl
4374
4375 =item Cached hash values
4376
4377 =item Add compression modules
4378
4379 =item Reorganise documentation into tutorials/references
4380
4381 =item Remove distinction between functions and operators
4382
4383 =item Make XS easier to use
4384
4385 =item Make embedding easier to use
4386
4387 =item man for perl
4388
4389 =item my $Package::variable
4390
4391 =item "or" tests defined, not truth
4392
4393 =item "class"-based lexicals
4394
4395 =item byteperl
4396
4397 =item Lazy evaluation / tail recursion removal
4398
4399 =back
4400
4401 =back
4402
4403 =head2 perlhack - How to hack at the Perl internals
4404
4405 =over 4
4406
4407 =item DESCRIPTION
4408
4409 Does concept match the general goals of Perl?, Where is the
4410 implementation?, Backwards compatibility, Could it be a module instead?, Is
4411 the feature generic enough?, Does it potentially introduce new bugs?, Does
4412 it preclude other desirable features?, Is the implementation robust?, Is
4413 the implementation generic enough to be portable?, Is there enough
4414 documentation?, Is there another way to do it?, Does it create too much
4415 work?, Patches speak louder than words
4416
4417 =over 4
4418
4419 =item Keeping in sync
4420
4421 rsync'ing the source tree, Using rsync over the LAN, Using pushing over the
4422 NFS, rsync'ing the patches, It's easier, It's more recent, It's more
4423 reliable, It's easier, It's a good reference, Finding a start point,
4424 Finding how to fix a bug, Finding the source of misbehaviour
4425
4426 =item Submitting patches
4427
4428 L<perlguts>, L<perlxstut> and L<perlxs>, L<perlapi>,
4429 F<Porting/pumpkin.pod>, The perl5-porters FAQ
4430
4431 =item Finding Your Way Around
4432
4433 Core modules, Documentation, Configure, Interpreter
4434
4435 =item Elements of the interpreter
4436
4437 Startup, Parsing, Optimization, Running
4438
4439 =item Internal Variable Types
4440
4441 =item Op Trees
4442
4443 =item Stacks
4444
4445 Argument stack, Mark stack, Save stack
4446
4447 =item Millions of Macros
4448
4449 =item Poking at Perl
4450
4451 =item Using a source-level debugger
4452
4453 run [args], break function_name, break source.c:xxx, step, next, continue,
4454 finish, 'enter', print
4455
4456 =item Dumping Perl Data Structures
4457
4458 =item Patching
4459
4460 =back
4461
4462 =item EXTERNAL TOOLS FOR DEBUGGING PERL
4463
4464 =over 4
4465
4466 =item Rational Software's Purify
4467
4468 =item Purify on Unix
4469
4470 -Accflags=-DPURIFY, -Doptimize='-g', -Uusemymalloc, -Dusemultiplicity
4471
4472 =item Purify on NT
4473
4474 DEFINES, USE_MULTI = define, #PERL_MALLOC = define, CFG = Debug
4475
4476 =item Compaq's/Digital's Third Degree
4477
4478 =item PERL_DESTRUCT_LEVEL
4479
4480 =item Gprof Profiling
4481
4482 -a, -b, -e routine, -f routine, -s, -z
4483
4484 =item Pixie Profiling
4485
4486 -h, -l, -p[rocedures], -h[eavy], -i[nvocations], -l[ines], -testcoverage,
4487 -z[ero]
4488
4489 =item CONCLUSION
4490
4491 I<The Road goes ever on and on, down from the door where it began.>
4492
4493 =back
4494
4495 =item AUTHOR
4496
4497 =back
4498
4499 =head2 perlhist - the Perl history records
4500
4501 =over 4
4502
4503 =item DESCRIPTION
4504
4505 =item INTRODUCTION
4506
4507 =item THE KEEPERS OF THE PUMPKIN
4508
4509 =over 4
4510
4511 =item PUMPKIN?
4512
4513 =back
4514
4515 =item THE RECORDS
4516
4517 =over 4
4518
4519 =item SELECTED RELEASE SIZES
4520
4521 =item SELECTED PATCH SIZES
4522
4523 =back
4524
4525 =item THE KEEPERS OF THE RECORDS
4526
4527 =back
4528
4529 =head2 perldelta - what will be new for perl v5.8.0
4530
4531 =over 4
4532
4533 =item DESCRIPTION
4534
4535 =item Reporting Bugs
4536
4537 =item SEE ALSO
4538
4539 =item HISTORY
4540
4541 =back
4542
4543 =head2 perl572delta, perl571delta - what's new for perl v5.7.2
4544
4545 =over 4
4546
4547 =item DESCRIPTION
4548
4549 =item Security Vulnerability Closed
4550
4551 =item Incompatible Changes
4552
4553 =item Future Deprecations
4554
4555 =item Core Enhancements
4556
4557 =item Modules and Pragmata
4558
4559 =over 4
4560
4561 =item New Modules
4562
4563 =item Updated And Improved Modules and Pragmata
4564
4565 =back
4566
4567 =item Performance Enhancements
4568
4569 =item Utility Changes
4570
4571 =item New Documentation
4572
4573 =item Installation and Configuration Improvements
4574
4575 =over 4
4576
4577 =item New Or Improved Platforms
4578
4579 =item Generic Improvements
4580
4581 =back
4582
4583 =item Selected Bug Fixes
4584
4585 =over 4
4586
4587 =item Platform Specific Changes and Fixes
4588
4589 =back
4590
4591 =item New or Changed Diagnostics
4592
4593 =item Changed Internals
4594
4595 =over 4
4596
4597 =item Regex pre-/post-compilation items matched up
4598
4599 =back
4600
4601 =item New Tests
4602
4603 =item Known Problems
4604
4605 =over 4
4606
4607 =item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
4608
4609 =item lib/ftmp-security tests warn 'system possibly insecure'
4610
4611 =item lib/io_multihomed Fails In LP64-Configured HP-UX
4612
4613 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
4614
4615 =item lib/b test 19
4616
4617 =item Linux With Sfio Fails op/misc Test 48
4618
4619 =item sigaction test 13 in VMS
4620
4621 =item sprintf tests 129 and 130
4622
4623 =item  Failure of Thread tests
4624
4625 =item Localising a Tied Variable Leaks Memory
4626
4627 =item Self-tying of Arrays and Hashes Is Forbidden
4628
4629 =item Building Extensions Can Fail Because Of Largefiles
4630
4631 =item The Compiler Suite Is Still Experimental
4632
4633 =back
4634
4635 =item Reporting Bugs
4636
4637 =item SEE ALSO
4638
4639 =item HISTORY
4640
4641 =back
4642
4643 =head2 perl571delta - what's new for perl v5.7.1
4644
4645 =over 4
4646
4647 =item DESCRIPTION
4648
4649 =item Security Vulnerability Closed
4650
4651 =item Incompatible Changes
4652
4653 =item Core Enhancements
4654
4655 =over 4
4656
4657 =item AUTOLOAD Is Now Lvaluable
4658
4659 =item PerlIO is Now The Default
4660
4661 =item Signals Are Now Safe
4662
4663 =back
4664
4665 =item Modules and Pragmata
4666
4667 =over 4
4668
4669 =item New Modules
4670
4671 =item Updated And Improved Modules and Pragmata
4672
4673 =back
4674
4675 =item Performance Enhancements
4676
4677 =item Utility Changes
4678
4679 =item New Documentation
4680
4681 =over 4
4682
4683 =item perlclib
4684
4685 =item perliol
4686
4687 =item README.aix
4688
4689 =item README.bs2000
4690
4691 =item README.macos
4692
4693 =item README.mpeix
4694
4695 =item README.solaris
4696
4697 =item README.vos
4698
4699 =item Porting/repository.pod
4700
4701 =back
4702
4703 =item Installation and Configuration Improvements
4704
4705 =over 4
4706
4707 =item New Or Improved Platforms
4708
4709 =item Generic Improvements
4710
4711 d_cmsghdr, d_fcntl_can_lock, d_fsync, d_getitimer, d_getpagsz, d_msghdr_s,
4712 need_va_copy, d_readv, d_recvmsg, d_sendmsg, sig_size, d_sockatmark,
4713 d_strtoq, d_u32align, d_ualarm, d_usleep
4714
4715 =back
4716
4717 =item Selected Bug Fixes
4718
4719 =over 4
4720
4721 =item Platform Specific Changes and Fixes
4722
4723 =back
4724
4725 =item New or Changed Diagnostics
4726
4727 =item Changed Internals
4728
4729 =item New Tests
4730
4731 =item Known Problems
4732
4733 =over 4
4734
4735 =item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
4736
4737 =item lib/ftmp-security tests warn 'system possibly insecure'
4738
4739 =item lib/io_multihomed Fails In LP64-Configured HP-UX
4740
4741 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
4742
4743 =item lib/b test 19
4744
4745 =item Linux With Sfio Fails op/misc Test 48
4746
4747 =item sigaction test 13 in VMS
4748
4749 =item sprintf tests 129 and 130
4750
4751 =item  Failure of Thread tests
4752
4753 =item Localising a Tied Variable Leaks Memory
4754
4755 =item Self-tying of Arrays and Hashes Is Forbidden
4756
4757 =item Building Extensions Can Fail Because Of Largefiles
4758
4759 =item The Compiler Suite Is Still Experimental
4760
4761 =back
4762
4763 =item Reporting Bugs
4764
4765 =item SEE ALSO
4766
4767 =item HISTORY
4768
4769 =back
4770
4771 =head2 perl570delta - what's new for perl v5.7.0
4772
4773 =over 4
4774
4775 =item DESCRIPTION
4776
4777 =item Security Vulnerability Closed
4778
4779 =item Incompatible Changes
4780
4781 =item Core Enhancements
4782
4783 =item Modules and Pragmata
4784
4785 =over 4
4786
4787 =item New Modules
4788
4789 =item Updated And Improved Modules and Pragmata
4790
4791 =back
4792
4793 =item Utility Changes
4794
4795 =item New Documentation
4796
4797 =item Performance Enhancements
4798
4799 =item Installation and Configuration Improvements
4800
4801 =over 4
4802
4803 =item Generic Improvements
4804
4805 =back
4806
4807 =item Selected Bug Fixes
4808
4809 =over 4
4810
4811 =item Platform Specific Changes and Fixes
4812
4813 =back
4814
4815 =item New or Changed Diagnostics
4816
4817 =item Changed Internals
4818
4819 =item Known Problems
4820
4821 =over 4
4822
4823 =item Unicode Support Still Far From Perfect
4824
4825 =item EBCDIC Still A Lost Platform
4826
4827 =item Building Extensions Can Fail Because Of Largefiles
4828
4829 =item ftmp-security tests warn 'system possibly insecure'
4830
4831 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
4832
4833 =item Long Doubles Still Don't Work In Solaris
4834
4835 =item Linux With Sfio Fails op/misc Test 48
4836
4837 =item Storable tests fail in some platforms
4838
4839 =item Threads Are Still Experimental
4840
4841 =item The Compiler Suite Is Still Experimental
4842
4843 =back
4844
4845 =item Reporting Bugs
4846
4847 =item SEE ALSO
4848
4849 =item HISTORY
4850
4851 =back
4852
4853 =head2 perl56delta, perldelta - what's new for perl v5.6.0
4854
4855 =over 4
4856
4857 =item DESCRIPTION
4858
4859 =item Core Enhancements
4860
4861 =over 4
4862
4863 =item Interpreter cloning, threads, and concurrency
4864
4865 =item Lexically scoped warning categories
4866
4867 =item Unicode and UTF-8 support
4868
4869 =item Support for interpolating named characters
4870
4871 =item "our" declarations
4872
4873 =item Support for strings represented as a vector of ordinals
4874
4875 =item Improved Perl version numbering system
4876
4877 =item New syntax for declaring subroutine attributes
4878
4879 =item File and directory handles can be autovivified
4880
4881 =item open() with more than two arguments
4882
4883 =item 64-bit support
4884
4885 =item Large file support
4886
4887 =item Long doubles
4888
4889 =item "more bits"
4890
4891 =item Enhanced support for sort() subroutines
4892
4893 =item C<sort $coderef @foo> allowed
4894
4895 =item File globbing implemented internally
4896
4897 =item Support for CHECK blocks
4898
4899 =item POSIX character class syntax [: :] supported
4900
4901 =item Better pseudo-random number generator
4902
4903 =item Improved C<qw//> operator
4904
4905 =item Better worst-case behavior of hashes
4906
4907 =item pack() format 'Z' supported
4908
4909 =item pack() format modifier '!' supported
4910
4911 =item pack() and unpack() support counted strings
4912
4913 =item Comments in pack() templates
4914
4915 =item Weak references
4916
4917 =item Binary numbers supported
4918
4919 =item Lvalue subroutines
4920
4921 =item Some arrows may be omitted in calls through references
4922
4923 =item Boolean assignment operators are legal lvalues
4924
4925 =item exists() is supported on subroutine names
4926
4927 =item exists() and delete() are supported on array elements
4928
4929 =item Pseudo-hashes work better
4930
4931 =item Automatic flushing of output buffers
4932
4933 =item Better diagnostics on meaningless filehandle operations
4934
4935 =item Where possible, buffered data discarded from duped input filehandle
4936
4937 =item eof() has the same old magic as <>
4938
4939 =item binmode() can be used to set :crlf and :raw modes
4940
4941 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
4942
4943 =item system(), backticks and pipe open now reflect exec() failure
4944
4945 =item Improved diagnostics
4946
4947 =item Diagnostics follow STDERR
4948
4949 =item More consistent close-on-exec behavior
4950
4951 =item syswrite() ease-of-use
4952
4953 =item Better syntax checks on parenthesized unary operators
4954
4955 =item Bit operators support full native integer width
4956
4957 =item Improved security features
4958
4959 =item More functional bareword prototype (*)
4960
4961 =item C<require> and C<do> may be overridden
4962
4963 =item $^X variables may now have names longer than one character
4964
4965 =item New variable $^C reflects C<-c> switch
4966
4967 =item New variable $^V contains Perl version as a string
4968
4969 =item Optional Y2K warnings
4970
4971 =item Arrays now always interpolate into double-quoted strings
4972
4973 =back
4974
4975 =item Modules and Pragmata
4976
4977 =over 4
4978
4979 =item Modules
4980
4981 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
4982 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
4983 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
4984 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
4985 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
4986 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
4987 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
4988 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
4989
4990 =item Pragmata
4991
4992 =back
4993
4994 =item Utility Changes
4995
4996 =over 4
4997
4998 =item dprofpp
4999
5000 =item find2perl
5001
5002 =item h2xs
5003
5004 =item perlcc
5005
5006 =item perldoc
5007
5008 =item The Perl Debugger
5009
5010 =back
5011
5012 =item Improved Documentation
5013
5014 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
5015 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
5016 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
5017 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
5018
5019 =item Performance enhancements
5020
5021 =over 4
5022
5023 =item Simple sort() using { $a <=> $b } and the like are optimized
5024
5025 =item Optimized assignments to lexical variables
5026
5027 =item Faster subroutine calls
5028
5029 =item delete(), each(), values() and hash iteration are faster
5030
5031 =back
5032
5033 =item Installation and Configuration Improvements
5034
5035 =over 4
5036
5037 =item -Dusethreads means something different
5038
5039 =item New Configure flags
5040
5041 =item Threadedness and 64-bitness now more daring
5042
5043 =item Long Doubles
5044
5045 =item -Dusemorebits
5046
5047 =item -Duselargefiles
5048
5049 =item installusrbinperl
5050
5051 =item SOCKS support
5052
5053 =item C<-A> flag
5054
5055 =item Enhanced Installation Directories
5056
5057 =back
5058
5059 =item Platform specific changes
5060
5061 =over 4
5062
5063 =item Supported platforms
5064
5065 =item DOS
5066
5067 =item OS390 (OpenEdition MVS)
5068
5069 =item VMS
5070
5071 =item Win32
5072
5073 =back
5074
5075 =item Significant bug fixes
5076
5077 =over 4
5078
5079 =item <HANDLE> on empty files
5080
5081 =item C<eval '...'> improvements
5082
5083 =item All compilation errors are true errors
5084
5085 =item Implicitly closed filehandles are safer
5086
5087 =item Behavior of list slices is more consistent
5088
5089 =item C<(\$)> prototype and C<$foo{a}>
5090
5091 =item C<goto &sub> and AUTOLOAD
5092
5093 =item C<-bareword> allowed under C<use integer>
5094
5095 =item Failures in DESTROY()
5096
5097 =item Locale bugs fixed
5098
5099 =item Memory leaks
5100
5101 =item Spurious subroutine stubs after failed subroutine calls
5102
5103 =item Taint failures under C<-U>
5104
5105 =item END blocks and the C<-c> switch
5106
5107 =item Potential to leak DATA filehandles
5108
5109 =back
5110
5111 =item New or Changed Diagnostics
5112
5113 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
5114 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
5115 / cannot take a count, / must be followed by a, A or Z, / must be followed
5116 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
5117 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
5118 passed through, /%s/ should probably be written as "%s", %s() called too
5119 early to check prototype, %s argument is not a HASH or ARRAY element, %s
5120 argument is not a HASH or ARRAY element or slice, %s argument is not a
5121 subroutine name, %s package attribute may clash with future reserved word:
5122 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
5123 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
5124 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
5125 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
5126 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
5127 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
5128 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
5129 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
5130 weaken a nonreference, Character class [:%s:] unknown, Character class
5131 syntax [%s] belongs inside character classes, Constant is not %s reference,
5132 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
5133 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
5134 "local" instead of "our"?), Document contains no data, entering effective
5135 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
5136 output, flock() on closed filehandle %s, Global symbol "%s" requires
5137 explicit package name, Hexadecimal number > 0xffffffff non-portable,
5138 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
5139 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
5140 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
5141 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
5142 separator character %s in attribute list, Invalid separator character %s in
5143 subroutine attribute list, leaving effective %s failed, Lvalue subs
5144 returning %s not implemented yet, Method %s not permitted, Missing
5145 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
5146 No %s specified for -%c, No package name allowed for variable %s in "our",
5147 No space allowed after -%c, no UTC offset information; assuming local time
5148 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
5149 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
5150 around "%s" list, Possible unintended interpolation of %s in string,
5151 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
5152 instead, Premature end of script headers, Repeat count in pack overflows,
5153 Repeat count in unpack overflows, realloc() of freed memory ignored,
5154 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
5155 zero-length expression, switching effective %s is not implemented, This
5156 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
5157 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
5158 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
5159 escape \\%c passed through, Unterminated attribute parameter in attribute
5160 list, Unterminated attribute list, Unterminated attribute parameter in
5161 subroutine attribute list, Unterminated subroutine attribute list, Value of
5162 CLI symbol "%s" too long, Version number must be a constant number
5163
5164 =item New tests
5165
5166 =item Incompatible Changes
5167
5168 =over 4
5169
5170 =item Perl Source Incompatibilities
5171
5172 CHECK is a new keyword, Treatment of list slices of undef has changed,
5173 Format of $English::PERL_VERSION is different, Literals of the form
5174 C<1.2.3> parse differently, Possibly changed pseudo-random number
5175 generator, Hashing function for hash keys has changed, C<undef> fails on
5176 read only values, Close-on-exec bit may be set on pipe and socket handles,
5177 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
5178 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
5179 Text of some diagnostic output has changed, C<%@> has been removed,
5180 Parenthesized not() behaves like a list operator, Semantics of bareword
5181 prototype C<(*)> have changed, Semantics of bit operators may have changed
5182 on 64-bit platforms, More builtins taint their results
5183
5184 =item C Source Incompatibilities
5185
5186 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
5187
5188 =item Compatible C Source API Changes
5189
5190 C<PATCHLEVEL> is now C<PERL_VERSION>
5191
5192 =item Binary Incompatibilities
5193
5194 =back
5195
5196 =item Known Problems
5197
5198 =over 4
5199
5200 =item Thread test failures
5201
5202 =item EBCDIC platforms not supported
5203
5204 =item In 64-bit HP-UX the lib/io_multihomed test may hang
5205
5206 =item NEXTSTEP 3.3 POSIX test failure
5207
5208 =item Tru64 (aka Digital UNIX, aka DEC OSF/1) lib/sdbm test failure with
5209 gcc
5210
5211 =item UNICOS/mk CC failures during Configure run
5212
5213 =item Arrow operator and arrays
5214
5215 =item Experimental features
5216
5217 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
5218 pseudo-hash data type, The Compiler suite, Internal implementation of file
5219 globbing, The DB module, The regular expression code constructs:
5220
5221 =back
5222
5223 =item Obsolete Diagnostics
5224
5225 Character class syntax [: :] is reserved for future extensions, Ill-formed
5226 logical name |%s| in prime_env_iter, In string, @%s now must be written as
5227 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
5228 to mean "${$}<digit>" is deprecated
5229
5230 =item Reporting Bugs
5231
5232 =item SEE ALSO
5233
5234 =item HISTORY
5235
5236 =back
5237
5238 =head2 perl5005delta, perldelta - what's new for perl5.005
5239
5240 =over 4
5241
5242 =item DESCRIPTION
5243
5244 =item About the new versioning system
5245
5246 =item Incompatible Changes
5247
5248 =over 4
5249
5250 =item WARNING:  This version is not binary compatible with Perl 5.004.
5251
5252 =item Default installation structure has changed
5253
5254 =item Perl Source Compatibility
5255
5256 =item C Source Compatibility
5257
5258 =item Binary Compatibility
5259
5260 =item Security fixes may affect compatibility
5261
5262 =item Relaxed new mandatory warnings introduced in 5.004
5263
5264 =item Licensing
5265
5266 =back
5267
5268 =item Core Changes
5269
5270 =over 4
5271
5272 =item Threads
5273
5274 =item Compiler
5275
5276 =item Regular Expressions
5277
5278 Many new and improved optimizations, Many bug fixes, New regular expression
5279 constructs, New operator for precompiled regular expressions, Other
5280 improvements, Incompatible changes
5281
5282 =item   Improved malloc()
5283
5284 =item Quicksort is internally implemented
5285
5286 =item Reliable signals
5287
5288 =item Reliable stack pointers
5289
5290 =item More generous treatment of carriage returns
5291
5292 =item Memory leaks
5293
5294 =item Better support for multiple interpreters
5295
5296 =item Behavior of local() on array and hash elements is now well-defined
5297
5298 =item C<%!> is transparently tied to the L<Errno> module
5299
5300 =item Pseudo-hashes are supported
5301
5302 =item C<EXPR foreach EXPR> is supported
5303
5304 =item Keywords can be globally overridden
5305
5306 =item C<$^E> is meaningful on Win32
5307
5308 =item C<foreach (1..1000000)> optimized
5309
5310 =item C<Foo::> can be used as implicitly quoted package name
5311
5312 =item C<exists $Foo::{Bar::}> tests existence of a package
5313
5314 =item Better locale support
5315
5316 =item Experimental support for 64-bit platforms
5317
5318 =item prototype() returns useful results on builtins
5319
5320 =item Extended support for exception handling
5321
5322 =item Re-blessing in DESTROY() supported for chaining DESTROY() methods
5323
5324 =item All C<printf> format conversions are handled internally
5325
5326 =item New C<INIT> keyword
5327
5328 =item New C<lock> keyword
5329
5330 =item New C<qr//> operator
5331
5332 =item C<our> is now a reserved word
5333
5334 =item Tied arrays are now fully supported
5335
5336 =item Tied handles support is better
5337
5338 =item 4th argument to substr
5339
5340 =item Negative LENGTH argument to splice
5341
5342 =item Magic lvalues are now more magical
5343
5344 =item <> now reads in records
5345
5346 =back
5347
5348 =item Supported Platforms
5349
5350 =over 4
5351
5352 =item New Platforms
5353
5354 =item Changes in existing support
5355
5356 =back
5357
5358 =item Modules and Pragmata
5359
5360 =over 4
5361
5362 =item New Modules
5363
5364 B, Data::Dumper, Dumpvalue, Errno, File::Spec, ExtUtils::Installed,
5365 ExtUtils::Packlist, Fatal, IPC::SysV, Test, Tie::Array, Tie::Handle,
5366 Thread, attrs, fields, re
5367
5368 =item Changes in existing modules
5369
5370 Benchmark, Carp, CGI, Fcntl, Math::Complex, Math::Trig, POSIX, DB_File,
5371 MakeMaker, CPAN, Cwd
5372
5373 =back
5374
5375 =item Utility Changes
5376
5377 =item Documentation Changes
5378
5379 =item New Diagnostics
5380
5381 Ambiguous call resolved as CORE::%s(), qualify as such or use &, Bad index
5382 while coercing array into hash, Bareword "%s" refers to nonexistent
5383 package, Can't call method "%s" on an undefined value, Can't check
5384 filesystem of script "%s" for nosuid, Can't coerce array into hash, Can't
5385 goto subroutine from an eval-string, Can't localize pseudo-hash element,
5386 Can't use %%! because Errno.pm is not available, Cannot find an opnumber
5387 for "%s", Character class syntax [. .] is reserved for future extensions,
5388 Character class syntax [: :] is reserved for future extensions, Character
5389 class syntax [= =] is reserved for future extensions, %s: Eval-group in
5390 insecure regular expression, %s: Eval-group not allowed, use re 'eval', %s:
5391 Eval-group not allowed at run time, Explicit blessing to '' (assuming
5392 package main), Illegal hex digit ignored, No such array field, No such
5393 field "%s" in variable %s of type %s, Out of memory during ridiculously
5394 large request, Range iterator outside integer range, Recursive inheritance
5395 detected while looking for method '%s' %s, Reference found where even-sized
5396 list expected, Undefined value assigned to typeglob, Use of reserved word
5397 "%s" is deprecated, perl: warning: Setting locale failed
5398
5399 =item Obsolete Diagnostics
5400
5401 Can't mktemp(), Can't write to temp file for B<-e>: %s, Cannot open
5402 temporary file, regexp too big
5403
5404 =item Configuration Changes
5405
5406 =item BUGS
5407
5408 =item SEE ALSO
5409
5410 =item HISTORY
5411
5412 =back
5413
5414 =head2 perl5004delta, perldelta - what's new for perl5.004
5415
5416 =over 4
5417
5418 =item DESCRIPTION
5419
5420 =item Supported Environments
5421
5422 =item Core Changes
5423
5424 =over 4
5425
5426 =item List assignment to %ENV works
5427
5428 =item Change to "Can't locate Foo.pm in @INC" error
5429
5430 =item Compilation option: Binary compatibility with 5.003
5431
5432 =item $PERL5OPT environment variable
5433
5434 =item Limitations on B<-M>, B<-m>, and B<-T> options
5435
5436 =item More precise warnings
5437
5438 =item Deprecated: Inherited C<AUTOLOAD> for non-methods
5439
5440 =item Previously deprecated %OVERLOAD is no longer usable
5441
5442 =item Subroutine arguments created only when they're modified
5443
5444 =item Group vector changeable with C<$)>
5445
5446 =item Fixed parsing of $$<digit>, &$<digit>, etc.
5447
5448 =item Fixed localization of $<digit>, $&, etc.
5449
5450 =item No resetting of $. on implicit close
5451
5452 =item C<wantarray> may return undef
5453
5454 =item C<eval EXPR> determines value of EXPR in scalar context
5455
5456 =item Changes to tainting checks
5457
5458 No glob() or <*>, No spawning if tainted $CDPATH, $ENV, $BASH_ENV, No
5459 spawning if tainted $TERM doesn't look like a terminal name
5460
5461 =item New Opcode module and revised Safe module
5462
5463 =item Embedding improvements
5464
5465 =item Internal change: FileHandle class based on IO::* classes
5466
5467 =item Internal change: PerlIO abstraction interface
5468
5469 =item New and changed syntax
5470
5471 $coderef->(PARAMS)
5472
5473 =item New and changed builtin constants
5474
5475 __PACKAGE__
5476
5477 =item New and changed builtin variables
5478
5479 $^E, $^H, $^M
5480
5481 =item New and changed builtin functions
5482
5483 delete on slices, flock, printf and sprintf, keys as an lvalue, my() in
5484 Control Structures, pack() and unpack(), sysseek(), use VERSION, use Module
5485 VERSION LIST, prototype(FUNCTION), srand, $_ as Default, C<m//gc> does not
5486 reset search position on failure, C<m//x> ignores whitespace before ?*+{},
5487 nested C<sub{}> closures work now, formats work right on changing lexicals
5488
5489 =item New builtin methods
5490
5491 isa(CLASS), can(METHOD), VERSION( [NEED] )
5492
5493 =item TIEHANDLE now supported
5494
5495 TIEHANDLE classname, LIST, PRINT this, LIST, PRINTF this, LIST, READ this
5496 LIST, READLINE this, GETC this, DESTROY this
5497
5498 =item Malloc enhancements
5499
5500 -DPERL_EMERGENCY_SBRK, -DPACK_MALLOC, -DTWO_POT_OPTIMIZE
5501
5502 =item Miscellaneous efficiency enhancements
5503
5504 =back
5505
5506 =item Support for More Operating Systems
5507
5508 =over 4
5509
5510 =item Win32
5511
5512 =item Plan 9
5513
5514 =item QNX
5515
5516 =item AmigaOS
5517
5518 =back
5519
5520 =item Pragmata
5521
5522 use autouse MODULE => qw(sub1 sub2 sub3), use blib, use blib 'dir', use
5523 constant NAME => VALUE, use locale, use ops, use vmsish
5524
5525 =item Modules
5526
5527 =over 4
5528
5529 =item Required Updates
5530
5531 =item Installation directories
5532
5533 =item Module information summary
5534
5535 =item Fcntl
5536
5537 =item IO
5538
5539 =item Math::Complex
5540
5541 =item Math::Trig
5542
5543 =item DB_File
5544
5545 =item Net::Ping
5546
5547 =item Object-oriented overrides for builtin operators
5548
5549 =back
5550
5551 =item Utility Changes
5552
5553 =over 4
5554
5555 =item pod2html
5556
5557 Sends converted HTML to standard output
5558
5559 =item xsubpp
5560
5561 C<void> XSUBs now default to returning nothing
5562
5563 =back
5564
5565 =item C Language API Changes
5566
5567 C<gv_fetchmethod> and C<perl_call_sv>, C<perl_eval_pv>, Extended API for
5568 manipulating hashes
5569
5570 =item Documentation Changes
5571
5572 L<perldelta>, L<perlfaq>, L<perllocale>, L<perltoot>, L<perlapio>,
5573 L<perlmodlib>, L<perldebug>, L<perlsec>
5574
5575 =item New Diagnostics
5576
5577 "my" variable %s masks earlier declaration in same scope, %s argument is
5578 not a HASH element or slice, Allocation too large: %lx, Allocation too
5579 large, Applying %s to %s will act on scalar(%s), Attempt to free
5580 nonexistent shared string, Attempt to use reference as lvalue in substr,
5581 Bareword "%s" refers to nonexistent package, Can't redefine active sort
5582 subroutine %s, Can't use bareword ("%s") as %s ref while "strict refs" in
5583 use, Cannot resolve method `%s' overloading `%s' in package `%s', Constant
5584 subroutine %s redefined, Constant subroutine %s undefined, Copy method did
5585 not return a reference, Died, Exiting pseudo-block via %s, Identifier too
5586 long, Illegal character %s (carriage return), Illegal switch in PERL5OPT:
5587 %s, Integer overflow in hex number, Integer overflow in octal number,
5588 internal error: glob failed, Invalid conversion in %s: "%s", Invalid type
5589 in pack: '%s', Invalid type in unpack: '%s', Name "%s::%s" used only once:
5590 possible typo, Null picture in formline, Offset outside string, Out of
5591 memory!, Out of memory during request for %s, panic: frexp, Possible
5592 attempt to put comments in qw() list, Possible attempt to separate words
5593 with commas, Scalar value @%s{%s} better written as $%s{%s}, Stub found
5594 while resolving method `%s' overloading `%s' in %s, Too late for "B<-T>"
5595 option, untie attempted while %d inner references still exist, Unrecognized
5596 character %s, Unsupported function fork, Use of "$$<digit>" to mean
5597 "${$}<digit>" is deprecated, Value of %s can be "0"; test with defined(),
5598 Variable "%s" may be unavailable, Variable "%s" will not stay shared,
5599 Warning: something's wrong, Ill-formed logical name |%s| in prime_env_iter,
5600 Got an error from DosAllocMem, Malformed PERLLIB_PREFIX, PERL_SH_DIR too
5601 long, Process terminated by SIG%s
5602
5603 =item BUGS
5604
5605 =item SEE ALSO
5606
5607 =item HISTORY
5608
5609 =back
5610
5611 =head2 perlaix, README.aix - Perl version 5 on IBM Unix (AIX) systems
5612
5613 =over 4
5614
5615 =item DESCRIPTION
5616
5617 =over 4
5618
5619 =item Compiling Perl 5 on AIX
5620
5621 =item OS level
5622
5623 =item Building Dynamic Extensions on AIX
5624
5625 =item The IBM ANSI C Compiler
5626
5627 =item Using GNU's gcc for building perl
5628
5629 =item Using Large Files with Perl
5630
5631 =item Threaded Perl
5632
5633 =item 64-bit Perl
5634
5635 =item GDBM and Threads
5636
5637 =item NFS filesystems and utime(2)
5638
5639 =back
5640
5641 =item AUTHOR
5642
5643 =item DATE
5644
5645 =back
5646
5647 =head2 perlapollo, README.apollo - Perl version 5 on Apollo DomainOS
5648
5649 =over 4
5650
5651 =item DESCRIPTION
5652
5653 =item AUTHOR
5654
5655 =back
5656
5657 =head2 perlamiga - Perl under Amiga OS
5658
5659 =over 4
5660
5661 =item SYNOPSIS
5662
5663 =back
5664
5665 =over 4
5666
5667 =item DESCRIPTION
5668
5669 =over 4
5670
5671 =item Prerequisites for Compiling Perl on AmigaOS
5672
5673 B<Unix emulation for AmigaOS: ixemul.library>, B<Version of Amiga OS>
5674
5675 =item Starting Perl programs under AmigaOS
5676
5677 =item Shortcomings of Perl under AmigaOS
5678
5679 fork(), some features of the UNIX filesystem regarding link count and file
5680 dates, inplace operation (the -i switch) without backup file, umask()
5681 works, but the correct permissions are only set when the file is      
5682 finally close()d
5683
5684 =back
5685
5686 =item INSTALLATION
5687
5688 =item Accessing documentation
5689
5690 =over 4
5691
5692 =item Manpages for Perl on AmigaOS
5693
5694 =item Perl HTML Documentation on AmigaOS
5695
5696 =item Perl GNU Info Files on AmigaOS
5697
5698 =item Perl LaTeX Documentation on AmigaOS
5699
5700 =back
5701
5702 =item BUILDING PERL ON AMIGAOS
5703
5704 =over 4
5705
5706 =item Build Prerequisites for Perl on AmigaOS
5707
5708 =item Getting the Perl Source for AmigaOS
5709
5710 =item Making Perl on AmigaOS
5711
5712 =item Testing Perl on AmigaOS
5713
5714 =item Installing the built Perl on AmigaOS
5715
5716 =back
5717
5718 =item AUTHORS
5719
5720 =item SEE ALSO
5721
5722 =back
5723
5724 =head2 perlbeos, README.beos - Perl version 5 on BeOS
5725
5726 =over 4
5727
5728 =item DESCRIPTION
5729
5730 =over 4
5731
5732 =item General Issues with Perl on BeOS
5733
5734 =item BeOS Release-specific Notes
5735
5736 R4 x86, R4 PPC
5737
5738 =item Contact Information
5739
5740 =back
5741
5742 =back
5743
5744 =head2 perlbs2000, README.BS2000 - building and installing Perl for BS2000.
5745
5746 =over 4
5747
5748 =item SYNOPSIS
5749
5750 =item DESCRIPTION
5751
5752 =over 4
5753
5754 =item gzip on BS2000
5755
5756 =item bison on BS2000
5757
5758 =item Unpacking Perl Distribution on BS2000
5759
5760 =item Compiling Perl on BS2000
5761
5762 =item Testing Perl on BS2000
5763
5764 =item Installing Perl on BS2000
5765
5766 =item Using Perl in the Posix-Shell of BS2000
5767
5768 =item Using Perl in "native" BS2000
5769
5770 =item Floating point anomalies on BS2000
5771
5772 =back
5773
5774 =item AUTHORS
5775
5776 =item SEE ALSO
5777
5778 =over 4
5779
5780 =item Mailing list
5781
5782 =back
5783
5784 =item HISTORY
5785
5786 =back
5787
5788 =head2 perlcygwin, README.cygwin - Perl for Cygwin
5789
5790 =over 4
5791
5792 =item SYNOPSIS
5793
5794 =item PREREQUISITES FOR COMPILING PERL ON CYGWIN
5795
5796 =over 4
5797
5798 =item Cygwin = GNU+Cygnus+Windows (Don't leave UNIX without it)
5799
5800 =item Cygwin Configuration
5801
5802 C<PATH>, I<nroff>, Permissions
5803
5804 =back
5805
5806 =item CONFIGURE PERL ON CYGWIN
5807
5808 =over 4
5809
5810 =item Stripping Perl Binaries on Cygwin
5811
5812 =item Optional Libraries for Perl on Cygwin
5813
5814 C<-lcrypt>, C<-lgdbm> (C<use GDBM_File>), C<-ldb> (C<use DB_File>),
5815 C<-lcygipc> (C<use IPC::SysV>)
5816
5817 =item Configure-time Options for Perl on Cygwin
5818
5819 C<-Uusedl>, C<-Uusemymalloc>, C<-Dusemultiplicity>, C<-Duseperlio>,
5820 C<-Duse64bitint>, C<-Duselongdouble>, C<-Dusethreads>, C<-Duselargefiles>
5821
5822 =item Suspicious Warnings on Cygwin
5823
5824 I<dlsym()>, Win9x and C<d_eofnblk>, Compiler/Preprocessor defines
5825
5826 =back
5827
5828 =item MAKE ON CYGWIN
5829
5830 =over 4
5831
5832 =item Warnings on Cygwin
5833
5834 =item ld2 on Cygwin
5835
5836 =back
5837
5838 =item TEST ON CYGWIN
5839
5840 =over 4
5841
5842 =item File Permissions on Cygwin
5843
5844 =item Hard Links on Cygwin
5845
5846 =item Filetime Granularity on Cygwin
5847
5848 =item Tainting Checks on Cygwin
5849
5850 =item /etc/group on Cygwin
5851
5852 =item Script Portability on Cygwin
5853
5854 Pathnames, Text/Binary, F<.exe>, chown(), Miscellaneous
5855
5856 =back
5857
5858 =item INSTALL PERL ON CYGWIN
5859
5860 =item MANIFEST ON CYGWIN
5861
5862 Documentation, Build, Configure, Make, Install, Tests, Compiled Perl
5863 Source, Compiled Module Source, Perl Modules/Scripts
5864
5865 =item BUGS ON CYGWIN
5866
5867 =item AUTHORS
5868
5869 =item HISTORY
5870
5871 =back
5872
5873 =head2 perldgux - Perl under DG/UX.
5874
5875 =over 4
5876
5877 =item SYNOPSIS
5878
5879 =back
5880
5881 =over 4
5882
5883 =item DESCRIPTION
5884
5885 =item BUILDING PERL ON DG/UX
5886
5887 =over 4
5888
5889 =item Non-threaded Perl on DG/UX
5890
5891 =item Threaded Perl on DG/UX
5892
5893 =item Testing Perl on DG/UX
5894
5895 =item Installing the built perl on DG/UX
5896
5897 =back
5898
5899 =item AUTHOR
5900
5901 =item SEE ALSO
5902
5903 =back
5904
5905 =head2 perlepoc, README.epoc - Perl for EPOC
5906
5907 =over 4
5908
5909 =item SYNOPSIS
5910
5911 =item INTRODUCTION
5912
5913 =item INSTALLING PERL ON EPOC
5914
5915 =item STARTING PERL ON EPOC
5916
5917 =item STOPPING PERL ON EPOC
5918
5919 =item USING PERL ON EPOC
5920
5921 =over 4
5922
5923 =item I/O Redirection on Epoc
5924
5925 =item PATH Names on Epoc
5926
5927 =item Editors on Epoc
5928
5929 =item Features of Perl on Epoc
5930
5931 =item Restrictions of Perl on Epoc
5932
5933 =item Compiling Perl 5 on the EPOC cross compiling environment
5934
5935 =back
5936
5937 =item SUPPORT STATUS OF PERL ON EPOC
5938
5939 =item AUTHOR
5940
5941 =item LAST UPDATE
5942
5943 =back
5944
5945 =head2 perlhpux, README.hpux - Perl version 5 on Hewlett-Packard Unix
5946 (HP-UX) systems
5947
5948 =over 4
5949
5950 =item DESCRIPTION
5951
5952 =over 4
5953
5954 =item Compiling Perl 5 on HP-UX
5955
5956 =item PA-RISC
5957
5958 =item PA-RISC 1.0
5959
5960 =item PA-RISC 1.1
5961
5962 =item PA-RISC 2.0
5963
5964 =item Portability Between PA-RISC Versions
5965
5966 =item Itanium Processor Family and HP-UX
5967
5968 =item Building Dynamic Extensions on HP-UX
5969
5970 =item The HP ANSI C Compiler
5971
5972 =item Using Large Files with Perl on HP-UX
5973
5974 =item Threaded Perl on HP-UX
5975
5976 =item 64-bit Perl on HP-UX
5977
5978 =item GDBM and Threads on HP-UX
5979
5980 =item NFS filesystems and utime(2) on HP-UX
5981
5982 =item perl -P and // and HP-UX
5983
5984 =item HP-UX Kernel Parameters (maxdsiz) for Compiling Perl
5985
5986 =back
5987
5988 =item AUTHOR
5989
5990 =item DATE
5991
5992 =back
5993
5994 =head2 perlhurd, README.hurd - Perl version 5 on Hurd
5995
5996 =over 4
5997
5998 =item DESCRIPTION
5999
6000 =over 4
6001
6002 =item Known Problems with Perl on Hurd 
6003
6004 =back
6005
6006 =item AUTHOR
6007
6008 =back
6009
6010 =head2 perlmachten, README.machten - Perl version 5 on Power MachTen
6011 systems
6012
6013 =over 4
6014
6015 =item DESCRIPTION
6016
6017 =over 4
6018
6019 =item Compiling Perl 5 on MachTen
6020
6021 =item Failures during C<make test> on MachTen
6022
6023 op/lexassign.t, pragma/warnings.t
6024
6025 =item Building external modules on MachTen
6026
6027 =back
6028
6029 =item AUTHOR
6030
6031 =item DATE
6032
6033 =back
6034
6035 =head2 perlmacos, README.macos - Perl under Mac OS (Classic)
6036
6037 =over 4
6038
6039 =item SYNOPSIS
6040
6041 =item DESCRIPTION
6042
6043 =item AUTHOR
6044
6045 =item DATE
6046
6047 =back
6048
6049 =head2 perlmint, README.mint - Perl version 5 on Atari MiNT
6050
6051 =over 4
6052
6053 =item DESCRIPTION
6054
6055 =item Known problems with Perl on MiNT
6056
6057 =item AUTHOR
6058
6059 =back
6060
6061 =head2 perlmpeix, README.mpeix - Perl/iX for HP e3000 MPE
6062
6063 =over 4
6064
6065 =item SYNOPSIS
6066
6067 =item NOTE
6068
6069 =item What's New in Perl ffor MPE/iX
6070
6071 =item Welcome to Perl/iX
6072
6073 =item System Requirements for Perl/iX
6074
6075 =item How to Obtain Perl/iX
6076
6077 =item Perl/iX Distribution Contents Highlights
6078
6079 README, INSTALL, LIBSHP3K, PERL, .cpan/, lib/, man/,
6080 public_html/feedback.cgi, src/perl-5.6.0-mpe
6081
6082 =item How to Compile Perl/iX
6083
6084  4,  6
6085
6086 =item Getting Started with Perl/iX
6087
6088 =item MPE/iX Implementation Considerations
6089
6090 =item Known Perl/iX Bugs Under Investigation
6091
6092 =item Perl/iX To-Do List
6093
6094 =item Perl/iX Change History
6095
6096 =item AUTHOR
6097
6098 =back
6099
6100 =head2 perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
6101
6102 =over 4
6103
6104 =item SYNOPSIS
6105
6106 =back
6107
6108 =over 4
6109
6110 =item DESCRIPTION
6111
6112 =over 4
6113
6114 =item Target
6115
6116 =item Other OSes
6117
6118 =item Prerequisites
6119
6120 EMX, RSX, HPFS, pdksh
6121
6122 =item Starting Perl programs under OS/2 (and DOS and...)
6123
6124 =item Starting OS/2 (and DOS) programs under Perl
6125
6126 =back
6127
6128 =item Frequently asked questions
6129
6130 =over 4
6131
6132 =item "It does not work"
6133
6134 =item I cannot run external programs
6135
6136 =item I cannot embed perl into my program, or use F<perl.dll> from my
6137 program. 
6138
6139 Is your program EMX-compiled with C<-Zmt -Zcrtdll>?, Did you use
6140 L<ExtUtils::Embed>?
6141
6142 =item C<``> and pipe-C<open> do not work under DOS.
6143
6144 =item Cannot start C<find.exe "pattern" file>
6145
6146 =back
6147
6148 =item INSTALLATION
6149
6150 =over 4
6151
6152 =item Automatic binary installation
6153
6154 C<PERL_BADLANG>, C<PERL_BADFREE>, F<Config.pm>
6155
6156 =item Manual binary installation
6157
6158 Perl VIO and PM executables (dynamically linked), Perl_ VIO executable
6159 (statically linked), Executables for Perl utilities, Main Perl library,
6160 Additional Perl modules, Tools to compile Perl modules, Manpages for Perl
6161 and utilities, Manpages for Perl modules, Source for Perl documentation,
6162 Perl manual in F<.INF> format, Pdksh
6163
6164 =item B<Warning>
6165
6166 =back
6167
6168 =item Accessing documentation
6169
6170 =over 4
6171
6172 =item OS/2 F<.INF> file
6173
6174 =item Plain text
6175
6176 =item Manpages
6177
6178 =item HTML
6179
6180 =item GNU C<info> files
6181
6182 =item F<.PDF> files
6183
6184 =item C<LaTeX> docs
6185
6186 =back
6187
6188 =item BUILD
6189
6190 =over 4
6191
6192 =item The short story
6193
6194 =item Prerequisites
6195
6196 =item Getting perl source
6197
6198 =item Application of the patches
6199
6200 =item Hand-editing
6201
6202 =item Making
6203
6204 =item Testing
6205
6206 A lot of C<bad free>, Process terminated by SIGTERM/SIGINT, F<op/fs.t>,
6207 F<op/stat.t>
6208
6209 =item Installing the built perl
6210
6211 =item C<a.out>-style build
6212
6213 =back
6214
6215 =item Build FAQ
6216
6217 =over 4
6218
6219 =item Some C</> became C<\> in pdksh.
6220
6221 =item C<'errno'> - unresolved external
6222
6223 =item Problems with tr or sed
6224
6225 =item Some problem (forget which ;-)
6226
6227 =item Library ... not found
6228
6229 =item Segfault in make
6230
6231 =item op/sprintf test failure
6232
6233 =back
6234
6235 =item Specific (mis)features of OS/2 port
6236
6237 =over 4
6238
6239 =item C<setpriority>, C<getpriority>
6240
6241 =item C<system()>
6242
6243 =item C<extproc> on the first line
6244
6245 =item Additional modules:
6246
6247 =item Prebuilt methods:
6248
6249 C<File::Copy::syscopy>, C<DynaLoader::mod2fname>,  C<Cwd::current_drive()>,
6250  C<Cwd::sys_chdir(name)>,  C<Cwd::change_drive(name)>, 
6251 C<Cwd::sys_is_absolute(name)>,  C<Cwd::sys_is_rooted(name)>, 
6252 C<Cwd::sys_is_relative(name)>,  C<Cwd::sys_cwd(name)>, 
6253 C<Cwd::sys_abspath(name, dir)>,  C<Cwd::extLibpath([type])>, 
6254 C<Cwd::extLibpath_set( path [, type ] )>,
6255 C<OS2::Error(do_harderror,do_exception)>, C<OS2::Errors2Drive(drive)>,
6256 OS2::SysInfo(), OS2::BootDrive(), C<OS2::MorphPM(serve)>,
6257 C<OS2::UnMorphPM(serve)>, C<OS2::Serve_Messages(force)>,
6258 C<OS2::Process_Messages(force [, cnt])>, C<OS2::_control87(new,mask)>,
6259 OS2::get_control87(), C<OS2::set_control87_em(new=MCW_EM,mask=MCW_EM)>
6260
6261 =item Prebuilt variables:
6262
6263 $OS2::emx_rev, $OS2::emx_env, $OS2::os_ver
6264
6265 =item Misfeatures
6266
6267 =item Modifications
6268
6269 C<popen>, C<tmpnam>, C<tmpfile>, C<ctermid>, C<stat>, C<mkdir>, C<rmdir>,
6270 C<flock>
6271
6272 =item Identifying DLLs
6273
6274 =item Centralized management of resources
6275
6276 C<HAB>, C<HMQ>
6277
6278 =back
6279
6280 =item Perl flavors
6281
6282 =over 4
6283
6284 =item F<perl.exe>
6285
6286 =item F<perl_.exe>
6287
6288 =item F<perl__.exe>
6289
6290 =item F<perl___.exe>
6291
6292 =item Why strange names?
6293
6294 =item Why dynamic linking?
6295
6296 =item Why chimera build?
6297
6298 =back
6299
6300 =item ENVIRONMENT
6301
6302 =over 4
6303
6304 =item C<PERLLIB_PREFIX>
6305
6306 =item C<PERL_BADLANG>
6307
6308 =item C<PERL_BADFREE>
6309
6310 =item C<PERL_SH_DIR>
6311
6312 =item C<USE_PERL_FLOCK>
6313
6314 =item C<TMP> or C<TEMP>
6315
6316 =back
6317
6318 =item Evolution
6319
6320 =over 4
6321
6322 =item Priorities
6323
6324 =item DLL name mangling
6325
6326 =item Threading
6327
6328 =item Calls to external programs
6329
6330 =item Memory allocation
6331
6332 =item Threads
6333
6334 C<COND_WAIT>, F<os2.c>
6335
6336 =back
6337
6338 =back
6339
6340 =over 4
6341
6342 =item AUTHOR
6343
6344 =item SEE ALSO
6345
6346 =back
6347
6348 =head2 perlos390, README.os390 - building and installing Perl for OS/390.
6349
6350 =over 4
6351
6352 =item SYNOPSIS
6353
6354 =item DESCRIPTION
6355
6356 =over 4
6357
6358 =item Unpacking Perl distribution on OS/390
6359
6360 =item Setup and utilities for Perl on OS/390
6361
6362 =item Configure Perl on OS/390
6363
6364 =item Build, Test, Install Perl on OS/390
6365
6366 =item Build Anomalies with Perl on OS/390
6367
6368 =item Testing Anomalies with Perl on OS/390
6369
6370 =item Installation Anomalies with Perl on OS/390
6371
6372 =item Usage Hints for Perl on OS/390
6373
6374 =item Floating Point Anomalies with Perl on OS/390
6375
6376 =item Modules and Extensions for Perl on OS/390
6377
6378 =back
6379
6380 =item AUTHORS
6381
6382 =item SEE ALSO
6383
6384 =over 4
6385
6386 =item Mailing list for Perl on OS/390
6387
6388 =back
6389
6390 =item HISTORY
6391
6392 =back
6393
6394 =head2 perlqnx, README.qnx - Perl version 5 on QNX
6395
6396 =over 4
6397
6398 =item DESCRIPTION
6399
6400 =over 4
6401
6402 =item Required Software for Compiling Perl on QNX
6403
6404 /bin/sh, ar, nm, cpp, make
6405
6406 =item Outstanding Issues with Perl on QNX
6407
6408 =item QNX auxiliary files
6409
6410 qnx/ar, qnx/cpp
6411
6412 =back
6413
6414 =item AUTHOR
6415
6416 =back
6417
6418 =head2 perlplan9 - Plan 9-specific documentation for Perl
6419
6420 =over 4
6421
6422 =item DESCRIPTION
6423
6424 =over 4
6425
6426 =item Invoking Perl
6427
6428 =item What's in Plan 9 Perl
6429
6430 =item What's not in Plan 9 Perl
6431
6432 =item Perl5 Functions not currently supported in Plan 9 Perl
6433
6434 =item Signals in Plan 9 Perl
6435
6436 =back
6437
6438 =item COMPILING AND INSTALLING PERL ON PLAN 9
6439
6440 =over 4
6441
6442 =item Installing Perl Documentation on Plan 9
6443
6444 =back
6445
6446 =item BUGS
6447
6448 =item Revision date
6449
6450 =item AUTHOR
6451
6452 =back
6453
6454 =head2 perlsolaris, README.solaris - Perl version 5 on Solaris systems
6455
6456 =over 4
6457
6458 =item DESCRIPTION
6459
6460 =over 4
6461
6462 =item Solaris Version Numbers.
6463
6464 =back
6465
6466 =item RESOURCES
6467
6468 Solaris FAQ, Precompiled Binaries, Solaris Documentation
6469
6470 =item SETTING UP
6471
6472 =over 4
6473
6474 =item File Extraction Problems on Solaris.
6475
6476 =item Compiler and Related Tools on Solaris.
6477
6478 =item Environment for Compiling Perl on Solaris
6479
6480 =back
6481
6482 =item RUN CONFIGURE.
6483
6484 =over 4
6485
6486 =item 64-bit Issues with Perl on Solaris.
6487
6488 =item Threads in Perl on Solaris.
6489
6490 =item Malloc Issues with Perl on Solaris.
6491
6492 =back
6493
6494 =item MAKE PROBLEMS.
6495
6496 Dynamic Loading Problems With GNU as and GNU ld, ld.so.1: ./perl: fatal:
6497 relocation error:, dlopen: stub interception failed, #error "No
6498 DATAMODEL_NATIVE specified", sh: ar: not found
6499
6500 =item MAKE TEST
6501
6502 =over 4
6503
6504 =item op/stat.t test 4 in Solaris
6505
6506 =back
6507
6508 =item PREBUILT BINARIES OF PERL FOR SOLARIS.
6509
6510 =item RUNTIME ISSUES FOR PERL ON SOLARIS.
6511
6512 =over 4
6513
6514 =item Limits on Numbers of Open Files on Solaris.
6515
6516 =back
6517
6518 =item SOLARIS-SPECIFIC MODULES.
6519
6520 =item SOLARIS-SPECIFIC PROBLEMS WITH MODULES.
6521
6522 =over 4
6523
6524 =item Proc::ProcessTable on Solaris
6525
6526 =item BSD::Resource on Solairs
6527
6528 =item Net::SSLeay on Soalris
6529
6530 =back
6531
6532 =item AUTHOR
6533
6534 =item LAST MODIFIED
6535
6536 =back
6537
6538 =head2 perltru64, README.tru64 - Perl version 5 on Tru64 (formerly known as
6539 Digital UNIX formerly known as DEC OSF/1) systems
6540
6541 =over 4
6542
6543 =item DESCRIPTION
6544
6545 =over 4
6546
6547 =item Compiling Perl 5 on Tru64
6548
6549 =item Using Large Files with Perl on Tru64
6550
6551 =item Threaded Perl on Tru64
6552
6553 =item Long Doubles on Tru64
6554
6555 =item 64-bit Perl on Tru64
6556
6557 =item Warnings about floating-point overflow when compiling Perl on Tru64
6558
6559 =back
6560
6561 =item Testing Perl on Tru64
6562
6563 =item AUTHOR
6564
6565 =back
6566
6567 =head2 perlvmesa, README.vmesa - building and installing Perl for VM/ESA.
6568
6569 =over 4
6570
6571 =item SYNOPSIS
6572
6573 =item DESCRIPTION
6574
6575 =over 4
6576
6577 =item Unpacking Perl Distribution on VM/ESA
6578
6579 =item Setup Perl and utilities on VM/ESA
6580
6581 =item Configure Perl on VM/ESA
6582
6583 =item Testing Anomalies of Perl on VM/ESA
6584
6585 =item Usage Hints for Perl on VM/ESA
6586
6587 =back
6588
6589 =item AUTHORS
6590
6591 =item SEE ALSO
6592
6593 =over 4
6594
6595 =item Mailing list for Perl on VM/ESA
6596
6597 =back
6598
6599 =back
6600
6601 =head2 perlvms - VMS-specific documentation for Perl
6602
6603 =over 4
6604
6605 =item DESCRIPTION
6606
6607 =item Installation
6608
6609 =item Organization of Perl Images
6610
6611 =over 4
6612
6613 =item Core Images
6614
6615 =item Perl Extensions
6616
6617 =item Installing static extensions
6618
6619 =item Installing dynamic extensions
6620
6621 =back
6622
6623 =item File specifications
6624
6625 =over 4
6626
6627 =item Syntax
6628
6629 =item Wildcard expansion
6630
6631 =item Pipes
6632
6633 =back
6634
6635 =item PERL5LIB and PERLLIB
6636
6637 =item Command line
6638
6639 =over 4
6640
6641 =item I/O redirection and backgrounding
6642
6643 =item Command line switches
6644
6645 -i, -S, -u
6646
6647 =back
6648
6649 =item Perl functions
6650
6651 File tests, backticks, binmode FILEHANDLE, crypt PLAINTEXT, USER, dump,
6652 exec LIST, fork, getpwent, getpwnam, getpwuid, gmtime, kill, qx//, select
6653 (system call), stat EXPR, system LIST, time, times, unlink LIST, utime
6654 LIST, waitpid PID,FLAGS
6655
6656 =item Perl variables
6657
6658 %ENV, CRTL_ENV, CLISYM_[LOCAL], Any other string, $!, $^E, $?, $^S, $|
6659
6660 =item Standard modules with VMS-specific differences
6661
6662 =over 4
6663
6664 =item SDBM_File
6665
6666 =back
6667
6668 =item Revision date
6669
6670 =item AUTHOR
6671
6672 =back
6673
6674 =head2 perlvos, README.vos - Perl for Stratus VOS
6675
6676 =over 4
6677
6678 =item SYNOPSIS
6679
6680 =over 4
6681
6682 =item Stratus POSIX Support
6683
6684 =back
6685
6686 =item INSTALLING PERL IN VOS
6687
6688 =over 4
6689
6690 =item Compiling Perl 5 on VOS
6691
6692 =item Installing Perl 5 on VOS
6693
6694 =back
6695
6696 =item USING PERL IN VOS
6697
6698 =over 4
6699
6700 =item Unimplemented Features of Perl on VOS
6701
6702 =item Restrictions of Perl on VOS
6703
6704 =back
6705
6706 =item SUPPORT STATUS
6707
6708 =item AUTHOR
6709
6710 =item LAST UPDATE
6711
6712 =back
6713
6714 =head1 PRAGMA DOCUMENTATION
6715
6716 =head2 attrs - set/get attributes of a subroutine (deprecated)
6717
6718 =over 4
6719
6720 =item SYNOPSIS
6721
6722 =item DESCRIPTION
6723
6724 method, locked
6725
6726 =back
6727
6728 =head2 re - Perl pragma to alter regular expression behaviour
6729
6730 =over 4
6731
6732 =item SYNOPSIS
6733
6734 =item DESCRIPTION
6735
6736 =back
6737
6738 =head2 attributes - get/set subroutine or variable attributes
6739
6740 =over 4
6741
6742 =item SYNOPSIS
6743
6744 =item DESCRIPTION
6745
6746 =over 4
6747
6748 =item Built-in Attributes
6749
6750 locked, method, lvalue
6751
6752 =item Available Subroutines
6753
6754 get, reftype
6755
6756 =item Package-specific Attribute Handling
6757
6758 FETCH_I<type>_ATTRIBUTES, MODIFY_I<type>_ATTRIBUTES
6759
6760 =item Syntax of Attribute Lists
6761
6762 =back
6763
6764 =item EXPORTS
6765
6766 =over 4
6767
6768 =item Default exports
6769
6770 =item Available exports
6771
6772 =item Export tags defined
6773
6774 =back
6775
6776 =item EXAMPLES
6777
6778 =item SEE ALSO
6779
6780 =back
6781
6782 =head2 attrs - set/get attributes of a subroutine (deprecated)
6783
6784 =over 4
6785
6786 =item SYNOPSIS
6787
6788 =item DESCRIPTION
6789
6790 method, locked
6791
6792 =back
6793
6794 =head2 autouse - postpone load of modules until a function is used
6795
6796 =over 4
6797
6798 =item SYNOPSIS
6799
6800 =item DESCRIPTION
6801
6802 =item WARNING
6803
6804 =item AUTHOR
6805
6806 =item SEE ALSO
6807
6808 =back
6809
6810 =head2 base - Establish IS-A relationship with base class at compile time
6811
6812 =over 4
6813
6814 =item SYNOPSIS
6815
6816 =item DESCRIPTION
6817
6818 =item HISTORY
6819
6820 =item SEE ALSO
6821
6822 =back
6823
6824 =head2 blib - Use MakeMaker's uninstalled version of a package
6825
6826 =over 4
6827
6828 =item SYNOPSIS
6829
6830 =item DESCRIPTION
6831
6832 =item BUGS
6833
6834 =item AUTHOR
6835
6836 =back
6837
6838 =head2 bytes - Perl pragma to force byte semantics rather than character
6839 semantics
6840
6841 =over 4
6842
6843 =item SYNOPSIS
6844
6845 =item DESCRIPTION
6846
6847 =item SEE ALSO
6848
6849 =back
6850
6851 =head2 charnames - define character names for C<\N{named}> string literal
6852 escape.
6853
6854 =over 4
6855
6856 =item SYNOPSIS
6857
6858 =item DESCRIPTION
6859
6860 =item CUSTOM TRANSLATORS
6861
6862 =item BUGS
6863
6864 =back
6865
6866 =head2 constant - Perl pragma to declare constants
6867
6868 =over 4
6869
6870 =item SYNOPSIS
6871
6872 =item DESCRIPTION
6873
6874 =item NOTES
6875
6876 =item TECHNICAL NOTE
6877
6878 =item BUGS
6879
6880 =item AUTHOR
6881
6882 =item COPYRIGHT
6883
6884 =back
6885
6886 =head2 diagnostics - Perl compiler pragma to force verbose warning
6887 diagnostics
6888
6889 =over 4
6890
6891 =item SYNOPSIS
6892
6893 =item DESCRIPTION
6894
6895 =over 4
6896
6897 =item The C<diagnostics> Pragma
6898
6899 =item The I<splain> Program
6900
6901 =back
6902
6903 =item EXAMPLES
6904
6905 =item INTERNALS
6906
6907 =item BUGS
6908
6909 =item AUTHOR
6910
6911 =back
6912
6913 =head2 fields - compile-time class fields
6914
6915 =over 4
6916
6917 =item SYNOPSIS
6918
6919 =item DESCRIPTION
6920
6921 new, phash
6922
6923 =item SEE ALSO
6924
6925 =back
6926
6927 =head2 filetest - Perl pragma to control the filetest permission operators
6928
6929 =over 4
6930
6931 =item SYNOPSIS
6932
6933 =item DESCRIPTION
6934
6935 =over 4
6936
6937 =item subpragma access
6938
6939 =back
6940
6941 =back
6942
6943 =head2 integer - Perl pragma to use integer arithmetic instead of floating
6944 point
6945
6946 =over 4
6947
6948 =item SYNOPSIS
6949
6950 =item DESCRIPTION
6951
6952 =back
6953
6954 =head2 less - perl pragma to request less of something from the compiler
6955
6956 =over 4
6957
6958 =item SYNOPSIS
6959
6960 =item DESCRIPTION
6961
6962 =back
6963
6964 =head2 lib - manipulate @INC at compile time
6965
6966 =over 4
6967
6968 =item SYNOPSIS
6969
6970 =item DESCRIPTION
6971
6972 =over 4
6973
6974 =item Adding directories to @INC
6975
6976 =item Deleting directories from @INC
6977
6978 =item Restoring original @INC
6979
6980 =back
6981
6982 =item SEE ALSO
6983
6984 =item AUTHOR
6985
6986 =back
6987
6988 =head2 locale - Perl pragma to use and avoid POSIX locales for built-in
6989 operations
6990
6991 =over 4
6992
6993 =item SYNOPSIS
6994
6995 =item DESCRIPTION
6996
6997 =back
6998
6999 =head2 open - perl pragma to set default disciplines for input and output
7000
7001 =over 4
7002
7003 =item SYNOPSIS
7004
7005 =item DESCRIPTION
7006
7007 =item NONPERLIO FUNCTIONALITY
7008
7009 =item IMPLEMENTATION DETAILS
7010
7011 =item SEE ALSO
7012
7013 =back
7014
7015 =head2 ops - Perl pragma to restrict unsafe operations when compiling
7016
7017 =over 4
7018
7019 =item SYNOPSIS  
7020
7021 =item DESCRIPTION
7022
7023 =item SEE ALSO
7024
7025 =back
7026
7027 =head2 overload - Package for overloading perl operations
7028
7029 =over 4
7030
7031 =item SYNOPSIS
7032
7033 =item DESCRIPTION
7034
7035 =over 4
7036
7037 =item Declaration of overloaded functions
7038
7039 =item Calling Conventions for Binary Operations
7040
7041 FALSE, TRUE, C<undef>
7042
7043 =item Calling Conventions for Unary Operations
7044
7045 =item Calling Conventions for Mutators
7046
7047 C<++> and C<-->, C<x=> and other assignment versions
7048
7049 =item Overloadable Operations
7050
7051 I<Arithmetic operations>, I<Comparison operations>, I<Bit operations>,
7052 I<Increment and decrement>, I<Transcendental functions>, I<Boolean, string
7053 and numeric conversion>, I<Iteration>, I<Dereferencing>, I<Special>
7054
7055 =item Inheritance and overloading
7056
7057 Strings as values of C<use overload> directive, Overloading of an operation
7058 is inherited by derived classes
7059
7060 =back
7061
7062 =item SPECIAL SYMBOLS FOR C<use overload>
7063
7064 =over 4
7065
7066 =item Last Resort
7067
7068 =item Fallback
7069
7070 C<undef>, TRUE, defined, but FALSE
7071
7072 =item Copy Constructor
7073
7074 B<Example>
7075
7076 =back
7077
7078 =item MAGIC AUTOGENERATION
7079
7080 I<Assignment forms of arithmetic operations>, I<Conversion operations>,
7081 I<Increment and decrement>, C<abs($a)>, I<Unary minus>, I<Negation>,
7082 I<Concatenation>, I<Comparison operations>, I<Iterator>, I<Dereferencing>,
7083 I<Copy operator>
7084
7085 =item Losing overloading
7086
7087 =item Run-time Overloading
7088
7089 =item Public functions
7090
7091 overload::StrVal(arg), overload::Overloaded(arg), overload::Method(obj,op)
7092
7093 =item Overloading constants
7094
7095 integer, float, binary, q, qr
7096
7097 =item IMPLEMENTATION
7098
7099 =item Metaphor clash
7100
7101 =item Cookbook
7102
7103 =over 4
7104
7105 =item Two-face scalars
7106
7107 =item Two-face references
7108
7109 =item Symbolic calculator
7110
7111 =item I<Really> symbolic calculator
7112
7113 =back
7114
7115 =item AUTHOR
7116
7117 =item DIAGNOSTICS
7118
7119 Odd number of arguments for overload::constant, `%s' is not an overloadable
7120 type, `%s' is not a code reference
7121
7122 =item BUGS
7123
7124 =back
7125
7126 =head2 re - Perl pragma to alter regular expression behaviour
7127
7128 =over 4
7129
7130 =item SYNOPSIS
7131
7132 =item DESCRIPTION
7133
7134 =back
7135
7136 =head2 sigtrap - Perl pragma to enable simple signal handling
7137
7138 =over 4
7139
7140 =item SYNOPSIS
7141
7142 =item DESCRIPTION
7143
7144 =item OPTIONS
7145
7146 =over 4
7147
7148 =item SIGNAL HANDLERS
7149
7150 B<stack-trace>, B<die>, B<handler> I<your-handler>
7151
7152 =item SIGNAL LISTS
7153
7154 B<normal-signals>, B<error-signals>, B<old-interface-signals>
7155
7156 =item OTHER
7157
7158 B<untrapped>, B<any>, I<signal>, I<number>
7159
7160 =back
7161
7162 =item EXAMPLES
7163
7164 =back
7165
7166 =head2 strict - Perl pragma to restrict unsafe constructs
7167
7168 =over 4
7169
7170 =item SYNOPSIS
7171
7172 =item DESCRIPTION
7173
7174 C<strict refs>, C<strict vars>, C<strict subs>
7175
7176 =back
7177
7178 =head2 subs - Perl pragma to predeclare sub names
7179
7180 =over 4
7181
7182 =item SYNOPSIS
7183
7184 =item DESCRIPTION
7185
7186 =back
7187
7188 =head2 unicode::distinct - Perl pragma to strictly distinguish UTF8 data
7189 and non-UTF data.
7190
7191 =over 4
7192
7193 =item SYNOPSIS
7194
7195 =item DESCRIPTION
7196
7197 =item SEE ALSO
7198
7199 =back
7200
7201 =head2 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source
7202 code
7203
7204 =over 4
7205
7206 =item SYNOPSIS
7207
7208 =item DESCRIPTION
7209
7210 =over 4
7211
7212 =item Utility functions
7213
7214 $num_octets = utf8::upgrade($string);, utf8::downgrade($string[, CHECK]),
7215 utf8::encode($string), $flag = utf8::decode($string)
7216
7217 =back
7218
7219 =item SEE ALSO
7220
7221 =back
7222
7223 =head2 vars - Perl pragma to predeclare global variable names (obsolete)
7224
7225 =over 4
7226
7227 =item SYNOPSIS
7228
7229 =item DESCRIPTION
7230
7231 =back
7232
7233 =head2 warnings - Perl pragma to control optional warnings
7234
7235 =over 4
7236
7237 =item SYNOPSIS
7238
7239 =item DESCRIPTION
7240
7241 use warnings::register, warnings::enabled(), warnings::enabled($category),
7242 warnings::enabled($object), warnings::warn($message),
7243 warnings::warn($category, $message), warnings::warn($object, $message),
7244 warnings::warnif($message), warnings::warnif($category, $message),
7245 warnings::warnif($object, $message)
7246
7247 =back
7248
7249 =head2 warnings::register - warnings import function
7250
7251 =head1 MODULE DOCUMENTATION
7252
7253 =head2 AnyDBM_File - provide framework for multiple DBMs
7254
7255 =over 4
7256
7257 =item SYNOPSIS
7258
7259 =item DESCRIPTION
7260
7261 =over 4
7262
7263 =item DBM Comparisons
7264
7265 [0], [1], [2], [3]
7266
7267 =back
7268
7269 =item SEE ALSO
7270
7271 =back
7272
7273 =head2 Attribute::Handlers - Simpler definition of attribute handlers
7274
7275 =over 4
7276
7277 =item VERSION
7278
7279 =item SYNOPSIS
7280
7281 =item DESCRIPTION
7282
7283 [0], [1], [2], [3], [4]
7284
7285 =over 4
7286
7287 =item Typed lexicals
7288
7289 =item Type-specific attribute handlers
7290
7291 =item Non-interpretive attribute handlers
7292
7293 =item Attributes as C<tie> interfaces
7294
7295 =back
7296
7297 =item EXAMPLES
7298
7299 =item DIAGNOSTICS
7300
7301 C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
7302 attributes>, C<Declaration of %s attribute in package %s may clash with
7303 future reserved word>, C<Internal error: %s symbol went missing>
7304
7305 =item AUTHOR
7306
7307 =item BUGS
7308
7309 =item COPYRIGHT
7310
7311 =back
7312
7313 =head2 AutoLoader - load subroutines only on demand
7314
7315 =over 4
7316
7317 =item SYNOPSIS
7318
7319 =item DESCRIPTION
7320
7321 =over 4
7322
7323 =item Subroutine Stubs
7324
7325 =item Using B<AutoLoader>'s AUTOLOAD Subroutine
7326
7327 =item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
7328
7329 =item Package Lexicals
7330
7331 =item Not Using AutoLoader
7332
7333 =item B<AutoLoader> vs. B<SelfLoader>
7334
7335 =back
7336
7337 =item CAVEATS
7338
7339 =item SEE ALSO
7340
7341 =back
7342
7343 =head2 AutoSplit - split a package for autoloading
7344
7345 =over 4
7346
7347 =item SYNOPSIS
7348
7349 =item DESCRIPTION
7350
7351 $keep, $check, $modtime
7352
7353 =over 4
7354
7355 =item Multiple packages
7356
7357 =back
7358
7359 =item DIAGNOSTICS
7360
7361 =back
7362
7363 =head2 B - The Perl Compiler
7364
7365 =over 4
7366
7367 =item SYNOPSIS
7368
7369 =item DESCRIPTION
7370
7371 =item OVERVIEW OF CLASSES
7372
7373 =over 4
7374
7375 =item SV-RELATED CLASSES
7376
7377 =item B::SV METHODS
7378
7379 REFCNT, FLAGS
7380
7381 =item B::IV METHODS
7382
7383 IV, IVX, UVX, int_value, needs64bits, packiv
7384
7385 =item B::NV METHODS
7386
7387 NV, NVX
7388
7389 =item B::RV METHODS
7390
7391 RV
7392
7393 =item B::PV METHODS
7394
7395 PV, PVX
7396
7397 =item B::PVMG METHODS
7398
7399 MAGIC, SvSTASH
7400
7401 =item B::MAGIC METHODS
7402
7403 MOREMAGIC, PRIVATE, TYPE, FLAGS, OBJ, PTR
7404
7405 =item B::PVLV METHODS
7406
7407 TARGOFF, TARGLEN, TYPE, TARG
7408
7409 =item B::BM METHODS
7410
7411 USEFUL, PREVIOUS, RARE, TABLE
7412
7413 =item B::GV METHODS
7414
7415 is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
7416 LINE, FILE, FILEGV, GvREFCNT, FLAGS
7417
7418 =item B::IO METHODS
7419
7420 LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
7421 BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS
7422
7423 =item B::AV METHODS
7424
7425 FILL, MAX, OFF, ARRAY, AvFLAGS
7426
7427 =item B::CV METHODS
7428
7429 STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, XSUB, XSUBANY,
7430 CvFLAGS, const_sv
7431
7432 =item B::HV METHODS
7433
7434 FILL, MAX, KEYS, RITER, NAME, PMROOT, ARRAY
7435
7436 =item OP-RELATED CLASSES
7437
7438 =item B::OP METHODS
7439
7440 next, sibling, name, ppaddr, desc, targ, type, seq, flags, private
7441
7442 =item B::UNOP METHOD
7443
7444 first
7445
7446 =item B::BINOP METHOD
7447
7448 last
7449
7450 =item B::LOGOP METHOD
7451
7452 other
7453
7454 =item B::LISTOP METHOD
7455
7456 children
7457
7458 =item B::PMOP METHODS
7459
7460 pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, pmpermflags, precomp
7461
7462 =item B::SVOP METHOD
7463
7464 sv, gv
7465
7466 =item B::PADOP METHOD
7467
7468 padix
7469
7470 =item B::PVOP METHOD
7471
7472 pv
7473
7474 =item B::LOOP METHODS
7475
7476 redoop, nextop, lastop
7477
7478 =item B::COP METHODS
7479
7480 label, stash, file, cop_seq, arybase, line
7481
7482 =back
7483
7484 =item FUNCTIONS EXPORTED BY C<B>
7485
7486 main_cv, init_av, main_root, main_start, comppadlist, sv_undef, sv_yes,
7487 sv_no, amagic_generation, walkoptree(OP, METHOD), walkoptree_debug(DEBUG),
7488 walksymtable(SYMREF, METHOD, RECURSE, PREFIX), svref_2object(SV),
7489 ppname(OPNUM), hash(STR), cast_I32(I), minus_c, cstring(STR), class(OBJ),
7490 threadsv_names
7491
7492 =item AUTHOR
7493
7494 =back
7495
7496 =head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
7497 bytecode
7498
7499 =over 4
7500
7501 =item SYNOPSIS
7502
7503 =item DESCRIPTION
7504
7505 =item AUTHOR
7506
7507 =back
7508
7509 =head2 B::Assembler - Assemble Perl bytecode
7510
7511 =over 4
7512
7513 =item SYNOPSIS
7514
7515 =item DESCRIPTION
7516
7517 =item AUTHORS
7518
7519 =back
7520
7521 =head2 B::Bblock - Walk basic blocks
7522
7523 =over 4
7524
7525 =item SYNOPSIS
7526
7527 =item DESCRIPTION
7528
7529 =item AUTHOR
7530
7531 =back
7532
7533 =head2 B::Bytecode - Perl compiler's bytecode backend
7534
7535 =over 4
7536
7537 =item SYNOPSIS
7538
7539 =item DESCRIPTION
7540
7541 =item OPTIONS
7542
7543 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
7544 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
7545 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
7546
7547 =item EXAMPLES
7548
7549 =item BUGS
7550
7551 =item AUTHORS
7552
7553 =back
7554
7555 =head2 B::C - Perl compiler's C backend
7556
7557 =over 4
7558
7559 =item SYNOPSIS
7560
7561 =item DESCRIPTION
7562
7563 =item OPTIONS
7564
7565 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-D>, B<-Do>, B<-Dc>, B<-DA>,
7566 B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fno-cog>, B<-On>, B<-llimit>
7567
7568 =item EXAMPLES
7569
7570 =item BUGS
7571
7572 =item AUTHOR
7573
7574 =back
7575
7576 =head2 B::CC - Perl compiler's optimized C translation backend
7577
7578 =over 4
7579
7580 =item SYNOPSIS
7581
7582 =item DESCRIPTION
7583
7584 =item OPTIONS
7585
7586 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-mModulename>, B<-D>, B<-Dr>,
7587 B<-DO>, B<-Ds>, B<-Dp>, B<-Dq>, B<-Dl>, B<-Dt>, B<-f>,
7588 B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
7589
7590 =item EXAMPLES
7591
7592 =item BUGS
7593
7594 =item DIFFERENCES
7595
7596 =over 4
7597
7598 =item Loops
7599
7600 =item Context of ".."
7601
7602 =item Arithmetic
7603
7604 =item Deprecated features
7605
7606 =back
7607
7608 =item AUTHOR
7609
7610 =back
7611
7612 =head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
7613
7614 =over 4
7615
7616 =item SYNOPSIS
7617
7618 =item DESCRIPTION
7619
7620 =item OPTIONS
7621
7622 B<-basic>, B<-exec>, B<-tree>, B<-compact>, B<-loose>, B<-vt>, B<-ascii>,
7623 B<-main>, B<-base>I<n>, B<-bigendian>, B<-littleendian>, B<-concise>,
7624 B<-terse>, B<-linenoise>, B<-debug>, B<-env>
7625
7626 =item FORMATTING SPECIFICATIONS
7627
7628 B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
7629 B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
7630 B<#>I<var>, B<#>I<var>I<N>, B<~>, B<#addr>, B<#arg>, B<#class>,
7631 B<#classym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
7632 B<#flags>, B<#flagval>, B<#hyphenseq>, B<#label>, B<#lastaddr>, B<#name>,
7633 B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>, B<#private>, B<#privval>,
7634 B<#seq>, B<#seqnum>, B<#sibaddr>, B<#svaddr>, B<#svclass>, B<#svval>,
7635 B<#targ>, B<#targarg>, B<#targarglife>, B<#typenum>
7636
7637 =item ABBREVIATIONS
7638
7639 =over 4
7640
7641 =item OP flags abbreviations
7642
7643 =item OP class abbreviations
7644
7645 =back
7646
7647 =item Using B::Concise outside of the O framework
7648
7649 =item AUTHOR
7650
7651 =back
7652
7653 =head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
7654
7655 =over 4
7656
7657 =item SYNOPSIS
7658
7659 =item DESCRIPTION
7660
7661 =item AUTHOR
7662
7663 =back
7664
7665 =head2 B::Deparse - Perl compiler backend to produce perl code
7666
7667 =over 4
7668
7669 =item SYNOPSIS
7670
7671 =item DESCRIPTION
7672
7673 =item OPTIONS
7674
7675 B<-l>, B<-p>, B<-q>, B<-f>I<FILE>, B<-s>I<LETTERS>, B<C>, B<i>I<NUMBER>,
7676 B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
7677
7678 =item USING B::Deparse AS A MODULE
7679
7680 =over 4
7681
7682 =item Synopsis
7683
7684 =item Description
7685
7686 =item new
7687
7688 =item ambient_pragmas
7689
7690 strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
7691
7692 =item coderef2text
7693
7694 =back
7695
7696 =item BUGS
7697
7698 =item AUTHOR
7699
7700 =back
7701
7702 =head2 B::Disassembler - Disassemble Perl bytecode
7703
7704 =over 4
7705
7706 =item SYNOPSIS
7707
7708 =item DESCRIPTION
7709
7710 =item AUTHOR
7711
7712 =back
7713
7714 =head2 B::Lint - Perl lint
7715
7716 =over 4
7717
7718 =item SYNOPSIS
7719
7720 =item DESCRIPTION
7721
7722 =item OPTIONS AND LINT CHECKS
7723
7724 B<context>, B<implicit-read> and B<implicit-write>, B<dollar-underscore>,
7725 B<private-names>, B<undefined-subs>, B<regexp-variables>, B<all>, B<none>
7726
7727 =item NON LINT-CHECK OPTIONS
7728
7729 B<-u Package>
7730
7731 =item BUGS
7732
7733 =item AUTHOR
7734
7735 =back
7736
7737 =head2 B::O, O - Generic interface to Perl Compiler backends
7738
7739 =over 4
7740
7741 =item SYNOPSIS
7742
7743 =item DESCRIPTION
7744
7745 =item CONVENTIONS
7746
7747 =item IMPLEMENTATION
7748
7749 =item AUTHOR
7750
7751 =back
7752
7753 =head2 B::Showlex - Show lexical variables used in functions or files
7754
7755 =over 4
7756
7757 =item SYNOPSIS
7758
7759 =item DESCRIPTION
7760
7761 =item AUTHOR
7762
7763 =back
7764
7765 =head2 B::Stackobj - Helper module for CC backend
7766
7767 =over 4
7768
7769 =item SYNOPSIS
7770
7771 =item DESCRIPTION
7772
7773 =item AUTHOR
7774
7775 =back
7776
7777 =head2 B::Stash - show what stashes are loaded
7778
7779 =head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
7780
7781 =over 4
7782
7783 =item SYNOPSIS
7784
7785 =item DESCRIPTION
7786
7787 =item AUTHOR
7788
7789 =back
7790
7791 =head2 B::Xref - Generates cross reference reports for Perl programs
7792
7793 =over 4
7794
7795 =item SYNOPSIS
7796
7797 =item DESCRIPTION
7798
7799 =item OPTIONS
7800
7801 C<-oFILENAME>, C<-r>, C<-D[tO]>
7802
7803 =item BUGS
7804
7805 =item AUTHOR
7806
7807 =back
7808
7809 =head2 Bblock, B::Bblock - Walk basic blocks
7810
7811 =over 4
7812
7813 =item SYNOPSIS
7814
7815 =item DESCRIPTION
7816
7817 =item AUTHOR
7818
7819 =back
7820
7821 =head2 Benchmark - benchmark running times of Perl code
7822
7823 =over 4
7824
7825 =item SYNOPSIS
7826
7827 =item DESCRIPTION
7828
7829 =over 4
7830
7831 =item Methods
7832
7833 new, debug, iters
7834
7835 =item Standard Exports
7836
7837 timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
7838 timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
7839 TIMEDIFF, [ STYLE, [ FORMAT ] ] )
7840
7841 =item Optional Exports
7842
7843 clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUT, CODEHASHREF, [
7844 STYLE ] ), cmpthese ( RESULTSHASHREF ), countit(TIME, CODE), disablecache (
7845 ), enablecache ( ), timesum ( T1, T2 )
7846
7847 =back
7848
7849 =item NOTES
7850
7851 =item EXAMPLES
7852
7853 =item INHERITANCE
7854
7855 =item CAVEATS
7856
7857 =item SEE ALSO
7858
7859 =item AUTHORS
7860
7861 =item MODIFICATION HISTORY
7862
7863 =back
7864
7865 =head2 ByteLoader - load byte compiled perl code
7866
7867 =over 4
7868
7869 =item SYNOPSIS
7870
7871 =item DESCRIPTION
7872
7873 =item AUTHOR
7874
7875 =item SEE ALSO
7876
7877 =back
7878
7879 =head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend
7880
7881 =over 4
7882
7883 =item SYNOPSIS
7884
7885 =item DESCRIPTION
7886
7887 =item OPTIONS
7888
7889 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
7890 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
7891 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
7892
7893 =item EXAMPLES
7894
7895 =item BUGS
7896
7897 =item AUTHORS
7898
7899 =back
7900
7901 =head2 CGI - Simple Common Gateway Interface Class
7902
7903 =over 4
7904
7905 =item SYNOPSIS
7906
7907 =item ABSTRACT
7908
7909 =item DESCRIPTION
7910
7911 =over 4
7912
7913 =item PROGRAMMING STYLE
7914
7915 =item CALLING CGI.PM ROUTINES
7916
7917 =item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
7918
7919 =item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
7920
7921 =item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
7922
7923 =item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
7924
7925 =item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
7926
7927 =item SETTING THE VALUE(S) OF A NAMED PARAMETER:
7928
7929 =item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
7930
7931 =item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
7932
7933 =item DELETING A PARAMETER COMPLETELY:
7934
7935 =item DELETING ALL PARAMETERS:
7936
7937 =item DIRECT ACCESS TO THE PARAMETER LIST:
7938
7939 =item FETCHING THE PARAMETER LIST AS A HASH:
7940
7941 =item SAVING THE STATE OF THE SCRIPT TO A FILE:
7942
7943 =item RETRIEVING CGI ERRORS
7944
7945 =item USING THE FUNCTION-ORIENTED INTERFACE
7946
7947 B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:netscape>, B<:html>,
7948 B<:standard>, B<:all>
7949
7950 =item PRAGMAS
7951
7952 -any, -compile, -nosticky, -no_undef_params, -no_xhtml, -nph,
7953 -newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
7954 -private_tempfiles
7955
7956 =item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
7957
7958 1. start_table() (generates a <TABLE> tag), 2. end_table() (generates a
7959 </TABLE> tag), 3. start_ul() (generates a <UL> tag), 4. end_ul() (generates
7960 a </UL> tag)
7961
7962 =back
7963
7964 =item GENERATING DYNAMIC DOCUMENTS
7965
7966 =over 4
7967
7968 =item CREATING A STANDARD HTTP HEADER:
7969
7970 =item GENERATING A REDIRECTION HEADER
7971
7972 =item CREATING THE HTML DOCUMENT HEADER
7973
7974 B<Parameters:>, 4, 5, 6..
7975
7976 =item ENDING THE HTML DOCUMENT:
7977
7978 =item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
7979
7980 =item OBTAINING THE SCRIPT'S URL
7981
7982 B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
7983 (B<-query_string>), B<-base>
7984
7985 =item MIXING POST AND URL PARAMETERS
7986
7987 =back
7988
7989 =item CREATING STANDARD HTML ELEMENTS:
7990
7991 =over 4
7992
7993 =item PROVIDING ARGUMENTS TO HTML SHORTCUTS
7994
7995 =item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
7996
7997 =item HTML SHORTCUTS AND LIST INTERPOLATION
7998
7999 =item NON-STANDARD HTML SHORTCUTS
8000
8001 =item AUTOESCAPING HTML
8002
8003 $escaped_string = escapeHTML("unescaped string");, $charset =
8004 charset([$charset]);, $flag = autoEscape([$flag]);
8005
8006 =item PRETTY-PRINTING HTML
8007
8008 =back
8009
8010 =item CREATING FILL-OUT FORMS:
8011
8012 =over 4
8013
8014 =item CREATING AN ISINDEX TAG
8015
8016 =item STARTING AND ENDING A FORM
8017
8018 B<application/x-www-form-urlencoded>, B<multipart/form-data>
8019
8020 =item CREATING A TEXT FIELD
8021
8022 B<Parameters>
8023
8024 =item CREATING A BIG TEXT FIELD
8025
8026 =item CREATING A PASSWORD FIELD
8027
8028 =item CREATING A FILE UPLOAD FIELD
8029
8030 B<Parameters>
8031
8032 =item CREATING A POPUP MENU
8033
8034 =item CREATING A SCROLLING LIST
8035
8036 B<Parameters:>
8037
8038 =item CREATING A GROUP OF RELATED CHECKBOXES
8039
8040 B<Parameters:>
8041
8042 =item CREATING A STANDALONE CHECKBOX
8043
8044 B<Parameters:>
8045
8046 =item CREATING A RADIO BUTTON GROUP
8047
8048 B<Parameters:>
8049
8050 =item CREATING A SUBMIT BUTTON 
8051
8052 B<Parameters:>
8053
8054 =item CREATING A RESET BUTTON
8055
8056 =item CREATING A DEFAULT BUTTON
8057
8058 =item CREATING A HIDDEN FIELD
8059
8060 B<Parameters:>
8061
8062 =item CREATING A CLICKABLE IMAGE BUTTON
8063
8064 B<Parameters:>
8065
8066 =item CREATING A JAVASCRIPT ACTION BUTTON
8067
8068 =back
8069
8070 =item HTTP COOKIES
8071
8072 1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
8073 B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
8074
8075 =item WORKING WITH FRAMES
8076
8077 1. Create a <Frameset> document, 2. Specify the destination for the
8078 document in the HTTP header, 3. Specify the destination for the document in
8079 the <FORM> tag
8080
8081 =item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
8082
8083 =item DEBUGGING
8084
8085 =over 4
8086
8087 =item DUMPING OUT ALL THE NAME/VALUE PAIRS
8088
8089 =back
8090
8091 =item FETCHING ENVIRONMENT VARIABLES
8092
8093 B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
8094 B<path_translated()>, B<remote_host()>, B<script_name()>, B<referer()>,
8095 B<auth_type ()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
8096 B<server_software ()>, B<remote_user ()>, B<user_name ()>,
8097 B<request_method()>, B<content_type()>, B<http()>, B<https()>
8098
8099 =item USING NPH SCRIPTS
8100
8101 In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
8102 parameters
8103
8104 =item Server Push
8105
8106 multipart_init(), multipart_start(), multipart_end(), multipart_final()
8107
8108 =item Avoiding Denial of Service Attacks
8109
8110 B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
8111 basis>, B<2. Globally for all scripts>
8112
8113 =item COMPATIBILITY WITH CGI-LIB.PL
8114
8115 =item AUTHOR INFORMATION
8116
8117 =item CREDITS
8118
8119 Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
8120 (james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
8121 (mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
8122 (jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
8123 (applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
8124 (tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
8125 (tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
8126 MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
8127 (kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
8128 Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
8129 MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
8130 ...and many many more..
8131
8132 =item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
8133
8134 =item BUGS
8135
8136 =item SEE ALSO
8137
8138 =back
8139
8140 =head2 CGI::Apache - Backward compatibility module for CGI.pm
8141
8142 =over 4
8143
8144 =item SYNOPSIS
8145
8146 =item ABSTRACT
8147
8148 =item DESCRIPTION
8149
8150 =item AUTHOR INFORMATION
8151
8152 =item BUGS
8153
8154 =item SEE ALSO
8155
8156 =back
8157
8158 =head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
8159 other) error log
8160
8161 =over 4
8162
8163 =item SYNOPSIS
8164
8165 =item DESCRIPTION
8166
8167 =item REDIRECTING ERROR MESSAGES
8168
8169 =item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
8170
8171 =over 4
8172
8173 =item Changing the default message
8174
8175 =back
8176
8177 =item MAKING WARNINGS APPEAR AS HTML COMMENTS
8178
8179 =item CHANGE LOG
8180
8181 =item AUTHORS
8182
8183 =item SEE ALSO
8184
8185 =back
8186
8187 =head2 CGI::Cookie - Interface to Netscape Cookies
8188
8189 =over 4
8190
8191 =item SYNOPSIS
8192
8193 =item DESCRIPTION
8194
8195 =item USING CGI::Cookie
8196
8197 B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
8198
8199 =over 4
8200
8201 =item Creating New Cookies
8202
8203 =item Sending the Cookie to the Browser
8204
8205 =item Recovering Previous Cookies
8206
8207 =item Manipulating Cookies
8208
8209 B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
8210
8211 =back
8212
8213 =item AUTHOR INFORMATION
8214
8215 =item BUGS
8216
8217 =item SEE ALSO
8218
8219 =back
8220
8221 =head2 CGI::Fast - CGI Interface for Fast CGI
8222
8223 =over 4
8224
8225 =item SYNOPSIS
8226
8227 =item DESCRIPTION
8228
8229 =item OTHER PIECES OF THE PUZZLE
8230
8231 =item WRITING FASTCGI PERL SCRIPTS
8232
8233 =item INSTALLING FASTCGI SCRIPTS
8234
8235 =item USING FASTCGI SCRIPTS AS CGI SCRIPTS
8236
8237 =item CAVEATS
8238
8239 =item AUTHOR INFORMATION
8240
8241 =item BUGS
8242
8243 =item SEE ALSO
8244
8245 =back
8246
8247 =head2 CGI::Pretty - module to produce nicely formatted HTML code
8248
8249 =over 4
8250
8251 =item SYNOPSIS
8252
8253 =item DESCRIPTION
8254
8255 =over 4
8256
8257 =item Tags that won't be formatted
8258
8259 =item Customizing the Indenting
8260
8261 =back
8262
8263 =item BUGS
8264
8265 =item AUTHOR
8266
8267 =item SEE ALSO
8268
8269 =back
8270
8271 =head2 CGI::Push - Simple Interface to Server Push
8272
8273 =over 4
8274
8275 =item SYNOPSIS
8276
8277 =item DESCRIPTION
8278
8279 =item USING CGI::Push
8280
8281 -next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
8282
8283 =over 4
8284
8285 =item Heterogeneous Pages
8286
8287 =item Changing the Page Delay on the Fly
8288
8289 =back
8290
8291 =item INSTALLING CGI::Push SCRIPTS
8292
8293 =item AUTHOR INFORMATION
8294
8295 =item BUGS
8296
8297 =item SEE ALSO
8298
8299 =back
8300
8301 =head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
8302
8303 =over 4
8304
8305 =item SYNOPSIS
8306
8307 =item ABSTRACT
8308
8309 =item DESCRIPTION
8310
8311 =item AUTHOR INFORMATION
8312
8313 =item BUGS
8314
8315 =item SEE ALSO
8316
8317 =back
8318
8319 =head2 CGI::Util - Internal utilities used by CGI module
8320
8321 =over 4
8322
8323 =item SYNOPSIS
8324
8325 =item DESCRIPTION
8326
8327 =item AUTHOR INFORMATION
8328
8329 =item SEE ALSO
8330
8331 =back
8332
8333 =head2 CPAN - query, download and build perl modules from CPAN sites
8334
8335 =over 4
8336
8337 =item SYNOPSIS
8338
8339 =item DESCRIPTION
8340
8341 =over 4
8342
8343 =item Interactive Mode
8344
8345 Searching for authors, bundles, distribution files and modules, make, test,
8346 install, clean  modules or distributions, get, readme, look module or
8347 distribution, ls author, Signals
8348
8349 =item CPAN::Shell
8350
8351 =item autobundle
8352
8353 =item recompile
8354
8355 =item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
8356
8357 =item Programmer's interface
8358
8359 expand($type,@things), expandany(@things), Programming Examples
8360
8361 =item Methods in the other Classes
8362
8363 CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
8364 CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
8365 CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
8366 CPAN::Bundle::clean(), CPAN::Bundle::contains(),
8367 CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
8368 CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
8369 CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
8370 CPAN::Bundle::readme(), CPAN::Bundle::test(),
8371 CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
8372 CPAN::Distribution::clean(), CPAN::Distribution::containsmods(),
8373 CPAN::Distribution::cvs_import(), CPAN::Distribution::dir(),
8374 CPAN::Distribution::force($method,@args), CPAN::Distribution::get(),
8375 CPAN::Distribution::install(), CPAN::Distribution::isa_perl(),
8376 CPAN::Distribution::look(), CPAN::Distribution::make(),
8377 CPAN::Distribution::prereq_pm(), CPAN::Distribution::readme(),
8378 CPAN::Distribution::test(), CPAN::Distribution::uptodate(),
8379 CPAN::Index::force_reload(), CPAN::Index::reload(), CPAN::InfoObj::dump(),
8380 CPAN::Module::as_glimpse(), CPAN::Module::as_string(),
8381 CPAN::Module::clean(), CPAN::Module::cpan_file(),
8382 CPAN::Module::cpan_version(), CPAN::Module::cvs_import(),
8383 CPAN::Module::description(), CPAN::Module::force($method,@args),
8384 CPAN::Module::get(), CPAN::Module::inst_file(),
8385 CPAN::Module::inst_version(), CPAN::Module::install(),
8386 CPAN::Module::look(), CPAN::Module::make(),
8387 CPAN::Module::manpage_headline(), CPAN::Module::readme(),
8388 CPAN::Module::test(), CPAN::Module::uptodate(), CPAN::Module::userid()
8389
8390 =item Cache Manager
8391
8392 =item Bundles
8393
8394 =item Prerequisites
8395
8396 =item Finding packages and VERSION
8397
8398 =item Debugging
8399
8400 =item Floppy, Zip, Offline Mode
8401
8402 =back
8403
8404 =item CONFIGURATION
8405
8406 C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
8407 E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
8408 optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
8409 [unshift|push|splice] E<lt>listE<gt>>
8410
8411 =over 4
8412
8413 =item Note on urllist parameter's format
8414
8415 =item urllist parameter has CD-ROM support
8416
8417 =back
8418
8419 =item SECURITY
8420
8421 =item EXPORT
8422
8423 =item POPULATE AN INSTALLATION WITH LOTS OF MODULES
8424
8425 =item WORKING WITH CPAN.pm BEHIND FIREWALLS
8426
8427 =over 4
8428
8429 =item Three basic types of firewalls
8430
8431 http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
8432
8433 =item Configuring lynx or ncftp for going through a firewall
8434
8435 =back
8436
8437 =item FAQ
8438
8439 1), 2), 3), 4), 5), 6), 7), 8), 9), 10)
8440
8441 =item BUGS
8442
8443 =item AUTHOR
8444
8445 =item TRANSLATIONS
8446
8447 =item SEE ALSO
8448
8449 =back
8450
8451 =head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
8452
8453 =over 4
8454
8455 =item SYNOPSIS
8456
8457 =item DESCRIPTION
8458
8459 =back
8460
8461 =head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
8462 module
8463
8464 =over 4
8465
8466 =item SYNOPSIS
8467
8468 =item DESCRIPTION
8469
8470 =item  SEE ALSO
8471
8472 =back
8473
8474 =head2 Carp, carp    - warn of errors (from perspective of caller)
8475
8476 =over 4
8477
8478 =item SYNOPSIS
8479
8480 =item DESCRIPTION
8481
8482 =over 4
8483
8484 =item Forcing a Stack Trace
8485
8486 =back
8487
8488 =item BUGS
8489
8490 =back
8491
8492 =head2 Carp::Heavy, Carp heavy machinery - no user serviceable parts inside
8493
8494 =head2 Class::ISA -- report the search path for a class's ISA tree
8495
8496 =over 4
8497
8498 =item SYNOPSIS
8499
8500 =item DESCRIPTION
8501
8502 =item FUNCTIONS
8503
8504 the function Class::ISA::super_path($CLASS), the function
8505 Class::ISA::self_and_super_path($CLASS), the function
8506 Class::ISA::self_and_super_versions($CLASS)
8507
8508 =item CAUTIONARY NOTES
8509
8510 =item COPYRIGHT
8511
8512 =item AUTHOR
8513
8514 =back
8515
8516 =head2 Class::Struct - declare struct-like datatypes as Perl classes
8517
8518 =over 4
8519
8520 =item SYNOPSIS
8521
8522 =item DESCRIPTION
8523
8524 =over 4
8525
8526 =item The C<struct()> function
8527
8528 =item Class Creation at Compile Time
8529
8530 =item Element Types and Accessor Methods
8531
8532 Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
8533 C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
8534
8535 =item Initializing with C<new>
8536
8537 =back
8538
8539 =item EXAMPLES
8540
8541 Example 1, Example 2, Example 3
8542
8543 =item Author and Modification History
8544
8545 =back
8546
8547 =head2 Config - access Perl configuration information
8548
8549 =over 4
8550
8551 =item SYNOPSIS
8552
8553 =item DESCRIPTION
8554
8555 myconfig(), config_sh(), config_vars(@names)
8556
8557 =item EXAMPLE
8558
8559 =item WARNING
8560
8561 =item GLOSSARY
8562
8563 =over 4
8564
8565 =item _
8566
8567 C<_a>, C<_exe>, C<_o>
8568
8569 =item a
8570
8571 C<afs>, C<afsroot>, C<alignbytes>, C<ansi2knr>, C<aphostname>,
8572 C<api_revision>, C<api_subversion>, C<api_version>, C<api_versionstring>,
8573 C<ar>, C<archlib>, C<archlibexp>, C<archname64>, C<archname>, C<archobjs>,
8574 C<awk>
8575
8576 =item b
8577
8578 C<baserev>, C<bash>, C<bin>, C<bincompat5005>, C<binexp>, C<bison>,
8579 C<byacc>, C<byteorder>
8580
8581 =item c
8582
8583 C<c>, C<castflags>, C<cat>, C<cc>, C<cccdlflags>, C<ccdlflags>, C<ccflags>,
8584 C<ccflags_uselargefiles>, C<ccname>, C<ccsymbols>, C<ccversion>, C<cf_by>,
8585 C<cf_email>, C<cf_time>, C<charsize>, C<chgrp>, C<chmod>, C<chown>,
8586 C<clocktype>, C<comm>, C<compress>, C<contains>, C<cp>, C<cpio>, C<cpp>,
8587 C<cpp_stuff>, C<cppccsymbols>, C<cppflags>, C<cpplast>, C<cppminus>,
8588 C<cpprun>, C<cppstdin>, C<cppsymbols>, C<crosscompile>, C<cryptlib>, C<csh>
8589
8590 =item d
8591
8592 C<d__fwalk>, C<d_access>, C<d_accessx>, C<d_alarm>, C<d_archlib>,
8593 C<d_atolf>, C<d_atoll>, C<d_attribut>, C<d_bcmp>, C<d_bcopy>,
8594 C<d_bincompat5005>, C<d_bsd>, C<d_bsdgetpgrp>, C<d_bsdsetpgrp>, C<d_bzero>,
8595 C<d_casti32>, C<d_castneg>, C<d_charvspr>, C<d_chown>, C<d_chroot>,
8596 C<d_chsize>, C<d_closedir>, C<d_cmsghdr_s>, C<d_const>, C<d_crypt>,
8597 C<d_csh>, C<d_cuserid>, C<d_dbl_dig>, C<d_dbminitproto>, C<d_difftime>,
8598 C<d_dirnamlen>, C<d_dlerror>, C<d_dlopen>, C<d_dlsymun>, C<d_dosuid>,
8599 C<d_drand48proto>, C<d_dup2>, C<d_eaccess>, C<d_endgrent>, C<d_endhent>,
8600 C<d_endnent>, C<d_endpent>, C<d_endpwent>, C<d_endsent>, C<d_eofnblk>,
8601 C<d_eunice>, C<d_fchmod>, C<d_fchown>, C<d_fcntl>, C<d_fcntl_can_lock>,
8602 C<d_fd_macros>, C<d_fd_set>, C<d_fds_bits>, C<d_fgetpos>, C<d_flexfnam>,
8603 C<d_flock>, C<d_flockproto>, C<d_fork>, C<d_fpathconf>, C<d_fpos64_t>,
8604 C<d_frexpl>, C<d_fs_data_s>, C<d_fseeko>, C<d_fsetpos>, C<d_fstatfs>,
8605 C<d_fstatvfs>, C<d_fsync>, C<d_ftello>, C<d_ftime>, C<d_Gconvert>,
8606 C<d_getcwd>, C<d_getespwnam>, C<d_getfsstat>, C<d_getgrent>, C<d_getgrps>,
8607 C<d_gethbyaddr>, C<d_gethbyname>, C<d_gethent>, C<d_gethname>,
8608 C<d_gethostprotos>, C<d_getitimer>, C<d_getlogin>, C<d_getmnt>,
8609 C<d_getmntent>, C<d_getnbyaddr>, C<d_getnbyname>, C<d_getnent>,
8610 C<d_getnetprotos>, C<d_getpagsz>, C<d_getpbyname>, C<d_getpbynumber>,
8611 C<d_getpent>, C<d_getpgid>, C<d_getpgrp2>, C<d_getpgrp>, C<d_getppid>,
8612 C<d_getprior>, C<d_getprotoprotos>, C<d_getprpwnam>, C<d_getpwent>,
8613 C<d_getsbyname>, C<d_getsbyport>, C<d_getsent>, C<d_getservprotos>,
8614 C<d_getspnam>, C<d_gettimeod>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>,
8615 C<d_htonl>, C<d_iconv>, C<d_index>, C<d_inetaton>, C<d_int64_t>,
8616 C<d_isascii>, C<d_isnan>, C<d_isnanl>, C<d_killpg>, C<d_lchown>,
8617 C<d_ldbl_dig>, C<d_link>, C<d_locconv>, C<d_lockf>, C<d_longdbl>,
8618 C<d_longlong>, C<d_lseekproto>, C<d_lstat>, C<d_madvise>, C<d_mblen>,
8619 C<d_mbstowcs>, C<d_mbtowc>, C<d_memchr>, C<d_memcmp>, C<d_memcpy>,
8620 C<d_memmove>, C<d_memset>, C<d_mkdir>, C<d_mkdtemp>, C<d_mkfifo>,
8621 C<d_mkstemp>, C<d_mkstemps>, C<d_mktime>, C<d_mmap>, C<d_modfl>,
8622 C<d_mprotect>, C<d_msg>, C<d_msg_ctrunc>, C<d_msg_dontroute>, C<d_msg_oob>,
8623 C<d_msg_peek>, C<d_msg_proxy>, C<d_msgctl>, C<d_msgget>, C<d_msghdr_s>,
8624 C<d_msgrcv>, C<d_msgsnd>, C<d_msync>, C<d_munmap>, C<d_mymalloc>,
8625 C<d_nice>, C<d_nv_preserves_uv>, C<d_nv_preserves_uv_bits>, C<d_off64_t>,
8626 C<d_old_pthread_create_joinable>, C<d_oldpthreads>, C<d_oldsock>,
8627 C<d_open3>, C<d_pathconf>, C<d_pause>, C<d_perl_otherlibdirs>,
8628 C<d_phostname>, C<d_pipe>, C<d_poll>, C<d_portable>, C<d_PRId64>,
8629 C<d_PRIeldbl>, C<d_PRIEUldbl>, C<d_PRIfldbl>, C<d_PRIFUldbl>,
8630 C<d_PRIgldbl>, C<d_PRIGUldbl>, C<d_PRIi64>, C<d_PRIo64>, C<d_PRIu64>,
8631 C<d_PRIx64>, C<d_PRIXU64>, C<d_pthread_yield>, C<d_pwage>, C<d_pwchange>,
8632 C<d_pwclass>, C<d_pwcomment>, C<d_pwexpire>, C<d_pwgecos>, C<d_pwpasswd>,
8633 C<d_pwquota>, C<d_qgcvt>, C<d_quad>, C<d_readdir>, C<d_readlink>,
8634 C<d_readv>, C<d_realpath>, C<d_recvmsg>, C<d_rename>, C<d_rewinddir>,
8635 C<d_rmdir>, C<d_safebcpy>, C<d_safemcpy>, C<d_sanemcmp>, C<d_sbrkproto>,
8636 C<d_sched_yield>, C<d_scm_rights>, C<d_SCNfldbl>, C<d_seekdir>,
8637 C<d_select>, C<d_sem>, C<d_semctl>, C<d_semctl_semid_ds>,
8638 C<d_semctl_semun>, C<d_semget>, C<d_semop>, C<d_sendmsg>, C<d_setegid>,
8639 C<d_seteuid>, C<d_setgrent>, C<d_setgrps>, C<d_sethent>, C<d_setitimer>,
8640 C<d_setlinebuf>, C<d_setlocale>, C<d_setnent>, C<d_setpent>, C<d_setpgid>,
8641 C<d_setpgrp2>, C<d_setpgrp>, C<d_setprior>, C<d_setproctitle>,
8642 C<d_setpwent>, C<d_setregid>, C<d_setresgid>, C<d_setresuid>,
8643 C<d_setreuid>, C<d_setrgid>, C<d_setruid>, C<d_setsent>, C<d_setsid>,
8644 C<d_setvbuf>, C<d_sfio>, C<d_shm>, C<d_shmat>, C<d_shmatprototype>,
8645 C<d_shmctl>, C<d_shmdt>, C<d_shmget>, C<d_sigaction>, C<d_sigprocmask>,
8646 C<d_sigsetjmp>, C<d_sockatmark>, C<d_sockatmarkproto>, C<d_socket>,
8647 C<d_socklen_t>, C<d_sockpair>, C<d_socks5_init>, C<d_sqrtl>,
8648 C<d_sresgproto>, C<d_sresuproto>, C<d_statblks>, C<d_statfs_f_flags>,
8649 C<d_statfs_s>, C<d_statvfs>, C<d_stdio_cnt_lval>, C<d_stdio_ptr_lval>,
8650 C<d_stdio_ptr_lval_nochange_cnt>, C<d_stdio_ptr_lval_sets_cnt>,
8651 C<d_stdio_stream_array>, C<d_stdiobase>, C<d_stdstdio>, C<d_strchr>,
8652 C<d_strcoll>, C<d_strctcpy>, C<d_strerrm>, C<d_strerror>, C<d_strftime>,
8653 C<d_strtod>, C<d_strtol>, C<d_strtold>, C<d_strtoll>, C<d_strtoq>,
8654 C<d_strtoul>, C<d_strtoull>, C<d_strtouq>, C<d_strxfrm>, C<d_suidsafe>,
8655 C<d_symlink>, C<d_syscall>, C<d_syscallproto>, C<d_sysconf>,
8656 C<d_sysernlst>, C<d_syserrlst>, C<d_system>, C<d_tcgetpgrp>,
8657 C<d_tcsetpgrp>, C<d_telldir>, C<d_telldirproto>, C<d_time>, C<d_times>,
8658 C<d_truncate>, C<d_tzname>, C<d_u32align>, C<d_ualarm>, C<d_umask>,
8659 C<d_uname>, C<d_union_semun>, C<d_usleep>, C<d_usleepproto>, C<d_ustat>,
8660 C<d_vendorarch>, C<d_vendorbin>, C<d_vendorlib>, C<d_vfork>,
8661 C<d_void_closedir>, C<d_voidsig>, C<d_voidtty>, C<d_volatile>,
8662 C<d_vprintf>, C<d_wait4>, C<d_waitpid>, C<d_wcstombs>, C<d_wctomb>,
8663 C<d_writev>, C<d_xenix>, C<date>, C<db_hashtype>, C<db_prefixtype>,
8664 C<db_version_major>, C<db_version_minor>, C<db_version_patch>,
8665 C<defvoidused>, C<direntrytype>, C<dlext>, C<dlsrc>, C<doublesize>,
8666 C<drand01>, C<dynamic_ext>
8667
8668 =item e
8669
8670 C<eagain>, C<ebcdic>, C<echo>, C<egrep>, C<emacs>, C<eunicefix>,
8671 C<exe_ext>, C<expr>, C<extensions>
8672
8673 =item f
8674
8675 C<fflushall>, C<fflushNULL>, C<find>, C<firstmakefile>, C<flex>,
8676 C<fpossize>, C<fpostype>, C<freetype>, C<full_ar>, C<full_csh>, C<full_sed>
8677
8678 =item g
8679
8680 C<gccosandvers>, C<gccversion>, C<gidformat>, C<gidsign>, C<gidsize>,
8681 C<gidtype>, C<glibpth>, C<grep>, C<groupcat>, C<groupstype>, C<gzip>
8682
8683 =item h
8684
8685 C<h_fcntl>, C<h_sysfile>, C<hint>, C<hostcat>
8686
8687 =item i
8688
8689 C<i16size>, C<i16type>, C<i32size>, C<i32type>, C<i64size>, C<i64type>,
8690 C<i8size>, C<i8type>, C<i_arpainet>, C<i_bsdioctl>, C<i_db>, C<i_dbm>,
8691 C<i_dirent>, C<i_dld>, C<i_dlfcn>, C<i_fcntl>, C<i_float>, C<i_gdbm>,
8692 C<i_grp>, C<i_iconv>, C<i_ieeefp>, C<i_inttypes>, C<i_libutil>,
8693 C<i_limits>, C<i_locale>, C<i_machcthr>, C<i_malloc>, C<i_math>,
8694 C<i_memory>, C<i_mntent>, C<i_ndbm>, C<i_netdb>, C<i_neterrno>,
8695 C<i_netinettcp>, C<i_niin>, C<i_poll>, C<i_prot>, C<i_pthread>, C<i_pwd>,
8696 C<i_rpcsvcdbm>, C<i_sfio>, C<i_sgtty>, C<i_shadow>, C<i_socks>,
8697 C<i_stdarg>, C<i_stddef>, C<i_stdlib>, C<i_string>, C<i_sunmath>,
8698 C<i_sysaccess>, C<i_sysdir>, C<i_sysfile>, C<i_sysfilio>, C<i_sysin>,
8699 C<i_sysioctl>, C<i_syslog>, C<i_sysmman>, C<i_sysmode>, C<i_sysmount>,
8700 C<i_sysndir>, C<i_sysparam>, C<i_sysresrc>, C<i_syssecrt>, C<i_sysselct>,
8701 C<i_syssockio>, C<i_sysstat>, C<i_sysstatfs>, C<i_sysstatvfs>,
8702 C<i_systime>, C<i_systimek>, C<i_systimes>, C<i_systypes>, C<i_sysuio>,
8703 C<i_sysun>, C<i_sysutsname>, C<i_sysvfs>, C<i_syswait>, C<i_termio>,
8704 C<i_termios>, C<i_time>, C<i_unistd>, C<i_ustat>, C<i_utime>, C<i_values>,
8705 C<i_varargs>, C<i_varhdr>, C<i_vfork>, C<ignore_versioned_solibs>,
8706 C<inc_version_list>, C<inc_version_list_init>, C<incpath>, C<inews>,
8707 C<installarchlib>, C<installbin>, C<installman1dir>, C<installman3dir>,
8708 C<installprefix>, C<installprefixexp>, C<installprivlib>, C<installscript>,
8709 C<installsitearch>, C<installsitebin>, C<installsitelib>, C<installstyle>,
8710 C<installusrbinperl>, C<installvendorarch>, C<installvendorbin>,
8711 C<installvendorlib>, C<intsize>, C<issymlink>, C<ivdformat>, C<ivsize>,
8712 C<ivtype>
8713
8714 =item k
8715
8716 C<known_extensions>, C<ksh>
8717
8718 =item l
8719
8720 C<ld>, C<lddlflags>, C<ldflags>, C<ldflags_uselargefiles>, C<ldlibpthname>,
8721 C<less>, C<lib_ext>, C<libc>, C<libperl>, C<libpth>, C<libs>, C<libsdirs>,
8722 C<libsfiles>, C<libsfound>, C<libspath>, C<libswanted>,
8723 C<libswanted_uselargefiles>, C<line>, C<lint>, C<lkflags>, C<ln>, C<lns>,
8724 C<locincpth>, C<loclibpth>, C<longdblsize>, C<longlongsize>, C<longsize>,
8725 C<lp>, C<lpr>, C<ls>, C<lseeksize>, C<lseektype>
8726
8727 =item m
8728
8729 C<mail>, C<mailx>, C<make>, C<make_set_make>, C<mallocobj>, C<mallocsrc>,
8730 C<malloctype>, C<man1dir>, C<man1direxp>, C<man1ext>, C<man3dir>,
8731 C<man3direxp>, C<man3ext>
8732
8733 =item M
8734
8735 C<Mcc>, C<mips_type>, C<mkdir>, C<mmaptype>, C<modetype>, C<more>,
8736 C<multiarch>, C<mv>, C<myarchname>, C<mydomain>, C<myhostname>, C<myuname>
8737
8738 =item n
8739
8740 C<n>, C<need_va_copy>, C<netdb_hlen_type>, C<netdb_host_type>,
8741 C<netdb_name_type>, C<netdb_net_type>, C<nm>, C<nm_opt>, C<nm_so_opt>,
8742 C<nonxs_ext>, C<nroff>, C<nveformat>, C<nvEUformat>, C<nvfformat>,
8743 C<nvFUformat>, C<nvgformat>, C<nvGUformat>, C<nvsize>, C<nvtype>
8744
8745 =item o
8746
8747 C<o_nonblock>, C<obj_ext>, C<old_pthread_create_joinable>, C<optimize>,
8748 C<orderlib>, C<osname>, C<osvers>, C<otherlibdirs>
8749
8750 =item p
8751
8752 C<package>, C<pager>, C<passcat>, C<patchlevel>, C<path_sep>, C<perl5>,
8753 C<perl>, C<perl_patchlevel>
8754
8755 =item P
8756
8757 C<PERL_REVISION>, C<PERL_SUBVERSION>, C<PERL_VERSION>, C<perladmin>,
8758 C<perllibs>, C<perlpath>, C<pg>, C<phostname>, C<pidtype>, C<plibpth>,
8759 C<pm_apiversion>, C<pmake>, C<pr>, C<prefix>, C<prefixexp>, C<privlib>,
8760 C<privlibexp>, C<prototype>, C<ptrsize>
8761
8762 =item q
8763
8764 C<quadkind>, C<quadtype>
8765
8766 =item r
8767
8768 C<randbits>, C<randfunc>, C<randseedtype>, C<ranlib>, C<rd_nodata>,
8769 C<revision>, C<rm>, C<rmail>, C<runnm>
8770
8771 =item s
8772
8773 C<sched_yield>, C<scriptdir>, C<scriptdirexp>, C<sed>, C<seedfunc>,
8774 C<selectminbits>, C<selecttype>, C<sendmail>, C<sh>, C<shar>, C<sharpbang>,
8775 C<shmattype>, C<shortsize>, C<shrpenv>, C<shsharp>, C<sig_count>,
8776 C<sig_name>, C<sig_name_init>, C<sig_num>, C<sig_num_init>, C<sig_size>,
8777 C<signal_t>, C<sitearch>, C<sitearchexp>, C<sitebin>, C<sitebinexp>,
8778 C<sitelib>, C<sitelib_stem>, C<sitelibexp>, C<siteprefix>,
8779 C<siteprefixexp>, C<sizesize>, C<sizetype>, C<sleep>, C<smail>, C<so>,
8780 C<sockethdr>, C<socketlib>, C<socksizetype>, C<sort>, C<spackage>,
8781 C<spitshell>, C<sPRId64>, C<sPRIeldbl>, C<sPRIEUldbl>, C<sPRIfldbl>,
8782 C<sPRIFUldbl>, C<sPRIgldbl>, C<sPRIGUldbl>, C<sPRIi64>, C<sPRIo64>,
8783 C<sPRIu64>, C<sPRIx64>, C<sPRIXU64>, C<src>, C<sSCNfldbl>, C<ssizetype>,
8784 C<startperl>, C<startsh>, C<static_ext>, C<stdchar>, C<stdio_base>,
8785 C<stdio_bufsiz>, C<stdio_cnt>, C<stdio_filbuf>, C<stdio_ptr>,
8786 C<stdio_stream_array>, C<strings>, C<submit>, C<subversion>, C<sysman>
8787
8788 =item t
8789
8790 C<tail>, C<tar>, C<tbl>, C<tee>, C<test>, C<timeincl>, C<timetype>,
8791 C<touch>, C<tr>, C<trnl>, C<troff>
8792
8793 =item u
8794
8795 C<u16size>, C<u16type>, C<u32size>, C<u32type>, C<u64size>, C<u64type>,
8796 C<u8size>, C<u8type>, C<uidformat>, C<uidsign>, C<uidsize>, C<uidtype>,
8797 C<uname>, C<uniq>, C<uquadtype>, C<use5005threads>, C<use64bitall>,
8798 C<use64bitint>, C<usedl>, C<useithreads>, C<uselargefiles>,
8799 C<uselongdouble>, C<usemorebits>, C<usemultiplicity>, C<usemymalloc>,
8800 C<usenm>, C<useopcode>, C<useperlio>, C<useposix>, C<usesfio>,
8801 C<useshrplib>, C<usesocks>, C<usethreads>, C<usevendorprefix>, C<usevfork>,
8802 C<usrinc>, C<uuname>, C<uvoformat>, C<uvsize>, C<uvtype>, C<uvuformat>,
8803 C<uvxformat>, C<uvXUformat>
8804
8805 =item v
8806
8807 C<vendorarch>, C<vendorarchexp>, C<vendorbin>, C<vendorbinexp>,
8808 C<vendorlib>, C<vendorlib_stem>, C<vendorlibexp>, C<vendorprefix>,
8809 C<vendorprefixexp>, C<version>, C<versiononly>, C<vi>, C<voidflags>
8810
8811 =item x
8812
8813 C<xlibpth>, C<xs_apiversion>
8814
8815 =item y
8816
8817 C<yacc>, C<yaccflags>
8818
8819 =item z
8820
8821 C<zcat>, C<zip>
8822
8823 =back
8824
8825 =item NOTE
8826
8827 =back
8828
8829 =head2 Cwd - get pathname of current working directory
8830
8831 =over 4
8832
8833 =item SYNOPSIS
8834
8835 =item DESCRIPTION
8836
8837 =back
8838
8839 =head2 DB - programmatic interface to the Perl debugging API (draft,
8840 subject to
8841 change)
8842
8843 =over 4
8844
8845 =item SYNOPSIS
8846
8847 =item DESCRIPTION
8848
8849 =over 4
8850
8851 =item Global Variables
8852
8853  $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace,  @DB::args, 
8854 @DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
8855 $DB::lineno
8856
8857 =item API Methods
8858
8859 CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
8860 CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
8861
8862 =item Client Callback Methods
8863
8864 CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
8865 CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
8866 CLIENT->output(LIST)
8867
8868 =back
8869
8870 =item BUGS
8871
8872 =item AUTHOR
8873
8874 =back
8875
8876 =head2 DB_File - Perl5 access to Berkeley DB version 1.x
8877
8878 =over 4
8879
8880 =item SYNOPSIS
8881
8882 =item DESCRIPTION
8883
8884 B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
8885
8886 =over 4
8887
8888 =item Using DB_File with Berkeley DB version 2 or 3
8889
8890 =item Interface to Berkeley DB
8891
8892 =item Opening a Berkeley DB Database File
8893
8894 =item Default Parameters
8895
8896 =item In Memory Databases
8897
8898 =back
8899
8900 =item DB_HASH
8901
8902 =over 4
8903
8904 =item A Simple Example
8905
8906 =back
8907
8908 =item DB_BTREE
8909
8910 =over 4
8911
8912 =item Changing the BTREE sort order
8913
8914 =item Handling Duplicate Keys 
8915
8916 =item The get_dup() Method
8917
8918 =item The find_dup() Method
8919
8920 =item The del_dup() Method
8921
8922 =item Matching Partial Keys 
8923
8924 =back
8925
8926 =item DB_RECNO
8927
8928 =over 4
8929
8930 =item The 'bval' Option
8931
8932 =item A Simple Example
8933
8934 =item Extra RECNO Methods
8935
8936 B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
8937 B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
8938 length, elements);>
8939
8940 =item Another Example
8941
8942 =back
8943
8944 =item THE API INTERFACE
8945
8946 B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
8947 $X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
8948 $flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
8949 $value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
8950
8951 =item DBM FILTERS
8952
8953 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
8954 B<filter_fetch_value>
8955
8956 =over 4
8957
8958 =item The Filter
8959
8960 =item An Example -- the NULL termination problem.
8961
8962 =item Another Example -- Key is a C int.
8963
8964 =back
8965
8966 =item HINTS AND TIPS 
8967
8968 =over 4
8969
8970 =item Locking: The Trouble with fd
8971
8972 =item Safe ways to lock a database
8973
8974 B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
8975
8976 =item Sharing Databases With C Applications
8977
8978 =item The untie() Gotcha
8979
8980 =back
8981
8982 =item COMMON QUESTIONS
8983
8984 =over 4
8985
8986 =item Why is there Perl source in my database?
8987
8988 =item How do I store complex data structures with DB_File?
8989
8990 =item What does "Invalid Argument" mean?
8991
8992 =item What does "Bareword 'DB_File' not allowed" mean? 
8993
8994 =back
8995
8996 =item REFERENCES
8997
8998 =item HISTORY
8999
9000 =item BUGS
9001
9002 =item AVAILABILITY
9003
9004 =item COPYRIGHT
9005
9006 =item SEE ALSO
9007
9008 =item AUTHOR
9009
9010 =back
9011
9012 =head2 Data::Dumper - stringified perl data structures, suitable for both
9013 printing and C<eval>
9014
9015 =over 4
9016
9017 =item SYNOPSIS
9018
9019 =item DESCRIPTION
9020
9021 =over 4
9022
9023 =item Methods
9024
9025 I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
9026 I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
9027 I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
9028 I<$OBJ>->Reset
9029
9030 =item Functions
9031
9032 Dumper(I<LIST>)
9033
9034 =item Configuration Variables or Methods
9035
9036 $Data::Dumper::Indent  I<or>  I<$OBJ>->Indent(I<[NEWVAL]>),
9037 $Data::Dumper::Purity  I<or>  I<$OBJ>->Purity(I<[NEWVAL]>),
9038 $Data::Dumper::Pad  I<or>  I<$OBJ>->Pad(I<[NEWVAL]>),
9039 $Data::Dumper::Varname  I<or>  I<$OBJ>->Varname(I<[NEWVAL]>),
9040 $Data::Dumper::Useqq  I<or>  I<$OBJ>->Useqq(I<[NEWVAL]>),
9041 $Data::Dumper::Terse  I<or>  I<$OBJ>->Terse(I<[NEWVAL]>),
9042 $Data::Dumper::Freezer  I<or>  $I<OBJ>->Freezer(I<[NEWVAL]>),
9043 $Data::Dumper::Toaster  I<or>  $I<OBJ>->Toaster(I<[NEWVAL]>),
9044 $Data::Dumper::Deepcopy  I<or>  $I<OBJ>->Deepcopy(I<[NEWVAL]>),
9045 $Data::Dumper::Quotekeys  I<or>  $I<OBJ>->Quotekeys(I<[NEWVAL]>),
9046 $Data::Dumper::Bless  I<or>  $I<OBJ>->Bless(I<[NEWVAL]>),
9047 $Data::Dumper::Maxdepth  I<or>  $I<OBJ>->Maxdepth(I<[NEWVAL]>)
9048
9049 =item Exports
9050
9051 Dumper
9052
9053 =back
9054
9055 =item EXAMPLES
9056
9057 =item BUGS
9058
9059 =item AUTHOR
9060
9061 =item VERSION
9062
9063 =item SEE ALSO
9064
9065 =back
9066
9067 =head2 Devel::DProf - a Perl code profiler
9068
9069 =over 4
9070
9071 =item SYNOPSIS
9072
9073 =item DESCRIPTION
9074
9075 =item PROFILE FORMAT
9076
9077 =item AUTOLOAD
9078
9079 =item ENVIRONMENT
9080
9081 =item BUGS
9082
9083 =item SEE ALSO
9084
9085 =back
9086
9087 =head2 Devel::Peek - A data debugging tool for the XS programmer
9088
9089 =over 4
9090
9091 =item SYNOPSIS
9092
9093 =item DESCRIPTION
9094
9095 =over 4
9096
9097 =item Memory footprint debugging
9098
9099 =back
9100
9101 =item EXAMPLES
9102
9103 =over 4
9104
9105 =item A simple scalar string
9106
9107 =item A simple scalar number
9108
9109 =item A simple scalar with an extra reference
9110
9111 =item A reference to a simple scalar
9112
9113 =item A reference to an array
9114
9115 =item A reference to a hash
9116
9117 =item Dumping a large array or hash
9118
9119 =item A reference to an SV which holds a C pointer
9120
9121 =item A reference to a subroutine
9122
9123 =back
9124
9125 =item EXPORTS
9126
9127 =item BUGS
9128
9129 =item AUTHOR
9130
9131 =item SEE ALSO
9132
9133 =back
9134
9135 =head2 Devel::SelfStubber - generate stubs for a SelfLoading module
9136
9137 =over 4
9138
9139 =item SYNOPSIS
9140
9141 =item DESCRIPTION
9142
9143 =back
9144
9145 =head2 Digest:: - Modules that calculate message digests
9146
9147 =over 4
9148
9149 =item SYNOPSIS
9150
9151 =item DESCRIPTION
9152
9153 I<binary>, I<hex>, I<base64>
9154
9155 =item OO INTERFACE
9156
9157 $ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
9158 Digest::XXX->new($arg,...), $ctx->reset, $ctx->add($data,...),
9159 $ctx->addfile($io_handle), $ctx->digest, $ctx->hexdigest, $ctx->b64digest
9160
9161 =item SEE ALSO
9162
9163 =item AUTHOR
9164
9165 =back
9166
9167 =head2 Digest::MD5 - Perl interface to the MD5 Algorithm
9168
9169 =over 4
9170
9171 =item SYNOPSIS
9172
9173 =item DESCRIPTION
9174
9175 =item FUNCTIONS
9176
9177 md5($data,...), md5_hex($data,...), md5_base64($data,...)
9178
9179 =item METHODS
9180
9181 $md5 = Digest::MD5->new, $md5->reset, $md5->add($data,...),
9182 $md5->addfile($io_handle), $md5->digest, $md5->hexdigest, $md5->b64digest
9183
9184 =item EXAMPLES
9185
9186 =item SEE ALSO
9187
9188 =item COPYRIGHT
9189
9190 =item AUTHORS
9191
9192 =back
9193
9194 =head2 DirHandle - supply object methods for directory handles
9195
9196 =over 4
9197
9198 =item SYNOPSIS
9199
9200 =item DESCRIPTION
9201
9202 =back
9203
9204 =head2 Dumpvalue - provides screen dump of Perl data.
9205
9206 =over 4
9207
9208 =item SYNOPSIS
9209
9210 =item DESCRIPTION
9211
9212 =over 4
9213
9214 =item Creation
9215
9216 C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
9217 C<DumpDBFiles>, C<DumpPackages>, C<DumpReused>, C<tick>, C<HighBit>,
9218 C<printUndef>, C<UsageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
9219 stopDbSignal
9220
9221 =item Methods
9222
9223 dumpValue, dumpValues, dumpvars, set_quote, set_unctrl, compactDump,
9224 veryCompact, set, get
9225
9226 =back
9227
9228 =back
9229
9230 =head2 DynaLoader - Dynamically load C libraries into Perl code
9231
9232 =over 4
9233
9234 =item SYNOPSIS
9235
9236 =item DESCRIPTION
9237
9238 @dl_library_path, @dl_resolve_using, @dl_require_symbols, @dl_librefs,
9239 @dl_modules, dl_error(), $dl_debug, dl_findfile(), dl_expandspec(),
9240 dl_load_file(), dl_unload_file(), dl_loadflags(), dl_find_symbol(),
9241 dl_find_symbol_anywhere(), dl_undef_symbols(), dl_install_xsub(),
9242 bootstrap()
9243
9244 =item AUTHOR
9245
9246 =back
9247
9248 =head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
9249 Perl code
9250
9251 =over 4
9252
9253 =item SYNOPSIS
9254
9255 =item DESCRIPTION
9256
9257 =item AUTHOR
9258
9259 =back
9260
9261 =head2 Encode - character encodings
9262
9263 =over 4
9264
9265 =item SYNOPSIS
9266
9267 =item DESCRIPTION
9268
9269 =over 4
9270
9271 =item TERMINOLOGY
9272
9273 =back
9274
9275 =item ENCODINGS
9276
9277 =over 4
9278
9279 =item Characteristics of an Encoding
9280
9281 =item Types of Encodings
9282
9283 Fixed length 8-bit (or less) encodings, Fixed length 16-bit encodings,
9284 Fixed length 32-bit encodings, Multi-byte encodings, "Escape" encodings
9285
9286 =item Specifying Encodings
9287
9288 1. By name, 2. As an object
9289
9290 =item Encoding Names
9291
9292 The MIME name as defined in IETF RFC-XXXX, The name in the IANA registry,
9293 The name used by the the organization that defined it
9294
9295 =back
9296
9297 =item PERL ENCODING API
9298
9299 =over 4
9300
9301 =item Generic Encoding Interface
9302
9303 =item Handling Malformed Data
9304
9305 Scheme 1, Scheme 2, Other Schemes
9306
9307 =item UTF-8 / utf8
9308
9309 =item Other Encodings of Unicode
9310
9311 =item Listing available encodings
9312
9313 =item Defining Aliases
9314
9315 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
9316 reference, e.g.:
9317
9318 =item Defining Encodings
9319
9320 =back
9321
9322 =item Encoding and IO
9323
9324 =item Encoding How to ...
9325
9326 IO with mixed content (faking iso-2020-*), MIME's Content-Length:, UTF-8
9327 strings in binary data, Perl/Encode wrappers on non-Unicode XS modules
9328
9329 =item Messing with Perl's Internals
9330
9331 is_utf8(STRING [, CHECK]), valid_utf8(STRING)
9332
9333 =item IMPLEMENTATION CLASSES
9334
9335 -E<gt>name, -E<gt>new_sequence, -E<gt>encode($string,$check),
9336 -E<gt>decode($octets,$check)
9337
9338 =over 4
9339
9340 =item Compiled Encodings
9341
9342 .enc, .ucm, .ucm, .c, .xs, ascii and iso-8859-*, IBM-1047 and two other
9343 variants of EBCDIC, symbol and dingbats as used by Tk on X11
9344
9345 =back
9346
9347 =item SEE ALSO
9348
9349 =back
9350
9351 =head2 Encode::EncodeFormat, EncodeFormat - the format of encoding tables
9352 of the Encode extension
9353
9354 =over 4
9355
9356 =item DESCRIPTION
9357
9358 [1]   B<S>, [2]   B<D>, [3]   B<M>, [4]   B<E>
9359
9360 =item KEYWORDS
9361
9362 =item COPYRIGHT
9363
9364 =back
9365
9366 =head2 Encode::Tcl - Tcl encodings
9367
9368 =head2 EncodeFormat - the format of encoding tables of the Encode extension
9369
9370 =over 4
9371
9372 =item DESCRIPTION
9373
9374 [1]   B<S>, [2]   B<D>, [3]   B<M>, [4]   B<E>
9375
9376 =item KEYWORDS
9377
9378 =item COPYRIGHT
9379
9380 =back
9381
9382 =head2 English - use nice English (or awk) names for ugly punctuation
9383 variables
9384
9385 =over 4
9386
9387 =item SYNOPSIS
9388
9389 =item DESCRIPTION
9390
9391 =item PERFORMANCE
9392
9393 =back
9394
9395 =head2 Env - perl module that imports environment variables as scalars or
9396 arrays
9397
9398 =over 4
9399
9400 =item SYNOPSIS
9401
9402 =item DESCRIPTION
9403
9404 =item LIMITATIONS
9405
9406 =item AUTHOR
9407
9408 =back
9409
9410 =head2 Errno - System errno constants
9411
9412 =over 4
9413
9414 =item SYNOPSIS
9415
9416 =item DESCRIPTION
9417
9418 =item CAVEATS
9419
9420 =item AUTHOR
9421
9422 =item COPYRIGHT
9423
9424 =back
9425
9426 =head2 Exporter - Implements default import method for modules
9427
9428 =over 4
9429
9430 =item SYNOPSIS
9431
9432 =item DESCRIPTION
9433
9434 =over 4
9435
9436 =item How to Export
9437
9438 =item Selecting What To Export
9439
9440 =item Specialised Import Lists
9441
9442 =item Exporting without using Export's import method
9443
9444 =item Module Version Checking
9445
9446 =item Managing Unknown Symbols
9447
9448 =item Tag Handling Utility Functions
9449
9450 =back
9451
9452 =back
9453
9454 =head2 Exporter::Heavy - Exporter guts
9455
9456 =over 4
9457
9458 =item SYNOPIS
9459
9460 =item DESCRIPTION
9461
9462 =back
9463
9464 =head2 ExtUtils::Command - utilities to replace common UNIX commands in
9465 Makefiles etc.
9466
9467 =over 4
9468
9469 =item SYNOPSIS
9470
9471 =item DESCRIPTION
9472
9473 =back
9474
9475 cat
9476
9477 eqtime src dst
9478
9479 rm_f files...
9480
9481 rm_f files...
9482
9483 touch files ..
9484
9485 mv source... destination
9486
9487 cp source... destination
9488
9489 chmod mode files..
9490
9491 mkpath directory..
9492
9493 test_f file
9494
9495 =over 4
9496
9497 =item BUGS
9498
9499 =item SEE ALSO 
9500
9501 =item AUTHOR
9502
9503 =back
9504
9505 =head2 ExtUtils::Constant - generate XS code to import C header constants
9506
9507 =over 4
9508
9509 =item SYNOPSIS
9510
9511 =item DESCRIPTION
9512
9513 =item USAGE
9514
9515 IV, UV, NV, PV, PVN
9516
9517 =item FUNCTIONS
9518
9519 =back
9520
9521 C_stringify NAME
9522
9523 constant_types
9524
9525 memEQ_clause NAME, CHECKED_AT, INDENT
9526
9527 assign INDENT, TYPE, VALUE..
9528
9529 return_clause VALUE, TYPE, INDENT, MACRO, DEFAULT
9530
9531 params WHAT
9532
9533 dump_names  PACKAGE, SUBNAME, DEFAULT_TYPE, TYPES, INDENT, ITEM..
9534
9535 C_constant PACKAGE, SUBNAME, DEFAULT_TYPE, TYPES, INDENT, NAMELEN, ITEM..,
9536 name, type, value, macro, default
9537
9538 XS_constant PACKAGE, TYPES, SUBNAME, C_SUBNAME
9539
9540 autoload PACKAGE, VERSION, AUTOLOADER
9541
9542 =over 4
9543
9544 =item AUTHOR
9545
9546 =back
9547
9548 =head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
9549
9550 =over 4
9551
9552 =item SYNOPSIS
9553
9554 =item DESCRIPTION
9555
9556 =item @EXPORT
9557
9558 =item FUNCTIONS
9559
9560 xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
9561 ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
9562
9563 =item EXAMPLES
9564
9565 =item SEE ALSO
9566
9567 =item AUTHOR
9568
9569 =back
9570
9571 =head2 ExtUtils::Install - install files from here to there
9572
9573 =over 4
9574
9575 =item SYNOPSIS
9576
9577 =item DESCRIPTION
9578
9579 =back
9580
9581 =head2 ExtUtils::Installed - Inventory management of installed modules
9582
9583 =over 4
9584
9585 =item SYNOPSIS
9586
9587 =item DESCRIPTION
9588
9589 =item USAGE
9590
9591 =item FUNCTIONS
9592
9593 new(), modules(), files(), directories(), directory_tree(), validate(),
9594 packlist(), version()
9595
9596 =item EXAMPLE
9597
9598 =item AUTHOR
9599
9600 =back
9601
9602 =head2 ExtUtils::Liblist - determine libraries to use and how to use them
9603
9604 =over 4
9605
9606 =item SYNOPSIS
9607
9608 =item DESCRIPTION
9609
9610 For static extensions, For dynamic extensions, For dynamic extensions
9611
9612 =over 4
9613
9614 =item EXTRALIBS
9615
9616 =item LDLOADLIBS and LD_RUN_PATH
9617
9618 =item BSLOADLIBS
9619
9620 =back
9621
9622 =item PORTABILITY
9623
9624 =over 4
9625
9626 =item VMS implementation
9627
9628 =item Win32 implementation
9629
9630 =back
9631
9632 =item SEE ALSO
9633
9634 =back
9635
9636 =head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
9637 ExtUtils::MakeMaker
9638
9639 =over 4
9640
9641 =item SYNOPSIS
9642
9643 =item DESCRIPTION
9644
9645 canonpath, cflags, manifypods, perl_archive
9646
9647 =back
9648
9649 =head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
9650 ExtUtils::MakeMaker
9651
9652 =over 4
9653
9654 =item SYNOPSIS
9655
9656 =item DESCRIPTION
9657
9658 =item METHODS
9659
9660 =back
9661
9662 perl_archive_after
9663
9664 =head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
9665
9666 =over 4
9667
9668 =item SYNOPSIS
9669
9670 =item DESCRIPTION
9671
9672 =item METHODS
9673
9674 =over 4
9675
9676 =item Preloaded methods
9677
9678 canonpath
9679
9680 =back
9681
9682 =back
9683
9684 catdir
9685
9686 catfile
9687
9688 curdir
9689
9690 rootdir
9691
9692 updir
9693
9694 =over 4
9695
9696 =item SelfLoaded methods
9697
9698 c_o (o)
9699
9700 =back
9701
9702 cflags (o)
9703
9704 clean (o)
9705
9706 const_cccmd (o)
9707
9708 const_config (o)
9709
9710 const_loadlibs (o)
9711
9712 constants (o)
9713
9714 depend (o)
9715
9716 dir_target (o)
9717
9718 dist (o)
9719
9720 dist_basics (o)
9721
9722 dist_ci (o)
9723
9724 dist_core (o)
9725
9726 dist_dir (o)
9727
9728 dist_test (o)
9729
9730 dlsyms (o)
9731
9732 dynamic (o)
9733
9734 dynamic_bs (o)
9735
9736 dynamic_lib (o)
9737
9738 exescan
9739
9740 extliblist
9741
9742 file_name_is_absolute
9743
9744 find_perl
9745
9746 =over 4
9747
9748 =item Methods to actually produce chunks of text for the Makefile
9749
9750 fixin
9751
9752 =back
9753
9754 force (o)
9755
9756 guess_name
9757
9758 has_link_code
9759
9760 htmlifypods (o)
9761
9762 init_dirscan
9763
9764 init_main
9765
9766 init_others
9767
9768 install (o)
9769
9770 installbin (o)
9771
9772 libscan (o)
9773
9774 linkext (o)
9775
9776 lsdir
9777
9778 macro (o)
9779
9780 makeaperl (o)
9781
9782 makefile (o)
9783
9784 manifypods (o)
9785
9786 maybe_command
9787
9788 maybe_command_in_dirs
9789
9790 needs_linking (o)
9791
9792 nicetext
9793
9794 parse_version
9795
9796 parse_abstract
9797
9798 pasthru (o)
9799
9800 path
9801
9802 perl_script
9803
9804 perldepend (o)
9805
9806 ppd
9807
9808 perm_rw (o)
9809
9810 perm_rwx (o)
9811
9812 pm_to_blib
9813
9814 post_constants (o)
9815
9816 post_initialize (o)
9817
9818 postamble (o)
9819
9820 prefixify
9821
9822 processPL (o)
9823
9824 realclean (o)
9825
9826 replace_manpage_separator
9827
9828 static (o)
9829
9830 static_lib (o)
9831
9832 staticmake (o)
9833
9834 subdir_x (o)
9835
9836 subdirs (o)
9837
9838 test (o)
9839
9840 test_via_harness (o)
9841
9842 test_via_script (o)
9843
9844 tool_autosplit (o)
9845
9846 tools_other (o)
9847
9848 tool_xsubpp (o)
9849
9850 top_targets (o)
9851
9852 writedoc
9853
9854 xs_c (o)
9855
9856 xs_cpp (o)
9857
9858 xs_o (o)
9859
9860 perl_archive
9861
9862 perl_archive_after
9863
9864 export_list
9865
9866 =over 4
9867
9868 =item SEE ALSO
9869
9870 =back
9871
9872 =head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
9873 ExtUtils::MakeMaker
9874
9875 =over 4
9876
9877 =item SYNOPSIS
9878
9879 =item DESCRIPTION
9880
9881 =over 4
9882
9883 =item Methods always loaded
9884
9885 wraplist
9886
9887 =back
9888
9889 =back
9890
9891 rootdir (override)
9892
9893 =over 4
9894
9895 =item SelfLoaded methods
9896
9897 guess_name (override)
9898
9899 =back
9900
9901 find_perl (override)
9902
9903 path (override)
9904
9905 maybe_command (override)
9906
9907 maybe_command_in_dirs (override)
9908
9909 perl_script (override)
9910
9911 file_name_is_absolute (override)
9912
9913 replace_manpage_separator
9914
9915 init_others (override)
9916
9917 constants (override)
9918
9919 cflags (override)
9920
9921 const_cccmd (override)
9922
9923 pm_to_blib (override)
9924
9925 tool_autosplit (override)
9926
9927 tool_sxubpp (override)
9928
9929 xsubpp_version (override)
9930
9931 tools_other (override)
9932
9933 dist (override)
9934
9935 c_o (override)
9936
9937 xs_c (override)
9938
9939 xs_o (override)
9940
9941 top_targets (override)
9942
9943 dlsyms (override)
9944
9945 dynamic_lib (override)
9946
9947 dynamic_bs (override)
9948
9949 static_lib (override)
9950
9951 manifypods (override)
9952
9953 processPL (override)
9954
9955 installbin (override)
9956
9957 subdir_x (override)
9958
9959 clean (override)
9960
9961 realclean (override)
9962
9963 dist_basics (override)
9964
9965 dist_core (override)
9966
9967 dist_dir (override)
9968
9969 dist_test (override)
9970
9971 install (override)
9972
9973 perldepend (override)
9974
9975 makefile (override)
9976
9977 test (override)
9978
9979 test_via_harness (override)
9980
9981 test_via_script (override)
9982
9983 makeaperl (override)
9984
9985 nicetext (override)
9986
9987 =head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
9988 ExtUtils::MakeMaker
9989
9990 =over 4
9991
9992 =item SYNOPSIS
9993
9994 =item DESCRIPTION
9995
9996 =back
9997
9998 catfile
9999
10000 constants (o)
10001
10002 static_lib (o)
10003
10004 dynamic_bs (o)
10005
10006 dynamic_lib (o)
10007
10008 canonpath
10009
10010 perl_script
10011
10012 pm_to_blib
10013
10014 test_via_harness (o)
10015
10016 tool_autosplit (override)
10017
10018 tools_other (o)
10019
10020 xs_o (o)
10021
10022 top_targets (o)
10023
10024 htmlifypods (o)
10025
10026 manifypods (o)
10027
10028 dist_ci (o)
10029
10030 dist_core (o)
10031
10032 pasthru (o)
10033
10034 =head2 ExtUtils::MakeMaker - create an extension Makefile
10035
10036 =over 4
10037
10038 =item SYNOPSIS
10039
10040 =item DESCRIPTION
10041
10042 =over 4
10043
10044 =item How To Write A Makefile.PL
10045
10046 =item Default Makefile Behaviour
10047
10048 =item make test
10049
10050 =item make testdb
10051
10052 =item make install
10053
10054 =item PREFIX and LIB attribute
10055
10056 =item AFS users
10057
10058 =item Static Linking of a new Perl Binary
10059
10060 =item Determination of Perl Library and Installation Locations
10061
10062 =item Which architecture dependent directory?
10063
10064 =item Using Attributes and Parameters
10065
10066 ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CAPI, CCFLAGS, CONFIG,
10067 CONFIGURE, DEFINE, DIR, DISTNAME, DL_FUNCS, DL_VARS, EXCLUDE_EXT,
10068 EXE_FILES, FIRST_MAKEFILE, FULLPERL, FUNCLIST, H, HTMLLIBPODS,
10069 HTMLSCRIPTPODS, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB, INSTALLBIN,
10070 INSTALLDIRS, INSTALLHTMLPRIVLIBDIR, INSTALLHTMLSCRIPTDIR,
10071 INSTALLHTMLSITELIBDIR, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB,
10072 INSTALLSCRIPT, INSTALLSITEARCH, INSTALLSITELIB, INST_ARCHLIB, INST_BIN,
10073 INST_EXE, INST_HTMLLIBDIR, INST_HTMLSCRIPTDIR, INST_LIB, INST_MAN1DIR,
10074 INST_MAN3DIR, INST_SCRIPT, LDFROM, LIB, LIBPERL_A, LIBS, LINKTYPE,
10075 MAKEAPERL, MAKEFILE, MAN1PODS, MAN3PODS, MAP_TARGET, MYEXTLIB, NAME,
10076 NEEDS_LINKING, NOECHO, NORECURS, NO_VC, OBJECT, OPTIMIZE, PERL, PERLMAINCC,
10077 PERL_ARCHLIB, PERL_LIB, PERL_MALLOC_OK, PERL_SRC, PERM_RW, PERM_RWX,
10078 PL_FILES, PM, PMLIBDIRS, PM_FILTER, POLLUTE, PPM_INSTALL_EXEC,
10079 PPM_INSTALL_SCRIPT, PREFIX, PREREQ_PM, SKIP, TYPEMAPS, VERSION,
10080 VERSION_FROM, XS, XSOPT, XSPROTOARG, XS_VERSION
10081
10082 =item Additional lowercase attributes
10083
10084 clean, depend, dist, dynamic_lib, linkext, macro, realclean, test,
10085 tool_autosplit
10086
10087 =item Overriding MakeMaker Methods
10088
10089 =item Hintsfile support
10090
10091 =item Distribution Support
10092
10093    make distcheck,    make skipcheck,    make distclean,    make manifest, 
10094   make distdir,    make tardist,    make dist,    make uutardist,    make
10095 shdist,    make zipdist,    make ci
10096
10097 =item Disabling an extension
10098
10099 =back
10100
10101 =item ENVIRONMENT
10102
10103 PERL_MM_OPT
10104
10105 =item SEE ALSO
10106
10107 =item AUTHORS
10108
10109 =back
10110
10111 =head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
10112
10113 =over 4
10114
10115 =item SYNOPSIS
10116
10117 =item DESCRIPTION
10118
10119 =item MANIFEST.SKIP
10120
10121 =item EXPORT_OK
10122
10123 =item GLOBAL VARIABLES
10124
10125 =item DIAGNOSTICS
10126
10127 C<Not in MANIFEST:> I<file>, C<No such file:> I<file>, C<MANIFEST:> I<$!>,
10128 C<Added to MANIFEST:> I<file>
10129
10130 =item ENVIRONMENT
10131
10132 B<PERL_MM_MANIFEST_DEBUG>
10133
10134 =item SEE ALSO
10135
10136 =item AUTHOR
10137
10138 =back
10139
10140 =head2 ExtUtils::Miniperl, writemain - write the C code for perlmain.c
10141
10142 =over 4
10143
10144 =item SYNOPSIS
10145
10146 =item DESCRIPTION
10147
10148 =item SEE ALSO
10149
10150 =back
10151
10152 =head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
10153
10154 =over 4
10155
10156 =item SYNOPSIS
10157
10158 =item DESCRIPTION
10159
10160 =back
10161
10162 =head2 ExtUtils::Mksymlists - write linker options files for dynamic
10163 extension
10164
10165 =over 4
10166
10167 =item SYNOPSIS
10168
10169 =item DESCRIPTION
10170
10171 DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
10172
10173 =item AUTHOR
10174
10175 =item REVISION
10176
10177 =back
10178
10179 =head2 ExtUtils::Packlist - manage .packlist files
10180
10181 =over 4
10182
10183 =item SYNOPSIS
10184
10185 =item DESCRIPTION
10186
10187 =item USAGE
10188
10189 =item FUNCTIONS
10190
10191 new(), read(), write(), validate(), packlist_file()
10192
10193 =item EXAMPLE
10194
10195 =item AUTHOR
10196
10197 =back
10198
10199 =head2 ExtUtils::testlib - add blib/* directories to @INC
10200
10201 =over 4
10202
10203 =item SYNOPSIS
10204
10205 =item DESCRIPTION
10206
10207 =back
10208
10209 =head2 Fatal - replace functions with equivalents which succeed or die
10210
10211 =over 4
10212
10213 =item SYNOPSIS
10214
10215 =item DESCRIPTION
10216
10217 =item AUTHOR
10218
10219 =back
10220
10221 =head2 Fcntl - load the C Fcntl.h defines
10222
10223 =over 4
10224
10225 =item SYNOPSIS
10226
10227 =item DESCRIPTION
10228
10229 =item NOTE
10230
10231 =item EXPORTED SYMBOLS
10232
10233 =back
10234
10235 =head2 File::Basename, fileparse - split a pathname into pieces
10236
10237 =over 4
10238
10239 =item SYNOPSIS
10240
10241 =item DESCRIPTION
10242
10243 fileparse_set_fstype, fileparse
10244
10245 =item EXAMPLES
10246
10247 C<basename>, C<dirname>
10248
10249 =back
10250
10251 =head2 File::CheckTree, validate - run many filetest checks on a tree
10252
10253 =over 4
10254
10255 =item SYNOPSIS
10256
10257 =item DESCRIPTION
10258
10259 =back
10260
10261 =head2 File::Compare - Compare files or filehandles
10262
10263 =over 4
10264
10265 =item SYNOPSIS
10266
10267 =item DESCRIPTION
10268
10269 =item RETURN
10270
10271 =item AUTHOR
10272
10273 =back
10274
10275 =head2 File::Copy - Copy files or filehandles
10276
10277 =over 4
10278
10279 =item SYNOPSIS
10280
10281 =item DESCRIPTION
10282
10283 =over 4
10284
10285 =item Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
10286
10287 rmscopy($from,$to[,$date_flag])
10288
10289 =back
10290
10291 =item RETURN
10292
10293 =item AUTHOR
10294
10295 =back
10296
10297 =head2 File::DosGlob - DOS like globbing and then some
10298
10299 =over 4
10300
10301 =item SYNOPSIS
10302
10303 =item DESCRIPTION
10304
10305 =item EXPORTS (by request only)
10306
10307 =item BUGS
10308
10309 =item AUTHOR
10310
10311 =item HISTORY
10312
10313 =item SEE ALSO
10314
10315 =back
10316
10317 =head2 File::Find, find - traverse a file tree
10318
10319 =over 4
10320
10321 =item SYNOPSIS
10322
10323 =item DESCRIPTION
10324
10325 C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
10326 C<follow_fast>, C<follow_skip>, C<no_chdir>, C<untaint>,
10327 C<untaint_pattern>, C<untaint_skip>
10328
10329 =item CAVEAT
10330
10331 =back
10332
10333 =head2 File::Glob - Perl extension for BSD glob routine
10334
10335 =over 4
10336
10337 =item SYNOPSIS
10338
10339 =item DESCRIPTION
10340
10341 C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
10342 C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
10343 C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
10344
10345 =item DIAGNOSTICS
10346
10347 C<GLOB_NOSPACE>, C<GLOB_ABEND>
10348
10349 =item NOTES
10350
10351 =item AUTHOR
10352
10353 =back
10354
10355 =head2 File::Path - create or remove directory trees
10356
10357 =over 4
10358
10359 =item SYNOPSIS
10360
10361 =item DESCRIPTION
10362
10363 =item AUTHORS
10364
10365 =back
10366
10367 =head2 File::Spec - portably perform operations on file names
10368
10369 =over 4
10370
10371 =item SYNOPSIS
10372
10373 =item DESCRIPTION
10374
10375 =item SEE ALSO
10376
10377 =item AUTHORS
10378
10379 =back
10380
10381 =head2 File::Spec::Epoc - methods for Epoc file specs
10382
10383 =over 4
10384
10385 =item SYNOPSIS
10386
10387 =item DESCRIPTION
10388
10389 devnull
10390
10391 =back
10392
10393 tmpdir
10394
10395 path
10396
10397 canonpath
10398
10399 splitpath
10400
10401 splitdir
10402
10403 catpath
10404
10405 abs2rel
10406
10407 rel2abs
10408
10409 =over 4
10410
10411 =item SEE ALSO
10412
10413 =back
10414
10415 =head2 File::Spec::Functions - portably perform operations on file names
10416
10417 =over 4
10418
10419 =item SYNOPSIS
10420
10421 =item DESCRIPTION
10422
10423 =over 4
10424
10425 =item Exports
10426
10427 =back
10428
10429 =item SEE ALSO
10430
10431 =back
10432
10433 =head2 File::Spec::Mac - File::Spec for MacOS
10434
10435 =over 4
10436
10437 =item SYNOPSIS
10438
10439 =item DESCRIPTION
10440
10441 =item METHODS
10442
10443 canonpath
10444
10445 =back
10446
10447 catdir
10448
10449 catfile
10450
10451 curdir
10452
10453 devnull
10454
10455 rootdir
10456
10457 tmpdir
10458
10459 updir
10460
10461 file_name_is_absolute
10462
10463 path
10464
10465 splitpath
10466
10467 splitdir
10468
10469 catpath
10470
10471 abs2rel
10472
10473 rel2abs
10474
10475 =over 4
10476
10477 =item SEE ALSO
10478
10479 =back
10480
10481 =head2 File::Spec::OS2 - methods for OS/2 file specs
10482
10483 =over 4
10484
10485 =item SYNOPSIS
10486
10487 =item DESCRIPTION
10488
10489 =back
10490
10491 =head2 File::Spec::Unix - methods used by File::Spec
10492
10493 =over 4
10494
10495 =item SYNOPSIS
10496
10497 =item DESCRIPTION
10498
10499 =item METHODS
10500
10501 canonpath
10502
10503 =back
10504
10505 catdir
10506
10507 catfile
10508
10509 curdir
10510
10511 devnull
10512
10513 rootdir
10514
10515 tmpdir
10516
10517 updir
10518
10519 no_upwards
10520
10521 case_tolerant
10522
10523 file_name_is_absolute
10524
10525 path
10526
10527 join
10528
10529 splitpath
10530
10531 splitdir
10532
10533 catpath
10534
10535 abs2rel
10536
10537 rel2abs
10538
10539 =over 4
10540
10541 =item SEE ALSO
10542
10543 =back
10544
10545 =head2 File::Spec::VMS - methods for VMS file specs
10546
10547 =over 4
10548
10549 =item SYNOPSIS
10550
10551 =item DESCRIPTION
10552
10553 eliminate_macros
10554
10555 =back
10556
10557 fixpath
10558
10559 =over 4
10560
10561 =item Methods always loaded
10562
10563 canonpath (override)
10564
10565 =back
10566
10567 catdir
10568
10569 catfile
10570
10571 curdir (override)
10572
10573 devnull (override)
10574
10575 rootdir (override)
10576
10577 tmpdir (override)
10578
10579 updir (override)
10580
10581 case_tolerant (override)
10582
10583 path (override)
10584
10585 file_name_is_absolute (override)
10586
10587 splitpath (override)
10588
10589 splitdir (override)
10590
10591 catpath (override)
10592
10593 abs2rel (override)
10594
10595 rel2abs (override)
10596
10597 =over 4
10598
10599 =item SEE ALSO
10600
10601 =back
10602
10603 =head2 File::Spec::Win32 - methods for Win32 file specs
10604
10605 =over 4
10606
10607 =item SYNOPSIS
10608
10609 =item DESCRIPTION
10610
10611 devnull
10612
10613 =back
10614
10615 tmpdir
10616
10617 catfile
10618
10619 canonpath
10620
10621 splitpath
10622
10623 splitdir
10624
10625 catpath
10626
10627 =over 4
10628
10629 =item SEE ALSO
10630
10631 =back
10632
10633 =head2 File::Temp - return name and handle of a temporary file safely
10634
10635 =over 4
10636
10637 =item PORTABILITY
10638
10639 =item SYNOPSIS
10640
10641 =item DESCRIPTION
10642
10643 =back
10644
10645 =over 4
10646
10647 =item FUNCTIONS
10648
10649 B<tempfile>
10650
10651 =back
10652
10653 B<tempdir>
10654
10655 =over 4
10656
10657 =item MKTEMP FUNCTIONS
10658
10659 B<mkstemp>
10660
10661 =back
10662
10663 B<mkstemps>
10664
10665 B<mkdtemp>
10666
10667 B<mktemp>
10668
10669 =over 4
10670
10671 =item POSIX FUNCTIONS
10672
10673 B<tmpnam>
10674
10675 =back
10676
10677 B<tmpfile>
10678
10679 =over 4
10680
10681 =item ADDITIONAL FUNCTIONS
10682
10683 B<tempnam>
10684
10685 =back
10686
10687 =over 4
10688
10689 =item UTILITY FUNCTIONS
10690
10691 B<unlink0>
10692
10693 =back
10694
10695 =over 4
10696
10697 =item PACKAGE VARIABLES
10698
10699 B<safe_level>, STANDARD, MEDIUM, HIGH
10700
10701 =back
10702
10703 TopSystemUID
10704
10705 =over 4
10706
10707 =item WARNING
10708
10709 =over 4
10710
10711 =item Temporary files and NFS
10712
10713 =back
10714
10715 =item HISTORY
10716
10717 =item SEE ALSO
10718
10719 =item AUTHOR
10720
10721 =back
10722
10723 =head2 File::stat - by-name interface to Perl's built-in stat() functions
10724
10725 =over 4
10726
10727 =item SYNOPSIS
10728
10729 =item DESCRIPTION
10730
10731 =item NOTE
10732
10733 =item AUTHOR
10734
10735 =back
10736
10737 =head2 FileCache - keep more files open than the system permits
10738
10739 =over 4
10740
10741 =item SYNOPSIS
10742
10743 =item DESCRIPTION
10744
10745 =item BUGS
10746
10747 =back
10748
10749 =head2 FileHandle - supply object methods for filehandles
10750
10751 =over 4
10752
10753 =item SYNOPSIS
10754
10755 =item DESCRIPTION
10756
10757 $fh->print, $fh->printf, $fh->getline, $fh->getlines
10758
10759 =item SEE ALSO
10760
10761 =back
10762
10763 =head2 Filter::Simple - Simplified source filtering
10764
10765 =over 4
10766
10767 =item SYNOPSIS
10768
10769 =item DESCRIPTION
10770
10771 =over 4
10772
10773 =item The Problem
10774
10775 =item A Solution
10776
10777 =item Disabling or changing <no> behaviour
10778
10779 =item All-in-one interface
10780
10781 =item How it works
10782
10783 =back
10784
10785 =item AUTHOR
10786
10787 =item COPYRIGHT
10788
10789 =back
10790
10791 =head2 Filter::Util::Call - Perl Source Filter Utility Module
10792
10793 =over 4
10794
10795 =item SYNOPSIS
10796
10797 =item DESCRIPTION
10798
10799 =over 4
10800
10801 =item B<use Filter::Util::Call>
10802
10803 =item B<import()>
10804
10805 =item B<filter() and anonymous sub>
10806
10807 B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
10808
10809 =back
10810
10811 =item EXAMPLES
10812
10813 =over 4
10814
10815 =item Example 1: A simple filter.
10816
10817 =item Example 2: Using the context
10818
10819 =item Example 3: Using the context within the filter
10820
10821 =item Example 4: Using filter_del
10822
10823 =back
10824
10825 =item Filter::Simple
10826
10827 =item AUTHOR
10828
10829 =item DATE
10830
10831 =back
10832
10833 =head2 FindBin - Locate directory of original perl script
10834
10835 =over 4
10836
10837 =item SYNOPSIS
10838
10839 =item DESCRIPTION
10840
10841 =item EXPORTABLE VARIABLES
10842
10843 =item KNOWN BUGS
10844
10845 =item AUTHORS
10846
10847 =item COPYRIGHT
10848
10849 =back
10850
10851 =head2 GDBM_File - Perl5 access to the gdbm library.
10852
10853 =over 4
10854
10855 =item SYNOPSIS
10856
10857 =item DESCRIPTION
10858
10859 =item AVAILABILITY
10860
10861 =item BUGS
10862
10863 =item SEE ALSO
10864
10865 =back
10866
10867 =head2 Getopt::Long - Extended processing of command line options
10868
10869 =over 4
10870
10871 =item SYNOPSIS
10872
10873 =item DESCRIPTION
10874
10875 =item Command Line Options, an Introduction
10876
10877 =item Getting Started with Getopt::Long
10878
10879 =over 4
10880
10881 =item Simple options
10882
10883 =item A little bit less simple options
10884
10885 =item Mixing command line option with other arguments
10886
10887 =item Options with values
10888
10889 =item Options with multiple values
10890
10891 =item Options with hash values
10892
10893 =item User-defined subroutines to handle options
10894
10895 =item Options with multiple names
10896
10897 =item Case and abbreviations
10898
10899 =item Summary of Option Specifications
10900
10901 !, +, s, i, f, : I<type> [ I<desttype> ]
10902
10903 =back
10904
10905 =item Advanced Possibilities
10906
10907 =over 4
10908
10909 =item Object oriented interface
10910
10911 =item Documentation and help texts
10912
10913 =item Storing options in a hash
10914
10915 =item Bundling
10916
10917 =item The lonesome dash
10918
10919 =item Argument call-back
10920
10921 =back
10922
10923 =item Configuring Getopt::Long
10924
10925 default, posix_default, auto_abbrev, getopt_compat, gnu_compat, gnu_getopt,
10926 require_order, permute, bundling (default: disabled), bundling_override
10927 (default: disabled), ignore_case  (default: enabled), ignore_case_always
10928 (default: disabled), pass_through (default: disabled), prefix,
10929 prefix_pattern, debug (default: disabled)
10930
10931 =item Return values and Errors
10932
10933 =item Legacy
10934
10935 =over 4
10936
10937 =item Default destinations
10938
10939 =item Alternative option starters
10940
10941 =item Configuration variables
10942
10943 =back
10944
10945 =item Trouble Shooting
10946
10947 =over 4
10948
10949 =item Warning: Ignoring '!' modifier for short option
10950
10951 =item GetOptions does not return a false result when an option is not
10952 supplied
10953
10954 =back
10955
10956 =item AUTHOR
10957
10958 =item COPYRIGHT AND DISCLAIMER
10959
10960 =back
10961
10962 =head2 Getopt::Std, getopt - Process single-character switches with switch
10963 clustering
10964
10965 =over 4
10966
10967 =item SYNOPSIS
10968
10969 =item DESCRIPTION
10970
10971 =back
10972
10973 =head2 I18N::Collate - compare 8-bit scalar data according to the current
10974 locale
10975
10976 =over 4
10977
10978 =item SYNOPSIS
10979
10980 =item DESCRIPTION
10981
10982 =back
10983
10984 =head2 I18N::LangTags - functions for dealing with RFC3066-style language
10985 tags
10986
10987 =over 4
10988
10989 =item SYNOPSIS
10990
10991 =item DESCRIPTION
10992
10993 =back
10994
10995 the function is_language_tag($lang1)
10996
10997 the function extract_language_tags($whatever)
10998
10999 the function same_language_tag($lang1, $lang2)
11000
11001 the function similarity_language_tag($lang1, $lang2)
11002
11003 the function is_dialect_of($lang1, $lang2)
11004
11005 the function super_languages($lang1)
11006
11007 the function locale2language_tag($locale_identifier)
11008
11009 the function encode_language_tag($lang1)
11010
11011 the function alternate_language_tags($lang1)
11012
11013 =over 4
11014
11015 =item ABOUT LOWERCASING
11016
11017 =item ABOUT UNICODE PLAINTEXT LANGUAGE TAGS
11018
11019 =item SEE ALSO
11020
11021 =item COPYRIGHT
11022
11023 =item AUTHOR
11024
11025 =back
11026
11027 =head2 I18N::LangTags::List, I18n::LangTags::List -- list of tags for human
11028 languages
11029
11030 =over 4
11031
11032 =item SYNOPSIS
11033
11034 =item ABOUT LANGUAGE TAGS
11035
11036 =item LIST OF LANGUAGES
11037
11038 I<{ab}> : Abkhazian, I<{ace}> : Achinese, I<{ach}> : Acoli, I<{ada}> :
11039 Adangme, I<{aa}> : Afar, I<{afh}> : Afrihili, I<{af}> : Afrikaans,
11040 [I<{afa}> : Afro-Asiatic (Other)], I<{aka}> : Akan, I<{akk}> : Akkadian,
11041 I<{sq}> : Albanian, I<{ale}> : Aleut, [I<{alg}> : Algonquian languages],
11042 [I<{tut}> : Altaic (Other)], I<{am}> : Amharic, I<{i-ami}> : Ami, [I<{apa}>
11043 : Apache languages], I<{ar}> : Arabic, I<{arc}> : Aramaic, I<{arp}> :
11044 Arapaho, I<{arn}> : Araucanian, I<{arw}> : Arawak, I<{hy}> : Armenian,
11045 [I<{art}> : Artificial (Other)], I<{as}> : Assamese, [I<{ath}> : Athapascan
11046 languages], [I<{aus}> : Australian languages], [I<{map}> : Austronesian
11047 (Other)], I<{ava}> : Avaric, I<{ae}> : Avestan, I<{awa}> : Awadhi, I<{ay}>
11048 : Aymara, I<{az}> : Azerbaijani, I<{ban}> : Balinese, [I<{bat}> : Baltic
11049 (Other)], I<{bal}> : Baluchi, I<{bam}> : Bambara, [I<{bai}> : Bamileke
11050 languages], I<{bad}> : Banda, [I<{bnt}> : Bantu (Other)], I<{bas}> : Basa,
11051 I<{ba}> : Bashkir, I<{eu}> : Basque, I<{btk}> : Batak (Indonesia), I<{bej}>
11052 : Beja, I<{be}> : Belarusian, I<{bem}> : Bemba, I<{bn}> : Bengali,
11053 [I<{ber}> : Berber (Other)], I<{bho}> : Bhojpuri, I<{bh}> : Bihari,
11054 I<{bik}> : Bikol, I<{bin}> : Bini, I<{bi}> : Bislama, I<{bs}> : Bosnian,
11055 I<{bra}> : Braj, I<{br}> : Breton, I<{bug}> : Buginese, I<{bg}> :
11056 Bulgarian, I<{i-bnn}> : Bunun, I<{bua}> : Buriat, I<{my}> : Burmese,
11057 I<{cad}> : Caddo, I<{car}> : Carib, I<{ca}> : Catalan, [I<{cau}> :
11058 Caucasian (Other)], I<{ceb}> : Cebuano, [I<{cel}> : Celtic (Other)],
11059 [I<{cai}> : Central American Indian (Other)], I<{chg}> : Chagatai,
11060 [I<{cmc}> : Chamic languages], I<{ch}> : Chamorro, I<{ce}> : Chechen,
11061 I<{chr}> : Cherokee, I<{chy}> : Cheyenne, I<{chb}> : Chibcha, I<{ny}> :
11062 Chichewa, I<{zh}> : Chinese, I<{chn}> : Chinook Jargon, I<{chp}> :
11063 Chipewyan, I<{cho}> : Choctaw, I<{cu}> : Church Slavic, I<{chk}> :
11064 Chuukese, I<{cv}> : Chuvash, I<{cop}> : Coptic, I<{kw}> : Cornish, I<{co}>
11065 : Corsican, I<{cre}> : Cree, I<{mus}> : Creek, [I<{cpe}> : English-based
11066 Creoles and pidgins (Other)], [I<{cpf}> : French-based Creoles and pidgins
11067 (Other)], [I<{cpp}> : Portuguese-based Creoles and pidgins (Other)],
11068 [I<{crp}> : Creoles and pidgins (Other)], I<{hr}> : Croatian, [I<{cus}> :
11069 Cushitic (Other)], I<{cs}> : Czech, I<{dak}> : Dakota, I<{da}> : Danish,
11070 I<{day}> : Dayak, I<{i-default}> : Default (Fallthru) Language, I<{del}> :
11071 Delaware, I<{din}> : Dinka, I<{div}> : Divehi, I<{doi}> : Dogri, I<{dgr}> :
11072 Dogrib, [I<{dra}> : Dravidian (Other)], I<{dua}> : Duala, I<{nl}> : Dutch,
11073 I<{dum}> : Middle Dutch (ca.1050-1350), I<{dyu}> : Dyula, I<{dz}> :
11074 Dzongkha, I<{efi}> : Efik, I<{egy}> : Ancient Egyptian, I<{eka}> : Ekajuk,
11075 I<{elx}> : Elamite, I<{en}> : English, I<{enm}> : Old English (1100-1500),
11076 I<{ang}> : Old English (ca.450-1100), I<{eo}> : Esperanto, I<{et}> :
11077 Estonian, I<{ewe}> : Ewe, I<{ewo}> : Ewondo, I<{fan}> : Fang, I<{fat}> :
11078 Fanti, I<{fo}> : Faroese, I<{fj}> : Fijian, I<{fi}> : Finnish, [I<{fiu}> :
11079 Finno-Ugrian (Other)], I<{fon}> : Fon, I<{fr}> : French, I<{frm}> : Middle
11080 French (ca.1400-1600), I<{fro}> : Old French (842-ca.1400), I<{fy}> :
11081 Frisian, I<{fur}> : Friulian, I<{ful}> : Fulah, I<{gaa}> : Ga, I<{gd}> :
11082 Scots Gaelic, I<{gl}> : Gallegan, I<{lug}> : Ganda, I<{gay}> : Gayo,
11083 I<{gba}> : Gbaya, I<{gez}> : Geez, I<{ka}> : Georgian, I<{de}> : German,
11084 I<{gmh}> : Middle High German (ca.1050-1500), I<{goh}> : Old High German
11085 (ca.750-1050), [I<{gem}> : Germanic (Other)], I<{gil}> : Gilbertese,
11086 I<{gon}> : Gondi, I<{gor}> : Gorontalo, I<{got}> : Gothic, I<{grb}> :
11087 Grebo, I<{grc}> : Ancient Greek (to 1453), I<{el}> : Modern Greek (1453-),
11088 I<{gn}> : Guarani, I<{gu}> : Gujarati, I<{gwi}> : Gwich'in, I<{hai}> :
11089 Haida, I<{ha}> : Hausa, I<{haw}> : Hawaiian, I<{he}> : Hebrew, I<{hz}> :
11090 Herero, I<{hil}> : Hiligaynon, I<{him}> : Himachali, I<{hi}> : Hindi,
11091 I<{ho}> : Hiri Motu, I<{hit}> : Hittite, I<{hmn}> : Hmong, I<{hu}> :
11092 Hungarian, I<{hup}> : Hupa, I<{iba}> : Iban, I<{is}> : Icelandic, I<{ibo}>
11093 : Igbo, I<{ijo}> : Ijo, I<{ilo}> : Iloko, [I<{inc}> : Indic (Other)],
11094 [I<{ine}> : Indo-European (Other)], I<{id}> : Indonesian, I<{ia}> :
11095 Interlingua (International Auxiliary Language Association), I<{ie}> :
11096 Interlingue, I<{iu}> : Inuktitut, I<{ik}> : Inupiaq, [I<{ira}> : Iranian
11097 (Other)], I<{ga}> : Irish, I<{mga}> : Middle Irish (900-1200), I<{sga}> :
11098 Old Irish (to 900), [I<{iro}> : Iroquoian languages], I<{it}> : Italian,
11099 I<{ja}> : Japanese, I<{jw}> : Javanese, I<{jrb}> : Judeo-Arabic, I<{jpr}> :
11100 Judeo-Persian, I<{kab}> : Kabyle, I<{kac}> : Kachin, I<{kl}> : Kalaallisut,
11101 I<{kam}> : Kamba, I<{kn}> : Kannada, I<{kau}> : Kanuri, I<{kaa}> :
11102 Kara-Kalpak, I<{kar}> : Karen, I<{ks}> : Kashmiri, I<{kaw}> : Kawi, I<{kk}>
11103 : Kazakh, I<{kha}> : Khasi, I<{km}> : Khmer, [I<{khi}> : Khoisan (Other)],
11104 I<{kho}> : Khotanese, I<{ki}> : Kikuyu, I<{kmb}> : Kimbundu, I<{rw}> :
11105 Kinyarwanda, I<{ky}> : Kirghiz, I<{i-klingon}> : Klingon, I<{kv}> : Komi,
11106 I<{kon}> : Kongo, I<{kok}> : Konkani, I<{ko}> : Korean, I<{kos}> :
11107 Kosraean, I<{kpe}> : Kpelle, I<{kro}> : Kru, I<{kj}> : Kuanyama, I<{kum}> :
11108 Kumyk, I<{ku}> : Kurdish, I<{kru}> : Kurukh, I<{kut}> : Kutenai, I<{lad}> :
11109 Ladino, I<{lah}> : Lahnda, I<{lam}> : Lamba, I<{lo}> : Lao, I<{la}> :
11110 Latin, I<{lv}> : Latvian, I<{lb}> : Letzeburgesch, I<{lez}> : Lezghian,
11111 I<{ln}> : Lingala, I<{lt}> : Lithuanian, I<{nds}> : Low German, I<{loz}> :
11112 Lozi, I<{lub}> : Luba-Katanga, I<{lua}> : Luba-Lulua, I<{lui}> : Luiseno,
11113 I<{lun}> : Lunda, I<{luo}> : Luo (Kenya and Tanzania), I<{lus}> : Lushai,
11114 I<{mk}> : Macedonian, I<{mad}> : Madurese, I<{mag}> : Magahi, I<{mai}> :
11115 Maithili, I<{mak}> : Makasar, I<{mg}> : Malagasy, I<{ms}> : Malay, I<{ml}>
11116 : Malayalam, I<{mt}> : Maltese, I<{mnc}> : Manchu, I<{mdr}> : Mandar,
11117 I<{man}> : Mandingo, I<{mni}> : Manipuri, [I<{mno}> : Manobo languages],
11118 I<{gv}> : Manx, I<{mi}> : Maori, I<{mr}> : Marathi, I<{chm}> : Mari,
11119 I<{mh}> : Marshall, I<{mwr}> : Marwari, I<{mas}> : Masai, [I<{myn}> : Mayan
11120 languages], I<{men}> : Mende, I<{mic}> : Micmac, I<{min}> : Minangkabau,
11121 I<{i-mingo}> : Mingo, [I<{mis}> : Miscellaneous languages], I<{moh}> :
11122 Mohawk, I<{mo}> : Moldavian, [I<{mkh}> : Mon-Khmer (Other)], I<{lol}> :
11123 Mongo, I<{mn}> : Mongolian, I<{mos}> : Mossi, [I<{mul}> : Multiple
11124 languages], [I<{mun}> : Munda languages], I<{nah}> : Nahuatl, I<{na}> :
11125 Nauru, I<{nv}> : Navajo, I<{nd}> : North Ndebele, I<{nr}> : South Ndebele,
11126 I<{ng}> : Ndonga, I<{ne}> : Nepali, I<{new}> : Newari, I<{nia}> : Nias,
11127 [I<{nic}> : Niger-Kordofanian (Other)], [I<{ssa}> : Nilo-Saharan (Other)],
11128 I<{niu}> : Niuean, I<{non}> : Old Norse, [I<{nai}> : North American
11129 Indian], I<{se}> : Northern Sami, I<{no}> : Norwegian, I<{nb}> : Norwegian
11130 BokmE<aring>l, I<{nn}> : Norwegian Nynorsk, [I<{nub}> : Nubian languages],
11131 I<{nym}> : Nyamwezi, I<{nyn}> : Nyankole, I<{nyo}> : Nyoro, I<{nzi}> :
11132 Nzima, I<{oc}> : Occitan (post 1500), I<{oji}> : Ojibwa, I<{or}> : Oriya,
11133 I<{om}> : Oromo, I<{osa}> : Osage, I<{os}> : Ossetian; Ossetic, [I<{oto}> :
11134 Otomian languages], I<{pal}> : Pahlavi, I<{i-pwn}> : Paiwan, I<{pau}> :
11135 Palauan, I<{pi}> : Pali, I<{pam}> : Pampanga, I<{pag}> : Pangasinan,
11136 I<{pa}> : Panjabi, I<{pap}> : Papiamento, [I<{paa}> : Papuan (Other)],
11137 I<{fa}> : Persian, I<{peo}> : Old Persian (ca.600-400 B.C.), [I<{phi}> :
11138 Philippine (Other)], I<{phn}> : Phoenician, I<{pon}> : Pohnpeian, I<{pl}> :
11139 Polish, I<{pt}> : Portuguese, [I<{pra}> : Prakrit languages], I<{pro}> :
11140 Old ProvenE<ccedil>al (to 1500), I<{ps}> : Pushto, I<{qu}> : Quechua,
11141 I<{rm}> : Raeto-Romance, I<{raj}> : Rajasthani, I<{rap}> : Rapanui,
11142 I<{rar}> : Rarotongan, [I<{qaa}>-I<qtz> : Reserved for local use.],
11143 [I<{roa}> : Romance (Other)], I<{ro}> : Romanian, I<{rom}> : Romany,
11144 I<{rn}> : Rundi, I<{ru}> : Russian, [I<{sal}> : Salishan languages],
11145 I<{sam}> : Samaritan Aramaic, [I<{smi}> : Sami languages (Other)], I<{sm}>
11146 : Samoan, I<{sad}> : Sandawe, I<{sg}> : Sango, I<{sa}> : Sanskrit, I<{sat}>
11147 : Santali, I<{sc}> : Sardinian, I<{sas}> : Sasak, I<{sco}> : Scots,
11148 I<{sel}> : Selkup, [I<{sem}> : Semitic (Other)], I<{sr}> : Serbian,
11149 I<{srr}> : Serer, I<{shn}> : Shan, I<{sn}> : Shona, I<{sid}> : Sidamo,
11150 I<{sgn-...}> : Sign Languages, I<{bla}> : Siksika, I<{sd}> : Sindhi,
11151 I<{si}> : Sinhalese, [I<{sit}> : Sino-Tibetan (Other)], [I<{sio}> : Siouan
11152 languages], I<{den}> : Slave (Athapascan), [I<{sla}> : Slavic (Other)],
11153 I<{sk}> : Slovak, I<{sl}> : Slovenian, I<{sog}> : Sogdian, I<{so}> :
11154 Somali, I<{son}> : Songhai, I<{snk}> : Soninke, I<{wen}> : Sorbian
11155 languages, I<{nso}> : Northern Sotho, I<{st}> : Southern Sotho, [I<{sai}> :
11156 South American Indian (Other)], I<{es}> : Spanish, I<{suk}> : Sukuma,
11157 I<{sux}> : Sumerian, I<{su}> : Sundanese, I<{sus}> : Susu, I<{sw}> :
11158 Swahili, I<{ss}> : Swati, I<{sv}> : Swedish, I<{syr}> : Syriac, I<{tl}> :
11159 Tagalog, I<{ty}> : Tahitian, [I<{tai}> : Tai (Other)], I<{tg}> : Tajik,
11160 I<{tmh}> : Tamashek, I<{ta}> : Tamil, I<{i-tao}> : Tao, I<{tt}> : Tatar,
11161 I<{i-tay}> : Tayal, I<{te}> : Telugu, I<{ter}> : Tereno, I<{tet}> : Tetum,
11162 I<{th}> : Thai, I<{bo}> : Tibetan, I<{tig}> : Tigre, I<{ti}> : Tigrinya,
11163 I<{tem}> : Timne, I<{tiv}> : Tiv, I<{tli}> : Tlingit, I<{tpi}> : Tok Pisin,
11164 I<{tkl}> : Tokelau, I<{tog}> : Tonga (Nyasa), I<{to}> : Tonga (Tonga
11165 Islands), I<{tsi}> : Tsimshian, I<{ts}> : Tsonga, I<{i-tsu}> : Tsou,
11166 I<{tn}> : Tswana, I<{tum}> : Tumbuka, I<{tr}> : Turkish, I<{ota}> : Ottoman
11167 Turkish (1500-1928), I<{tk}> : Turkmen, I<{tvl}> : Tuvalu, I<{tyv}> :
11168 Tuvinian, I<{tw}> : Twi, I<{uga}> : Ugaritic, I<{ug}> : Uighur, I<{uk}> :
11169 Ukrainian, I<{umb}> : Umbundu, I<{und}> : Undetermined, I<{ur}> : Urdu,
11170 I<{uz}> : Uzbek, I<{vai}> : Vai, I<{ven}> : Venda, I<{vi}> : Vietnamese,
11171 I<{vo}> : VolapE<uuml>k, I<{vot}> : Votic, [I<{wak}> : Wakashan languages],
11172 I<{wal}> : Walamo, I<{war}> : Waray, I<{was}> : Washo, I<{cy}> : Welsh,
11173 I<{wo}> : Wolof, I<{x-...}> : Unregistered (Private Use), I<{xh}> : Xhosa,
11174 I<{sah}> : Yakut, I<{yao}> : Yao, I<{yap}> : Yapese, I<{yi}> : Yiddish,
11175 I<{yo}> : Yoruba, [I<{ypk}> : Yupik languages], I<{znd}> : Zande, [I<{zap}>
11176 : Zapotec], I<{zen}> : Zenaga, I<{za}> : Zhuang, I<{zu}> : Zulu, I<{zun}> :
11177 Zuni
11178
11179 =item SEE ALSO
11180
11181 =item COPYRIGHT AND DISCLAIMER
11182
11183 =item AUTHOR
11184
11185 =back
11186
11187 =head2 IO - load various IO modules
11188
11189 =over 4
11190
11191 =item SYNOPSIS
11192
11193 =item DESCRIPTION
11194
11195 =back
11196
11197 =head2 IO::Dir - supply object methods for directory handles
11198
11199 =over 4
11200
11201 =item SYNOPSIS
11202
11203 =item DESCRIPTION
11204
11205 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
11206 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
11207
11208 =item SEE ALSO
11209
11210 =item AUTHOR
11211
11212 =item COPYRIGHT
11213
11214 =back
11215
11216 =head2 IO::File - supply object methods for filehandles
11217
11218 =over 4
11219
11220 =item SYNOPSIS
11221
11222 =item DESCRIPTION
11223
11224 =item CONSTRUCTOR
11225
11226 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
11227
11228 =item METHODS
11229
11230 open( FILENAME [,MODE [,PERMS]] )
11231
11232 =item SEE ALSO
11233
11234 =item HISTORY
11235
11236 =back
11237
11238 =head2 IO::Handle - supply object methods for I/O handles
11239
11240 =over 4
11241
11242 =item SYNOPSIS
11243
11244 =item DESCRIPTION
11245
11246 =item CONSTRUCTOR
11247
11248 new (), new_from_fd ( FD, MODE )
11249
11250 =item METHODS
11251
11252 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
11253 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
11254 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
11255 $io->blocking ( [ BOOL ] ), $io->untaint
11256
11257 =item NOTE
11258
11259 =item SEE ALSO
11260
11261 =item BUGS
11262
11263 =item HISTORY
11264
11265 =back
11266
11267 =head2 IO::Pipe - supply object methods for pipes
11268
11269 =over 4
11270
11271 =item SYNOPSIS
11272
11273 =item DESCRIPTION
11274
11275 =item CONSTRUCTOR
11276
11277 new ( [READER, WRITER] )
11278
11279 =item METHODS
11280
11281 reader ([ARGS]), writer ([ARGS]), handles ()
11282
11283 =item SEE ALSO
11284
11285 =item AUTHOR
11286
11287 =item COPYRIGHT
11288
11289 =back
11290
11291 =head2 IO::Poll - Object interface to system poll call
11292
11293 =over 4
11294
11295 =item SYNOPSIS
11296
11297 =item DESCRIPTION
11298
11299 =item METHODS
11300
11301 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
11302 IO ), handles( [ EVENT_MASK ] )
11303
11304 =item SEE ALSO
11305
11306 =item AUTHOR
11307
11308 =item COPYRIGHT
11309
11310 =back
11311
11312 =head2 IO::Seekable - supply seek based methods for I/O objects
11313
11314 =over 4
11315
11316 =item SYNOPSIS
11317
11318 =item DESCRIPTION
11319
11320 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
11321 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
11322 $io->tell
11323
11324 =item SEE ALSO
11325
11326 =item HISTORY
11327
11328 =back
11329
11330 =head2 IO::Select - OO interface to the select system call
11331
11332 =over 4
11333
11334 =item SYNOPSIS
11335
11336 =item DESCRIPTION
11337
11338 =item CONSTRUCTOR
11339
11340 new ( [ HANDLES ] )
11341
11342 =item METHODS
11343
11344 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
11345 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
11346 count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] )
11347
11348 =item EXAMPLE
11349
11350 =item AUTHOR
11351
11352 =item COPYRIGHT
11353
11354 =back
11355
11356 =head2 IO::Socket - Object interface to socket communications
11357
11358 =over 4
11359
11360 =item SYNOPSIS
11361
11362 =item DESCRIPTION
11363
11364 =item CONSTRUCTOR
11365
11366 new ( [ARGS] )
11367
11368 =item METHODS
11369
11370 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
11371 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
11372
11373 =item SEE ALSO
11374
11375 =item AUTHOR
11376
11377 =item COPYRIGHT
11378
11379 =back
11380
11381 =head2 IO::Socket::INET - Object interface for AF_INET domain sockets
11382
11383 =over 4
11384
11385 =item SYNOPSIS
11386
11387 =item DESCRIPTION
11388
11389 =item CONSTRUCTOR
11390
11391 new ( [ARGS] )
11392
11393 =over 4
11394
11395 =item METHODS
11396
11397 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
11398 ()
11399
11400 =back
11401
11402 =item SEE ALSO
11403
11404 =item AUTHOR
11405
11406 =item COPYRIGHT
11407
11408 =back
11409
11410 =head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
11411
11412 =over 4
11413
11414 =item SYNOPSIS
11415
11416 =item DESCRIPTION
11417
11418 =item CONSTRUCTOR
11419
11420 new ( [ARGS] )
11421
11422 =item METHODS
11423
11424 hostpath(), peerpath()
11425
11426 =item SEE ALSO
11427
11428 =item AUTHOR
11429
11430 =item COPYRIGHT
11431
11432 =back
11433
11434 =head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
11435 handles
11436
11437 =over 4
11438
11439 =item SYNOPSIS
11440
11441 =item DESCRIPTION
11442
11443 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
11444 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
11445
11446 =item SEE ALSO
11447
11448 =item AUTHOR
11449
11450 =item COPYRIGHT
11451
11452 =back
11453
11454 =head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
11455
11456 =over 4
11457
11458 =item SYNOPSIS
11459
11460 =item DESCRIPTION
11461
11462 =item CONSTRUCTOR
11463
11464 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
11465
11466 =item METHODS
11467
11468 open( FILENAME [,MODE [,PERMS]] )
11469
11470 =item SEE ALSO
11471
11472 =item HISTORY
11473
11474 =back
11475
11476 =head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
11477 handles
11478
11479 =over 4
11480
11481 =item SYNOPSIS
11482
11483 =item DESCRIPTION
11484
11485 =item CONSTRUCTOR
11486
11487 new (), new_from_fd ( FD, MODE )
11488
11489 =item METHODS
11490
11491 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
11492 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
11493 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
11494 $io->blocking ( [ BOOL ] ), $io->untaint
11495
11496 =item NOTE
11497
11498 =item SEE ALSO
11499
11500 =item BUGS
11501
11502 =item HISTORY
11503
11504 =back
11505
11506 =head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
11507
11508 =over 4
11509
11510 =item SYNOPSIS
11511
11512 =item DESCRIPTION
11513
11514 =item CONSTRUCTOR
11515
11516 new ( [READER, WRITER] )
11517
11518 =item METHODS
11519
11520 reader ([ARGS]), writer ([ARGS]), handles ()
11521
11522 =item SEE ALSO
11523
11524 =item AUTHOR
11525
11526 =item COPYRIGHT
11527
11528 =back
11529
11530 =head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
11531
11532 =over 4
11533
11534 =item SYNOPSIS
11535
11536 =item DESCRIPTION
11537
11538 =item METHODS
11539
11540 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
11541 IO ), handles( [ EVENT_MASK ] )
11542
11543 =item SEE ALSO
11544
11545 =item AUTHOR
11546
11547 =item COPYRIGHT
11548
11549 =back
11550
11551 =head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
11552 I/O objects
11553
11554 =over 4
11555
11556 =item SYNOPSIS
11557
11558 =item DESCRIPTION
11559
11560 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
11561 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
11562 $io->tell
11563
11564 =item SEE ALSO
11565
11566 =item HISTORY
11567
11568 =back
11569
11570 =head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
11571 call
11572
11573 =over 4
11574
11575 =item SYNOPSIS
11576
11577 =item DESCRIPTION
11578
11579 =item CONSTRUCTOR
11580
11581 new ( [ HANDLES ] )
11582
11583 =item METHODS
11584
11585 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
11586 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
11587 count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] )
11588
11589 =item EXAMPLE
11590
11591 =item AUTHOR
11592
11593 =item COPYRIGHT
11594
11595 =back
11596
11597 =head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
11598 communications
11599
11600 =over 4
11601
11602 =item SYNOPSIS
11603
11604 =item DESCRIPTION
11605
11606 =item CONSTRUCTOR
11607
11608 new ( [ARGS] )
11609
11610 =item METHODS
11611
11612 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
11613 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
11614
11615 =item SEE ALSO
11616
11617 =item AUTHOR
11618
11619 =item COPYRIGHT
11620
11621 =back
11622
11623 =head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
11624 AF_INET domain sockets
11625
11626 =over 4
11627
11628 =item SYNOPSIS
11629
11630 =item DESCRIPTION
11631
11632 =item CONSTRUCTOR
11633
11634 new ( [ARGS] )
11635
11636 =over 4
11637
11638 =item METHODS
11639
11640 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
11641 ()
11642
11643 =back
11644
11645 =item SEE ALSO
11646
11647 =item AUTHOR
11648
11649 =item COPYRIGHT
11650
11651 =back
11652
11653 =head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
11654 AF_UNIX domain sockets
11655
11656 =over 4
11657
11658 =item SYNOPSIS
11659
11660 =item DESCRIPTION
11661
11662 =item CONSTRUCTOR
11663
11664 new ( [ARGS] )
11665
11666 =item METHODS
11667
11668 hostpath(), peerpath()
11669
11670 =item SEE ALSO
11671
11672 =item AUTHOR
11673
11674 =item COPYRIGHT
11675
11676 =back
11677
11678 =head2 IPC::Msg - SysV Msg IPC object class
11679
11680 =over 4
11681
11682 =item SYNOPSIS
11683
11684 =item DESCRIPTION
11685
11686 =item METHODS
11687
11688 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
11689 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
11690 FLAGS ] ), stat
11691
11692 =item SEE ALSO
11693
11694 =item AUTHOR
11695
11696 =item COPYRIGHT
11697
11698 =back
11699
11700 =head2 IPC::Open2, open2 - open a process for both reading and writing
11701
11702 =over 4
11703
11704 =item SYNOPSIS
11705
11706 =item DESCRIPTION
11707
11708 =item WARNING 
11709
11710 =item SEE ALSO
11711
11712 =back
11713
11714 =head2 IPC::Open3, open3 - open a process for reading, writing, and error
11715 handling
11716
11717 =over 4
11718
11719 =item SYNOPSIS
11720
11721 =item DESCRIPTION
11722
11723 =item WARNING
11724
11725 =back
11726
11727 =head2 IPC::Semaphore - SysV Semaphore IPC object class
11728
11729 =over 4
11730
11731 =item SYNOPSIS
11732
11733 =item DESCRIPTION
11734
11735 =item METHODS
11736
11737 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
11738 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
11739 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
11740 , VALUE ), stat
11741
11742 =item SEE ALSO
11743
11744 =item AUTHOR
11745
11746 =item COPYRIGHT
11747
11748 =back
11749
11750 =head2 IPC::SysV - SysV IPC constants
11751
11752 =over 4
11753
11754 =item SYNOPSIS
11755
11756 =item DESCRIPTION
11757
11758 ftok( PATH, ID )
11759
11760 =item SEE ALSO
11761
11762 =item AUTHORS
11763
11764 =item COPYRIGHT
11765
11766 =back
11767
11768 =head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
11769
11770 =over 4
11771
11772 =item SYNOPSIS
11773
11774 =item DESCRIPTION
11775
11776 =item METHODS
11777
11778 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
11779 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
11780 FLAGS ] ), stat
11781
11782 =item SEE ALSO
11783
11784 =item AUTHOR
11785
11786 =item COPYRIGHT
11787
11788 =back
11789
11790 =head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
11791 class
11792
11793 =over 4
11794
11795 =item SYNOPSIS
11796
11797 =item DESCRIPTION
11798
11799 =item METHODS
11800
11801 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
11802 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
11803 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
11804 , VALUE ), stat
11805
11806 =item SEE ALSO
11807
11808 =item AUTHOR
11809
11810 =item COPYRIGHT
11811
11812 =back
11813
11814 =head2 List::Util - A selection of general-utility list subroutines
11815
11816 =over 4
11817
11818 =item SYNOPSIS
11819
11820 =item DESCRIPTION
11821
11822 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
11823 BLOCK LIST, sum LIST
11824
11825 =item SUGGESTED ADDITIONS
11826
11827 =item COPYRIGHT
11828
11829 =back
11830
11831 =head2 List::Utilib::List::Util, List::Util - A selection of
11832 general-utility list subroutines
11833
11834 =over 4
11835
11836 =item SYNOPSIS
11837
11838 =item DESCRIPTION
11839
11840 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
11841 BLOCK LIST, sum LIST
11842
11843 =item SUGGESTED ADDITIONS
11844
11845 =item COPYRIGHT
11846
11847 =back
11848
11849 =head2 List::Utilib::Scalar::Util, Scalar::Util - A selection of
11850 general-utility scalar subroutines
11851
11852 =over 4
11853
11854 =item SYNOPSIS
11855
11856 =item DESCRIPTION
11857
11858 blessed EXPR, dualvar NUM, STRING, isweak EXPR, readonly SCALAR, reftype
11859 EXPR, tainted EXPR, weaken REF
11860
11861 =item COPYRIGHT
11862
11863 =item BLATANT PLUG
11864
11865 =back
11866
11867 =head2 Locale::Constants - constants for Locale codes
11868
11869 =over 4
11870
11871 =item SYNOPSIS
11872
11873 =item DESCRIPTION
11874
11875 =item KNOWN BUGS AND LIMITATIONS
11876
11877 =item SEE ALSO
11878
11879 Locale::Language, Locale::Country, Locale::Currency
11880
11881 =item AUTHOR
11882
11883 =item COPYRIGHT
11884
11885 =back
11886
11887 =head2 Locale::Country - ISO codes for country identification (ISO 3166)
11888
11889 =over 4
11890
11891 =item SYNOPSIS
11892
11893 =back
11894
11895 =over 4
11896
11897 =item DESCRIPTION
11898
11899 B<alpha-2>, B<alpha-3>, B<numeric>
11900
11901 =back
11902
11903 =over 4
11904
11905 =item CONVERSION ROUTINES
11906
11907 code2country( CODE, [ CODESET ] ), country2code( STRING, [ CODESET ] ),
11908 country_code2code( CODE, CODESET, CODESET )
11909
11910 =back
11911
11912 =over 4
11913
11914 =item QUERY ROUTINES
11915
11916 C<all_country_codes( [ CODESET ] )>, C<all_country_names( [ CODESET ] )>
11917
11918 =back
11919
11920 =over 4
11921
11922 =item CODE ALIASING
11923
11924 =back
11925
11926 =over 4
11927
11928 =item EXAMPLES
11929
11930 =item DOMAIN NAMES
11931
11932 =item KNOWN BUGS AND LIMITATIONS
11933
11934 =item SEE ALSO
11935
11936 Locale::Language, Locale::Currency, ISO 3166,
11937 http://www.din.de/gremien/nas/nabd/iso3166ma/,
11938 http://www.egt.ie/standards/iso3166/iso3166-1-en.html,
11939 http://www.cia.gov/cia/publications/factbook/docs/app-f.html
11940
11941 =item AUTHOR
11942
11943 =item COPYRIGHT
11944
11945 =back
11946
11947 =head2 Locale::Currency - ISO three letter codes for currency
11948 identification (ISO 4217)
11949
11950 =over 4
11951
11952 =item SYNOPSIS
11953
11954 =back
11955
11956 =over 4
11957
11958 =item DESCRIPTION
11959
11960 XTS, XXX
11961
11962 =back
11963
11964 =over 4
11965
11966 =item CONVERSION ROUTINES
11967
11968 code2currency(), currency2code()
11969
11970 =back
11971
11972 =over 4
11973
11974 =item QUERY ROUTINES
11975
11976 C<all_currency_codes()>, C<all_currency_names()>
11977
11978 =back
11979
11980 =over 4
11981
11982 =item EXAMPLES
11983
11984 =item KNOWN BUGS AND LIMITATIONS
11985
11986 =item SEE ALSO
11987
11988 Locale::Country, ISO 4217:1995, http://www.bsi-global.com/iso4217currency
11989
11990 =item AUTHOR
11991
11992 =item COPYRIGHT
11993
11994 =back
11995
11996 =head2 Locale::Language - ISO two letter codes for language identification
11997 (ISO 639)
11998
11999 =over 4
12000
12001 =item SYNOPSIS
12002
12003 =back
12004
12005 =over 4
12006
12007 =item DESCRIPTION
12008
12009 =back
12010
12011 =over 4
12012
12013 =item CONVERSION ROUTINES
12014
12015 code2language(), language2code()
12016
12017 =back
12018
12019 =over 4
12020
12021 =item QUERY ROUTINES
12022
12023 C<all_language_codes()>, C<all_language_names()>
12024
12025 =back
12026
12027 =over 4
12028
12029 =item EXAMPLES
12030
12031 =item KNOWN BUGS AND LIMITATIONS
12032
12033 =item SEE ALSO
12034
12035 Locale::Country, Locale::Currency, ISO 639:1988 (E/F),
12036 http://lcweb.loc.gov/standards/iso639-2/langhome.html
12037
12038 =item AUTHOR
12039
12040 =item COPYRIGHT
12041
12042 =back
12043
12044 =head2 Locale::Maketext -- framework for localization
12045
12046 =over 4
12047
12048 =item SYNOPSIS
12049
12050 =item DESCRIPTION
12051
12052 =item QUICK OVERVIEW
12053
12054 =item METHODS
12055
12056 =over 4
12057
12058 =item Construction Methods
12059
12060 $lh = YourProjClass->get_handle( ...langtags... ) || die "lg-handle?";, $lh
12061 = YourProjClass->get_handleB<()> || die "lg-handle?";, $lh =
12062 YourProjClass::langname->new();, $lh->init();,
12063 YourProjClass->fallback_languages(),
12064 YourProjClass->fallback_language_classes()
12065
12066 =item The "maketext" Method
12067
12068 $lh->fail_with I<or> $lh->fail_with(I<PARAM>), $lh->failure_handler_auto
12069
12070 =item Utility Methods
12071
12072 $language->quant($number, $singular), $language->quant($number, $singular,
12073 $plural), $language->quant($number, $singular, $plural, $negative),
12074 $language->numf($number), $language->sprintf($format, @items),
12075 $language->language_tag(), $language->encoding()
12076
12077 =item Language Handle Attributes and Internals
12078
12079 =back
12080
12081 =item LANGUAGE CLASS HIERARCHIES
12082
12083 =item ENTRIES IN EACH LEXICON
12084
12085 =item BRACKET NOTATION
12086
12087 =item AUTO LEXICONS
12088
12089 =item CONTROLLING LOOKUP FAILURE
12090
12091 =item HOW TO USE MAKETEXT
12092
12093 =item SEE ALSO
12094
12095 =item COPYRIGHT AND DISCLAIMER
12096
12097 =item AUTHOR
12098
12099 =back
12100
12101 =head2 Locale::Maketext::TPJ13 -- article about software localization
12102
12103 =over 4
12104
12105 =item SYNOPSIS
12106
12107 =item DESCRIPTION
12108
12109 =item Localization and Perl: gettext breaks, Maketext fixes
12110
12111 =over 4
12112
12113 =item A Localization Horror Story: It Could Happen To You
12114
12115 =item The Linguistic View
12116
12117 =item Breaking gettext
12118
12119 =item Replacing gettext
12120
12121 =item Buzzwords: Abstraction and Encapsulation
12122
12123 =item Buzzword: Isomorphism
12124
12125 =item Buzzword: Inheritance
12126
12127 =item Buzzword: Concision
12128
12129 =item The Devil in the Details
12130
12131 =item The Proof in the Pudding: Localizing Web Sites
12132
12133 =item References
12134
12135 =back
12136
12137 =back
12138
12139 =head2 MIME::Base64 - Encoding and decoding of base64 strings
12140
12141 =over 4
12142
12143 =item SYNOPSIS
12144
12145 =item DESCRIPTION
12146
12147 encode_base64($str, [$eol]), decode_base64($str)
12148
12149 =item DIAGNOSTICS
12150
12151 Premature end of base64 data, Premature padding of base64 data
12152
12153 =item EXAMPLES
12154
12155 =item COPYRIGHT
12156
12157 =back
12158
12159 =head2 MIME::Base64::QuotedPrint, MIME::QuotedPrint - Encoding and decoding
12160 of quoted-printable strings
12161
12162 =over 4
12163
12164 =item SYNOPSIS
12165
12166 =item DESCRIPTION
12167
12168 encode_qp($str), decode_qp($str);
12169
12170 =item COPYRIGHT
12171
12172 =back
12173
12174 =head2 MIME::QuotedPrint - Encoding and decoding of quoted-printable
12175 strings
12176
12177 =over 4
12178
12179 =item SYNOPSIS
12180
12181 =item DESCRIPTION
12182
12183 encode_qp($str), decode_qp($str);
12184
12185 =item COPYRIGHT
12186
12187 =back
12188
12189 =head2 Math::BigFloat - Arbitrary length float math package
12190
12191 =over 4
12192
12193 =item SYNOPSIS
12194
12195 =item DESCRIPTION
12196
12197 number format, Error returns 'NaN', Division is computed to, Rounding is
12198 performed
12199
12200 =item BUGS
12201
12202 =item AUTHOR
12203
12204 =back
12205
12206 =head2 Math::BigInt - Arbitrary size integer math package
12207
12208 =over 4
12209
12210 =item SYNOPSIS
12211
12212 =item DESCRIPTION
12213
12214 Canonical notation, Input, Output
12215
12216 =item EXAMPLES
12217
12218 =item Autocreating constants
12219
12220 =item BUGS
12221
12222 =item AUTHOR
12223
12224 =back
12225
12226 =head2 Math::Complex - complex numbers and associated mathematical
12227 functions
12228
12229 =over 4
12230
12231 =item SYNOPSIS
12232
12233 =item DESCRIPTION
12234
12235 =item OPERATIONS
12236
12237 =item CREATION
12238
12239 =item STRINGIFICATION
12240
12241 =over 4
12242
12243 =item CHANGED IN PERL 5.6
12244
12245 =back
12246
12247 =item USAGE
12248
12249 =item ERRORS DUE TO DIVISION BY ZERO OR LOGARITHM OF ZERO
12250
12251 =item ERRORS DUE TO INDIGESTIBLE ARGUMENTS
12252
12253 =item BUGS
12254
12255 =item AUTHORS
12256
12257 =back
12258
12259 =head2 Math::Trig - trigonometric functions
12260
12261 =over 4
12262
12263 =item SYNOPSIS
12264
12265 =item DESCRIPTION
12266
12267 =item TRIGONOMETRIC FUNCTIONS
12268
12269 B<tan>
12270
12271 =over 4
12272
12273 =item ERRORS DUE TO DIVISION BY ZERO
12274
12275 =item SIMPLE (REAL) ARGUMENTS, COMPLEX RESULTS
12276
12277 =back
12278
12279 =item PLANE ANGLE CONVERSIONS
12280
12281 =item RADIAL COORDINATE CONVERSIONS
12282
12283 =over 4
12284
12285 =item COORDINATE SYSTEMS
12286
12287 =item 3-D ANGLE CONVERSIONS
12288
12289 cartesian_to_cylindrical, cartesian_to_spherical, cylindrical_to_cartesian,
12290 cylindrical_to_spherical, spherical_to_cartesian, spherical_to_cylindrical
12291
12292 =back
12293
12294 =item GREAT CIRCLE DISTANCES AND DIRECTIONS
12295
12296 =item EXAMPLES
12297
12298 =over 4
12299
12300 =item CAVEAT FOR GREAT CIRCLE FORMULAS
12301
12302 =back
12303
12304 =item BUGS
12305
12306 =item AUTHORS
12307
12308 =back
12309
12310 =head2 NDBM_File - Tied access to ndbm files
12311
12312 =over 4
12313
12314 =item SYNOPSIS
12315
12316 =item DESCRIPTION
12317
12318 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
12319
12320 =item DIAGNOSTICS
12321
12322 =over 4
12323
12324 =item C<ndbm store returned -1, errno 22, key "..." at ...>
12325
12326 =back
12327
12328 =item BUGS AND WARNINGS
12329
12330 =back
12331
12332 =head2 NEXT - Provide a pseudo-class NEXT that allows method redispatch
12333
12334 =over 4
12335
12336 =item SYNOPSIS
12337
12338 =item DESCRIPTION
12339
12340 =item AUTHOR
12341
12342 =item BUGS AND IRRITATIONS
12343
12344 =item COPYRIGHT
12345
12346 =back
12347
12348 =head2 Net::Ping - check a remote host for reachability
12349
12350 =over 4
12351
12352 =item SYNOPSIS
12353
12354 =item DESCRIPTION
12355
12356 icmp, udp, tcp, stream, external
12357
12358 =over 4
12359
12360 =item Functions
12361
12362 Net::Ping->new([$proto [, $def_timeout [, $bytes]]]);, $p->ping($host [,
12363 $timeout]);, $p->open($host);, $p->close();, pingecho($host [, $timeout]);
12364
12365 =back
12366
12367 =item NOTES
12368
12369 =back
12370
12371 =head2 Net::hostent - by-name interface to Perl's built-in gethost*()
12372 functions
12373
12374 =over 4
12375
12376 =item SYNOPSIS
12377
12378 =item DESCRIPTION
12379
12380 =item EXAMPLES
12381
12382 =item NOTE
12383
12384 =item AUTHOR
12385
12386 =back
12387
12388 =head2 Net::netent - by-name interface to Perl's built-in getnet*()
12389 functions
12390
12391 =over 4
12392
12393 =item SYNOPSIS
12394
12395 =item DESCRIPTION
12396
12397 =item EXAMPLES
12398
12399 =item NOTE
12400
12401 =item AUTHOR
12402
12403 =back
12404
12405 =head2 Net::protoent - by-name interface to Perl's built-in getproto*()
12406 functions
12407
12408 =over 4
12409
12410 =item SYNOPSIS
12411
12412 =item DESCRIPTION
12413
12414 =item NOTE
12415
12416 =item AUTHOR
12417
12418 =back
12419
12420 =head2 Net::servent - by-name interface to Perl's built-in getserv*()
12421 functions
12422
12423 =over 4
12424
12425 =item SYNOPSIS
12426
12427 =item DESCRIPTION
12428
12429 =item EXAMPLES
12430
12431 =item NOTE
12432
12433 =item AUTHOR
12434
12435 =back
12436
12437 =head2 O - Generic interface to Perl Compiler backends
12438
12439 =over 4
12440
12441 =item SYNOPSIS
12442
12443 =item DESCRIPTION
12444
12445 =item CONVENTIONS
12446
12447 =item IMPLEMENTATION
12448
12449 =item AUTHOR
12450
12451 =back
12452
12453 =head2 ODBM_File - Tied access to odbm files
12454
12455 =over 4
12456
12457 =item SYNOPSIS
12458
12459 =item DESCRIPTION
12460
12461 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
12462
12463 =item DIAGNOSTICS
12464
12465 =over 4
12466
12467 =item C<odbm store returned -1, errno 22, key "..." at ...>
12468
12469 =back
12470
12471 =item BUGS AND WARNINGS
12472
12473 =back
12474
12475 =head2 Opcode - Disable named opcodes when compiling perl code
12476
12477 =over 4
12478
12479 =item SYNOPSIS
12480
12481 =item DESCRIPTION
12482
12483 =item NOTE
12484
12485 =item WARNING
12486
12487 =item Operator Names and Operator Lists
12488
12489 an operator name (opname), an operator tag name (optag), a negated opname
12490 or optag, an operator set (opset)
12491
12492 =item Opcode Functions
12493
12494 opcodes, opset (OP, ...), opset_to_ops (OPSET), opset_to_hex (OPSET),
12495 full_opset, empty_opset, invert_opset (OPSET), verify_opset (OPSET, ...),
12496 define_optag (OPTAG, OPSET), opmask_add (OPSET), opmask, opdesc (OP, ...),
12497 opdump (PAT)
12498
12499 =item Manipulating Opsets
12500
12501 =item TO DO (maybe)
12502
12503 =back
12504
12505 =over 4
12506
12507 =item Predefined Opcode Tags
12508
12509 :base_core, :base_mem, :base_loop, :base_io, :base_orig, :base_math,
12510 :base_thread, :default, :filesys_read, :sys_db, :browse, :filesys_open,
12511 :filesys_write, :subprocess, :ownprocess, :others, :still_to_be_decided,
12512 :dangerous
12513
12514 =item SEE ALSO
12515
12516 =item AUTHORS
12517
12518 =back
12519
12520 =head2 Opcode::Safe, Safe - Compile and execute code in restricted
12521 compartments
12522
12523 =over 4
12524
12525 =item SYNOPSIS
12526
12527 =item DESCRIPTION
12528
12529 a new namespace, an operator mask
12530
12531 =item WARNING
12532
12533 =over 4
12534
12535 =item RECENT CHANGES
12536
12537 =item Methods in class Safe
12538
12539 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
12540 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
12541 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
12542 root (NAMESPACE), mask (MASK)
12543
12544 =item Some Safety Issues
12545
12546 Memory, CPU, Snooping, Signals, State Changes
12547
12548 =item AUTHOR
12549
12550 =back
12551
12552 =back
12553
12554 =head2 Opcode::ops, ops - Perl pragma to restrict unsafe operations when
12555 compiling
12556
12557 =over 4
12558
12559 =item SYNOPSIS  
12560
12561 =item DESCRIPTION
12562
12563 =item SEE ALSO
12564
12565 =back
12566
12567 =head2 POSIX - Perl interface to IEEE Std 1003.1
12568
12569 =over 4
12570
12571 =item SYNOPSIS
12572
12573 =item DESCRIPTION
12574
12575 =item NOTE
12576
12577 =item CAVEATS 
12578
12579 =item FUNCTIONS
12580
12581 _exit, abort, abs, access, acos, alarm, asctime, asin, assert, atan, atan2,
12582 atexit, atof, atoi, atol, bsearch, calloc, ceil, chdir, chmod, chown,
12583 clearerr, clock, close, closedir, cos, cosh, creat, ctermid, ctime,
12584 cuserid, difftime, div, dup, dup2, errno, execl, execle, execlp, execv,
12585 execve, execvp, exit, exp, fabs, fclose, fcntl, fdopen, feof, ferror,
12586 fflush, fgetc, fgetpos, fgets, fileno, floor, fmod, fopen, fork, fpathconf,
12587 fprintf, fputc, fputs, fread, free, freopen, frexp, fscanf, fseek, fsetpos,
12588 fstat, ftell, fwrite, getc, getchar, getcwd, getegid, getenv, geteuid,
12589 getgid, getgrgid, getgrnam, getgroups, getlogin, getpgrp, getpid, getppid,
12590 getpwnam, getpwuid, gets, getuid, gmtime, isalnum, isalpha, isatty,
12591 iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace, isupper,
12592 isxdigit, kill, labs, ldexp, ldiv, link, localeconv, localtime, log, log10,
12593 longjmp, lseek, malloc, mblen, mbstowcs, mbtowc, memchr, memcmp, memcpy,
12594 memmove, memset, mkdir, mkfifo, mktime, modf, nice, offsetof, open,
12595 opendir, pathconf, pause, perror, pipe, pow, printf, putc, putchar, puts,
12596 qsort, raise, rand, read, readdir, realloc, remove, rename, rewind,
12597 rewinddir, rmdir, scanf, setgid, setjmp, setlocale, setpgid, setsid,
12598 setuid, sigaction, siglongjmp, sigpending, sigprocmask, sigsetjmp,
12599 sigsuspend, sin, sinh, sleep, sprintf, sqrt, srand, sscanf, stat, strcat,
12600 strchr, strcmp, strcoll, strcpy, strcspn, strerror, strftime, strlen,
12601 strncat, strncmp, strncpy, strpbrk, strrchr, strspn, strstr, strtod,
12602 strtok, strtol, strtoul, strxfrm, sysconf, system, tan, tanh, tcdrain,
12603 tcflow, tcflush, tcgetpgrp, tcsendbreak, tcsetpgrp, time, times, tmpfile,
12604 tmpnam, tolower, toupper, ttyname, tzname, tzset, umask, uname, ungetc,
12605 unlink, utime, vfprintf, vprintf, vsprintf, wait, waitpid, wcstombs,
12606 wctomb, write
12607
12608 =item CLASSES
12609
12610 =over 4
12611
12612 =item POSIX::SigAction
12613
12614 new
12615
12616 =item POSIX::SigSet
12617
12618 new, addset, delset, emptyset, fillset, ismember
12619
12620 =item POSIX::Termios
12621
12622 new, getattr, getcc, getcflag, getiflag, getispeed, getlflag, getoflag,
12623 getospeed, setattr, setcc, setcflag, setiflag, setispeed, setlflag,
12624 setoflag, setospeed, Baud rate values, Terminal interface values, c_cc
12625 field values, c_cflag field values, c_iflag field values, c_lflag field
12626 values, c_oflag field values
12627
12628 =back
12629
12630 =item PATHNAME CONSTANTS
12631
12632 Constants
12633
12634 =item POSIX CONSTANTS
12635
12636 Constants
12637
12638 =item SYSTEM CONFIGURATION
12639
12640 Constants
12641
12642 =item ERRNO
12643
12644 Constants
12645
12646 =item FCNTL
12647
12648 Constants
12649
12650 =item FLOAT
12651
12652 Constants
12653
12654 =item LIMITS
12655
12656 Constants
12657
12658 =item LOCALE
12659
12660 Constants
12661
12662 =item MATH
12663
12664 Constants
12665
12666 =item SIGNAL
12667
12668 Constants
12669
12670 =item STAT
12671
12672 Constants, Macros
12673
12674 =item STDLIB
12675
12676 Constants
12677
12678 =item STDIO
12679
12680 Constants
12681
12682 =item TIME
12683
12684 Constants
12685
12686 =item UNISTD
12687
12688 Constants
12689
12690 =item WAIT
12691
12692 Constants, Macros
12693
12694 =back
12695
12696 =head2 PerlIO - On demand loader for PerlIO layers and root of PerlIO::*
12697 name space
12698
12699 =over 4
12700
12701 =item SYNOPSIS
12702
12703 =item DESCRIPTION
12704
12705 unix, stdio, perlio, crlf, utf8, raw
12706
12707 =over 4
12708
12709 =item Defaults and how to override them
12710
12711 =back
12712
12713 =item AUTHOR
12714
12715 =item SEE ALSO
12716
12717 =back
12718
12719 =head2 PerlIO::Scalar - support module for in-memory IO.
12720
12721 =over 4
12722
12723 =item SYNOPSIS
12724
12725 =item DESCRIPTION
12726
12727 =back
12728
12729 =head2 PerlIO::Via - Helper class for PerlIO layers implemented in perl
12730
12731 =over 4
12732
12733 =item SYNOPSIS
12734
12735 =item DESCRIPTION
12736
12737 $class->PUSHED([$mode][,$fh]), $obj->POPPED([$fh]),
12738 $class->OPEN($path,$mode[,$fh]), $class->FDOPEN($fd),
12739 $class->SYSOPEN($path,$imode,$perm,$fh), $obj->FILENO($fh),
12740 $obj->READ($buffer,$len,$fh), $obj->WRITE($buffer,$fh), $obj->FILL($fh),
12741 $obj->CLOSE($fh), $obj->SEEK($posn,$whence,$fh), $obj->TELL($fh),
12742 $obj->UNREAD($buffer,$fh), $obj->FLUSH($fh), $obj->SETLINEBUF($fh),
12743 $obj->CLEARERR($fh), $obj->ERROR($fh), $obj->EOF($fh)
12744
12745 =back
12746
12747 =head2 Pod::Checker, podchecker() - check pod documents for syntax errors
12748
12749 =over 4
12750
12751 =item SYNOPSIS
12752
12753 =item OPTIONS/ARGUMENTS
12754
12755 =over 4
12756
12757 =item podchecker()
12758
12759 B<-warnings> =E<gt> I<val>
12760
12761 =back
12762
12763 =item DESCRIPTION
12764
12765 =item DIAGNOSTICS
12766
12767 =over 4
12768
12769 =item Errors
12770
12771 empty =headn, =over on line I<N> without closing =back, =item without
12772 previous =over, =back without previous =over, No argument for =begin, =end
12773 without =begin, Nested =begin's, =for without formatter specification,
12774 unresolved internal link I<NAME>, Unknown command "I<CMD>", Unknown
12775 interior-sequence "I<SEQ>", nested commands
12776 I<CMD>E<lt>...I<CMD>E<lt>...E<gt>...E<gt>, garbled entity I<STRING>, Entity
12777 number out of range, malformed link LE<lt>E<gt>, nonempty ZE<lt>E<gt>,
12778 empty XE<lt>E<gt>, Spurious text after =pod / =cut, Spurious character(s)
12779 after =back
12780
12781 =item Warnings
12782
12783 multiple occurence of link target I<name>, line containing nothing but
12784 whitespace in paragraph, file does not start with =head, previous =item has
12785 no contents, preceding non-item paragraph(s), =item type mismatch (I<one>
12786 vs. I<two>), I<N> unescaped C<E<lt>E<gt>> in paragraph, Unknown entity, No
12787 items in =over, No argument for =item, empty section in previous paragraph,
12788 Verbatim paragraph in NAME section
12789
12790 =item Hyperlinks
12791
12792 ignoring leading/trailing whitespace in link, (section) in '$page'
12793 deprecated, alternative text/node '%s' contains non-escaped | or /
12794
12795 =back
12796
12797 =item RETURN VALUE
12798
12799 =item EXAMPLES
12800
12801 =item INTERFACE
12802
12803 =back
12804
12805 C<Pod::Checker-E<gt>new( %options )>
12806
12807 C<$checker-E<gt>poderror( @args )>, C<$checker-E<gt>poderror( {%opts},
12808 @args )>
12809
12810 C<$checker-E<gt>num_errors()>
12811
12812 C<$checker-E<gt>name()>
12813
12814 C<$checker-E<gt>node()>
12815
12816 C<$checker-E<gt>idx()>
12817
12818 C<$checker-E<gt>hyperlink()>
12819
12820 =over 4
12821
12822 =item AUTHOR
12823
12824 =back
12825
12826 =head2 Pod::Find - find POD documents in directory trees
12827
12828 =over 4
12829
12830 =item SYNOPSIS
12831
12832 =item DESCRIPTION
12833
12834 =back
12835
12836 =over 4
12837
12838 =item C<pod_find( { %opts } , @directories )>
12839
12840 C<-verbose =E<gt> 1>, C<-perl =E<gt> 1>, C<-script =E<gt> 1>, C<-inc =E<gt>
12841 1>
12842
12843 =back
12844
12845 =over 4
12846
12847 =item C<simplify_name( $str )>
12848
12849 =back
12850
12851 =over 4
12852
12853 =item C<pod_where( { %opts }, $pod )>
12854
12855 C<-inc =E<gt> 1>, C<-dirs =E<gt> [ $dir1, $dir2, ... ]>, C<-verbose =E<gt>
12856 1>
12857
12858 =back
12859
12860 =over 4
12861
12862 =item C<contains_pod( $file , $verbose )>
12863
12864 =back
12865
12866 =over 4
12867
12868 =item AUTHOR
12869
12870 =item SEE ALSO
12871
12872 =back
12873
12874 =head2 Pod::Html - module to convert pod files to HTML
12875
12876 =over 4
12877
12878 =item SYNOPSIS
12879
12880 =item DESCRIPTION
12881
12882 =item ARGUMENTS
12883
12884 backlink, cachedir, css, flush, header, help, htmldir, htmlroot, index,
12885 infile, libpods, netscape, outfile, podpath, podroot, quiet, recurse,
12886 title, verbose
12887
12888 =item EXAMPLE
12889
12890 =item ENVIRONMENT
12891
12892 =item AUTHOR
12893
12894 =item SEE ALSO
12895
12896 =item COPYRIGHT
12897
12898 =back
12899
12900 =head2 Pod::InputObjects - objects representing POD input paragraphs,
12901 commands, etc.
12902
12903 =over 4
12904
12905 =item SYNOPSIS
12906
12907 =item REQUIRES
12908
12909 =item EXPORTS
12910
12911 =item DESCRIPTION
12912
12913 package B<Pod::InputSource>, package B<Pod::Paragraph>, package
12914 B<Pod::InteriorSequence>, package B<Pod::ParseTree>
12915
12916 =back
12917
12918 =over 4
12919
12920 =item B<Pod::InputSource>
12921
12922 =back
12923
12924 =over 4
12925
12926 =item B<new()>
12927
12928 =back
12929
12930 =over 4
12931
12932 =item B<name()>
12933
12934 =back
12935
12936 =over 4
12937
12938 =item B<handle()>
12939
12940 =back
12941
12942 =over 4
12943
12944 =item B<was_cutting()>
12945
12946 =back
12947
12948 =over 4
12949
12950 =item B<Pod::Paragraph>
12951
12952 =back
12953
12954 =over 4
12955
12956 =item Pod::Paragraph-E<gt>B<new()>
12957
12958 =back
12959
12960 =over 4
12961
12962 =item $pod_para-E<gt>B<cmd_name()>
12963
12964 =back
12965
12966 =over 4
12967
12968 =item $pod_para-E<gt>B<text()>
12969
12970 =back
12971
12972 =over 4
12973
12974 =item $pod_para-E<gt>B<raw_text()>
12975
12976 =back
12977
12978 =over 4
12979
12980 =item $pod_para-E<gt>B<cmd_prefix()>
12981
12982 =back
12983
12984 =over 4
12985
12986 =item $pod_para-E<gt>B<cmd_separator()>
12987
12988 =back
12989
12990 =over 4
12991
12992 =item $pod_para-E<gt>B<parse_tree()>
12993
12994 =back
12995
12996 =over 4
12997
12998 =item $pod_para-E<gt>B<file_line()>
12999
13000 =back
13001
13002 =over 4
13003
13004 =item B<Pod::InteriorSequence>
13005
13006 =back
13007
13008 =over 4
13009
13010 =item Pod::InteriorSequence-E<gt>B<new()>
13011
13012 =back
13013
13014 =over 4
13015
13016 =item $pod_seq-E<gt>B<cmd_name()>
13017
13018 =back
13019
13020 =over 4
13021
13022 =item $pod_seq-E<gt>B<prepend()>
13023
13024 =back
13025
13026 =over 4
13027
13028 =item $pod_seq-E<gt>B<append()>
13029
13030 =back
13031
13032 =over 4
13033
13034 =item $pod_seq-E<gt>B<nested()>
13035
13036 =back
13037
13038 =over 4
13039
13040 =item $pod_seq-E<gt>B<raw_text()>
13041
13042 =back
13043
13044 =over 4
13045
13046 =item $pod_seq-E<gt>B<left_delimiter()>
13047
13048 =back
13049
13050 =over 4
13051
13052 =item $pod_seq-E<gt>B<right_delimiter()>
13053
13054 =back
13055
13056 =over 4
13057
13058 =item $pod_seq-E<gt>B<parse_tree()>
13059
13060 =back
13061
13062 =over 4
13063
13064 =item $pod_seq-E<gt>B<file_line()>
13065
13066 =back
13067
13068 =over 4
13069
13070 =item Pod::InteriorSequence::B<DESTROY()>
13071
13072 =back
13073
13074 =over 4
13075
13076 =item B<Pod::ParseTree>
13077
13078 =back
13079
13080 =over 4
13081
13082 =item Pod::ParseTree-E<gt>B<new()>
13083
13084 =back
13085
13086 =over 4
13087
13088 =item $ptree-E<gt>B<top()>
13089
13090 =back
13091
13092 =over 4
13093
13094 =item $ptree-E<gt>B<children()>
13095
13096 =back
13097
13098 =over 4
13099
13100 =item $ptree-E<gt>B<prepend()>
13101
13102 =back
13103
13104 =over 4
13105
13106 =item $ptree-E<gt>B<append()>
13107
13108 =back
13109
13110 =over 4
13111
13112 =item $ptree-E<gt>B<raw_text()>
13113
13114 =back
13115
13116 =over 4
13117
13118 =item Pod::ParseTree::B<DESTROY()>
13119
13120 =back
13121
13122 =over 4
13123
13124 =item SEE ALSO
13125
13126 =item AUTHOR
13127
13128 =back
13129
13130 =head2 Pod::LaTeX - Convert Pod data to formatted Latex
13131
13132 =over 4
13133
13134 =item SYNOPSIS
13135
13136 =item DESCRIPTION
13137
13138 =back
13139
13140 =over 4
13141
13142 =item OBJECT METHODS
13143
13144 C<initialize>
13145
13146 =back
13147
13148 =over 4
13149
13150 =item Data Accessors
13151
13152 B<AddPreamble>
13153
13154 =back
13155
13156 B<AddPostamble>
13157
13158 B<Head1Level>
13159
13160 B<Label>
13161
13162 B<LevelNoNum>
13163
13164 B<MakeIndex>
13165
13166 B<ReplaceNAMEwithSection>
13167
13168 B<StartWithNewPage>
13169
13170 B<TableOfContents>
13171
13172 B<UniqueLabels>
13173
13174 B<UserPreamble>
13175
13176 B<UserPostamble>
13177
13178 B<Lists>
13179
13180 =over 4
13181
13182 =item Subclassed methods
13183
13184 =back
13185
13186 B<begin_pod>
13187
13188 B<end_pod>
13189
13190 B<command>
13191
13192 B<verbatim>
13193
13194 B<textblock>
13195
13196 B<interior_sequence>
13197
13198 =over 4
13199
13200 =item List Methods
13201
13202 B<begin_list>
13203
13204 =back
13205
13206 B<end_list>
13207
13208 B<add_item>
13209
13210 =over 4
13211
13212 =item Methods for headings
13213
13214 B<head>
13215
13216 =back
13217
13218 =over 4
13219
13220 =item Internal methods
13221
13222 B<_output>
13223
13224 =back
13225
13226 B<_replace_special_chars>
13227
13228 B<_create_label>
13229
13230 B<_create_index>
13231
13232 B<_clean_latex_commands>
13233
13234 =over 4
13235
13236 =item NOTES
13237
13238 =item SEE ALSO
13239
13240 =item AUTHORS
13241
13242 =item COPYRIGHT
13243
13244 =item REVISION
13245
13246 =back
13247
13248 =head2 Pod::Man - Convert POD data to formatted *roff input
13249
13250 =over 4
13251
13252 =item SYNOPSIS
13253
13254 =item DESCRIPTION
13255
13256 center, date, fixed, fixedbold, fixeditalic, fixedbolditalic, quotes,
13257 release, section
13258
13259 =item DIAGNOSTICS
13260
13261 roff font should be 1 or 2 chars, not "%s", Invalid link %s, Invalid quote
13262 specification "%s", %s:%d: Unknown command paragraph "%s", Unknown escape
13263 EE<lt>%sE<gt>, Unknown sequence %s, %s: Unknown command paragraph "%s" on
13264 line %d, Unmatched =back
13265
13266 =item BUGS
13267
13268 =item SEE ALSO
13269
13270 =item AUTHOR
13271
13272 =back
13273
13274 =head2 Pod::ParseUtils - helpers for POD parsing and conversion
13275
13276 =over 4
13277
13278 =item SYNOPSIS
13279
13280 =item DESCRIPTION
13281
13282 =back
13283
13284 =over 4
13285
13286 =item Pod::List
13287
13288 Pod::List-E<gt>new()
13289
13290 =back
13291
13292 $list-E<gt>file()
13293
13294 $list-E<gt>start()
13295
13296 $list-E<gt>indent()
13297
13298 $list-E<gt>type()
13299
13300 $list-E<gt>rx()
13301
13302 $list-E<gt>item()
13303
13304 $list-E<gt>parent()
13305
13306 $list-E<gt>tag()
13307
13308 =over 4
13309
13310 =item Pod::Hyperlink
13311
13312 Pod::Hyperlink-E<gt>new()
13313
13314 =back
13315
13316 $link-E<gt>parse($string)
13317
13318 $link-E<gt>markup($string)
13319
13320 $link-E<gt>text()
13321
13322 $link-E<gt>warning()
13323
13324 $link-E<gt>file(), $link-E<gt>line()
13325
13326 $link-E<gt>page()
13327
13328 $link-E<gt>node()
13329
13330 $link-E<gt>alttext()
13331
13332 $link-E<gt>type()
13333
13334 $link-E<gt>link()
13335
13336 =over 4
13337
13338 =item Pod::Cache
13339
13340 Pod::Cache-E<gt>new()
13341
13342 =back
13343
13344 $cache-E<gt>item()
13345
13346 $cache-E<gt>find_page($name)
13347
13348 =over 4
13349
13350 =item Pod::Cache::Item
13351
13352 Pod::Cache::Item-E<gt>new()
13353
13354 =back
13355
13356 $cacheitem-E<gt>page()
13357
13358 $cacheitem-E<gt>description()
13359
13360 $cacheitem-E<gt>path()
13361
13362 $cacheitem-E<gt>file()
13363
13364 $cacheitem-E<gt>nodes()
13365
13366 $cacheitem-E<gt>find_node($name)
13367
13368 $cacheitem-E<gt>idx()
13369
13370 =over 4
13371
13372 =item AUTHOR
13373
13374 =item SEE ALSO
13375
13376 =back
13377
13378 =head2 Pod::Parser - base class for creating POD filters and translators
13379
13380 =over 4
13381
13382 =item SYNOPSIS
13383
13384 =item REQUIRES
13385
13386 =item EXPORTS
13387
13388 =item DESCRIPTION
13389
13390 =item QUICK OVERVIEW
13391
13392 =item PARSING OPTIONS
13393
13394 B<-want_nonPODs> (default: unset), B<-process_cut_cmd> (default: unset),
13395 B<-warnings> (default: unset)
13396
13397 =back
13398
13399 =over 4
13400
13401 =item RECOMMENDED SUBROUTINE/METHOD OVERRIDES
13402
13403 =back
13404
13405 =over 4
13406
13407 =item B<command()>
13408
13409 C<$cmd>, C<$text>, C<$line_num>, C<$pod_para>
13410
13411 =back
13412
13413 =over 4
13414
13415 =item B<verbatim()>
13416
13417 C<$text>, C<$line_num>, C<$pod_para>
13418
13419 =back
13420
13421 =over 4
13422
13423 =item B<textblock()>
13424
13425 C<$text>, C<$line_num>, C<$pod_para>
13426
13427 =back
13428
13429 =over 4
13430
13431 =item B<interior_sequence()>
13432
13433 =back
13434
13435 =over 4
13436
13437 =item OPTIONAL SUBROUTINE/METHOD OVERRIDES
13438
13439 =back
13440
13441 =over 4
13442
13443 =item B<new()>
13444
13445 =back
13446
13447 =over 4
13448
13449 =item B<initialize()>
13450
13451 =back
13452
13453 =over 4
13454
13455 =item B<begin_pod()>
13456
13457 =back
13458
13459 =over 4
13460
13461 =item B<begin_input()>
13462
13463 =back
13464
13465 =over 4
13466
13467 =item B<end_input()>
13468
13469 =back
13470
13471 =over 4
13472
13473 =item B<end_pod()>
13474
13475 =back
13476
13477 =over 4
13478
13479 =item B<preprocess_line()>
13480
13481 =back
13482
13483 =over 4
13484
13485 =item B<preprocess_paragraph()>
13486
13487 =back
13488
13489 =over 4
13490
13491 =item METHODS FOR PARSING AND PROCESSING
13492
13493 =back
13494
13495 =over 4
13496
13497 =item B<parse_text()>
13498
13499 B<-expand_seq> =E<gt> I<code-ref>|I<method-name>, B<-expand_text> =E<gt>
13500 I<code-ref>|I<method-name>, B<-expand_ptree> =E<gt>
13501 I<code-ref>|I<method-name>
13502
13503 =back
13504
13505 =over 4
13506
13507 =item B<interpolate()>
13508
13509 =back
13510
13511 =over 4
13512
13513 =item B<parse_paragraph()>
13514
13515 =back
13516
13517 =over 4
13518
13519 =item B<parse_from_filehandle()>
13520
13521 =back
13522
13523 =over 4
13524
13525 =item B<parse_from_file()>
13526
13527 =back
13528
13529 =over 4
13530
13531 =item ACCESSOR METHODS
13532
13533 =back
13534
13535 =over 4
13536
13537 =item B<errorsub()>
13538
13539 =back
13540
13541 =over 4
13542
13543 =item B<cutting()>
13544
13545 =back
13546
13547 =over 4
13548
13549 =item B<parseopts()>
13550
13551 =back
13552
13553 =over 4
13554
13555 =item B<output_file()>
13556
13557 =back
13558
13559 =over 4
13560
13561 =item B<output_handle()>
13562
13563 =back
13564
13565 =over 4
13566
13567 =item B<input_file()>
13568
13569 =back
13570
13571 =over 4
13572
13573 =item B<input_handle()>
13574
13575 =back
13576
13577 =over 4
13578
13579 =item B<input_streams()>
13580
13581 =back
13582
13583 =over 4
13584
13585 =item B<top_stream()>
13586
13587 =back
13588
13589 =over 4
13590
13591 =item PRIVATE METHODS AND DATA
13592
13593 =back
13594
13595 =over 4
13596
13597 =item B<_push_input_stream()>
13598
13599 =back
13600
13601 =over 4
13602
13603 =item B<_pop_input_stream()>
13604
13605 =back
13606
13607 =over 4
13608
13609 =item TREE-BASED PARSING
13610
13611 =item SEE ALSO
13612
13613 =item AUTHOR
13614
13615 =back
13616
13617 =head2 Pod::Plainer - Perl extension for converting Pod to old style Pod.
13618
13619 =over 4
13620
13621 =item SYNOPSIS
13622
13623 =item DESCRIPTION
13624
13625 =over 4
13626
13627 =item EXPORT
13628
13629 =back
13630
13631 =item AUTHOR
13632
13633 =item SEE ALSO
13634
13635 =back
13636
13637 =head2 Pod::Select, podselect() - extract selected sections of POD from
13638 input
13639
13640 =over 4
13641
13642 =item SYNOPSIS
13643
13644 =item REQUIRES
13645
13646 =item EXPORTS
13647
13648 =item DESCRIPTION
13649
13650 =item SECTION SPECIFICATIONS
13651
13652 =item RANGE SPECIFICATIONS
13653
13654 =back
13655
13656 =over 4
13657
13658 =item OBJECT METHODS
13659
13660 =back
13661
13662 =over 4
13663
13664 =item B<curr_headings()>
13665
13666 =back
13667
13668 =over 4
13669
13670 =item B<select()>
13671
13672 =back
13673
13674 =over 4
13675
13676 =item B<add_selection()>
13677
13678 =back
13679
13680 =over 4
13681
13682 =item B<clear_selections()>
13683
13684 =back
13685
13686 =over 4
13687
13688 =item B<match_section()>
13689
13690 =back
13691
13692 =over 4
13693
13694 =item B<is_selected()>
13695
13696 =back
13697
13698 =over 4
13699
13700 =item EXPORTED FUNCTIONS
13701
13702 =back
13703
13704 =over 4
13705
13706 =item B<podselect()>
13707
13708 B<-output>, B<-sections>, B<-ranges>
13709
13710 =back
13711
13712 =over 4
13713
13714 =item PRIVATE METHODS AND DATA
13715
13716 =back
13717
13718 =over 4
13719
13720 =item B<_compile_section_spec()>
13721
13722 =back
13723
13724 =over 4
13725
13726 =item $self->{_SECTION_HEADINGS}
13727
13728 =back
13729
13730 =over 4
13731
13732 =item $self->{_SELECTED_SECTIONS}
13733
13734 =back
13735
13736 =over 4
13737
13738 =item SEE ALSO
13739
13740 =item AUTHOR
13741
13742 =back
13743
13744 =head2 Pod::Text - Convert POD data to formatted ASCII text
13745
13746 =over 4
13747
13748 =item SYNOPSIS
13749
13750 =item DESCRIPTION
13751
13752 alt, indent, loose, quotes, sentence, width
13753
13754 =item DIAGNOSTICS
13755
13756 Bizarre space in item, Can't open %s for reading: %s, Invalid quote
13757 specification "%s", %s:%d: Unknown command paragraph "%s", Unknown escape:
13758 %s, Unknown sequence: %s, Unmatched =back
13759
13760 =item RESTRICTIONS
13761
13762 =item NOTES
13763
13764 =item SEE ALSO
13765
13766 =item AUTHOR
13767
13768 =back
13769
13770 =head2 Pod::Text::Color - Convert POD data to formatted color ASCII text
13771
13772 =over 4
13773
13774 =item SYNOPSIS
13775
13776 =item DESCRIPTION
13777
13778 =item BUGS
13779
13780 =item SEE ALSO
13781
13782 =item AUTHOR
13783
13784 =back
13785
13786 =head2 Pod::Text::Overstrike - Convert POD data to formatted overstrike
13787 text
13788
13789 =over 4
13790
13791 =item SYNOPSIS
13792
13793 =item DESCRIPTION
13794
13795 =item BUGS
13796
13797 =item SEE ALSO
13798
13799 =item AUTHOR
13800
13801 =back
13802
13803 =head2 Pod::Text::Termcap, Pod::Text::Color - Convert POD data to ASCII
13804 text with format escapes
13805
13806 =over 4
13807
13808 =item SYNOPSIS
13809
13810 =item DESCRIPTION
13811
13812 =item SEE ALSO
13813
13814 =item AUTHOR
13815
13816 =back
13817
13818 =head2 Pod::Usage, pod2usage() - print a usage message from embedded pod
13819 documentation
13820
13821 =over 4
13822
13823 =item SYNOPSIS
13824
13825 =item ARGUMENTS
13826
13827 C<-message>, C<-msg>, C<-exitval>, C<-verbose>, C<-output>, C<-input>,
13828 C<-pathlist>
13829
13830 =item DESCRIPTION
13831
13832 =item EXAMPLES
13833
13834 =over 4
13835
13836 =item Recommended Use
13837
13838 =back
13839
13840 =item CAVEATS
13841
13842 =item AUTHOR
13843
13844 =item ACKNOWLEDGEMENTS
13845
13846 =back
13847
13848 =head2 SDBM_File - Tied access to sdbm files
13849
13850 =over 4
13851
13852 =item SYNOPSIS
13853
13854 =item DESCRIPTION
13855
13856 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
13857
13858 =item DIAGNOSTICS
13859
13860 =over 4
13861
13862 =item C<sdbm store returned -1, errno 22, key "..." at ...>
13863
13864 =back
13865
13866 =item BUGS AND WARNINGS
13867
13868 =back
13869
13870 =head2 Safe - Compile and execute code in restricted compartments
13871
13872 =over 4
13873
13874 =item SYNOPSIS
13875
13876 =item DESCRIPTION
13877
13878 a new namespace, an operator mask
13879
13880 =item WARNING
13881
13882 =over 4
13883
13884 =item RECENT CHANGES
13885
13886 =item Methods in class Safe
13887
13888 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
13889 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
13890 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
13891 root (NAMESPACE), mask (MASK)
13892
13893 =item Some Safety Issues
13894
13895 Memory, CPU, Snooping, Signals, State Changes
13896
13897 =item AUTHOR
13898
13899 =back
13900
13901 =back
13902
13903 =head2 Scalar::Util - A selection of general-utility scalar subroutines
13904
13905 =over 4
13906
13907 =item SYNOPSIS
13908
13909 =item DESCRIPTION
13910
13911 blessed EXPR, dualvar NUM, STRING, isweak EXPR, readonly SCALAR, reftype
13912 EXPR, tainted EXPR, weaken REF
13913
13914 =item COPYRIGHT
13915
13916 =item BLATANT PLUG
13917
13918 =back
13919
13920 =head2 Search::Dict, look - search for key in dictionary file
13921
13922 =over 4
13923
13924 =item SYNOPSIS
13925
13926 =item DESCRIPTION
13927
13928 =back
13929
13930 =head2 SelectSaver - save and restore selected file handle
13931
13932 =over 4
13933
13934 =item SYNOPSIS
13935
13936 =item DESCRIPTION
13937
13938 =back
13939
13940 =head2 SelfLoader - load functions only on demand
13941
13942 =over 4
13943
13944 =item SYNOPSIS
13945
13946 =item DESCRIPTION
13947
13948 =over 4
13949
13950 =item The __DATA__ token
13951
13952 =item SelfLoader autoloading
13953
13954 =item Autoloading and package lexicals
13955
13956 =item SelfLoader and AutoLoader
13957
13958 =item __DATA__, __END__, and the FOOBAR::DATA filehandle.
13959
13960 =item Classes and inherited methods.
13961
13962 =back
13963
13964 =item Multiple packages and fully qualified subroutine names
13965
13966 =back
13967
13968 =head2 Shell - run shell commands transparently within perl
13969
13970 =over 4
13971
13972 =item SYNOPSIS
13973
13974 =item DESCRIPTION
13975
13976 =over 4
13977
13978 =item OBJECT ORIENTED SYNTAX
13979
13980 =back
13981
13982 =item AUTHOR
13983
13984 =back
13985
13986 =head2 Socket, sockaddr_in, sockaddr_un, inet_aton, inet_ntoa - load the C
13987 socket.h defines and structure manipulators 
13988
13989 =over 4
13990
13991 =item SYNOPSIS
13992
13993 =item DESCRIPTION
13994
13995 inet_aton HOSTNAME, inet_ntoa IP_ADDRESS, INADDR_ANY, INADDR_BROADCAST,
13996 INADDR_LOOPBACK, INADDR_NONE, sockaddr_in PORT, ADDRESS, sockaddr_in
13997 SOCKADDR_IN, pack_sockaddr_in PORT, IP_ADDRESS, unpack_sockaddr_in
13998 SOCKADDR_IN, sockaddr_un PATHNAME, sockaddr_un SOCKADDR_UN,
13999 pack_sockaddr_un PATH, unpack_sockaddr_un SOCKADDR_UN
14000
14001 =back
14002
14003 =head2 Storable - persistency for perl data structures
14004
14005 =over 4
14006
14007 =item SYNOPSIS
14008
14009 =item DESCRIPTION
14010
14011 =item MEMORY STORE
14012
14013 =item ADVISORY LOCKING
14014
14015 =item SPEED
14016
14017 =item CANONICAL REPRESENTATION
14018
14019 =item ERROR REPORTING
14020
14021 =item WIZARDS ONLY
14022
14023 =over 4
14024
14025 =item Hooks
14026
14027 C<STORABLE_freeze> I<obj>, I<cloning>, C<STORABLE_thaw> I<obj>, I<cloning>,
14028 I<serialized>, ..
14029
14030 =item Predicates
14031
14032 C<Storable::last_op_in_netorder>, C<Storable::is_storing>,
14033 C<Storable::is_retrieving>
14034
14035 =item Recursion
14036
14037 =item Deep Cloning
14038
14039 =back
14040
14041 =item EXAMPLES
14042
14043 =item WARNING
14044
14045 =item BUGS
14046
14047 =item CREDITS
14048
14049 =item TRANSLATIONS
14050
14051 =item AUTHOR
14052
14053 =item SEE ALSO
14054
14055 =back
14056
14057 =head2 Switch - A switch statement for Perl
14058
14059 =over 4
14060
14061 =item VERSION
14062
14063 =item SYNOPSIS
14064
14065 =item BACKGROUND
14066
14067 =item DESCRIPTION
14068
14069 =over 4
14070
14071 =item Allowing fall-through
14072
14073 =item Automating fall-through
14074
14075 =item Higher-order Operations
14076
14077 =back
14078
14079 =item DEPENDENCIES
14080
14081 =item AUTHOR
14082
14083 =item BUGS
14084
14085 =item COPYRIGHT
14086
14087 =back
14088
14089 =head2 Symbol - manipulate Perl symbols and their names
14090
14091 =over 4
14092
14093 =item SYNOPSIS
14094
14095 =item DESCRIPTION
14096
14097 =back
14098
14099 =head2 Sys::Hostname - Try every conceivable way to get hostname
14100
14101 =over 4
14102
14103 =item SYNOPSIS
14104
14105 =item DESCRIPTION
14106
14107 =item AUTHOR
14108
14109 =back
14110
14111 =head2 Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl
14112 interface to the UNIX syslog(3) calls
14113
14114 =over 4
14115
14116 =item SYNOPSIS
14117
14118 =item DESCRIPTION
14119
14120 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
14121 setlogmask $mask_priority, setlogsock $sock_type (added in 5.004_02),
14122 closelog
14123
14124 =item EXAMPLES
14125
14126 =item SEE ALSO
14127
14128 =item AUTHOR
14129
14130 =back
14131
14132 =head2 Syslog::Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog -
14133 Perl interface to the UNIX syslog(3) calls
14134
14135 =over 4
14136
14137 =item SYNOPSIS
14138
14139 =item DESCRIPTION
14140
14141 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
14142 setlogmask $mask_priority, setlogsock $sock_type (added in 5.004_02),
14143 closelog
14144
14145 =item EXAMPLES
14146
14147 =item SEE ALSO
14148
14149 =item AUTHOR
14150
14151 =back
14152
14153 =head2 Term::ANSIColor - Color screen output using ANSI escape sequences
14154
14155 =over 4
14156
14157 =item SYNOPSIS
14158
14159 =item DESCRIPTION
14160
14161 =item DIAGNOSTICS
14162
14163 Invalid attribute name %s, Name "%s" used only once: possible typo, No
14164 comma allowed after filehandle, Bareword "%s" not allowed while "strict
14165 subs" in use
14166
14167 =item RESTRICTIONS
14168
14169 =item NOTES
14170
14171 =item AUTHORS
14172
14173 =back
14174
14175 =head2 Term::Cap - Perl termcap interface
14176
14177 =over 4
14178
14179 =item SYNOPSIS
14180
14181 =item DESCRIPTION
14182
14183 =item EXAMPLES
14184
14185 =back
14186
14187 =head2 Term::Complete - Perl word completion module
14188
14189 =over 4
14190
14191 =item SYNOPSIS
14192
14193 =item DESCRIPTION
14194
14195 E<lt>tabE<gt>, ^D, ^U, E<lt>delE<gt>, E<lt>bsE<gt>
14196
14197 =item DIAGNOSTICS
14198
14199 =item BUGS
14200
14201 =item AUTHOR
14202
14203 =back
14204
14205 =head2 Term::ReadLine - Perl interface to various C<readline> packages. If
14206 no real package is found, substitutes stubs instead of basic functions.
14207
14208 =over 4
14209
14210 =item SYNOPSIS
14211
14212 =item DESCRIPTION
14213
14214 =item Minimal set of supported functions
14215
14216 C<ReadLine>, C<new>, C<readline>, C<addhistory>, C<IN>, $C<OUT>,
14217 C<MinLine>, C<findConsole>, Attribs, C<Features>
14218
14219 =item Additional supported functions
14220
14221 C<tkRunning>, C<ornaments>, C<newTTY>
14222
14223 =item EXPORTS
14224
14225 =item ENVIRONMENT
14226
14227 =item CAVEATS
14228
14229 =back
14230
14231 =head2 Test - provides a simple framework for writing test scripts
14232
14233 =over 4
14234
14235 =item SYNOPSIS
14236
14237 =item DESCRIPTION
14238
14239 =over 4
14240
14241 =item Functions
14242
14243 B<plan>
14244
14245 =back
14246
14247 =back
14248
14249 B<_to_value>
14250
14251 B<ok>
14252
14253 =over 4
14254
14255 =item TEST TYPES
14256
14257 NORMAL TESTS, SKIPPED TESTS, TODO TESTS
14258
14259 =item ONFAIL
14260
14261 =item BUGS and CAVEATS
14262
14263 =item TODO
14264
14265 =item SEE ALSO
14266
14267 =item AUTHOR
14268
14269 =back
14270
14271 =head2 Test::Harness - run perl standard test scripts with statistics
14272
14273 =over 4
14274
14275 =item SYNOPSIS
14276
14277 =item DESCRIPTION
14278
14279 =over 4
14280
14281 =item The test script output
14282
14283 B<'1..M'>, B<'ok', 'not ok'.  Ok?>, B<test numbers>,
14284 B<$Test::Harness::verbose>, B<$Test::Harness::switches>, B<Skipping tests>,
14285 B<Todo tests>, B<Bail out!>, B<Comments>, B<Anything else>
14286
14287 =item Failure
14288
14289 B<Failed Test>, B<Stat>, B<Wstat>, B<Total>, B<Fail>, B<Failed>, B<List of
14290 Failed>
14291
14292 =item Functions
14293
14294 B<runtests>
14295
14296 =back
14297
14298 =back
14299
14300 B<_globdir>
14301
14302 B<_run_all_tests>
14303
14304 B<_mk_leader>
14305
14306 =over 4
14307
14308 =item EXPORT
14309
14310 =item DIAGNOSTICS
14311
14312 C<All tests successful.\nFiles=%d,  Tests=%d, %s>, C<FAILED tests
14313 %s\n\tFailed %d/%d tests, %.2f%% okay.>, C<Test returned status %d (wstat
14314 %d)>, C<Failed 1 test, %.2f%% okay. %s>, C<Failed %d/%d tests, %.2f%% okay.
14315 %s>, C<FAILED--Further testing stopped%s>
14316
14317 =item ENVIRONMENT
14318
14319 C<HARNESS_IGNORE_EXITCODE>, C<HARNESS_NOTTY>, C<HARNESS_COMPILE_TEST>,
14320 C<HARNESS_FILELEAK_IN_DIR>, C<HARNESS_PERL_SWITCHES>, C<HARNESS_COLUMNS>,
14321 C<HARNESS_ACTIVE>
14322
14323 =item EXAMPLE
14324
14325 =item SEE ALSO
14326
14327 =item AUTHORS
14328
14329 =item TODO
14330
14331 =item BUGS
14332
14333 =back
14334
14335 =head2 Text::Abbrev, abbrev - create an abbreviation table from a list
14336
14337 =over 4
14338
14339 =item SYNOPSIS
14340
14341 =item DESCRIPTION
14342
14343 =item EXAMPLE
14344
14345 =back
14346
14347 =head2 Text::Balanced - Extract delimited text sequences from strings.
14348
14349 =over 4
14350
14351 =item SYNOPSIS
14352
14353 =item DESCRIPTION
14354
14355 =over 4
14356
14357 =item General behaviour in list contexts
14358
14359 [0], [1], [2]
14360
14361 =item General behaviour in scalar and void contexts
14362
14363 =item A note about prefixes
14364
14365 =item C<extract_delimited>
14366
14367 =item C<extract_bracketed>
14368
14369 =item C<extract_tagged>
14370
14371 C<reject =E<gt> $listref>, C<ignore =E<gt> $listref>, C<fail =E<gt> $str>,
14372 [0], [1], [2], [3], [4], [5]
14373
14374 =item C<gen_extract_tagged>
14375
14376 =item C<extract_quotelike>
14377
14378 [0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10]
14379
14380 =item C<extract_quotelike> and "here documents"
14381
14382 [0], [1], [2], [3], [4], [5], [6], [7..10]
14383
14384 =item C<extract_codeblock>
14385
14386 =item C<extract_multiple>
14387
14388 =item C<gen_delimited_pat>
14389
14390 =back
14391
14392 =item DIAGNOSTICS
14393
14394  C<Did not find a suitable bracket: "%s">,  C<Did not find prefix: /%s/>, 
14395 C<Did not find opening bracket after prefix: "%s">,  C<No quotelike
14396 operator found after prefix: "%s">,  C<Unmatched closing bracket: "%c">, 
14397 C<Unmatched opening bracket(s): "%s">, C<Unmatched embedded quote (%s)>,
14398 C<Did not find closing delimiter to match '%s'>,  C<Mismatched closing
14399 bracket: expected "%c" but found "%s">,  C<No block delimiter found after
14400 quotelike "%s">, C<Did not find leading dereferencer>, C<Bad identifier
14401 after dereferencer>, C<Did not find expected opening bracket at %s>,
14402 C<Improperly nested codeblock at %s>,  C<Missing second block for quotelike
14403 "%s">, C<No match found for opening bracket>, C<Did not find opening tag:
14404 /%s/>, C<Unable to construct closing tag to match: /%s/>, C<Found invalid
14405 nested tag: %s>, C<Found unbalanced nested tag: %s>, C<Did not find closing
14406 tag>
14407
14408 =item AUTHOR
14409
14410 =item BUGS AND IRRITATIONS
14411
14412 =item COPYRIGHT
14413
14414 =back
14415
14416 =head2 Text::ParseWords - parse text into an array of tokens or array of
14417 arrays
14418
14419 =over 4
14420
14421 =item SYNOPSIS
14422
14423 =item DESCRIPTION
14424
14425 =item EXAMPLES
14426
14427 =item AUTHORS
14428
14429 =back
14430
14431 =head2 Text::Soundex - Implementation of the Soundex Algorithm as Described
14432 by Knuth
14433
14434 =over 4
14435
14436 =item SYNOPSIS
14437
14438 =item DESCRIPTION
14439
14440 =item EXAMPLES
14441
14442 =item LIMITATIONS
14443
14444 =item AUTHOR
14445
14446 =back
14447
14448 =head2 Text::Tabs -- expand and unexpand tabs per the unix expand(1) and
14449 unexpand(1)
14450
14451 =over 4
14452
14453 =item SYNOPSIS
14454
14455 =item DESCRIPTION
14456
14457 =item BUGS
14458
14459 =item AUTHOR
14460
14461 =back
14462
14463 =head2 Text::Wrap - line wrapping to form simple paragraphs
14464
14465 =over 4
14466
14467 =item SYNOPSIS 
14468
14469 =item DESCRIPTION
14470
14471 =item EXAMPLE
14472
14473 =item AUTHOR
14474
14475 =back
14476
14477 =head2 Thread - manipulate threads in Perl (EXPERIMENTAL, subject to
14478 change)
14479
14480 =over 4
14481
14482 =item CAVEAT
14483
14484 =item SYNOPSIS
14485
14486 =item DESCRIPTION
14487
14488 =item FUNCTIONS
14489
14490 new \&start_sub, new \&start_sub, LIST, lock VARIABLE, async BLOCK;,
14491 Thread->self, Thread->list, cond_wait VARIABLE, cond_signal VARIABLE,
14492 cond_broadcast VARIABLE, yield
14493
14494 =item METHODS
14495
14496 join, eval, detach, equal, tid, flags, done
14497
14498 =item LIMITATIONS
14499
14500 =item SEE ALSO
14501
14502 =back
14503
14504 =head2 Thread::Queue - thread-safe queues
14505
14506 =over 4
14507
14508 =item SYNOPSIS
14509
14510 =item DESCRIPTION
14511
14512 =item FUNCTIONS AND METHODS
14513
14514 new, enqueue LIST, dequeue, dequeue_nb, pending
14515
14516 =item SEE ALSO
14517
14518 =back
14519
14520 =head2 Thread::Semaphore - thread-safe semaphores
14521
14522 =over 4
14523
14524 =item SYNOPSIS
14525
14526 =item DESCRIPTION
14527
14528 =item FUNCTIONS AND METHODS
14529
14530 new, new NUMBER, down, down NUMBER, up, up NUMBER
14531
14532 =back
14533
14534 =head2 Thread::Signal - Start a thread which runs signal handlers reliably
14535
14536 =over 4
14537
14538 =item SYNOPSIS
14539
14540 =item DESCRIPTION
14541
14542 =item BUGS
14543
14544 =back
14545
14546 =head2 Thread::Specific - thread-specific keys
14547
14548 =over 4
14549
14550 =item SYNOPSIS
14551
14552 =item DESCRIPTION
14553
14554 =back
14555
14556 =head2 Tie::Array - base class for tied arrays
14557
14558 =over 4
14559
14560 =item SYNOPSIS
14561
14562 =item DESCRIPTION
14563
14564 TIEARRAY classname, LIST, STORE this, index, value, FETCH this, index,
14565 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
14566 key, DELETE this, key, CLEAR this, DESTROY this, PUSH this, LIST, POP this,
14567 SHIFT this, UNSHIFT this, LIST, SPLICE this, offset, length, LIST
14568
14569 =item CAVEATS
14570
14571 =item AUTHOR
14572
14573 =back
14574
14575 =head2 Tie::Handle, Tie::StdHandle  - base class definitions for tied
14576 handles
14577
14578 =over 4
14579
14580 =item SYNOPSIS
14581
14582 =item DESCRIPTION
14583
14584 TIEHANDLE classname, LIST, WRITE this, scalar, length, offset, PRINT this,
14585 LIST, PRINTF this, format, LIST, READ this, scalar, length, offset,
14586 READLINE this, GETC this, CLOSE this, OPEN this, filename, BINMODE this,
14587 EOF this, TELL this, SEEK this, offset, whence, DESTROY this
14588
14589 =item MORE INFORMATION
14590
14591 =item COMPATIBILITY
14592
14593 =back
14594
14595 =head2 Tie::Hash, Tie::StdHash - base class definitions for tied hashes
14596
14597 =over 4
14598
14599 =item SYNOPSIS
14600
14601 =item DESCRIPTION
14602
14603 TIEHASH classname, LIST, STORE this, key, value, FETCH this, key, FIRSTKEY
14604 this, NEXTKEY this, lastkey, EXISTS this, key, DELETE this, key, CLEAR this
14605
14606 =item CAVEATS
14607
14608 =item MORE INFORMATION
14609
14610 =back
14611
14612 =head2 Tie::RefHash - use references as hash keys
14613
14614 =over 4
14615
14616 =item SYNOPSIS
14617
14618 =item DESCRIPTION
14619
14620 =item EXAMPLE
14621
14622 =item AUTHOR
14623
14624 =item VERSION
14625
14626 =item SEE ALSO
14627
14628 =back
14629
14630 =head2 Tie::Scalar, Tie::StdScalar - base class definitions for tied
14631 scalars
14632
14633 =over 4
14634
14635 =item SYNOPSIS
14636
14637 =item DESCRIPTION
14638
14639 TIESCALAR classname, LIST, FETCH this, STORE this, value, DESTROY this
14640
14641 =item MORE INFORMATION
14642
14643 =back
14644
14645 =head2 Tie::SubstrHash - Fixed-table-size, fixed-key-length hashing
14646
14647 =over 4
14648
14649 =item SYNOPSIS
14650
14651 =item DESCRIPTION
14652
14653 =item CAVEATS
14654
14655 =back
14656
14657 =head2 Time::HiRes - High resolution ualarm, usleep, and gettimeofday
14658
14659 =over 4
14660
14661 =item SYNOPSIS
14662
14663 =item DESCRIPTION
14664
14665 gettimeofday (), usleep ( $useconds ), ualarm ( $useconds [,
14666 $interval_useconds ] ), tv_interval, time (), sleep ( $floating_seconds ),
14667 alarm ( $floating_seconds [, $interval_floating_seconds ] ), setitimer,
14668 getitimer ( $which )
14669
14670 =item EXAMPLES
14671
14672 =item C API
14673
14674 =item CAVEATS
14675
14676 =item AUTHORS
14677
14678 =item REVISION
14679
14680 =item COPYRIGHT
14681
14682 =back
14683
14684 =head2 Time::Local - efficiently compute time from local and GMT time
14685
14686 =over 4
14687
14688 =item SYNOPSIS
14689
14690 =item DESCRIPTION
14691
14692 =item IMPLEMENTATION
14693
14694 =item BUGS
14695
14696 =back
14697
14698 =head2 Time::Piece - Object Oriented time objects
14699
14700 =over 4
14701
14702 =item SYNOPSIS
14703
14704 =item DESCRIPTION
14705
14706 =item USAGE
14707
14708 =over 4
14709
14710 =item Local Locales
14711
14712 =item Date Calculations
14713
14714 =item Date Comparisons
14715
14716 =item YYYY-MM-DDThh:mm:ss
14717
14718 =item Week Number
14719
14720 =item strftime method
14721
14722 %%, %a, %A, %b, %B, %c, %C, %d, %D, %e, %h, %H, %I, %j, %m, %M, %n, %p, %r,
14723 %R, %S, %t, %T, %u, %U, %V, %w, %W, %x, %y, %Y, %Z
14724
14725 =item strptime function
14726
14727 =item Global Overriding
14728
14729 =back
14730
14731 =item SEE ALSO
14732
14733 =item AUTHOR
14734
14735 =over 4
14736
14737 =item License
14738
14739 =item Bugs
14740
14741 =back
14742
14743 =back
14744
14745 =head2 Time::Piece::Seconds, Time::Seconds - a simple API to convert
14746 seconds to other date values
14747
14748 =over 4
14749
14750 =item SYNOPSIS
14751
14752 =item DESCRIPTION
14753
14754 =item METHODS
14755
14756 =item AUTHOR
14757
14758 =item LICENSE
14759
14760 =item Bugs
14761
14762 =back
14763
14764 =head2 Time::Seconds - a simple API to convert seconds to other date values
14765
14766 =over 4
14767
14768 =item SYNOPSIS
14769
14770 =item DESCRIPTION
14771
14772 =item METHODS
14773
14774 =item AUTHOR
14775
14776 =item LICENSE
14777
14778 =item Bugs
14779
14780 =back
14781
14782 =head2 Time::gmtime - by-name interface to Perl's built-in gmtime()
14783 function
14784
14785 =over 4
14786
14787 =item SYNOPSIS
14788
14789 =item DESCRIPTION
14790
14791 =item NOTE
14792
14793 =item AUTHOR
14794
14795 =back
14796
14797 =head2 Time::localtime - by-name interface to Perl's built-in localtime()
14798 function
14799
14800 =over 4
14801
14802 =item SYNOPSIS
14803
14804 =item DESCRIPTION
14805
14806 =item NOTE
14807
14808 =item AUTHOR
14809
14810 =back
14811
14812 =head2 Time::tm - internal object used by Time::gmtime and Time::localtime
14813
14814 =over 4
14815
14816 =item SYNOPSIS
14817
14818 =item DESCRIPTION
14819
14820 =item AUTHOR
14821
14822 =back
14823
14824 =head2 UNIVERSAL - base class for ALL classes (blessed references)
14825
14826 =over 4
14827
14828 =item SYNOPSIS
14829
14830 =item DESCRIPTION
14831
14832 isa ( TYPE ), can ( METHOD ), VERSION ( [ REQUIRE ] ), UNIVERSAL::isa (
14833 VAL, TYPE ), UNIVERSAL::can ( VAL, METHOD )
14834
14835 =back
14836
14837 =head2 User::grent - by-name interface to Perl's built-in getgr*()
14838 functions
14839
14840 =over 4
14841
14842 =item SYNOPSIS
14843
14844 =item DESCRIPTION
14845
14846 =item NOTE
14847
14848 =item AUTHOR
14849
14850 =back
14851
14852 =head2 User::pwent - by-name interface to Perl's built-in getpw*()
14853 functions
14854
14855 =over 4
14856
14857 =item SYNOPSIS
14858
14859 =item DESCRIPTION
14860
14861 =over 4
14862
14863 =item System Specifics
14864
14865 =back
14866
14867 =item NOTE
14868
14869 =item AUTHOR
14870
14871 =item HISTORY
14872
14873 March 18th, 2000
14874
14875 =back
14876
14877 =head2 Win32 - Interfaces to some Win32 API Functions
14878
14879 =over 4
14880
14881 =item DESCRIPTION
14882
14883 =over 4
14884
14885 =item Alphabetical Listing of Win32 Functions
14886
14887 Win32::AbortSystemShutdown(MACHINE), Win32::BuildNumber(),
14888 Win32::CopyFile(FROM, TO, OVERWRITE), Win32::DomainName(),
14889 Win32::ExpandEnvironmentStrings(STRING), Win32::FormatMessage(ERRORCODE),
14890 Win32::FsType(), Win32::FreeLibrary(HANDLE), Win32::GetArchName(),
14891 Win32::GetChipName(), Win32::GetCwd(), Win32::GetFullPathName(FILENAME),
14892 Win32::GetLastError(), Win32::GetLongPathName(PATHNAME),
14893 Win32::GetNextAvailDrive(), Win32::GetOSVersion(),
14894 Win32::GetShortPathName(PATHNAME), Win32::GetProcAddress(INSTANCE,
14895 PROCNAME), Win32::GetTickCount(), Win32::InitiateSystemShutdown,
14896 Win32::IsWinNT(), Win32::IsWin95(), Win32::LoadLibrary(LIBNAME),
14897 Win32::LoginName(), Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID,
14898 SIDTYPE), Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE),
14899 Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]]), Win32::NodeName(),
14900 Win32::RegisterServer(LIBRARYNAME), Win32::SetCwd(NEWDIRECTORY),
14901 Win32::SetLastError(ERROR), Win32::Sleep(TIME), Win32::Spawn(COMMAND, ARGS,
14902 PID), Win32::UnregisterServer(LIBRARYNAME)
14903
14904 =back
14905
14906 =back
14907
14908 =head2 XS::Typemap - module to test the XS typemaps distributed with perl
14909
14910 =over 4
14911
14912 =item SYNOPSIS
14913
14914 =item DESCRIPTION
14915
14916 =back
14917
14918 =over 4
14919
14920 =item NOTES
14921
14922 =item AUTHOR
14923
14924 =back
14925
14926 =head2 XSLoader - Dynamically load C libraries into Perl code
14927
14928 =over 4
14929
14930 =item SYNOPSIS
14931
14932 =item DESCRIPTION
14933
14934 =item AUTHOR
14935
14936 =back
14937
14938 =head1 AUXILIARY DOCUMENTATION
14939
14940 Here should be listed all the extra programs' documentation, but they
14941 don't all have manual pages yet:
14942
14943 =over 4
14944
14945 =item a2p
14946
14947 =item s2p
14948
14949 =item find2perl
14950
14951 =item h2ph
14952
14953 =item c2ph
14954
14955 =item h2xs
14956
14957 =item xsubpp
14958
14959 =item pod2man
14960
14961 =item wrapsuid
14962
14963 =back
14964
14965 =head1 AUTHOR
14966
14967 Larry Wall <F<larry@wall.org>>, with the help of oodles
14968 of other folks.
14969