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