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