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