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