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