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