perlartistic and perlgpl reformatting from Sean Burke.
[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 =over 4
21
22 =item Overview
23
24 =item Tutorials
25
26 =item Reference Manual
27
28 =item Internals and C Language Interface
29
30 =item Miscellaneous
31
32 =item Language-Specific
33
34 =item Platform-Specific
35
36 =back
37
38 =item DESCRIPTION
39
40 =item AVAILABILITY
41
42 =item ENVIRONMENT
43
44 =item AUTHOR
45
46 =item FILES
47
48 =item SEE ALSO
49
50 =item DIAGNOSTICS
51
52 =item BUGS
53
54 =item NOTES
55
56 =back
57
58 =head2 perlintro -- a brief introduction and overview of Perl
59
60 =over 4
61
62 =item DESCRIPTION
63
64 =over 4
65
66 =item What is Perl?
67
68 =item Running Perl programs
69
70 =item Basic syntax overview
71
72 =item Perl variable types
73
74 Scalars, Arrays, Hashes
75
76 =item Variable scoping
77
78 =item Conditional and looping constructs
79
80 if, while, for, foreach
81
82 =item Builtin operators and functions
83
84 Arithmetic, Numeric comparison, String comparison, Boolean logic,
85 Miscellaneous
86
87 =item Files and I/O
88
89 =item Regular expressions
90
91 Simple matching, Simple substitution, More complex regular expressions,
92 Parentheses for capturing, Other regexp features
93
94 =item Writing subroutines
95
96 =item OO Perl
97
98 =item Using Perl modules
99
100 =back
101
102 =item AUTHOR
103
104 =back
105
106 =head2 perlfaq - frequently asked questions about Perl ($Date: 2003/01/31
107 17:37:17 $)
108
109 =over 4
110
111 =item DESCRIPTION
112
113 =over 4
114
115 =item Where to get the perlfaq
116
117 =item How to contribute to the perlfaq
118
119 =item What will happen if you mail your Perl programming problems to the
120 authors
121
122 =back
123
124 =item Credits
125
126 =item Author and Copyright Information
127
128 =over 4
129
130 =item Bundled Distributions
131
132 =item Disclaimer
133
134 =back
135
136 =item Table of Contents
137
138 perlfaq  - this document, perlfaq1 - General Questions About Perl, perlfaq2
139 - Obtaining and Learning about Perl, perlfaq3 - Programming Tools, perlfaq4
140 - Data Manipulation, perlfaq5 - Files and Formats, perlfaq6 - Regular
141 Expressions, perlfaq7 - General Perl Language Issues, perlfaq8 - System
142 Interaction, perlfaq9 - Networking
143
144 =item The Questions
145
146 =over 4
147
148 =item L<perlfaq1>: General Questions About Perl
149
150 =item L<perlfaq2>: Obtaining and Learning about Perl
151
152 =item L<perlfaq3>: Programming Tools
153
154 =item L<perlfaq4>: Data Manipulation
155
156 =item L<perlfaq5>: Files and Formats
157
158 =item L<perlfaq6>: Regular Expressions
159
160 =item L<perlfaq7>: General Perl Language Issues
161
162 =item L<perlfaq8>: System Interaction
163
164 =item L<perlfaq9>: Networking
165
166 =back
167
168 =back
169
170 =head2 perlbook - Perl book information
171
172 =over 4
173
174 =item DESCRIPTION
175
176 =back
177
178 =head2 perlsyn - Perl syntax
179
180 =over 4
181
182 =item DESCRIPTION
183
184 =over 4
185
186 =item Declarations
187
188 =item Simple statements
189
190 =item Compound statements
191
192 =item Loop Control
193
194 =item For Loops
195
196 =item Foreach Loops
197
198 =item Basic BLOCKs and Switch Statements
199
200 =item Goto
201
202 =item PODs: Embedded Documentation
203
204 =item Plain Old Comments (Not!)
205
206 =back
207
208 =back
209
210 =head2 perldata - Perl data types
211
212 =over 4
213
214 =item DESCRIPTION
215
216 =over 4
217
218 =item Variable names
219
220 =item Context
221
222 =item Scalar values
223
224 =item Scalar value constructors
225
226 =item List value constructors
227
228 =item Slices
229
230 =item Typeglobs and Filehandles
231
232 =back
233
234 =item SEE ALSO
235
236 =back
237
238 =head2 perlop - Perl operators and precedence
239
240 =over 4
241
242 =item SYNOPSIS
243
244 =item DESCRIPTION
245
246 =over 4
247
248 =item Terms and List Operators (Leftward)
249
250 =item The Arrow Operator
251
252 =item Auto-increment and Auto-decrement
253
254 =item Exponentiation
255
256 =item Symbolic Unary Operators
257
258 =item Binding Operators
259
260 =item Multiplicative Operators
261
262 =item Additive Operators
263
264 =item Shift Operators
265
266 =item Named Unary Operators
267
268 =item Relational Operators
269
270 =item Equality Operators
271
272 =item Bitwise And
273
274 =item Bitwise Or and Exclusive Or
275
276 =item C-style Logical And
277
278 =item C-style Logical Or
279
280 =item C-style Logical Defined-Or
281
282 =item Range Operators
283
284 =item Conditional Operator
285
286 =item Assignment Operators
287
288 =item Comma Operator
289
290 =item List Operators (Rightward)
291
292 =item Logical Not
293
294 =item Logical And
295
296 =item Logical or, Defined or, and Exclusive Or
297
298 =item C Operators Missing From Perl
299
300 unary &, unary *, (TYPE)
301
302 =item Quote and Quote-like Operators
303
304 =item Regexp Quote-Like Operators
305
306 ?PATTERN?, m/PATTERN/cgimosx, /PATTERN/cgimosx, q/STRING/, C<'STRING'>,
307 qq/STRING/, "STRING", qr/STRING/imosx, qx/STRING/, `STRING`, qw/STRING/,
308 s/PATTERN/REPLACEMENT/egimosx, tr/SEARCHLIST/REPLACEMENTLIST/cds,
309 y/SEARCHLIST/REPLACEMENTLIST/cds, <<EOF
310
311 =item Gory details of parsing quoted constructs
312
313 Finding the end, Removal of backslashes before delimiters, Interpolation,
314 C<<<'EOF'>, C<m''>, C<s'''>, C<tr///>, C<y///>, C<''>, C<q//>, C<"">,
315 C<``>, C<qq//>, C<qx//>, C<< <file*glob> >>, C<?RE?>, C</RE/>, C<m/RE/>,
316 C<s/RE/foo/>,, Interpolation of regular expressions, Optimization of
317 regular expressions
318
319 =item I/O Operators
320
321 =item Constant Folding
322
323 =item Bitwise String Operators
324
325 =item Integer Arithmetic
326
327 =item Floating-point Arithmetic
328
329 =item Bigger Numbers
330
331 =back
332
333 =back
334
335 =head2 perlsub - Perl subroutines
336
337 =over 4
338
339 =item SYNOPSIS
340
341 =item DESCRIPTION
342
343 =over 4
344
345 =item Private Variables via my()
346
347 =item Persistent Private Variables
348
349 =item Temporary Values via local()
350
351 =item Lvalue subroutines
352
353 Lvalue subroutines are EXPERIMENTAL
354
355 =item Passing Symbol Table Entries (typeglobs)
356
357 =item When to Still Use local()
358
359 =item Pass by Reference
360
361 =item Prototypes
362
363 =item Constant Functions
364
365 =item Overriding Built-in Functions
366
367 =item Autoloading
368
369 =item Subroutine Attributes
370
371 =back
372
373 =item SEE ALSO
374
375 =back
376
377 =head2 perlfunc - Perl builtin functions
378
379 =over 4
380
381 =item DESCRIPTION
382
383 =over 4
384
385 =item Perl Functions by Category
386
387 Functions for SCALARs or strings, Regular expressions and pattern matching,
388 Numeric functions, Functions for real @ARRAYs, Functions for list data,
389 Functions for real %HASHes, Input and output functions, Functions for fixed
390 length data or records, Functions for filehandles, files, or directories,
391 Keywords related to the control flow of your perl program, Keywords related
392 to scoping, Miscellaneous functions, Functions for processes and process
393 groups, Keywords related to perl modules, Keywords related to classes and
394 object-orientedness, Low-level socket functions, System V interprocess
395 communication functions, Fetching user and group info, Fetching network
396 info, Time-related functions, Functions new in perl5, Functions obsoleted
397 in perl5
398
399 =item Portability
400
401 =item Alphabetical Listing of Perl Functions
402
403 -I<X> FILEHANDLE, -I<X> EXPR, -I<X>, abs VALUE, abs, accept
404 NEWSOCKET,GENERICSOCKET, alarm SECONDS, alarm, atan2 Y,X, bind SOCKET,NAME,
405 binmode FILEHANDLE, LAYER, binmode FILEHANDLE, bless REF,CLASSNAME, bless
406 REF, caller EXPR, caller, chdir EXPR, chmod LIST, chomp VARIABLE, chomp(
407 LIST ), chomp, chop VARIABLE, chop( LIST ), chop, chown LIST, chr NUMBER,
408 chr, chroot FILENAME, chroot, close FILEHANDLE, close, closedir DIRHANDLE,
409 connect SOCKET,NAME, continue BLOCK, cos EXPR, cos, crypt PLAINTEXT,SALT,
410 dbmclose HASH, dbmopen HASH,DBNAME,MASK, defined EXPR, defined, delete
411 EXPR, die LIST, do BLOCK, do SUBROUTINE(LIST), do EXPR, dump LABEL, dump,
412 each HASH, eof FILEHANDLE, eof (), eof, eval EXPR, eval BLOCK, exec LIST,
413 exec PROGRAM LIST, exists EXPR, exit EXPR, exp EXPR, exp, fcntl
414 FILEHANDLE,FUNCTION,SCALAR, fileno FILEHANDLE, flock FILEHANDLE,OPERATION,
415 fork, format, formline PICTURE,LIST, getc FILEHANDLE, getc, getlogin,
416 getpeername SOCKET, getpgrp PID, getppid, getpriority WHICH,WHO, getpwnam
417 NAME, getgrnam NAME, gethostbyname NAME, getnetbyname NAME, getprotobyname
418 NAME, getpwuid UID, getgrgid GID, getservbyname NAME,PROTO, gethostbyaddr
419 ADDR,ADDRTYPE, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
420 getservbyport PORT,PROTO, getpwent, getgrent, gethostent, getnetent,
421 getprotoent, getservent, setpwent, setgrent, sethostent STAYOPEN, setnetent
422 STAYOPEN, setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent,
423 endhostent, endnetent, endprotoent, endservent, getsockname SOCKET,
424 getsockopt SOCKET,LEVEL,OPTNAME, glob EXPR, glob, gmtime EXPR, goto LABEL,
425 goto EXPR, goto &NAME, grep BLOCK LIST, grep EXPR,LIST, hex EXPR, hex,
426 import, index STR,SUBSTR,POSITION, index STR,SUBSTR, int EXPR, int, ioctl
427 FILEHANDLE,FUNCTION,SCALAR, join EXPR,LIST, keys HASH, kill SIGNAL, LIST,
428 last LABEL, last, lc EXPR, lc, lcfirst EXPR, lcfirst, length EXPR, length,
429 link OLDFILE,NEWFILE, listen SOCKET,QUEUESIZE, local EXPR, localtime EXPR,
430 lock THING, log EXPR, log, lstat EXPR, lstat, m//, map BLOCK LIST, map
431 EXPR,LIST, mkdir FILENAME,MASK, mkdir FILENAME, msgctl ID,CMD,ARG, msgget
432 KEY,FLAGS, msgrcv ID,VAR,SIZE,TYPE,FLAGS, msgsnd ID,MSG,FLAGS, my EXPR, my
433 TYPE EXPR, my EXPR : ATTRS, my TYPE EXPR : ATTRS, next LABEL, next, no
434 Module VERSION LIST, no Module VERSION, no Module LIST, no Module, oct
435 EXPR, oct, open FILEHANDLE,EXPR, open FILEHANDLE,MODE,EXPR, open
436 FILEHANDLE,MODE,EXPR,LIST, open FILEHANDLE,MODE,REFERENCE, open FILEHANDLE,
437 opendir DIRHANDLE,EXPR, ord EXPR, ord, our EXPR, our EXPR TYPE, our EXPR :
438 ATTRS, our TYPE EXPR : ATTRS, pack TEMPLATE,LIST, package NAMESPACE,
439 package, pipe READHANDLE,WRITEHANDLE, pop ARRAY, pop, pos SCALAR, pos,
440 print FILEHANDLE LIST, print LIST, print, printf FILEHANDLE FORMAT, LIST,
441 printf FORMAT, LIST, prototype FUNCTION, push ARRAY,LIST, q/STRING/,
442 qq/STRING/, qr/STRING/, qx/STRING/, qw/STRING/, quotemeta EXPR, quotemeta,
443 rand EXPR, rand, read FILEHANDLE,SCALAR,LENGTH,OFFSET, read
444 FILEHANDLE,SCALAR,LENGTH, readdir DIRHANDLE, readline EXPR, readlink EXPR,
445 readlink, readpipe EXPR, recv SOCKET,SCALAR,LENGTH,FLAGS, redo LABEL, redo,
446 ref EXPR, ref, rename OLDNAME,NEWNAME, require VERSION, require EXPR,
447 require, reset EXPR, reset, return EXPR, return, reverse LIST, rewinddir
448 DIRHANDLE, rindex STR,SUBSTR,POSITION, rindex STR,SUBSTR, rmdir FILENAME,
449 rmdir, s///, scalar EXPR, seek FILEHANDLE,POSITION,WHENCE, seekdir
450 DIRHANDLE,POS, select FILEHANDLE, select, select RBITS,WBITS,EBITS,TIMEOUT,
451 semctl ID,SEMNUM,CMD,ARG, semget KEY,NSEMS,FLAGS, semop KEY,OPSTRING, send
452 SOCKET,MSG,FLAGS,TO, send SOCKET,MSG,FLAGS, setpgrp PID,PGRP, setpriority
453 WHICH,WHO,PRIORITY, setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL, shift ARRAY,
454 shift, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS, shmread ID,VAR,POS,SIZE,
455 shmwrite ID,STRING,POS,SIZE, shutdown SOCKET,HOW, sin EXPR, sin, sleep
456 EXPR, sleep, socket SOCKET,DOMAIN,TYPE,PROTOCOL, socketpair
457 SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, sort SUBNAME LIST, sort BLOCK LIST,
458 sort LIST, splice ARRAY,OFFSET,LENGTH,LIST, splice ARRAY,OFFSET,LENGTH,
459 splice ARRAY,OFFSET, splice ARRAY, split /PATTERN/,EXPR,LIMIT, split
460 /PATTERN/,EXPR, split /PATTERN/, split, sprintf FORMAT, LIST, format
461 parameter index, flags, vector flag, (minimum) width, precision, or maximum
462 width, size, order of arguments, sqrt EXPR, sqrt, srand EXPR, srand, stat
463 FILEHANDLE, stat EXPR, stat, study SCALAR, study, sub NAME BLOCK, sub NAME
464 (PROTO) BLOCK, sub NAME : ATTRS BLOCK, sub NAME (PROTO) : ATTRS BLOCK,
465 substr EXPR,OFFSET,LENGTH,REPLACEMENT, substr EXPR,OFFSET,LENGTH, substr
466 EXPR,OFFSET, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
467 FILEHANDLE,FILENAME,MODE, sysopen FILEHANDLE,FILENAME,MODE,PERMS, sysread
468 FILEHANDLE,SCALAR,LENGTH,OFFSET, sysread FILEHANDLE,SCALAR,LENGTH, sysseek
469 FILEHANDLE,POSITION,WHENCE, system LIST, system PROGRAM LIST, syswrite
470 FILEHANDLE,SCALAR,LENGTH,OFFSET, syswrite FILEHANDLE,SCALAR,LENGTH,
471 syswrite FILEHANDLE,SCALAR, tell FILEHANDLE, tell, telldir DIRHANDLE, tie
472 VARIABLE,CLASSNAME,LIST, tied VARIABLE, time, times, tr///, truncate
473 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, uc EXPR, uc, ucfirst EXPR,
474 ucfirst, umask EXPR, umask, undef EXPR, undef, unlink LIST, unlink, unpack
475 TEMPLATE,EXPR, unpack TEMPLATE, untie VARIABLE, unshift ARRAY,LIST, use
476 Module VERSION LIST, use Module VERSION, use Module LIST, use Module, use
477 VERSION, utime LIST, values HASH, vec EXPR,OFFSET,BITS, wait, waitpid
478 PID,FLAGS, wantarray, warn LIST, write FILEHANDLE, write EXPR, write, y///
479
480 =back
481
482 =back
483
484 =head2 perlreftut - Mark's very short tutorial about references
485
486 =over 4
487
488 =item DESCRIPTION
489
490 =item Who Needs Complicated Data Structures?
491
492 =item The Solution
493
494 =item Syntax
495
496 =over 4
497
498 =item Making References
499
500 =item Using References
501
502 =item An Example
503
504 =item Arrow Rule
505
506 =back
507
508 =item Solution
509
510 =item The Rest
511
512 =item Summary
513
514 =item Credits
515
516 =over 4
517
518 =item Distribution Conditions
519
520 =back
521
522 =back
523
524 =head2 perldsc - Perl Data Structures Cookbook
525
526 =over 4
527
528 =item DESCRIPTION
529
530 arrays of arrays, hashes of arrays, arrays of hashes, hashes of hashes,
531 more elaborate constructs
532
533 =item REFERENCES
534
535 =item COMMON MISTAKES
536
537 =item CAVEAT ON PRECEDENCE
538
539 =item WHY YOU SHOULD ALWAYS C<use strict>
540
541 =item DEBUGGING
542
543 =item CODE EXAMPLES
544
545 =item ARRAYS OF ARRAYS
546
547 =over 4
548
549 =item Declaration of an ARRAY OF ARRAYS
550
551 =item Generation of an ARRAY OF ARRAYS
552
553 =item Access and Printing of an ARRAY OF ARRAYS
554
555 =back
556
557 =item HASHES OF ARRAYS
558
559 =over 4
560
561 =item Declaration of a HASH OF ARRAYS
562
563 =item Generation of a HASH OF ARRAYS
564
565 =item Access and Printing of a HASH OF ARRAYS
566
567 =back
568
569 =item ARRAYS OF HASHES
570
571 =over 4
572
573 =item Declaration of an ARRAY OF HASHES
574
575 =item Generation of an ARRAY OF HASHES
576
577 =item Access and Printing of an ARRAY OF HASHES
578
579 =back
580
581 =item HASHES OF HASHES
582
583 =over 4
584
585 =item Declaration of a HASH OF HASHES
586
587 =item Generation of a HASH OF HASHES
588
589 =item Access and Printing of a HASH OF HASHES
590
591 =back
592
593 =item MORE ELABORATE RECORDS
594
595 =over 4
596
597 =item Declaration of MORE ELABORATE RECORDS
598
599 =item Declaration of a HASH OF COMPLEX RECORDS
600
601 =item Generation of a HASH OF COMPLEX RECORDS
602
603 =back
604
605 =item Database Ties
606
607 =item SEE ALSO
608
609 =item AUTHOR
610
611 =back
612
613 =head2 perlrequick - Perl regular expressions quick start
614
615 =over 4
616
617 =item DESCRIPTION
618
619 =item The Guide
620
621 =over 4
622
623 =item Simple word matching
624
625 =item Using character classes
626
627 =item Matching this or that
628
629 =item Grouping things and hierarchical matching
630
631 =item Extracting matches
632
633 =item Matching repetitions
634
635 =item More matching
636
637 =item Search and replace
638
639 =item The split operator
640
641 =back
642
643 =item BUGS
644
645 =item SEE ALSO
646
647 =item AUTHOR AND COPYRIGHT
648
649 =over 4
650
651 =item Acknowledgments
652
653 =back
654
655 =back
656
657 =head2 perlpod - the Plain Old Documentation format
658
659 =over 4
660
661 =item DESCRIPTION
662
663 =over 4
664
665 =item Ordinary Paragraph
666
667 =item Verbatim Paragraph
668
669 =item Command Paragraph
670
671 C<=head1 I<Heading Text>>, C<=head2 I<Heading Text>>, C<=head3 I<Heading
672 Text>>, C<=head4 I<Heading Text>>, C<=over I<indentlevel>>, C<=item
673 I<stuff...>>, C<=back>, C<=cut>, C<=pod>, C<=begin I<formatname>>, C<=end
674 I<formatname>>, C<=for I<formatname> I<text...>>
675
676 =item Formatting Codes
677
678 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
679 C<CE<lt>codeE<gt>> -- code text, C<LE<lt>nameE<gt>> -- a hyperlink,
680 C<EE<lt>escapeE<gt>> -- a character escape, C<FE<lt>filenameE<gt>> -- used
681 for filenames, C<SE<lt>textE<gt>> -- text contains non-breaking spaces,
682 C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a null
683 (zero-effect) formatting code
684
685 =item The Intent
686
687 =item Embedding Pods in Perl Modules
688
689 =item Hints for Writing Pod
690
691 =back
692
693 =item SEE ALSO
694
695 =item AUTHOR
696
697 =back
698
699 =head2 perlpodspec - Plain Old Documentation: format specification and
700 notes
701
702 =over 4
703
704 =item DESCRIPTION
705
706 =item Pod Definitions
707
708 =item Pod Commands
709
710 "=head1", "=head2", "=head3", "=head4", "=pod", "=cut", "=over", "=item",
711 "=back", "=begin formatname", "=end formatname", "=for formatname text..."
712
713 =item Pod Formatting Codes
714
715 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
716 C<CE<lt>codeE<gt>> -- code text, C<FE<lt>filenameE<gt>> -- style for
717 filenames, C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a
718 null (zero-effect) formatting code, C<LE<lt>nameE<gt>> -- a hyperlink,
719 C<EE<lt>escapeE<gt>> -- a character escape, C<SE<lt>textE<gt>> -- text
720 contains non-breaking spaces
721
722 =item Notes on Implementing Pod Processors
723
724 =item About LE<lt>...E<gt> Codes
725
726 First:, Second:, Third:, Fourth:, Fifth:, Sixth:
727
728 =item About =over...=back Regions
729
730 =item About Data Paragraphs and "=begin/=end" Regions
731
732 =item SEE ALSO
733
734 =item AUTHOR
735
736 =back
737
738 =head2 perlstyle - Perl style guide
739
740 =over 4
741
742 =item DESCRIPTION
743
744 =back
745
746 =head2 perltrap - Perl traps for the unwary
747
748 =over 4
749
750 =item DESCRIPTION
751
752 =over 4
753
754 =item Awk Traps
755
756 =item C Traps
757
758 =item Sed Traps
759
760 =item Shell Traps
761
762 =item Perl Traps
763
764 =item Perl4 to Perl5 Traps
765
766 Discontinuance, Deprecation, and BugFix traps, Parsing Traps, Numerical
767 Traps, General data type traps, Context Traps - scalar, list contexts,
768 Precedence Traps, General Regular Expression Traps using s///, etc,
769 Subroutine, Signal, Sorting Traps, OS Traps, DBM Traps, Unclassified Traps
770
771 =item Discontinuance, Deprecation, and BugFix traps
772
773 Discontinuance, Deprecation, BugFix, Discontinuance, Discontinuance,
774 Discontinuance, BugFix, Discontinuance, Discontinuance, BugFix,
775 Discontinuance, Deprecation, Discontinuance, Discontinuance
776
777 =item Parsing Traps
778
779 Parsing, Parsing, Parsing, Parsing, Parsing
780
781 =item Numerical Traps
782
783 Numerical, Numerical, Numerical, Bitwise string ops
784
785 =item General data type traps
786
787 (Arrays), (Arrays), (Hashes), (Globs), (Globs), (Scalar String),
788 (Constants), (Scalars), (Variable Suicide)
789
790 =item Context Traps - scalar, list contexts
791
792 (list context), (scalar context), (scalar context), (list, builtin)
793
794 =item Precedence Traps
795
796 Precedence, Precedence, Precedence, Precedence, Precedence, Precedence,
797 Precedence
798
799 =item General Regular Expression Traps using s///, etc.
800
801 Regular Expression, Regular Expression, Regular Expression, Regular
802 Expression, Regular Expression, Regular Expression, Regular Expression,
803 Regular Expression
804
805 =item Subroutine, Signal, Sorting Traps
806
807 (Signals), (Sort Subroutine), warn() won't let you specify a filehandle
808
809 =item OS Traps
810
811 (SysV), (SysV)
812
813 =item Interpolation Traps
814
815 Interpolation, Interpolation, Interpolation, Interpolation, Interpolation,
816 Interpolation, Interpolation, Interpolation, Interpolation
817
818 =item DBM Traps
819
820 DBM, DBM
821
822 =item Unclassified Traps
823
824 C<require>/C<do> trap using returned value, C<split> on empty string with
825 LIMIT specified
826
827 =back
828
829 =back
830
831 =head2 perlrun - how to execute the Perl interpreter
832
833 =over 4
834
835 =item SYNOPSIS
836
837 =item DESCRIPTION
838
839 =over 4
840
841 =item #! and quoting on non-Unix systems
842
843 OS/2, MS-DOS, Win95/NT, Macintosh, VMS
844
845 =item Location of Perl
846
847 =item Command Switches
848
849 B<-0>[I<octal/hexadecimal>], B<-a>, B<-C [I<number/list>]>, B<-c>, B<-d>,
850 B<-d:>I<foo[=bar,baz]>, B<-D>I<letters>, B<-D>I<number>, B<-e>
851 I<commandline>, B<-F>I<pattern>, B<-h>, B<-i>[I<extension>],
852 B<-I>I<directory>, B<-l>[I<octnum>], B<-m>[B<->]I<module>,
853 B<-M>[B<->]I<module>, B<-M>[B<->]I<'module ...'>,
854 B<-[mM]>[B<->]I<module=arg[,arg]...>, B<-n>, B<-p>, B<-P>, B<-s>, B<-S>,
855 B<-t>, B<-T>, B<-u>, B<-U>, B<-v>, B<-V>, B<-V:>I<name>, B<-w>, B<-W>,
856 B<-X>, B<-x> I<directory>
857
858 =back
859
860 =item ENVIRONMENT
861
862 HOME, LOGDIR, PATH, PERL5LIB, PERL5OPT, PERLIO, :bytes, :crlf, :mmap,
863 :perlio, :raw, :stdio, :unix, :utf8, :win32, PERLIO_DEBUG, PERLLIB,
864 PERL5DB, PERL5SHELL (specific to the Win32 port), PERL_DEBUG_MSTATS,
865 PERL_DESTRUCT_LEVEL, PERL_ENCODING, PERL_ROOT (specific to the VMS port),
866 PERL_SIGNALS, PERL_UNICODE, SYS$LOGIN (specific to the VMS port)
867
868 =back
869
870 =head2 perldiag - various Perl diagnostics
871
872 =over 4
873
874 =item DESCRIPTION
875
876 =back
877
878 =head2 perllexwarn - Perl Lexical Warnings
879
880 =over 4
881
882 =item DESCRIPTION
883
884 =over 4
885
886 =item Default Warnings and Optional Warnings
887
888 =item What's wrong with B<-w> and C<$^W>
889
890 =item Controlling Warnings from the Command Line
891
892 B<-w>, B<-W>, B<-X>
893
894 =item Backward Compatibility
895
896 =item Category Hierarchy
897
898 =item Fatal Warnings
899
900 =item Reporting Warnings from a Module
901
902 =back
903
904 =item TODO
905
906 =item SEE ALSO
907
908 =item AUTHOR
909
910 =back
911
912 =head2 perldebtut - Perl debugging tutorial
913
914 =over 4
915
916 =item DESCRIPTION
917
918 =item use strict
919
920 =item Looking at data and -w and v
921
922 =item help
923
924 =item Stepping through code
925
926 =item Placeholder for a, w, t, T
927
928 =item REGULAR EXPRESSIONS
929
930 =item OUTPUT TIPS
931
932 =item CGI
933
934 =item GUIs
935
936 =item SUMMARY
937
938 =item SEE ALSO
939
940 =item AUTHOR
941
942 =item CONTRIBUTORS
943
944 =back
945
946 =head2 perldebug - Perl debugging
947
948 =over 4
949
950 =item DESCRIPTION
951
952 =item The Perl Debugger
953
954 =over 4
955
956 =item Debugger Commands
957
958 h, h [command], h h, p expr, x [maxdepth] expr, V [pkg [vars]], X [vars], y
959 [level [vars]], T, s [expr], n [expr], r, <CR>, c [line|sub], l, l
960 min+incr, l min-max, l line, l subname, -, v [line], f filename, /pattern/,
961 ?pattern?, L [abw], S [[!]regex], t, t expr, b, b [line] [condition], b
962 subname [condition], b postpone subname [condition], b load filename, b
963 compile subname, B line, B *, a [line] command, A line, A *, w expr, W
964 expr, W *, o, o booloption .., o anyoption? .., o option=value .., < ?, < [
965 command ], < *, << command, > ?, > command, > *, >> command, { ?, { [
966 command ], { *, {{ command, ! number, ! -number, ! pattern, !! cmd, source
967 file, H -number, q or ^D, R, |dbcmd, ||dbcmd, command, m expr, M, man
968 [manpage]
969
970 =item Configurable Options
971
972 C<recallCommand>, C<ShellBang>, C<pager>, C<tkRunning>, C<signalLevel>,
973 C<warnLevel>, C<dieLevel>, C<AutoTrace>, C<LineInfo>, C<inhibit_exit>,
974 C<PrintRet>, C<ornaments>, C<frame>, C<maxTraceLen>, C<windowSize>,
975 C<arrayDepth>, C<hashDepth>, C<dumpDepth>, C<compactDump>, C<veryCompact>,
976 C<globPrint>, C<DumpDBFiles>, C<DumpPackages>, C<DumpReused>, C<quote>,
977 C<HighBit>, C<undefPrint>, C<UsageOnly>, C<TTY>, C<noTTY>, C<ReadLine>,
978 C<NonStop>
979
980 =item Debugger input/output
981
982 Prompt, Multiline commands, Stack backtrace, Line Listing Format, Frame
983 listing
984
985 =item Debugging compile-time statements
986
987 =item Debugger Customization
988
989 =item Readline Support
990
991 =item Editor Support for Debugging
992
993 =item The Perl Profiler
994
995 =back
996
997 =item Debugging regular expressions
998
999 =item Debugging memory usage
1000
1001 =item SEE ALSO
1002
1003 =item BUGS
1004
1005 =back
1006
1007 =head2 perlvar - Perl predefined variables
1008
1009 =over 4
1010
1011 =item DESCRIPTION
1012
1013 =over 4
1014
1015 =item Predefined Names
1016
1017 $ARG, $_, $a, $b, $<I<digits>>, $MATCH, $&, $PREMATCH, $`, $POSTMATCH, $',
1018 $LAST_PAREN_MATCH, $+, $^N, @LAST_MATCH_END, @+, $MULTILINE_MATCHING, $*,
1019 HANDLE->input_line_number(EXPR), $INPUT_LINE_NUMBER, $NR, $,
1020 IO::Handle->input_record_separator(EXPR), $INPUT_RECORD_SEPARATOR, $RS, $/,
1021 HANDLE->autoflush(EXPR), $OUTPUT_AUTOFLUSH, $|,
1022 IO::Handle->output_field_separator EXPR, $OUTPUT_FIELD_SEPARATOR, $OFS, $,,
1023 IO::Handle->output_record_separator EXPR, $OUTPUT_RECORD_SEPARATOR, $ORS,
1024 $\, $LIST_SEPARATOR, $", $SUBSCRIPT_SEPARATOR, $SUBSEP, $;, $OFMT, $#,
1025 HANDLE->format_page_number(EXPR), $FORMAT_PAGE_NUMBER, $%,
1026 HANDLE->format_lines_per_page(EXPR), $FORMAT_LINES_PER_PAGE, $=,
1027 HANDLE->format_lines_left(EXPR), $FORMAT_LINES_LEFT, $-, @LAST_MATCH_START,
1028 @-, C<$`> is the same as C<substr($var, 0, $-[0])>, C<$&> is the same as
1029 C<substr($var, $-[0], $+[0] - $-[0])>, C<$'> is the same as C<substr($var,
1030 $+[0])>, C<$1> is the same as C<substr($var, $-[1], $+[1] - $-[1])>, C<$2>
1031 is the same as C<substr($var, $-[2], $+[2] - $-[2])>, C<$3> is the same as
1032 C<substr $var, $-[3], $+[3] - $-[3])>, HANDLE->format_name(EXPR),
1033 $FORMAT_NAME, $~, HANDLE->format_top_name(EXPR), $FORMAT_TOP_NAME, $^,
1034 IO::Handle->format_line_break_characters EXPR,
1035 $FORMAT_LINE_BREAK_CHARACTERS, $:, IO::Handle->format_formfeed EXPR,
1036 $FORMAT_FORMFEED, $^L, $ACCUMULATOR, $^A, $CHILD_ERROR, $?, ${^ENCODING},
1037 $OS_ERROR, $ERRNO, $!, %!, $EXTENDED_OS_ERROR, $^E, $EVAL_ERROR, $@,
1038 $PROCESS_ID, $PID, $$, $REAL_USER_ID, $UID, $<, $EFFECTIVE_USER_ID, $EUID,
1039 $>, $REAL_GROUP_ID, $GID, $(, $EFFECTIVE_GROUP_ID, $EGID, $),
1040 $PROGRAM_NAME, $0, $[, $], $COMPILING, $^C, $DEBUGGING, $^D,
1041 $SYSTEM_FD_MAX, $^F, $^H, %^H, $INPLACE_EDIT, $^I, $^M, $OSNAME, $^O,
1042 ${^OPEN}, $PERLDB, $^P, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
1043 0x100, 0x200, $LAST_REGEXP_CODE_RESULT, $^R, $EXCEPTIONS_BEING_CAUGHT, $^S,
1044 $BASETIME, $^T, ${^TAINT}, ${^UNICODE}, $PERL_VERSION, $^V, $WARNING, $^W,
1045 ${^WARNING_BITS}, $EXECUTABLE_NAME, $^X, ARGV, $ARGV, @ARGV, ARGVOUT, @F,
1046 @INC, @_, %INC, %ENV, $ENV{expr}, %SIG, $SIG{expr}
1047
1048 =item Error Indicators
1049
1050 =item Technical Note on the Syntax of Variable Names
1051
1052 =back
1053
1054 =item BUGS
1055
1056 =back
1057
1058 =head2 perllol - Manipulating Arrays of Arrays in Perl
1059
1060 =over 4
1061
1062 =item DESCRIPTION
1063
1064 =over 4
1065
1066 =item Declaration and Access of Arrays of Arrays
1067
1068 =item Growing Your Own
1069
1070 =item Access and Printing
1071
1072 =item Slices
1073
1074 =back
1075
1076 =item SEE ALSO
1077
1078 =item AUTHOR
1079
1080 =back
1081
1082 =head2 perlopentut - tutorial on opening things in Perl
1083
1084 =over 4
1085
1086 =item DESCRIPTION
1087
1088 =item Open E<agrave> la shell
1089
1090 =over 4
1091
1092 =item Simple Opens
1093
1094 =item Indirect Filehandles
1095
1096 =item Pipe Opens
1097
1098 =item The Minus File
1099
1100 =item Mixing Reads and Writes
1101
1102 =item Filters 
1103
1104 =back
1105
1106 =item Open E<agrave> la C
1107
1108 =over 4
1109
1110 =item Permissions E<agrave> la mode
1111
1112 =back
1113
1114 =item Obscure Open Tricks
1115
1116 =over 4
1117
1118 =item Re-Opening Files (dups)
1119
1120 =item Dispelling the Dweomer
1121
1122 =item Paths as Opens
1123
1124 =item Single Argument Open
1125
1126 =item Playing with STDIN and STDOUT
1127
1128 =back
1129
1130 =item Other I/O Issues
1131
1132 =over 4
1133
1134 =item Opening Non-File Files
1135
1136 =item Opening Named Pipes
1137
1138 =item Opening Sockets
1139
1140 =item Binary Files
1141
1142 =item File Locking
1143
1144 =item IO Layers
1145
1146 =back
1147
1148 =item SEE ALSO 
1149
1150 =item AUTHOR and COPYRIGHT
1151
1152 =item HISTORY
1153
1154 =back
1155
1156 =head2 perlpacktut - tutorial on C<pack> and C<unpack>
1157
1158 =over 4
1159
1160 =item DESCRIPTION
1161
1162 =item The Basic Principle
1163
1164 =item Packing Text
1165
1166 =item Packing Numbers
1167
1168 =over 4
1169
1170 =item Integers
1171
1172 =item Unpacking a Stack Frame
1173
1174 =item How to Eat an Egg on a Net
1175
1176 =item Floating point Numbers
1177
1178 =back
1179
1180 =item Exotic Templates
1181
1182 =over 4
1183
1184 =item Bit Strings
1185
1186 =item Uuencoding
1187
1188 =item Doing Sums
1189
1190 =item  Unicode
1191
1192 =item Another Portable Binary Encoding
1193
1194 =back
1195
1196 =item Template Grouping
1197
1198 =item Lengths and Widths
1199
1200 =over 4
1201
1202 =item String Lengths
1203
1204 =item Dynamic Templates
1205
1206 =item Counting Repetitions
1207
1208 =back
1209
1210 =item Packing and Unpacking C Structures
1211
1212 =over 4
1213
1214 =item The Alignment Pit
1215
1216 =item Alignment, Take 2
1217
1218 =item Alignment, Take 3
1219
1220 =item Pointers for How to Use Them
1221
1222 =back
1223
1224 =item Pack Recipes
1225
1226 =item Funnies Section
1227
1228 =item Authors
1229
1230 =back
1231
1232 =head2 perlretut - Perl regular expressions tutorial
1233
1234 =over 4
1235
1236 =item DESCRIPTION
1237
1238 =item Part 1: The basics
1239
1240 =over 4
1241
1242 =item Simple word matching
1243
1244 =item Using character classes
1245
1246 =item Matching this or that
1247
1248 =item Grouping things and hierarchical matching
1249
1250 =item Extracting matches
1251
1252 =item Matching repetitions
1253
1254 =item Building a regexp
1255
1256 =item Using regular expressions in Perl
1257
1258 =back
1259
1260 =item Part 2: Power tools
1261
1262 =over 4
1263
1264 =item More on characters, strings, and character classes
1265
1266 =item Compiling and saving regular expressions
1267
1268 =item Embedding comments and modifiers in a regular expression
1269
1270 =item Non-capturing groupings
1271
1272 =item Looking ahead and looking behind
1273
1274 =item Using independent subexpressions to prevent backtracking
1275
1276 =item Conditional expressions
1277
1278 =item A bit of magic: executing Perl code in a regular expression
1279
1280 =item Pragmas and debugging
1281
1282 =back
1283
1284 =item BUGS
1285
1286 =item SEE ALSO
1287
1288 =item AUTHOR AND COPYRIGHT
1289
1290 =over 4
1291
1292 =item Acknowledgments
1293
1294 =back
1295
1296 =back
1297
1298 =head2 perlre - Perl regular expressions
1299
1300 =over 4
1301
1302 =item DESCRIPTION
1303
1304 i, m, s, x
1305
1306 =over 4
1307
1308 =item Regular Expressions
1309
1310 [1], [2], [3], cntrl, graph, print, punct, xdigit
1311
1312 =item Extended Patterns
1313
1314 C<(?#text)>, C<(?imsx-imsx)>, C<(?:pattern)>, C<(?imsx-imsx:pattern)>,
1315 C<(?=pattern)>, C<(?!pattern)>, C<(?<=pattern)>, C<(?<!pattern)>, C<(?{
1316 code })>, C<(??{ code })>, C<< (?>pattern) >>,
1317 C<(?(condition)yes-pattern|no-pattern)>, C<(?(condition)yes-pattern)>
1318
1319 =item Backtracking
1320
1321 =item Version 8 Regular Expressions
1322
1323 =item Warning on \1 vs $1
1324
1325 =item Repeated patterns matching zero-length substring
1326
1327 =item Combining pieces together
1328
1329 C<ST>, C<S|T>, C<S{REPEAT_COUNT}>, C<S{min,max}>, C<S{min,max}?>, C<S?>,
1330 C<S*>, C<S+>, C<S??>, C<S*?>, C<S+?>, C<< (?>S) >>, C<(?=S)>, C<(?<=S)>,
1331 C<(?!S)>, C<(?<!S)>, C<(??{ EXPR })>,
1332 C<(?(condition)yes-pattern|no-pattern)>
1333
1334 =item Creating custom RE engines
1335
1336 =back
1337
1338 =item BUGS
1339
1340 =item SEE ALSO
1341
1342 =back
1343
1344 =head2 perlref - Perl references and nested data structures
1345
1346 =over 4
1347
1348 =item NOTE
1349
1350 =item DESCRIPTION
1351
1352 =over 4
1353
1354 =item Making References
1355
1356 =item Using References
1357
1358 =item Symbolic references
1359
1360 =item Not-so-symbolic references
1361
1362 =item Pseudo-hashes: Using an array as a hash
1363
1364 =item Function Templates
1365
1366 =back
1367
1368 =item WARNING
1369
1370 =item SEE ALSO
1371
1372 =back
1373
1374 =head2 perlform - Perl formats
1375
1376 =over 4
1377
1378 =item DESCRIPTION
1379
1380 =over 4
1381
1382 =item Format Variables
1383
1384 =back
1385
1386 =item NOTES
1387
1388 =over 4
1389
1390 =item Footers
1391
1392 =item Accessing Formatting Internals
1393
1394 =back
1395
1396 =item WARNINGS
1397
1398 =back
1399
1400 =head2 perlboot - Beginner's Object-Oriented Tutorial
1401
1402 =over 4
1403
1404 =item DESCRIPTION
1405
1406 =over 4
1407
1408 =item If we could talk to the animals...
1409
1410 =item Introducing the method invocation arrow
1411
1412 =item Invoking a barnyard
1413
1414 =item The extra parameter of method invocation
1415
1416 =item Calling a second method to simplify things
1417
1418 =item Inheriting the windpipes
1419
1420 =item A few notes about @ISA
1421
1422 =item Overriding the methods
1423
1424 =item Starting the search from a different place
1425
1426 =item The SUPER way of doing things
1427
1428 =item Where we're at so far...
1429
1430 =item A horse is a horse, of course of course -- or is it?
1431
1432 =item Invoking an instance method
1433
1434 =item Accessing the instance data
1435
1436 =item How to build a horse
1437
1438 =item Inheriting the constructor
1439
1440 =item Making a method work with either classes or instances
1441
1442 =item Adding parameters to a method
1443
1444 =item More interesting instances
1445
1446 =item A horse of a different color
1447
1448 =item Summary
1449
1450 =back
1451
1452 =item SEE ALSO
1453
1454 =item COPYRIGHT
1455
1456 =back
1457
1458 =head2 perltoot - Tom's object-oriented tutorial for perl
1459
1460 =over 4
1461
1462 =item DESCRIPTION
1463
1464 =item Creating a Class
1465
1466 =over 4
1467
1468 =item Object Representation
1469
1470 =item Class Interface
1471
1472 =item Constructors and Instance Methods
1473
1474 =item Planning for the Future: Better Constructors
1475
1476 =item Destructors
1477
1478 =item Other Object Methods
1479
1480 =back
1481
1482 =item Class Data
1483
1484 =over 4
1485
1486 =item Accessing Class Data
1487
1488 =item Debugging Methods
1489
1490 =item Class Destructors
1491
1492 =item Documenting the Interface
1493
1494 =back
1495
1496 =item Aggregation
1497
1498 =item Inheritance
1499
1500 =over 4
1501
1502 =item Overridden Methods
1503
1504 =item Multiple Inheritance
1505
1506 =item UNIVERSAL: The Root of All Objects
1507
1508 =back
1509
1510 =item Alternate Object Representations
1511
1512 =over 4
1513
1514 =item Arrays as Objects
1515
1516 =item Closures as Objects
1517
1518 =back
1519
1520 =item AUTOLOAD: Proxy Methods
1521
1522 =over 4
1523
1524 =item Autoloaded Data Methods
1525
1526 =item Inherited Autoloaded Data Methods
1527
1528 =back
1529
1530 =item Metaclassical Tools
1531
1532 =over 4
1533
1534 =item Class::Struct
1535
1536 =item Data Members as Variables
1537
1538 =back
1539
1540 =item NOTES
1541
1542 =over 4
1543
1544 =item Object Terminology
1545
1546 =back
1547
1548 =item SEE ALSO
1549
1550 =item AUTHOR AND COPYRIGHT
1551
1552 =item COPYRIGHT
1553
1554 =over 4
1555
1556 =item Acknowledgments
1557
1558 =back
1559
1560 =back
1561
1562 =head2 perltooc - Tom's OO Tutorial for Class Data in Perl
1563
1564 =over 4
1565
1566 =item DESCRIPTION
1567
1568 =item Class Data in a Can
1569
1570 =item Class Data as Package Variables
1571
1572 =over 4
1573
1574 =item Putting All Your Eggs in One Basket
1575
1576 =item Inheritance Concerns
1577
1578 =item The Eponymous Meta-Object
1579
1580 =item Indirect References to Class Data
1581
1582 =item Monadic Classes
1583
1584 =item Translucent Attributes
1585
1586 =back
1587
1588 =item Class Data as Lexical Variables
1589
1590 =over 4
1591
1592 =item Privacy and Responsibility 
1593
1594 =item File-Scoped Lexicals
1595
1596 =item More Inheritance Concerns
1597
1598 =item Locking the Door and Throwing Away the Key
1599
1600 =item Translucency Revisited
1601
1602 =back
1603
1604 =item NOTES
1605
1606 =item SEE ALSO
1607
1608 =item AUTHOR AND COPYRIGHT
1609
1610 =item ACKNOWLEDGEMENTS
1611
1612 =item HISTORY
1613
1614 =back
1615
1616 =head2 perlobj - Perl objects
1617
1618 =over 4
1619
1620 =item DESCRIPTION
1621
1622 =over 4
1623
1624 =item An Object is Simply a Reference
1625
1626 =item A Class is Simply a Package
1627
1628 =item A Method is Simply a Subroutine
1629
1630 =item Method Invocation
1631
1632 =item Indirect Object Syntax
1633
1634 =item Default UNIVERSAL methods
1635
1636 isa(CLASS), can(METHOD), VERSION( [NEED] )
1637
1638 =item Destructors
1639
1640 =item Summary
1641
1642 =item Two-Phased Garbage Collection
1643
1644 =back
1645
1646 =item SEE ALSO
1647
1648 =back
1649
1650 =head2 perlbot - Bag'o Object Tricks (the BOT)
1651
1652 =over 4
1653
1654 =item DESCRIPTION
1655
1656 =item OO SCALING TIPS
1657
1658 =item INSTANCE VARIABLES
1659
1660 =item SCALAR INSTANCE VARIABLES
1661
1662 =item INSTANCE VARIABLE INHERITANCE
1663
1664 =item OBJECT RELATIONSHIPS
1665
1666 =item OVERRIDING SUPERCLASS METHODS
1667
1668 =item USING RELATIONSHIP WITH SDBM
1669
1670 =item THINKING OF CODE REUSE
1671
1672 =item CLASS CONTEXT AND THE OBJECT
1673
1674 =item INHERITING A CONSTRUCTOR
1675
1676 =item DELEGATION
1677
1678 =item SEE ALSO
1679
1680 =back
1681
1682 =head2 perltie - how to hide an object class in a simple variable
1683
1684 =over 4
1685
1686 =item SYNOPSIS
1687
1688 =item DESCRIPTION
1689
1690 =over 4
1691
1692 =item Tying Scalars
1693
1694 TIESCALAR classname, LIST, FETCH this, STORE this, value, UNTIE this,
1695 DESTROY this
1696
1697 =item Tying Arrays
1698
1699 TIEARRAY classname, LIST, FETCH this, index, STORE this, index, value,
1700 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
1701 key, DELETE this, key, CLEAR this, PUSH this, LIST, POP this, SHIFT this,
1702 UNSHIFT this, LIST, SPLICE this, offset, length, LIST, UNTIE this, DESTROY
1703 this
1704
1705 =item Tying Hashes
1706
1707 USER, HOME, CLOBBER, LIST, TIEHASH classname, LIST, FETCH this, key, STORE
1708 this, key, value, DELETE this, key, CLEAR this, EXISTS this, key, FIRSTKEY
1709 this, NEXTKEY this, lastkey, UNTIE this, DESTROY this
1710
1711 =item Tying FileHandles
1712
1713 TIEHANDLE classname, LIST, WRITE this, LIST, PRINT this, LIST, PRINTF this,
1714 LIST, READ this, LIST, READLINE this, GETC this, CLOSE this, UNTIE this,
1715 DESTROY this
1716
1717 =item UNTIE this
1718
1719 =item The C<untie> Gotcha
1720
1721 =back
1722
1723 =item SEE ALSO
1724
1725 =item BUGS
1726
1727 =item AUTHOR
1728
1729 =back
1730
1731 =head2 perlipc - Perl interprocess communication (signals, fifos, pipes,
1732 safe subprocesses, sockets, and semaphores)
1733
1734 =over 4
1735
1736 =item DESCRIPTION
1737
1738 =item Signals
1739
1740 =over 4
1741
1742 =item Handling the SIGHUP Signal in Daemons
1743
1744 =back
1745
1746 =item Named Pipes
1747
1748 =over 4
1749
1750 =item Deferred Signals (Safe signals)
1751
1752 Long running opcodes, Interrupting IO, Signals as "faults", Signals
1753 triggered by operating system state
1754
1755 =back
1756
1757 =item Using open() for IPC
1758
1759 =over 4
1760
1761 =item Filehandles
1762
1763 =item Background Processes
1764
1765 =item Complete Dissociation of Child from Parent
1766
1767 =item Safe Pipe Opens
1768
1769 =item Bidirectional Communication with Another Process
1770
1771 =item Bidirectional Communication with Yourself
1772
1773 =back
1774
1775 =item Sockets: Client/Server Communication
1776
1777 =over 4
1778
1779 =item Internet Line Terminators
1780
1781 =item Internet TCP Clients and Servers
1782
1783 =item Unix-Domain TCP Clients and Servers
1784
1785 =back
1786
1787 =item TCP Clients with IO::Socket
1788
1789 =over 4
1790
1791 =item A Simple Client
1792
1793 C<Proto>, C<PeerAddr>, C<PeerPort>
1794
1795 =item A Webget Client
1796
1797 =item Interactive Client with IO::Socket
1798
1799 =back
1800
1801 =item TCP Servers with IO::Socket
1802
1803 Proto, LocalPort, Listen, Reuse
1804
1805 =item UDP: Message Passing
1806
1807 =item SysV IPC
1808
1809 =item NOTES
1810
1811 =item BUGS
1812
1813 =item AUTHOR
1814
1815 =item SEE ALSO
1816
1817 =back
1818
1819 =head2 perlfork - Perl's fork() emulation
1820
1821 =over 4
1822
1823 =item SYNOPSIS
1824
1825 =item DESCRIPTION
1826
1827 =over 4
1828
1829 =item Behavior of other Perl features in forked pseudo-processes
1830
1831 $$ or $PROCESS_ID, %ENV, chdir() and all other builtins that accept
1832 filenames, wait() and waitpid(), kill(), exec(), exit(), Open handles to
1833 files, directories and network sockets
1834
1835 =item Resource limits
1836
1837 =item Killing the parent process
1838
1839 =item Lifetime of the parent process and pseudo-processes
1840
1841 =item CAVEATS AND LIMITATIONS
1842
1843 BEGIN blocks, Open filehandles, Forking pipe open() not yet implemented,
1844 Global state maintained by XSUBs, Interpreter embedded in larger
1845 application, Thread-safety of extensions
1846
1847 =back
1848
1849 =item BUGS
1850
1851 =item AUTHOR
1852
1853 =item SEE ALSO
1854
1855 =back
1856
1857 =head2 perlnumber - semantics of numbers and numeric operations in Perl
1858
1859 =over 4
1860
1861 =item SYNOPSIS
1862
1863 =item DESCRIPTION
1864
1865 =item Storing numbers
1866
1867 =item Numeric operators and numeric conversions
1868
1869 =item Flavors of Perl numeric operations
1870
1871 Arithmetic operators, ++, Arithmetic operators during C<use integer>, Other
1872 mathematical operators, Bitwise operators, Bitwise operators during C<use
1873 integer>, Operators which expect an integer, Operators which expect a
1874 string
1875
1876 =item AUTHOR
1877
1878 =item SEE ALSO
1879
1880 =back
1881
1882 =head2 perlthrtut - tutorial on threads in Perl
1883
1884 =over 4
1885
1886 =item DESCRIPTION
1887
1888 =item Status
1889
1890 =item What Is A Thread Anyway?
1891
1892 =item Threaded Program Models
1893
1894 =over 4
1895
1896 =item Boss/Worker
1897
1898 =item Work Crew
1899
1900 =item Pipeline
1901
1902 =back
1903
1904 =item Native threads
1905
1906 =item What kind of threads are Perl threads?
1907
1908 =item Thread-Safe Modules
1909
1910 =item Thread Basics
1911
1912 =over 4
1913
1914 =item Basic Thread Support
1915
1916 =item A Note about the Examples
1917
1918 =item Creating Threads
1919
1920 =item Giving up control
1921
1922 =item Waiting For A Thread To Exit
1923
1924 =item Ignoring A Thread
1925
1926 =back
1927
1928 =item Threads And Data
1929
1930 =over 4
1931
1932 =item Shared And Unshared Data
1933
1934 =item Thread Pitfalls: Races
1935
1936 =back
1937
1938 =item Synchronization and control
1939
1940 =over 4
1941
1942 =item Controlling access: lock()
1943
1944 =item A Thread Pitfall: Deadlocks
1945
1946 =item Queues: Passing Data Around
1947
1948 =item Semaphores: Synchronizing Data Access
1949
1950 =item Basic semaphores
1951
1952 =item Advanced Semaphores
1953
1954 =item cond_wait() and cond_signal()
1955
1956 =back
1957
1958 =item General Thread Utility Routines
1959
1960 =over 4
1961
1962 =item What Thread Am I In?
1963
1964 =item Thread IDs
1965
1966 =item Are These Threads The Same?
1967
1968 =item What Threads Are Running?
1969
1970 =back
1971
1972 =item A Complete Example
1973
1974 =item Performance considerations
1975
1976 =item Process-scope Changes
1977
1978 =item Thread-Safety of System Libraries
1979
1980 =item Conclusion
1981
1982 =item Bibliography
1983
1984 =over 4
1985
1986 =item Introductory Texts
1987
1988 =item OS-Related References
1989
1990 =item Other References
1991
1992 =back
1993
1994 =item Acknowledgements
1995
1996 =item AUTHOR
1997
1998 =item Copyrights
1999
2000 =back
2001
2002 =head2 perlothrtut - old tutorial on threads in Perl
2003
2004 =over 4
2005
2006 =item DESCRIPTION
2007
2008 =item What Is A Thread Anyway?
2009
2010 =item Threaded Program Models
2011
2012 =over 4
2013
2014 =item Boss/Worker
2015
2016 =item Work Crew
2017
2018 =item Pipeline
2019
2020 =back
2021
2022 =item Native threads
2023
2024 =item What kind of threads are perl threads?
2025
2026 =item Threadsafe Modules
2027
2028 =item Thread Basics
2029
2030 =over 4
2031
2032 =item Basic Thread Support
2033
2034 =item Creating Threads
2035
2036 =item Giving up control
2037
2038 =item Waiting For A Thread To Exit
2039
2040 =item Errors In Threads
2041
2042 =item Ignoring A Thread
2043
2044 =back
2045
2046 =item Threads And Data
2047
2048 =over 4
2049
2050 =item Shared And Unshared Data
2051
2052 =item Thread Pitfall: Races
2053
2054 =item Controlling access: lock()
2055
2056 =item Thread Pitfall: Deadlocks
2057
2058 =item Queues: Passing Data Around
2059
2060 =back
2061
2062 =item Threads And Code
2063
2064 =over 4
2065
2066 =item Semaphores: Synchronizing Data Access
2067
2068 Basic semaphores, Advanced Semaphores
2069
2070 =item Attributes: Restricting Access To Subroutines
2071
2072 =item Subroutine Locks
2073
2074 =item Methods
2075
2076 =item Locking A Subroutine
2077
2078 =back
2079
2080 =item General Thread Utility Routines
2081
2082 =over 4
2083
2084 =item What Thread Am I In?
2085
2086 =item Thread IDs
2087
2088 =item Are These Threads The Same?
2089
2090 =item What Threads Are Running?
2091
2092 =back
2093
2094 =item A Complete Example
2095
2096 =item Conclusion
2097
2098 =item Bibliography
2099
2100 =over 4
2101
2102 =item Introductory Texts
2103
2104 =item OS-Related References
2105
2106 =item Other References
2107
2108 =back
2109
2110 =item Acknowledgements
2111
2112 =item AUTHOR
2113
2114 =item Copyrights
2115
2116 =back
2117
2118 =head2 perlport - Writing portable Perl
2119
2120 =over 4
2121
2122 =item DESCRIPTION
2123
2124 Not all Perl programs have to be portable, Nearly all of Perl already I<is>
2125 portable
2126
2127 =item ISSUES
2128
2129 =over 4
2130
2131 =item Newlines
2132
2133 =item Numbers endianness and Width
2134
2135 =item Files and Filesystems
2136
2137 =item System Interaction
2138
2139 =item Command names versus file pathnames
2140
2141 =item Interprocess Communication (IPC)
2142
2143 =item External Subroutines (XS)
2144
2145 =item Standard Modules
2146
2147 =item Time and Date
2148
2149 =item Character sets and character encoding
2150
2151 =item Internationalisation
2152
2153 =item System Resources
2154
2155 =item Security
2156
2157 =item Style
2158
2159 =back
2160
2161 =item CPAN Testers
2162
2163 Mailing list: cpan-testers@perl.org, Testing results:
2164 http://testers.cpan.org/
2165
2166 =item PLATFORMS
2167
2168 =over 4
2169
2170 =item Unix
2171
2172 =item DOS and Derivatives
2173
2174 =item S<Mac OS>
2175
2176 =item VMS
2177
2178 =item VOS
2179
2180 =item EBCDIC Platforms
2181
2182 =item Acorn RISC OS
2183
2184 =item Other perls
2185
2186 =back
2187
2188 =item FUNCTION IMPLEMENTATIONS
2189
2190 =over 4
2191
2192 =item Alphabetical Listing of Perl Functions
2193
2194 -I<X> FILEHANDLE, -I<X> EXPR, -I<X>, alarm SECONDS, alarm, binmode
2195 FILEHANDLE, chmod LIST, chown LIST, chroot FILENAME, chroot, crypt
2196 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MODE, dump LABEL, exec
2197 LIST, exit EXPR, exit, fcntl FILEHANDLE,FUNCTION,SCALAR, flock
2198 FILEHANDLE,OPERATION, fork, getlogin, getpgrp PID, getppid, getpriority
2199 WHICH,WHO, getpwnam NAME, getgrnam NAME, getnetbyname NAME, getpwuid UID,
2200 getgrgid GID, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
2201 getservbyport PORT,PROTO, getpwent, getgrent, gethostbyname, gethostent,
2202 getnetent, getprotoent, getservent, sethostent STAYOPEN, setnetent
2203 STAYOPEN, setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent,
2204 endhostent, endnetent, endprotoent, endservent, getsockopt
2205 SOCKET,LEVEL,OPTNAME, glob EXPR, glob, ioctl FILEHANDLE,FUNCTION,SCALAR,
2206 kill SIGNAL, LIST, link OLDFILE,NEWFILE, lstat FILEHANDLE, lstat EXPR,
2207 lstat, msgctl ID,CMD,ARG, msgget KEY,FLAGS, msgsnd ID,MSG,FLAGS, msgrcv
2208 ID,VAR,SIZE,TYPE,FLAGS, open FILEHANDLE,EXPR, open FILEHANDLE, pipe
2209 READHANDLE,WRITEHANDLE, readlink EXPR, readlink, select
2210 RBITS,WBITS,EBITS,TIMEOUT, semctl ID,SEMNUM,CMD,ARG, semget
2211 KEY,NSEMS,FLAGS, semop KEY,OPSTRING, setgrent, setpgrp PID,PGRP,
2212 setpriority WHICH,WHO,PRIORITY, setpwent, setsockopt
2213 SOCKET,LEVEL,OPTNAME,OPTVAL, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS,
2214 shmread ID,VAR,POS,SIZE, shmwrite ID,STRING,POS,SIZE, sockatmark SOCKET,
2215 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, stat FILEHANDLE, stat
2216 EXPR, stat, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
2217 FILEHANDLE,FILENAME,MODE,PERMS, system LIST, times, truncate
2218 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, umask EXPR, umask, utime LIST,
2219 wait, waitpid PID,FLAGS
2220
2221 =back
2222
2223 =item CHANGES
2224
2225 v1.49, 12 August 2002, v1.48, 02 February 2001, v1.47, 22 March 2000,
2226 v1.46, 12 February 2000, v1.45, 20 December 1999, v1.44, 19 July 1999,
2227 v1.43, 24 May 1999, v1.42, 22 May 1999, v1.41, 19 May 1999, v1.40, 11 April
2228 1999, v1.39, 11 February 1999, v1.38, 31 December 1998, v1.37, 19 December
2229 1998, v1.36, 9 September 1998, v1.35, 13 August 1998, v1.33, 06 August
2230 1998, v1.32, 05 August 1998, v1.30, 03 August 1998, v1.23, 10 July 1998
2231
2232 =item Supported Platforms
2233
2234 =item SEE ALSO
2235
2236 =item AUTHORS / CONTRIBUTORS
2237
2238 =back
2239
2240 =head2 perllocale - Perl locale handling (internationalization and
2241 localization)
2242
2243 =over 4
2244
2245 =item DESCRIPTION
2246
2247 =item PREPARING TO USE LOCALES
2248
2249 =item USING LOCALES
2250
2251 =over 4
2252
2253 =item The use locale pragma
2254
2255 =item The setlocale function
2256
2257 =item Finding locales
2258
2259 =item LOCALE PROBLEMS
2260
2261 =item Temporarily fixing locale problems
2262
2263 =item Permanently fixing locale problems
2264
2265 =item Permanently fixing your system's locale configuration
2266
2267 =item Fixing system locale configuration
2268
2269 =item The localeconv function
2270
2271 =item I18N::Langinfo
2272
2273 =back
2274
2275 =item LOCALE CATEGORIES
2276
2277 =over 4
2278
2279 =item Category LC_COLLATE: Collation
2280
2281 =item Category LC_CTYPE: Character Types
2282
2283 =item Category LC_NUMERIC: Numeric Formatting
2284
2285 =item Category LC_MONETARY: Formatting of monetary amounts
2286
2287 =item LC_TIME
2288
2289 =item Other categories
2290
2291 =back
2292
2293 =item SECURITY
2294
2295 =item ENVIRONMENT
2296
2297 PERL_BADLANG, LC_ALL, LANGUAGE, LC_CTYPE, LC_COLLATE, LC_MONETARY,
2298 LC_NUMERIC, LC_TIME, LANG
2299
2300 =item NOTES
2301
2302 =over 4
2303
2304 =item Backward compatibility
2305
2306 =item I18N:Collate obsolete
2307
2308 =item Sort speed and memory use impacts
2309
2310 =item write() and LC_NUMERIC
2311
2312 =item Freely available locale definitions
2313
2314 =item I18n and l10n
2315
2316 =item An imperfect standard
2317
2318 =back
2319
2320 =item Unicode and UTF-8
2321
2322 =item BUGS
2323
2324 =over 4
2325
2326 =item Broken systems
2327
2328 =back
2329
2330 =item SEE ALSO
2331
2332 =item HISTORY
2333
2334 =back
2335
2336 =head2 perluniintro - Perl Unicode introduction
2337
2338 =over 4
2339
2340 =item DESCRIPTION
2341
2342 =over 4
2343
2344 =item Unicode
2345
2346 =item Perl's Unicode Support
2347
2348 =item Perl's Unicode Model
2349
2350 =item Unicode and EBCDIC
2351
2352 =item Creating Unicode
2353
2354 =item Handling Unicode
2355
2356 =item Legacy Encodings
2357
2358 =item Unicode I/O
2359
2360 =item Displaying Unicode As Text
2361
2362 =item Special Cases
2363
2364 =item Advanced Topics
2365
2366 =item Miscellaneous
2367
2368 =item Questions With Answers
2369
2370 =item Hexadecimal Notation
2371
2372 =item Further Resources
2373
2374 =back
2375
2376 =item UNICODE IN OLDER PERLS
2377
2378 =item SEE ALSO
2379
2380 =item ACKNOWLEDGMENTS
2381
2382 =item AUTHOR, COPYRIGHT, AND LICENSE
2383
2384 =back
2385
2386 =head2 perlunicode - Unicode support in Perl
2387
2388 =over 4
2389
2390 =item DESCRIPTION
2391
2392 =over 4
2393
2394 =item Important Caveats
2395
2396 Input and Output Layers, Regular Expressions, C<use utf8> still needed to
2397 enable UTF-8/UTF-EBCDIC in scripts
2398
2399 =item Byte and Character Semantics
2400
2401 =item Effects of Character Semantics
2402
2403 =item Scripts
2404
2405 =item Blocks
2406
2407 =item User-Defined Character Properties
2408
2409 =item Character Encodings for Input and Output
2410
2411 =item Unicode Regular Expression Support Level
2412
2413 =item Unicode Encodings
2414
2415 =item Security Implications of Unicode
2416
2417 =item Unicode in Perl on EBCDIC
2418
2419 =item Locales
2420
2421 =item Using Unicode in XS
2422
2423 =back
2424
2425 =item BUGS
2426
2427 =over 4
2428
2429 =item Interaction with Locales
2430
2431 =item Interaction with Extensions
2432
2433 =item Speed
2434
2435 =item Porting code from perl-5.6.X
2436
2437 =back
2438
2439 =item SEE ALSO
2440
2441 =back
2442
2443 =head2 perlebcdic - Considerations for running Perl on EBCDIC platforms
2444
2445 =over 4
2446
2447 =item DESCRIPTION
2448
2449 =item COMMON CHARACTER CODE SETS
2450
2451 =over 4
2452
2453 =item ASCII
2454
2455 =item ISO 8859
2456
2457 =item Latin 1 (ISO 8859-1)
2458
2459 =item EBCDIC
2460
2461 =item 13 variant characters
2462
2463 =item 0037
2464
2465 =item 1047
2466
2467 =item POSIX-BC
2468
2469 =item Unicode code points versus EBCDIC code points
2470
2471 =item Remaining Perl Unicode problems in EBCDIC
2472
2473 =item Unicode and UTF
2474
2475 =item Using Encode
2476
2477 =back
2478
2479 =item SINGLE OCTET TABLES
2480
2481 recipe 0, recipe 1, recipe 2, recipe 3, recipe 4, recipe 5, recipe 6
2482
2483 =item IDENTIFYING CHARACTER CODE SETS
2484
2485 =item CONVERSIONS
2486
2487 =over 4
2488
2489 =item tr///
2490
2491 =item iconv
2492
2493 =item C RTL
2494
2495 =back
2496
2497 =item OPERATOR DIFFERENCES
2498
2499 =item FUNCTION DIFFERENCES
2500
2501 chr(), ord(), pack(), print(), printf(), sort(), sprintf(), unpack()
2502
2503 =item REGULAR EXPRESSION DIFFERENCES
2504
2505 =item SOCKETS
2506
2507 =item SORTING
2508
2509 =over 4
2510
2511 =item Ignore ASCII vs. EBCDIC sort differences.
2512
2513 =item MONO CASE then sort data.
2514
2515 =item Convert, sort data, then re convert.
2516
2517 =item Perform sorting on one type of machine only.
2518
2519 =back
2520
2521 =item TRANSFORMATION FORMATS
2522
2523 =over 4
2524
2525 =item URL decoding and encoding
2526
2527 =item uu encoding and decoding
2528
2529 =item Quoted-Printable encoding and decoding
2530
2531 =item Caesarian ciphers
2532
2533 =back
2534
2535 =item Hashing order and checksums
2536
2537 =item I18N AND L10N
2538
2539 =item MULTI OCTET CHARACTER SETS
2540
2541 =item OS ISSUES
2542
2543 =over 4
2544
2545 =item OS/400
2546
2547 PASE, IFS access
2548
2549 =item OS/390, z/OS
2550
2551 chcp, dataset access, OS/390, z/OS iconv, locales
2552
2553 =item VM/ESA?
2554
2555 =item POSIX-BC?
2556
2557 =back
2558
2559 =item BUGS
2560
2561 =item SEE ALSO
2562
2563 =item REFERENCES
2564
2565 =item HISTORY
2566
2567 =item AUTHOR
2568
2569 =back
2570
2571 =head2 perlsec - Perl security
2572
2573 =over 4
2574
2575 =item DESCRIPTION
2576
2577 =over 4
2578
2579 =item Laundering and Detecting Tainted Data
2580
2581 =item Switches On the "#!" Line
2582
2583 =item Cleaning Up Your Path
2584
2585 =item Security Bugs
2586
2587 =item Protecting Your Programs
2588
2589 =item Unicode
2590
2591 =back
2592
2593 =item SEE ALSO
2594
2595 =back
2596
2597 =head2 perlmod - Perl modules (packages and symbol tables)
2598
2599 =over 4
2600
2601 =item DESCRIPTION
2602
2603 =over 4
2604
2605 =item Packages
2606
2607 =item Symbol Tables
2608
2609 =item Package Constructors and Destructors
2610
2611 =item Perl Classes
2612
2613 =item Perl Modules
2614
2615 =item Making your module threadsafe
2616
2617 =back
2618
2619 =item SEE ALSO
2620
2621 =back
2622
2623 =head2 perlmodinstall - Installing CPAN Modules
2624
2625 =over 4
2626
2627 =item DESCRIPTION
2628
2629 =over 4
2630
2631 =item PREAMBLE
2632
2633 B<DECOMPRESS> the file, B<UNPACK> the file into a directory, B<BUILD> the
2634 module (sometimes unnecessary), B<INSTALL> the module
2635
2636 =back
2637
2638 =item PORTABILITY
2639
2640 =item HEY
2641
2642 =item AUTHOR
2643
2644 =item COPYRIGHT
2645
2646 =back
2647
2648 =head2 perlmodlib - constructing new Perl modules and finding existing ones
2649
2650 =over 4
2651
2652 =item THE PERL MODULE LIBRARY
2653
2654 =over 4
2655
2656 =item Pragmatic Modules
2657
2658 assertions, assertions::activate, attributes, attrs, autouse, base, bigint,
2659 bignum, bigrat, blib, bytes, charnames, constant, diagnostics, encoding,
2660 fields, filetest, if, integer, less, lib, locale, open, ops, overload, re,
2661 sigtrap, sort, strict, subs, threads, threads::shared, utf8, vars, version,
2662 vmsish, warnings, warnings::register
2663
2664 =item Standard Modules
2665
2666 AnyDBM_File, Attribute::Handlers, AutoLoader, AutoSplit, B, B::Asmdata,
2667 B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC, B::Concise, B::Debug,
2668 B::Deparse, B::Disassembler, B::Lint, B::Showlex, B::Stackobj, B::Stash,
2669 B::Terse, B::Xref, Benchmark, ByteLoader, CGI, CGI::Apache, CGI::Carp,
2670 CGI::Cookie, CGI::Fast, CGI::Pretty, CGI::Push, CGI::Switch, CGI::Util,
2671 CPAN, CPAN::FirstTime, CPAN::Nox, Carp, Carp::Heavy, Class::ISA,
2672 Class::Struct, Config, Cwd, DB, DB_File, Data::Dumper, Devel::DProf,
2673 Devel::PPPort, Devel::Peek, Devel::SelfStubber, Digest, Digest::MD5,
2674 DirHandle, Dumpvalue, DynaLoader, Encode, Encode::Alias, Encode::Byte,
2675 Encode::CJKConstants, Encode::CN, Encode::CN::HZ, Encode::Config,
2676 Encode::EBCDIC, Encode::Encoder, Encode::Encoding, Encode::Guess,
2677 Encode::JP, Encode::JP::H2Z, Encode::JP::JIS7, Encode::KR,
2678 Encode::KR::2022_KR, Encode::MIME::Header, Encode::PerlIO,
2679 Encode::Supported, Encode::Symbol, Encode::TW, Encode::Unicode, English,
2680 Env, Errno, Exporter, Exporter::Heavy, ExtUtils::Command,
2681 ExtUtils::Command::MM, ExtUtils::Constant, ExtUtils::Embed,
2682 ExtUtils::Install, ExtUtils::Installed, ExtUtils::Liblist, ExtUtils::MM,
2683 ExtUtils::MM_Any, ExtUtils::MM_BeOS, ExtUtils::MM_Cygwin, ExtUtils::MM_DOS,
2684 ExtUtils::MM_MacOS, ExtUtils::MM_NW5, ExtUtils::MM_OS2, ExtUtils::MM_UWIN,
2685 ExtUtils::MM_Unix, ExtUtils::MM_VMS, ExtUtils::MM_Win32,
2686 ExtUtils::MM_Win95, ExtUtils::MY, ExtUtils::MakeMaker,
2687 ExtUtils::MakeMaker::FAQ, ExtUtils::MakeMaker::Tutorial,
2688 ExtUtils::MakeMaker::vmsish, ExtUtils::Manifest, ExtUtils::Mkbootstrap,
2689 ExtUtils::Mksymlists, ExtUtils::Packlist, ExtUtils::testlib, Fatal, Fcntl,
2690 File::Basename, File::CheckTree, File::Compare, File::Copy, File::DosGlob,
2691 File::Find, File::Glob, File::Path, File::Spec, File::Spec::Cygwin,
2692 File::Spec::Epoc, File::Spec::Functions, File::Spec::Mac, File::Spec::OS2,
2693 File::Spec::Unix, File::Spec::VMS, File::Spec::Win32, File::Temp,
2694 File::stat, FileCache, FileHandle, Filter::Simple, Filter::Util::Call,
2695 FindBin, GDBM_File, Getopt::Long, Getopt::Std, Hash::Util, I18N::Collate,
2696 I18N::LangTags, I18N::LangTags::List, I18N::Langinfo, IO, IO::Dir,
2697 IO::File, IO::Handle, IO::Pipe, IO::Poll, IO::Seekable, IO::Select,
2698 IO::Socket, IO::Socket::INET, IO::Socket::UNIX, IPC::Open2, IPC::Open3,
2699 IPC::SysV, IPC::SysV::Msg, IPC::SysV::Semaphore, List::Util,
2700 Locale::Constants, Locale::Country, Locale::Currency, Locale::Language,
2701 Locale::Maketext, Locale::Maketext::TPJ13, Locale::Script, MIME::Base64,
2702 MIME::Base64::QuotedPrint, Math::BigFloat, Math::BigInt,
2703 Math::BigInt::Calc, Math::BigInt::Scalar, Math::BigRat, Math::Complex,
2704 Math::Trig, Memoize, Memoize::AnyDBM_File, Memoize::Expire,
2705 Memoize::ExpireFile, Memoize::ExpireTest, Memoize::NDBM_File,
2706 Memoize::SDBM_File, Memoize::Storable, NDBM_File, NEXT, Net::Cmd,
2707 Net::Config, Net::Domain, Net::FTP, Net::NNTP, Net::Netrc, Net::POP3,
2708 Net::Ping, Net::SMTP, Net::Time, Net::hostent, Net::libnetFAQ, Net::netent,
2709 Net::protoent, Net::servent, O, ODBM_File, Opcode, POSIX, PerlIO,
2710 PerlIO::encoding, PerlIO::scalar, PerlIO::via, PerlIO::via::QuotedPrint,
2711 Pod::Checker, Pod::Find, Pod::Functions, Pod::Html, Pod::InputObjects,
2712 Pod::LaTeX, Pod::Man, Pod::ParseLink, Pod::ParseUtils, Pod::Parser,
2713 Pod::Perldoc::ToChecker, Pod::Perldoc::ToMan, Pod::Perldoc::ToNroff,
2714 Pod::Perldoc::ToPod, Pod::Perldoc::ToRtf, Pod::Perldoc::ToText,
2715 Pod::Perldoc::ToTk, Pod::Perldoc::ToXml, Pod::PlainText, Pod::Plainer,
2716 Pod::Select, Pod::Text, Pod::Text::Color, Pod::Text::Overstrike,
2717 Pod::Text::Termcap, Pod::Usage, SDBM_File, Safe, Scalar::Util,
2718 Search::Dict, SelectSaver, SelfLoader, Shell, Socket, Storable, Switch,
2719 Symbol, Sys::Hostname, Sys::Syslog, Term::ANSIColor, Term::Cap,
2720 Term::Complete, Term::ReadLine, Test, Test::Builder, Test::Harness,
2721 Test::Harness::Assert, Test::Harness::Iterator, Test::Harness::Straps,
2722 Test::More, Test::Simple, Test::Tutorial, Text::Abbrev, Text::Balanced,
2723 Text::ParseWords, Text::Soundex, Text::Tabs, Text::Wrap, Thread,
2724 Thread::Queue, Thread::Semaphore, Thread::Signal, Thread::Specific,
2725 Tie::Array, Tie::File, Tie::Handle, Tie::Hash, Tie::Memoize, Tie::RefHash,
2726 Tie::Scalar, Tie::SubstrHash, Time::HiRes, Time::Local, Time::gmtime,
2727 Time::localtime, Time::tm, UNIVERSAL, Unicode::Collate, Unicode::Normalize,
2728 Unicode::UCD, User::grent, User::pwent, Win32, XS::APItest, XS::Typemap,
2729 XSLoader
2730
2731 =item Extension Modules
2732
2733 =back
2734
2735 =item CPAN
2736
2737 =over 4
2738
2739 =item Africa
2740
2741 South Africa
2742
2743 =item Asia
2744
2745 China, India, Indonesia, Israel, Japan, Korea, Philippines, Russian
2746 Federation, Saudi Arabia, Singapore, South Korea, Taiwan, Thailand
2747
2748 =item Central America
2749
2750 Costa Rica
2751
2752 =item Europe
2753
2754 Austria, Belgium, Bulgaria, Croatia, Czech Republic, Denmark, Estonia,
2755 Finland, France, Germany, Greece, Hungary, Iceland, Ireland, Italy, Latvia,
2756 Lithuania, Netherlands, Norway, Poland, Portugal, Romania, Russia,
2757 Slovakia, Slovenia, Spain, Sweden, Switzerland, Turkey, Ukraine, United
2758 Kingdom
2759
2760 =item North America
2761
2762 Alberta, Manitoba, Nova Scotia, Ontario, Quebec, Mexico
2763
2764 =item United States
2765
2766 Alabama, California, Colorado, Delaware, District of Columbia, Florida,
2767 Illinois, Indiana, Kentucky, Massachusetts, Michigan, New Jersey, New York,
2768 North Carolina, Ohio, Oklahoma, Oregon, Pennsylvania, Tennessee, Texas,
2769 Utah, Virginia, ashington, Wisconsin
2770
2771 =item Oceania
2772
2773 Australia, New Zealand
2774
2775 =item South America
2776
2777 Argentina, Brazil, Chile
2778
2779 =item RSYNC Mirrors
2780
2781 =back
2782
2783 =item Modules: Creation, Use, and Abuse
2784
2785 =over 4
2786
2787 =item Guidelines for Module Creation
2788
2789 =item Guidelines for Converting Perl 4 Library Scripts into Modules
2790
2791 =item Guidelines for Reusing Application Code
2792
2793 =back
2794
2795 =item NOTE
2796
2797 =back
2798
2799 =head2 perlmodstyle - Perl module style guide
2800
2801 =over 4
2802
2803 =item INTRODUCTION
2804
2805 =item QUICK CHECKLIST
2806
2807 =over 4
2808
2809 =item Before you start
2810
2811 =item The API
2812
2813 =item Stability
2814
2815 =item Documentation
2816
2817 =item Release considerations
2818
2819 =back
2820
2821 =item BEFORE YOU START WRITING A MODULE
2822
2823 =over 4
2824
2825 =item Has it been done before?
2826
2827 =item Do one thing and do it well
2828
2829 =item What's in a name?
2830
2831 =back
2832
2833 =item DESIGNING AND WRITING YOUR MODULE
2834
2835 =over 4
2836
2837 =item To OO or not to OO?
2838
2839 =item Designing your API
2840
2841 Write simple routines to do simple things, Separate functionality from
2842 output, Provide sensible shortcuts and defaults, Naming conventions,
2843 Parameter passing
2844
2845 =item Strictness and warnings
2846
2847 =item Backwards compatibility
2848
2849 =item Error handling and messages
2850
2851 =back
2852
2853 =item DOCUMENTING YOUR MODULE
2854
2855 =over 4
2856
2857 =item POD
2858
2859 =item README, INSTALL, release notes, changelogs
2860
2861 perl Makefile.PL, make, make test, make install, perl Build.PL, perl Build,
2862 perl Build test, perl Build install
2863
2864 =back
2865
2866 =item RELEASE CONSIDERATIONS
2867
2868 =over 4
2869
2870 =item Version numbering
2871
2872 =item Pre-requisites
2873
2874 =item Testing
2875
2876 =item Packaging
2877
2878 =item Licensing
2879
2880 =back
2881
2882 =item COMMON PITFALLS
2883
2884 =over 4
2885
2886 =item Reinventing the wheel
2887
2888 =item Trying to do too much
2889
2890 =item Inappropriate documentation
2891
2892 =back
2893
2894 =item SEE ALSO
2895
2896 L<perlstyle>, L<perlnewmod>, L<perlpod>, L<podchecker>, Packaging Tools,
2897 Testing tools, http://pause.perl.org/, Any good book on software
2898 engineering
2899
2900 =item AUTHOR
2901
2902 =back
2903
2904 =head2 perlnewmod - preparing a new module for distribution
2905
2906 =over 4
2907
2908 =item DESCRIPTION
2909
2910 =over 4
2911
2912 =item Warning
2913
2914 =item What should I make into a module?
2915
2916 =item Step-by-step: Preparing the ground
2917
2918 Look around, Check it's new, Discuss the need, Choose a name, Check again
2919
2920 =item Step-by-step: Making the module
2921
2922 Start with F<h2xs>, Use L<strict|strict> and L<warnings|warnings>, Use
2923 L<Carp|Carp>, Use L<Exporter|Exporter> - wisely!, Use L<plain old
2924 documentation|perlpod>, Write tests, Write the README
2925
2926 =item Step-by-step: Distributing your module
2927
2928 Get a CPAN user ID, C<perl Makefile.PL; make test; make dist>, Upload the
2929 tarball, Announce to the modules list, Announce to clpa, Fix bugs!
2930
2931 =back
2932
2933 =item AUTHOR
2934
2935 =item SEE ALSO
2936
2937 =back
2938
2939 =head2 perlfaq1 - General Questions About Perl ($Revision: 1.11 $, $Date:
2940 2002/12/06 07:40:11 $)
2941
2942 =over 4
2943
2944 =item DESCRIPTION
2945
2946 =over 4
2947
2948 =item What is Perl?
2949
2950 =item Who supports Perl?  Who develops it?  Why is it free?
2951
2952 =item Which version of Perl should I use?
2953
2954 =item What are perl4 and perl5?
2955
2956 =item What is perl6?
2957
2958 =item How stable is Perl?
2959
2960 =item Is Perl difficult to learn?
2961
2962 =item How does Perl compare with other languages like Java, Python, REXX,
2963 Scheme, or Tcl?
2964
2965 =item Can I do [task] in Perl?
2966
2967 =item When shouldn't I program in Perl?
2968
2969 =item What's the difference between "perl" and "Perl"?
2970
2971 =item Is it a Perl program or a Perl script?
2972
2973 =item What is a JAPH?
2974
2975 =item Where can I get a list of Larry Wall witticisms?
2976
2977 =item How can I convince my sysadmin/supervisor/employees to use version
2978 5/5.6.1/Perl instead of some other language?
2979
2980 =back
2981
2982 =item AUTHOR AND COPYRIGHT
2983
2984 =back
2985
2986 =head2 perlfaq2 - Obtaining and Learning about Perl ($Revision: 1.20 $,
2987 $Date: 2003/01/26 17:50:56 $)
2988
2989 =over 4
2990
2991 =item DESCRIPTION
2992
2993 =over 4
2994
2995 =item What machines support Perl?  Where do I get it?
2996
2997 =item How can I get a binary version of Perl?
2998
2999 =item I don't have a C compiler on my system.  How can I compile perl?
3000
3001 =item I copied the Perl binary from one machine to another, but scripts
3002 don't work.
3003
3004 =item I grabbed the sources and tried to compile but gdbm/dynamic
3005 loading/malloc/linking/... failed.  How do I make it work?
3006
3007 =item What modules and extensions are available for Perl?  What is CPAN? 
3008 What does CPAN/src/... mean?
3009
3010 =item Is there an ISO or ANSI certified version of Perl?
3011
3012 =item Where can I get information on Perl?
3013
3014 =item What are the Perl newsgroups on Usenet?  Where do I post questions?
3015
3016 =item Where should I post source code?
3017
3018 =item Perl Books
3019
3020 References, Tutorials, Task-Oriented, Special Topics
3021
3022 =item Perl in Magazines
3023
3024 =item Perl on the Net: FTP and WWW Access
3025
3026 =item What mailing lists are there for Perl?
3027
3028 =item Archives of comp.lang.perl.misc
3029
3030 =item Where can I buy a commercial version of Perl?
3031
3032 =item Where do I send bug reports?
3033
3034 =item What is perl.com? Perl Mongers? pm.org? perl.org? cpan.org?
3035
3036 =back
3037
3038 =item AUTHOR AND COPYRIGHT
3039
3040 =back
3041
3042 =head2 perlfaq3 - Programming Tools ($Revision: 1.33 $, $Date: 2003/01/31
3043 17:34:56 $)
3044
3045 =over 4
3046
3047 =item DESCRIPTION
3048
3049 =over 4
3050
3051 =item How do I do (anything)?
3052
3053 =item How can I use Perl interactively?
3054
3055 =item Is there a Perl shell?
3056
3057 =item How do I find which modules are installed on my system?
3058
3059 =item How do I debug my Perl programs?
3060
3061 =item How do I profile my Perl programs?
3062
3063 =item How do I cross-reference my Perl programs?
3064
3065 =item Is there a pretty-printer (formatter) for Perl?
3066
3067 =item Is there a ctags for Perl?
3068
3069 =item Is there an IDE or Windows Perl Editor?
3070
3071 Komodo, The Object System, Open Perl IDE, PerlBuilder, visiPerl+, OptiPerl,
3072 GNU Emacs, MicroEMACS, XEmacs, Jed, Elvis, Vile, Vim, Codewright,
3073 MultiEdit, SlickEdit, Bash, Ksh, Tcsh, Zsh, BBEdit and BBEdit Lite, Alpha
3074
3075 =item Where can I get Perl macros for vi?
3076
3077 =item Where can I get perl-mode for emacs?
3078
3079 =item How can I use curses with Perl?
3080
3081 =item How can I use X or Tk with Perl?
3082
3083 =item How can I generate simple menus without using CGI or Tk?
3084
3085 =item How can I make my Perl program run faster?
3086
3087 =item How can I make my Perl program take less memory?
3088
3089 Don't slurp!, Use map and grep selectively, Avoid unnecessary quotes and
3090 stringification, Pass by reference, Tie large variables to disk
3091
3092 =item Is it safe to return a reference to local or lexical data?
3093
3094 =item How can I free an array or hash so my program shrinks?
3095
3096 =item How can I make my CGI script more efficient?
3097
3098 =item How can I hide the source for my Perl program?
3099
3100 =item How can I compile my Perl program into byte code or C?
3101
3102 =item How can I compile Perl into Java?
3103
3104 =item How can I get C<#!perl> to work on [MS-DOS,NT,...]?
3105
3106 =item Can I write useful Perl programs on the command line?
3107
3108 =item Why don't Perl one-liners work on my DOS/Mac/VMS system?
3109
3110 =item Where can I learn about CGI or Web programming in Perl?
3111
3112 =item Where can I learn about object-oriented Perl programming?
3113
3114 =item Where can I learn about linking C with Perl? [h2xs, xsubpp]
3115
3116 =item I've read perlembed, perlguts, etc., but I can't embed perl in
3117 my C program; what am I doing wrong?
3118
3119 =item When I tried to run my script, I got this message. What does it mean?
3120
3121 =item What's MakeMaker?
3122
3123 =back
3124
3125 =item AUTHOR AND COPYRIGHT
3126
3127 =back
3128
3129 =head2 perlfaq4 - Data Manipulation ($Revision: 1.43 $, $Date: 2003/02/23
3130 20:25:09 $)
3131
3132 =over 4
3133
3134 =item DESCRIPTION
3135
3136 =item Data: Numbers
3137
3138 =over 4
3139
3140 =item Why am I getting long decimals (eg, 19.9499999999999) instead of the
3141 numbers I should be getting (eg, 19.95)?
3142
3143 =item Why isn't my octal data interpreted correctly?
3144
3145 =item Does Perl have a round() function?  What about ceil() and floor()? 
3146 Trig functions?
3147
3148 =item How do I convert between numeric representations?
3149
3150 How do I convert hexadecimal into decimal, How do I convert from decimal to
3151 hexadecimal, How do I convert from octal to decimal, How do I convert from
3152 decimal to octal, How do I convert from binary to decimal, How do I convert
3153 from decimal to binary
3154
3155 =item Why doesn't & work the way I want it to?
3156
3157 =item How do I multiply matrices?
3158
3159 =item How do I perform an operation on a series of integers?
3160
3161 =item How can I output Roman numerals?
3162
3163 =item Why aren't my random numbers random?
3164
3165 =item How do I get a random number between X and Y?
3166
3167 =back
3168
3169 =item Data: Dates
3170
3171 =over 4
3172
3173 =item How do I find the day or week of the year?
3174
3175 =item How can I compare two dates and find the difference?
3176
3177 =item How can I take a string and turn it into epoch seconds?
3178
3179 =item How can I find the Julian Day?
3180
3181 =item How do I find yesterday's date?
3182
3183 =item Does Perl have a Year 2000 problem?  Is Perl Y2K compliant?
3184
3185 =back
3186
3187 =item Data: Strings
3188
3189 =over 4
3190
3191 =item How do I validate input?
3192
3193 =item How do I unescape a string?
3194
3195 =item How do I remove consecutive pairs of characters?
3196
3197 =item How do I expand function calls in a string?
3198
3199 =item How do I find matching/nesting anything?
3200
3201 =item How do I reverse a string?
3202
3203 =item How do I expand tabs in a string?
3204
3205 =item How do I reformat a paragraph?
3206
3207 =item How can I access or change N characters of a string?
3208
3209 =item How do I change the Nth occurrence of something?
3210
3211 =item How can I count the number of occurrences of a substring within a
3212 string?
3213
3214 =item How do I capitalize all the words on one line?
3215
3216 =item How can I split a [character] delimited string except when inside
3217 [character]?
3218
3219 =item How do I strip blank space from the beginning/end of a string?
3220
3221 =item How do I pad a string with blanks or pad a number with zeroes?
3222
3223 =item How do I extract selected columns from a string?
3224
3225 =item How do I find the soundex value of a string?
3226
3227 =item How can I expand variables in text strings?
3228
3229 =item What's wrong with always quoting "$vars"?
3230
3231 =item Why don't my E<lt>E<lt>HERE documents work?
3232
3233 There must be no space after the E<lt>E<lt> part, There (probably) should
3234 be a semicolon at the end, You can't (easily) have any space in front of
3235 the tag
3236
3237 =back
3238
3239 =item Data: Arrays
3240
3241 =over 4
3242
3243 =item What is the difference between a list and an array?
3244
3245 =item What is the difference between $array[1] and @array[1]?
3246
3247 =item How can I remove duplicate elements from a list or array?
3248
3249 a), b), c), d), e)
3250
3251 =item How can I tell whether a certain element is contained in a list or
3252 array?
3253
3254 =item How do I compute the difference of two arrays?  How do I compute the
3255 intersection of two arrays?
3256
3257 =item How do I test whether two arrays or hashes are equal?
3258
3259 =item How do I find the first array element for which a condition is true?
3260
3261 =item How do I handle linked lists?
3262
3263 =item How do I handle circular lists?
3264
3265 =item How do I shuffle an array randomly?
3266
3267 =item How do I process/modify each element of an array?
3268
3269 =item How do I select a random element from an array?
3270
3271 =item How do I permute N elements of a list?
3272
3273 =item How do I sort an array by (anything)?
3274
3275 =item How do I manipulate arrays of bits?
3276
3277 =item Why does defined() return true on empty arrays and hashes?
3278
3279 =back
3280
3281 =item Data: Hashes (Associative Arrays)
3282
3283 =over 4
3284
3285 =item How do I process an entire hash?
3286
3287 =item What happens if I add or remove keys from a hash while iterating over
3288 it?
3289
3290 =item How do I look up a hash element by value?
3291
3292 =item How can I know how many entries are in a hash?
3293
3294 =item How do I sort a hash (optionally by value instead of key)?
3295
3296 =item How can I always keep my hash sorted?
3297
3298 =item What's the difference between "delete" and "undef" with hashes?
3299
3300 =item Why don't my tied hashes make the defined/exists distinction?
3301
3302 =item How do I reset an each() operation part-way through?
3303
3304 =item How can I get the unique keys from two hashes?
3305
3306 =item How can I store a multidimensional array in a DBM file?
3307
3308 =item How can I make my hash remember the order I put elements into it?
3309
3310 =item Why does passing a subroutine an undefined element in a hash create
3311 it?
3312
3313 =item How can I make the Perl equivalent of a C structure/C++ class/hash or
3314 array of hashes or arrays?
3315
3316 =item How can I use a reference as a hash key?
3317
3318 =back
3319
3320 =item Data: Misc
3321
3322 =over 4
3323
3324 =item How do I handle binary data correctly?
3325
3326 =item How do I determine whether a scalar is a number/whole/integer/float?
3327
3328 =item How do I keep persistent data across program calls?
3329
3330 =item How do I print out or copy a recursive data structure?
3331
3332 =item How do I define methods for every class/object?
3333
3334 =item How do I verify a credit card checksum?
3335
3336 =item How do I pack arrays of doubles or floats for XS code?
3337
3338 =back
3339
3340 =item AUTHOR AND COPYRIGHT
3341
3342 =back
3343
3344 =head2 perlfaq5 - Files and Formats ($Revision: 1.28 $, $Date: 2003/01/26
3345 17:45:46 $)
3346
3347 =over 4
3348
3349 =item DESCRIPTION
3350
3351 =over 4
3352
3353 =item How do I flush/unbuffer an output filehandle?  Why must I do this?
3354
3355 =item How do I change one line in a file/delete a line in a file/insert a
3356 line in the middle of a file/append to the beginning of a file?
3357
3358 =item How do I count the number of lines in a file?
3359
3360 =item How can I use Perl's C<-i> option from within a program?
3361
3362 =item How do I make a temporary file name?
3363
3364 =item How can I manipulate fixed-record-length files?
3365
3366 =item How can I make a filehandle local to a subroutine?  How do I pass
3367 filehandles between subroutines?  How do I make an array of filehandles?
3368
3369 =item How can I use a filehandle indirectly?
3370
3371 =item How can I set up a footer format to be used with write()?
3372
3373 =item How can I write() into a string?
3374
3375 =item How can I output my numbers with commas added?
3376
3377 =item How can I translate tildes (~) in a filename?
3378
3379 =item How come when I open a file read-write it wipes it out?
3380
3381 =item Why do I sometimes get an "Argument list too long" when I use
3382 E<lt>*E<gt>?
3383
3384 =item Is there a leak/bug in glob()?
3385
3386 =item How can I open a file with a leading ">" or trailing blanks?
3387
3388 =item How can I reliably rename a file?
3389
3390 =item How can I lock a file?
3391
3392 =item Why can't I just open(FH, "E<gt>file.lock")?
3393
3394 =item I still don't get locking.  I just want to increment the number in
3395 the file.  How can I do this?
3396
3397 =item All I want to do is append a small amount of text to the end of a
3398 file.  Do I still have to use locking?
3399
3400 =item How do I randomly update a binary file?
3401
3402 =item How do I get a file's timestamp in perl?
3403
3404 =item How do I set a file's timestamp in perl?
3405
3406 =item How do I print to more than one file at once?
3407
3408 =item How can I read in an entire file all at once?
3409
3410 =item How can I read in a file by paragraphs?
3411
3412 =item How can I read a single character from a file?  From the keyboard?
3413
3414 =item How can I tell whether there's a character waiting on a filehandle?
3415
3416 =item How do I do a C<tail -f> in perl?
3417
3418 =item How do I dup() a filehandle in Perl?
3419
3420 =item How do I close a file descriptor by number?
3421
3422 =item Why can't I use "C:\temp\foo" in DOS paths?  Why doesn't
3423 `C:\temp\foo.exe` work?
3424
3425 =item Why doesn't glob("*.*") get all the files?
3426
3427 =item Why does Perl let me delete read-only files?  Why does C<-i> clobber
3428 protected files?  Isn't this a bug in Perl?
3429
3430 =item How do I select a random line from a file?
3431
3432 =item Why do I get weird spaces when I print an array of lines?
3433
3434 =back
3435
3436 =item AUTHOR AND COPYRIGHT
3437
3438 =back
3439
3440 =head2 perlfaq6 - Regular Expressions ($Revision: 1.20 $, $Date: 2003/01/03
3441 20:05:28 $)
3442
3443 =over 4
3444
3445 =item DESCRIPTION
3446
3447 =over 4
3448
3449 =item How can I hope to use regular expressions without creating illegible
3450 and unmaintainable code?
3451
3452 Comments Outside the Regex, Comments Inside the Regex, Different Delimiters
3453
3454 =item I'm having trouble matching over more than one line.  What's wrong?
3455
3456 =item How can I pull out lines between two patterns that are themselves on
3457 different lines?
3458
3459 =item I put a regular expression into $/ but it didn't work. What's wrong?
3460
3461 =item How do I substitute case insensitively on the LHS while preserving
3462 case on the RHS?
3463
3464 =item How can I make C<\w> match national character sets?
3465
3466 =item How can I match a locale-smart version of C</[a-zA-Z]/>?
3467
3468 =item How can I quote a variable to use in a regex?
3469
3470 =item What is C</o> really for?
3471
3472 =item How do I use a regular expression to strip C style comments from a
3473 file?
3474
3475 =item Can I use Perl regular expressions to match balanced text?
3476
3477 =item What does it mean that regexes are greedy?  How can I get around it?
3478
3479 =item How do I process each word on each line?
3480
3481 =item How can I print out a word-frequency or line-frequency summary?
3482
3483 =item How can I do approximate matching?
3484
3485 =item How do I efficiently match many regular expressions at once?
3486
3487 =item Why don't word-boundary searches with C<\b> work for me?
3488
3489 =item Why does using $&, $`, or $' slow my program down?
3490
3491 =item What good is C<\G> in a regular expression?
3492
3493 =item Are Perl regexes DFAs or NFAs?  Are they POSIX compliant?
3494
3495 =item What's wrong with using grep or map in a void context?
3496
3497 =item How can I match strings with multibyte characters?
3498
3499 =item How do I match a pattern that is supplied by the user?
3500
3501 =back
3502
3503 =item AUTHOR AND COPYRIGHT
3504
3505 =back
3506
3507 =head2 perlfaq7 - General Perl Language Issues ($Revision: 1.14 $, $Date:
3508 2003/01/31 17:38:14 $)
3509
3510 =over 4
3511
3512 =item DESCRIPTION
3513
3514 =over 4
3515
3516 =item Can I get a BNF/yacc/RE for the Perl language?
3517
3518 =item What are all these $@%&* punctuation signs, and how do I know when to
3519 use them?
3520
3521 =item Do I always/never have to quote my strings or use semicolons and
3522 commas?
3523
3524 =item How do I skip some return values?
3525
3526 =item How do I temporarily block warnings?
3527
3528 =item What's an extension?
3529
3530 =item Why do Perl operators have different precedence than C operators?
3531
3532 =item How do I declare/create a structure?
3533
3534 =item How do I create a module?
3535
3536 =item How do I create a class?
3537
3538 =item How can I tell if a variable is tainted?
3539
3540 =item What's a closure?
3541
3542 =item What is variable suicide and how can I prevent it?
3543
3544 =item How can I pass/return a {Function, FileHandle, Array, Hash, Method,
3545 Regex}?
3546
3547 Passing Variables and Functions, Passing Filehandles, Passing Regexes,
3548 Passing Methods
3549
3550 =item How do I create a static variable?
3551
3552 =item What's the difference between dynamic and lexical (static) scoping? 
3553 Between local() and my()?
3554
3555 =item How can I access a dynamic variable while a similarly named lexical
3556 is in scope?
3557
3558 =item What's the difference between deep and shallow binding?
3559
3560 =item Why doesn't "my($foo) = E<lt>FILEE<gt>;" work right?
3561
3562 =item How do I redefine a builtin function, operator, or method?
3563
3564 =item What's the difference between calling a function as &foo and foo()?
3565
3566 =item How do I create a switch or case statement?
3567
3568 =item How can I catch accesses to undefined variables, functions, or
3569 methods?
3570
3571 =item Why can't a method included in this same file be found?
3572
3573 =item How can I find out my current package?
3574
3575 =item How can I comment out a large block of perl code?
3576
3577 =item How do I clear a package?
3578
3579 =item How can I use a variable as a variable name?
3580
3581 =item What does "bad interpreter" mean?
3582
3583 =back
3584
3585 =item AUTHOR AND COPYRIGHT
3586
3587 =back
3588
3589 =head2 perlfaq8 - System Interaction ($Revision: 1.17 $, $Date: 2003/01/26
3590 17:44:04 $)
3591
3592 =over 4
3593
3594 =item DESCRIPTION
3595
3596 =over 4
3597
3598 =item How do I find out which operating system I'm running under?
3599
3600 =item How come exec() doesn't return?
3601
3602 =item How do I do fancy stuff with the keyboard/screen/mouse?
3603
3604 Keyboard, Screen, Mouse
3605
3606 =item How do I print something out in color?
3607
3608 =item How do I read just one key without waiting for a return key?
3609
3610 =item How do I check whether input is ready on the keyboard?
3611
3612 =item How do I clear the screen?
3613
3614 =item How do I get the screen size?
3615
3616 =item How do I ask the user for a password?
3617
3618 =item How do I read and write the serial port?
3619
3620 lockfiles, open mode, end of line, flushing output, non-blocking input
3621
3622 =item How do I decode encrypted password files?
3623
3624 =item How do I start a process in the background?
3625
3626 STDIN, STDOUT, and STDERR are shared, Signals, Zombies
3627
3628 =item How do I trap control characters/signals?
3629
3630 =item How do I modify the shadow password file on a Unix system?
3631
3632 =item How do I set the time and date?
3633
3634 =item How can I sleep() or alarm() for under a second?
3635
3636 =item How can I measure time under a second?
3637
3638 =item How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
3639
3640 =item Why doesn't my sockets program work under System V (Solaris)?  What
3641 does the error message "Protocol not supported" mean?
3642
3643 =item How can I call my system's unique C functions from Perl?
3644
3645 =item Where do I get the include files to do ioctl() or syscall()?
3646
3647 =item Why do setuid perl scripts complain about kernel problems?
3648
3649 =item How can I open a pipe both to and from a command?
3650
3651 =item Why can't I get the output of a command with system()?
3652
3653 =item How can I capture STDERR from an external command?
3654
3655 =item Why doesn't open() return an error when a pipe open fails?
3656
3657 =item What's wrong with using backticks in a void context?
3658
3659 =item How can I call backticks without shell processing?
3660
3661 =item Why can't my script read from STDIN after I gave it EOF (^D on Unix,
3662 ^Z on MS-DOS)?
3663
3664 =item How can I convert my shell script to perl?
3665
3666 =item Can I use perl to run a telnet or ftp session?
3667
3668 =item How can I write expect in Perl?
3669
3670 =item Is there a way to hide perl's command line from programs such as
3671 "ps"?
3672
3673 =item I {changed directory, modified my environment} in a perl script.  How
3674 come the change disappeared when I exited the script?  How do I get my
3675 changes to be visible?
3676
3677 Unix
3678
3679 =item How do I close a process's filehandle without waiting for it to
3680 complete?
3681
3682 =item How do I fork a daemon process?
3683
3684 =item How do I find out if I'm running interactively or not?
3685
3686 =item How do I timeout a slow event?
3687
3688 =item How do I set CPU limits?
3689
3690 =item How do I avoid zombies on a Unix system?
3691
3692 =item How do I use an SQL database?
3693
3694 =item How do I make a system() exit on control-C?
3695
3696 =item How do I open a file without blocking?
3697
3698 =item How do I install a module from CPAN?
3699
3700 =item What's the difference between require and use?
3701
3702 =item How do I keep my own module/library directory?
3703
3704 =item How do I add the directory my program lives in to the module/library
3705 search path?
3706
3707 =item How do I add a directory to my include path at runtime?
3708
3709 =item What is socket.ph and where do I get it?
3710
3711 =back
3712
3713 =item AUTHOR AND COPYRIGHT
3714
3715 =back
3716
3717 =head2 perlfaq9 - Networking ($Revision: 1.15 $, $Date: 2003/01/31 17:36:57
3718 $)
3719
3720 =over 4
3721
3722 =item DESCRIPTION
3723
3724 =over 4
3725
3726 =item What is the correct form of response from a CGI script?
3727
3728 =item My CGI script runs from the command line but not the browser.  (500
3729 Server Error)
3730
3731 =item How can I get better error messages from a CGI program?
3732
3733 =item How do I remove HTML from a string?
3734
3735 =item How do I extract URLs?
3736
3737 =item How do I download a file from the user's machine?  How do I open a
3738 file on another machine?
3739
3740 =item How do I make a pop-up menu in HTML?
3741
3742 =item How do I fetch an HTML file?
3743
3744 =item How do I automate an HTML form submission?
3745
3746 =item How do I decode or create those %-encodings on the web?
3747
3748 =item How do I redirect to another page?
3749
3750 =item How do I put a password on my web pages?
3751
3752 =item How do I edit my .htpasswd and .htgroup files with Perl?
3753
3754 =item How do I make sure users can't enter values into a form that cause my
3755 CGI script to do bad things?
3756
3757 =item How do I parse a mail header?
3758
3759 =item How do I decode a CGI form?
3760
3761 =item How do I check a valid mail address?
3762
3763 =item How do I decode a MIME/BASE64 string?
3764
3765 =item How do I return the user's mail address?
3766
3767 =item How do I send mail?
3768
3769 =item How do I use MIME to make an attachment to a mail message?
3770
3771 =item How do I read mail?
3772
3773 =item How do I find out my hostname/domainname/IP address?
3774
3775 =item How do I fetch a news article or the active newsgroups?
3776
3777 =item How do I fetch/put an FTP file?
3778
3779 =item How can I do RPC in Perl?
3780
3781 =back
3782
3783 =item AUTHOR AND COPYRIGHT
3784
3785 =back
3786
3787 =head2 perlcompile - Introduction to the Perl Compiler-Translator 
3788
3789 =over 4
3790
3791 =item DESCRIPTION
3792
3793 =over 4
3794
3795 =item Layout
3796
3797 B::Bytecode, B::C, B::CC, B::Lint, B::Deparse, B::Xref
3798
3799 =back
3800
3801 =item Using The Back Ends
3802
3803 =over 4
3804
3805 =item The Cross Referencing Back End
3806
3807 i, &, s, r
3808
3809 =item The Decompiling Back End
3810
3811 =item The Lint Back End
3812
3813 =item The Simple C Back End
3814
3815 =item The Bytecode Back End
3816
3817 =item The Optimized C Back End
3818
3819 =back
3820
3821 =item Module List for the Compiler Suite
3822
3823 B, O, B::Asmdata, B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC,
3824 B::Concise, B::Debug, B::Deparse, B::Disassembler, B::Lint, B::Showlex,
3825 B::Stackobj, B::Stash, B::Terse, B::Xref
3826
3827 =item KNOWN PROBLEMS
3828
3829 =item AUTHOR
3830
3831 =back
3832
3833 =head2 perlembed - how to embed perl in your C program
3834
3835 =over 4
3836
3837 =item DESCRIPTION
3838
3839 =over 4
3840
3841 =item PREAMBLE
3842
3843 B<Use C from Perl?>, B<Use a Unix program from Perl?>, B<Use Perl from
3844 Perl?>, B<Use C from C?>, B<Use Perl from C?>
3845
3846 =item ROADMAP
3847
3848 =item Compiling your C program
3849
3850 =item Adding a Perl interpreter to your C program
3851
3852 =item Calling a Perl subroutine from your C program
3853
3854 =item Evaluating a Perl statement from your C program
3855
3856 =item Performing Perl pattern matches and substitutions from your C program
3857
3858 =item Fiddling with the Perl stack from your C program
3859
3860 =item Maintaining a persistent interpreter
3861
3862 =item Execution of END blocks
3863
3864 =item Maintaining multiple interpreter instances
3865
3866 =item Using Perl modules, which themselves use C libraries, from your C
3867 program
3868
3869 =back
3870
3871 =item Embedding Perl under Win32
3872
3873 =item Hiding Perl_
3874
3875 =item MORAL
3876
3877 =item AUTHOR
3878
3879 =item COPYRIGHT
3880
3881 =back
3882
3883 =head2 perldebguts - Guts of Perl debugging 
3884
3885 =over 4
3886
3887 =item DESCRIPTION
3888
3889 =item Debugger Internals
3890
3891 =over 4
3892
3893 =item Writing Your Own Debugger
3894
3895 =back
3896
3897 =item Frame Listing Output Examples
3898
3899 =item Debugging regular expressions
3900
3901 =over 4
3902
3903 =item Compile-time output
3904
3905 C<anchored> I<STRING> C<at> I<POS>, C<floating> I<STRING> C<at>
3906 I<POS1..POS2>, C<matching floating/anchored>, C<minlen>, C<stclass>
3907 I<TYPE>, C<noscan>, C<isall>, C<GPOS>, C<plus>, C<implicit>, C<with eval>,
3908 C<anchored(TYPE)>
3909
3910 =item Types of nodes
3911
3912 =item Run-time output
3913
3914 =back
3915
3916 =item Debugging Perl memory usage
3917
3918 =over 4
3919
3920 =item Using C<$ENV{PERL_DEBUG_MSTATS}>
3921
3922 C<buckets SMALLEST(APPROX)..GREATEST(APPROX)>, Free/Used, C<Total sbrk():
3923 SBRKed/SBRKs:CONTINUOUS>, C<pad: 0>, C<heads: 2192>, C<chain: 0>, C<tail:
3924 6144>
3925
3926 =item Example of using B<-DL> switch
3927
3928 C<717>, C<002>, C<054>, C<602>, C<702>, C<704>
3929
3930 =item B<-DL> details
3931
3932 C<!!!>, C<!!>, C<!>
3933
3934 =item Limitations of B<-DL> statistics
3935
3936 =back
3937
3938 =item SEE ALSO
3939
3940 =back
3941
3942 =head2 perlxstut, perlXStut - Tutorial for writing XSUBs
3943
3944 =over 4
3945
3946 =item DESCRIPTION
3947
3948 =item SPECIAL NOTES
3949
3950 =over 4
3951
3952 =item make
3953
3954 =item Version caveat
3955
3956 =item Dynamic Loading versus Static Loading
3957
3958 =back
3959
3960 =item TUTORIAL
3961
3962 =over 4
3963
3964 =item EXAMPLE 1
3965
3966 =item EXAMPLE 2
3967
3968 =item What has gone on?
3969
3970 =item Writing good test scripts
3971
3972 =item EXAMPLE 3
3973
3974 =item What's new here?
3975
3976 =item Input and Output Parameters
3977
3978 =item The XSUBPP Program
3979
3980 =item The TYPEMAP file
3981
3982 =item Warning about Output Arguments
3983
3984 =item EXAMPLE 4
3985
3986 =item What has happened here?
3987
3988 =item Anatomy of .xs file
3989
3990 =item Getting the fat out of XSUBs
3991
3992 =item More about XSUB arguments
3993
3994 =item The Argument Stack
3995
3996 =item Extending your Extension
3997
3998 =item Documenting your Extension
3999
4000 =item Installing your Extension
4001
4002 =item EXAMPLE 5
4003
4004 =item New Things in this Example
4005
4006 =item EXAMPLE 6
4007
4008 =item New Things in this Example
4009
4010 =item EXAMPLE 7 (Coming Soon)
4011
4012 =item EXAMPLE 8 (Coming Soon)
4013
4014 =item EXAMPLE 9 Passing open files to XSes
4015
4016 =item Troubleshooting these Examples
4017
4018 =back
4019
4020 =item See also
4021
4022 =item Author
4023
4024 =over 4
4025
4026 =item Last Changed
4027
4028 =back
4029
4030 =back
4031
4032 =head2 perlxs - XS language reference manual
4033
4034 =over 4
4035
4036 =item DESCRIPTION
4037
4038 =over 4
4039
4040 =item Introduction
4041
4042 =item On The Road
4043
4044 =item The Anatomy of an XSUB
4045
4046 =item The Argument Stack
4047
4048 =item The RETVAL Variable
4049
4050 =item The MODULE Keyword
4051
4052 =item The PACKAGE Keyword
4053
4054 =item The PREFIX Keyword
4055
4056 =item The OUTPUT: Keyword
4057
4058 =item The NO_OUTPUT Keyword
4059
4060 =item The CODE: Keyword
4061
4062 =item The INIT: Keyword
4063
4064 =item The NO_INIT Keyword
4065
4066 =item Initializing Function Parameters
4067
4068 =item Default Parameter Values
4069
4070 =item The PREINIT: Keyword
4071
4072 =item The SCOPE: Keyword
4073
4074 =item The INPUT: Keyword
4075
4076 =item The IN/OUTLIST/IN_OUTLIST/OUT/IN_OUT Keywords
4077
4078 =item The C<length(NAME)> Keyword
4079
4080 =item Variable-length Parameter Lists
4081
4082 =item The C_ARGS: Keyword
4083
4084 =item The PPCODE: Keyword
4085
4086 =item Returning Undef And Empty Lists
4087
4088 =item The REQUIRE: Keyword
4089
4090 =item The CLEANUP: Keyword
4091
4092 =item The POSTCALL: Keyword
4093
4094 =item The BOOT: Keyword
4095
4096 =item The VERSIONCHECK: Keyword
4097
4098 =item The PROTOTYPES: Keyword
4099
4100 =item The PROTOTYPE: Keyword
4101
4102 =item The ALIAS: Keyword
4103
4104 =item The OVERLOAD: Keyword
4105
4106 =item The FALLBACK: Keyword
4107
4108 =item The INTERFACE: Keyword
4109
4110 =item The INTERFACE_MACRO: Keyword
4111
4112 =item The INCLUDE: Keyword
4113
4114 =item The CASE: Keyword
4115
4116 =item The & Unary Operator
4117
4118 =item Inserting POD, Comments and C Preprocessor Directives
4119
4120 =item Using XS With C++
4121
4122 =item Interface Strategy
4123
4124 =item Perl Objects And C Structures
4125
4126 =item The Typemap
4127
4128 =item Safely Storing Static Data in XS
4129
4130 MY_CXT_KEY, typedef my_cxt_t, START_MY_CXT, MY_CXT_INIT, dMY_CXT, MY_CXT
4131
4132 =back
4133
4134 =item EXAMPLES
4135
4136 =item XS VERSION
4137
4138 =item AUTHOR
4139
4140 =back
4141
4142 =head2 perlclib - Internal replacements for standard C library functions
4143
4144 =over 4
4145
4146 =item DESCRIPTION
4147
4148 =over 4
4149
4150 =item Conventions
4151
4152 C<t>, C<p>, C<n>, C<s>
4153
4154 =item File Operations
4155
4156 =item File Input and Output
4157
4158 =item File Positioning
4159
4160 =item Memory Management and String Handling
4161
4162 =item Character Class Tests
4163
4164 =item F<stdlib.h> functions
4165
4166 =item Miscellaneous functions
4167
4168 =back
4169
4170 =item SEE ALSO
4171
4172 =back
4173
4174 =head2 perlguts - Introduction to the Perl API
4175
4176 =over 4
4177
4178 =item DESCRIPTION
4179
4180 =item Variables
4181
4182 =over 4
4183
4184 =item Datatypes
4185
4186 =item What is an "IV"?
4187
4188 =item Working with SVs
4189
4190 =item Offsets
4191
4192 =item What's Really Stored in an SV?
4193
4194 =item Working with AVs
4195
4196 =item Working with HVs
4197
4198 =item Hash API Extensions
4199
4200 =item References
4201
4202 =item Blessed References and Class Objects
4203
4204 =item Creating New Variables
4205
4206 GV_ADDMULTI, GV_ADDWARN
4207
4208 =item Reference Counts and Mortality
4209
4210 =item Stashes and Globs
4211
4212 =item Double-Typed SVs
4213
4214 =item Magic Variables
4215
4216 =item Assigning Magic
4217
4218 =item Magic Virtual Tables
4219
4220 =item Finding Magic
4221
4222 =item Understanding the Magic of Tied Hashes and Arrays
4223
4224 =item Localizing changes
4225
4226 C<SAVEINT(int i)>, C<SAVEIV(IV i)>, C<SAVEI32(I32 i)>, C<SAVELONG(long i)>,
4227 C<SAVESPTR(s)>, C<SAVEPPTR(p)>, C<SAVEFREESV(SV *sv)>, C<SAVEMORTALIZESV(SV
4228 *sv)>, C<SAVEFREEOP(OP *op)>, C<SAVEFREEPV(p)>, C<SAVECLEARSV(SV *sv)>,
4229 C<SAVEDELETE(HV *hv, char *key, I32 length)>,
4230 C<SAVEDESTRUCTOR(DESTRUCTORFUNC_NOCONTEXT_t f, void *p)>,
4231 C<SAVEDESTRUCTOR_X(DESTRUCTORFUNC_t f, void *p)>, C<SAVESTACK_POS()>, C<SV*
4232 save_scalar(GV *gv)>, C<AV* save_ary(GV *gv)>, C<HV* save_hash(GV *gv)>,
4233 C<void save_item(SV *item)>, C<void save_list(SV **sarg, I32 maxsarg)>,
4234 C<SV* save_svref(SV **sptr)>, C<void save_aptr(AV **aptr)>, C<void
4235 save_hptr(HV **hptr)>
4236
4237 =back
4238
4239 =item Subroutines
4240
4241 =over 4
4242
4243 =item XSUBs and the Argument Stack
4244
4245 =item Calling Perl Routines from within C Programs
4246
4247 =item Memory Allocation
4248
4249 =item PerlIO
4250
4251 =item Putting a C value on Perl stack
4252
4253 =item Scratchpads
4254
4255 =item Scratchpads and recursion
4256
4257 =back
4258
4259 =item Compiled code
4260
4261 =over 4
4262
4263 =item Code tree
4264
4265 =item Examining the tree
4266
4267 =item Compile pass 1: check routines
4268
4269 =item Compile pass 1a: constant folding
4270
4271 =item Compile pass 2: context propagation
4272
4273 =item Compile pass 3: peephole optimization
4274
4275 =item Pluggable runops
4276
4277 =back
4278
4279 =item Examining internal data structures with the C<dump> functions
4280
4281 =item How multiple interpreters and concurrency are supported
4282
4283 =over 4
4284
4285 =item Background and PERL_IMPLICIT_CONTEXT
4286
4287 =item So what happened to dTHR?
4288
4289 =item How do I use all this in extensions?
4290
4291 =item Should I do anything special if I call perl from multiple threads?
4292
4293 =item Future Plans and PERL_IMPLICIT_SYS
4294
4295 =back
4296
4297 =item Internal Functions
4298
4299 A, p, d, s, n, r, f, M, o, j, x
4300
4301 =over 4
4302
4303 =item Formatted Printing of IVs, UVs, and NVs
4304
4305 =item Pointer-To-Integer and Integer-To-Pointer
4306
4307 =item Source Documentation
4308
4309 =back
4310
4311 =item Unicode Support
4312
4313 =over 4
4314
4315 =item What B<is> Unicode, anyway?
4316
4317 =item How can I recognise a UTF8 string?
4318
4319 =item How does UTF8 represent Unicode characters?
4320
4321 =item How does Perl store UTF8 strings?
4322
4323 =item How do I convert a string to UTF8?
4324
4325 =item Is there anything else I need to know?
4326
4327 =back
4328
4329 =item Custom Operators
4330
4331 =item AUTHORS
4332
4333 =item SEE ALSO
4334
4335 =back
4336
4337 =head2 perlcall - Perl calling conventions from C
4338
4339 =over 4
4340
4341 =item DESCRIPTION
4342
4343 An Error Handler, An Event Driven Program
4344
4345 =item THE CALL_ FUNCTIONS
4346
4347 call_sv, call_pv, call_method, call_argv
4348
4349 =item FLAG VALUES
4350
4351 =over 4
4352
4353 =item  G_VOID
4354
4355 =item  G_SCALAR
4356
4357 =item G_ARRAY
4358
4359 =item G_DISCARD
4360
4361 =item G_NOARGS
4362
4363 =item G_EVAL
4364
4365 =item G_KEEPERR
4366
4367 =item Determining the Context
4368
4369 =back
4370
4371 =item KNOWN PROBLEMS
4372
4373 =item EXAMPLES
4374
4375 =over 4
4376
4377 =item No Parameters, Nothing returned
4378
4379 =item Passing Parameters
4380
4381 =item Returning a Scalar
4382
4383 =item Returning a list of values
4384
4385 =item Returning a list in a scalar context
4386
4387 =item Returning Data from Perl via the parameter list
4388
4389 =item Using G_EVAL
4390
4391 =item Using G_KEEPERR
4392
4393 =item Using call_sv
4394
4395 =item Using call_argv
4396
4397 =item Using call_method
4398
4399 =item Using GIMME_V
4400
4401 =item Using Perl to dispose of temporaries
4402
4403 =item Strategies for storing Callback Context Information
4404
4405 1. Ignore the problem - Allow only 1 callback, 2. Create a sequence of
4406 callbacks - hard wired limit, 3. Use a parameter to map to the Perl
4407 callback
4408
4409 =item Alternate Stack Manipulation
4410
4411 =item Creating and calling an anonymous subroutine in C
4412
4413 =back
4414
4415 =item SEE ALSO
4416
4417 =item AUTHOR
4418
4419 =item DATE
4420
4421 =back
4422
4423 =head2 perlutil - utilities packaged with the Perl distribution
4424
4425 =over 4
4426
4427 =item DESCRIPTION
4428
4429 =over 4
4430
4431 =item DOCUMENTATION
4432
4433 L<perldoc|perldoc>, L<pod2man|pod2man> and L<pod2text|pod2text>,
4434 L<pod2html|pod2html> and L<pod2latex|pod2latex>, L<pod2usage|pod2usage>,
4435 L<podselect|podselect>, L<podchecker|podchecker>, L<splain|splain>,
4436 L<roffitall|roffitall>
4437
4438 =item CONVERTORS
4439
4440 L<a2p|a2p>, L<s2p|s2p>, L<find2perl|find2perl>
4441
4442 =item Administration
4443
4444 L<libnetcfg|libnetcfg>
4445
4446 =item Development
4447
4448 L<perlbug|perlbug>, L<h2ph|h2ph>, L<c2ph|c2ph> and L<pstruct|pstruct>,
4449 L<h2xs|h2xs>, L<dprofpp|dprofpp>, L<perlcc|perlcc>
4450
4451 =item SEE ALSO
4452
4453 =back
4454
4455 =back
4456
4457 =head2 perlfilter - Source Filters
4458
4459 =over 4
4460
4461 =item DESCRIPTION
4462
4463 =item CONCEPTS
4464
4465 =item USING FILTERS
4466
4467 =item WRITING A SOURCE FILTER
4468
4469 =item WRITING A SOURCE FILTER IN C
4470
4471 B<Decryption Filters>
4472
4473 =item CREATING A SOURCE FILTER AS A SEPARATE EXECUTABLE
4474
4475 =item WRITING A SOURCE FILTER IN PERL
4476
4477 =item USING CONTEXT: THE DEBUG FILTER
4478
4479 =item CONCLUSION
4480
4481 =item REQUIREMENTS
4482
4483 =item AUTHOR
4484
4485 =item Copyrights
4486
4487 =back
4488
4489 =head2 perldbmfilter - Perl DBM Filters
4490
4491 =over 4
4492
4493 =item SYNOPSIS
4494
4495 =item DESCRIPTION
4496
4497 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
4498 B<filter_fetch_value>
4499
4500 =over 4
4501
4502 =item The Filter
4503
4504 =item An Example -- the NULL termination problem.
4505
4506 =item Another Example -- Key is a C int.
4507
4508 =back
4509
4510 =item SEE ALSO
4511
4512 =item AUTHOR
4513
4514 =back
4515
4516 =head2 perlapi - autogenerated documentation for the perl public API
4517
4518 =over 4
4519
4520 =item DESCRIPTION
4521
4522 =item "Gimme" Values
4523
4524 GIMME, GIMME_V, G_ARRAY, G_DISCARD, G_EVAL, G_NOARGS, G_SCALAR, G_VOID
4525
4526 =item Array Manipulation Functions
4527
4528 AvFILL, av_clear, av_delete, av_exists, av_extend, av_fetch, av_fill,
4529 av_len, av_make, av_pop, av_push, av_shift, av_store, av_undef, av_unshift,
4530 get_av, newAV, Nullav, sortsv
4531
4532 =item Callback Functions
4533
4534 call_argv, call_method, call_pv, call_sv, ENTER, eval_pv, eval_sv,
4535 FREETMPS, LEAVE, SAVETMPS
4536
4537 =item Character classes
4538
4539 isALNUM, isALPHA, isDIGIT, isLOWER, isSPACE, isUPPER, toLOWER, toUPPER
4540
4541 =item Cloning an interpreter
4542
4543 perl_clone
4544
4545 =item CV Manipulation Functions
4546
4547 CvSTASH, get_cv, Nullcv
4548
4549 =item Embedding Functions
4550
4551 cv_undef, load_module, nothreadhook, perl_alloc, perl_construct,
4552 perl_destruct, perl_free, perl_parse, perl_run, require_pv
4553
4554 =item Functions in file pp_pack.c
4555
4556 pack_cat, unpack_str
4557
4558 =item Global Variables
4559
4560 PL_modglobal, PL_na, PL_sv_no, PL_sv_undef, PL_sv_yes
4561
4562 =item GV Functions
4563
4564 GvSV, gv_fetchmeth, gv_fetchmethod, gv_fetchmethod_autoload,
4565 gv_fetchmeth_autoload, gv_stashpv, gv_stashsv
4566
4567 =item Handy Values
4568
4569 HEf_SVKEY, Nullch, Nullsv
4570
4571 =item Hash Manipulation Functions
4572
4573 get_hv, HeHASH, HeKEY, HeKLEN, HePV, HeSVKEY, HeSVKEY_force, HeSVKEY_set,
4574 HeVAL, HvNAME, hv_clear, hv_delete, hv_delete_ent, hv_exists,
4575 hv_exists_ent, hv_fetch, hv_fetch_ent, hv_iterinit, hv_iterkey,
4576 hv_iterkeysv, hv_iternext, hv_iternextsv, hv_iternext_flags, hv_iterval,
4577 hv_magic, hv_store, hv_store_ent, hv_undef, newHV, Nullhv
4578
4579 =item Magical Functions
4580
4581 mg_clear, mg_copy, mg_find, mg_free, mg_get, mg_length, mg_magical, mg_set,
4582 SvGETMAGIC, SvLOCK, SvSETMAGIC, SvSetMagicSV, SvSetMagicSV_nosteal,
4583 SvSetSV, SvSetSV_nosteal, SvSHARE
4584
4585 =item Memory Management
4586
4587 Copy, Move, New, Newc, NEWSV, Newz, Poison, Renew, Renewc, Safefree,
4588 savepv, savepvn, savesharedpv, StructCopy, Zero
4589
4590 =item Miscellaneous Functions
4591
4592 fbm_compile, fbm_instr, form, getcwd_sv, strEQ, strGE, strGT, strLE, strLT,
4593 strNE, strnEQ, strnNE
4594
4595 =item Numeric functions
4596
4597 grok_bin, grok_hex, grok_number, grok_numeric_radix, grok_oct, scan_bin,
4598 scan_hex, scan_oct
4599
4600 =item Optree Manipulation Functions
4601
4602 cv_const_sv, newCONSTSUB, newXS
4603
4604 =item Pad Data Structures
4605
4606 pad_sv
4607
4608 =item Stack Manipulation Macros
4609
4610 dMARK, dORIGMARK, dSP, EXTEND, MARK, ORIGMARK, POPi, POPl, POPn, POPp,
4611 POPpbytex, POPpx, POPs, PUSHi, PUSHMARK, PUSHn, PUSHp, PUSHs, PUSHu,
4612 PUTBACK, SP, SPAGAIN, XPUSHi, XPUSHn, XPUSHp, XPUSHs, XPUSHu, XSRETURN,
4613 XSRETURN_IV, XSRETURN_NO, XSRETURN_NV, XSRETURN_PV, XSRETURN_UNDEF,
4614 XSRETURN_YES, XST_mIV, XST_mNO, XST_mNV, XST_mPV, XST_mUNDEF, XST_mYES
4615
4616 =item SV Flags
4617
4618 svtype, SVt_IV, SVt_NV, SVt_PV, SVt_PVAV, SVt_PVCV, SVt_PVHV, SVt_PVMG
4619
4620 =item SV Manipulation Functions
4621
4622 get_sv, looks_like_number, newRV_inc, newRV_noinc, newSV, newSViv, newSVnv,
4623 newSVpv, newSVpvf, newSVpvn, newSVpvn_share, newSVrv, newSVsv, newSVuv,
4624 new_version, scan_version, scan_vstring, SvCUR, SvCUR_set, SvEND, SvGROW,
4625 SvIOK, SvIOKp, SvIOK_notUV, SvIOK_off, SvIOK_on, SvIOK_only, SvIOK_only_UV,
4626 SvIOK_UV, SvIsCOW, SvIsCOW_shared_hash, SvIV, SvIVx, SvIVX, SvLEN, SvNIOK,
4627 SvNIOKp, SvNIOK_off, SvNOK, SvNOKp, SvNOK_off, SvNOK_on, SvNOK_only, SvNV,
4628 SvNVX, SvNVx, SvOK, SvOOK, SvPOK, SvPOKp, SvPOK_off, SvPOK_on, SvPOK_only,
4629 SvPOK_only_UTF8, SvPV, SvPVbyte, SvPVbytex, SvPVbytex_force,
4630 SvPVbyte_force, SvPVbyte_nolen, SvPVutf8, SvPVutf8x, SvPVutf8x_force,
4631 SvPVutf8_force, SvPVutf8_nolen, SvPVx, SvPVX, SvPV_force, SvPV_force_nomg,
4632 SvPV_nolen, SvREFCNT, SvREFCNT_dec, SvREFCNT_inc, SvROK, SvROK_off,
4633 SvROK_on, SvRV, SvSTASH, SvTAINT, SvTAINTED, SvTAINTED_off, SvTAINTED_on,
4634 SvTRUE, SvTYPE, SvUNLOCK, SvUOK, SvUPGRADE, SvUTF8, SvUTF8_off, SvUTF8_on,
4635 SvUV, SvUVX, SvUVx, SvVOK, sv_2bool, sv_2cv, sv_2io, sv_2iv, sv_2mortal,
4636 sv_2nv, sv_2pvbyte, sv_2pvbyte_nolen, sv_2pvutf8, sv_2pvutf8_nolen,
4637 sv_2pv_flags, sv_2pv_nolen, sv_2uv, sv_backoff, sv_bless, sv_catpv,
4638 sv_catpvf, sv_catpvf_mg, sv_catpvn, sv_catpvn_flags, sv_catpvn_mg,
4639 sv_catpv_mg, sv_catsv, sv_catsv_flags, sv_catsv_mg, sv_chop, sv_clear,
4640 sv_cmp, sv_cmp_locale, sv_collxfrm, sv_copypv, sv_dec, sv_derived_from,
4641 sv_eq, sv_force_normal, sv_force_normal_flags, sv_free, sv_gets, sv_grow,
4642 sv_inc, sv_insert, sv_isa, sv_isobject, sv_iv, sv_len, sv_len_utf8,
4643 sv_magic, sv_magicext, sv_mortalcopy, sv_newmortal, sv_newref,
4644 sv_nolocking, sv_nosharing, sv_nounlocking, sv_nv, sv_pos_b2u, sv_pos_u2b,
4645 sv_pv, sv_pvbyte, sv_pvbyten, sv_pvbyten_force, sv_pvn, sv_pvn_force,
4646 sv_pvn_force_flags, sv_pvutf8, sv_pvutf8n, sv_pvutf8n_force, sv_reftype,
4647 sv_replace, sv_report_used, sv_reset, sv_rvweaken, sv_setiv, sv_setiv_mg,
4648 sv_setnv, sv_setnv_mg, sv_setpv, sv_setpvf, sv_setpvf_mg, sv_setpviv,
4649 sv_setpviv_mg, sv_setpvn, sv_setpvn_mg, sv_setpv_mg, sv_setref_iv,
4650 sv_setref_nv, sv_setref_pv, sv_setref_pvn, sv_setref_uv, sv_setsv,
4651 sv_setsv_flags, sv_setsv_mg, sv_setuv, sv_setuv_mg, sv_taint, sv_tainted,
4652 sv_true, sv_unmagic, sv_unref, sv_unref_flags, sv_untaint, sv_upgrade,
4653 sv_usepvn, sv_usepvn_mg, sv_utf8_decode, sv_utf8_downgrade, sv_utf8_encode,
4654 sv_utf8_upgrade, sv_utf8_upgrade_flags, sv_uv, sv_vcatpvfn, sv_vsetpvfn,
4655 upg_version, vcmp, vnumify, vstringify
4656
4657 =item Unicode Support
4658
4659 bytes_from_utf8, bytes_to_utf8, ibcmp_utf8, is_utf8_char, is_utf8_string,
4660 pv_uni_display, sv_cat_decode, sv_recode_to_utf8, sv_uni_display,
4661 to_utf8_case, to_utf8_fold, to_utf8_lower, to_utf8_title, to_utf8_upper,
4662 utf8n_to_uvchr, utf8n_to_uvuni, utf8_distance, utf8_hop, utf8_length,
4663 utf8_to_bytes, utf8_to_uvchr, utf8_to_uvuni, uvchr_to_utf8,
4664 uvuni_to_utf8_flags
4665
4666 =item Variables created by C<xsubpp> and C<xsubpp> internal functions
4667
4668 ax, CLASS, dAX, dITEMS, dXSARGS, dXSI32, items, ix, newXSproto, RETVAL, ST,
4669 THIS, XS, XSRETURN_EMPTY, XS_VERSION, XS_VERSION_BOOTCHECK
4670
4671 =item Warning and Dieing
4672
4673 croak, warn
4674
4675 =item AUTHORS
4676
4677 =item SEE ALSO
4678
4679 =back
4680
4681 =head2 perlintern - autogenerated documentation of purely B<internal>
4682                  Perl functions
4683
4684 =over 4
4685
4686 =item DESCRIPTION
4687
4688 =item CV reference counts and CvOUTSIDE
4689
4690 CvWEAKOUTSIDE
4691
4692 =item Functions in file pad.h
4693
4694 CX_CURPAD_SAVE, CX_CURPAD_SV, PAD_BASE_SV, PAD_CLONE_VARS,
4695 PAD_COMPNAME_FLAGS, PAD_COMPNAME_GEN, PAD_COMPNAME_OURSTASH,
4696 PAD_COMPNAME_PV, PAD_COMPNAME_TYPE, PAD_DUP, PAD_RESTORE_LOCAL,
4697 PAD_SAVE_LOCAL, PAD_SAVE_SETNULLPAD, PAD_SETSV, PAD_SET_CUR, PAD_SV,
4698 PAD_SVl, SAVECLEARSV, SAVECOMPPAD, SAVEPADSV
4699
4700 =item Functions in file pp_ctl.c
4701
4702 find_runcv
4703
4704 =item Global Variables
4705
4706 PL_DBsingle, PL_DBsub, PL_DBtrace, PL_dowarn, PL_last_in_gv, PL_ofs_sv,
4707 PL_rs
4708
4709 =item GV Functions
4710
4711 is_gv_magical
4712
4713 =item IO Functions
4714
4715 start_glob
4716
4717 =item Pad Data Structures
4718
4719 CvPADLIST, cv_clone, cv_dump, do_dump_pad, intro_my, pad_add_anon,
4720 pad_add_name, pad_alloc, pad_block_start, pad_check_dup, pad_findlex,
4721 pad_findmy, pad_fixup_inner_anons, pad_free, pad_leavemy, pad_new,
4722 pad_push, pad_reset, pad_setsv, pad_swipe, pad_tidy, pad_undef
4723
4724 =item Stack Manipulation Macros
4725
4726 djSP, LVRET
4727
4728 =item SV Manipulation Functions
4729
4730 report_uninit, sv_add_arena, sv_clean_all, sv_clean_objs, sv_free_arenas
4731
4732 =item AUTHORS
4733
4734 =item SEE ALSO
4735
4736 =back
4737
4738 =head2 perliol - C API for Perl's implementation of IO in Layers.
4739
4740 =over 4
4741
4742 =item SYNOPSIS
4743
4744 =item DESCRIPTION
4745
4746 =over 4
4747
4748 =item History and Background
4749
4750 =item Layers vs Disciplines
4751
4752 =item Data Structures
4753
4754 =item Functions and Attributes
4755
4756 =item Per-instance Data
4757
4758 =item Layers in action.
4759
4760 =item Per-instance flag bits
4761
4762 PERLIO_F_EOF, PERLIO_F_CANWRITE,  PERLIO_F_CANREAD, PERLIO_F_ERROR,
4763 PERLIO_F_TRUNCATE, PERLIO_F_APPEND, PERLIO_F_CRLF, PERLIO_F_UTF8,
4764 PERLIO_F_UNBUF, PERLIO_F_WRBUF, PERLIO_F_RDBUF, PERLIO_F_LINEBUF,
4765 PERLIO_F_TEMP, PERLIO_F_OPEN, PERLIO_F_FASTGETS
4766
4767 =item Methods in Detail
4768
4769 fsize, name, size, kind, PERLIO_K_BUFFERED, PERLIO_K_RAW, PERLIO_K_CANCRLF,
4770 PERLIO_K_FASTGETS, PERLIO_K_MULTIARG, Pushed, Popped, Open, Binmode,
4771 Getarg, Fileno, Dup, Read, Write, Seek, Tell, Close, Flush, Fill, Eof,
4772 Error,  Clearerr, Setlinebuf, Get_base, Get_bufsiz, Get_ptr, Get_cnt,
4773 Set_ptrcnt
4774
4775 =item Core Layers
4776
4777 "unix", "perlio", "stdio", "crlf", "mmap", "pending", "raw", "utf8"
4778
4779 =item Extension Layers
4780
4781 ":encoding", ":scalar", ":via"
4782
4783 =back
4784
4785 =item TODO
4786
4787 =back
4788
4789 =head2 perlapio - perl's IO abstraction interface.
4790
4791 =over 4
4792
4793 =item SYNOPSIS
4794
4795 =item DESCRIPTION
4796
4797 1. USE_STDIO, 2. USE_SFIO, 3. USE_PERLIO, B<PerlIO_stdin()>,
4798 B<PerlIO_stdout()>, B<PerlIO_stderr()>, B<PerlIO_open(path, mode)>,
4799 B<PerlIO_fdopen(fd,mode)>, B<PerlIO_reopen(path,mode,f)>,
4800 B<PerlIO_printf(f,fmt,...)>, B<PerlIO_vprintf(f,fmt,a)>,
4801 B<PerlIO_stdoutf(fmt,...)>, B<PerlIO_read(f,buf,count)>,
4802 B<PerlIO_write(f,buf,count)>, B<PerlIO_close(f)>, B<PerlIO_puts(f,s)>,
4803 B<PerlIO_putc(f,c)>, B<PerlIO_ungetc(f,c)>, B<PerlIO_getc(f)>,
4804 B<PerlIO_eof(f)>, B<PerlIO_error(f)>, B<PerlIO_fileno(f)>,
4805 B<PerlIO_clearerr(f)>, B<PerlIO_flush(f)>, B<PerlIO_seek(f,offset,whence)>,
4806 B<PerlIO_tell(f)>, B<PerlIO_getpos(f,p)>, B<PerlIO_setpos(f,p)>,
4807 B<PerlIO_rewind(f)>, B<PerlIO_tmpfile()>, B<PerlIO_setlinebuf(f)>
4808
4809 =over 4
4810
4811 =item Co-existence with stdio
4812
4813 B<PerlIO_importFILE(f,mode)>, B<PerlIO_exportFILE(f,mode)>,
4814 B<PerlIO_releaseFILE(p,f)>, B<PerlIO_findFILE(f)>
4815
4816 =item "Fast gets" Functions
4817
4818 B<PerlIO_fast_gets(f)>, B<PerlIO_has_cntptr(f)>, B<PerlIO_get_cnt(f)>,
4819 B<PerlIO_get_ptr(f)>, B<PerlIO_set_ptrcnt(f,p,c)>, B<PerlIO_canset_cnt(f)>,
4820 B<PerlIO_set_cnt(f,c)>, B<PerlIO_has_base(f)>, B<PerlIO_get_base(f)>,
4821 B<PerlIO_get_bufsiz(f)>
4822
4823 =item Other Functions
4824
4825 PerlIO_apply_layers(f,mode,layers), PerlIO_binmode(f,ptype,imode,layers),
4826 'E<lt>' read, 'E<gt>' write, '+' read/write, PerlIO_debug(fmt,...)
4827
4828 =back
4829
4830 =back
4831
4832 =head2 perltodo - Perl TO-DO List
4833
4834 =over 4
4835
4836 =item DESCRIPTION
4837
4838 =item To do during 5.6.x
4839
4840 =over 4
4841
4842 =item Support for I/O disciplines
4843
4844 =item Autoload bytes.pm
4845
4846 =item Make "\u{XXXX}" et al work
4847
4848 =item Create a char *sv_pvprintify(sv, STRLEN *lenp, UV flags)
4849
4850 =item Overloadable regex assertions
4851
4852 =item Unicode
4853
4854 =item Work out exit/die semantics for threads
4855
4856 =item Better support for nonpreemptive threading systems like GNU pth
4857
4858 =item Typed lexicals for compiler
4859
4860 =item Compiler workarounds for Win32
4861
4862 =item AUTOLOADing in the compiler
4863
4864 =item Fixing comppadlist when compiling
4865
4866 =item Cleaning up exported namespace
4867
4868 =item Complete signal handling
4869
4870 =item Out-of-source builds
4871
4872 =item POSIX realtime support
4873
4874 =item UNIX98 support
4875
4876 =item IPv6 Support
4877
4878 =item Long double conversion
4879
4880 =item Locales
4881
4882 =item Arithmetic on non-Arabic numerals
4883
4884 =item POSIX Unicode character classes
4885
4886 =item Factoring out common suffices/prefices in regexps (trie optimization)
4887
4888 =item Security audit shipped utilities
4889
4890 =item Sort out the uid-setting mess
4891
4892 =item Custom opcodes
4893
4894 =item DLL Versioning
4895
4896 =item Introduce @( and @)
4897
4898 =item Floating point handling
4899
4900 =item IV/UV preservation
4901
4902 =item Replace pod2html with something using Pod::Parser
4903
4904 =item Automate module testing on CPAN
4905
4906 =item sendmsg and recvmsg
4907
4908 =item Rewrite perlre documentation
4909
4910 =item Convert example code to IO::Handle filehandles
4911
4912 =item Document Win32 choices
4913
4914 =item Check new modules
4915
4916 =item Make roffitall find pods and libs itself
4917
4918 =back
4919
4920 =item To do at some point
4921
4922 =over 4
4923
4924 =item Remove regular expression recursion
4925
4926 =item Memory leaks after failed eval
4927
4928 =item bitfields in pack
4929
4930 =item Cross compilation
4931
4932 =item Perl preprocessor / macros
4933
4934 =item Perl lexer in Perl
4935
4936 =item Using POSIX calls internally
4937
4938 =item -i rename file when changed
4939
4940 =item All ARGV input should act like E<lt>E<gt>
4941
4942 =item Support for rerunning debugger
4943
4944 =item Test Suite for the Debugger
4945
4946 =item my sub foo { }
4947
4948 =item One-pass global destruction
4949
4950 =item Rewrite regexp parser
4951
4952 =item Cache recently used regexps
4953
4954 =item Cross-compilation support
4955
4956 =item Bit-shifting bitvectors
4957
4958 =item debugger pragma
4959
4960 =item use less pragma
4961
4962 =item switch structures
4963
4964 =item Cache eval tree
4965
4966 =item rcatmaybe
4967
4968 =item Shrink opcode tables
4969
4970 =item Optimize away @_
4971
4972 =item Prototypes versus indirect objects
4973
4974 =item Install HTML
4975
4976 =item Prototype method calls
4977
4978 =item Return context prototype declarations
4979
4980 =item magic_setisa
4981
4982 =item Garbage collection
4983
4984 =item IO tutorial
4985
4986 =item Rewrite perldoc
4987
4988 =item Install .3p manpages
4989
4990 =item Unicode tutorial
4991
4992 =item Update POSIX.pm for 1003.1-2
4993
4994 =item Retargetable installation
4995
4996 =item POSIX emulation on non-POSIX systems
4997
4998 =item Rename Win32 headers
4999
5000 =item Finish off lvalue functions
5001
5002 =item Update sprintf documentation
5003
5004 =item Use fchown/fchmod internally
5005
5006 =item Make v-strings overloaded objects
5007
5008 =item Allow restricted hash assignment
5009
5010 =item Should overload be inheritable?
5011
5012 =item Taint rethink
5013
5014 =back
5015
5016 =item Vague ideas
5017
5018 =over 4
5019
5020 =item ref() in list context
5021
5022 =item Make tr/// return histogram of characters in list context
5023
5024 =item Compile to real threaded code
5025
5026 =item Structured types
5027
5028 =item Modifiable $1 et al.
5029
5030 =item Procedural interfaces for IO::*, etc.
5031
5032 =item RPC modules
5033
5034 =item Attach/detach debugger from running program
5035
5036 =item GUI::Native
5037
5038 =item foreach(reverse ...)
5039
5040 =item Constant function cache
5041
5042 =item Approximate regular expression matching
5043
5044 =back
5045
5046 =item Ongoing
5047
5048 =over 4
5049
5050 =item Update guts documentation
5051
5052 =item Add more tests
5053
5054 =item Update auxiliary tools
5055
5056 =item Create debugging macros
5057
5058 =item truncate to the people
5059
5060 =item Unicode in Filenames
5061
5062 =back
5063
5064 =item Recently done things
5065
5066 =over 4
5067
5068 =item Alternative RE syntax module
5069
5070 =item Safe signal handling
5071
5072 =item Tie Modules
5073
5074 =item gettimeofday
5075
5076 =item setitimer and getimiter
5077
5078 =item Testing __DIE__ hook
5079
5080 =item CPP equivalent in Perl
5081
5082 =item Explicit switch statements
5083
5084 =item autocroak
5085
5086 =item UTF/EBCDIC
5087
5088 =item UTF Regexes
5089
5090 =item perlcc to produce executable
5091
5092 =item END blocks saved in compiled output
5093
5094 =item Secure temporary file module
5095
5096 =item Integrate Time::HiRes
5097
5098 =item Turn Cwd into XS
5099
5100 =item Mmap for input
5101
5102 =item Byte to/from UTF8 and UTF8 to/from local conversion
5103
5104 =item Add sockatmark support
5105
5106 =item Mailing list archives
5107
5108 =item Bug tracking
5109
5110 =item Integrate MacPerl
5111
5112 =item Web "nerve center" for Perl
5113
5114 =item Regular expression tutorial
5115
5116 =item Debugging Tutorial
5117
5118 =item Integrate new modules
5119
5120 =item Integrate profiler
5121
5122 =item Y2K error detection
5123
5124 =item Regular expression debugger
5125
5126 =item POD checker
5127
5128 =item "Dynamic" lexicals
5129
5130 =item Cache precompiled modules
5131
5132 =back
5133
5134 =item Deprecated Wishes
5135
5136 =over 4
5137
5138 =item Loop control on do{}
5139
5140 =item Lexically scoped typeglobs
5141
5142 =item format BOTTOM
5143
5144 =item report HANDLE
5145
5146 =item Generalised want()/caller())
5147
5148 =item Named prototypes
5149
5150 =item Built-in globbing
5151
5152 =item Regression tests for suidperl
5153
5154 =item Cached hash values
5155
5156 =item Add compression modules
5157
5158 =item Reorganise documentation into tutorials/references
5159
5160 =item Remove distinction between functions and operators
5161
5162 =item Make XS easier to use
5163
5164 =item Make embedding easier to use
5165
5166 =item man for perl
5167
5168 =item my $Package::variable
5169
5170 =item "or" tests defined, not truth
5171
5172 =item "class"-based lexicals
5173
5174 =item byteperl
5175
5176 =item Lazy evaluation / tail recursion removal
5177
5178 =item Make "use utf8" the default
5179
5180 =item Unicode collation and normalization
5181
5182 =item pack/unpack tutorial
5183
5184 =back
5185
5186 =back
5187
5188 =head2 perlhack - How to hack at the Perl internals
5189
5190 =over 4
5191
5192 =item DESCRIPTION
5193
5194 Does concept match the general goals of Perl?, Where is the
5195 implementation?, Backwards compatibility, Could it be a module instead?, Is
5196 the feature generic enough?, Does it potentially introduce new bugs?, Does
5197 it preclude other desirable features?, Is the implementation robust?, Is
5198 the implementation generic enough to be portable?, Is the implementation
5199 tested?, Is there enough documentation?, Is there another way to do it?,
5200 Does it create too much work?, Patches speak louder than words
5201
5202 =over 4
5203
5204 =item Keeping in sync
5205
5206 rsync'ing the source tree, Using rsync over the LAN, Using pushing over the
5207 NFS, rsync'ing the patches
5208
5209 =item Why rsync the source tree
5210
5211 It's easier to rsync the source tree, It's more reliable
5212
5213 =item Why rsync the patches
5214
5215 It's easier to rsync the patches, It's a good reference, Finding a start
5216 point, Finding how to fix a bug, Finding the source of misbehaviour
5217
5218 =item Perlbug administration
5219
5220 =item Submitting patches
5221
5222 L<perlguts>, L<perlxstut> and L<perlxs>, L<perlapi>,
5223 F<Porting/pumpkin.pod>, The perl5-porters FAQ
5224
5225 =item Finding Your Way Around
5226
5227 Core modules, Tests, Documentation, Configure, Interpreter
5228
5229 =item Elements of the interpreter
5230
5231 Startup, Parsing, Optimization, Running
5232
5233 =item Internal Variable Types
5234
5235 =item Op Trees
5236
5237 =item Stacks
5238
5239 Argument stack, Mark stack, Save stack
5240
5241 =item Millions of Macros
5242
5243 =item Poking at Perl
5244
5245 =item Using a source-level debugger
5246
5247 run [args], break function_name, break source.c:xxx, step, next, continue,
5248 finish, 'enter', print
5249
5250 =item Dumping Perl Data Structures
5251
5252 =item Patching
5253
5254 =item Patching a core module
5255
5256 =item Adding a new function to the core
5257
5258 =item Writing a test
5259
5260 F<t/base/>, F<t/cmd/>, F<t/comp/>, F<t/io/>, F<t/lib/>, F<t/op/>,
5261 F<t/pod/>, F<t/run/>, F<t/uni/>, F<t/win32/>, F<t/x2p>, t/base t/comp,
5262 t/cmd t/run t/io t/op, t/lib ext lib
5263
5264 =item Special Make Test Targets
5265
5266 coretest, test.deparse, minitest, test.third check.third utest.third
5267 ucheck.third, test.torture torturetest, utest ucheck test.utf8 check.utf8,
5268 test_harness
5269
5270 =item Running tests by hand
5271
5272 PERL_CORE=1, PERL_DESTRUCT_LEVEL=2, PERL, PERL_SKIP_TTY_TEST
5273
5274 =back
5275
5276 =item EXTERNAL TOOLS FOR DEBUGGING PERL
5277
5278 =over 4
5279
5280 =item Rational Software's Purify
5281
5282 =item Purify on Unix
5283
5284 -Accflags=-DPURIFY, -Doptimize='-g', -Uusemymalloc, -Dusemultiplicity
5285
5286 =item Purify on NT
5287
5288 DEFINES, USE_MULTI = define, #PERL_MALLOC = define, CFG = Debug
5289
5290 =item Compaq's/Digital's/HP's Third Degree
5291
5292 =item PERL_DESTRUCT_LEVEL
5293
5294 =item Profiling
5295
5296 =item Gprof Profiling
5297
5298 -a, -b, -e routine, -f routine, -s, -z
5299
5300 =item GCC gcov Profiling
5301
5302 =item Pixie Profiling
5303
5304 -h, -l, -p[rocedures], -h[eavy], -i[nvocations], -l[ines], -testcoverage,
5305 -z[ero]
5306
5307 =item Miscellaneous tricks
5308
5309 =item CONCLUSION
5310
5311 I<The Road goes ever on and on, down from the door where it began.>
5312
5313 =back
5314
5315 =item AUTHOR
5316
5317 =back
5318
5319 =head2 perldoc - Look up Perl documentation in Pod format.
5320
5321 =over 4
5322
5323 =item SYNOPSIS
5324
5325 =item DESCRIPTION
5326
5327 =item OPTIONS
5328
5329 B<-h>, B<-v>, B<-t>, B<-u>, B<-m> I<module>, B<-l>, B<-F>, B<-f>
5330 I<perlfunc>, B<-q> I<perlfaq-search-regexp>, B<-T>, B<-d>
5331 I<destination-filename>, B<-o> I<output-formatname>, B<-M> I<module-name>,
5332 B<-w> I<option:value> or B<-w> I<option>, B<-X>,
5333 B<PageName|ModuleName|ProgramName>, B<-n> I<some-formatter>, B<-r>, B<-i>,
5334 B<-V>
5335
5336 =item SECURITY
5337
5338 =item ENVIRONMENT
5339
5340 =item AUTHOR
5341
5342 =back
5343
5344 =head2 perlhist - the Perl history records
5345
5346 =over 4
5347
5348 =item DESCRIPTION
5349
5350 =item INTRODUCTION
5351
5352 =item THE KEEPERS OF THE PUMPKIN
5353
5354 =over 4
5355
5356 =item PUMPKIN?
5357
5358 =back
5359
5360 =item THE RECORDS
5361
5362 =over 4
5363
5364 =item SELECTED RELEASE SIZES
5365
5366 =item SELECTED PATCH SIZES
5367
5368 =back
5369
5370 =item THE KEEPERS OF THE RECORDS
5371
5372 =back
5373
5374 =head2 perldelta - what is new for perl v5.9.0
5375
5376 =over 4
5377
5378 =item DESCRIPTION
5379
5380 =item Incompatible Changes
5381
5382 =item Core Enhancements
5383
5384 =over 4
5385
5386 =item Tied Arrays with Negative Array Indices
5387
5388 =back
5389
5390 =item Modules and Pragmata
5391
5392 =item Utility Changes
5393
5394 =item New Documentation
5395
5396 =item Performance Enhancements
5397
5398 =item Installation and Configuration Improvements
5399
5400 =item Selected Bug Fixes
5401
5402 =item New or Changed Diagnostics
5403
5404 =item Changed Internals
5405
5406 =item New Tests
5407
5408 =item Known Problems
5409
5410 =item Platform Specific Problems
5411
5412 =item Reporting Bugs
5413
5414 =item SEE ALSO
5415
5416 =back
5417
5418 =head2 perl58delta, perldelta - what is new for perl v5.8.0
5419
5420 =over 4
5421
5422 =item DESCRIPTION
5423
5424 =item Highlights In 5.8.0
5425
5426 =item Incompatible Changes
5427
5428 =over 4
5429
5430 =item Binary Incompatibility
5431
5432 =item 64-bit platforms and malloc
5433
5434 =item AIX Dynaloading
5435
5436 =item Attributes for C<my> variables now handled at run-time
5437
5438 =item Socket Extension Dynamic in VMS
5439
5440 =item IEEE-format Floating Point Default on OpenVMS Alpha
5441
5442 =item New Unicode Semantics (no more C<use utf8>, almost)
5443
5444 =item New Unicode Properties
5445
5446 =item REF(...) Instead Of SCALAR(...)
5447
5448 =item pack/unpack D/F recycled
5449
5450 =item glob() now returns filenames in alphabetical order
5451
5452 =item Deprecations
5453
5454 =back
5455
5456 =item Core Enhancements
5457
5458 =over 4
5459
5460 =item Unicode Overhaul
5461
5462 =item PerlIO is Now The Default
5463
5464 =item ithreads
5465
5466 =item Restricted Hashes
5467
5468 =item Safe Signals
5469
5470 =item Understanding of Numbers
5471
5472 =item Arrays now always interpolate into double-quoted strings [561]
5473
5474 =item Miscellaneous Changes
5475
5476 =back
5477
5478 =item Modules and Pragmata
5479
5480 =over 4
5481
5482 =item New Modules and Pragmata
5483
5484 =item Updated And Improved Modules and Pragmata
5485
5486 =back
5487
5488 =item Utility Changes
5489
5490 =item New Documentation
5491
5492 =item Performance Enhancements
5493
5494 =item Installation and Configuration Improvements
5495
5496 =over 4
5497
5498 =item Generic Improvements
5499
5500 =item New Or Improved Platforms
5501
5502 =back
5503
5504 =item Selected Bug Fixes
5505
5506 =over 4
5507
5508 =item Platform Specific Changes and Fixes
5509
5510 =back
5511
5512 =item New or Changed Diagnostics
5513
5514 =item Changed Internals
5515
5516 =item Security Vulnerability Closed [561]
5517
5518 =item New Tests
5519
5520 =item Known Problems
5521
5522 =over 4
5523
5524 =item The Compiler Suite Is Still Very Experimental
5525
5526 =item Localising Tied Arrays and Hashes Is Broken
5527
5528 =item Building Extensions Can Fail Because Of Largefiles
5529
5530 =item Modifying $_ Inside for(..)
5531
5532 =item mod_perl 1.26 Doesn't Build With Threaded Perl
5533
5534 =item lib/ftmp-security tests warn 'system possibly insecure'
5535
5536 =item libwww-perl (LWP) fails base/date #51
5537
5538 =item PDL failing some tests
5539
5540 =item Perl_get_sv
5541
5542 =item Self-tying Problems
5543
5544 =item ext/threads/t/libc
5545
5546 =item Failure of Thread (5.005-style) tests
5547
5548 =item Timing problems
5549
5550 =item Tied/Magical Array/Hash Elements Do Not Autovivify
5551
5552 =item Unicode in package/class and subroutine names does not work
5553
5554 =back
5555
5556 =item Platform Specific Problems
5557
5558 =over 4
5559
5560 =item AIX
5561
5562 =item Alpha systems with old gccs fail several tests
5563
5564 =item AmigaOS
5565
5566 =item BeOS
5567
5568 =item Cygwin "unable to remap"
5569
5570 =item Cygwin ndbm tests fail on FAT
5571
5572 =item DJGPP Failures
5573
5574 =item FreeBSD built with ithreads coredumps reading large directories
5575
5576 =item FreeBSD Failing locale Test 117 For ISO 8859-15 Locales
5577
5578 =item IRIX fails ext/List/Util/t/shuffle.t or Digest::MD5
5579
5580 =item HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5581
5582 =item Linux with glibc 2.2.5 fails t/op/int subtest #6 with -Duse64bitint
5583
5584 =item Linux With Sfio Fails op/misc Test 48
5585
5586 =item Mac OS X
5587
5588 =item Mac OS X dyld undefined symbols
5589
5590 =item OS/2 Test Failures
5591
5592 =item op/sprintf tests 91, 129, and 130
5593
5594 =item SCO
5595
5596 =item Solaris 2.5
5597
5598 =item Solaris x86 Fails Tests With -Duse64bitint
5599
5600 =item SUPER-UX (NEC SX)
5601
5602 =item Term::ReadKey not working on Win32
5603
5604 =item UNICOS/mk
5605
5606 =item UTS
5607
5608 =item VOS (Stratus)
5609
5610 =item VMS
5611
5612 =item Win32
5613
5614 =item XML::Parser not working
5615
5616 =item z/OS (OS/390)
5617
5618 =item Unicode Support on EBCDIC Still Spotty
5619
5620 =item Seen In Perl 5.7 But Gone Now
5621
5622 =back
5623
5624 =item Reporting Bugs
5625
5626 =item SEE ALSO
5627
5628 =item HISTORY
5629
5630 =back
5631
5632 =head2 perl573delta - what's new for perl v5.7.3
5633
5634 =over 4
5635
5636 =item DESCRIPTION
5637
5638 =item Changes
5639
5640 =item Reporting Bugs
5641
5642 =item SEE ALSO
5643
5644 =item HISTORY
5645
5646 =back
5647
5648 =head2 perl572delta - what's new for perl v5.7.2
5649
5650 =over 4
5651
5652 =item DESCRIPTION
5653
5654 =item Security Vulnerability Closed
5655
5656 =item Incompatible Changes
5657
5658 =over 4
5659
5660 =item 64-bit platforms and malloc
5661
5662 =item AIX Dynaloading
5663
5664 =item Socket Extension Dynamic in VMS
5665
5666 =item Different Definition of the Unicode Character Classes \p{In...}
5667
5668 =item Deprecations
5669
5670 =back
5671
5672 =item Core Enhancements
5673
5674 =item Modules and Pragmata
5675
5676 =over 4
5677
5678 =item New Modules and Distributions
5679
5680 =item Updated And Improved Modules and Pragmata
5681
5682 =back
5683
5684 =item Utility Changes
5685
5686 =item New Documentation
5687
5688 =item Installation and Configuration Improvements
5689
5690 =over 4
5691
5692 =item New Or Improved Platforms
5693
5694 =item Generic Improvements
5695
5696 =back
5697
5698 =item Selected Bug Fixes
5699
5700 =over 4
5701
5702 =item Platform Specific Changes and Fixes
5703
5704 =back
5705
5706 =item New or Changed Diagnostics
5707
5708 =item Source Code Enhancements
5709
5710 =over 4
5711
5712 =item MAGIC constants
5713
5714 =item Better commented code
5715
5716 =item Regex pre-/post-compilation items matched up
5717
5718 =item gcc -Wall
5719
5720 =back
5721
5722 =item New Tests
5723
5724 =item Known Problems
5725
5726 =over 4
5727
5728 =item AIX
5729
5730 =item Amiga Perl Invoking Mystery
5731
5732 =item lib/ftmp-security tests warn 'system possibly insecure'
5733
5734 =item Cygwin intermittent failures of lib/Memoize/t/expire_file 11 and 12
5735
5736 =item HP-UX lib/io_multihomed Fails When LP64-Configured
5737
5738 =item  HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5739
5740 =item Linux With Sfio Fails op/misc Test 48
5741
5742 =item OS/390
5743
5744 =item op/sprintf tests 129 and 130
5745
5746 =item  Failure of Thread tests
5747
5748 =item UNICOS
5749
5750 =item UTS
5751
5752 =item VMS
5753
5754 =item Win32
5755
5756 =item Localising a Tied Variable Leaks Memory
5757
5758 =item Self-tying of Arrays and Hashes Is Forbidden
5759
5760 =item Variable Attributes are not Currently Usable for Tieing
5761
5762 =item Building Extensions Can Fail Because Of Largefiles
5763
5764 =item The Compiler Suite Is Still Experimental
5765
5766 =item The Long Double Support is Still Experimental
5767
5768 =back
5769
5770 =item Reporting Bugs
5771
5772 =item SEE ALSO
5773
5774 =item HISTORY
5775
5776 =back
5777
5778 =head2 perl571delta - what's new for perl v5.7.1
5779
5780 =over 4
5781
5782 =item DESCRIPTION
5783
5784 =item Security Vulnerability Closed
5785
5786 =item Incompatible Changes
5787
5788 =item Core Enhancements
5789
5790 =over 4
5791
5792 =item AUTOLOAD Is Now Lvaluable
5793
5794 =item PerlIO is Now The Default
5795
5796 =item Signals Are Now Safe
5797
5798 =back
5799
5800 =item Modules and Pragmata
5801
5802 =over 4
5803
5804 =item New Modules
5805
5806 =item Updated And Improved Modules and Pragmata
5807
5808 =back
5809
5810 =item Performance Enhancements
5811
5812 =item Utility Changes
5813
5814 =item New Documentation
5815
5816 =over 4
5817
5818 =item perlclib
5819
5820 =item perliol
5821
5822 =item README.aix
5823
5824 =item README.bs2000
5825
5826 =item README.macos
5827
5828 =item README.mpeix
5829
5830 =item README.solaris
5831
5832 =item README.vos
5833
5834 =item Porting/repository.pod
5835
5836 =back
5837
5838 =item Installation and Configuration Improvements
5839
5840 =over 4
5841
5842 =item New Or Improved Platforms
5843
5844 =item Generic Improvements
5845
5846 d_cmsghdr, d_fcntl_can_lock, d_fsync, d_getitimer, d_getpagsz, d_msghdr_s,
5847 need_va_copy, d_readv, d_recvmsg, d_sendmsg, sig_size, d_sockatmark,
5848 d_strtoq, d_u32align, d_ualarm, d_usleep
5849
5850 =back
5851
5852 =item Selected Bug Fixes
5853
5854 =over 4
5855
5856 =item Platform Specific Changes and Fixes
5857
5858 =back
5859
5860 =item New or Changed Diagnostics
5861
5862 =item Changed Internals
5863
5864 =item New Tests
5865
5866 =item Known Problems
5867
5868 =over 4
5869
5870 =item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
5871
5872 =item lib/ftmp-security tests warn 'system possibly insecure'
5873
5874 =item lib/io_multihomed Fails In LP64-Configured HP-UX
5875
5876 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5877
5878 =item lib/b test 19
5879
5880 =item Linux With Sfio Fails op/misc Test 48
5881
5882 =item sigaction test 13 in VMS
5883
5884 =item sprintf tests 129 and 130
5885
5886 =item  Failure of Thread tests
5887
5888 =item Localising a Tied Variable Leaks Memory
5889
5890 =item Self-tying of Arrays and Hashes Is Forbidden
5891
5892 =item Building Extensions Can Fail Because Of Largefiles
5893
5894 =item The Compiler Suite Is Still Experimental
5895
5896 =back
5897
5898 =item Reporting Bugs
5899
5900 =item SEE ALSO
5901
5902 =item HISTORY
5903
5904 =back
5905
5906 =head2 perl570delta - what's new for perl v5.7.0
5907
5908 =over 4
5909
5910 =item DESCRIPTION
5911
5912 =item Security Vulnerability Closed
5913
5914 =item Incompatible Changes
5915
5916 =item Core Enhancements
5917
5918 =item Modules and Pragmata
5919
5920 =over 4
5921
5922 =item New Modules
5923
5924 =item Updated And Improved Modules and Pragmata
5925
5926 =back
5927
5928 =item Utility Changes
5929
5930 =item New Documentation
5931
5932 =item Performance Enhancements
5933
5934 =item Installation and Configuration Improvements
5935
5936 =over 4
5937
5938 =item Generic Improvements
5939
5940 =back
5941
5942 =item Selected Bug Fixes
5943
5944 =over 4
5945
5946 =item Platform Specific Changes and Fixes
5947
5948 =back
5949
5950 =item New or Changed Diagnostics
5951
5952 =item Changed Internals
5953
5954 =item Known Problems
5955
5956 =over 4
5957
5958 =item Unicode Support Still Far From Perfect
5959
5960 =item EBCDIC Still A Lost Platform
5961
5962 =item Building Extensions Can Fail Because Of Largefiles
5963
5964 =item ftmp-security tests warn 'system possibly insecure'
5965
5966 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5967
5968 =item Long Doubles Still Don't Work In Solaris
5969
5970 =item Linux With Sfio Fails op/misc Test 48
5971
5972 =item Storable tests fail in some platforms
5973
5974 =item Threads Are Still Experimental
5975
5976 =item The Compiler Suite Is Still Experimental
5977
5978 =back
5979
5980 =item Reporting Bugs
5981
5982 =item SEE ALSO
5983
5984 =item HISTORY
5985
5986 =back
5987
5988 =head2 perl561delta - what's new for perl v5.6.x
5989
5990 =over 4
5991
5992 =item DESCRIPTION
5993
5994 =item Summary of changes between 5.6.0 and 5.6.1
5995
5996 =over 4
5997
5998 =item Security Issues
5999
6000 =item Core bug fixes
6001
6002 C<UNIVERSAL::isa()>, Memory leaks, Numeric conversions, qw(a\\b), caller(),
6003 Bugs in regular expressions, "slurp" mode, Autovivification of symbolic
6004 references to special variables, Lexical warnings, Spurious warnings and
6005 errors, glob(), Tainting, sort(), #line directives, Subroutine prototypes,
6006 map(), Debugger, PERL5OPT, chop(), Unicode support, 64-bit support,
6007 Compiler, Lvalue subroutines, IO::Socket, File::Find, xsubpp, C<no
6008 Module;>, Tests
6009
6010 =item Core features
6011
6012 =item Configuration issues
6013
6014 =item Documentation
6015
6016 =item Bundled modules
6017
6018 B::Concise, File::Temp, Pod::LaTeX, Pod::Text::Overstrike, CGI, CPAN,
6019 Class::Struct, DB_File, Devel::Peek, File::Find, Getopt::Long, IO::Poll,
6020 IPC::Open3, Math::BigFloat, Math::Complex, Net::Ping, Opcode, Pod::Parser,
6021 Pod::Text, SDBM_File, Sys::Syslog, Tie::RefHash, Tie::SubstrHash
6022
6023 =item Platform-specific improvements
6024
6025 NCR MP-RAS, NonStop-UX
6026
6027 =back
6028
6029 =item Core Enhancements
6030
6031 =over 4
6032
6033 =item Interpreter cloning, threads, and concurrency
6034
6035 =item Lexically scoped warning categories
6036
6037 =item Unicode and UTF-8 support
6038
6039 =item Support for interpolating named characters
6040
6041 =item "our" declarations
6042
6043 =item Support for strings represented as a vector of ordinals
6044
6045 =item Improved Perl version numbering system
6046
6047 =item New syntax for declaring subroutine attributes
6048
6049 =item File and directory handles can be autovivified
6050
6051 =item open() with more than two arguments
6052
6053 =item 64-bit support
6054
6055 =item Large file support
6056
6057 =item Long doubles
6058
6059 =item "more bits"
6060
6061 =item Enhanced support for sort() subroutines
6062
6063 =item C<sort $coderef @foo> allowed
6064
6065 =item File globbing implemented internally
6066
6067 =item Support for CHECK blocks
6068
6069 =item POSIX character class syntax [: :] supported
6070
6071 =item Better pseudo-random number generator
6072
6073 =item Improved C<qw//> operator
6074
6075 =item Better worst-case behavior of hashes
6076
6077 =item pack() format 'Z' supported
6078
6079 =item pack() format modifier '!' supported
6080
6081 =item pack() and unpack() support counted strings
6082
6083 =item Comments in pack() templates
6084
6085 =item Weak references
6086
6087 =item Binary numbers supported
6088
6089 =item Lvalue subroutines
6090
6091 =item Some arrows may be omitted in calls through references
6092
6093 =item Boolean assignment operators are legal lvalues
6094
6095 =item exists() is supported on subroutine names
6096
6097 =item exists() and delete() are supported on array elements
6098
6099 =item Pseudo-hashes work better
6100
6101 =item Automatic flushing of output buffers
6102
6103 =item Better diagnostics on meaningless filehandle operations
6104
6105 =item Where possible, buffered data discarded from duped input filehandle
6106
6107 =item eof() has the same old magic as <>
6108
6109 =item binmode() can be used to set :crlf and :raw modes
6110
6111 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
6112
6113 =item system(), backticks and pipe open now reflect exec() failure
6114
6115 =item Improved diagnostics
6116
6117 =item Diagnostics follow STDERR
6118
6119 =item More consistent close-on-exec behavior
6120
6121 =item syswrite() ease-of-use
6122
6123 =item Better syntax checks on parenthesized unary operators
6124
6125 =item Bit operators support full native integer width
6126
6127 =item Improved security features
6128
6129 =item More functional bareword prototype (*)
6130
6131 =item C<require> and C<do> may be overridden
6132
6133 =item $^X variables may now have names longer than one character
6134
6135 =item New variable $^C reflects C<-c> switch
6136
6137 =item New variable $^V contains Perl version as a string
6138
6139 =item Optional Y2K warnings
6140
6141 =item Arrays now always interpolate into double-quoted strings
6142
6143 =back
6144
6145 =item Modules and Pragmata
6146
6147 =over 4
6148
6149 =item Modules
6150
6151 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6152 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6153 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6154 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6155 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6156 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6157 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6158 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6159
6160 =item Pragmata
6161
6162 =back
6163
6164 =item Utility Changes
6165
6166 =over 4
6167
6168 =item dprofpp
6169
6170 =item find2perl
6171
6172 =item h2xs
6173
6174 =item perlcc
6175
6176 =item perldoc
6177
6178 =item The Perl Debugger
6179
6180 =back
6181
6182 =item Improved Documentation
6183
6184 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6185 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6186 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6187 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6188
6189 =item Performance enhancements
6190
6191 =over 4
6192
6193 =item Simple sort() using { $a <=> $b } and the like are optimized
6194
6195 =item Optimized assignments to lexical variables
6196
6197 =item Faster subroutine calls
6198
6199 =item delete(), each(), values() and hash iteration are faster
6200
6201 =back
6202
6203 =item Installation and Configuration Improvements
6204
6205 =over 4
6206
6207 =item -Dusethreads means something different
6208
6209 =item New Configure flags
6210
6211 =item Threadedness and 64-bitness now more daring
6212
6213 =item Long Doubles
6214
6215 =item -Dusemorebits
6216
6217 =item -Duselargefiles
6218
6219 =item installusrbinperl
6220
6221 =item SOCKS support
6222
6223 =item C<-A> flag
6224
6225 =item Enhanced Installation Directories
6226
6227 =item gcc automatically tried if 'cc' does not seem to be working
6228
6229 =back
6230
6231 =item Platform specific changes
6232
6233 =over 4
6234
6235 =item Supported platforms
6236
6237 =item DOS
6238
6239 =item OS390 (OpenEdition MVS)
6240
6241 =item VMS
6242
6243 =item Win32
6244
6245 =back
6246
6247 =item Significant bug fixes
6248
6249 =over 4
6250
6251 =item <HANDLE> on empty files
6252
6253 =item C<eval '...'> improvements
6254
6255 =item All compilation errors are true errors
6256
6257 =item Implicitly closed filehandles are safer
6258
6259 =item Behavior of list slices is more consistent
6260
6261 =item C<(\$)> prototype and C<$foo{a}>
6262
6263 =item C<goto &sub> and AUTOLOAD
6264
6265 =item C<-bareword> allowed under C<use integer>
6266
6267 =item Failures in DESTROY()
6268
6269 =item Locale bugs fixed
6270
6271 =item Memory leaks
6272
6273 =item Spurious subroutine stubs after failed subroutine calls
6274
6275 =item Taint failures under C<-U>
6276
6277 =item END blocks and the C<-c> switch
6278
6279 =item Potential to leak DATA filehandles
6280
6281 =back
6282
6283 =item New or Changed Diagnostics
6284
6285 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6286 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6287 / cannot take a count, / must be followed by a, A or Z, / must be followed
6288 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6289 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6290 passed through, /%s/ should probably be written as "%s", %s() called too
6291 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6292 argument is not a HASH or ARRAY element or slice, %s argument is not a
6293 subroutine name, %s package attribute may clash with future reserved word:
6294 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6295 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6296 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6297 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6298 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6299 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6300 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6301 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6302 weaken a nonreference, Character class [:%s:] unknown, Character class
6303 syntax [%s] belongs inside character classes, Constant is not %s reference,
6304 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6305 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6306 "local" instead of "our"?), Document contains no data, entering effective
6307 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6308 output, flock() on closed filehandle %s, Global symbol "%s" requires
6309 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6310 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6311 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6312 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6313 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6314 separator character %s in attribute list, Invalid separator character %s in
6315 subroutine attribute list, leaving effective %s failed, Lvalue subs
6316 returning %s not implemented yet, Method %s not permitted, Missing
6317 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6318 No %s specified for -%c, No package name allowed for variable %s in "our",
6319 No space allowed after -%c, no UTC offset information; assuming local time
6320 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6321 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6322 around "%s" list, Possible unintended interpolation of %s in string,
6323 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6324 instead, Premature end of script headers, Repeat count in pack overflows,
6325 Repeat count in unpack overflows, realloc() of freed memory ignored,
6326 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6327 zero-length expression, switching effective %s is not implemented, This
6328 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6329 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6330 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6331 escape \\%c passed through, Unterminated attribute parameter in attribute
6332 list, Unterminated attribute list, Unterminated attribute parameter in
6333 subroutine attribute list, Unterminated subroutine attribute list, Value of
6334 CLI symbol "%s" too long, Version number must be a constant number
6335
6336 =item New tests
6337
6338 =item Incompatible Changes
6339
6340 =over 4
6341
6342 =item Perl Source Incompatibilities
6343
6344 CHECK is a new keyword, Treatment of list slices of undef has changed,
6345 Format of $English::PERL_VERSION is different, Literals of the form
6346 C<1.2.3> parse differently, Possibly changed pseudo-random number
6347 generator, Hashing function for hash keys has changed, C<undef> fails on
6348 read only values, Close-on-exec bit may be set on pipe and socket handles,
6349 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6350 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6351 Text of some diagnostic output has changed, C<%@> has been removed,
6352 Parenthesized not() behaves like a list operator, Semantics of bareword
6353 prototype C<(*)> have changed, Semantics of bit operators may have changed
6354 on 64-bit platforms, More builtins taint their results
6355
6356 =item C Source Incompatibilities
6357
6358 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6359
6360 =item Compatible C Source API Changes
6361
6362 C<PATCHLEVEL> is now C<PERL_VERSION>
6363
6364 =item Binary Incompatibilities
6365
6366 =back
6367
6368 =item Known Problems
6369
6370 =over 4
6371
6372 =item Localizing a tied hash element may leak memory
6373
6374 =item Known test failures
6375
6376 =item EBCDIC platforms not fully supported
6377
6378 =item UNICOS/mk CC failures during Configure run
6379
6380 =item Arrow operator and arrays
6381
6382 =item Experimental features
6383
6384 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6385 pseudo-hash data type, The Compiler suite, Internal implementation of file
6386 globbing, The DB module, The regular expression code constructs:
6387
6388 =back
6389
6390 =item Obsolete Diagnostics
6391
6392 Character class syntax [: :] is reserved for future extensions, Ill-formed
6393 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6394 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6395 to mean "${$}<digit>" is deprecated
6396
6397 =item Reporting Bugs
6398
6399 =item SEE ALSO
6400
6401 =item HISTORY
6402
6403 =back
6404
6405 =head2 perl56delta - what's new for perl v5.6.0
6406
6407 =over 4
6408
6409 =item DESCRIPTION
6410
6411 =item Core Enhancements
6412
6413 =over 4
6414
6415 =item Interpreter cloning, threads, and concurrency
6416
6417 =item Lexically scoped warning categories
6418
6419 =item Unicode and UTF-8 support
6420
6421 =item Support for interpolating named characters
6422
6423 =item "our" declarations
6424
6425 =item Support for strings represented as a vector of ordinals
6426
6427 =item Improved Perl version numbering system
6428
6429 =item New syntax for declaring subroutine attributes
6430
6431 =item File and directory handles can be autovivified
6432
6433 =item open() with more than two arguments
6434
6435 =item 64-bit support
6436
6437 =item Large file support
6438
6439 =item Long doubles
6440
6441 =item "more bits"
6442
6443 =item Enhanced support for sort() subroutines
6444
6445 =item C<sort $coderef @foo> allowed
6446
6447 =item File globbing implemented internally
6448
6449 =item Support for CHECK blocks
6450
6451 =item POSIX character class syntax [: :] supported
6452
6453 =item Better pseudo-random number generator
6454
6455 =item Improved C<qw//> operator
6456
6457 =item Better worst-case behavior of hashes
6458
6459 =item pack() format 'Z' supported
6460
6461 =item pack() format modifier '!' supported
6462
6463 =item pack() and unpack() support counted strings
6464
6465 =item Comments in pack() templates
6466
6467 =item Weak references
6468
6469 =item Binary numbers supported
6470
6471 =item Lvalue subroutines
6472
6473 =item Some arrows may be omitted in calls through references
6474
6475 =item Boolean assignment operators are legal lvalues
6476
6477 =item exists() is supported on subroutine names
6478
6479 =item exists() and delete() are supported on array elements
6480
6481 =item Pseudo-hashes work better
6482
6483 =item Automatic flushing of output buffers
6484
6485 =item Better diagnostics on meaningless filehandle operations
6486
6487 =item Where possible, buffered data discarded from duped input filehandle
6488
6489 =item eof() has the same old magic as <>
6490
6491 =item binmode() can be used to set :crlf and :raw modes
6492
6493 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
6494
6495 =item system(), backticks and pipe open now reflect exec() failure
6496
6497 =item Improved diagnostics
6498
6499 =item Diagnostics follow STDERR
6500
6501 =item More consistent close-on-exec behavior
6502
6503 =item syswrite() ease-of-use
6504
6505 =item Better syntax checks on parenthesized unary operators
6506
6507 =item Bit operators support full native integer width
6508
6509 =item Improved security features
6510
6511 =item More functional bareword prototype (*)
6512
6513 =item C<require> and C<do> may be overridden
6514
6515 =item $^X variables may now have names longer than one character
6516
6517 =item New variable $^C reflects C<-c> switch
6518
6519 =item New variable $^V contains Perl version as a string
6520
6521 =item Optional Y2K warnings
6522
6523 =item Arrays now always interpolate into double-quoted strings
6524
6525 =back
6526
6527 =item Modules and Pragmata
6528
6529 =over 4
6530
6531 =item Modules
6532
6533 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6534 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6535 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6536 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6537 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6538 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6539 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6540 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6541
6542 =item Pragmata
6543
6544 =back
6545
6546 =item Utility Changes
6547
6548 =over 4
6549
6550 =item dprofpp
6551
6552 =item find2perl
6553
6554 =item h2xs
6555
6556 =item perlcc
6557
6558 =item perldoc
6559
6560 =item The Perl Debugger
6561
6562 =back
6563
6564 =item Improved Documentation
6565
6566 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6567 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6568 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6569 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6570
6571 =item Performance enhancements
6572
6573 =over 4
6574
6575 =item Simple sort() using { $a <=> $b } and the like are optimized
6576
6577 =item Optimized assignments to lexical variables
6578
6579 =item Faster subroutine calls
6580
6581 =item delete(), each(), values() and hash iteration are faster
6582
6583 =back
6584
6585 =item Installation and Configuration Improvements
6586
6587 =over 4
6588
6589 =item -Dusethreads means something different
6590
6591 =item New Configure flags
6592
6593 =item Threadedness and 64-bitness now more daring
6594
6595 =item Long Doubles
6596
6597 =item -Dusemorebits
6598
6599 =item -Duselargefiles
6600
6601 =item installusrbinperl
6602
6603 =item SOCKS support
6604
6605 =item C<-A> flag
6606
6607 =item Enhanced Installation Directories
6608
6609 =back
6610
6611 =item Platform specific changes
6612
6613 =over 4
6614
6615 =item Supported platforms
6616
6617 =item DOS
6618
6619 =item OS390 (OpenEdition MVS)
6620
6621 =item VMS
6622
6623 =item Win32
6624
6625 =back
6626
6627 =item Significant bug fixes
6628
6629 =over 4
6630
6631 =item <HANDLE> on empty files
6632
6633 =item C<eval '...'> improvements
6634
6635 =item All compilation errors are true errors
6636
6637 =item Implicitly closed filehandles are safer
6638
6639 =item Behavior of list slices is more consistent
6640
6641 =item C<(\$)> prototype and C<$foo{a}>
6642
6643 =item C<goto &sub> and AUTOLOAD
6644
6645 =item C<-bareword> allowed under C<use integer>
6646
6647 =item Failures in DESTROY()
6648
6649 =item Locale bugs fixed
6650
6651 =item Memory leaks
6652
6653 =item Spurious subroutine stubs after failed subroutine calls
6654
6655 =item Taint failures under C<-U>
6656
6657 =item END blocks and the C<-c> switch
6658
6659 =item Potential to leak DATA filehandles
6660
6661 =back
6662
6663 =item New or Changed Diagnostics
6664
6665 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6666 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6667 / cannot take a count, / must be followed by a, A or Z, / must be followed
6668 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6669 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6670 passed through, /%s/ should probably be written as "%s", %s() called too
6671 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6672 argument is not a HASH or ARRAY element or slice, %s argument is not a
6673 subroutine name, %s package attribute may clash with future reserved word:
6674 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6675 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6676 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6677 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6678 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6679 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6680 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6681 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6682 weaken a nonreference, Character class [:%s:] unknown, Character class
6683 syntax [%s] belongs inside character classes, Constant is not %s reference,
6684 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6685 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6686 "local" instead of "our"?), Document contains no data, entering effective
6687 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6688 output, flock() on closed filehandle %s, Global symbol "%s" requires
6689 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6690 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6691 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6692 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6693 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6694 separator character %s in attribute list, Invalid separator character %s in
6695 subroutine attribute list, leaving effective %s failed, Lvalue subs
6696 returning %s not implemented yet, Method %s not permitted, Missing
6697 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6698 No %s specified for -%c, No package name allowed for variable %s in "our",
6699 No space allowed after -%c, no UTC offset information; assuming local time
6700 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6701 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6702 around "%s" list, Possible unintended interpolation of %s in string,
6703 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6704 instead, Premature end of script headers, Repeat count in pack overflows,
6705 Repeat count in unpack overflows, realloc() of freed memory ignored,
6706 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6707 zero-length expression, switching effective %s is not implemented, This
6708 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6709 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6710 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6711 escape \\%c passed through, Unterminated attribute parameter in attribute
6712 list, Unterminated attribute list, Unterminated attribute parameter in
6713 subroutine attribute list, Unterminated subroutine attribute list, Value of
6714 CLI symbol "%s" too long, Version number must be a constant number
6715
6716 =item New tests
6717
6718 =item Incompatible Changes
6719
6720 =over 4
6721
6722 =item Perl Source Incompatibilities
6723
6724 CHECK is a new keyword, Treatment of list slices of undef has changed,
6725 Format of $English::PERL_VERSION is different, Literals of the form
6726 C<1.2.3> parse differently, Possibly changed pseudo-random number
6727 generator, Hashing function for hash keys has changed, C<undef> fails on
6728 read only values, Close-on-exec bit may be set on pipe and socket handles,
6729 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6730 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6731 Text of some diagnostic output has changed, C<%@> has been removed,
6732 Parenthesized not() behaves like a list operator, Semantics of bareword
6733 prototype C<(*)> have changed, Semantics of bit operators may have changed
6734 on 64-bit platforms, More builtins taint their results
6735
6736 =item C Source Incompatibilities
6737
6738 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6739
6740 =item Compatible C Source API Changes
6741
6742 C<PATCHLEVEL> is now C<PERL_VERSION>
6743
6744 =item Binary Incompatibilities
6745
6746 =back
6747
6748 =item Known Problems
6749
6750 =over 4
6751
6752 =item Thread test failures
6753
6754 =item EBCDIC platforms not supported
6755
6756 =item In 64-bit HP-UX the lib/io_multihomed test may hang
6757
6758 =item NEXTSTEP 3.3 POSIX test failure
6759
6760 =item Tru64 (aka Digital UNIX, aka DEC OSF/1) lib/sdbm test failure with
6761 gcc
6762
6763 =item UNICOS/mk CC failures during Configure run
6764
6765 =item Arrow operator and arrays
6766
6767 =item Experimental features
6768
6769 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6770 pseudo-hash data type, The Compiler suite, Internal implementation of file
6771 globbing, The DB module, The regular expression code constructs:
6772
6773 =back
6774
6775 =item Obsolete Diagnostics
6776
6777 Character class syntax [: :] is reserved for future extensions, Ill-formed
6778 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6779 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6780 to mean "${$}<digit>" is deprecated
6781
6782 =item Reporting Bugs
6783
6784 =item SEE ALSO
6785
6786 =item HISTORY
6787
6788 =back
6789
6790 =head2 perl5005delta - what's new for perl5.005
6791
6792 =over 4
6793
6794 =item DESCRIPTION
6795
6796 =item About the new versioning system
6797
6798 =item Incompatible Changes
6799
6800 =over 4
6801
6802 =item WARNING:  This version is not binary compatible with Perl 5.004.
6803
6804 =item Default installation structure has changed
6805
6806 =item Perl Source Compatibility
6807
6808 =item C Source Compatibility
6809
6810 =item Binary Compatibility
6811
6812 =item Security fixes may affect compatibility
6813
6814 =item Relaxed new mandatory warnings introduced in 5.004
6815
6816 =item Licensing
6817
6818 =back
6819
6820 =item Core Changes
6821
6822 =over 4
6823
6824 =item Threads
6825
6826 =item Compiler
6827
6828 =item Regular Expressions
6829
6830 Many new and improved optimizations, Many bug fixes, New regular expression
6831 constructs, New operator for precompiled regular expressions, Other
6832 improvements, Incompatible changes
6833
6834 =item   Improved malloc()
6835
6836 =item Quicksort is internally implemented
6837
6838 =item Reliable signals
6839
6840 =item Reliable stack pointers
6841
6842 =item More generous treatment of carriage returns
6843
6844 =item Memory leaks
6845
6846 =item Better support for multiple interpreters
6847
6848 =item Behavior of local() on array and hash elements is now well-defined
6849
6850 =item C<%!> is transparently tied to the L<Errno> module
6851
6852 =item Pseudo-hashes are supported
6853
6854 =item C<EXPR foreach EXPR> is supported
6855
6856 =item Keywords can be globally overridden
6857
6858 =item C<$^E> is meaningful on Win32
6859
6860 =item C<foreach (1..1000000)> optimized
6861
6862 =item C<Foo::> can be used as implicitly quoted package name
6863
6864 =item C<exists $Foo::{Bar::}> tests existence of a package
6865
6866 =item Better locale support
6867
6868 =item Experimental support for 64-bit platforms
6869
6870 =item prototype() returns useful results on builtins
6871
6872 =item Extended support for exception handling
6873
6874 =item Re-blessing in DESTROY() supported for chaining DESTROY() methods
6875
6876 =item All C<printf> format conversions are handled internally
6877
6878 =item New C<INIT> keyword
6879
6880 =item New C<lock> keyword
6881
6882 =item New C<qr//> operator
6883
6884 =item C<our> is now a reserved word
6885
6886 =item Tied arrays are now fully supported
6887
6888 =item Tied handles support is better
6889
6890 =item 4th argument to substr
6891
6892 =item Negative LENGTH argument to splice
6893
6894 =item Magic lvalues are now more magical
6895
6896 =item <> now reads in records
6897
6898 =back
6899
6900 =item Supported Platforms
6901
6902 =over 4
6903
6904 =item New Platforms
6905
6906 =item Changes in existing support
6907
6908 =back
6909
6910 =item Modules and Pragmata
6911
6912 =over 4
6913
6914 =item New Modules
6915
6916 B, Data::Dumper, Dumpvalue, Errno, File::Spec, ExtUtils::Installed,
6917 ExtUtils::Packlist, Fatal, IPC::SysV, Test, Tie::Array, Tie::Handle,
6918 Thread, attrs, fields, re
6919
6920 =item Changes in existing modules
6921
6922 Benchmark, Carp, CGI, Fcntl, Math::Complex, Math::Trig, POSIX, DB_File,
6923 MakeMaker, CPAN, Cwd
6924
6925 =back
6926
6927 =item Utility Changes
6928
6929 =item Documentation Changes
6930
6931 =item New Diagnostics
6932
6933 Ambiguous call resolved as CORE::%s(), qualify as such or use &, Bad index
6934 while coercing array into hash, Bareword "%s" refers to nonexistent
6935 package, Can't call method "%s" on an undefined value, Can't check
6936 filesystem of script "%s" for nosuid, Can't coerce array into hash, Can't
6937 goto subroutine from an eval-string, Can't localize pseudo-hash element,
6938 Can't use %%! because Errno.pm is not available, Cannot find an opnumber
6939 for "%s", Character class syntax [. .] is reserved for future extensions,
6940 Character class syntax [: :] is reserved for future extensions, Character
6941 class syntax [= =] is reserved for future extensions, %s: Eval-group in
6942 insecure regular expression, %s: Eval-group not allowed, use re 'eval', %s:
6943 Eval-group not allowed at run time, Explicit blessing to '' (assuming
6944 package main), Illegal hex digit ignored, No such array field, No such
6945 field "%s" in variable %s of type %s, Out of memory during ridiculously
6946 large request, Range iterator outside integer range, Recursive inheritance
6947 detected while looking for method '%s' %s, Reference found where even-sized
6948 list expected, Undefined value assigned to typeglob, Use of reserved word
6949 "%s" is deprecated, perl: warning: Setting locale failed
6950
6951 =item Obsolete Diagnostics
6952
6953 Can't mktemp(), Can't write to temp file for B<-e>: %s, Cannot open
6954 temporary file, regexp too big
6955
6956 =item Configuration Changes
6957
6958 =item BUGS
6959
6960 =item SEE ALSO
6961
6962 =item HISTORY
6963
6964 =back
6965
6966 =head2 perl5004delta - what's new for perl5.004
6967
6968 =over 4
6969
6970 =item DESCRIPTION
6971
6972 =item Supported Environments
6973
6974 =item Core Changes
6975
6976 =over 4
6977
6978 =item List assignment to %ENV works
6979
6980 =item Change to "Can't locate Foo.pm in @INC" error
6981
6982 =item Compilation option: Binary compatibility with 5.003
6983
6984 =item $PERL5OPT environment variable
6985
6986 =item Limitations on B<-M>, B<-m>, and B<-T> options
6987
6988 =item More precise warnings
6989
6990 =item Deprecated: Inherited C<AUTOLOAD> for non-methods
6991
6992 =item Previously deprecated %OVERLOAD is no longer usable
6993
6994 =item Subroutine arguments created only when they're modified
6995
6996 =item Group vector changeable with C<$)>
6997
6998 =item Fixed parsing of $$<digit>, &$<digit>, etc.
6999
7000 =item Fixed localization of $<digit>, $&, etc.
7001
7002 =item No resetting of $. on implicit close
7003
7004 =item C<wantarray> may return undef
7005
7006 =item C<eval EXPR> determines value of EXPR in scalar context
7007
7008 =item Changes to tainting checks
7009
7010 No glob() or <*>, No spawning if tainted $CDPATH, $ENV, $BASH_ENV, No
7011 spawning if tainted $TERM doesn't look like a terminal name
7012
7013 =item New Opcode module and revised Safe module
7014
7015 =item Embedding improvements
7016
7017 =item Internal change: FileHandle class based on IO::* classes
7018
7019 =item Internal change: PerlIO abstraction interface
7020
7021 =item New and changed syntax
7022
7023 $coderef->(PARAMS)
7024
7025 =item New and changed builtin constants
7026
7027 __PACKAGE__
7028
7029 =item New and changed builtin variables
7030
7031 $^E, $^H, $^M
7032
7033 =item New and changed builtin functions
7034
7035 delete on slices, flock, printf and sprintf, keys as an lvalue, my() in
7036 Control Structures, pack() and unpack(), sysseek(), use VERSION, use Module
7037 VERSION LIST, prototype(FUNCTION), srand, $_ as Default, C<m//gc> does not
7038 reset search position on failure, C<m//x> ignores whitespace before ?*+{},
7039 nested C<sub{}> closures work now, formats work right on changing lexicals
7040
7041 =item New builtin methods
7042
7043 isa(CLASS), can(METHOD), VERSION( [NEED] )
7044
7045 =item TIEHANDLE now supported
7046
7047 TIEHANDLE classname, LIST, PRINT this, LIST, PRINTF this, LIST, READ this
7048 LIST, READLINE this, GETC this, DESTROY this
7049
7050 =item Malloc enhancements
7051
7052 -DPERL_EMERGENCY_SBRK, -DPACK_MALLOC, -DTWO_POT_OPTIMIZE
7053
7054 =item Miscellaneous efficiency enhancements
7055
7056 =back
7057
7058 =item Support for More Operating Systems
7059
7060 =over 4
7061
7062 =item Win32
7063
7064 =item Plan 9
7065
7066 =item QNX
7067
7068 =item AmigaOS
7069
7070 =back
7071
7072 =item Pragmata
7073
7074 use autouse MODULE => qw(sub1 sub2 sub3), use blib, use blib 'dir', use
7075 constant NAME => VALUE, use locale, use ops, use vmsish
7076
7077 =item Modules
7078
7079 =over 4
7080
7081 =item Required Updates
7082
7083 =item Installation directories
7084
7085 =item Module information summary
7086
7087 =item Fcntl
7088
7089 =item IO
7090
7091 =item Math::Complex
7092
7093 =item Math::Trig
7094
7095 =item DB_File
7096
7097 =item Net::Ping
7098
7099 =item Object-oriented overrides for builtin operators
7100
7101 =back
7102
7103 =item Utility Changes
7104
7105 =over 4
7106
7107 =item pod2html
7108
7109 Sends converted HTML to standard output
7110
7111 =item xsubpp
7112
7113 C<void> XSUBs now default to returning nothing
7114
7115 =back
7116
7117 =item C Language API Changes
7118
7119 C<gv_fetchmethod> and C<perl_call_sv>, C<perl_eval_pv>, Extended API for
7120 manipulating hashes
7121
7122 =item Documentation Changes
7123
7124 L<perldelta>, L<perlfaq>, L<perllocale>, L<perltoot>, L<perlapio>,
7125 L<perlmodlib>, L<perldebug>, L<perlsec>
7126
7127 =item New Diagnostics
7128
7129 "my" variable %s masks earlier declaration in same scope, %s argument is
7130 not a HASH element or slice, Allocation too large: %lx, Allocation too
7131 large, Applying %s to %s will act on scalar(%s), Attempt to free
7132 nonexistent shared string, Attempt to use reference as lvalue in substr,
7133 Bareword "%s" refers to nonexistent package, Can't redefine active sort
7134 subroutine %s, Can't use bareword ("%s") as %s ref while "strict refs" in
7135 use, Cannot resolve method `%s' overloading `%s' in package `%s', Constant
7136 subroutine %s redefined, Constant subroutine %s undefined, Copy method did
7137 not return a reference, Died, Exiting pseudo-block via %s, Identifier too
7138 long, Illegal character %s (carriage return), Illegal switch in PERL5OPT:
7139 %s, Integer overflow in hex number, Integer overflow in octal number,
7140 internal error: glob failed, Invalid conversion in %s: "%s", Invalid type
7141 in pack: '%s', Invalid type in unpack: '%s', Name "%s::%s" used only once:
7142 possible typo, Null picture in formline, Offset outside string, Out of
7143 memory!, Out of memory during request for %s, panic: frexp, Possible
7144 attempt to put comments in qw() list, Possible attempt to separate words
7145 with commas, Scalar value @%s{%s} better written as $%s{%s}, Stub found
7146 while resolving method `%s' overloading `%s' in %s, Too late for "B<-T>"
7147 option, untie attempted while %d inner references still exist, Unrecognized
7148 character %s, Unsupported function fork, Use of "$$<digit>" to mean
7149 "${$}<digit>" is deprecated, Value of %s can be "0"; test with defined(),
7150 Variable "%s" may be unavailable, Variable "%s" will not stay shared,
7151 Warning: something's wrong, Ill-formed logical name |%s| in prime_env_iter,
7152 Got an error from DosAllocMem, Malformed PERLLIB_PREFIX, PERL_SH_DIR too
7153 long, Process terminated by SIG%s
7154
7155 =item BUGS
7156
7157 =item SEE ALSO
7158
7159 =item HISTORY
7160
7161 =item The "Artistic License"
7162
7163 =over 4
7164
7165 =item Preamble
7166
7167 Package, Standard Version, Copyright Holder, You, Reasonable copying fee,
7168 Freely Available
7169
7170 =back
7171
7172 =back
7173
7174 =over 4
7175
7176 =item GNU GENERAL PUBLIC LICENSE
7177
7178 =over 4
7179
7180 =item The License Text
7181
7182 =back
7183
7184 =back
7185
7186 =head2 perlaix, README.aix - Perl version 5 on IBM Unix (AIX) systems
7187
7188 =over 4
7189
7190 =item DESCRIPTION
7191
7192 =over 4
7193
7194 =item Compiling Perl 5 on AIX
7195
7196 =item OS level
7197
7198 =item Building Dynamic Extensions on AIX
7199
7200 =item The IBM ANSI C Compiler
7201
7202 =item Using GNU's gcc for building perl
7203
7204 =item Using Large Files with Perl
7205
7206 =item Threaded Perl
7207
7208 =item 64-bit Perl
7209
7210 =item AIX 4.2 and extensions using C++ with statics
7211
7212 =back
7213
7214 =item AUTHOR
7215
7216 =item DATE
7217
7218 =back
7219
7220 =head2 perlapollo, README.apollo - Perl version 5 on Apollo DomainOS
7221
7222 =over 4
7223
7224 =item DESCRIPTION
7225
7226 =item AUTHOR
7227
7228 =back
7229
7230 =head2 perlamiga - Perl under Amiga OS
7231
7232 =over 4
7233
7234 =item NOTE
7235
7236 =item SYNOPSIS
7237
7238 =back
7239
7240 =over 4
7241
7242 =item DESCRIPTION
7243
7244 =over 4
7245
7246 =item Prerequisites for Compiling Perl on AmigaOS
7247
7248 B<Unix emulation for AmigaOS: ixemul.library>, B<Version of Amiga OS>
7249
7250 =item Starting Perl programs under AmigaOS
7251
7252 =item Shortcomings of Perl under AmigaOS
7253
7254 =back
7255
7256 =item INSTALLATION
7257
7258 =item Accessing documentation
7259
7260 =over 4
7261
7262 =item Manpages for Perl on AmigaOS
7263
7264 =item Perl HTML Documentation on AmigaOS
7265
7266 =item Perl GNU Info Files on AmigaOS
7267
7268 =item Perl LaTeX Documentation on AmigaOS
7269
7270 =back
7271
7272 =item BUILDING PERL ON AMIGAOS
7273
7274 =over 4
7275
7276 =item Build Prerequisites for Perl on AmigaOS
7277
7278 =item Getting the Perl Source for AmigaOS
7279
7280 =item Making Perl on AmigaOS
7281
7282 =item Testing Perl on AmigaOS
7283
7284 =item Installing the built Perl on AmigaOS
7285
7286 =back
7287
7288 =item PERL 5.8.0 BROKEN IN AMIGAOS
7289
7290 =item AUTHORS
7291
7292 =item SEE ALSO
7293
7294 =back
7295
7296 =head2 perlbeos, README.beos - Perl version 5 on BeOS
7297
7298 =over 4
7299
7300 =item DESCRIPTION
7301
7302 =over 4
7303
7304 =item General Issues with Perl on BeOS
7305
7306 =item BeOS Release-specific Notes
7307
7308 R4 x86, R4 PPC
7309
7310 =item Contact Information
7311
7312 =item Update 2002-05-30
7313
7314 =back
7315
7316 =back
7317
7318 =head2 perlbs2000, README.BS2000 - building and installing Perl for BS2000.
7319
7320 =over 4
7321
7322 =item SYNOPSIS
7323
7324 =item DESCRIPTION
7325
7326 =over 4
7327
7328 =item gzip on BS2000
7329
7330 =item bison on BS2000
7331
7332 =item Unpacking Perl Distribution on BS2000
7333
7334 =item Compiling Perl on BS2000
7335
7336 =item Testing Perl on BS2000
7337
7338 =item Installing Perl on BS2000
7339
7340 =item Using Perl in the Posix-Shell of BS2000
7341
7342 =item Using Perl in "native" BS2000
7343
7344 =item Floating point anomalies on BS2000
7345
7346 =back
7347
7348 =item AUTHORS
7349
7350 =item SEE ALSO
7351
7352 =over 4
7353
7354 =item Mailing list
7355
7356 =back
7357
7358 =item HISTORY
7359
7360 =back
7361
7362 =over 4
7363
7364 =item Name
7365
7366 =item Description
7367
7368 =item Build
7369
7370 =over 4
7371
7372 =item Tools & SDK
7373
7374 Microsoft Embedded Visual Tools, Microsoft Visual C++, Rainer Keuchel's
7375 celib-sources, Rainer Keuchel's console-sources
7376
7377 =item Make
7378
7379 go to ./wince subdirectory, edit file compile.bat, run    compile.bat, run 
7380   compile.bat dist
7381
7382 =back
7383
7384 =item Acknowledgements
7385
7386 =item AUTHORS
7387
7388 =back
7389
7390 =head2 perlcygwin, README.cygwin - Perl for Cygwin
7391
7392 =over 4
7393
7394 =item SYNOPSIS
7395
7396 =item PREREQUISITES FOR COMPILING PERL ON CYGWIN
7397
7398 =over 4
7399
7400 =item Cygwin = GNU+Cygnus+Windows (Don't leave UNIX without it)
7401
7402 =item Cygwin Configuration
7403
7404 C<PATH>, I<nroff>, Permissions
7405
7406 =back
7407
7408 =item CONFIGURE PERL ON CYGWIN
7409
7410 =over 4
7411
7412 =item Stripping Perl Binaries on Cygwin
7413
7414 =item Optional Libraries for Perl on Cygwin
7415
7416 C<-lcrypt>, C<-lgdbm> (C<use GDBM_File>), C<-ldb> (C<use DB_File>),
7417 C<-lcygipc> (C<use IPC::SysV>), C<-lutil>
7418
7419 =item Configure-time Options for Perl on Cygwin
7420
7421 C<-Uusedl>, C<-Uusemymalloc>, C<-Uuseperlio>, C<-Dusemultiplicity>,
7422 C<-Duse64bitint>, C<-Duselongdouble>, C<-Dusethreads>, C<-Duselargefiles>,
7423 C<-Dmksymlinks>
7424
7425 =item Suspicious Warnings on Cygwin
7426
7427 I<dlsym()>, Win9x and C<d_eofnblk>, Compiler/Preprocessor defines
7428
7429 =back
7430
7431 =item MAKE ON CYGWIN
7432
7433 =over 4
7434
7435 =item Warnings on Cygwin
7436
7437 =item ld2 on Cygwin
7438
7439 =back
7440
7441 =item TEST ON CYGWIN
7442
7443 =over 4
7444
7445 =item File Permissions on Cygwin
7446
7447 =item NDBM_File and ODBM_File do not work on FAT filesystems
7448
7449 =item fork() failures in io_* tests
7450
7451 =item Script Portability on Cygwin
7452
7453 Pathnames, Text/Binary, F<.exe>, chown(), Miscellaneous
7454
7455 =back
7456
7457 =item INSTALL PERL ON CYGWIN
7458
7459 =item MANIFEST ON CYGWIN
7460
7461 Documentation, Build, Configure, Make, Install, Tests, Compiled Perl
7462 Source, Compiled Module Source, Perl Modules/Scripts
7463
7464 =item BUGS ON CYGWIN
7465
7466 =item AUTHORS
7467
7468 =item HISTORY
7469
7470 =back
7471
7472 =head2 perldgux - Perl under DG/UX.
7473
7474 =over 4
7475
7476 =item SYNOPSIS
7477
7478 =back
7479
7480 =over 4
7481
7482 =item DESCRIPTION
7483
7484 =item BUILDING PERL ON DG/UX
7485
7486 =over 4
7487
7488 =item Non-threaded Perl on DG/UX
7489
7490 =item Threaded Perl on DG/UX
7491
7492 =item Testing Perl on DG/UX
7493
7494 =item Installing the built perl on DG/UX
7495
7496 =back
7497
7498 =item AUTHOR
7499
7500 =item SEE ALSO
7501
7502 =back
7503
7504 =head2 perldos - Perl under DOS, W31, W95.
7505
7506 =over 4
7507
7508 =item SYNOPSIS
7509
7510 =item DESCRIPTION
7511
7512 =over 4
7513
7514 =item Prerequisites for Compiling Perl on DOS
7515
7516 DJGPP, Pthreads
7517
7518 =item Shortcomings of Perl under DOS
7519
7520 =item Building Perl on DOS
7521
7522 =item Testing Perl on DOS
7523
7524 =item Installation of Perl on DOS
7525
7526 =back
7527
7528 =item BUILDING AND INSTALLING MODULES ON DOS
7529
7530 =over 4
7531
7532 =item Building Prerequisites for Perl on DOS
7533
7534 =item Unpacking CPAN Modules on DOS
7535
7536 =item Building Non-XS Modules on DOS
7537
7538 =item Building XS Modules on DOS
7539
7540 =back
7541
7542 =item AUTHOR
7543
7544 =item SEE ALSO
7545
7546 =back
7547
7548 =head2 perlepoc, README.epoc - Perl for EPOC
7549
7550 =over 4
7551
7552 =item SYNOPSIS
7553
7554 =item INTRODUCTION
7555
7556 =item INSTALLING PERL ON EPOC
7557
7558 =item STARTING PERL ON EPOC
7559
7560 =over 4
7561
7562 =item Editors on Epoc
7563
7564 =item Features of Perl on Epoc
7565
7566 =item Restrictions of Perl on Epoc
7567
7568 =item Compiling Perl 5 on the EPOC cross compiling environment
7569
7570 =back
7571
7572 =item SUPPORT STATUS OF PERL ON EPOC
7573
7574 =item AUTHOR
7575
7576 =item LAST UPDATE
7577
7578 =back
7579
7580 =head2 perlfreebsd, README.freebsd - Perl version 5 on FreeBSD systems
7581
7582 =over 4
7583
7584 =item DESCRIPTION
7585
7586 =over 4
7587
7588 =item FreeBSD core dumps from readdir_r with ithreads
7589
7590 =item $^X doesn't always contain a full path in FreeBSD
7591
7592 =item Perl will no longer be part of "base FreeBSD"
7593
7594 =back
7595
7596 =item AUTHOR
7597
7598 =back
7599
7600 =head2 perlhpux, README.hpux - Perl version 5 on Hewlett-Packard Unix
7601 (HP-UX) systems
7602
7603 =over 4
7604
7605 =item DESCRIPTION
7606
7607 =over 4
7608
7609 =item Using perl as shipped with HP-UX
7610
7611 =item Using perl from HP's porting centre
7612
7613 =item Compiling Perl 5 on HP-UX
7614
7615 =item PA-RISC
7616
7617 =item PA-RISC 1.0
7618
7619 =item PA-RISC 1.1
7620
7621 =item PA-RISC 2.0
7622
7623 =item Itanium
7624
7625 =item Portability Between PA-RISC Versions
7626
7627 =item Itanium Processor Family and HP-UX
7628
7629 =item Building Dynamic Extensions on HP-UX
7630
7631 =item The HP ANSI C Compiler
7632
7633 =item The GNU C Compiler
7634
7635 =item Using Large Files with Perl on HP-UX
7636
7637 =item Threaded Perl on HP-UX
7638
7639 =item 64-bit Perl on HP-UX
7640
7641 =item Oracle on HP-UX
7642
7643 =item GDBM and Threads on HP-UX
7644
7645 =item NFS filesystems and utime(2) on HP-UX
7646
7647 =item perl -P and // and HP-UX
7648
7649 =item HP-UX Kernel Parameters (maxdsiz) for Compiling Perl
7650
7651 =back
7652
7653 =item nss_delete core dump from op/pwent or op/grent
7654
7655 =item AUTHOR
7656
7657 =item DATE
7658
7659 =back
7660
7661 =head2 perlhurd, README.hurd - Perl version 5 on Hurd
7662
7663 =over 4
7664
7665 =item DESCRIPTION
7666
7667 =over 4
7668
7669 =item Known Problems with Perl on Hurd 
7670
7671 =back
7672
7673 =item AUTHOR
7674
7675 =back
7676
7677 =head2 perlirix, README.irix - Perl version 5 on Irix systems
7678
7679 =over 4
7680
7681 =item DESCRIPTION
7682
7683 =over 4
7684
7685 =item Building 32-bit Perl in Irix
7686
7687 =item Building 64-bit Perl in Irix
7688
7689 =item About Compiler Versions of Irix
7690
7691 =item Linker Problems in Irix
7692
7693 =item Malloc in Irix
7694
7695 =item Building with threads in Irix
7696
7697 =item Irix 5.3
7698
7699 =back
7700
7701 =item AUTHOR
7702
7703 =back
7704
7705 =head2 perlmachten, README.machten - Perl version 5 on Power MachTen
7706 systems
7707
7708 =over 4
7709
7710 =item DESCRIPTION
7711
7712 =over 4
7713
7714 =item Compiling Perl 5 on MachTen
7715
7716 =item Failures during C<make test> on MachTen
7717
7718 op/lexassign.t, pragma/warnings.t
7719
7720 =item Building external modules on MachTen
7721
7722 =back
7723
7724 =item AUTHOR
7725
7726 =item DATE
7727
7728 =back
7729
7730 =head2 perlmacos, README.macos - Perl under Mac OS (Classic)
7731
7732 =over 4
7733
7734 =item SYNOPSIS
7735
7736 =item DESCRIPTION
7737
7738 =item AUTHOR
7739
7740 =item DATE
7741
7742 =back
7743
7744 =head2 perlmint, README.mint - Perl version 5 on Atari MiNT
7745
7746 =over 4
7747
7748 =item DESCRIPTION
7749
7750 =item Known problems with Perl on MiNT
7751
7752 =item AUTHOR
7753
7754 =back
7755
7756 =head2 perlmpeix, README.mpeix - Perl/iX for HP e3000 MPE
7757
7758 =over 4
7759
7760 =item SYNOPSIS
7761
7762 =item NOTE
7763
7764 =item Binary distribution from HP
7765
7766 =item What's New in Perl for MPE/iX
7767
7768 =item Welcome to Perl/iX
7769
7770 =item System Requirements for Perl/iX
7771
7772 =item How to Obtain Perl/iX
7773
7774 =item Perl/iX Distribution Contents Highlights
7775
7776 README, INSTALL, LIBSHP3K, PERL, .cpan/, lib/, man/,
7777 public_html/feedback.cgi, src/perl-5.6.0-mpe
7778
7779 =item How to Compile Perl/iX
7780
7781  4,  6
7782
7783 =item Getting Started with Perl/iX
7784
7785 =item MPE/iX Implementation Considerations
7786
7787 =item Known Perl/iX Bugs Under Investigation
7788
7789 =item Perl/iX To-Do List
7790
7791 =item Perl/iX Change History
7792
7793 =item AUTHOR
7794
7795 =item Name
7796
7797 =item Description
7798
7799 =item Build
7800
7801 =over 4
7802
7803 =item Tools & SDK
7804
7805 =item Setup
7806
7807 SetNWBld.bat, Buildtype.bat
7808
7809 =item Make
7810
7811 =item Interpreter
7812
7813 =item Extensions
7814
7815 =back
7816
7817 =item Install
7818
7819 =item Build new extensions
7820
7821 =item Acknowledgements
7822
7823 =item Authors
7824
7825 =item Date
7826
7827 =back
7828
7829 =head2 perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
7830
7831 =over 4
7832
7833 =item SYNOPSIS
7834
7835 =back
7836
7837 =over 4
7838
7839 =item DESCRIPTION
7840
7841 =over 4
7842
7843 =item Target
7844
7845 =item Other OSes
7846
7847 =item Prerequisites
7848
7849 EMX, RSX, HPFS, pdksh
7850
7851 =item Starting Perl programs under OS/2 (and DOS and...)
7852
7853 =item Starting OS/2 (and DOS) programs under Perl
7854
7855 =back
7856
7857 =item Frequently asked questions
7858
7859 =over 4
7860
7861 =item "It does not work"
7862
7863 =item I cannot run external programs
7864
7865 =item I cannot embed perl into my program, or use F<perl.dll> from my
7866 program. 
7867
7868 Is your program EMX-compiled with C<-Zmt -Zcrtdll>?, Did you use
7869 L<ExtUtils::Embed>?
7870
7871 =item C<``> and pipe-C<open> do not work under DOS.
7872
7873 =item Cannot start C<find.exe "pattern" file>
7874
7875 =back
7876
7877 =item INSTALLATION
7878
7879 =over 4
7880
7881 =item Automatic binary installation
7882
7883 C<PERL_BADLANG>, C<PERL_BADFREE>, F<Config.pm>
7884
7885 =item Manual binary installation
7886
7887 Perl VIO and PM executables (dynamically linked), Perl_ VIO executable
7888 (statically linked), Executables for Perl utilities, Main Perl library,
7889 Additional Perl modules, Tools to compile Perl modules, Manpages for Perl
7890 and utilities, Manpages for Perl modules, Source for Perl documentation,
7891 Perl manual in F<.INF> format, Pdksh
7892
7893 =item B<Warning>
7894
7895 =back
7896
7897 =item Accessing documentation
7898
7899 =over 4
7900
7901 =item OS/2 F<.INF> file
7902
7903 =item Plain text
7904
7905 =item Manpages
7906
7907 =item HTML
7908
7909 =item GNU C<info> files
7910
7911 =item F<PDF> files
7912
7913 =item C<LaTeX> docs
7914
7915 =back
7916
7917 =item BUILD
7918
7919 =over 4
7920
7921 =item The short story
7922
7923 =item Prerequisites
7924
7925 =item Getting perl source
7926
7927 =item Application of the patches
7928
7929 =item Hand-editing
7930
7931 =item Making
7932
7933 =item Testing
7934
7935 A lot of C<bad free>, Process terminated by SIGTERM/SIGINT, F<op/fs.t>,
7936 F<op/stat.t>
7937
7938 =item Installing the built perl
7939
7940 =item C<a.out>-style build
7941
7942 =back
7943
7944 =item Build FAQ
7945
7946 =over 4
7947
7948 =item Some C</> became C<\> in pdksh.
7949
7950 =item C<'errno'> - unresolved external
7951
7952 =item Problems with tr or sed
7953
7954 =item Some problem (forget which ;-)
7955
7956 =item Library ... not found
7957
7958 =item Segfault in make
7959
7960 =item op/sprintf test failure
7961
7962 =back
7963
7964 =item Specific (mis)features of OS/2 port
7965
7966 =over 4
7967
7968 =item C<setpriority>, C<getpriority>
7969
7970 =item C<system()>
7971
7972 =item C<extproc> on the first line
7973
7974 =item Additional modules:
7975
7976 =item Prebuilt methods:
7977
7978 C<File::Copy::syscopy>, C<DynaLoader::mod2fname>,  C<Cwd::current_drive()>,
7979  C<Cwd::sys_chdir(name)>,  C<Cwd::change_drive(name)>, 
7980 C<Cwd::sys_is_absolute(name)>,  C<Cwd::sys_is_rooted(name)>, 
7981 C<Cwd::sys_is_relative(name)>,  C<Cwd::sys_cwd(name)>, 
7982 C<Cwd::sys_abspath(name, dir)>,  C<Cwd::extLibpath([type])>, 
7983 C<Cwd::extLibpath_set( path [, type ] )>,
7984 C<OS2::Error(do_harderror,do_exception)>, C<OS2::Errors2Drive(drive)>,
7985 OS2::SysInfo(), OS2::BootDrive(), C<OS2::MorphPM(serve)>,
7986 C<OS2::UnMorphPM(serve)>, C<OS2::Serve_Messages(force)>,
7987 C<OS2::Process_Messages(force [, cnt])>, C<OS2::_control87(new,mask)>,
7988 OS2::get_control87(), C<OS2::set_control87_em(new=MCW_EM,mask=MCW_EM)>,
7989 C<OS2::DLLname([how [, \&xsub]])>
7990
7991 =item Prebuilt variables:
7992
7993 $OS2::emx_rev, $OS2::emx_env, $OS2::os_ver, $OS2::is_aout, $OS2::can_fork,
7994 $OS2::nsyserror
7995
7996 =item Misfeatures
7997
7998 =item Modifications
7999
8000 C<popen>, C<tmpnam>, C<tmpfile>, C<ctermid>, C<stat>, C<mkdir>, C<rmdir>,
8001 C<flock>
8002
8003 =item Identifying DLLs
8004
8005 =item Centralized management of resources
8006
8007 C<HAB>, C<HMQ>, Treating errors reported by OS/2 API,
8008 C<CheckOSError(expr)>, C<CheckWinError(expr)>, C<SaveWinError(expr)>,
8009 C<SaveCroakWinError(expr,die,name1,name2)>, C<WinError_2_Perl_rc>,
8010 C<FillWinError>, C<FillOSError(rc)>, Loading DLLs and ordinals in DLLs
8011
8012 =back
8013
8014 =item Perl flavors
8015
8016 =over 4
8017
8018 =item F<perl.exe>
8019
8020 =item F<perl_.exe>
8021
8022 =item F<perl__.exe>
8023
8024 =item F<perl___.exe>
8025
8026 =item Why strange names?
8027
8028 =item Why dynamic linking?
8029
8030 =item Why chimera build?
8031
8032 =back
8033
8034 =item ENVIRONMENT
8035
8036 =over 4
8037
8038 =item C<PERLLIB_PREFIX>
8039
8040 =item C<PERL_BADLANG>
8041
8042 =item C<PERL_BADFREE>
8043
8044 =item C<PERL_SH_DIR>
8045
8046 =item C<USE_PERL_FLOCK>
8047
8048 =item C<TMP> or C<TEMP>
8049
8050 =back
8051
8052 =item Evolution
8053
8054 =over 4
8055
8056 =item Text-mode filehandles
8057
8058 =item Priorities
8059
8060 =item DLL name mangling: pre 5.6.2
8061
8062 =item DLL name mangling: 5.6.2 and beyond
8063
8064 Global DLLs, specific DLLs, C<BEGINLIBPATH> and C<ENDLIBPATH>, F<.> from
8065 C<LIBPATH>
8066
8067 =item DLL forwarder generation
8068
8069 =item Threading
8070
8071 =item Calls to external programs
8072
8073 =item Memory allocation
8074
8075 =item Threads
8076
8077 C<COND_WAIT>, F<os2.c>
8078
8079 =back
8080
8081 =item BUGS
8082
8083 =back
8084
8085 =over 4
8086
8087 =item AUTHOR
8088
8089 =item SEE ALSO
8090
8091 =back
8092
8093 =head2 perlos390, README.os390 - building and installing Perl for OS/390
8094 and z/OS
8095
8096 =over 4
8097
8098 =item SYNOPSIS
8099
8100 =item DESCRIPTION
8101
8102 =over 4
8103
8104 =item Tools
8105
8106 =item Unpacking Perl distribution on OS/390
8107
8108 =item Setup and utilities for Perl on OS/390
8109
8110 =item Configure Perl on OS/390
8111
8112 =item Build, Test, Install Perl on OS/390
8113
8114 =item Build Anomalies with Perl on OS/390
8115
8116 =item Testing Anomalies with Perl on OS/390
8117
8118 =item Installation Anomalies with Perl on OS/390
8119
8120 =item Usage Hints for Perl on OS/390
8121
8122 =item Floating Point Anomalies with Perl on OS/390
8123
8124 =item Modules and Extensions for Perl on OS/390
8125
8126 =back
8127
8128 =item AUTHORS
8129
8130 =item SEE ALSO
8131
8132 =over 4
8133
8134 =item Mailing list for Perl on OS/390
8135
8136 =back
8137
8138 =item HISTORY
8139
8140 =back
8141
8142 =head2 perlos400, README.os400 - Perl version 5 on OS/400
8143
8144 =over 4
8145
8146 =item DESCRIPTION
8147
8148 =over 4
8149
8150 =item Compiling Perl for OS/400 PASE
8151
8152 =item Installing Perl in OS/400 PASE
8153
8154 =item Using Perl in OS/400 PASE
8155
8156 =item Known Problems
8157
8158 =item Perl on ILE
8159
8160 =back
8161
8162 =item AUTHORS
8163
8164 =back
8165
8166 =head2 perlqnx, README.qnx - Perl version 5 on QNX
8167
8168 =over 4
8169
8170 =item DESCRIPTION
8171
8172 =over 4
8173
8174 =item Required Software for Compiling Perl on QNX4
8175
8176 /bin/sh, ar, nm, cpp, make
8177
8178 =item Outstanding Issues with Perl on QNX4
8179
8180 =item QNX auxiliary files
8181
8182 qnx/ar, qnx/cpp
8183
8184 =item Outstanding issues with perl under QNX6
8185
8186 =back
8187
8188 =item AUTHOR
8189
8190 =back
8191
8192 =head2 perlplan9 - Plan 9-specific documentation for Perl
8193
8194 =over 4
8195
8196 =item DESCRIPTION
8197
8198 =over 4
8199
8200 =item Invoking Perl
8201
8202 =item What's in Plan 9 Perl
8203
8204 =item What's not in Plan 9 Perl
8205
8206 =item Perl5 Functions not currently supported in Plan 9 Perl
8207
8208 =item Signals in Plan 9 Perl
8209
8210 =back
8211
8212 =item COMPILING AND INSTALLING PERL ON PLAN 9
8213
8214 =over 4
8215
8216 =item Installing Perl Documentation on Plan 9
8217
8218 =back
8219
8220 =item BUGS
8221
8222 =item Revision date
8223
8224 =item AUTHOR
8225
8226 =back
8227
8228 =head2 perlsolaris, README.solaris - Perl version 5 on Solaris systems
8229
8230 =over 4
8231
8232 =item DESCRIPTION
8233
8234 =over 4
8235
8236 =item Solaris Version Numbers.
8237
8238 =back
8239
8240 =item RESOURCES
8241
8242 Solaris FAQ, Precompiled Binaries, Solaris Documentation
8243
8244 =item SETTING UP
8245
8246 =over 4
8247
8248 =item File Extraction Problems on Solaris.
8249
8250 =item Compiler and Related Tools on Solaris.
8251
8252 =item Environment for Compiling Perl on Solaris
8253
8254 =back
8255
8256 =item RUN CONFIGURE.
8257
8258 =over 4
8259
8260 =item 64-bit Issues with Perl on Solaris.
8261
8262 =item Threads in Perl on Solaris.
8263
8264 =item Malloc Issues with Perl on Solaris.
8265
8266 =back
8267
8268 =item MAKE PROBLEMS.
8269
8270 Dynamic Loading Problems With GNU as and GNU ld, ld.so.1: ./perl: fatal:
8271 relocation error:, dlopen: stub interception failed, #error "No
8272 DATAMODEL_NATIVE specified", sh: ar: not found
8273
8274 =item MAKE TEST
8275
8276 =over 4
8277
8278 =item op/stat.t test 4 in Solaris
8279
8280 =item nss_delete core dump from op/pwent or op/grent
8281
8282 =back
8283
8284 =item PREBUILT BINARIES OF PERL FOR SOLARIS.
8285
8286 =item RUNTIME ISSUES FOR PERL ON SOLARIS.
8287
8288 =over 4
8289
8290 =item Limits on Numbers of Open Files on Solaris.
8291
8292 =back
8293
8294 =item SOLARIS-SPECIFIC MODULES.
8295
8296 =item SOLARIS-SPECIFIC PROBLEMS WITH MODULES.
8297
8298 =over 4
8299
8300 =item Proc::ProcessTable on Solaris
8301
8302 =item BSD::Resource on Solaris
8303
8304 =item Net::SSLeay on Solaris
8305
8306 =back
8307
8308 =item AUTHOR
8309
8310 =item LAST MODIFIED
8311
8312 =back
8313
8314 =head2 perltru64, README.tru64 - Perl version 5 on Tru64 (formerly known as
8315 Digital UNIX formerly known as DEC OSF/1) systems
8316
8317 =over 4
8318
8319 =item DESCRIPTION
8320
8321 =over 4
8322
8323 =item Compiling Perl 5 on Tru64
8324
8325 =item Using Large Files with Perl on Tru64
8326
8327 =item Threaded Perl on Tru64
8328
8329 =item Long Doubles on Tru64
8330
8331 =item DB_File tests failing on Tru64
8332
8333 =item 64-bit Perl on Tru64
8334
8335 =item Warnings about floating-point overflow when compiling Perl on Tru64
8336
8337 =back
8338
8339 =item Testing Perl on Tru64
8340
8341 =item ext/ODBM_File/odbm Test Failing With Static Builds
8342
8343 =item Perl Fails Because Of Unresolved Symbol sockatmark
8344
8345 =item AUTHOR
8346
8347 =back
8348
8349 =head2 perluts - Perl under UTS
8350
8351 =over 4
8352
8353 =item SYNOPSIS
8354
8355 =item DESCRIPTION
8356
8357 =item BUILDING PERL ON UTS
8358
8359 =item Installing the built perl on UTS
8360
8361 =item AUTHOR
8362
8363 =back
8364
8365 =head2 perlvmesa, README.vmesa - building and installing Perl for VM/ESA.
8366
8367 =over 4
8368
8369 =item SYNOPSIS
8370
8371 =item DESCRIPTION
8372
8373 =over 4
8374
8375 =item Unpacking Perl Distribution on VM/ESA
8376
8377 =item Setup Perl and utilities on VM/ESA
8378
8379 =item Configure Perl on VM/ESA
8380
8381 =item Testing Anomalies of Perl on VM/ESA
8382
8383 =item Usage Hints for Perl on VM/ESA
8384
8385 =back
8386
8387 =item AUTHORS
8388
8389 =item SEE ALSO
8390
8391 =over 4
8392
8393 =item Mailing list for Perl on VM/ESA
8394
8395 =back
8396
8397 =back
8398
8399 =head2 perlvms - VMS-specific documentation for Perl
8400
8401 =over 4
8402
8403 =item DESCRIPTION
8404
8405 =item Installation
8406
8407 =item Organization of Perl Images
8408
8409 =over 4
8410
8411 =item Core Images
8412
8413 =item Perl Extensions
8414
8415 =item Installing static extensions
8416
8417 =item Installing dynamic extensions
8418
8419 =back
8420
8421 =item File specifications
8422
8423 =over 4
8424
8425 =item Syntax
8426
8427 =item Wildcard expansion
8428
8429 =item Pipes
8430
8431 =back
8432
8433 =item PERL5LIB and PERLLIB
8434
8435 =item Command line
8436
8437 =over 4
8438
8439 =item I/O redirection and backgrounding
8440
8441 =item Command line switches
8442
8443 -i, -S, -u
8444
8445 =back
8446
8447 =item Perl functions
8448
8449 File tests, backticks, binmode FILEHANDLE, crypt PLAINTEXT, USER, dump,
8450 exec LIST, fork, getpwent, getpwnam, getpwuid, gmtime, kill, qx//, select
8451 (system call), stat EXPR, system LIST, time, times, unlink LIST, utime
8452 LIST, waitpid PID,FLAGS
8453
8454 =item Perl variables
8455
8456 %ENV, CRTL_ENV, CLISYM_[LOCAL], Any other string, $!, $^E, $?, $|
8457
8458 =item Standard modules with VMS-specific differences
8459
8460 =over 4
8461
8462 =item SDBM_File
8463
8464 =back
8465
8466 =item Revision date
8467
8468 =item AUTHOR
8469
8470 =back
8471
8472 =head2 perlvos, README.vos - Perl for Stratus VOS
8473
8474 =over 4
8475
8476 =item SYNOPSIS
8477
8478 =item BUILDING PERL FOR VOS
8479
8480 =item INSTALLING PERL IN VOS
8481
8482 =item USING PERL IN VOS
8483
8484 =over 4
8485
8486 =item Restrictions of Perl on VOS
8487
8488 =item Handling of underflow and overflow
8489
8490 =back
8491
8492 =item TEST STATUS
8493
8494 =item SUPPORT STATUS
8495
8496 =item AUTHOR
8497
8498 =item LAST UPDATE
8499
8500 =back
8501
8502 =head2 perlwin32 - Perl under Windows
8503
8504 =over 4
8505
8506 =item SYNOPSIS
8507
8508 =item DESCRIPTION
8509
8510 =over 4
8511
8512 =item Setting Up Perl on Win32
8513
8514 Make, Command Shell, Borland C++, Microsoft Visual C++, Microsoft Platform
8515 SDK 64-bit Compiler, MinGW32 with gcc, MinGW release 1
8516
8517 =item Building
8518
8519 =item Testing Perl on Win32
8520
8521 =item Installation of Perl on Win32
8522
8523 =item Usage Hints for Perl on Win32
8524
8525 Environment Variables, File Globbing, Using perl from the command line,
8526 Building Extensions, Command-line Wildcard Expansion, Win32 Specific
8527 Extensions, Notes on 64-bit Windows
8528
8529 =item Running Perl Scripts
8530
8531 Miscellaneous Things
8532
8533 =back
8534
8535 =item BUGS AND CAVEATS
8536
8537 =item AUTHORS
8538
8539 Gary Ng E<lt>71564.1743@CompuServe.COME<gt>, Gurusamy Sarathy
8540 E<lt>gsar@activestate.comE<gt>, Nick Ing-Simmons
8541 E<lt>nick@ing-simmons.netE<gt>
8542
8543 =item SEE ALSO
8544
8545 =item HISTORY
8546
8547 =back
8548
8549 =head1 PRAGMA DOCUMENTATION
8550
8551 =head2 attrs - set/get attributes of a subroutine (deprecated)
8552
8553 =over 4
8554
8555 =item SYNOPSIS
8556
8557 =item DESCRIPTION
8558
8559 method, locked
8560
8561 =back
8562
8563 =head2 re - Perl pragma to alter regular expression behaviour
8564
8565 =over 4
8566
8567 =item SYNOPSIS
8568
8569 =item DESCRIPTION
8570
8571 =back
8572
8573 =head2 threadshared::shared, threads::shared - Perl extension for sharing
8574 data structures between threads
8575
8576 =over 4
8577
8578 =item SYNOPSIS
8579
8580 =item DESCRIPTION
8581
8582 =item EXPORT
8583
8584 =item FUNCTIONS
8585
8586 share VARIABLE, lock VARIABLE, cond_wait VARIABLE, cond_signal VARIABLE,
8587 cond_broadcast VARIABLE
8588
8589 =item NOTES
8590
8591 =item BUGS
8592
8593 =item AUTHOR
8594
8595 =item SEE ALSO
8596
8597 =back
8598
8599 =head2 threads - Perl extension allowing use of interpreter based threads
8600 from perl
8601
8602 =over 4
8603
8604 =item SYNOPSIS
8605
8606 =item DESCRIPTION
8607
8608 $thread = threads->create(function, LIST), $thread->join, $thread->detach,
8609 threads->self, $thread->tid, threads->object( tid ), threads->yield();,
8610 threads->list();, async BLOCK;
8611
8612 =item WARNINGS
8613
8614 A thread exited while %d other threads were still running
8615
8616 =item TODO
8617
8618 =item BUGS
8619
8620 Parent-Child threads, Returning objects, Creating threads inside BEGIN
8621 blocks, PERL_OLD_SIGNALS are not threadsafe, will not be
8622
8623 =item AUTHOR and COPYRIGHT
8624
8625 =item SEE ALSO
8626
8627 =back
8628
8629 =head2 assertions - selects assertions
8630
8631 =over 4
8632
8633 =item SYNOPSIS
8634
8635 =item ABSTRACT
8636
8637 =item DESCRIPTION
8638
8639 =over 4
8640
8641 =item EXPORT
8642
8643 =back
8644
8645 =item SEE ALSO
8646
8647 =item AUTHOR
8648
8649 =item COPYRIGHT AND LICENSE
8650
8651 =back
8652
8653 =head2 assertions::activate - assertions activation
8654
8655 =over 4
8656
8657 =item SYNOPSIS
8658
8659 =item ABSTRACT
8660
8661 =item DESCRIPTION
8662
8663 =over 4
8664
8665 =item EXPORT
8666
8667 =back
8668
8669 =item SEE ALSO
8670
8671 =item AUTHOR
8672
8673 =item COPYRIGHT AND LICENSE
8674
8675 =back
8676
8677 =head2 attributes - get/set subroutine or variable attributes
8678
8679 =over 4
8680
8681 =item SYNOPSIS
8682
8683 =item DESCRIPTION
8684
8685 =over 4
8686
8687 =item Built-in Attributes
8688
8689 locked, method, lvalue
8690
8691 =item Available Subroutines
8692
8693 get, reftype
8694
8695 =item Package-specific Attribute Handling
8696
8697 FETCH_I<type>_ATTRIBUTES, MODIFY_I<type>_ATTRIBUTES
8698
8699 =item Syntax of Attribute Lists
8700
8701 =back
8702
8703 =item EXPORTS
8704
8705 =over 4
8706
8707 =item Default exports
8708
8709 =item Available exports
8710
8711 =item Export tags defined
8712
8713 =back
8714
8715 =item EXAMPLES
8716
8717 =item SEE ALSO
8718
8719 =back
8720
8721 =head2 attrs - set/get attributes of a subroutine (deprecated)
8722
8723 =over 4
8724
8725 =item SYNOPSIS
8726
8727 =item DESCRIPTION
8728
8729 method, locked
8730
8731 =back
8732
8733 =head2 autouse - postpone load of modules until a function is used
8734
8735 =over 4
8736
8737 =item SYNOPSIS
8738
8739 =item DESCRIPTION
8740
8741 =item WARNING
8742
8743 =item AUTHOR
8744
8745 =item SEE ALSO
8746
8747 =back
8748
8749 =head2 base - Establish IS-A relationship with base class at compile time
8750
8751 =over 4
8752
8753 =item SYNOPSIS
8754
8755 =item DESCRIPTION
8756
8757 =item HISTORY
8758
8759 =item SEE ALSO
8760
8761 =back
8762
8763 =head2 bigint - Transparent BigInteger support for Perl
8764
8765 =over 4
8766
8767 =item SYNOPSIS
8768
8769 =item DESCRIPTION
8770
8771 =over 4
8772
8773 =item OPTIONS
8774
8775 a or accuracy, p or precision, t or trace, l or lib, v or version
8776
8777 =item MATH LIBRARY
8778
8779 =item INTERNAL FORMAT
8780
8781 =item SIGN
8782
8783 =item METHODS
8784
8785 =back
8786
8787 =item MODULES USED
8788
8789 =item EXAMPLES
8790
8791 =item LICENSE
8792
8793 =item SEE ALSO
8794
8795 =item AUTHORS
8796
8797 =back
8798
8799 =head2 bignum - Transparent BigNumber support for Perl
8800
8801 =over 4
8802
8803 =item SYNOPSIS
8804
8805 =item DESCRIPTION
8806
8807 =over 4
8808
8809 =item OPTIONS
8810
8811 a or accuracy, p or precision, t or trace, l or lib, v or version
8812
8813 =item METHODS
8814
8815 inf(), NaN(), upgrade()
8816
8817 =item MATH LIBRARY
8818
8819 =item INTERNAL FORMAT
8820
8821 =item SIGN
8822
8823 =back
8824
8825 =item MODULES USED
8826
8827 =item EXAMPLES
8828
8829 =item LICENSE
8830
8831 =item SEE ALSO
8832
8833 =item AUTHORS
8834
8835 =back
8836
8837 =head2 bigrat - Transparent BigNumber/BigRationale support for Perl
8838
8839 =over 4
8840
8841 =item SYNOPSIS
8842
8843 =item DESCRIPTION
8844
8845 =over 4
8846
8847 =item MODULES USED
8848
8849 =item MATH LIBRARY
8850
8851 =item SIGN
8852
8853 =item METHODS
8854
8855 =back
8856
8857 =item EXAMPLES
8858
8859         perl -Mbigrat -le 'print sqrt(33)'
8860         perl -Mbigrat -le 'print 2*255'
8861         perl -Mbigrat -le 'print 4.5+2*255'
8862         perl -Mbigrat -le 'print 3/7 + 5/7 + 8/3'       
8863         perl -Mbigrat -le 'print 12->is_odd()';
8864
8865 =item LICENSE
8866
8867 =item SEE ALSO
8868
8869 =item AUTHORS
8870
8871 =back
8872
8873 =head2 blib - Use MakeMaker's uninstalled version of a package
8874
8875 =over 4
8876
8877 =item SYNOPSIS
8878
8879 =item DESCRIPTION
8880
8881 =item BUGS
8882
8883 =item AUTHOR
8884
8885 =back
8886
8887 =head2 bytes - Perl pragma to force byte semantics rather than character
8888 semantics
8889
8890 =over 4
8891
8892 =item SYNOPSIS
8893
8894 =item DESCRIPTION
8895
8896 =item SEE ALSO
8897
8898 =back
8899
8900 =head2 charnames - define character names for C<\N{named}> string literal
8901 escapes
8902
8903 =over 4
8904
8905 =item SYNOPSIS
8906
8907 =item DESCRIPTION
8908
8909 =item CUSTOM TRANSLATORS
8910
8911 =item CUSTOM ALIASES
8912
8913 =over 4
8914
8915 =item Anonymous hashes
8916
8917 =item Alias file
8918
8919 =item Alias shortcut
8920
8921 =back
8922
8923 =item charnames::viacode(code)
8924
8925 =item charnames::vianame(name)
8926
8927 =item ALIASES
8928
8929 =item ILLEGAL CHARACTERS
8930
8931 =item BUGS
8932
8933 =back
8934
8935 =head2 constant - Perl pragma to declare constants
8936
8937 =over 4
8938
8939 =item SYNOPSIS
8940
8941 =item DESCRIPTION
8942
8943 =item NOTES
8944
8945 =over 4
8946
8947 =item List constants
8948
8949 =item Defining multiple constants at once
8950
8951 =item Magic constants
8952
8953 =back
8954
8955 =item TECHNICAL NOTES
8956
8957 =item BUGS
8958
8959 =item AUTHOR
8960
8961 =item COPYRIGHT
8962
8963 =back
8964
8965 =head2 diagnostics - Perl compiler pragma to force verbose warning
8966 diagnostics
8967
8968 =over 4
8969
8970 =item SYNOPSIS
8971
8972 =item DESCRIPTION
8973
8974 =over 4
8975
8976 =item The C<diagnostics> Pragma
8977
8978 =item The I<splain> Program
8979
8980 =back
8981
8982 =item EXAMPLES
8983
8984 =item INTERNALS
8985
8986 =item BUGS
8987
8988 =item AUTHOR
8989
8990 =back
8991
8992 =head2 encoding - allows you to write your script in non-ascii or non-utf8
8993
8994 =over 4
8995
8996 =item SYNOPSIS
8997
8998 =item ABSTRACT
8999
9000 =over 4
9001
9002 =item Literal Conversions
9003
9004 =item PerlIO layers for C<STD(IN|OUT)>
9005
9006 =back
9007
9008 =item FEATURES THAT REQUIRE 5.8.1
9009
9010 "NON-EUC" doublebyte encodings, tr//, DATA pseudo-filehandle
9011
9012 =item USAGE
9013
9014 use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
9015 I<ENCNAME_IN> ...] ;, use encoding I<ENCNAME> Filter=E<gt>1;, no encoding;
9016
9017 =item The Filter Option
9018
9019 =over 4
9020
9021 =item Filter-related changes at Encode version 1.87
9022
9023 =back
9024
9025 =item CAVEATS
9026
9027 =over 4
9028
9029 =item NOT SCOPED
9030
9031 =item DO NOT MIX MULTIPLE ENCODINGS
9032
9033 =item tr/// with ranges
9034
9035 Legend of characters above
9036
9037 =back
9038
9039 =item EXAMPLE - Greekperl
9040
9041 =item KNOWN PROBLEMS
9042
9043 literals in regex that are longer than 127 bytes, EBCDIC, format
9044
9045 =item HISTORY
9046
9047 =item SEE ALSO
9048
9049 =back
9050
9051 =head2 fields - compile-time class fields
9052
9053 =over 4
9054
9055 =item SYNOPSIS
9056
9057 =item DESCRIPTION
9058
9059 new, phash
9060
9061 =item SEE ALSO
9062
9063 =back
9064
9065 =head2 filetest - Perl pragma to control the filetest permission operators
9066
9067 =over 4
9068
9069 =item SYNOPSIS
9070
9071 =item DESCRIPTION
9072
9073 =over 4
9074
9075 =item subpragma access
9076
9077 =back
9078
9079 =back
9080
9081 =head2 if - C<use> a Perl module if a condition holds
9082
9083 =over 4
9084
9085 =item SYNOPSIS
9086
9087 =item DESCRIPTION
9088
9089 =item BUGS
9090
9091 =item AUTHOR
9092
9093 =back
9094
9095 =head2 integer - Perl pragma to use integer arithmetic instead of floating
9096 point
9097
9098 =over 4
9099
9100 =item SYNOPSIS
9101
9102 =item DESCRIPTION
9103
9104 =back
9105
9106 =head2 less - perl pragma to request less of something from the compiler
9107
9108 =over 4
9109
9110 =item SYNOPSIS
9111
9112 =item DESCRIPTION
9113
9114 =back
9115
9116 =head2 lib - manipulate @INC at compile time
9117
9118 =over 4
9119
9120 =item SYNOPSIS
9121
9122 =item DESCRIPTION
9123
9124 =over 4
9125
9126 =item Adding directories to @INC
9127
9128 =item Deleting directories from @INC
9129
9130 =item Restoring original @INC
9131
9132 =back
9133
9134 =item CAVEATS
9135
9136 =item NOTES
9137
9138 =item SEE ALSO
9139
9140 =item AUTHOR
9141
9142 =back
9143
9144 =head2 locale - Perl pragma to use and avoid POSIX locales for built-in
9145 operations
9146
9147 =over 4
9148
9149 =item SYNOPSIS
9150
9151 =item DESCRIPTION
9152
9153 =back
9154
9155 =head2 open - perl pragma to set default PerlIO layers for input and output
9156
9157 =over 4
9158
9159 =item SYNOPSIS
9160
9161 =item DESCRIPTION
9162
9163 =item NONPERLIO FUNCTIONALITY
9164
9165 =item IMPLEMENTATION DETAILS
9166
9167 =item SEE ALSO
9168
9169 =back
9170
9171 =head2 ops - Perl pragma to restrict unsafe operations when compiling
9172
9173 =over 4
9174
9175 =item SYNOPSIS  
9176
9177 =item DESCRIPTION
9178
9179 =item SEE ALSO
9180
9181 =back
9182
9183 =head2 overload - Package for overloading perl operations
9184
9185 =over 4
9186
9187 =item SYNOPSIS
9188
9189 =item DESCRIPTION
9190
9191 =over 4
9192
9193 =item Declaration of overloaded functions
9194
9195 =item Calling Conventions for Binary Operations
9196
9197 FALSE, TRUE, C<undef>
9198
9199 =item Calling Conventions for Unary Operations
9200
9201 =item Calling Conventions for Mutators
9202
9203 C<++> and C<-->, C<x=> and other assignment versions
9204
9205 =item Overloadable Operations
9206
9207 I<Arithmetic operations>, I<Comparison operations>, I<Bit operations>,
9208 I<Increment and decrement>, I<Transcendental functions>, I<Boolean, string
9209 and numeric conversion>, I<Iteration>, I<Dereferencing>, I<Special>
9210
9211 =item Inheritance and overloading
9212
9213 Strings as values of C<use overload> directive, Overloading of an operation
9214 is inherited by derived classes
9215
9216 =back
9217
9218 =item SPECIAL SYMBOLS FOR C<use overload>
9219
9220 =over 4
9221
9222 =item Last Resort
9223
9224 =item Fallback
9225
9226 C<undef>, TRUE, defined, but FALSE
9227
9228 =item Copy Constructor
9229
9230 B<Example>
9231
9232 =back
9233
9234 =item MAGIC AUTOGENERATION
9235
9236 I<Assignment forms of arithmetic operations>, I<Conversion operations>,
9237 I<Increment and decrement>, C<abs($a)>, I<Unary minus>, I<Negation>,
9238 I<Concatenation>, I<Comparison operations>, I<Iterator>, I<Dereferencing>,
9239 I<Copy operator>
9240
9241 =item Losing overloading
9242
9243 =item Run-time Overloading
9244
9245 =item Public functions
9246
9247 overload::StrVal(arg), overload::Overloaded(arg), overload::Method(obj,op)
9248
9249 =item Overloading constants
9250
9251 integer, float, binary, q, qr
9252
9253 =item IMPLEMENTATION
9254
9255 =item Metaphor clash
9256
9257 =item Cookbook
9258
9259 =over 4
9260
9261 =item Two-face scalars
9262
9263 =item Two-face references
9264
9265 =item Symbolic calculator
9266
9267 =item I<Really> symbolic calculator
9268
9269 =back
9270
9271 =item AUTHOR
9272
9273 =item DIAGNOSTICS
9274
9275 Odd number of arguments for overload::constant, `%s' is not an overloadable
9276 type, `%s' is not a code reference
9277
9278 =item BUGS
9279
9280 =back
9281
9282 =head2 re - Perl pragma to alter regular expression behaviour
9283
9284 =over 4
9285
9286 =item SYNOPSIS
9287
9288 =item DESCRIPTION
9289
9290 =back
9291
9292 =head2 sigtrap - Perl pragma to enable simple signal handling
9293
9294 =over 4
9295
9296 =item SYNOPSIS
9297
9298 =item DESCRIPTION
9299
9300 =item OPTIONS
9301
9302 =over 4
9303
9304 =item SIGNAL HANDLERS
9305
9306 B<stack-trace>, B<die>, B<handler> I<your-handler>
9307
9308 =item SIGNAL LISTS
9309
9310 B<normal-signals>, B<error-signals>, B<old-interface-signals>
9311
9312 =item OTHER
9313
9314 B<untrapped>, B<any>, I<signal>, I<number>
9315
9316 =back
9317
9318 =item EXAMPLES
9319
9320 =back
9321
9322 =head2 sort - perl pragma to control sort() behaviour
9323
9324 =over 4
9325
9326 =item SYNOPSIS
9327
9328 =item DESCRIPTION
9329
9330 =item CAVEATS
9331
9332 =back
9333
9334 =head2 strict - Perl pragma to restrict unsafe constructs
9335
9336 =over 4
9337
9338 =item SYNOPSIS
9339
9340 =item DESCRIPTION
9341
9342 C<strict refs>, C<strict vars>, C<strict subs>
9343
9344 =back
9345
9346 =head2 subs - Perl pragma to predeclare sub names
9347
9348 =over 4
9349
9350 =item SYNOPSIS
9351
9352 =item DESCRIPTION
9353
9354 =back
9355
9356 =head2 threads - Perl extension allowing use of interpreter based threads
9357 from perl
9358
9359 =over 4
9360
9361 =item SYNOPSIS
9362
9363 =item DESCRIPTION
9364
9365 $thread = threads->create(function, LIST), $thread->join, $thread->detach,
9366 threads->self, $thread->tid, threads->object( tid ), threads->yield();,
9367 threads->list();, async BLOCK;
9368
9369 =item WARNINGS
9370
9371 A thread exited while %d other threads were still running
9372
9373 =item TODO
9374
9375 =item BUGS
9376
9377 Parent-Child threads, Returning objects, Creating threads inside BEGIN
9378 blocks, PERL_OLD_SIGNALS are not threadsafe, will not be
9379
9380 =item AUTHOR and COPYRIGHT
9381
9382 =item SEE ALSO
9383
9384 =back
9385
9386 =head2 threadshared, threads::shared - Perl extension for sharing data
9387 structures between threads
9388
9389 =over 4
9390
9391 =item SYNOPSIS
9392
9393 =item DESCRIPTION
9394
9395 =item EXPORT
9396
9397 =item FUNCTIONS
9398
9399 share VARIABLE, lock VARIABLE, cond_wait VARIABLE, cond_signal VARIABLE,
9400 cond_broadcast VARIABLE
9401
9402 =item NOTES
9403
9404 =item BUGS
9405
9406 =item AUTHOR
9407
9408 =item SEE ALSO
9409
9410 =back
9411
9412 =head2 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source
9413 code
9414
9415 =over 4
9416
9417 =item SYNOPSIS
9418
9419 =item DESCRIPTION
9420
9421 =over 4
9422
9423 =item Utility functions
9424
9425 $num_octets = utf8::upgrade($string);, utf8::downgrade($string[, FAIL_OK]),
9426 utf8::encode($string), $flag = utf8::decode($string), $flag =
9427 utf8::valid(STRING)
9428
9429 =back
9430
9431 =item BUGS
9432
9433 =item SEE ALSO
9434
9435 =back
9436
9437 =head2 vars - Perl pragma to predeclare global variable names (obsolete)
9438
9439 =over 4
9440
9441 =item SYNOPSIS
9442
9443 =item DESCRIPTION
9444
9445 =back
9446
9447 =head2 version - Perl extension for Version Objects
9448
9449 =over 4
9450
9451 =item SYNOPSIS
9452
9453 =item DESCRIPTION
9454
9455 =over 4
9456
9457 =item What IS a version
9458
9459 Numeric Versions - any initial parameter which "looks like a number", see
9460 L<Numeric Versions>, V-String Versions - any initial parameter which
9461 contains more than one decimal point, contains an embedded underscore, or
9462 has a leading 'v' see L<V-String Versions>
9463
9464 =item Numeric Versions
9465
9466 =item V-String Versions
9467
9468 =item Object Methods
9469
9470 New Operator - Like all OO interfaces, the new() operator is used to
9471 initialize version objects.  One way to increment versions when programming
9472 is to use the CVS variable $Revision, which is automatically incremented by
9473 CVS every time the file is committed to the repository, Stringification -
9474 Any time a version object is used as a string, a stringified representation
9475 is returned in reduced form (no extraneous zeros):, Numification - although
9476 all mathematical operations on version objects are forbidden by default, it
9477 is possible to retrieve a number which roughly corresponds to the version
9478 object through the use of the $obj->numify method.  For formatting
9479 purposes, when displaying a number which corresponds a version object, all
9480 sub versions are assumed to have three decimal places.  So for example:,
9481 Comparison operators - Both cmp and <=> operators perform the same
9482 comparison between terms (upgrading to a version object automatically). 
9483 Perl automatically generates all of the other comparison operators based on
9484 those two.  In addition to the obvious equalities listed below, appending a
9485 single trailing 0 term does not change the value of a version for
9486 comparison purposes.  In other words "v1.2" and "v1.2.0" are identical
9487 versions
9488
9489 =item Quoting
9490
9491 =item Types of Versions Objects
9492
9493 Ordinary versions - These are the versions that normal modules will use. 
9494 Can contain as many subversions as required. In particular, those using
9495 RCS/CVS can use one of the following:, Beta versions - For module authors
9496 using CPAN, the  convention has been to note unstable releases with an
9497 underscore in the version string, see L<CPAN>.  Beta releases will test as
9498 being newer than the more recent stable release, and less than the next
9499 stable release.  For example:
9500
9501 =item Replacement UNIVERSAL::VERSION
9502
9503 =back
9504
9505 =item EXPORT
9506
9507 =item AUTHOR
9508
9509 =item SEE ALSO
9510
9511 =back
9512
9513 =head2 vmsish - Perl pragma to control VMS-specific language features
9514
9515 =over 4
9516
9517 =item SYNOPSIS
9518
9519 =item DESCRIPTION
9520
9521 C<vmsish status>, C<vmsish exit>, C<vmsish time>, C<vmsish hushed>
9522
9523 =back
9524
9525 =head2 warnings - Perl pragma to control optional warnings
9526
9527 =over 4
9528
9529 =item SYNOPSIS
9530
9531 =item DESCRIPTION
9532
9533 use warnings::register, warnings::enabled(), warnings::enabled($category),
9534 warnings::enabled($object), warnings::warn($message),
9535 warnings::warn($category, $message), warnings::warn($object, $message),
9536 warnings::warnif($message), warnings::warnif($category, $message),
9537 warnings::warnif($object, $message)
9538
9539 =back
9540
9541 =head2 warnings::register - warnings import function
9542
9543 =over 4
9544
9545 =item SYNOPSIS
9546
9547 =item DESCRIPTION
9548
9549 =back
9550
9551 =head1 MODULE DOCUMENTATION
9552
9553 =head2 AnyDBM_File - provide framework for multiple DBMs
9554
9555 =over 4
9556
9557 =item SYNOPSIS
9558
9559 =item DESCRIPTION
9560
9561 =over 4
9562
9563 =item DBM Comparisons
9564
9565 [0], [1], [2], [3]
9566
9567 =back
9568
9569 =item SEE ALSO
9570
9571 =back
9572
9573 =head2 Attribute::Handlers - Simpler definition of attribute handlers
9574
9575 =over 4
9576
9577 =item VERSION
9578
9579 =item SYNOPSIS
9580
9581 =item DESCRIPTION
9582
9583 [0], [1], [2], [3], [4], [5]
9584
9585 =over 4
9586
9587 =item Typed lexicals
9588
9589 =item Type-specific attribute handlers
9590
9591 =item Non-interpretive attribute handlers
9592
9593 =item Phase-specific attribute handlers
9594
9595 =item Attributes as C<tie> interfaces
9596
9597 =back
9598
9599 =item EXAMPLES
9600
9601 =item DIAGNOSTICS
9602
9603 C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
9604 attributes>, C<Declaration of %s attribute in package %s may clash with
9605 future reserved word>, C<Can't have two ATTR specifiers on one subroutine>,
9606 C<Can't autotie a %s>, C<Internal error: %s symbol went missing>, C<Won't
9607 be able to apply END handler>
9608
9609 =item AUTHOR
9610
9611 =item BUGS
9612
9613 =item COPYRIGHT
9614
9615 =back
9616
9617 =head2 AutoLoader - load subroutines only on demand
9618
9619 =over 4
9620
9621 =item SYNOPSIS
9622
9623 =item DESCRIPTION
9624
9625 =over 4
9626
9627 =item Subroutine Stubs
9628
9629 =item Using B<AutoLoader>'s AUTOLOAD Subroutine
9630
9631 =item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
9632
9633 =item Package Lexicals
9634
9635 =item Not Using AutoLoader
9636
9637 =item B<AutoLoader> vs. B<SelfLoader>
9638
9639 =back
9640
9641 =item CAVEATS
9642
9643 =item SEE ALSO
9644
9645 =back
9646
9647 =head2 AutoSplit - split a package for autoloading
9648
9649 =over 4
9650
9651 =item SYNOPSIS
9652
9653 =item DESCRIPTION
9654
9655 $keep, $check, $modtime
9656
9657 =over 4
9658
9659 =item Multiple packages
9660
9661 =back
9662
9663 =item DIAGNOSTICS
9664
9665 =back
9666
9667 =head2 B - The Perl Compiler
9668
9669 =over 4
9670
9671 =item SYNOPSIS
9672
9673 =item DESCRIPTION
9674
9675 =item OVERVIEW
9676
9677 =item Utility Functions
9678
9679 =over 4
9680
9681 =item Functions Returning C<B::SV>, C<B::AV>, C<B::HV>, and C<B::CV>
9682 objects
9683
9684 sv_undef, sv_yes, sv_no, svref_2object(SVREF), amagic_generation,
9685 C<init_av>, check_av, begin_av, end_av, comppadlist, regex_padav,
9686 C<main_cv>
9687
9688 =item Functions for Examining the Symbol Table
9689
9690 walksymtable(SYMREF, METHOD, RECURSE, PREFIX)
9691
9692 =item Functions Returning C<B::OP> objects or for walking op trees
9693
9694 main_root, main_start, walkoptree(OP, METHOD), walkoptree_debug(DEBUG)
9695
9696 =item Miscellaneous Utility Functions
9697
9698 ppname(OPNUM), hash(STR), cast_I32(I), minus_c, cstring(STR),
9699 perlstring(STR), class(OBJ), threadsv_names
9700
9701 =back
9702
9703 =item OVERVIEW OF CLASSES
9704
9705 =over 4
9706
9707 =item SV-RELATED CLASSES
9708
9709 =item B::SV Methods
9710
9711 REFCNT, FLAGS
9712
9713 =item B::IV Methods
9714
9715 IV, IVX, UVX, int_value, needs64bits, packiv
9716
9717 =item B::NV Methods
9718
9719 NV, NVX
9720
9721 =item B::RV Methods
9722
9723 RV
9724
9725 =item B::PV Methods
9726
9727 PV, RV, PVX
9728
9729 =item B::PVMG Methods
9730
9731 MAGIC, SvSTASH
9732
9733 =item B::MAGIC Methods
9734
9735 MOREMAGIC, precomp, PRIVATE, TYPE, FLAGS, OBJ, PTR, REGEX
9736
9737 =item B::PVLV Methods
9738
9739 TARGOFF, TARGLEN, TYPE, TARG
9740
9741 =item B::BM Methods
9742
9743 USEFUL, PREVIOUS, RARE, TABLE
9744
9745 =item B::GV Methods
9746
9747 is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
9748 LINE, FILE, FILEGV, GvREFCNT, FLAGS
9749
9750 =item B::IO Methods
9751
9752 LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
9753 BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS, IsSTD
9754
9755 =item B::AV Methods
9756
9757 FILL, MAX, OFF, ARRAY, AvFLAGS
9758
9759 =item B::CV Methods
9760
9761 STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, OUTSIDE_SEQ, XSUB,
9762 XSUBANY, CvFLAGS, const_sv
9763
9764 =item B::HV Methods
9765
9766 FILL, MAX, KEYS, RITER, NAME, PMROOT, ARRAY
9767
9768 =item OP-RELATED CLASSES
9769
9770 =item B::OP Methods
9771
9772 next, sibling, name, ppaddr, desc, targ, type, seq, flags, private
9773
9774 =item B::UNOP METHOD
9775
9776 first
9777
9778 =item B::BINOP METHOD
9779
9780 last
9781
9782 =item B::LOGOP METHOD
9783
9784 other
9785
9786 =item B::LISTOP METHOD
9787
9788 children
9789
9790 =item B::PMOP Methods
9791
9792 pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, pmdynflags,
9793 pmpermflags, precomp, pmoffet
9794
9795 =item B::SVOP METHOD
9796
9797 sv, gv
9798
9799 =item B::PADOP METHOD
9800
9801 padix
9802
9803 =item B::PVOP METHOD
9804
9805 pv
9806
9807 =item B::LOOP Methods
9808
9809 redoop, nextop, lastop
9810
9811 =item B::COP Methods
9812
9813 label, stash, stashpv, file, cop_seq, arybase, line, warnings, io
9814
9815 =back
9816
9817 =item AUTHOR
9818
9819 =back
9820
9821 =head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
9822 bytecode
9823
9824 =over 4
9825
9826 =item SYNOPSIS
9827
9828 =item DESCRIPTION
9829
9830 %insn_data, @insn_name, @optype, @specialsv_name
9831
9832 =item AUTHOR
9833
9834 =back
9835
9836 =head2 B::Assembler - Assemble Perl bytecode
9837
9838 =over 4
9839
9840 =item SYNOPSIS
9841
9842 =item DESCRIPTION
9843
9844 =item AUTHORS
9845
9846 =back
9847
9848 =head2 B::Bblock - Walk basic blocks
9849
9850 =over 4
9851
9852 =item SYNOPSIS
9853
9854 =item DESCRIPTION
9855
9856 =over 4
9857
9858 =item Functions
9859
9860 B<find_leaders>
9861
9862 =back
9863
9864 =item AUTHOR
9865
9866 =back
9867
9868 =head2 B::Bytecode - Perl compiler's bytecode backend
9869
9870 =over 4
9871
9872 =item SYNOPSIS
9873
9874 =item DESCRIPTION
9875
9876 =item OPTIONS
9877
9878 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
9879 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
9880 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
9881
9882 =item EXAMPLES
9883
9884 =item BUGS
9885
9886 =item AUTHORS
9887
9888 =back
9889
9890 =head2 B::C - Perl compiler's C backend
9891
9892 =over 4
9893
9894 =item SYNOPSIS
9895
9896 =item DESCRIPTION
9897
9898 =item OPTIONS
9899
9900 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-D>, B<-Do>, B<-Dc>, B<-DA>,
9901 B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fsave-data>, B<-fppaddr>, B<-fwarn-sv>,
9902 B<-fuse-script-name>, B<-fsave-sig-hash>, B<-On>, B<-O0>, B<-O1>, B<-O2>,
9903 B<-llimit>
9904
9905 =item EXAMPLES
9906
9907 =item BUGS
9908
9909 =item AUTHOR
9910
9911 =back
9912
9913 =head2 B::CC - Perl compiler's optimized C translation backend
9914
9915 =over 4
9916
9917 =item SYNOPSIS
9918
9919 =item DESCRIPTION
9920
9921 =item OPTIONS
9922
9923 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-mModulename>, B<-D>, B<-Dr>,
9924 B<-DO>, B<-Ds>, B<-Dp>, B<-Dq>, B<-Dl>, B<-Dt>, B<-f>,
9925 B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
9926
9927 =item EXAMPLES
9928
9929 =item BUGS
9930
9931 =item DIFFERENCES
9932
9933 =over 4
9934
9935 =item Loops
9936
9937 =item Context of ".."
9938
9939 =item Arithmetic
9940
9941 =item Deprecated features
9942
9943 =back
9944
9945 =item AUTHOR
9946
9947 =back
9948
9949 =head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
9950
9951 =over 4
9952
9953 =item SYNOPSIS
9954
9955 =item DESCRIPTION
9956
9957 =item EXAMPLE
9958
9959 =item OPTIONS
9960
9961 B<-basic>, B<-exec>, B<-tree>, B<-compact>, B<-loose>, B<-vt>, B<-ascii>,
9962 B<-main>, B<-base>I<n>, B<-bigendian>, B<-littleendian>, B<-concise>,
9963 B<-terse>, B<-linenoise>, B<-debug>, B<-env>
9964
9965 =item FORMATTING SPECIFICATIONS
9966
9967 B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
9968 B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
9969 B<#>I<var>, B<#>I<var>I<N>, B<~>, B<#addr>, B<#arg>, B<#class>,
9970 B<#classsym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
9971 B<#flags>, B<#flagval>, B<#hyphseq>, B<#label>, B<#lastaddr>, B<#name>,
9972 B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>, B<#private>, B<#privval>,
9973 B<#seq>, B<#seqnum>, B<#sibaddr>, B<#svaddr>, B<#svclass>, B<#svval>,
9974 B<#targ>, B<#targarg>, B<#targarglife>, B<#typenum>
9975
9976 =item ABBREVIATIONS
9977
9978 =over 4
9979
9980 =item OP flags abbreviations
9981
9982 =item OP class abbreviations
9983
9984 =back
9985
9986 =item Using B::Concise outside of the O framework
9987
9988 =item AUTHOR
9989
9990 =back
9991
9992 =head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
9993
9994 =over 4
9995
9996 =item SYNOPSIS
9997
9998 =item DESCRIPTION
9999
10000 =item AUTHOR
10001
10002 =back
10003
10004 =head2 B::Deparse - Perl compiler backend to produce perl code
10005
10006 =over 4
10007
10008 =item SYNOPSIS
10009
10010 =item DESCRIPTION
10011
10012 =item OPTIONS
10013
10014 B<-l>, B<-p>, B<-P>, B<-q>, B<-f>I<FILE>, B<-s>I<LETTERS>, B<C>,
10015 B<i>I<NUMBER>, B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
10016
10017 =item USING B::Deparse AS A MODULE
10018
10019 =over 4
10020
10021 =item Synopsis
10022
10023 =item Description
10024
10025 =item new
10026
10027 =item ambient_pragmas
10028
10029 strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
10030
10031 =item coderef2text
10032
10033 =back
10034
10035 =item BUGS
10036
10037 =item AUTHOR
10038
10039 =back
10040
10041 =head2 B::Disassembler - Disassemble Perl bytecode
10042
10043 =over 4
10044
10045 =item SYNOPSIS
10046
10047 =item DESCRIPTION
10048
10049 =item AUTHOR
10050
10051 =back
10052
10053 =head2 B::Lint - Perl lint
10054
10055 =over 4
10056
10057 =item SYNOPSIS
10058
10059 =item DESCRIPTION
10060
10061 =item OPTIONS AND LINT CHECKS
10062
10063 B<context>, B<implicit-read> and B<implicit-write>, B<bare-subs>,
10064 B<dollar-underscore>, B<private-names>, B<undefined-subs>,
10065 B<regexp-variables>, B<all>, B<none>
10066
10067 =item NON LINT-CHECK OPTIONS
10068
10069 B<-u Package>
10070
10071 =item BUGS
10072
10073 =item AUTHOR
10074
10075 =back
10076
10077 =head2 B::O, O - Generic interface to Perl Compiler backends
10078
10079 =over 4
10080
10081 =item SYNOPSIS
10082
10083 =item DESCRIPTION
10084
10085 =item CONVENTIONS
10086
10087 =item IMPLEMENTATION
10088
10089 =item BUGS
10090
10091 =item AUTHOR
10092
10093 =back
10094
10095 =head2 B::Showlex - Show lexical variables used in functions or files
10096
10097 =over 4
10098
10099 =item SYNOPSIS
10100
10101 =item DESCRIPTION
10102
10103 =item AUTHOR
10104
10105 =back
10106
10107 =head2 B::Stackobj - Helper module for CC backend
10108
10109 =over 4
10110
10111 =item SYNOPSIS
10112
10113 =item DESCRIPTION
10114
10115 =item AUTHOR
10116
10117 =back
10118
10119 =head2 B::Stash - show what stashes are loaded
10120
10121 =head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
10122
10123 =over 4
10124
10125 =item SYNOPSIS
10126
10127 =item DESCRIPTION
10128
10129 =item AUTHOR
10130
10131 =back
10132
10133 =head2 B::Xref - Generates cross reference reports for Perl programs
10134
10135 =over 4
10136
10137 =item SYNOPSIS
10138
10139 =item DESCRIPTION
10140
10141 =item OPTIONS
10142
10143 C<-oFILENAME>, C<-r>, C<-d>, C<-D[tO]>
10144
10145 =item BUGS
10146
10147 =item AUTHOR
10148
10149 =back
10150
10151 =head2 Bblock, B::Bblock - Walk basic blocks
10152
10153 =over 4
10154
10155 =item SYNOPSIS
10156
10157 =item DESCRIPTION
10158
10159 =over 4
10160
10161 =item Functions
10162
10163 B<find_leaders>
10164
10165 =back
10166
10167 =item AUTHOR
10168
10169 =back
10170
10171 =head2 Benchmark - benchmark running times of Perl code
10172
10173 =over 4
10174
10175 =item SYNOPSIS
10176
10177 =item DESCRIPTION
10178
10179 =over 4
10180
10181 =item Methods
10182
10183 new, debug, iters
10184
10185 =item Standard Exports
10186
10187 timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
10188 timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
10189 TIMEDIFF, [ STYLE, [ FORMAT ] ] )
10190
10191 =item Optional Exports
10192
10193 clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUNT, CODEHASHREF, [
10194 STYLE ] ), cmpthese ( RESULTSHASHREF, [ STYLE ] ), countit(TIME, CODE),
10195 disablecache ( ), enablecache ( ), timesum ( T1, T2 )
10196
10197 =item :hireswallclock
10198
10199 =back
10200
10201 =item NOTES
10202
10203 =item EXAMPLES
10204
10205 =item INHERITANCE
10206
10207 =item CAVEATS
10208
10209 =item SEE ALSO
10210
10211 =item AUTHORS
10212
10213 =item MODIFICATION HISTORY
10214
10215 =back
10216
10217 =head2 ByteLoader - load byte compiled perl code
10218
10219 =over 4
10220
10221 =item SYNOPSIS
10222
10223 =item DESCRIPTION
10224
10225 =item AUTHOR
10226
10227 =item SEE ALSO
10228
10229 =back
10230
10231 =head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend
10232
10233 =over 4
10234
10235 =item SYNOPSIS
10236
10237 =item DESCRIPTION
10238
10239 =item OPTIONS
10240
10241 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
10242 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
10243 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
10244
10245 =item EXAMPLES
10246
10247 =item BUGS
10248
10249 =item AUTHORS
10250
10251 =back
10252
10253 =head2 CGI - Simple Common Gateway Interface Class
10254
10255 =over 4
10256
10257 =item SYNOPSIS
10258
10259 =item ABSTRACT
10260
10261 =item DESCRIPTION
10262
10263 =over 4
10264
10265 =item PROGRAMMING STYLE
10266
10267 =item CALLING CGI.PM ROUTINES
10268
10269 =item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
10270
10271 =item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
10272
10273 =item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
10274
10275 =item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
10276
10277 =item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
10278
10279 =item SETTING THE VALUE(S) OF A NAMED PARAMETER:
10280
10281 =item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
10282
10283 =item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
10284
10285 =item DELETING A PARAMETER COMPLETELY:
10286
10287 =item DELETING ALL PARAMETERS:
10288
10289 =item DIRECT ACCESS TO THE PARAMETER LIST:
10290
10291 =item FETCHING THE PARAMETER LIST AS A HASH:
10292
10293 =item SAVING THE STATE OF THE SCRIPT TO A FILE:
10294
10295 =item RETRIEVING CGI ERRORS
10296
10297 =item USING THE FUNCTION-ORIENTED INTERFACE
10298
10299 B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:html4>, B<:netscape>, B<:html>,
10300 B<:standard>, B<:all>
10301
10302 =item PRAGMAS
10303
10304 -any, -compile, -nosticky, -no_undef_params, -no_xhtml, -nph,
10305 -newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
10306 -private_tempfiles
10307
10308 =item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
10309
10310 1. start_table() (generates a <table> tag), 2. end_table() (generates a
10311 </table> tag), 3. start_ul() (generates a <ul> tag), 4. end_ul() (generates
10312 a </ul> tag)
10313
10314 =back
10315
10316 =item GENERATING DYNAMIC DOCUMENTS
10317
10318 =over 4
10319
10320 =item CREATING A STANDARD HTTP HEADER:
10321
10322 =item GENERATING A REDIRECTION HEADER
10323
10324 =item CREATING THE HTML DOCUMENT HEADER
10325
10326 B<Parameters:>, 4, 5, 6..
10327
10328 =item ENDING THE HTML DOCUMENT:
10329
10330 =item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
10331
10332 =item OBTAINING THE SCRIPT'S URL
10333
10334 B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
10335 (B<-query_string>), B<-base>
10336
10337 =item MIXING POST AND URL PARAMETERS
10338
10339 =back
10340
10341 =item CREATING STANDARD HTML ELEMENTS:
10342
10343 =over 4
10344
10345 =item PROVIDING ARGUMENTS TO HTML SHORTCUTS
10346
10347 =item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
10348
10349 =item HTML SHORTCUTS AND LIST INTERPOLATION
10350
10351 =item NON-STANDARD HTML SHORTCUTS
10352
10353 =item AUTOESCAPING HTML
10354
10355 $escaped_string = escapeHTML("unescaped string");, $charset =
10356 charset([$charset]);, $flag = autoEscape([$flag]);
10357
10358 =item PRETTY-PRINTING HTML
10359
10360 =back
10361
10362 =item CREATING FILL-OUT FORMS:
10363
10364 =over 4
10365
10366 =item CREATING AN ISINDEX TAG
10367
10368 =item STARTING AND ENDING A FORM
10369
10370 B<application/x-www-form-urlencoded>, B<multipart/form-data>
10371
10372 =item CREATING A TEXT FIELD
10373
10374 B<Parameters>
10375
10376 =item CREATING A BIG TEXT FIELD
10377
10378 =item CREATING A PASSWORD FIELD
10379
10380 =item CREATING A FILE UPLOAD FIELD
10381
10382 B<Parameters>
10383
10384 =item CREATING A POPUP MENU
10385
10386 =item CREATING AN OPTION GROUP
10387
10388 =item CREATING A SCROLLING LIST
10389
10390 B<Parameters:>
10391
10392 =item CREATING A GROUP OF RELATED CHECKBOXES
10393
10394 B<Parameters:>
10395
10396 =item CREATING A STANDALONE CHECKBOX
10397
10398 B<Parameters:>
10399
10400 =item CREATING A RADIO BUTTON GROUP
10401
10402 B<Parameters:>
10403
10404 =item CREATING A SUBMIT BUTTON 
10405
10406 B<Parameters:>
10407
10408 =item CREATING A RESET BUTTON
10409
10410 =item CREATING A DEFAULT BUTTON
10411
10412 =item CREATING A HIDDEN FIELD
10413
10414 B<Parameters:>
10415
10416 =item CREATING A CLICKABLE IMAGE BUTTON
10417
10418 B<Parameters:>
10419
10420 =item CREATING A JAVASCRIPT ACTION BUTTON
10421
10422 =back
10423
10424 =item HTTP COOKIES
10425
10426 1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
10427 B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
10428
10429 =item WORKING WITH FRAMES
10430
10431 1. Create a <Frameset> document, 2. Specify the destination for the
10432 document in the HTTP header, 3. Specify the destination for the document in
10433 the <form> tag
10434
10435 =item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
10436
10437 =item DEBUGGING
10438
10439 =over 4
10440
10441 =item DUMPING OUT ALL THE NAME/VALUE PAIRS
10442
10443 =back
10444
10445 =item FETCHING ENVIRONMENT VARIABLES
10446
10447 B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
10448 B<path_translated()>, B<remote_host()>, B<script_name()>, B<referer()>,
10449 B<auth_type ()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
10450 B<server_software ()>, B<remote_user ()>, B<user_name ()>,
10451 B<request_method()>, B<content_type()>, B<http()>, B<https()>
10452
10453 =item USING NPH SCRIPTS
10454
10455 In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
10456 parameters
10457
10458 =item Server Push
10459
10460 multipart_init(), multipart_start(), multipart_end(), multipart_final()
10461
10462 =item Avoiding Denial of Service Attacks
10463
10464 B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
10465 basis>, B<2. Globally for all scripts>
10466
10467 =item COMPATIBILITY WITH CGI-LIB.PL
10468
10469 =item AUTHOR INFORMATION
10470
10471 =item CREDITS
10472
10473 Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
10474 (james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
10475 (mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
10476 (jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
10477 (applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
10478 (tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
10479 (tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
10480 MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
10481 (kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
10482 Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
10483 MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
10484 ...and many many more..
10485
10486 =item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
10487
10488 =item BUGS
10489
10490 =item SEE ALSO
10491
10492 =back
10493
10494 =head2 CGI::Apache - Backward compatibility module for CGI.pm
10495
10496 =over 4
10497
10498 =item SYNOPSIS
10499
10500 =item ABSTRACT
10501
10502 =item DESCRIPTION
10503
10504 =item AUTHOR INFORMATION
10505
10506 =item BUGS
10507
10508 =item SEE ALSO
10509
10510 =back
10511
10512 =head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
10513 other) error log
10514
10515 =over 4
10516
10517 =item SYNOPSIS
10518
10519 =item DESCRIPTION
10520
10521 =item REDIRECTING ERROR MESSAGES
10522
10523 =item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
10524
10525 =over 4
10526
10527 =item Changing the default message
10528
10529 =back
10530
10531 =item MAKING WARNINGS APPEAR AS HTML COMMENTS
10532
10533 =item OVERRIDING THE NAME OF THE PROGRAM
10534
10535 =item AUTHORS
10536
10537 =item SEE ALSO
10538
10539 =back
10540
10541 =head2 CGI::Cookie - Interface to Netscape Cookies
10542
10543 =over 4
10544
10545 =item SYNOPSIS
10546
10547 =item DESCRIPTION
10548
10549 =item USING CGI::Cookie
10550
10551 B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
10552
10553 =over 4
10554
10555 =item Creating New Cookies
10556
10557 =item Sending the Cookie to the Browser
10558
10559 =item Recovering Previous Cookies
10560
10561 =item Manipulating Cookies
10562
10563 B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
10564
10565 =back
10566
10567 =item AUTHOR INFORMATION
10568
10569 =item BUGS
10570
10571 =item SEE ALSO
10572
10573 =back
10574
10575 =head2 CGI::Fast - CGI Interface for Fast CGI
10576
10577 =over 4
10578
10579 =item SYNOPSIS
10580
10581 =item DESCRIPTION
10582
10583 =item OTHER PIECES OF THE PUZZLE
10584
10585 =item WRITING FASTCGI PERL SCRIPTS
10586
10587 =item INSTALLING FASTCGI SCRIPTS
10588
10589 =item USING FASTCGI SCRIPTS AS CGI SCRIPTS
10590
10591 =item EXTERNAL FASTCGI SERVER INVOCATION
10592
10593 FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
10594
10595 =item CAVEATS
10596
10597 =item AUTHOR INFORMATION
10598
10599 =item BUGS
10600
10601 =item SEE ALSO
10602
10603 =back
10604
10605 =head2 CGI::Pretty - module to produce nicely formatted HTML code
10606
10607 =over 4
10608
10609 =item SYNOPSIS
10610
10611 =item DESCRIPTION
10612
10613 =over 4
10614
10615 =item Tags that won't be formatted
10616
10617 =item Customizing the Indenting
10618
10619 =back
10620
10621 =item BUGS
10622
10623 =item AUTHOR
10624
10625 =item SEE ALSO
10626
10627 =back
10628
10629 =head2 CGI::Push - Simple Interface to Server Push
10630
10631 =over 4
10632
10633 =item SYNOPSIS
10634
10635 =item DESCRIPTION
10636
10637 =item USING CGI::Push
10638
10639 -next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
10640
10641 =over 4
10642
10643 =item Heterogeneous Pages
10644
10645 =item Changing the Page Delay on the Fly
10646
10647 =back
10648
10649 =item INSTALLING CGI::Push SCRIPTS
10650
10651 =item AUTHOR INFORMATION
10652
10653 =item BUGS
10654
10655 =item SEE ALSO
10656
10657 =back
10658
10659 =head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
10660
10661 =over 4
10662
10663 =item SYNOPSIS
10664
10665 =item ABSTRACT
10666
10667 =item DESCRIPTION
10668
10669 =item AUTHOR INFORMATION
10670
10671 =item BUGS
10672
10673 =item SEE ALSO
10674
10675 =back
10676
10677 =head2 CGI::Util - Internal utilities used by CGI module
10678
10679 =over 4
10680
10681 =item SYNOPSIS
10682
10683 =item DESCRIPTION
10684
10685 =item AUTHOR INFORMATION
10686
10687 =item SEE ALSO
10688
10689 =back
10690
10691 =head2 CPAN - query, download and build perl modules from CPAN sites
10692
10693 =over 4
10694
10695 =item SYNOPSIS
10696
10697 =item STATUS
10698
10699 =item DESCRIPTION
10700
10701 =over 4
10702
10703 =item Interactive Mode
10704
10705 Searching for authors, bundles, distribution files and modules, make, test,
10706 install, clean  modules or distributions, get, readme, look module or
10707 distribution, ls author, Signals
10708
10709 =item CPAN::Shell
10710
10711 =item autobundle
10712
10713 =item recompile
10714
10715 =item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
10716
10717 =item Programmer's interface
10718
10719 expand($type,@things), expandany(@things), Programming Examples
10720
10721 =item Methods in the other Classes
10722
10723 CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
10724 CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
10725 CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
10726 CPAN::Bundle::clean(), CPAN::Bundle::contains(),
10727 CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
10728 CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
10729 CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
10730 CPAN::Bundle::readme(), CPAN::Bundle::test(),
10731 CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
10732 CPAN::Distribution::clean(), CPAN::Distribution::containsmods(),
10733 CPAN::Distribution::cvs_import(), CPAN::Distribution::dir(),
10734 CPAN::Distribution::force($method,@args), CPAN::Distribution::get(),
10735 CPAN::Distribution::install(), CPAN::Distribution::isa_perl(),
10736 CPAN::Distribution::look(), CPAN::Distribution::make(),
10737 CPAN::Distribution::prereq_pm(), CPAN::Distribution::readme(),
10738 CPAN::Distribution::test(), CPAN::Distribution::uptodate(),
10739 CPAN::Index::force_reload(), CPAN::Index::reload(), CPAN::InfoObj::dump(),
10740 CPAN::Module::as_glimpse(), CPAN::Module::as_string(),
10741 CPAN::Module::clean(), CPAN::Module::cpan_file(),
10742 CPAN::Module::cpan_version(), CPAN::Module::cvs_import(),
10743 CPAN::Module::description(), CPAN::Module::force($method,@args),
10744 CPAN::Module::get(), CPAN::Module::inst_file(),
10745 CPAN::Module::inst_version(), CPAN::Module::install(),
10746 CPAN::Module::look(), CPAN::Module::make(),
10747 CPAN::Module::manpage_headline(), CPAN::Module::readme(),
10748 CPAN::Module::test(), CPAN::Module::uptodate(), CPAN::Module::userid()
10749
10750 =item Cache Manager
10751
10752 =item Bundles
10753
10754 =item Prerequisites
10755
10756 =item Finding packages and VERSION
10757
10758 =item Debugging
10759
10760 =item Floppy, Zip, Offline Mode
10761
10762 =back
10763
10764 =item CONFIGURATION
10765
10766 C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
10767 E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
10768 optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
10769 [unshift|push|splice] E<lt>listE<gt>>
10770
10771 =over 4
10772
10773 =item Note on urllist parameter's format
10774
10775 =item urllist parameter has CD-ROM support
10776
10777 =back
10778
10779 =item SECURITY
10780
10781 =item EXPORT
10782
10783 =item POPULATE AN INSTALLATION WITH LOTS OF MODULES
10784
10785 =item WORKING WITH CPAN.pm BEHIND FIREWALLS
10786
10787 =over 4
10788
10789 =item Three basic types of firewalls
10790
10791 http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
10792
10793 =item Configuring lynx or ncftp for going through a firewall
10794
10795 =back
10796
10797 =item FAQ
10798
10799 1), 2), 3), 4), 5), 6), 7), 8), 9), 10)
10800
10801 =item BUGS
10802
10803 =item AUTHOR
10804
10805 =item TRANSLATIONS
10806
10807 =item SEE ALSO
10808
10809 =back
10810
10811 =head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
10812
10813 =over 4
10814
10815 =item SYNOPSIS
10816
10817 =item DESCRIPTION
10818
10819 =back
10820
10821 =head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
10822 module
10823
10824 =over 4
10825
10826 =item SYNOPSIS
10827
10828 =item DESCRIPTION
10829
10830 =item  SEE ALSO
10831
10832 =back
10833
10834 =head2 Carp, carp    - warn of errors (from perspective of caller)
10835
10836 =over 4
10837
10838 =item SYNOPSIS
10839
10840 =item DESCRIPTION
10841
10842 =over 4
10843
10844 =item Forcing a Stack Trace
10845
10846 =back
10847
10848 =item BUGS
10849
10850 =back
10851
10852 =head2 Carp::Heavy, Carp heavy machinery - no user serviceable parts inside
10853
10854 =head2 Class::ISA -- report the search path for a class's ISA tree
10855
10856 =over 4
10857
10858 =item SYNOPSIS
10859
10860 =item DESCRIPTION
10861
10862 =item FUNCTIONS
10863
10864 the function Class::ISA::super_path($CLASS), the function
10865 Class::ISA::self_and_super_path($CLASS), the function
10866 Class::ISA::self_and_super_versions($CLASS)
10867
10868 =item CAUTIONARY NOTES
10869
10870 =item COPYRIGHT
10871
10872 =item AUTHOR
10873
10874 =back
10875
10876 =head2 Class::Struct - declare struct-like datatypes as Perl classes
10877
10878 =over 4
10879
10880 =item SYNOPSIS
10881
10882 =item DESCRIPTION
10883
10884 =over 4
10885
10886 =item The C<struct()> function
10887
10888 =item Class Creation at Compile Time
10889
10890 =item Element Types and Accessor Methods
10891
10892 Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
10893 C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
10894
10895 =item Initializing with C<new>
10896
10897 =back
10898
10899 =item EXAMPLES
10900
10901 Example 1, Example 2, Example 3
10902
10903 =item Author and Modification History
10904
10905 =back
10906
10907 =head2 Config - access Perl configuration information
10908
10909 =over 4
10910
10911 =item SYNOPSIS
10912
10913 =item DESCRIPTION
10914
10915 myconfig(), config_sh(), config_re($regex), config_vars(@names)
10916
10917 =item EXAMPLE
10918
10919 =item WARNING
10920
10921 =item GLOSSARY
10922
10923 =over 4
10924
10925 =item _
10926
10927 C<_a>, C<_exe>, C<_o>
10928
10929 =item a
10930
10931 C<afs>, C<afsroot>, C<alignbytes>, C<ansi2knr>, C<aphostname>,
10932 C<api_revision>, C<api_subversion>, C<api_version>, C<api_versionstring>,
10933 C<ar>, C<archlib>, C<archlibexp>, C<archname64>, C<archname>, C<archobjs>,
10934 C<asctime_r_proto>, C<awk>
10935
10936 =item b
10937
10938 C<baserev>, C<bash>, C<bin>, C<binexp>, C<bison>, C<byacc>, C<byteorder>
10939
10940 =item c
10941
10942 C<c>, C<castflags>, C<cat>, C<cc>, C<cccdlflags>, C<ccdlflags>, C<ccflags>,
10943 C<ccflags_uselargefiles>, C<ccname>, C<ccsymbols>, C<ccversion>, C<cf_by>,
10944 C<cf_email>, C<cf_time>, C<charsize>, C<chgrp>, C<chmod>, C<chown>,
10945 C<clocktype>, C<comm>, C<compress>, C<contains>, C<cp>, C<cpio>, C<cpp>,
10946 C<cpp_stuff>, C<cppccsymbols>, C<cppflags>, C<cpplast>, C<cppminus>,
10947 C<cpprun>, C<cppstdin>, C<cppsymbols>, C<crypt_r_proto>, C<cryptlib>,
10948 C<csh>, C<ctermid_r_proto>, C<ctime_r_proto>
10949
10950 =item d
10951
10952 C<d__fwalk>, C<d_access>, C<d_accessx>, C<d_aintl>, C<d_alarm>,
10953 C<d_archlib>, C<d_asctime_r>, C<d_atolf>, C<d_atoll>, C<d_attribut>,
10954 C<d_bcmp>, C<d_bcopy>, C<d_bsd>, C<d_bsdgetpgrp>, C<d_bsdsetpgrp>,
10955 C<d_bzero>, C<d_casti32>, C<d_castneg>, C<d_charvspr>, C<d_chown>,
10956 C<d_chroot>, C<d_chsize>, C<d_class>, C<d_closedir>, C<d_cmsghdr_s>,
10957 C<d_const>, C<d_copysignl>, C<d_crypt>, C<d_crypt_r>, C<d_csh>,
10958 C<d_ctermid_r>, C<d_ctime_r>, C<d_cuserid>, C<d_dbl_dig>,
10959 C<d_dbminitproto>, C<d_difftime>, C<d_dirfd>, C<d_dirnamlen>, C<d_dlerror>,
10960 C<d_dlopen>, C<d_dlsymun>, C<d_dosuid>, C<d_drand48_r>, C<d_drand48proto>,
10961 C<d_dup2>, C<d_eaccess>, C<d_endgrent>, C<d_endgrent_r>, C<d_endhent>,
10962 C<d_endhostent_r>, C<d_endnent>, C<d_endnetent_r>, C<d_endpent>,
10963 C<d_endprotoent_r>, C<d_endpwent>, C<d_endpwent_r>, C<d_endsent>,
10964 C<d_endservent_r>, C<d_eofnblk>, C<d_eunice>, C<d_faststdio>, C<d_fchdir>,
10965 C<d_fchmod>, C<d_fchown>, C<d_fcntl>, C<d_fcntl_can_lock>, C<d_fd_macros>,
10966 C<d_fd_set>, C<d_fds_bits>, C<d_fgetpos>, C<d_finite>, C<d_finitel>,
10967 C<d_flexfnam>, C<d_flock>, C<d_flockproto>, C<d_fork>, C<d_fp_class>,
10968 C<d_fpathconf>, C<d_fpclass>, C<d_fpclassify>, C<d_fpclassl>,
10969 C<d_fpos64_t>, C<d_frexpl>, C<d_fs_data_s>, C<d_fseeko>, C<d_fsetpos>,
10970 C<d_fstatfs>, C<d_fstatvfs>, C<d_fsync>, C<d_ftello>, C<d_ftime>,
10971 C<d_Gconvert>, C<d_getcwd>, C<d_getespwnam>, C<d_getfsstat>, C<d_getgrent>,
10972 C<d_getgrent_r>, C<d_getgrgid_r>, C<d_getgrnam_r>, C<d_getgrps>,
10973 C<d_gethbyaddr>, C<d_gethbyname>, C<d_gethent>, C<d_gethname>,
10974 C<d_gethostbyaddr_r>, C<d_gethostbyname_r>, C<d_gethostent_r>,
10975 C<d_gethostprotos>, C<d_getitimer>, C<d_getlogin>, C<d_getlogin_r>,
10976 C<d_getmnt>, C<d_getmntent>, C<d_getnbyaddr>, C<d_getnbyname>,
10977 C<d_getnent>, C<d_getnetbyaddr_r>, C<d_getnetbyname_r>, C<d_getnetent_r>,
10978 C<d_getnetprotos>, C<d_getpagsz>, C<d_getpbyname>, C<d_getpbynumber>,
10979 C<d_getpent>, C<d_getpgid>, C<d_getpgrp2>, C<d_getpgrp>, C<d_getppid>,
10980 C<d_getprior>, C<d_getprotobyname_r>, C<d_getprotobynumber_r>,
10981 C<d_getprotoent_r>, C<d_getprotoprotos>, C<d_getprpwnam>, C<d_getpwent>,
10982 C<d_getpwent_r>, C<d_getpwnam_r>, C<d_getpwuid_r>, C<d_getsbyname>,
10983 C<d_getsbyport>, C<d_getsent>, C<d_getservbyname_r>, C<d_getservbyport_r>,
10984 C<d_getservent_r>, C<d_getservprotos>, C<d_getspnam>, C<d_getspnam_r>,
10985 C<d_gettimeod>, C<d_gmtime_r>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>,
10986 C<d_htonl>, C<d_ilogbl>, C<d_index>, C<d_inetaton>, C<d_int64_t>,
10987 C<d_isascii>, C<d_isfinite>, C<d_isinf>, C<d_isnan>, C<d_isnanl>,
10988 C<d_killpg>, C<d_lchown>, C<d_ldbl_dig>, C<d_link>, C<d_localtime_r>,
10989 C<d_locconv>, C<d_lockf>, C<d_longdbl>, C<d_longlong>, C<d_lseekproto>,
10990 C<d_lstat>, C<d_madvise>, C<d_mblen>, C<d_mbstowcs>, C<d_mbtowc>,
10991 C<d_memchr>, C<d_memcmp>, C<d_memcpy>, C<d_memmove>, C<d_memset>,
10992 C<d_mkdir>, C<d_mkdtemp>, C<d_mkfifo>, C<d_mkstemp>, C<d_mkstemps>,
10993 C<d_mktime>, C<d_mmap>, C<d_modfl>, C<d_modfl_pow32_bug>, C<d_modflproto>,
10994 C<d_mprotect>, C<d_msg>, C<d_msg_ctrunc>, C<d_msg_dontroute>, C<d_msg_oob>,
10995 C<d_msg_peek>, C<d_msg_proxy>, C<d_msgctl>, C<d_msgget>, C<d_msghdr_s>,
10996 C<d_msgrcv>, C<d_msgsnd>, C<d_msync>, C<d_munmap>, C<d_mymalloc>,
10997 C<d_nanosleep>, C<d_nice>, C<d_nl_langinfo>, C<d_nv_preserves_uv>,
10998 C<d_off64_t>, C<d_old_pthread_create_joinable>, C<d_oldpthreads>,
10999 C<d_oldsock>, C<d_open3>, C<d_pathconf>, C<d_pause>,
11000 C<d_perl_otherlibdirs>, C<d_phostname>, C<d_pipe>, C<d_poll>,
11001 C<d_portable>, C<d_PRId64>, C<d_PRIeldbl>, C<d_PRIEUldbl>, C<d_PRIfldbl>,
11002 C<d_PRIFUldbl>, C<d_PRIgldbl>, C<d_PRIGUldbl>, C<d_PRIi64>, C<d_PRIo64>,
11003 C<d_PRIu64>, C<d_PRIx64>, C<d_PRIXU64>, C<d_procselfexe>,
11004 C<d_pthread_atfork>, C<d_pthread_yield>, C<d_pwage>, C<d_pwchange>,
11005 C<d_pwclass>, C<d_pwcomment>, C<d_pwexpire>, C<d_pwgecos>, C<d_pwpasswd>,
11006 C<d_pwquota>, C<d_qgcvt>, C<d_quad>, C<d_random_r>, C<d_readdir64_r>,
11007 C<d_readdir>, C<d_readdir_r>, C<d_readlink>, C<d_readv>, C<d_recvmsg>,
11008 C<d_rename>, C<d_rewinddir>, C<d_rmdir>, C<d_safebcpy>, C<d_safemcpy>,
11009 C<d_sanemcmp>, C<d_sbrkproto>, C<d_scalbnl>, C<d_sched_yield>,
11010 C<d_scm_rights>, C<d_SCNfldbl>, C<d_seekdir>, C<d_select>, C<d_sem>,
11011 C<d_semctl>, C<d_semctl_semid_ds>, C<d_semctl_semun>, C<d_semget>,
11012 C<d_semop>, C<d_sendmsg>, C<d_setegid>, C<d_seteuid>, C<d_setgrent>,
11013 C<d_setgrent_r>, C<d_setgrps>, C<d_sethent>, C<d_sethostent_r>,
11014 C<d_setitimer>, C<d_setlinebuf>, C<d_setlocale>, C<d_setlocale_r>,
11015 C<d_setnent>, C<d_setnetent_r>, C<d_setpent>, C<d_setpgid>, C<d_setpgrp2>,
11016 C<d_setpgrp>, C<d_setprior>, C<d_setproctitle>, C<d_setprotoent_r>,
11017 C<d_setpwent>, C<d_setpwent_r>, C<d_setregid>, C<d_setresgid>,
11018 C<d_setresuid>, C<d_setreuid>, C<d_setrgid>, C<d_setruid>, C<d_setsent>,
11019 C<d_setservent_r>, C<d_setsid>, C<d_setvbuf>, C<d_sfio>, C<d_shm>,
11020 C<d_shmat>, C<d_shmatprototype>, C<d_shmctl>, C<d_shmdt>, C<d_shmget>,
11021 C<d_sigaction>, C<d_sigprocmask>, C<d_sigsetjmp>, C<d_sockatmark>,
11022 C<d_sockatmarkproto>, C<d_socket>, C<d_socklen_t>, C<d_sockpair>,
11023 C<d_socks5_init>, C<d_sqrtl>, C<d_srand48_r>, C<d_srandom_r>,
11024 C<d_sresgproto>, C<d_sresuproto>, C<d_statblks>, C<d_statfs_f_flags>,
11025 C<d_statfs_s>, C<d_statvfs>, C<d_stdio_cnt_lval>, C<d_stdio_ptr_lval>,
11026 C<d_stdio_ptr_lval_nochange_cnt>, C<d_stdio_ptr_lval_sets_cnt>,
11027 C<d_stdio_stream_array>, C<d_stdiobase>, C<d_stdstdio>, C<d_strchr>,
11028 C<d_strcoll>, C<d_strctcpy>, C<d_strerrm>, C<d_strerror>, C<d_strerror_r>,
11029 C<d_strftime>, C<d_strtod>, C<d_strtol>, C<d_strtold>, C<d_strtoll>,
11030 C<d_strtoq>, C<d_strtoul>, C<d_strtoull>, C<d_strtouq>, C<d_strxfrm>,
11031 C<d_suidsafe>, C<d_symlink>, C<d_syscall>, C<d_syscallproto>, C<d_sysconf>,
11032 C<d_sysernlst>, C<d_syserrlst>, C<d_system>, C<d_tcgetpgrp>,
11033 C<d_tcsetpgrp>, C<d_telldir>, C<d_telldirproto>, C<d_time>, C<d_times>,
11034 C<d_tm_tm_gmtoff>, C<d_tm_tm_zone>, C<d_tmpnam_r>, C<d_truncate>,
11035 C<d_ttyname_r>, C<d_tzname>, C<d_u32align>, C<d_ualarm>, C<d_umask>,
11036 C<d_uname>, C<d_union_semun>, C<d_unordered>, C<d_usleep>,
11037 C<d_usleepproto>, C<d_ustat>, C<d_vendorarch>, C<d_vendorbin>,
11038 C<d_vendorlib>, C<d_vendorscript>, C<d_vfork>, C<d_void_closedir>,
11039 C<d_voidsig>, C<d_voidtty>, C<d_volatile>, C<d_vprintf>, C<d_wait4>,
11040 C<d_waitpid>, C<d_wcstombs>, C<d_wctomb>, C<d_writev>, C<d_xenix>, C<date>,
11041 C<db_hashtype>, C<db_prefixtype>, C<db_version_major>, C<db_version_minor>,
11042 C<db_version_patch>, C<defvoidused>, C<direntrytype>, C<dlext>, C<dlsrc>,
11043 C<doublesize>, C<drand01>, C<drand48_r_proto>, C<dynamic_ext>
11044
11045 =item e
11046
11047 C<eagain>, C<ebcdic>, C<echo>, C<egrep>, C<emacs>, C<endgrent_r_proto>,
11048 C<endhostent_r_proto>, C<endnetent_r_proto>, C<endprotoent_r_proto>,
11049 C<endpwent_r_proto>, C<endservent_r_proto>, C<eunicefix>, C<exe_ext>,
11050 C<expr>, C<extensions>, C<extras>
11051
11052 =item f
11053
11054 C<fflushall>, C<fflushNULL>, C<find>, C<firstmakefile>, C<flex>,
11055 C<fpossize>, C<fpostype>, C<freetype>, C<from>, C<full_ar>, C<full_csh>,
11056 C<full_sed>
11057
11058 =item g
11059
11060 C<gccansipedantic>, C<gccosandvers>, C<gccversion>, C<getgrent_r_proto>,
11061 C<getgrgid_r_proto>, C<getgrnam_r_proto>, C<gethostbyaddr_r_proto>,
11062 C<gethostbyname_r_proto>, C<gethostent_r_proto>, C<getlogin_r_proto>,
11063 C<getnetbyaddr_r_proto>, C<getnetbyname_r_proto>, C<getnetent_r_proto>,
11064 C<getprotobyname_r_proto>, C<getprotobynumber_r_proto>,
11065 C<getprotoent_r_proto>, C<getpwent_r_proto>, C<getpwnam_r_proto>,
11066 C<getpwuid_r_proto>, C<getservbyname_r_proto>, C<getservbyport_r_proto>,
11067 C<getservent_r_proto>, C<getspnam_r_proto>, C<gidformat>, C<gidsign>,
11068 C<gidsize>, C<gidtype>, C<glibpth>, C<gmake>, C<gmtime_r_proto>,
11069 C<gnulibc_version>, C<grep>, C<groupcat>, C<groupstype>, C<gzip>
11070
11071 =item h
11072
11073 C<h_fcntl>, C<h_sysfile>, C<hint>, C<hostcat>, C<html1dir>, C<html1direxp>,
11074 C<html3dir>, C<html3direxp>
11075
11076 =item i
11077
11078 C<i16size>, C<i16type>, C<i32size>, C<i32type>, C<i64size>, C<i64type>,
11079 C<i8size>, C<i8type>, C<i_arpainet>, C<i_bsdioctl>, C<i_crypt>, C<i_db>,
11080 C<i_dbm>, C<i_dirent>, C<i_dld>, C<i_dlfcn>, C<i_fcntl>, C<i_float>,
11081 C<i_fp>, C<i_fp_class>, C<i_gdbm>, C<i_grp>, C<i_ieeefp>, C<i_inttypes>,
11082 C<i_langinfo>, C<i_libutil>, C<i_limits>, C<i_locale>, C<i_machcthr>,
11083 C<i_malloc>, C<i_math>, C<i_memory>, C<i_mntent>, C<i_ndbm>, C<i_netdb>,
11084 C<i_neterrno>, C<i_netinettcp>, C<i_niin>, C<i_poll>, C<i_prot>,
11085 C<i_pthread>, C<i_pwd>, C<i_rpcsvcdbm>, C<i_sfio>, C<i_sgtty>, C<i_shadow>,
11086 C<i_socks>, C<i_stdarg>, C<i_stddef>, C<i_stdlib>, C<i_string>,
11087 C<i_sunmath>, C<i_sysaccess>, C<i_sysdir>, C<i_sysfile>, C<i_sysfilio>,
11088 C<i_sysin>, C<i_sysioctl>, C<i_syslog>, C<i_sysmman>, C<i_sysmode>,
11089 C<i_sysmount>, C<i_sysndir>, C<i_sysparam>, C<i_sysresrc>, C<i_syssecrt>,
11090 C<i_sysselct>, C<i_syssockio>, C<i_sysstat>, C<i_sysstatfs>,
11091 C<i_sysstatvfs>, C<i_systime>, C<i_systimek>, C<i_systimes>, C<i_systypes>,
11092 C<i_sysuio>, C<i_sysun>, C<i_sysutsname>, C<i_sysvfs>, C<i_syswait>,
11093 C<i_termio>, C<i_termios>, C<i_time>, C<i_unistd>, C<i_ustat>, C<i_utime>,
11094 C<i_values>, C<i_varargs>, C<i_varhdr>, C<i_vfork>,
11095 C<ignore_versioned_solibs>, C<inc_version_list>, C<inc_version_list_init>,
11096 C<incpath>, C<inews>, C<installarchlib>, C<installbin>, C<installhtml1dir>,
11097 C<installhtml3dir>, C<installman1dir>, C<installman3dir>, C<installprefix>,
11098 C<installprefixexp>, C<installprivlib>, C<installscript>,
11099 C<installsitearch>, C<installsitebin>, C<installsitehtml1>,
11100 C<installsitehtml3>, C<installsitelib>, C<installsiteman1>,
11101 C<installsiteman3>, C<installsitescript>, C<installstyle>,
11102 C<installusrbinperl>, C<installvendorarch>, C<installvendorbin>,
11103 C<installvendorhtml1>, C<installvendorhtml3>, C<installvendorlib>,
11104 C<installvendorman1>, C<installvendorman3>, C<installvendorscript>,
11105 C<intsize>, C<issymlink>, C<ivdformat>, C<ivsize>, C<ivtype>
11106
11107 =item k
11108
11109 C<known_extensions>, C<ksh>
11110
11111 =item l
11112
11113 C<ld>, C<lddlflags>, C<ldflags>, C<ldflags_uselargefiles>, C<ldlibpthname>,
11114 C<less>, C<lib_ext>, C<libc>, C<libperl>, C<libpth>, C<libs>, C<libsdirs>,
11115 C<libsfiles>, C<libsfound>, C<libspath>, C<libswanted>,
11116 C<libswanted_uselargefiles>, C<line>, C<lint>, C<lkflags>, C<ln>, C<lns>,
11117 C<localtime_r_proto>, C<locincpth>, C<loclibpth>, C<longdblsize>,
11118 C<longlongsize>, C<longsize>, C<lp>, C<lpr>, C<ls>, C<lseeksize>,
11119 C<lseektype>
11120
11121 =item m
11122
11123 C<mail>, C<mailx>, C<make>, C<make_set_make>, C<mallocobj>, C<mallocsrc>,
11124 C<malloctype>, C<man1dir>, C<man1direxp>, C<man1ext>, C<man3dir>,
11125 C<man3direxp>, C<man3ext>
11126
11127 =item M
11128
11129 C<Mcc>, C<mips_type>, C<mkdir>, C<mmaptype>, C<modetype>, C<more>,
11130 C<multiarch>, C<mv>, C<myarchname>, C<mydomain>, C<myhostname>, C<myuname>
11131
11132 =item n
11133
11134 C<n>, C<need_va_copy>, C<netdb_hlen_type>, C<netdb_host_type>,
11135 C<netdb_name_type>, C<netdb_net_type>, C<nm>, C<nm_opt>, C<nm_so_opt>,
11136 C<nonxs_ext>, C<nroff>, C<nv_preserves_uv_bits>, C<nveformat>,
11137 C<nvEUformat>, C<nvfformat>, C<nvFUformat>, C<nvgformat>, C<nvGUformat>,
11138 C<nvsize>, C<nvtype>
11139
11140 =item o
11141
11142 C<o_nonblock>, C<obj_ext>, C<old_pthread_create_joinable>, C<optimize>,
11143 C<orderlib>, C<osname>, C<osvers>, C<otherlibdirs>
11144
11145 =item p
11146
11147 C<package>, C<pager>, C<passcat>, C<patchlevel>, C<path_sep>, C<perl5>,
11148 C<perl>, C<perl_patchlevel>
11149
11150 =item P
11151
11152 C<PERL_REVISION>, C<PERL_SUBVERSION>, C<PERL_VERSION>, C<perladmin>,
11153 C<perllibs>, C<perlpath>, C<pg>, C<phostname>, C<pidtype>, C<plibpth>,
11154 C<pm_apiversion>, C<pmake>, C<pr>, C<prefix>, C<prefixexp>, C<privlib>,
11155 C<privlibexp>, C<procselfexe>, C<prototype>, C<ptrsize>
11156
11157 =item q
11158
11159 C<quadkind>, C<quadtype>
11160
11161 =item r
11162
11163 C<randbits>, C<randfunc>, C<random_r_proto>, C<randseedtype>, C<ranlib>,
11164 C<rd_nodata>, C<readdir64_r_proto>, C<readdir_r_proto>, C<revision>, C<rm>,
11165 C<rmail>, C<run>, C<runnm>
11166
11167 =item s
11168
11169 C<sched_yield>, C<scriptdir>, C<scriptdirexp>, C<sed>, C<seedfunc>,
11170 C<selectminbits>, C<selecttype>, C<sendmail>, C<setgrent_r_proto>,
11171 C<sethostent_r_proto>, C<setlocale_r_proto>, C<setnetent_r_proto>,
11172 C<setprotoent_r_proto>, C<setpwent_r_proto>, C<setservent_r_proto>, C<sh>,
11173 C<shar>, C<sharpbang>, C<shmattype>, C<shortsize>, C<shrpenv>, C<shsharp>,
11174 C<sig_count>, C<sig_name>, C<sig_name_init>, C<sig_num>, C<sig_num_init>,
11175 C<sig_size>, C<signal_t>, C<sitearch>, C<sitearchexp>, C<sitebin>,
11176 C<sitebinexp>, C<sitehtml1>, C<sitehtml1exp>, C<sitehtml3>,
11177 C<sitehtml3exp>, C<sitelib>, C<sitelib_stem>, C<sitelibexp>, C<siteman1>,
11178 C<siteman1exp>, C<siteman3>, C<siteman3exp>, C<siteprefix>,
11179 C<siteprefixexp>, C<sitescript>, C<sitescriptexp>, C<sizesize>,
11180 C<sizetype>, C<sleep>, C<smail>, C<so>, C<sockethdr>, C<socketlib>,
11181 C<socksizetype>, C<sort>, C<spackage>, C<spitshell>, C<sPRId64>,
11182 C<sPRIeldbl>, C<sPRIEUldbl>, C<sPRIfldbl>, C<sPRIFUldbl>, C<sPRIgldbl>,
11183 C<sPRIGUldbl>, C<sPRIi64>, C<sPRIo64>, C<sPRIu64>, C<sPRIx64>, C<sPRIXU64>,
11184 C<srand48_r_proto>, C<srandom_r_proto>, C<src>, C<sSCNfldbl>, C<ssizetype>,
11185 C<startperl>, C<startsh>, C<static_ext>, C<stdchar>, C<stdio_base>,
11186 C<stdio_bufsiz>, C<stdio_cnt>, C<stdio_filbuf>, C<stdio_ptr>,
11187 C<stdio_stream_array>, C<strerror_r_proto>, C<strings>, C<submit>,
11188 C<subversion>, C<sysman>
11189
11190 =item t
11191
11192 C<tail>, C<tar>, C<targetarch>, C<tbl>, C<tee>, C<test>, C<timeincl>,
11193 C<timetype>, C<tmpnam_r_proto>, C<to>, C<touch>, C<tr>, C<trnl>, C<troff>,
11194 C<ttyname_r_proto>
11195
11196 =item u
11197
11198 C<u16size>, C<u16type>, C<u32size>, C<u32type>, C<u64size>, C<u64type>,
11199 C<u8size>, C<u8type>, C<uidformat>, C<uidsign>, C<uidsize>, C<uidtype>,
11200 C<uname>, C<uniq>, C<uquadtype>, C<use5005threads>, C<use64bitall>,
11201 C<use64bitint>, C<usecrosscompile>, C<usedl>, C<usefaststdio>,
11202 C<useithreads>, C<uselargefiles>, C<uselongdouble>, C<usemorebits>,
11203 C<usemultiplicity>, C<usemymalloc>, C<usenm>, C<useopcode>, C<useperlio>,
11204 C<useposix>, C<usereentrant>, C<usesfio>, C<useshrplib>, C<usesocks>,
11205 C<usethreads>, C<usevendorprefix>, C<usevfork>, C<usrinc>, C<uuname>,
11206 C<uvoformat>, C<uvsize>, C<uvtype>, C<uvuformat>, C<uvxformat>,
11207 C<uvXUformat>
11208
11209 =item v
11210
11211 C<vendorarch>, C<vendorarchexp>, C<vendorbin>, C<vendorbinexp>,
11212 C<vendorhtml1>, C<vendorhtml1exp>, C<vendorhtml3>, C<vendorhtml3exp>,
11213 C<vendorlib>, C<vendorlib_stem>, C<vendorlibexp>, C<vendorman1>,
11214 C<vendorman1exp>, C<vendorman3>, C<vendorman3exp>, C<vendorprefix>,
11215 C<vendorprefixexp>, C<vendorscript>, C<vendorscriptexp>, C<version>,
11216 C<version_patchlevel_string>, C<versiononly>, C<vi>, C<voidflags>
11217
11218 =item x
11219
11220 C<xlibpth>, C<xs_apiversion>
11221
11222 =item y
11223
11224 C<yacc>, C<yaccflags>
11225
11226 =item z
11227
11228 C<zcat>, C<zip>
11229
11230 =back
11231
11232 =item NOTE
11233
11234 =back
11235
11236 =head2 Cwd - get pathname of current working directory
11237
11238 =over 4
11239
11240 =item SYNOPSIS
11241
11242 =item DESCRIPTION
11243
11244 =over 4
11245
11246 =item getcwd and friends
11247
11248 getcwd, cwd, fastcwd, fastgetcwd
11249
11250 =item abs_path and friends
11251
11252 abs_path, realpath, fast_abs_path
11253
11254 =item $ENV{PWD}
11255
11256 =back
11257
11258 =item NOTES
11259
11260 =item SEE ALSO
11261
11262 =back
11263
11264 =head2 DB - programmatic interface to the Perl debugging API (draft,
11265 subject to
11266 change)
11267
11268 =over 4
11269
11270 =item SYNOPSIS
11271
11272 =item DESCRIPTION
11273
11274 =over 4
11275
11276 =item Global Variables
11277
11278  $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace,  @DB::args, 
11279 @DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
11280 $DB::lineno
11281
11282 =item API Methods
11283
11284 CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
11285 CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
11286
11287 =item Client Callback Methods
11288
11289 CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
11290 CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
11291 CLIENT->output(LIST)
11292
11293 =back
11294
11295 =item BUGS
11296
11297 =item AUTHOR
11298
11299 =back
11300
11301 =head2 DB_File - Perl5 access to Berkeley DB version 1.x
11302
11303 =over 4
11304
11305 =item SYNOPSIS
11306
11307 =item DESCRIPTION
11308
11309 B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
11310
11311 =over 4
11312
11313 =item Using DB_File with Berkeley DB version 2 or greater
11314
11315 =item Interface to Berkeley DB
11316
11317 =item Opening a Berkeley DB Database File
11318
11319 =item Default Parameters
11320
11321 =item In Memory Databases
11322
11323 =back
11324
11325 =item DB_HASH
11326
11327 =over 4
11328
11329 =item A Simple Example
11330
11331 =back
11332
11333 =item DB_BTREE
11334
11335 =over 4
11336
11337 =item Changing the BTREE sort order
11338
11339 =item Handling Duplicate Keys 
11340
11341 =item The get_dup() Method
11342
11343 =item The find_dup() Method
11344
11345 =item The del_dup() Method
11346
11347 =item Matching Partial Keys 
11348
11349 =back
11350
11351 =item DB_RECNO
11352
11353 =over 4
11354
11355 =item The 'bval' Option
11356
11357 =item A Simple Example
11358
11359 =item Extra RECNO Methods
11360
11361 B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
11362 B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
11363 length, elements);>
11364
11365 =item Another Example
11366
11367 =back
11368
11369 =item THE API INTERFACE
11370
11371 B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
11372 $X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
11373 $flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
11374 $value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
11375
11376 =item DBM FILTERS
11377
11378 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
11379 B<filter_fetch_value>
11380
11381 =over 4
11382
11383 =item The Filter
11384
11385 =item An Example -- the NULL termination problem.
11386
11387 =item Another Example -- Key is a C int.
11388
11389 =back
11390
11391 =item HINTS AND TIPS 
11392
11393 =over 4
11394
11395 =item Locking: The Trouble with fd
11396
11397 =item Safe ways to lock a database
11398
11399 B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
11400
11401 =item Sharing Databases With C Applications
11402
11403 =item The untie() Gotcha
11404
11405 =back
11406
11407 =item COMMON QUESTIONS
11408
11409 =over 4
11410
11411 =item Why is there Perl source in my database?
11412
11413 =item How do I store complex data structures with DB_File?
11414
11415 =item What does "Invalid Argument" mean?
11416
11417 =item What does "Bareword 'DB_File' not allowed" mean? 
11418
11419 =back
11420
11421 =item REFERENCES
11422
11423 =item HISTORY
11424
11425 =item BUGS
11426
11427 =item AVAILABILITY
11428
11429 =item COPYRIGHT
11430
11431 =item SEE ALSO
11432
11433 =item AUTHOR
11434
11435 =back
11436
11437 =head2 Data::Dumper - stringified perl data structures, suitable for both
11438 printing and C<eval>
11439
11440 =over 4
11441
11442 =item SYNOPSIS
11443
11444 =item DESCRIPTION
11445
11446 =over 4
11447
11448 =item Methods
11449
11450 I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
11451 I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
11452 I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
11453 I<$OBJ>->Reset
11454
11455 =item Functions
11456
11457 Dumper(I<LIST>)
11458
11459 =item Configuration Variables or Methods
11460
11461 =item Exports
11462
11463 Dumper
11464
11465 =back
11466
11467 =item EXAMPLES
11468
11469 =item BUGS
11470
11471 =item AUTHOR
11472
11473 =item VERSION
11474
11475 =item SEE ALSO
11476
11477 =back
11478
11479 =head2 Devel::DProf - a Perl code profiler
11480
11481 =over 4
11482
11483 =item SYNOPSIS
11484
11485 =item DESCRIPTION
11486
11487 =item PROFILE FORMAT
11488
11489 =item AUTOLOAD
11490
11491 =item ENVIRONMENT
11492
11493 =item BUGS
11494
11495 =item SEE ALSO
11496
11497 =back
11498
11499 =head2 Devel::PPPort - Perl/Pollution/Portability
11500
11501 =over 4
11502
11503 =item SYNOPSIS
11504
11505 =item DESCRIPTION
11506
11507 =over 4
11508
11509 =item WriteFile
11510
11511 =back
11512
11513 =item ppport.h
11514
11515 =item AUTHOR
11516
11517 =item SEE ALSO
11518
11519 =back
11520
11521 =head2 Devel::Peek - A data debugging tool for the XS programmer
11522
11523 =over 4
11524
11525 =item SYNOPSIS
11526
11527 =item DESCRIPTION
11528
11529 =over 4
11530
11531 =item Runtime debugging
11532
11533 =item Memory footprint debugging
11534
11535 =back
11536
11537 =item EXAMPLES
11538
11539 =over 4
11540
11541 =item A simple scalar string
11542
11543 =item A simple scalar number
11544
11545 =item A simple scalar with an extra reference
11546
11547 =item A reference to a simple scalar
11548
11549 =item A reference to an array
11550
11551 =item A reference to a hash
11552
11553 =item Dumping a large array or hash
11554
11555 =item A reference to an SV which holds a C pointer
11556
11557 =item A reference to a subroutine
11558
11559 =back
11560
11561 =item EXPORTS
11562
11563 =item BUGS
11564
11565 =item AUTHOR
11566
11567 =item SEE ALSO
11568
11569 =back
11570
11571 =head2 Devel::SelfStubber - generate stubs for a SelfLoading module
11572
11573 =over 4
11574
11575 =item SYNOPSIS
11576
11577 =item DESCRIPTION
11578
11579 =back
11580
11581 =head2 Digest:: - Modules that calculate message digests
11582
11583 =over 4
11584
11585 =item SYNOPSIS
11586
11587 =item DESCRIPTION
11588
11589 I<binary>, I<hex>, I<base64>
11590
11591 =item OO INTERFACE
11592
11593 $ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
11594 Digest::XXX->new($arg,...), $other_ctx = $ctx->clone, $ctx->reset,
11595 $ctx->add($data,...), $ctx->addfile($io_handle), $ctx->digest,
11596 $ctx->hexdigest, $ctx->b64digest
11597
11598 =item SEE ALSO
11599
11600 =item AUTHOR
11601
11602 =back
11603
11604 =head2 Digest::MD5 - Perl interface to the MD5 Algorithm
11605
11606 =over 4
11607
11608 =item SYNOPSIS
11609
11610 =item DESCRIPTION
11611
11612 =item FUNCTIONS
11613
11614 md5($data,...), md5_hex($data,...), md5_base64($data,...)
11615
11616 =item METHODS
11617
11618 $md5 = Digest::MD5->new, $md5->clone, $md5->reset, $md5->add($data,...),
11619 $md5->addfile($io_handle), $md5->digest, $md5->hexdigest, $md5->b64digest
11620
11621 =item EXAMPLES
11622
11623 =item SEE ALSO
11624
11625 =item COPYRIGHT
11626
11627 =item AUTHORS
11628
11629 =back
11630
11631 =head2 DirHandle - supply object methods for directory handles
11632
11633 =over 4
11634
11635 =item SYNOPSIS
11636
11637 =item DESCRIPTION
11638
11639 =item NOTES
11640
11641 =back
11642
11643 =head2 Dumpvalue - provides screen dump of Perl data.
11644
11645 =over 4
11646
11647 =item SYNOPSIS
11648
11649 =item DESCRIPTION
11650
11651 =over 4
11652
11653 =item Creation
11654
11655 C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
11656 C<dumpDBFiles>, C<dumpPackages>, C<dumpReused>, C<tick>, C<quoteHighBit>,
11657 C<printUndef>, C<usageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
11658 stopDbSignal
11659
11660 =item Methods
11661
11662 dumpValue, dumpValues, stringify, dumpvars, set_quote, set_unctrl,
11663 compactDump, veryCompact, set, get
11664
11665 =back
11666
11667 =back
11668
11669 =head2 DynaLoader - Dynamically load C libraries into Perl code
11670
11671 =over 4
11672
11673 =item SYNOPSIS
11674
11675 =item DESCRIPTION
11676
11677 @dl_library_path, @dl_resolve_using, @dl_require_symbols, @dl_librefs,
11678 @dl_modules, dl_error(), $dl_debug, dl_findfile(), dl_expandspec(),
11679 dl_load_file(), dl_unload_file(), dl_load_flags(), dl_find_symbol(),
11680 dl_find_symbol_anywhere(), dl_undef_symbols(), dl_install_xsub(),
11681 bootstrap()
11682
11683 =item AUTHOR
11684
11685 =back
11686
11687 =head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
11688 Perl code
11689
11690 =over 4
11691
11692 =item SYNOPSIS
11693
11694 =item DESCRIPTION
11695
11696 =item AUTHOR
11697
11698 =back
11699
11700 =head2 Encode - character encodings
11701
11702 =over 4
11703
11704 =item SYNOPSIS
11705
11706 =over 4
11707
11708 =item Table of Contents
11709
11710 =back
11711
11712 =item DESCRIPTION
11713
11714 =over 4
11715
11716 =item TERMINOLOGY
11717
11718 =back
11719
11720 =item PERL ENCODING API
11721
11722 $octets  = encode(ENCODING, $string [, CHECK]), $string = decode(ENCODING,
11723 $octets [, CHECK]), [$length =] from_to($octets, FROM_ENC, TO_ENC [,
11724 CHECK]), $octets = encode_utf8($string);, $string = decode_utf8($octets [,
11725 CHECK]);
11726
11727 =over 4
11728
11729 =item Listing available encodings
11730
11731 =item Defining Aliases
11732
11733 =back
11734
11735 =item Encoding via PerlIO
11736
11737 =item Handling Malformed Data
11738
11739 I<CHECK> = Encode::FB_DEFAULT ( == 0), I<CHECK> = Encode::FB_CROAK ( == 1),
11740 I<CHECK> = Encode::FB_QUIET, I<CHECK> = Encode::FB_WARN, perlqq mode
11741 (I<CHECK> = Encode::FB_PERLQQ), HTML charref mode (I<CHECK> =
11742 Encode::FB_HTMLCREF), XML charref mode (I<CHECK> = Encode::FB_XMLCREF), The
11743 bitmask
11744
11745 =over 4
11746
11747 =item Unimplemented fallback schemes
11748
11749 =back
11750
11751 =item Defining Encodings
11752
11753 =item The UTF-8 flag
11754
11755 Goal #1:, Goal #2:, Goal #3:, Goal #4:
11756
11757 =over 4
11758
11759 =item Messing with Perl's Internals
11760
11761 is_utf8(STRING [, CHECK]), _utf8_on(STRING), _utf8_off(STRING)
11762
11763 =back
11764
11765 =item SEE ALSO
11766
11767 =item MAINTAINER
11768
11769 =back
11770
11771 =head2 Encode::Alias - alias definitions to encodings
11772
11773 =over 4
11774
11775 =item SYNOPSIS
11776
11777 =item DESCRIPTION
11778
11779 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
11780 reference, e.g.:
11781
11782 =over 4
11783
11784 =item Alias overloading
11785
11786 =back
11787
11788 =item SEE ALSO
11789
11790 =back
11791
11792 =head2 Encode::Byte - Single Byte Encodings
11793
11794 =over 4
11795
11796 =item SYNOPSIS
11797
11798 =item ABSTRACT
11799
11800 =item DESCRIPTION
11801
11802 =item SEE ALSO
11803
11804 =back
11805
11806 =head2 Encode::CJKConstants -- Internally used by Encode::??::ISO_2022_*
11807
11808 =head2 Encode::CN - China-based Chinese Encodings
11809
11810 =over 4
11811
11812 =item SYNOPSIS
11813
11814 =item DESCRIPTION
11815
11816 =item NOTES
11817
11818 =item BUGS
11819
11820 =item SEE ALSO
11821
11822 =back
11823
11824 =head2 Encode::CN::HZ -- internally used by Encode::CN
11825
11826 =head2 Encode::Config -- internally used by Encode
11827
11828 =head2 Encode::EBCDIC - EBCDIC Encodings
11829
11830 =over 4
11831
11832 =item SYNOPSIS
11833
11834 =item ABSTRACT
11835
11836 =item DESCRIPTION
11837
11838 =item SEE ALSO
11839
11840 =back
11841
11842 =head2 Encode::Encoding - Encode Implementation Base Class
11843
11844 =over 4
11845
11846 =item SYNOPSIS
11847
11848 =item DESCRIPTION
11849
11850 =over 4
11851
11852 =item Methods you should implement
11853
11854 -E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
11855 -E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
11856
11857 =item Other methods defined in Encode::Encodings
11858
11859 -E<gt>name, -E<gt>new_sequence, -E<gt>perlio_ok(), -E<gt>needs_lines()
11860
11861 =item Example: Encode::ROT13
11862
11863 =back
11864
11865 =item Why the heck Encode API is different?
11866
11867 =over 4
11868
11869 =item Compiled Encodings
11870
11871 =back
11872
11873 =item SEE ALSO
11874
11875 Scheme 1, Scheme 2, Other Schemes
11876
11877 =back
11878
11879 =head2 Encode::Guess -- Guesses encoding from data
11880
11881 =over 4
11882
11883 =item SYNOPSIS
11884
11885 =item ABSTRACT
11886
11887 =item DESCRIPTION
11888
11889 Encode::Guess->set_suspects, Encode::Guess->add_suspects,
11890 Encode::decode("Guess" ...), Encode::Guess->guess($data),
11891 guess_encoding($data, [, I<list of suspects>])
11892
11893 =item CAVEATS
11894
11895 =item TO DO
11896
11897 =item SEE ALSO
11898
11899 =back
11900
11901 =head2 Encode::JP - Japanese Encodings
11902
11903 =over 4
11904
11905 =item SYNOPSIS
11906
11907 =item ABSTRACT
11908
11909 =item DESCRIPTION
11910
11911 =item Note on ISO-2022-JP(-1)?
11912
11913 =item BUGS
11914
11915 =item SEE ALSO
11916
11917 =back
11918
11919 =head2 Encode::JP::H2Z -- internally used by Encode::JP::2022_JP*
11920
11921 =head2 Encode::JP::JIS7 -- internally used by Encode::JP
11922
11923 =head2 Encode::KR - Korean Encodings
11924
11925 =over 4
11926
11927 =item SYNOPSIS
11928
11929 =item DESCRIPTION
11930
11931 =item BUGS
11932
11933 =item SEE ALSO
11934
11935 =back
11936
11937 =head2 Encode::KR::2022_KR -- internally used by Encode::KR
11938
11939 =head2 Encode::MIME::Header -- MIME 'B' and 'Q' header encoding
11940
11941 =over 4
11942
11943 =item SYNOPSIS
11944
11945 =item ABSTRACT
11946
11947 =item DESCRIPTION
11948
11949 =item BUGS
11950
11951 =item SEE ALSO
11952
11953 =back
11954
11955 =head2 Encode::PerlIO -- a detailed document on Encode and PerlIO
11956
11957 =over 4
11958
11959 =item Overview
11960
11961 =item How does it work?
11962
11963 =item Line Buffering
11964
11965 =over 4
11966
11967 =item How can I tell whether my encoding fully supports PerlIO ?
11968
11969 =back
11970
11971 =item SEE ALSO
11972
11973 =back
11974
11975 =head2 Encode::Supported -- Encodings supported by Encode
11976
11977 =over 4
11978
11979 =item DESCRIPTION
11980
11981 =over 4
11982
11983 =item Encoding Names
11984
11985 =back
11986
11987 =item Supported Encodings
11988
11989 =over 4
11990
11991 =item Built-in Encodings
11992
11993 =item Encode::Unicode -- other Unicode encodings
11994
11995 =item Encode::Byte -- Extended ASCII
11996
11997 ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
11998 the Cyrillic world, gsm0338 - Hentai Latin 1
11999
12000 =item CJK: Chinese, Japanese, Korean (Multibyte)
12001
12002 Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
12003 Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
12004 Encode::JIS2K -- JIS X 0213 encodings via CPAN
12005
12006 =item Miscellaneous encodings
12007
12008 Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
12009
12010 =back
12011
12012 =item Unsupported encodings
12013
12014   ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
12015 Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
12016 System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
12017 Various Mac encodings, (Mac) Indic encodings
12018
12019 =item Encoding vs. Charset -- terminology
12020
12021 =item Encoding Classification (by Anton Tagunov and Dan Kogai)
12022
12023 =over 4
12024
12025 =item Microsoft-related naming mess
12026
12027 KS_C_5601-1987, GB2312, Big5, Shift_JIS
12028
12029 =back
12030
12031 =item Glossary
12032
12033 character repertoire, coded character set (CCS), character encoding scheme
12034 (CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
12035 UTF-16
12036
12037 =item See Also
12038
12039 =item References
12040
12041 ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
12042 RFC, UC, Unicode Glossary
12043
12044 =over 4
12045
12046 =item Other Notable Sites
12047
12048 czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
12049 "Introduction to i18n"
12050
12051 =item Offline sources
12052
12053 C<CJKV Information Processing> by Ken Lunde
12054
12055 =back
12056
12057 =back
12058
12059 =head2 Encode::Symbol - Symbol Encodings
12060
12061 =over 4
12062
12063 =item SYNOPSIS
12064
12065 =item ABSTRACT
12066
12067 =item DESCRIPTION
12068
12069 =item SEE ALSO
12070
12071 =back
12072
12073 =head2 Encode::TW - Taiwan-based Chinese Encodings
12074
12075 =over 4
12076
12077 =item SYNOPSIS
12078
12079 =item DESCRIPTION
12080
12081 =item NOTES
12082
12083 =item BUGS
12084
12085 =item SEE ALSO
12086
12087 =back
12088
12089 =head2 Encode::Unicode -- Various Unicode Transformation Formats
12090
12091 =over 4
12092
12093 =item SYNOPSIS
12094
12095 =item ABSTRACT
12096
12097 L<http://www.unicode.org/glossary/> says:, Quick Reference
12098
12099 =item Size, Endianness, and BOM
12100
12101 =over 4
12102
12103 =item by size
12104
12105 =item by endianness
12106
12107 BOM as integer when fetched in network byte order
12108
12109 =back
12110
12111 =item Surrogate Pairs
12112
12113 =item SEE ALSO
12114
12115 =back
12116
12117 =head2 Encode::lib::Encode::Alias, Encode::Alias - alias definitions to
12118 encodings
12119
12120 =over 4
12121
12122 =item SYNOPSIS
12123
12124 =item DESCRIPTION
12125
12126 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
12127 reference, e.g.:
12128
12129 =over 4
12130
12131 =item Alias overloading
12132
12133 =back
12134
12135 =item SEE ALSO
12136
12137 =back
12138
12139 =head2 Encode::lib::Encode::CJKConstants, Encode::CJKConstants.pm --
12140 Internally used by Encode::??::ISO_2022_*
12141
12142 =head2 Encode::lib::Encode::CN::HZ, Encode::CN::HZ -- internally used by
12143 Encode::CN
12144
12145 =head2 Encode::lib::Encode::Config, Encode::Config -- internally used by
12146 Encode
12147
12148 =head2 Encode::lib::Encode::Encoding, Encode::Encoding - Encode
12149 Implementation Base Class
12150
12151 =over 4
12152
12153 =item SYNOPSIS
12154
12155 =item DESCRIPTION
12156
12157 =over 4
12158
12159 =item Methods you should implement
12160
12161 -E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
12162 -E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
12163
12164 =item Other methods defined in Encode::Encodings
12165
12166 -E<gt>name, -E<gt>new_sequence, -E<gt>perlio_ok(), -E<gt>needs_lines()
12167
12168 =item Example: Encode::ROT13
12169
12170 =back
12171
12172 =item Why the heck Encode API is different?
12173
12174 =over 4
12175
12176 =item Compiled Encodings
12177
12178 =back
12179
12180 =item SEE ALSO
12181
12182 Scheme 1, Scheme 2, Other Schemes
12183
12184 =back
12185
12186 =head2 Encode::lib::Encode::Guess, Encode::Guess -- Guesses encoding from
12187 data
12188
12189 =over 4
12190
12191 =item SYNOPSIS
12192
12193 =item ABSTRACT
12194
12195 =item DESCRIPTION
12196
12197 Encode::Guess->set_suspects, Encode::Guess->add_suspects,
12198 Encode::decode("Guess" ...), Encode::Guess->guess($data),
12199 guess_encoding($data, [, I<list of suspects>])
12200
12201 =item CAVEATS
12202
12203 =item TO DO
12204
12205 =item SEE ALSO
12206
12207 =back
12208
12209 =head2 Encode::lib::Encode::JP::H2Z, Encode::JP::H2Z -- internally used by
12210 Encode::JP::2022_JP*
12211
12212 =head2 Encode::lib::Encode::JP::JIS7, Encode::JP::JIS7 -- internally used
12213 by Encode::JP
12214
12215 =head2 Encode::lib::Encode::KR::2022_KR, Encode::KR::2022_KR -- internally
12216 used by Encode::KR
12217
12218 =head2 Encode::lib::Encode::MIME::Header, Encode::MIME::Header -- MIME 'B'
12219 and 'Q' header encoding
12220
12221 =over 4
12222
12223 =item SYNOPSIS
12224
12225 =item ABSTRACT
12226
12227 =item DESCRIPTION
12228
12229 =item BUGS
12230
12231 =item SEE ALSO
12232
12233 =back
12234
12235 =head2 Encode::lib::Encode::PerlIO, Encode::PerlIO -- a detailed document
12236 on Encode and PerlIO
12237
12238 =over 4
12239
12240 =item Overview
12241
12242 =item How does it work?
12243
12244 =item Line Buffering
12245
12246 =over 4
12247
12248 =item How can I tell whether my encoding fully supports PerlIO ?
12249
12250 =back
12251
12252 =item SEE ALSO
12253
12254 =back
12255
12256 =head2 Encode::lib::Encode::Supported, Encode::Supported -- Encodings
12257 supported by Encode
12258
12259 =over 4
12260
12261 =item DESCRIPTION
12262
12263 =over 4
12264
12265 =item Encoding Names
12266
12267 =back
12268
12269 =item Supported Encodings
12270
12271 =over 4
12272
12273 =item Built-in Encodings
12274
12275 =item Encode::Unicode -- other Unicode encodings
12276
12277 =item Encode::Byte -- Extended ASCII
12278
12279 ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
12280 the Cyrillic world, gsm0338 - Hentai Latin 1
12281
12282 =item CJK: Chinese, Japanese, Korean (Multibyte)
12283
12284 Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
12285 Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
12286 Encode::JIS2K -- JIS X 0213 encodings via CPAN
12287
12288 =item Miscellaneous encodings
12289
12290 Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
12291
12292 =back
12293
12294 =item Unsupported encodings
12295
12296   ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
12297 Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
12298 System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
12299 Various Mac encodings, (Mac) Indic encodings
12300
12301 =item Encoding vs. Charset -- terminology
12302
12303 =item Encoding Classification (by Anton Tagunov and Dan Kogai)
12304
12305 =over 4
12306
12307 =item Microsoft-related naming mess
12308
12309 KS_C_5601-1987, GB2312, Big5, Shift_JIS
12310
12311 =back
12312
12313 =item Glossary
12314
12315 character repertoire, coded character set (CCS), character encoding scheme
12316 (CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
12317 UTF-16
12318
12319 =item See Also
12320
12321 =item References
12322
12323 ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
12324 RFC, UC, Unicode Glossary
12325
12326 =over 4
12327
12328 =item Other Notable Sites
12329
12330 czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
12331 "Introduction to i18n"
12332
12333 =item Offline sources
12334
12335 C<CJKV Information Processing> by Ken Lunde
12336
12337 =back
12338
12339 =back
12340
12341 =head2 Encode::lib::Encoder, Encode::Encoder -- Object Oriented Encoder
12342
12343 =over 4
12344
12345 =item SYNOPSIS
12346
12347 =item ABSTRACT
12348
12349 =item Description
12350
12351 =over 4
12352
12353 =item Predefined Methods
12354
12355 $e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
12356 $e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
12357 $e-E<gt>bytes([$encoding])
12358
12359 =item Example: base64 transcoder
12360
12361 =item Operator Overloading
12362
12363 =back
12364
12365 =item SEE ALSO
12366
12367 =back
12368
12369 =head2 Encodencoding, encoding - allows you to write your script in
12370 non-ascii or non-utf8
12371
12372 =over 4
12373
12374 =item SYNOPSIS
12375
12376 =item ABSTRACT
12377
12378 =over 4
12379
12380 =item Literal Conversions
12381
12382 =item PerlIO layers for C<STD(IN|OUT)>
12383
12384 =back
12385
12386 =item FEATURES THAT REQUIRE 5.8.1
12387
12388 "NON-EUC" doublebyte encodings, tr//, DATA pseudo-filehandle
12389
12390 =item USAGE
12391
12392 use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
12393 I<ENCNAME_IN> ...] ;, use encoding I<ENCNAME> Filter=E<gt>1;, no encoding;
12394
12395 =item The Filter Option
12396
12397 =over 4
12398
12399 =item Filter-related changes at Encode version 1.87
12400
12401 =back
12402
12403 =item CAVEATS
12404
12405 =over 4
12406
12407 =item NOT SCOPED
12408
12409 =item DO NOT MIX MULTIPLE ENCODINGS
12410
12411 =item tr/// with ranges
12412
12413 Legend of characters above
12414
12415 =back
12416
12417 =item EXAMPLE - Greekperl
12418
12419 =item KNOWN PROBLEMS
12420
12421 literals in regex that are longer than 127 bytes, EBCDIC, format
12422
12423 =item HISTORY
12424
12425 =item SEE ALSO
12426
12427 =back
12428
12429 =head2 Encoder, Encode::Encoder -- Object Oriented Encoder
12430
12431 =over 4
12432
12433 =item SYNOPSIS
12434
12435 =item ABSTRACT
12436
12437 =item Description
12438
12439 =over 4
12440
12441 =item Predefined Methods
12442
12443 $e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
12444 $e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
12445 $e-E<gt>bytes([$encoding])
12446
12447 =item Example: base64 transcoder
12448
12449 =item Operator Overloading
12450
12451 =back
12452
12453 =item SEE ALSO
12454
12455 =back
12456
12457 =head2 English - use nice English (or awk) names for ugly punctuation
12458 variables
12459
12460 =over 4
12461
12462 =item SYNOPSIS
12463
12464 =item DESCRIPTION
12465
12466 =item PERFORMANCE
12467
12468 =back
12469
12470 =head2 Env - perl module that imports environment variables as scalars or
12471 arrays
12472
12473 =over 4
12474
12475 =item SYNOPSIS
12476
12477 =item DESCRIPTION
12478
12479 =item LIMITATIONS
12480
12481 =item AUTHOR
12482
12483 =back
12484
12485 =head2 Errno - System errno constants
12486
12487 =over 4
12488
12489 =item SYNOPSIS
12490
12491 =item DESCRIPTION
12492
12493 =item CAVEATS
12494
12495 =item AUTHOR
12496
12497 =item COPYRIGHT
12498
12499 =back
12500
12501 =head2 Exporter - Implements default import method for modules
12502
12503 =over 4
12504
12505 =item SYNOPSIS
12506
12507 =item DESCRIPTION
12508
12509 =over 4
12510
12511 =item How to Export
12512
12513 =item Selecting What To Export
12514
12515 =item How to Import
12516
12517 C<use ModuleName;>, C<use ModuleName ();>, C<use ModuleName qw(...);>
12518
12519 =back
12520
12521 =item Advanced features
12522
12523 =over 4
12524
12525 =item Specialised Import Lists
12526
12527 =item Exporting without using Exporter's import method
12528
12529 =item Module Version Checking
12530
12531 =item Managing Unknown Symbols
12532
12533 =item Tag Handling Utility Functions
12534
12535 =item Generating combined tags
12536
12537 =item C<AUTOLOAD>ed Constants
12538
12539 =back
12540
12541 =back
12542
12543 =head2 Exporter::Heavy - Exporter guts
12544
12545 =over 4
12546
12547 =item SYNOPSIS
12548
12549 =item DESCRIPTION
12550
12551 =back
12552
12553 =head2 ExtUtils::Command - utilities to replace common UNIX commands in
12554 Makefiles etc.
12555
12556 =over 4
12557
12558 =item SYNOPSIS
12559
12560 =item DESCRIPTION
12561
12562 =back
12563
12564 cat
12565
12566 eqtime src dst
12567
12568 rm_rf files...
12569
12570 rm_f files...
12571
12572 touch files ..
12573
12574 mv source... destination
12575
12576 cp source... destination
12577
12578 chmod mode files..
12579
12580 mkpath directory..
12581
12582 test_f file
12583
12584 =over 4
12585
12586 =item BUGS
12587
12588 =item SEE ALSO 
12589
12590 =item AUTHOR
12591
12592 =back
12593
12594 =head2 ExtUtils::Command::MM - Commands for the MM's to use in Makefiles
12595
12596 =over 4
12597
12598 =item SYNOPSIS
12599
12600 =item DESCRIPTION
12601
12602 B<test_harness>
12603
12604 =back
12605
12606 B<pod2man>
12607
12608 B<warn_if_old_packlist>
12609
12610 B<perllocal_install>
12611
12612 B<uninstall>
12613
12614 =head2 ExtUtils::Constant - generate XS code to import C header constants
12615
12616 =over 4
12617
12618 =item SYNOPSIS
12619
12620 =item DESCRIPTION
12621
12622 =item USAGE
12623
12624 IV, UV, NV, PV, PVN, SV, YES, NO, UNDEF
12625
12626 =item FUNCTIONS
12627
12628 =back
12629
12630 C_stringify NAME
12631
12632 perl_stringify NAME
12633
12634 constant_types
12635
12636 memEQ_clause NAME, CHECKED_AT, INDENT
12637
12638 assign INDENT, TYPE, PRE, POST, VALUE..
12639
12640 return_clause
12641
12642 switch_clause INDENT, NAMELEN, ITEMHASH, ITEM..
12643
12644 params WHAT
12645
12646 dump_names
12647
12648 dogfood
12649
12650 C_constant, name, type, value, macro, default, pre, post, def_pre =item
12651 def_post, utf8
12652
12653 XS_constant PACKAGE, TYPES, SUBNAME, C_SUBNAME
12654
12655 autoload PACKAGE, VERSION, AUTOLOADER
12656
12657 WriteMakefileSnippet
12658
12659 WriteConstants ATTRIBUTE =E<gt> VALUE [, ...], NAME, DEFAULT_TYPE,
12660 BREAKOUT_AT, NAMES, C_FILE, XS_FILE, SUBNAME, C_SUBNAME
12661
12662 =over 4
12663
12664 =item AUTHOR
12665
12666 =back
12667
12668 =head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
12669
12670 =over 4
12671
12672 =item SYNOPSIS
12673
12674 =item DESCRIPTION
12675
12676 =item @EXPORT
12677
12678 =item FUNCTIONS
12679
12680 xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
12681 ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
12682
12683 =item EXAMPLES
12684
12685 =item SEE ALSO
12686
12687 =item AUTHOR
12688
12689 =back
12690
12691 =head2 ExtUtils::Install - install files from here to there
12692
12693 =over 4
12694
12695 =item SYNOPSIS
12696
12697 =item DESCRIPTION
12698
12699 =over 4
12700
12701 =item Functions
12702
12703 B<install>
12704
12705 =back
12706
12707 =back
12708
12709 B<install_default> I<DISCOURAGED>
12710
12711 B<uninstall>
12712
12713 B<pm_to_blib>
12714
12715 _autosplit
12716
12717 =over 4
12718
12719 =item ENVIRONMENT
12720
12721 B<PERL_INSTALL_ROOT>
12722
12723 =item AUTHOR
12724
12725 =item LICENSE
12726
12727 =back
12728
12729 =head2 ExtUtils::Installed - Inventory management of installed modules
12730
12731 =over 4
12732
12733 =item SYNOPSIS
12734
12735 =item DESCRIPTION
12736
12737 =item USAGE
12738
12739 =item FUNCTIONS
12740
12741 new(), modules(), files(), directories(), directory_tree(), validate(),
12742 packlist(), version()
12743
12744 =item EXAMPLE
12745
12746 =item AUTHOR
12747
12748 =back
12749
12750 =head2 ExtUtils::Liblist - determine libraries to use and how to use them
12751
12752 =over 4
12753
12754 =item SYNOPSIS
12755
12756 =item DESCRIPTION
12757
12758 For static extensions, For dynamic extensions at build/link time, For
12759 dynamic extensions at load time
12760
12761 =over 4
12762
12763 =item EXTRALIBS
12764
12765 =item LDLOADLIBS and LD_RUN_PATH
12766
12767 =item BSLOADLIBS
12768
12769 =back
12770
12771 =item PORTABILITY
12772
12773 =over 4
12774
12775 =item VMS implementation
12776
12777 =item Win32 implementation
12778
12779 =back
12780
12781 =item SEE ALSO
12782
12783 =back
12784
12785 =head2 ExtUtils::MM - OS adjusted ExtUtils::MakeMaker subclass
12786
12787 =over 4
12788
12789 =item SYNOPSIS
12790
12791 =item DESCRIPTION
12792
12793 =back
12794
12795 =head2 ExtUtils::MM_Any - Platform agnostic MM methods
12796
12797 =over 4
12798
12799 =item SYNOPSIS
12800
12801 =item DESCRIPTION
12802
12803 =item Inherently Cross-Platform Methods
12804
12805 os_flavor_is
12806
12807 =back
12808
12809 =over 4
12810
12811 =item File::Spec wrappers
12812
12813 catfile
12814
12815 =back
12816
12817 =over 4
12818
12819 =item Thought To Be Cross-Platform Methods
12820
12821 B<split_command>
12822
12823 =back
12824
12825 B<echo>
12826
12827 init_VERSION
12828
12829 wraplist
12830
12831 manifypods
12832
12833 manifypods_target
12834
12835 makemakerdflt_target
12836
12837 special_targets
12838
12839 POD2MAN_EXE_macro
12840
12841 test_via_harness
12842
12843 test_via_script
12844
12845 libscan
12846
12847 tool_autosplit
12848
12849 all_target
12850
12851 metafile_target
12852
12853 metafile_addtomanifest_target
12854
12855 =over 4
12856
12857 =item Abstract methods
12858
12859 oneliner, B<quote_literal>, B<escape_newlines>, max_exec_len,
12860 B<init_others>, init_DIRFILESEP, init_linker, init_platform,
12861 platform_constants
12862
12863 =back
12864
12865 os_flavor
12866
12867 =over 4
12868
12869 =item AUTHOR
12870
12871 =back
12872
12873 =head2 ExtUtils::MM_BeOS - methods to override UN*X behaviour in
12874 ExtUtils::MakeMaker
12875
12876 =over 4
12877
12878 =item SYNOPSIS
12879
12880 =item DESCRIPTION
12881
12882 =back
12883
12884 os_flavor (o)
12885
12886 init_linker
12887
12888 =head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
12889 ExtUtils::MakeMaker
12890
12891 =over 4
12892
12893 =item SYNOPSIS
12894
12895 =item DESCRIPTION
12896
12897 os_flavor (o)
12898
12899 =back
12900
12901 cflags (o)
12902
12903 replace_manpage_separator (o)
12904
12905 init_linker
12906
12907 =head2 ExtUtils::MM_DOS - DOS specific subclass of ExtUtils::MM_Unix
12908
12909 =over 4
12910
12911 =item SYNOPSIS
12912
12913 =item DESCRIPTION
12914
12915 =over 4
12916
12917 =item Overridden methods
12918
12919 os_flavor
12920
12921 =back
12922
12923 =back
12924
12925 B<replace_manpage_separator>
12926
12927 =over 4
12928
12929 =item AUTHOR
12930
12931 =item SEE ALSO
12932
12933 =back
12934
12935 =head2 ExtUtils::MM_MacOS - methods to override UN*X behaviour in
12936 ExtUtils::MakeMaker
12937
12938 =over 4
12939
12940 =item SYNOPSIS
12941
12942 =item DESCRIPTION
12943
12944 =back
12945
12946 maybe_command
12947
12948 guess_name
12949
12950 macify
12951
12952 patternify
12953
12954 init_main
12955
12956 init_others
12957
12958 init_platform, platform_constants
12959
12960 init_dirscan
12961
12962 init_VERSION (o)
12963
12964 special_targets (o)
12965
12966 static (o)
12967
12968 dlsyms (o)
12969
12970 dynamic (o)
12971
12972 clean (o)
12973
12974 clean_subdirs_target
12975
12976 realclean (o)
12977
12978 realclean_subdirs_target
12979
12980 rulez (o)
12981
12982 processPL (o)
12983
12984 os_flavor
12985
12986 =head2 ExtUtils::MM_NW5 - methods to override UN*X behaviour in
12987 ExtUtils::MakeMaker
12988
12989 =over 4
12990
12991 =item SYNOPSIS
12992
12993 =item DESCRIPTION
12994
12995 =back
12996
12997 os_flavor
12998
12999 init_platform (o), platform_constants
13000
13001 const_cccmd (o)
13002
13003 static_lib (o)
13004
13005 dynamic_lib (o)
13006
13007 =head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
13008 ExtUtils::MakeMaker
13009
13010 =over 4
13011
13012 =item SYNOPSIS
13013
13014 =item DESCRIPTION
13015
13016 =item METHODS
13017
13018 init_dist (o)
13019
13020 =back
13021
13022 init_linker
13023
13024 os_flavor
13025
13026 =head2 ExtUtils::MM_UWIN - U/WIN specific subclass of ExtUtils::MM_Unix
13027
13028 =over 4
13029
13030 =item SYNOPSIS
13031
13032 =item DESCRIPTION
13033
13034 =over 4
13035
13036 =item Overridden methods
13037
13038 os_flavor
13039
13040 =back
13041
13042 =back
13043
13044 B<replace_manpage_separator>
13045
13046 =over 4
13047
13048 =item AUTHOR
13049
13050 =item SEE ALSO
13051
13052 =back
13053
13054 =head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
13055
13056 =over 4
13057
13058 =item SYNOPSIS
13059
13060 =item DESCRIPTION
13061
13062 =item METHODS
13063
13064 =back
13065
13066 =over 4
13067
13068 =item Methods
13069
13070 os_flavor (o)
13071
13072 =back
13073
13074 c_o (o)
13075
13076 cflags (o)
13077
13078 clean (o)
13079
13080 clean_subdirs_target
13081
13082 const_cccmd (o)
13083
13084 const_config (o)
13085
13086 const_loadlibs (o)
13087
13088 constants (o)
13089
13090 depend (o)
13091
13092 dir_target (o)
13093
13094 init_dist
13095
13096 dist (o)
13097
13098 dist_basics (o)
13099
13100 dist_ci (o)
13101
13102 dist_core (o)
13103
13104 B<dist_target>
13105
13106 B<tardist_target>
13107
13108 B<zipdist_target>
13109
13110 B<tarfile_target>
13111
13112 zipfile_target
13113
13114 uutardist_target
13115
13116 shdist_target
13117
13118 distdir
13119
13120 dist_test
13121
13122 dlsyms (o)
13123
13124 dynamic (o)
13125
13126 dynamic_bs (o)
13127
13128 dynamic_lib (o)
13129
13130 exescan
13131
13132 extliblist
13133
13134 find_perl
13135
13136 find_tests
13137
13138 =over 4
13139
13140 =item Methods to actually produce chunks of text for the Makefile
13141
13142 fixin
13143
13144 =back
13145
13146 force (o)
13147
13148 guess_name
13149
13150 has_link_code
13151
13152 init_dirscan
13153
13154 init_DIRFILESEP
13155
13156 init_main
13157
13158 init_others
13159
13160 init_INST
13161
13162 init_INSTALL
13163
13164 init_linker
13165
13166 init_lib2arch
13167
13168 init_PERL
13169
13170 init_platform (o), platform_constants (o)
13171
13172 init_PERM
13173
13174 init_xs
13175
13176 install (o)
13177
13178 installbin (o)
13179
13180 linkext (o)
13181
13182 lsdir
13183
13184 macro (o)
13185
13186 makeaperl (o)
13187
13188 makefile (o)
13189
13190 maybe_command
13191
13192 needs_linking (o)
13193
13194 nicetext
13195
13196 parse_abstract
13197
13198 parse_version
13199
13200 pasthru (o)
13201
13202 perl_script
13203
13204 perldepend (o)
13205
13206 perm_rw (o)
13207
13208 perm_rwx (o)
13209
13210 pm_to_blib
13211
13212 post_constants (o)
13213
13214 post_initialize (o)
13215
13216 postamble (o)
13217
13218 ppd
13219
13220 prefixify
13221
13222 processPL (o)
13223
13224 quote_paren
13225
13226 realclean (o)
13227
13228 realclean_subdirs_target
13229
13230 replace_manpage_separator
13231
13232 oneliner (o)
13233
13234 quote_literal
13235
13236 escape_newlines
13237
13238 max_exec_len
13239
13240 static (o)
13241
13242 static_lib (o)
13243
13244 staticmake (o)
13245
13246 subdir_x (o)
13247
13248 subdirs (o)
13249
13250 test (o)
13251
13252 test_via_harness (override)
13253
13254 test_via_script (override)
13255
13256 tools_other (o)
13257
13258 tool_xsubpp (o)
13259
13260 all_target
13261
13262 top_targets (o)
13263
13264 writedoc
13265
13266 xs_c (o)
13267
13268 xs_cpp (o)
13269
13270 xs_o (o)
13271
13272 =over 4
13273
13274 =item SEE ALSO
13275
13276 =back
13277
13278 =head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
13279 ExtUtils::MakeMaker
13280
13281 =over 4
13282
13283 =item SYNOPSIS
13284
13285 =item DESCRIPTION
13286
13287 =over 4
13288
13289 =item Methods always loaded
13290
13291 wraplist
13292
13293 =back
13294
13295 =back
13296
13297 =over 4
13298
13299 =item Methods
13300
13301 guess_name (override)
13302
13303 =back
13304
13305 find_perl (override)
13306
13307 maybe_command (override)
13308
13309 perl_script (override)
13310
13311 replace_manpage_separator
13312
13313 init_DIRFILESEP
13314
13315 init_main (override)
13316
13317 init_others (override)
13318
13319 init_platform (override)
13320
13321 platform_constants
13322
13323 init_VERSION (override)
13324
13325 constants (override)
13326
13327 special_targets
13328
13329 cflags (override)
13330
13331 const_cccmd (override)
13332
13333 tool_sxubpp (override)
13334
13335 xsubpp_version (override)
13336
13337 tools_other (override)
13338
13339 init_dist (override)
13340
13341 c_o (override)
13342
13343 xs_c (override)
13344
13345 xs_o (override)
13346
13347 dlsyms (override)
13348
13349 dynamic_lib (override)
13350
13351 dynamic_bs (override)
13352
13353 static_lib (override)
13354
13355 processPL (override)
13356
13357 installbin (override)
13358
13359 subdir_x (override)
13360
13361 clean (override)
13362
13363 clean_subdirs_target
13364
13365 realclean (override)
13366
13367 zipfile_target (o), tarfile_target (o), shdist_target (o)
13368
13369 dist_test (override)
13370
13371 install (override)
13372
13373 perldepend (override)
13374
13375 makefile (override)
13376
13377 find_tests (override)
13378
13379 test (override)
13380
13381 makeaperl (override)
13382
13383 nicetext (override)
13384
13385 prefixify (override)
13386
13387 oneliner (o)
13388
13389 B<echo> (o)
13390
13391 quote_literal
13392
13393 escape_newlines
13394
13395 max_exec_len
13396
13397 init_linker (o)
13398
13399 eliminate_macros
13400
13401 fixpath
13402
13403 os_flavor
13404
13405 =head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
13406 ExtUtils::MakeMaker
13407
13408 =over 4
13409
13410 =item SYNOPSIS
13411
13412 =item DESCRIPTION
13413
13414 =back
13415
13416 =over 4
13417
13418 =item Overridden methods
13419
13420 B<dlsyms>
13421
13422 =back
13423
13424 replace_manpage_separator
13425
13426 B<maybe_command>
13427
13428 B<find_tests>
13429
13430 B<init_DIRFILESEP>
13431
13432 B<init_others>
13433
13434 init_platform (o), platform_constants (o)
13435
13436 special_targets (o)
13437
13438 static_lib (o)
13439
13440 dynamic_lib (o)
13441
13442 clean
13443
13444 init_linker
13445
13446 perl_script
13447
13448 xs_o (o)
13449
13450 pasthru (o)
13451
13452 oneliner (o)
13453
13454 max_exec_len
13455
13456 os_flavor
13457
13458 =head2 ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X
13459
13460 =over 4
13461
13462 =item SYNOPSIS
13463
13464 =item DESCRIPTION
13465
13466 =over 4
13467
13468 =item Overriden methods
13469
13470 dist_test
13471
13472 =back
13473
13474 =back
13475
13476 subdir_x
13477
13478 xs_c
13479
13480 xs_cpp
13481
13482 xs_o
13483
13484 clean_subdirs_target
13485
13486 realclean_subdirs_target
13487
13488 max_exec_len
13489
13490 os_flavor
13491
13492 =over 4
13493
13494 =item AUTHOR
13495
13496 =back
13497
13498 =head2 ExtUtils::MY - ExtUtils::MakeMaker subclass for customization
13499
13500 =over 4
13501
13502 =item SYNOPSIS
13503
13504 =item DESCRIPTION
13505
13506 =back
13507
13508 =head2 ExtUtils::MakeMaker - Create a module Makefile
13509
13510 =over 4
13511
13512 =item SYNOPSIS
13513
13514 =item DESCRIPTION
13515
13516 =over 4
13517
13518 =item How To Write A Makefile.PL
13519
13520 =item Default Makefile Behaviour
13521
13522 =item make test
13523
13524 =item make testdb
13525
13526 =item make install
13527
13528 =item PREFIX and LIB attribute
13529
13530 =item AFS users
13531
13532 =item Static Linking of a new Perl Binary
13533
13534 =item Determination of Perl Library and Installation Locations
13535
13536 =item Which architecture dependent directory?
13537
13538 =item Using Attributes and Parameters
13539
13540 ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CCFLAGS, CONFIG,
13541 CONFIGURE, DEFINE, DESTDIR, DIR, DISTNAME, DISTVNAME, DL_FUNCS, DL_VARS,
13542 EXCLUDE_EXT, EXE_FILES, FIRST_MAKEFILE, FULLPERL, FULLPERLRUN,
13543 FULLPERLRUNINST, FUNCLIST, H, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB,
13544 INSTALLBIN, INSTALLDIRS, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB,
13545 INSTALLSCRIPT, INSTALLSITEARCH, INSTALLSITEBIN, INSTALLSITELIB,
13546 INSTALLSITEMAN1DIR, INSTALLSITEMAN3DIR, INSTALLVENDORARCH,
13547 INSTALLVENDORBIN, INSTALLVENDORLIB, INSTALLVENDORMAN1DIR,
13548 INSTALLVENDORMAN3DIR, INST_ARCHLIB, INST_BIN, INST_LIB, INST_MAN1DIR,
13549 INST_MAN3DIR, INST_SCRIPT, LD, LDDLFLAGS, LDFROM, LIB, LIBPERL_A, LIBS,
13550 LINKTYPE, MAKEAPERL, MAKEFILE_OLD, MAN1PODS, MAN3PODS, MAP_TARGET,
13551 MYEXTLIB, NAME, NEEDS_LINKING, NOECHO, NORECURS, NO_VC, OBJECT, OPTIMIZE,
13552 PERL, PERL_CORE, PERLMAINCC, PERL_ARCHLIB, PERL_LIB, PERL_MALLOC_OK,
13553 PERLPREFIX, PERLRUN, PERLRUNINST, PERL_SRC, PERM_RW, PERM_RWX, PL_FILES,
13554 PM, PMLIBDIRS, PM_FILTER, POLLUTE, PPM_INSTALL_EXEC, PPM_INSTALL_SCRIPT,
13555 PREFIX, PREREQ_FATAL, PREREQ_PM, PREREQ_PRINT, PRINT_PREREQ, SITEPREFIX,
13556 SKIP, TYPEMAPS, VENDORPREFIX, VERBINST, VERSION, VERSION_FROM, VERSION_SYM,
13557 XS, XSOPT, XSPROTOARG, XS_VERSION
13558
13559 =item Additional lowercase attributes
13560
13561 clean, depend, dist, dynamic_lib, linkext, macro, realclean, test,
13562 tool_autosplit
13563
13564 =item Overriding MakeMaker Methods
13565
13566 =item The End Of Cargo Cult Programming
13567
13568 C<<MAN3PODS => ' '>>
13569
13570 =item Hintsfile support
13571
13572 =item Distribution Support
13573
13574    make distcheck,    make skipcheck,    make distclean,    make manifest, 
13575   make distdir,   make disttest,    make tardist,    make dist,    make
13576 uutardist,    make shdist,    make zipdist,    make ci
13577
13578 =item Disabling an extension
13579
13580 =item Other Handy Functions
13581
13582 prompt
13583
13584 =back
13585
13586 =item ENVIRONMENT
13587
13588 PERL_MM_OPT, PERL_MM_USE_DEFAULT
13589
13590 =item SEE ALSO
13591
13592 =item AUTHORS
13593
13594 =item LICENSE
13595
13596 =back
13597
13598 =head2 ExtUtils::MakeMaker::FAQ - Frequently Asked Questions About
13599 MakeMaker
13600
13601 =over 4
13602
13603 =item DESCRIPTION
13604
13605 =over 4
13606
13607 =item Philosophy and History
13608
13609 Why not just use <insert other build config tool here>?, What's
13610 Module::Build and how does it relate to MakeMaker?, pure perl.  no make, no
13611 shell commands, easier to customize, cleaner internals, less cruft
13612
13613 =item XS
13614
13615 How to I prevent "object version X.XX does not match bootstrap parameter
13616 Y.YY" errors?, How do I make two or more XS files coexist in the same
13617 directory?
13618
13619 =back
13620
13621 =item PATCHING
13622
13623 =item AUTHOR
13624
13625 =item SEE ALSO
13626
13627 =back
13628
13629 =head2 ExtUtils::MakeMaker::Tutorial - Writing a module with MakeMaker
13630
13631 =over 4
13632
13633 =item SYNOPSIS
13634
13635 =item DESCRIPTION
13636
13637 =over 4
13638
13639 =item The Mantra
13640
13641 =item The Layout
13642
13643 Makefile.PL, MANIFEST, lib/, t/, Changes, README, INSTALL, MANIFEST.SKIP,
13644 bin/
13645
13646 =back
13647
13648 =item SEE ALSO
13649
13650 =back
13651
13652 =head2 ExtUtils::MakeMaker::vmsish - Platform agnostic vmsish.pm
13653
13654 =over 4
13655
13656 =item SYNOPSIS
13657
13658 =item DESCRIPTION
13659
13660 =back
13661
13662 =head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
13663
13664 =over 4
13665
13666 =item SYNOPSIS
13667
13668 =item DESCRIPTION
13669
13670 =over 4
13671
13672 =item Functions
13673
13674 mkmanifest
13675
13676 =back
13677
13678 =back
13679
13680 manifind
13681
13682 manicheck
13683
13684 filecheck
13685
13686 fullcheck
13687
13688 skipcheck
13689
13690 maniread
13691
13692 manicopy
13693
13694 maniadd
13695
13696 =over 4
13697
13698 =item MANIFEST
13699
13700 =item MANIFEST.SKIP
13701
13702 =item EXPORT_OK
13703
13704 =item GLOBAL VARIABLES
13705
13706 =back
13707
13708 =over 4
13709
13710 =item DIAGNOSTICS
13711
13712 C<Not in MANIFEST:> I<file>, C<Skipping> I<file>, C<No such file:> I<file>,
13713 C<MANIFEST:> I<$!>, C<Added to MANIFEST:> I<file>
13714
13715 =item ENVIRONMENT
13716
13717 B<PERL_MM_MANIFEST_DEBUG>
13718
13719 =item SEE ALSO
13720
13721 =item AUTHOR
13722
13723 =back
13724
13725 =head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
13726
13727 =over 4
13728
13729 =item SYNOPSIS
13730
13731 =item DESCRIPTION
13732
13733 =back
13734
13735 =head2 ExtUtils::Mksymlists - write linker options files for dynamic
13736 extension
13737
13738 =over 4
13739
13740 =item SYNOPSIS
13741
13742 =item DESCRIPTION
13743
13744 DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
13745
13746 =item AUTHOR
13747
13748 =item REVISION
13749
13750 =back
13751
13752 =head2 ExtUtils::Packlist - manage .packlist files
13753
13754 =over 4
13755
13756 =item SYNOPSIS
13757
13758 =item DESCRIPTION
13759
13760 =item USAGE
13761
13762 =item FUNCTIONS
13763
13764 new(), read(), write(), validate(), packlist_file()
13765
13766 =item EXAMPLE
13767
13768 =item AUTHOR
13769
13770 =back
13771
13772 =head2 ExtUtils::testlib - add blib/* directories to @INC
13773
13774 =over 4
13775
13776 =item SYNOPSIS
13777
13778 =item DESCRIPTION
13779
13780 =back
13781
13782 =head2 Fatal - replace functions with equivalents which succeed or die
13783
13784 =over 4
13785
13786 =item SYNOPSIS
13787
13788 =item DESCRIPTION
13789
13790 =item AUTHOR
13791
13792 =back
13793
13794 =head2 Fcntl - load the C Fcntl.h defines
13795
13796 =over 4
13797
13798 =item SYNOPSIS
13799
13800 =item DESCRIPTION
13801
13802 =item NOTE
13803
13804 =item EXPORTED SYMBOLS
13805
13806 =back
13807
13808 =head2 File::Basename, fileparse - split a pathname into pieces
13809
13810 =over 4
13811
13812 =item SYNOPSIS
13813
13814 =item DESCRIPTION
13815
13816 fileparse_set_fstype, fileparse
13817
13818 =item EXAMPLES
13819
13820 C<basename>, C<dirname>
13821
13822 =back
13823
13824 =head2 File::CheckTree, validate - run many filetest checks on a tree
13825
13826 =over 4
13827
13828 =item SYNOPSIS
13829
13830 =item DESCRIPTION
13831
13832 =item AUTHOR
13833
13834 =item HISTORY
13835
13836 =back
13837
13838 =head2 File::Compare - Compare files or filehandles
13839
13840 =over 4
13841
13842 =item SYNOPSIS
13843
13844 =item DESCRIPTION
13845
13846 =item RETURN
13847
13848 =item AUTHOR
13849
13850 =back
13851
13852 =head2 File::Copy - Copy files or filehandles
13853
13854 =over 4
13855
13856 =item SYNOPSIS
13857
13858 =item DESCRIPTION
13859
13860 =over 4
13861
13862 =item Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
13863
13864 rmscopy($from,$to[,$date_flag])
13865
13866 =back
13867
13868 =item RETURN
13869
13870 =item NOTES
13871
13872 =item AUTHOR
13873
13874 =back
13875
13876 =head2 File::DosGlob - DOS like globbing and then some
13877
13878 =over 4
13879
13880 =item SYNOPSIS
13881
13882 =item DESCRIPTION
13883
13884 =item NOTES
13885
13886 =item EXPORTS (by request only)
13887
13888 =item BUGS
13889
13890 =item AUTHOR
13891
13892 =item HISTORY
13893
13894 =item SEE ALSO
13895
13896 =back
13897
13898 =head2 File::Find - Traverse a directory tree.
13899
13900 =over 4
13901
13902 =item SYNOPSIS
13903
13904 =item DESCRIPTION
13905
13906 B<find>, B<finddepth>
13907
13908 =over 4
13909
13910 =item %options
13911
13912 C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
13913 C<follow_fast>, C<follow_skip>, C<dangling_symlinks>, C<no_chdir>,
13914 C<untaint>, C<untaint_pattern>, C<untaint_skip>
13915
13916 =item The wanted function
13917
13918 C<$File::Find::dir> is the current directory name,, C<$_> is the current
13919 filename within that directory, C<$File::Find::name> is the complete
13920 pathname to the file
13921
13922 =back
13923
13924 =item WARNINGS
13925
13926 =item CAVEAT
13927
13928 $dont_use_nlink, symlinks
13929
13930 =item NOTES
13931
13932 =item HISTORY
13933
13934 =back
13935
13936 =head2 File::Glob - Perl extension for BSD glob routine
13937
13938 =over 4
13939
13940 =item SYNOPSIS
13941
13942 =item DESCRIPTION
13943
13944 C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
13945 C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
13946 C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
13947
13948 =item DIAGNOSTICS
13949
13950 C<GLOB_NOSPACE>, C<GLOB_ABEND>
13951
13952 =item NOTES
13953
13954 =item AUTHOR
13955
13956 =back
13957
13958 =head2 File::Path - create or remove directory trees
13959
13960 =over 4
13961
13962 =item SYNOPSIS
13963
13964 =item DESCRIPTION
13965
13966 =item AUTHORS
13967
13968 =back
13969
13970 =head2 File::Spec - portably perform operations on file names
13971
13972 =over 4
13973
13974 =item SYNOPSIS
13975
13976 =item DESCRIPTION
13977
13978 =item METHODS
13979
13980 canonpath, catdir, catfile, curdir, devnull, rootdir, tmpdir, updir,
13981 no_upwards, case_tolerant, file_name_is_absolute, path, join, splitpath,
13982 splitdir, catpath(), abs2rel, rel2abs()
13983
13984 =item SEE ALSO
13985
13986 =item AUTHORS
13987
13988 =back
13989
13990 =head2 File::Spec::Cygwin - methods for Cygwin file specs
13991
13992 =over 4
13993
13994 =item SYNOPSIS
13995
13996 =item DESCRIPTION
13997
13998 =back
13999
14000 canonpath
14001
14002 file_name_is_absolute
14003
14004 tmpdir (override)
14005
14006 =head2 File::Spec::Epoc - methods for Epoc file specs
14007
14008 =over 4
14009
14010 =item SYNOPSIS
14011
14012 =item DESCRIPTION
14013
14014 canonpath()
14015
14016 =back
14017
14018 =over 4
14019
14020 =item SEE ALSO
14021
14022 =back
14023
14024 =head2 File::Spec::Functions - portably perform operations on file names
14025
14026 =over 4
14027
14028 =item SYNOPSIS
14029
14030 =item DESCRIPTION
14031
14032 =over 4
14033
14034 =item Exports
14035
14036 =back
14037
14038 =item SEE ALSO
14039
14040 =back
14041
14042 =head2 File::Spec::Mac - File::Spec for Mac OS (Classic)
14043
14044 =over 4
14045
14046 =item SYNOPSIS
14047
14048 =item DESCRIPTION
14049
14050 =item METHODS
14051
14052 canonpath
14053
14054 =back
14055
14056 catdir()
14057
14058 catfile
14059
14060 curdir
14061
14062 devnull
14063
14064 rootdir
14065
14066 tmpdir
14067
14068 updir
14069
14070 file_name_is_absolute
14071
14072 path
14073
14074 splitpath
14075
14076 splitdir
14077
14078 catpath
14079
14080 abs2rel
14081
14082 rel2abs
14083
14084 =over 4
14085
14086 =item AUTHORS
14087
14088 =item SEE ALSO
14089
14090 =back
14091
14092 tmpdir
14093
14094 canonpath
14095
14096 splitpath
14097
14098 splitdir
14099
14100 catpath
14101
14102 =head2 File::Spec::OS2 - methods for OS/2 file specs
14103
14104 =over 4
14105
14106 =item SYNOPSIS
14107
14108 =item DESCRIPTION
14109
14110 =back
14111
14112 =head2 File::Spec::Unix - File::Spec for Unix, base for other File::Spec
14113 modules
14114
14115 =over 4
14116
14117 =item SYNOPSIS
14118
14119 =item DESCRIPTION
14120
14121 =item METHODS
14122
14123 canonpath()
14124
14125 =back
14126
14127 catdir()
14128
14129 catfile
14130
14131 curdir
14132
14133 devnull
14134
14135 rootdir
14136
14137 tmpdir
14138
14139 updir
14140
14141 no_upwards
14142
14143 case_tolerant
14144
14145 file_name_is_absolute
14146
14147 path
14148
14149 join
14150
14151 splitpath
14152
14153 splitdir
14154
14155 catpath()
14156
14157 abs2rel
14158
14159 rel2abs()
14160
14161 =over 4
14162
14163 =item SEE ALSO
14164
14165 =back
14166
14167 =head2 File::Spec::VMS - methods for VMS file specs
14168
14169 =over 4
14170
14171 =item SYNOPSIS
14172
14173 =item DESCRIPTION
14174
14175 eliminate_macros
14176
14177 =back
14178
14179 fixpath
14180
14181 =over 4
14182
14183 =item Methods always loaded
14184
14185 canonpath (override)
14186
14187 =back
14188
14189 catdir
14190
14191 catfile
14192
14193 curdir (override)
14194
14195 devnull (override)
14196
14197 rootdir (override)
14198
14199 tmpdir (override)
14200
14201 updir (override)
14202
14203 case_tolerant (override)
14204
14205 path (override)
14206
14207 file_name_is_absolute (override)
14208
14209 splitpath (override)
14210
14211 splitdir (override)
14212
14213 catpath (override)
14214
14215 abs2rel (override)
14216
14217 rel2abs (override)
14218
14219 =over 4
14220
14221 =item SEE ALSO
14222
14223 =back
14224
14225 =head2 File::Spec::Win32 - methods for Win32 file specs
14226
14227 =over 4
14228
14229 =item SYNOPSIS
14230
14231 =item DESCRIPTION
14232
14233 devnull
14234
14235 =back
14236
14237 tmpdir
14238
14239 catfile
14240
14241 canonpath
14242
14243 splitpath
14244
14245 splitdir
14246
14247 catpath
14248
14249 =over 4
14250
14251 =item Note For File::Spec::Win32 Maintainers
14252
14253 =back
14254
14255 =over 4
14256
14257 =item SEE ALSO
14258
14259 =back
14260
14261 =head2 File::Temp - return name and handle of a temporary file safely
14262
14263 =over 4
14264
14265 =item PORTABILITY
14266
14267 =item SYNOPSIS
14268
14269 =item DESCRIPTION
14270
14271 =back
14272
14273 =over 4
14274
14275 =item FUNCTIONS
14276
14277 B<tempfile>
14278
14279 =back
14280
14281 B<tempdir>
14282
14283 =over 4
14284
14285 =item MKTEMP FUNCTIONS
14286
14287 B<mkstemp>
14288
14289 =back
14290
14291 B<mkstemps>
14292
14293 B<mkdtemp>
14294
14295 B<mktemp>
14296
14297 =over 4
14298
14299 =item POSIX FUNCTIONS
14300
14301 B<tmpnam>
14302
14303 =back
14304
14305 B<tmpfile>
14306
14307 =over 4
14308
14309 =item ADDITIONAL FUNCTIONS
14310
14311 B<tempnam>
14312
14313 =back
14314
14315 =over 4
14316
14317 =item UTILITY FUNCTIONS
14318
14319 B<unlink0>
14320
14321 =back
14322
14323 =over 4
14324
14325 =item PACKAGE VARIABLES
14326
14327 B<safe_level>, STANDARD, MEDIUM, HIGH
14328
14329 =back
14330
14331 TopSystemUID
14332
14333 =over 4
14334
14335 =item WARNING
14336
14337 =over 4
14338
14339 =item Temporary files and NFS
14340
14341 =back
14342
14343 =item HISTORY
14344
14345 =item SEE ALSO
14346
14347 =item AUTHOR
14348
14349 =back
14350
14351 =head2 File::stat - by-name interface to Perl's built-in stat() functions
14352
14353 =over 4
14354
14355 =item SYNOPSIS
14356
14357 =item DESCRIPTION
14358
14359 =item BUGS
14360
14361 =item NOTE
14362
14363 =item AUTHOR
14364
14365 =back
14366
14367 =head2 FileCache - keep more files open than the system permits
14368
14369 =over 4
14370
14371 =item SYNOPSIS
14372
14373 =item DESCRIPTION
14374
14375 cacheout EXPR, cacheout MODE, EXPR
14376
14377 =item CAVEATS
14378
14379 =item BUGS
14380
14381 =back
14382
14383 =head2 FileHandle - supply object methods for filehandles
14384
14385 =over 4
14386
14387 =item SYNOPSIS
14388
14389 =item DESCRIPTION
14390
14391 $fh->print, $fh->printf, $fh->getline, $fh->getlines
14392
14393 =item SEE ALSO
14394
14395 =back
14396
14397 =head2 Filter::Simple - Simplified source filtering
14398
14399 =over 4
14400
14401 =item SYNOPSIS
14402
14403 =item DESCRIPTION
14404
14405 =over 4
14406
14407 =item The Problem
14408
14409 =item A Solution
14410
14411 =item Disabling or changing <no> behaviour
14412
14413 =item All-in-one interface
14414
14415 =item Filtering only specific components of source code
14416
14417 C<"code">, C<"executable">, C<"quotelike">, C<"string">, C<"regex">,
14418 C<"all">
14419
14420 =item Filtering only the code parts of source code
14421
14422 Most source code ceases to be grammatically correct when it is broken up
14423 into the pieces between string literals and regexes. So the C<'code'>
14424 component filter behaves slightly differently from the other partial
14425 filters
14426 described in the previous section.
14427
14428 =item Using Filter::Simple with an explicit C<import> subroutine
14429
14430 =item Using Filter::Simple and Exporter together
14431
14432 =item How it works
14433
14434 =back
14435
14436 =item AUTHOR
14437
14438 =item COPYRIGHT
14439
14440 =back
14441
14442 =head2 Filter::Util::Call - Perl Source Filter Utility Module
14443
14444 =over 4
14445
14446 =item SYNOPSIS
14447
14448 =item DESCRIPTION
14449
14450 =over 4
14451
14452 =item B<use Filter::Util::Call>
14453
14454 =item B<import()>
14455
14456 =item B<filter() and anonymous sub>
14457
14458 B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
14459
14460 =back
14461
14462 =item EXAMPLES
14463
14464 =over 4
14465
14466 =item Example 1: A simple filter.
14467
14468 =item Example 2: Using the context
14469
14470 =item Example 3: Using the context within the filter
14471
14472 =item Example 4: Using filter_del
14473
14474 =back
14475
14476 =item Filter::Simple
14477
14478 =item AUTHOR
14479
14480 =item DATE
14481
14482 =back
14483
14484 =head2 FindBin - Locate directory of original perl script
14485
14486 =over 4
14487
14488 =item SYNOPSIS
14489
14490 =item DESCRIPTION
14491
14492 =item EXPORTABLE VARIABLES
14493
14494 =item KNOWN ISSUES
14495
14496 =item KNOWN BUGS
14497
14498 =item AUTHORS
14499
14500 =item COPYRIGHT
14501
14502 =back
14503
14504 =head2 GDBM_File - Perl5 access to the gdbm library.
14505
14506 =over 4
14507
14508 =item SYNOPSIS
14509
14510 =item DESCRIPTION
14511
14512 =item AVAILABILITY
14513
14514 =item BUGS
14515
14516 =item SEE ALSO
14517
14518 =back
14519
14520 =head2 Getopt::Long - Extended processing of command line options
14521
14522 =over 4
14523
14524 =item SYNOPSIS
14525
14526 =item DESCRIPTION
14527
14528 =item Command Line Options, an Introduction
14529
14530 =item Getting Started with Getopt::Long
14531
14532 =over 4
14533
14534 =item Simple options
14535
14536 =item A little bit less simple options
14537
14538 =item Mixing command line option with other arguments
14539
14540 =item Options with values
14541
14542 =item Options with multiple values
14543
14544 =item Options with hash values
14545
14546 =item User-defined subroutines to handle options
14547
14548 =item Options with multiple names
14549
14550 =item Case and abbreviations
14551
14552 =item Summary of Option Specifications
14553
14554 !, +, s, i, o, f, : I<type> [ I<desttype> ], : I<number> [ I<desttype> ], :
14555 + [ I<desttype> ]
14556
14557 =back
14558
14559 =item Advanced Possibilities
14560
14561 =over 4
14562
14563 =item Object oriented interface
14564
14565 =item Thread Safety
14566
14567 =item Documentation and help texts
14568
14569 =item Storing options in a hash
14570
14571 =item Bundling
14572
14573 =item The lonesome dash
14574
14575 =item Argument callback
14576
14577 =back
14578
14579 =item Configuring Getopt::Long
14580
14581 default, posix_default, auto_abbrev, getopt_compat, gnu_compat, gnu_getopt,
14582 require_order, permute, bundling (default: disabled), bundling_override
14583 (default: disabled), ignore_case  (default: enabled), ignore_case_always
14584 (default: disabled), pass_through (default: disabled), prefix,
14585 prefix_pattern, debug (default: disabled)
14586
14587 =item Return values and Errors
14588
14589 =item Legacy
14590
14591 =over 4
14592
14593 =item Default destinations
14594
14595 =item Alternative option starters
14596
14597 =item Configuration variables
14598
14599 =back
14600
14601 =item Trouble Shooting
14602
14603 =over 4
14604
14605 =item Warning: Ignoring '!' modifier for short option
14606
14607 =item GetOptions does not return a false result when an option is not
14608 supplied
14609
14610 =item GetOptions does not split the command line correctly
14611
14612 =item How do I put a "-?" option into a Getopt::Long?
14613
14614 =back
14615
14616 =item AUTHOR
14617
14618 =item COPYRIGHT AND DISCLAIMER
14619
14620 =back
14621
14622 =head2 Getopt::Std, getopt - Process single-character switches with switch
14623 clustering
14624
14625 =over 4
14626
14627 =item SYNOPSIS
14628
14629 =item DESCRIPTION
14630
14631 =item C<--help> and C<--version>
14632
14633 =back
14634
14635 =head2 Hash::Util - A selection of general-utility hash subroutines
14636
14637 =over 4
14638
14639 =item SYNOPSIS
14640
14641 =item DESCRIPTION
14642
14643 =over 4
14644
14645 =item Restricted hashes
14646
14647 lock_keys, unlock_keys
14648
14649 =back
14650
14651 =back
14652
14653 lock_value, unlock_value
14654
14655 B<lock_hash>, B<unlock_hash>
14656
14657 =over 4
14658
14659 =item CAVEATS
14660
14661 =item AUTHOR
14662
14663 =item SEE ALSO
14664
14665 =back
14666
14667 =head2 I18N::Collate - compare 8-bit scalar data according to the current
14668 locale
14669
14670 =over 4
14671
14672 =item SYNOPSIS
14673
14674 =item DESCRIPTION
14675
14676 =back
14677
14678 =head2 I18N::LangTags - functions for dealing with RFC3066-style language
14679 tags
14680
14681 =over 4
14682
14683 =item SYNOPSIS
14684
14685 =item DESCRIPTION
14686
14687 =back
14688
14689 the function is_language_tag($lang1)
14690
14691 the function extract_language_tags($whatever)
14692
14693 the function same_language_tag($lang1, $lang2)
14694
14695 the function similarity_language_tag($lang1, $lang2)
14696
14697 the function is_dialect_of($lang1, $lang2)
14698
14699 the function super_languages($lang1)
14700
14701 the function locale2language_tag($locale_identifier)
14702
14703 the function encode_language_tag($lang1)
14704
14705 the function alternate_language_tags($lang1)
14706
14707 the function @langs = panic_languages(@accept_languages)
14708
14709 =over 4
14710
14711 =item ABOUT LOWERCASING
14712
14713 =item ABOUT UNICODE PLAINTEXT LANGUAGE TAGS
14714
14715 =item SEE ALSO
14716
14717 =item COPYRIGHT
14718
14719 =item AUTHOR
14720
14721 =back
14722
14723 =head2 I18N::LangTags::List -- tags and names for human languages
14724
14725 =over 4
14726
14727 =item SYNOPSIS
14728
14729 =item DESCRIPTION
14730
14731 =item ABOUT LANGUAGE TAGS
14732
14733 =item LIST OF LANGUAGES
14734
14735 {ab} : Abkhazian, {ace} : Achinese, {ach} : Acoli, {ada} : Adangme, {aa} :
14736 Afar, {afh} : Afrihili, {af} : Afrikaans, [{afa} : Afro-Asiatic (Other)],
14737 {aka} : Akan, {akk} : Akkadian, {sq} : Albanian, {ale} : Aleut, [{alg} :
14738 Algonquian languages], [{tut} : Altaic (Other)], {am} : Amharic, {i-ami} :
14739 Ami, [{apa} : Apache languages], {ar} : Arabic, {arc} : Aramaic, {arp} :
14740 Arapaho, {arn} : Araucanian, {arw} : Arawak, {hy} : Armenian, [{art} :
14741 Artificial (Other)], {as} : Assamese, [{ath} : Athapascan languages],
14742 [{aus} : Australian languages], [{map} : Austronesian (Other)], {ava} :
14743 Avaric, {ae} : Avestan, {awa} : Awadhi, {ay} : Aymara, {az} : Azerbaijani,
14744 {ban} : Balinese, [{bat} : Baltic (Other)], {bal} : Baluchi, {bam} :
14745 Bambara, [{bai} : Bamileke languages], {bad} : Banda, [{bnt} : Bantu
14746 (Other)], {bas} : Basa, {ba} : Bashkir, {eu} : Basque, {btk} : Batak
14747 (Indonesia), {bej} : Beja, {be} : Belarusian, {bem} : Bemba, {bn} :
14748 Bengali, [{ber} : Berber (Other)], {bho} : Bhojpuri, {bh} : Bihari, {bik} :
14749 Bikol, {bin} : Bini, {bi} : Bislama, {bs} : Bosnian, {bra} : Braj, {br} :
14750 Breton, {bug} : Buginese, {bg} : Bulgarian, {i-bnn} : Bunun, {bua} :
14751 Buriat, {my} : Burmese, {cad} : Caddo, {car} : Carib, {ca} : Catalan,
14752 [{cau} : Caucasian (Other)], {ceb} : Cebuano, [{cel} : Celtic (Other)],
14753 [{cai} : Central American Indian (Other)], {chg} : Chagatai, [{cmc} :
14754 Chamic languages], {ch} : Chamorro, {ce} : Chechen, {chr} : Cherokee, {chy}
14755 : Cheyenne, {chb} : Chibcha, {ny} : Chichewa, {zh} : Chinese, {chn} :
14756 Chinook Jargon, {chp} : Chipewyan, {cho} : Choctaw, {cu} : Church Slavic,
14757 {chk} : Chuukese, {cv} : Chuvash, {cop} : Coptic, {kw} : Cornish, {co} :
14758 Corsican, {cre} : Cree, {mus} : Creek, [{cpe} : English-based Creoles and
14759 pidgins (Other)], [{cpf} : French-based Creoles and pidgins (Other)],
14760 [{cpp} : Portuguese-based Creoles and pidgins (Other)], [{crp} : Creoles
14761 and pidgins (Other)], {hr} : Croatian, [{cus} : Cushitic (Other)], {cs} :
14762 Czech, {dak} : Dakota, {da} : Danish, {day} : Dayak, {i-default} : Default
14763 (Fallthru) Language, {del} : Delaware, {din} : Dinka, {div} : Divehi, {doi}
14764 : Dogri, {dgr} : Dogrib, [{dra} : Dravidian (Other)], {dua} : Duala, {nl} :
14765 Dutch, {dum} : Middle Dutch (ca.1050-1350), {dyu} : Dyula, {dz} : Dzongkha,
14766 {efi} : Efik, {egy} : Ancient Egyptian, {eka} : Ekajuk, {elx} : Elamite,
14767 {en} : English, {enm} : Old English (1100-1500), {ang} : Old English
14768 (ca.450-1100), {eo} : Esperanto, {et} : Estonian, {ewe} : Ewe, {ewo} :
14769 Ewondo, {fan} : Fang, {fat} : Fanti, {fo} : Faroese, {fj} : Fijian, {fi} :
14770 Finnish, [{fiu} : Finno-Ugrian (Other)], {fon} : Fon, {fr} : French, {frm}
14771 : Middle French (ca.1400-1600), {fro} : Old French (842-ca.1400), {fy} :
14772 Frisian, {fur} : Friulian, {ful} : Fulah, {gaa} : Ga, {gd} : Scots Gaelic,
14773 {gl} : Gallegan, {lug} : Ganda, {gay} : Gayo, {gba} : Gbaya, {gez} : Geez,
14774 {ka} : Georgian, {de} : German, {gmh} : Middle High German (ca.1050-1500),
14775 {goh} : Old High German (ca.750-1050), [{gem} : Germanic (Other)], {gil} :
14776 Gilbertese, {gon} : Gondi, {gor} : Gorontalo, {got} : Gothic, {grb} :
14777 Grebo, {grc} : Ancient Greek, {el} : Modern Greek, {gn} : Guarani, {gu} :
14778 Gujarati, {gwi} : Gwich'in, {hai} : Haida, {ha} : Hausa, {haw} : Hawaiian,
14779 {he} : Hebrew, {hz} : Herero, {hil} : Hiligaynon, {him} : Himachali, {hi} :
14780 Hindi, {ho} : Hiri Motu, {hit} : Hittite, {hmn} : Hmong, {hu} : Hungarian,
14781 {hup} : Hupa, {iba} : Iban, {is} : Icelandic, {ibo} : Igbo, {ijo} : Ijo,
14782 {ilo} : Iloko, [{inc} : Indic (Other)], [{ine} : Indo-European (Other)],
14783 {id} : Indonesian, {ia} : Interlingua (International Auxiliary Language
14784 Association), {ie} : Interlingue, {iu} : Inuktitut, {ik} : Inupiaq, [{ira}
14785 : Iranian (Other)], {ga} : Irish, {mga} : Middle Irish (900-1200), {sga} :
14786 Old Irish (to 900), [{iro} : Iroquoian languages], {it} : Italian, {ja} :
14787 Japanese, {jw} : Javanese, {jrb} : Judeo-Arabic, {jpr} : Judeo-Persian,
14788 {kab} : Kabyle, {kac} : Kachin, {kl} : Kalaallisut, {kam} : Kamba, {kn} :
14789 Kannada, {kau} : Kanuri, {kaa} : Kara-Kalpak, {kar} : Karen, {ks} :
14790 Kashmiri, {kaw} : Kawi, {kk} : Kazakh, {kha} : Khasi, {km} : Khmer, [{khi}
14791 : Khoisan (Other)], {kho} : Khotanese, {ki} : Kikuyu, {kmb} : Kimbundu,
14792 {rw} : Kinyarwanda, {ky} : Kirghiz, {i-klingon} : Klingon, {kv} : Komi,
14793 {kon} : Kongo, {kok} : Konkani, {ko} : Korean, {kos} : Kosraean, {kpe} :
14794 Kpelle, {kro} : Kru, {kj} : Kuanyama, {kum} : Kumyk, {ku} : Kurdish, {kru}
14795 : Kurukh, {kut} : Kutenai, {lad} : Ladino, {lah} : Lahnda, {lam} : Lamba,
14796 {lo} : Lao, {la} : Latin, {lv} : Latvian, {lb} : Letzeburgesch, {lez} :
14797 Lezghian, {ln} : Lingala, {lt} : Lithuanian, {nds} : Low German, {loz} :
14798 Lozi, {lub} : Luba-Katanga, {lua} : Luba-Lulua, {lui} : Luiseno, {lun} :
14799 Lunda, {luo} : Luo (Kenya and Tanzania), {lus} : Lushai, {mk} : Macedonian,
14800 {mad} : Madurese, {mag} : Magahi, {mai} : Maithili, {mak} : Makasar, {mg} :
14801 Malagasy, {ms} : Malay, {ml} : Malayalam, {mt} : Maltese, {mnc} : Manchu,
14802 {mdr} : Mandar, {man} : Mandingo, {mni} : Manipuri, [{mno} : Manobo
14803 languages], {gv} : Manx, {mi} : Maori, {mr} : Marathi, {chm} : Mari, {mh} :
14804 Marshall, {mwr} : Marwari, {mas} : Masai, [{myn} : Mayan languages], {men}
14805 : Mende, {mic} : Micmac, {min} : Minangkabau, {i-mingo} : Mingo, [{mis} :
14806 Miscellaneous languages], {moh} : Mohawk, {mo} : Moldavian, [{mkh} :
14807 Mon-Khmer (Other)], {lol} : Mongo, {mn} : Mongolian, {mos} : Mossi, [{mul}
14808 : Multiple languages], [{mun} : Munda languages], {nah} : Nahuatl, {na} :
14809 Nauru, {nv} : Navajo, {nd} : North Ndebele, {nr} : South Ndebele, {ng} :
14810 Ndonga, {ne} : Nepali, {new} : Newari, {nia} : Nias, [{nic} :
14811 Niger-Kordofanian (Other)], [{ssa} : Nilo-Saharan (Other)], {niu} : Niuean,
14812 {non} : Old Norse, [{nai} : North American Indian], {se} : Northern Sami,
14813 {no} : Norwegian, {nb} : Norwegian Bokmal, {nn} : Norwegian Nynorsk, [{nub}
14814 : Nubian languages], {nym} : Nyamwezi, {nyn} : Nyankole, {nyo} : Nyoro,
14815 {nzi} : Nzima, {oc} : Occitan (post 1500), {oji} : Ojibwa, {or} : Oriya,
14816 {om} : Oromo, {osa} : Osage, {os} : Ossetian; Ossetic, [{oto} : Otomian
14817 languages], {pal} : Pahlavi, {i-pwn} : Paiwan, {pau} : Palauan, {pi} :
14818 Pali, {pam} : Pampanga, {pag} : Pangasinan, {pa} : Panjabi, {pap} :
14819 Papiamento, [{paa} : Papuan (Other)], {fa} : Persian, {peo} : Old Persian
14820 (ca.600-400 B.C.), [{phi} : Philippine (Other)], {phn} : Phoenician, {pon}
14821 : Pohnpeian, {pl} : Polish, {pt} : Portuguese, [{pra} : Prakrit languages],
14822 {pro} : Old Provencal (to 1500), {ps} : Pushto, {qu} : Quechua, {rm} :
14823 Raeto-Romance, {raj} : Rajasthani, {rap} : Rapanui, {rar} : Rarotongan,
14824 [{qaa - qtz} : Reserved for local use.], [{roa} : Romance (Other)], {ro} :
14825 Romanian, {rom} : Romany, {rn} : Rundi, {ru} : Russian, [{sal} : Salishan
14826 languages], {sam} : Samaritan Aramaic, [{smi} : Sami languages (Other)],
14827 {sm} : Samoan, {sad} : Sandawe, {sg} : Sango, {sa} : Sanskrit, {sat} :
14828 Santali, {sc} : Sardinian, {sas} : Sasak, {sco} : Scots, {sel} : Selkup,
14829 [{sem} : Semitic (Other)], {sr} : Serbian, {srr} : Serer, {shn} : Shan,
14830 {sn} : Shona, {sid} : Sidamo, {sgn-...} : Sign Languages, {bla} : Siksika,
14831 {sd} : Sindhi, {si} : Sinhalese, [{sit} : Sino-Tibetan (Other)], [{sio} :
14832 Siouan languages], {den} : Slave (Athapascan), [{sla} : Slavic (Other)],
14833 {sk} : Slovak, {sl} : Slovenian, {sog} : Sogdian, {so} : Somali, {son} :
14834 Songhai, {snk} : Soninke, {wen} : Sorbian languages, {nso} : Northern
14835 Sotho, {st} : Southern Sotho, [{sai} : South American Indian (Other)], {es}
14836 : Spanish, {suk} : Sukuma, {sux} : Sumerian, {su} : Sundanese, {sus} :
14837 Susu, {sw} : Swahili, {ss} : Swati, {sv} : Swedish, {syr} : Syriac, {tl} :
14838 Tagalog, {ty} : Tahitian, [{tai} : Tai (Other)], {tg} : Tajik, {tmh} :
14839 Tamashek, {ta} : Tamil, {i-tao} : Tao, {tt} : Tatar, {i-tay} : Tayal, {te}
14840 : Telugu, {ter} : Tereno, {tet} : Tetum, {th} : Thai, {bo} : Tibetan, {tig}
14841 : Tigre, {ti} : Tigrinya, {tem} : Timne, {tiv} : Tiv, {tli} : Tlingit,
14842 {tpi} : Tok Pisin, {tkl} : Tokelau, {tog} : Tonga (Nyasa), {to} : Tonga
14843 (Tonga Islands), {tsi} : Tsimshian, {ts} : Tsonga, {i-tsu} : Tsou, {tn} :
14844 Tswana, {tum} : Tumbuka, {tr} : Turkish, {ota} : Ottoman Turkish
14845 (1500-1928), {tk} : Turkmen, {tvl} : Tuvalu, {tyv} : Tuvinian, {tw} : Twi,
14846 {uga} : Ugaritic, {ug} : Uighur, {uk} : Ukrainian, {umb} : Umbundu, {und} :
14847 Undetermined, {ur} : Urdu, {uz} : Uzbek, {vai} : Vai, {ven} : Venda, {vi} :
14848 Vietnamese, {vo} : Volapuk, {vot} : Votic, [{wak} : Wakashan languages],
14849 {wal} : Walamo, {war} : Waray, {was} : Washo, {cy} : Welsh, {wo} : Wolof,
14850 {x-...} : Unregistered (Semi-Private Use), {xh} : Xhosa, {sah} : Yakut,
14851 {yao} : Yao, {yap} : Yapese, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik
14852 languages], {znd} : Zande, [{zap} : Zapotec], {zen} : Zenaga, {za} :
14853 Zhuang, {zu} : Zulu, {zun} : Zuni
14854
14855 =item SEE ALSO
14856
14857 =item COPYRIGHT AND DISCLAIMER
14858
14859 =item AUTHOR
14860
14861 =back
14862
14863 =head2 I18N::Langinfo - query locale information
14864
14865 =over 4
14866
14867 =item SYNOPSIS
14868
14869 =item DESCRIPTION
14870
14871 =over 4
14872
14873 =item EXPORT
14874
14875 =back
14876
14877 =item SEE ALSO
14878
14879 =item AUTHOR
14880
14881 =item COPYRIGHT AND LICENSE
14882
14883 =back
14884
14885 =head2 IO - load various IO modules
14886
14887 =over 4
14888
14889 =item SYNOPSIS
14890
14891 =item DESCRIPTION
14892
14893 =item DEPRECATED
14894
14895 =back
14896
14897 =head2 IO::Dir - supply object methods for directory handles
14898
14899 =over 4
14900
14901 =item SYNOPSIS
14902
14903 =item DESCRIPTION
14904
14905 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
14906 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
14907
14908 =item SEE ALSO
14909
14910 =item AUTHOR
14911
14912 =item COPYRIGHT
14913
14914 =back
14915
14916 =head2 IO::File - supply object methods for filehandles
14917
14918 =over 4
14919
14920 =item SYNOPSIS
14921
14922 =item DESCRIPTION
14923
14924 =item CONSTRUCTOR
14925
14926 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
14927
14928 =item METHODS
14929
14930 open( FILENAME [,MODE [,PERMS]] )
14931
14932 =item SEE ALSO
14933
14934 =item HISTORY
14935
14936 =back
14937
14938 =head2 IO::Handle - supply object methods for I/O handles
14939
14940 =over 4
14941
14942 =item SYNOPSIS
14943
14944 =item DESCRIPTION
14945
14946 =item CONSTRUCTOR
14947
14948 new (), new_from_fd ( FD, MODE )
14949
14950 =item METHODS
14951
14952 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
14953 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
14954 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
14955 $io->blocking ( [ BOOL ] ), $io->untaint
14956
14957 =item NOTE
14958
14959 =item SEE ALSO
14960
14961 =item BUGS
14962
14963 =item HISTORY
14964
14965 =back
14966
14967 =head2 IO::Pipe - supply object methods for pipes
14968
14969 =over 4
14970
14971 =item SYNOPSIS
14972
14973 =item DESCRIPTION
14974
14975 =item CONSTRUCTOR
14976
14977 new ( [READER, WRITER] )
14978
14979 =item METHODS
14980
14981 reader ([ARGS]), writer ([ARGS]), handles ()
14982
14983 =item SEE ALSO
14984
14985 =item AUTHOR
14986
14987 =item COPYRIGHT
14988
14989 =back
14990
14991 =head2 IO::Poll - Object interface to system poll call
14992
14993 =over 4
14994
14995 =item SYNOPSIS
14996
14997 =item DESCRIPTION
14998
14999 =item METHODS
15000
15001 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
15002 IO ), handles( [ EVENT_MASK ] )
15003
15004 =item SEE ALSO
15005
15006 =item AUTHOR
15007
15008 =item COPYRIGHT
15009
15010 =back
15011
15012 =head2 IO::Seekable - supply seek based methods for I/O objects
15013
15014 =over 4
15015
15016 =item SYNOPSIS
15017
15018 =item DESCRIPTION
15019
15020 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
15021 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
15022 $io->tell
15023
15024 =item SEE ALSO
15025
15026 =item HISTORY
15027
15028 =back
15029
15030 =head2 IO::Select - OO interface to the select system call
15031
15032 =over 4
15033
15034 =item SYNOPSIS
15035
15036 =item DESCRIPTION
15037
15038 =item CONSTRUCTOR
15039
15040 new ( [ HANDLES ] )
15041
15042 =item METHODS
15043
15044 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
15045 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
15046 count (), bits(), select ( READ, WRITE, EXCEPTION [, TIMEOUT ] )
15047
15048 =item EXAMPLE
15049
15050 =item AUTHOR
15051
15052 =item COPYRIGHT
15053
15054 =back
15055
15056 =head2 IO::Socket - Object interface to socket communications
15057
15058 =over 4
15059
15060 =item SYNOPSIS
15061
15062 =item DESCRIPTION
15063
15064 =item CONSTRUCTOR
15065
15066 new ( [ARGS] )
15067
15068 =item METHODS
15069
15070 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
15071 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
15072
15073 =item SEE ALSO
15074
15075 =item AUTHOR
15076
15077 =item COPYRIGHT
15078
15079 =back
15080
15081 =head2 IO::Socket::INET - Object interface for AF_INET domain sockets
15082
15083 =over 4
15084
15085 =item SYNOPSIS
15086
15087 =item DESCRIPTION
15088
15089 =item CONSTRUCTOR
15090
15091 new ( [ARGS] )
15092
15093 =over 4
15094
15095 =item METHODS
15096
15097 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
15098 ()
15099
15100 =back
15101
15102 =item SEE ALSO
15103
15104 =item AUTHOR
15105
15106 =item COPYRIGHT
15107
15108 =back
15109
15110 =head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
15111
15112 =over 4
15113
15114 =item SYNOPSIS
15115
15116 =item DESCRIPTION
15117
15118 =item CONSTRUCTOR
15119
15120 new ( [ARGS] )
15121
15122 =item METHODS
15123
15124 hostpath(), peerpath()
15125
15126 =item SEE ALSO
15127
15128 =item AUTHOR
15129
15130 =item COPYRIGHT
15131
15132 =back
15133
15134 =head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
15135 handles
15136
15137 =over 4
15138
15139 =item SYNOPSIS
15140
15141 =item DESCRIPTION
15142
15143 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
15144 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
15145
15146 =item SEE ALSO
15147
15148 =item AUTHOR
15149
15150 =item COPYRIGHT
15151
15152 =back
15153
15154 =head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
15155
15156 =over 4
15157
15158 =item SYNOPSIS
15159
15160 =item DESCRIPTION
15161
15162 =item CONSTRUCTOR
15163
15164 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
15165
15166 =item METHODS
15167
15168 open( FILENAME [,MODE [,PERMS]] )
15169
15170 =item SEE ALSO
15171
15172 =item HISTORY
15173
15174 =back
15175
15176 =head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
15177 handles
15178
15179 =over 4
15180
15181 =item SYNOPSIS
15182
15183 =item DESCRIPTION
15184
15185 =item CONSTRUCTOR
15186
15187 new (), new_from_fd ( FD, MODE )
15188
15189 =item METHODS
15190
15191 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
15192 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
15193 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
15194 $io->blocking ( [ BOOL ] ), $io->untaint
15195
15196 =item NOTE
15197
15198 =item SEE ALSO
15199
15200 =item BUGS
15201
15202 =item HISTORY
15203
15204 =back
15205
15206 =head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
15207
15208 =over 4
15209
15210 =item SYNOPSIS
15211
15212 =item DESCRIPTION
15213
15214 =item CONSTRUCTOR
15215
15216 new ( [READER, WRITER] )
15217
15218 =item METHODS
15219
15220 reader ([ARGS]), writer ([ARGS]), handles ()
15221
15222 =item SEE ALSO
15223
15224 =item AUTHOR
15225
15226 =item COPYRIGHT
15227
15228 =back
15229
15230 =head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
15231
15232 =over 4
15233
15234 =item SYNOPSIS
15235
15236 =item DESCRIPTION
15237
15238 =item METHODS
15239
15240 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
15241 IO ), handles( [ EVENT_MASK ] )
15242
15243 =item SEE ALSO
15244
15245 =item AUTHOR
15246
15247 =item COPYRIGHT
15248
15249 =back
15250
15251 =head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
15252 I/O objects
15253
15254 =over 4
15255
15256 =item SYNOPSIS
15257
15258 =item DESCRIPTION
15259
15260 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
15261 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
15262 $io->tell
15263
15264 =item SEE ALSO
15265
15266 =item HISTORY
15267
15268 =back
15269
15270 =head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
15271 call
15272
15273 =over 4
15274
15275 =item SYNOPSIS
15276
15277 =item DESCRIPTION
15278
15279 =item CONSTRUCTOR
15280
15281 new ( [ HANDLES ] )
15282
15283 =item METHODS
15284
15285 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
15286 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
15287 count (), bits(), select ( READ, WRITE, EXCEPTION [, TIMEOUT ] )
15288
15289 =item EXAMPLE
15290
15291 =item AUTHOR
15292
15293 =item COPYRIGHT
15294
15295 =back
15296
15297 =head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
15298 communications
15299
15300 =over 4
15301
15302 =item SYNOPSIS
15303
15304 =item DESCRIPTION
15305
15306 =item CONSTRUCTOR
15307
15308 new ( [ARGS] )
15309
15310 =item METHODS
15311
15312 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
15313 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
15314
15315 =item SEE ALSO
15316
15317 =item AUTHOR
15318
15319 =item COPYRIGHT
15320
15321 =back
15322
15323 =head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
15324 AF_INET domain sockets
15325
15326 =over 4
15327
15328 =item SYNOPSIS
15329
15330 =item DESCRIPTION
15331
15332 =item CONSTRUCTOR
15333
15334 new ( [ARGS] )
15335
15336 =over 4
15337
15338 =item METHODS
15339
15340 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
15341 ()
15342
15343 =back
15344
15345 =item SEE ALSO
15346
15347 =item AUTHOR
15348
15349 =item COPYRIGHT
15350
15351 =back
15352
15353 =head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
15354 AF_UNIX domain sockets
15355
15356 =over 4
15357
15358 =item SYNOPSIS
15359
15360 =item DESCRIPTION
15361
15362 =item CONSTRUCTOR
15363
15364 new ( [ARGS] )
15365
15366 =item METHODS
15367
15368 hostpath(), peerpath()
15369
15370 =item SEE ALSO
15371
15372 =item AUTHOR
15373
15374 =item COPYRIGHT
15375
15376 =back
15377
15378 =head2 IPC::Msg - SysV Msg IPC object class
15379
15380 =over 4
15381
15382 =item SYNOPSIS
15383
15384 =item DESCRIPTION
15385
15386 =item METHODS
15387
15388 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
15389 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
15390 FLAGS ] ), stat
15391
15392 =item SEE ALSO
15393
15394 =item AUTHOR
15395
15396 =item COPYRIGHT
15397
15398 =back
15399
15400 =head2 IPC::Open2, open2 - open a process for both reading and writing
15401
15402 =over 4
15403
15404 =item SYNOPSIS
15405
15406 =item DESCRIPTION
15407
15408 =item WARNING 
15409
15410 =item SEE ALSO
15411
15412 =back
15413
15414 =head2 IPC::Open3, open3 - open a process for reading, writing, and error
15415 handling
15416
15417 =over 4
15418
15419 =item SYNOPSIS
15420
15421 =item DESCRIPTION
15422
15423 =item WARNING
15424
15425 =back
15426
15427 =head2 IPC::Semaphore - SysV Semaphore IPC object class
15428
15429 =over 4
15430
15431 =item SYNOPSIS
15432
15433 =item DESCRIPTION
15434
15435 =item METHODS
15436
15437 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
15438 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
15439 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
15440 , VALUE ), stat
15441
15442 =item SEE ALSO
15443
15444 =item AUTHOR
15445
15446 =item COPYRIGHT
15447
15448 =back
15449
15450 =head2 IPC::SysV - SysV IPC constants
15451
15452 =over 4
15453
15454 =item SYNOPSIS
15455
15456 =item DESCRIPTION
15457
15458 ftok( PATH, ID )
15459
15460 =item SEE ALSO
15461
15462 =item AUTHORS
15463
15464 =item COPYRIGHT
15465
15466 =back
15467
15468 =head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
15469
15470 =over 4
15471
15472 =item SYNOPSIS
15473
15474 =item DESCRIPTION
15475
15476 =item METHODS
15477
15478 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
15479 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
15480 FLAGS ] ), stat
15481
15482 =item SEE ALSO
15483
15484 =item AUTHOR
15485
15486 =item COPYRIGHT
15487
15488 =back
15489
15490 =head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
15491 class
15492
15493 =over 4
15494
15495 =item SYNOPSIS
15496
15497 =item DESCRIPTION
15498
15499 =item METHODS
15500
15501 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
15502 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
15503 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
15504 , VALUE ), stat
15505
15506 =item SEE ALSO
15507
15508 =item AUTHOR
15509
15510 =item COPYRIGHT
15511
15512 =back
15513
15514 =head2 List::Util - A selection of general-utility list subroutines
15515
15516 =over 4
15517
15518 =item SYNOPSIS
15519
15520 =item DESCRIPTION
15521
15522 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
15523 BLOCK LIST, shuffle LIST, sum LIST
15524
15525 =item KNOWN BUGS
15526
15527 =item SUGGESTED ADDITIONS
15528
15529 =item COPYRIGHT
15530
15531 =back
15532
15533 =head2 List::Utilib::List::Util, List::Util - A selection of
15534 general-utility list subroutines
15535
15536 =over 4
15537
15538 =item SYNOPSIS
15539
15540 =item DESCRIPTION
15541
15542 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
15543 BLOCK LIST, shuffle LIST, sum LIST
15544
15545 =item KNOWN BUGS
15546
15547 =item SUGGESTED ADDITIONS
15548
15549 =item COPYRIGHT
15550
15551 =back
15552
15553 =head2 List::Utilib::Scalar::Util, Scalar::Util - A selection of
15554 general-utility scalar subroutines
15555
15556 =over 4
15557
15558 =item SYNOPSIS
15559
15560 =item DESCRIPTION
15561
15562 blessed EXPR, dualvar NUM, STRING, isvstring EXPR, isweak EXPR,
15563 looks_like_number EXPR, openhandle FH, refaddr EXPR, reftype EXPR,
15564 set_prototype CODEREF, PROTOTYPE, tainted EXPR, weaken REF
15565
15566 =item KNOWN BUGS
15567
15568 =item COPYRIGHT
15569
15570 =item BLATANT PLUG
15571
15572 =back
15573
15574 =head2 Locale::Constants - constants for Locale codes
15575
15576 =over 4
15577
15578 =item SYNOPSIS
15579
15580 =item DESCRIPTION
15581
15582 =item KNOWN BUGS AND LIMITATIONS
15583
15584 =item SEE ALSO
15585
15586 Locale::Language, Locale::Country, Locale::Script, Locale::Currency
15587
15588 =item AUTHOR
15589
15590 =item COPYRIGHT
15591
15592 =back
15593
15594 =head2 Locale::Country - ISO codes for country identification (ISO 3166)
15595
15596 =over 4
15597
15598 =item SYNOPSIS
15599
15600 =item DESCRIPTION
15601
15602 B<alpha-2>, B<alpha-3>, B<numeric>
15603
15604 =item CONVERSION ROUTINES
15605
15606 code2country( CODE, [ CODESET ] ), country2code( STRING, [ CODESET ] ),
15607 country_code2code( CODE, CODESET, CODESET )
15608
15609 =item QUERY ROUTINES
15610
15611 C<all_country_codes( [ CODESET ] )>, C<all_country_names( [ CODESET ] )>
15612
15613 =item SEMI-PRIVATE ROUTINES
15614
15615 =over 4
15616
15617 =item alias_code
15618
15619 =item rename_country
15620
15621 =back
15622
15623 =item EXAMPLES
15624
15625 =item DOMAIN NAMES
15626
15627 =item KNOWN BUGS AND LIMITATIONS
15628
15629 =item SEE ALSO
15630
15631 Locale::Language, Locale::Script, Locale::Currency, Locale::SubCountry, ISO
15632 3166-1, http://www.iso.org/iso/en/prods-services/iso3166ma/index.html,
15633 http://www.egt.ie/standards/iso3166/iso3166-1-en.html,
15634 http://www.cia.gov/cia/publications/factbook/docs/app-d-1.html
15635
15636 =item AUTHOR
15637
15638 =item COPYRIGHT
15639
15640 =back
15641
15642 =head2 Locale::Currency - ISO three letter codes for currency
15643 identification (ISO 4217)
15644
15645 =over 4
15646
15647 =item SYNOPSIS
15648
15649 =item DESCRIPTION
15650
15651 XTS, XXX
15652
15653 =item CONVERSION ROUTINES
15654
15655 code2currency(), currency2code()
15656
15657 =item QUERY ROUTINES
15658
15659 C<all_currency_codes()>, C<all_currency_names()>
15660
15661 =item EXAMPLES
15662
15663 =item KNOWN BUGS AND LIMITATIONS
15664
15665 =item SEE ALSO
15666
15667 Locale::Country, Locale::Script, ISO 4217:1995,
15668 http://www.bsi-global.com/iso4217currency
15669
15670 =item AUTHOR
15671
15672 =item COPYRIGHT
15673
15674 =back
15675
15676 =head2 Locale::Language - ISO two letter codes for language identification
15677 (ISO 639)
15678
15679 =over 4
15680
15681 =item SYNOPSIS
15682
15683 =item DESCRIPTION
15684
15685 =item CONVERSION ROUTINES
15686
15687 code2language(), language2code()
15688
15689 =item QUERY ROUTINES
15690
15691 C<all_language_codes()>, C<all_language_names()>
15692
15693 =item EXAMPLES
15694
15695 =item KNOWN BUGS AND LIMITATIONS
15696
15697 =item SEE ALSO
15698
15699 Locale::Country, Locale::Script, Locale::Currency, ISO 639:1988 (E/F),
15700 http://lcweb.loc.gov/standards/iso639-2/langhome.html
15701
15702 =item AUTHOR
15703
15704 =item COPYRIGHT
15705
15706 =back
15707
15708 =head2 Locale::Maketext - framework for localization
15709
15710 =over 4
15711
15712 =item SYNOPSIS
15713
15714 =item DESCRIPTION
15715
15716 =item QUICK OVERVIEW
15717
15718 =item METHODS
15719
15720 =over 4
15721
15722 =item Construction Methods
15723
15724 =item The "maketext" Method
15725
15726 $lh->fail_with I<or> $lh->fail_with(I<PARAM>), $lh->failure_handler_auto
15727
15728 =item Utility Methods
15729
15730 $language->quant($number, $singular), $language->quant($number, $singular,
15731 $plural), $language->quant($number, $singular, $plural, $negative),
15732 $language->numf($number), $language->sprintf($format, @items),
15733 $language->language_tag(), $language->encoding()
15734
15735 =item Language Handle Attributes and Internals
15736
15737 =back
15738
15739 =item LANGUAGE CLASS HIERARCHIES
15740
15741 =item ENTRIES IN EACH LEXICON
15742
15743 =item BRACKET NOTATION
15744
15745 =item AUTO LEXICONS
15746
15747 =item CONTROLLING LOOKUP FAILURE
15748
15749 =item HOW TO USE MAKETEXT
15750
15751 =item SEE ALSO
15752
15753 =item COPYRIGHT AND DISCLAIMER
15754
15755 =item AUTHOR
15756
15757 =back
15758
15759 =head2 Locale::Maketext::TPJ13 -- article about software localization
15760
15761 =over 4
15762
15763 =item SYNOPSIS
15764
15765 =item DESCRIPTION
15766
15767 =item Localization and Perl: gettext breaks, Maketext fixes
15768
15769 =over 4
15770
15771 =item A Localization Horror Story: It Could Happen To You
15772
15773 =item The Linguistic View
15774
15775 =item Breaking gettext
15776
15777 =item Replacing gettext
15778
15779 =item Buzzwords: Abstraction and Encapsulation
15780
15781 =item Buzzword: Isomorphism
15782
15783 =item Buzzword: Inheritance
15784
15785 =item Buzzword: Concision
15786
15787 =item The Devil in the Details
15788
15789 =item The Proof in the Pudding: Localizing Web Sites
15790
15791 =item References
15792
15793 =back
15794
15795 =back
15796
15797 =head2 Locale::Script - ISO codes for script identification (ISO 15924)
15798
15799 =over 4
15800
15801 =item SYNOPSIS
15802
15803 =item DESCRIPTION
15804
15805 B<alpha-2>, B<alpha-3>, B<numeric>
15806
15807 =over 4
15808
15809 =item SPECIAL CODES
15810
15811 =back
15812
15813 =item CONVERSION ROUTINES
15814
15815 code2script( CODE, [ CODESET ] ), script2code( STRING, [ CODESET ] ),
15816 script_code2code( CODE, CODESET, CODESET )
15817
15818 =item QUERY ROUTINES
15819
15820 C<all_script_codes ( [ CODESET ] )>, C<all_script_names ( [ CODESET ] )>
15821
15822 =item EXAMPLES
15823
15824 =item KNOWN BUGS AND LIMITATIONS
15825
15826 =item SEE ALSO
15827
15828 Locale::Language, Locale::Currency, Locale::Country, ISO 15924,
15829 http://www.evertype.com/standards/iso15924/
15830
15831 =item AUTHOR
15832
15833 =item COPYRIGHT
15834
15835 =back
15836
15837 =head2 MIME::Base64 - Encoding and decoding of base64 strings
15838
15839 =over 4
15840
15841 =item SYNOPSIS
15842
15843 =item DESCRIPTION
15844
15845 encode_base64($str), encode_base64($str, $eol);, decode_base64($str)
15846
15847 =item DIAGNOSTICS
15848
15849 Premature end of base64 data, Premature padding of base64 data
15850
15851 =item EXAMPLES
15852
15853 =item COPYRIGHT
15854
15855 =back
15856
15857 =head2 MIME::Base64::QuotedPrint, MIME::QuotedPrint - Encoding and decoding
15858 of quoted-printable strings
15859
15860 =over 4
15861
15862 =item SYNOPSIS
15863
15864 =item DESCRIPTION
15865
15866 encode_qp($str), encode_qp($str, $eol), decode_qp($str);
15867
15868 =item COPYRIGHT
15869
15870 =back
15871
15872 =head2 MIME::QuotedPrint - Encoding and decoding of quoted-printable
15873 strings
15874
15875 =over 4
15876
15877 =item SYNOPSIS
15878
15879 =item DESCRIPTION
15880
15881 encode_qp($str), encode_qp($str, $eol), decode_qp($str);
15882
15883 =item COPYRIGHT
15884
15885 =back
15886
15887 =head2 Math::BigFloat - Arbitrary size floating point math package
15888
15889 =over 4
15890
15891 =item SYNOPSIS
15892
15893 =item DESCRIPTION
15894
15895 =over 4
15896
15897 =item Canonical notation
15898
15899 =item Output
15900
15901 =item C<mantissa()>, C<exponent()> and C<parts()>
15902
15903 =item Accuracy vs. Precision
15904
15905 =item Rounding
15906
15907 ffround ( +$scale ), ffround ( -$scale ), ffround ( 0 ), fround  ( +$scale
15908 ), fround  ( -$scale ) and fround ( 0 )
15909
15910 =back
15911
15912 =item EXAMPLES
15913
15914   # not ready yet
15915
15916 =item Autocreating constants
15917
15918 =over 4
15919
15920 =item Math library
15921
15922 =item Using Math::BigInt::Lite
15923
15924 =back
15925
15926 =item BUGS
15927
15928 =item CAVEAT
15929
15930 stringify, bstr(), bdiv, Modifying and =, bpow
15931
15932 =item LICENSE
15933
15934 =item AUTHORS
15935
15936 =back
15937
15938 =head2 Math::BigInt - Arbitrary size integer math package
15939
15940 =over 4
15941
15942 =item SYNOPSIS
15943
15944 =item DESCRIPTION
15945
15946 Canonical notation, Input, Output
15947
15948 =item METHODS
15949
15950 =over 4
15951
15952 =item config
15953
15954 =item accuracy
15955
15956 =item precision
15957
15958 =item brsft
15959
15960 =item new
15961
15962 =item bnan
15963
15964 =item bzero
15965
15966 =item binf
15967
15968 =item bone
15969
15970 =item is_one()/is_zero()/is_nan()/is_inf()
15971
15972 =item is_positive()/is_negative()
15973
15974         $x->is_positive();              # true if >= 0
15975         $x->is_negative();              # true if <  0
15976
15977 =item is_odd()/is_even()/is_int()
15978
15979 =item bcmp
15980
15981 =item bacmp
15982
15983 =item sign
15984
15985 =item bcmp
15986
15987 =item bneg
15988
15989 =item babs
15990
15991 =item bnorm
15992
15993 =item bnot
15994
15995 =item binc
15996
15997 =item bdec
15998
15999 =item badd
16000
16001 =item bsub
16002
16003 =item bmul
16004
16005 =item bdiv
16006
16007 =item bmod
16008
16009 =item bmodinv
16010
16011 =item bmodpow
16012
16013 =item bpow
16014
16015 =item blsft
16016
16017 =item brsft
16018
16019 =item band
16020
16021 =item bior
16022
16023 =item bxor
16024
16025 =item bnot
16026
16027 =item bsqrt
16028
16029 =item bfac
16030
16031 =item round
16032
16033 =item bround
16034
16035 =item bfround
16036
16037 =item bfloor
16038
16039 =item bceil
16040
16041 =item bgcd
16042
16043 =item blcm
16044
16045 =item exponent
16046
16047 =item mantissa
16048
16049 =item parts
16050
16051 =item copy
16052
16053 =item as_number
16054
16055 =item bsstr
16056
16057 =item as_hex
16058
16059 =item as_bin
16060
16061 =back
16062
16063 =item ACCURACY and PRECISION
16064
16065 =over 4
16066
16067 =item Precision P
16068
16069 =item Accuracy A
16070
16071 =item Fallback F
16072
16073 =item Rounding mode R
16074
16075 'trunc', 'even', 'odd', '+inf', '-inf', 'zero', Precision, Accuracy
16076 (significant digits), Setting/Accessing, Creating numbers, Usage,
16077 Precedence, Overriding globals, Local settings, Rounding, Default values,
16078 Remarks
16079
16080 =back
16081
16082 =item INTERNALS
16083
16084 =over 4
16085
16086 =item MATH LIBRARY
16087
16088 =item SIGN
16089
16090 =item mantissa(), exponent() and parts()
16091
16092 =back
16093
16094 =item EXAMPLES
16095
16096   use Math::BigInt;
16097
16098 =item Autocreating constants
16099
16100 =item PERFORMANCE
16101
16102 =over 4
16103
16104 =item Alternative math libraries
16105
16106 =item SUBCLASSING
16107
16108 =back
16109
16110 =item Subclassing Math::BigInt
16111
16112 =item UPGRADING
16113
16114 =over 4
16115
16116 =item Auto-upgrade
16117
16118 bsqrt(), div(), blog()
16119
16120 =back
16121
16122 =item BUGS
16123
16124 Out of Memory!, Fails to load Calc on Perl prior 5.6.0
16125
16126 =item CAVEATS
16127
16128 stringify, bstr(), bsstr() and 'cmp', int(), length, bdiv, infinity
16129 handling, Modifying and =, bpow, Overloading -$x, Mixing different object
16130 types, bsqrt(), brsft()
16131
16132 =item LICENSE
16133
16134 =item SEE ALSO
16135
16136 =item AUTHORS
16137
16138 =back
16139
16140 =head2 Math::BigInt::Calc - Pure Perl module to support Math::BigInt
16141
16142 =over 4
16143
16144 =item SYNOPSIS
16145
16146 =item DESCRIPTION
16147
16148 =item EXPORT
16149
16150 =item WRAP YOUR OWN
16151
16152 =item LICENSE
16153
16154 This program is free software; you may redistribute it and/or modify it
16155 under
16156 the same terms as Perl itself. 
16157
16158 =item AUTHORS
16159
16160 =item SEE ALSO
16161
16162 =back
16163
16164 =head2 Math::BigInt::Scalar - Pure Perl module to test Math::BigInt with
16165 scalars
16166
16167 =over 4
16168
16169 =item SYNOPSIS
16170
16171 =item DESCRIPTION
16172
16173 =item LICENSE
16174
16175 This program is free software; you may redistribute it and/or modify it
16176 under
16177 the same terms as Perl itself. 
16178
16179 =item AUTHOR
16180
16181 =item SEE ALSO
16182
16183 =back
16184
16185 =head2 Math::BigRat - arbitrarily big rationales
16186
16187 =over 4
16188
16189 =item SYNOPSIS
16190
16191 =item DESCRIPTION
16192
16193 =over 4
16194
16195 =item MATH LIBRARY
16196
16197 =back
16198
16199 =item METHODS
16200
16201 =over 4
16202
16203 =item new()
16204
16205 =item numerator()
16206
16207 =item denominator()
16208
16209         $d = $x->denominator();
16210
16211 =item parts()
16212
16213 =item as_number()
16214
16215 =item bfac()
16216
16217 =item blog()
16218
16219 =item bround()/round()/bfround()
16220
16221 =item is_one()
16222
16223 =item is_zero()
16224
16225 =item is_positive()
16226
16227 =item is_negative()
16228
16229 =item is_int()
16230
16231 =item is_odd()
16232
16233 =item is_even()
16234
16235 =item bceil()
16236
16237 =item bfloor()
16238
16239         $x->bfloor();
16240
16241 =back
16242
16243 =item BUGS
16244
16245 inf handling (partial), NaN handling (partial), rounding (not implemented
16246 except for bceil/bfloor), $x ** $y where $y is not an integer
16247
16248 =item LICENSE
16249
16250 =item SEE ALSO
16251
16252 =item AUTHORS
16253
16254 =back
16255
16256 =head2 Math::Complex - complex numbers and associated mathematical
16257 functions
16258
16259 =over 4
16260
16261 =item SYNOPSIS
16262
16263 =item DESCRIPTION
16264
16265 =item OPERATIONS
16266
16267 =item CREATION
16268
16269 =item STRINGIFICATION
16270
16271 =over 4
16272
16273 =item CHANGED IN PERL 5.6
16274
16275 =back
16276
16277 =item USAGE
16278
16279 =item ERRORS DUE TO DIVISION BY ZERO OR LOGARITHM OF ZERO
16280
16281 =item ERRORS DUE TO INDIGESTIBLE ARGUMENTS
16282
16283 =item BUGS
16284
16285 =item AUTHORS
16286
16287 =back
16288
16289 =head2 Math::Trig - trigonometric functions
16290
16291 =over 4
16292
16293 =item SYNOPSIS
16294
16295 =item DESCRIPTION
16296
16297 =item TRIGONOMETRIC FUNCTIONS
16298
16299 B<tan>
16300
16301 =over 4
16302
16303 =item ERRORS DUE TO DIVISION BY ZERO
16304
16305 =item SIMPLE (REAL) ARGUMENTS, COMPLEX RESULTS
16306
16307 =back
16308
16309 =item PLANE ANGLE CONVERSIONS
16310
16311 =item RADIAL COORDINATE CONVERSIONS
16312
16313 =over 4
16314
16315 =item COORDINATE SYSTEMS
16316
16317 =item 3-D ANGLE CONVERSIONS
16318
16319 cartesian_to_cylindrical, cartesian_to_spherical, cylindrical_to_cartesian,
16320 cylindrical_to_spherical, spherical_to_cartesian, spherical_to_cylindrical
16321
16322 =back
16323
16324 =item GREAT CIRCLE DISTANCES AND DIRECTIONS
16325
16326 =item EXAMPLES
16327
16328 =over 4
16329
16330 =item CAVEAT FOR GREAT CIRCLE FORMULAS
16331
16332 =back
16333
16334 =item BUGS
16335
16336 =item AUTHORS
16337
16338 =back
16339
16340 =head2 Memoize - Make functions faster by trading space for time
16341
16342 =over 4
16343
16344 =item SYNOPSIS
16345
16346 =item DESCRIPTION
16347
16348 =item DETAILS
16349
16350 =item OPTIONS
16351
16352 =over 4
16353
16354 =item INSTALL
16355
16356 =item NORMALIZER
16357
16358 =item C<SCALAR_CACHE>, C<LIST_CACHE>
16359
16360 C<MEMORY>, C<HASH>, C<TIE>, C<FAULT>, C<MERGE>
16361
16362 =back
16363
16364 =item OTHER FACILITIES
16365
16366 =over 4
16367
16368 =item C<unmemoize>
16369
16370 =item C<flush_cache>
16371
16372 =back
16373
16374 =item CAVEATS
16375
16376 =item PERSISTENT CACHE SUPPORT
16377
16378 =item EXPIRATION SUPPORT
16379
16380 =item BUGS
16381
16382 =item MAILING LIST
16383
16384 =item AUTHOR
16385
16386 =item COPYRIGHT AND LICENSE
16387
16388 =item THANK YOU
16389
16390 =back
16391
16392 =head2 Memoize::AnyDBM_File - glue to provide EXISTS for AnyDBM_File for
16393 Storable use
16394
16395 =over 4
16396
16397 =item DESCRIPTION
16398
16399 =back
16400
16401 =head2 Memoize::Expire - Plug-in module for automatic expiration of
16402 memoized values
16403
16404 =over 4
16405
16406 =item SYNOPSIS
16407
16408 =item DESCRIPTION
16409
16410 =item INTERFACE
16411
16412  TIEHASH,  EXISTS,  STORE
16413
16414 =item ALTERNATIVES
16415
16416 =item CAVEATS
16417
16418 =item AUTHOR
16419
16420 =item SEE ALSO
16421
16422 =back
16423
16424 =head2 Memoize::ExpireFile - test for Memoize expiration semantics
16425
16426 =over 4
16427
16428 =item DESCRIPTION
16429
16430 =back
16431
16432 =head2 Memoize::ExpireTest - test for Memoize expiration semantics
16433
16434 =over 4
16435
16436 =item DESCRIPTION
16437
16438 =back
16439
16440 =head2 Memoize::NDBM_File - glue to provide EXISTS for NDBM_File for
16441 Storable use
16442
16443 =over 4
16444
16445 =item DESCRIPTION
16446
16447 =back
16448
16449 =head2 Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for
16450 Storable use
16451
16452 =over 4
16453
16454 =item DESCRIPTION
16455
16456 =back
16457
16458 =head2 Memoize::Storable - store Memoized data in Storable database
16459
16460 =over 4
16461
16462 =item DESCRIPTION
16463
16464 =back
16465
16466 =head2 NDBM_File - Tied access to ndbm files
16467
16468 =over 4
16469
16470 =item SYNOPSIS
16471
16472 =item DESCRIPTION
16473
16474 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
16475
16476 =item DIAGNOSTICS
16477
16478 =over 4
16479
16480 =item C<ndbm store returned -1, errno 22, key "..." at ...>
16481
16482 =back
16483
16484 =item BUGS AND WARNINGS
16485
16486 =back
16487
16488 =head2 NEXT - Provide a pseudo-class NEXT that allows method redispatch
16489
16490 =over 4
16491
16492 =item SYNOPSIS
16493
16494 =item DESCRIPTION
16495
16496 =over 4
16497
16498 =item Enforcing redispatch
16499
16500 =item Avoiding repetitions
16501
16502 =back
16503
16504 =item AUTHOR
16505
16506 =item BUGS AND IRRITATIONS
16507
16508 =item COPYRIGHT
16509
16510 =back
16511
16512 =head2 Net::Cmd - Network Command class (as used by FTP, SMTP etc)
16513
16514 =over 4
16515
16516 =item SYNOPSIS
16517
16518 =item DESCRIPTION
16519
16520 =item USER METHODS
16521
16522 debug ( VALUE ), message (), code (), ok (), status (), datasend ( DATA ),
16523 dataend ()
16524
16525 =item CLASS METHODS
16526
16527 debug_print ( DIR, TEXT ), debug_text ( TEXT ), command ( CMD [, ARGS, ...
16528 ]), unsupported (), response (), parse_response ( TEXT ), getline (),
16529 ungetline ( TEXT ), read_until_dot (), tied_fh ()
16530
16531 =item EXPORTS
16532
16533 =item AUTHOR
16534
16535 =item COPYRIGHT
16536
16537 =back
16538
16539 =head2 Net::Config - Local configuration data for libnet
16540
16541 =over 4
16542
16543 =item SYNOPSYS
16544
16545 =item DESCRIPTION
16546
16547 =item METHODS
16548
16549 requires_firewall HOST
16550
16551 =item NetConfig VALUES
16552
16553 nntp_hosts, snpp_hosts, pop3_hosts, smtp_hosts, ph_hosts, daytime_hosts,
16554 time_hosts, inet_domain, ftp_firewall, ftp_firewall_type, ftp_ext_passive,
16555 ftp_int_pasive, local_netmask, test_hosts, test_exists
16556
16557 =back
16558
16559 =head2 Net::Domain - Attempt to evaluate the current host's internet name
16560 and domain
16561
16562 =over 4
16563
16564 =item SYNOPSIS
16565
16566 =item DESCRIPTION
16567
16568 hostfqdn (), hostname (), hostdomain ()
16569
16570 =item AUTHOR
16571
16572 =item COPYRIGHT
16573
16574 =back
16575
16576 =head2 Net::FTP - FTP Client class
16577
16578 =over 4
16579
16580 =item SYNOPSIS
16581
16582 =item DESCRIPTION
16583
16584 =item OVERVIEW
16585
16586 =item CONSTRUCTOR
16587
16588 new (HOST [,OPTIONS])
16589
16590 =item METHODS
16591
16592 login ([LOGIN [,PASSWORD [, ACCOUNT] ] ]), authorize ( [AUTH [, RESP]]),
16593 site (ARGS), type (TYPE [, ARGS]), ascii ([ARGS]) binary([ARGS])
16594 ebcdic([ARGS]) byte([ARGS]), rename ( OLDNAME, NEWNAME ), delete ( FILENAME
16595 ), cwd ( [ DIR ] ), cdup (), pwd (), restart ( WHERE ), rmdir ( DIR ),
16596 mkdir ( DIR [, RECURSE ]), ls ( [ DIR ] ), dir ( [ DIR ] ), get (
16597 REMOTE_FILE [, LOCAL_FILE [, WHERE]] ), put ( LOCAL_FILE [, REMOTE_FILE ]
16598 ), put_unique ( LOCAL_FILE [, REMOTE_FILE ] ), append ( LOCAL_FILE [,
16599 REMOTE_FILE ] ), unique_name (), mdtm ( FILE ), size ( FILE ), supported (
16600 CMD ), hash ( [FILEHANDLE_GLOB_REF],[ BYTES_PER_HASH_MARK] ), nlst ( [ DIR
16601 ] ), list ( [ DIR ] ), retr ( FILE ), stor ( FILE ), stou ( FILE ), appe (
16602 FILE ), port ( [ PORT ] ), pasv (), pasv_xfer ( SRC_FILE, DEST_SERVER [,
16603 DEST_FILE ] ), pasv_xfer_unique ( SRC_FILE, DEST_SERVER [, DEST_FILE ] ),
16604 pasv_wait ( NON_PASV_SERVER ), abort (), quit ()
16605
16606 =over 4
16607
16608 =item Methods for the adventurous
16609
16610 quot (CMD [,ARGS])
16611
16612 =back
16613
16614 =item THE dataconn CLASS
16615
16616 read ( BUFFER, SIZE [, TIMEOUT ] ), write ( BUFFER, SIZE [, TIMEOUT ] ),
16617 bytes_read (), abort (), close ()
16618
16619 =item UNIMPLEMENTED
16620
16621 B<ALLO>, B<SMNT>, B<HELP>, B<MODE>, B<SYST>, B<STAT>, B<STRU>, B<REIN>
16622
16623 =item REPORTING BUGS
16624
16625 =item AUTHOR
16626
16627 =item SEE ALSO
16628
16629 =item USE EXAMPLES
16630
16631 http://www.csh.rit.edu/~adam/Progs/autoftp-2.0.tar.gz
16632
16633 =item CREDITS
16634
16635 =item COPYRIGHT
16636
16637 =back
16638
16639 =head2 Net::NNTP - NNTP Client class
16640
16641 =over 4
16642
16643 =item SYNOPSIS
16644
16645 =item DESCRIPTION
16646
16647 =item CONSTRUCTOR
16648
16649 new ( [ HOST ] [, OPTIONS ])
16650
16651 =item METHODS
16652
16653 article ( [ MSGID|MSGNUM ], [FH] ), body ( [ MSGID|MSGNUM ], [FH] ), head (
16654 [ MSGID|MSGNUM ], [FH] ), articlefh ( [ MSGID|MSGNUM ] ), bodyfh ( [
16655 MSGID|MSGNUM ] ), headfh ( [ MSGID|MSGNUM ] ), nntpstat ( [ MSGID|MSGNUM ]
16656 ), group ( [ GROUP ] ), ihave ( MSGID [, MESSAGE ]), last (), date (),
16657 postok (), authinfo ( USER, PASS ), list (), newgroups ( SINCE [,
16658 DISTRIBUTIONS ]), newnews ( SINCE [, GROUPS [, DISTRIBUTIONS ]]), next (),
16659 post ( [ MESSAGE ] ), postfh (), slave (), quit ()
16660
16661 =over 4
16662
16663 =item Extension methods
16664
16665 newsgroups ( [ PATTERN ] ), distributions (), subscriptions (),
16666 overview_fmt (), active_times (), active ( [ PATTERN ] ), xgtitle ( PATTERN
16667 ), xhdr ( HEADER, MESSAGE-SPEC ), xover ( MESSAGE-SPEC ), xpath (
16668 MESSAGE-ID ), xpat ( HEADER, PATTERN, MESSAGE-SPEC), xrover, listgroup ( [
16669 GROUP ] ), reader
16670
16671 =back
16672
16673 =item UNSUPPORTED
16674
16675 =item DEFINITIONS
16676
16677 MESSAGE-SPEC, PATTERN, Examples, C<[^]-]>, C<*bdc>, C<[0-9a-zA-Z]>, C<a??d>
16678
16679 =item SEE ALSO
16680
16681 =item AUTHOR
16682
16683 =item COPYRIGHT
16684
16685 =back
16686
16687 =head2 Net::POP3 - Post Office Protocol 3 Client class (RFC1939)
16688
16689 =over 4
16690
16691 =item SYNOPSIS
16692
16693 =item DESCRIPTION
16694
16695 =item EXAMPLES
16696
16697 =item CONSTRUCTOR
16698
16699 new ( [ HOST, ] [ OPTIONS ] )
16700
16701 =item METHODS
16702
16703 user ( USER ), pass ( PASS ), login ( [ USER [, PASS ]] ), apop ( [ USER [,
16704 PASS ]] ), top ( MSGNUM [, NUMLINES ] ), list ( [ MSGNUM ] ), get ( MSGNUM
16705 [, FH ] ), getfh ( MSGNUM ), last (), popstat (), ping ( USER ), uidl ( [
16706 MSGNUM ] ), delete ( MSGNUM ), reset (), quit ()
16707
16708 =item NOTES
16709
16710 =item SEE ALSO
16711
16712 =item AUTHOR
16713
16714 =item COPYRIGHT
16715
16716 =back
16717
16718 =head2 Net::Ping - check a remote host for reachability
16719
16720 =over 4
16721
16722 =item SYNOPSIS
16723
16724 =item DESCRIPTION
16725
16726 =over 4
16727
16728 =item Functions
16729
16730 Net::Ping->new([$proto [, $def_timeout [, $bytes [, $device ]]]]);,
16731 $p->ping($host [, $timeout]);, $p->source_verify( { 0 | 1 } );,
16732 $p->service_check( { 0 | 1 } );, $p->tcp_service_check( { 0 | 1 } );,
16733 $p->hires( { 0 | 1 } );, $p->bind($local_addr);, $p->open($host);, $p->ack(
16734 [ $host ] );, $p->nack( $failed_ack_host );, $p->close();, pingecho($host
16735 [, $timeout]);
16736
16737 =back
16738
16739 =item NOTES
16740
16741 =item INSTALL
16742
16743 =item BUGS
16744
16745 =item AUTHORS
16746
16747 =item COPYRIGHT
16748
16749 =back
16750
16751 =head2 Net::SMTP - Simple Mail Transfer Protocol Client
16752
16753 =over 4
16754
16755 =item SYNOPSIS
16756
16757 =item DESCRIPTION
16758
16759 =item EXAMPLES
16760
16761 =item CONSTRUCTOR
16762
16763 new Net::SMTP [ HOST, ] [ OPTIONS ]
16764
16765 =item METHODS
16766
16767 banner (), domain (), hello ( DOMAIN ), etrn ( DOMAIN ), auth ( USERNAME,
16768 PASSWORD ), mail ( ADDRESS [, OPTIONS] ), send ( ADDRESS ), send_or_mail (
16769 ADDRESS ), send_and_mail ( ADDRESS ), reset (), recipient ( ADDRESS [,
16770 ADDRESS [ ...]] [, OPTIONS ] ), to ( ADDRESS [, ADDRESS [...]] ), cc (
16771 ADDRESS [, ADDRESS [...]] ), bcc ( ADDRESS [, ADDRESS [...]] ), data ( [
16772 DATA ] ), expand ( ADDRESS ), verify ( ADDRESS ), help ( [ $subject ] ),
16773 quit ()
16774
16775 =item ADDRESSES
16776
16777 =item SEE ALSO
16778
16779 =item AUTHOR
16780
16781 =item COPYRIGHT
16782
16783 =back
16784
16785 =head2 Net::Time - time and daytime network client interface
16786
16787 =over 4
16788
16789 =item SYNOPSIS
16790
16791 =item DESCRIPTION
16792
16793 inet_time ( [HOST [, PROTOCOL [, TIMEOUT]]]), inet_daytime ( [HOST [,
16794 PROTOCOL [, TIMEOUT]]])
16795
16796 =item AUTHOR
16797
16798 =item COPYRIGHT
16799
16800 =back
16801
16802 =head2 Net::hostent - by-name interface to Perl's built-in gethost*()
16803 functions
16804
16805 =over 4
16806
16807 =item SYNOPSIS
16808
16809 =item DESCRIPTION
16810
16811 =item EXAMPLES
16812
16813 =item NOTE
16814
16815 =item AUTHOR
16816
16817 =back
16818
16819 =head2 Net::libnetFAQ, libnetFAQ - libnet Frequently Asked Questions
16820
16821 =over 4
16822
16823 =item DESCRIPTION
16824
16825 =over 4
16826
16827 =item Where to get this document
16828
16829 =item How to contribute to this document
16830
16831 =back
16832
16833 =item Author and Copyright Information
16834
16835 =over 4
16836
16837 =item Disclaimer
16838
16839 =back
16840
16841 =item Obtaining and installing libnet
16842
16843 =over 4
16844
16845 =item What is libnet ?
16846
16847 =item Which version of perl do I need ?
16848
16849 =item What other modules do I need ?
16850
16851 =item What machines support libnet ?
16852
16853 =item Where can I get the latest libnet release
16854
16855 =back
16856
16857 =item Using Net::FTP
16858
16859 =over 4
16860
16861 =item How do I download files from an FTP server ?
16862
16863 =item How do I transfer files in binary mode ?
16864
16865 =item How can I get the size of a file on a remote FTP server ?
16866
16867 =item How can I get the modification time of a file on a remote FTP server
16868 ?
16869
16870 =item How can I change the permissions of a file on a remote server ?
16871
16872 =item Can I do a reget operation like the ftp command ?
16873
16874 =item How do I get a directory listing from an FTP server ?
16875
16876 =item Changing directory to "" does not fail ?
16877
16878 =item I am behind a SOCKS firewall, but the Firewall option does not work ?
16879
16880 =item I am behind an FTP proxy firewall, but cannot access machines outside
16881 ?
16882
16883 =item My ftp proxy firewall does not listen on port 21
16884
16885 =item Is it possible to change the file permissions of a file on an FTP
16886 server ?
16887
16888 =item I have seen scripts call a method message, but cannot find it
16889 documented ?
16890
16891 =item Why does Net::FTP not implement mput and mget methods
16892
16893 =back
16894
16895 =item Using Net::SMTP
16896
16897 =over 4
16898
16899 =item Why can't the part of an Email address after the @ be used as the
16900 hostname ?
16901
16902 =item Why does Net::SMTP not do DNS MX lookups ?
16903
16904 =item The verify method always returns true ?
16905
16906 =back
16907
16908 =item Debugging scripts
16909
16910 =over 4
16911
16912 =item How can I debug my scripts that use Net::* modules ?
16913
16914 =back
16915
16916 =item AUTHOR AND COPYRIGHT
16917
16918 =back
16919
16920 =head2 Net::netent - by-name interface to Perl's built-in getnet*()
16921 functions
16922
16923 =over 4
16924
16925 =item SYNOPSIS
16926
16927 =item DESCRIPTION
16928
16929 =item EXAMPLES
16930
16931 =item NOTE
16932
16933 =item AUTHOR
16934
16935 =back
16936
16937 =head2 Net::protoent - by-name interface to Perl's built-in getproto*()
16938 functions
16939
16940 =over 4
16941
16942 =item SYNOPSIS
16943
16944 =item DESCRIPTION
16945
16946 =item NOTE
16947
16948 =item AUTHOR
16949
16950 =back
16951
16952 =head2 Net::servent - by-name interface to Perl's built-in getserv*()
16953 functions
16954
16955 =over 4
16956
16957 =item SYNOPSIS
16958
16959 =item DESCRIPTION
16960
16961 =item EXAMPLES
16962
16963 =item NOTE
16964
16965 =item AUTHOR
16966
16967 =back
16968
16969 =head2 Netrc, Net::Netrc - OO interface to users netrc file
16970
16971 =over 4
16972
16973 =item SYNOPSIS
16974
16975 =item DESCRIPTION
16976
16977 =item THE .netrc FILE
16978
16979 machine name, default, login name, password string, account string, macdef
16980 name
16981
16982 =item CONSTRUCTOR
16983
16984 lookup ( MACHINE [, LOGIN ])
16985
16986 =item METHODS
16987
16988 login (), password (), account (), lpa ()
16989
16990 =item AUTHOR
16991
16992 =item SEE ALSO
16993
16994 =item COPYRIGHT
16995
16996 =back
16997
16998 =head2 O - Generic interface to Perl Compiler backends
16999
17000 =over 4
17001
17002 =item SYNOPSIS
17003
17004 =item DESCRIPTION
17005
17006 =item CONVENTIONS
17007
17008 =item IMPLEMENTATION
17009
17010 =item BUGS
17011
17012 =item AUTHOR
17013
17014 =back
17015
17016 =head2 ODBM_File - Tied access to odbm files
17017
17018 =over 4
17019
17020 =item SYNOPSIS
17021
17022 =item DESCRIPTION
17023
17024 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
17025
17026 =item DIAGNOSTICS
17027
17028 =over 4
17029
17030 =item C<odbm store returned -1, errno 22, key "..." at ...>
17031
17032 =back
17033
17034 =item BUGS AND WARNINGS
17035
17036 =back
17037
17038 =head2 Opcode - Disable named opcodes when compiling perl code
17039
17040 =over 4
17041
17042 =item SYNOPSIS
17043
17044 =item DESCRIPTION
17045
17046 =item NOTE
17047
17048 =item WARNING
17049
17050 =item Operator Names and Operator Lists
17051
17052 an operator name (opname), an operator tag name (optag), a negated opname
17053 or optag, an operator set (opset)
17054
17055 =item Opcode Functions
17056
17057 opcodes, opset (OP, ...), opset_to_ops (OPSET), opset_to_hex (OPSET),
17058 full_opset, empty_opset, invert_opset (OPSET), verify_opset (OPSET, ...),
17059 define_optag (OPTAG, OPSET), opmask_add (OPSET), opmask, opdesc (OP, ...),
17060 opdump (PAT)
17061
17062 =item Manipulating Opsets
17063
17064 =item TO DO (maybe)
17065
17066 =back
17067
17068 =over 4
17069
17070 =item Predefined Opcode Tags
17071
17072 :base_core, :base_mem, :base_loop, :base_io, :base_orig, :base_math,
17073 :base_thread, :default, :filesys_read, :sys_db, :browse, :filesys_open,
17074 :filesys_write, :subprocess, :ownprocess, :others, :still_to_be_decided,
17075 :dangerous
17076
17077 =item SEE ALSO
17078
17079 =item AUTHORS
17080
17081 =back
17082
17083 =head2 Opcode::Safe, Safe - Compile and execute code in restricted
17084 compartments
17085
17086 =over 4
17087
17088 =item SYNOPSIS
17089
17090 =item DESCRIPTION
17091
17092 a new namespace, an operator mask
17093
17094 =item WARNING
17095
17096 =over 4
17097
17098 =item RECENT CHANGES
17099
17100 =item Methods in class Safe
17101
17102 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
17103 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
17104 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
17105 root (NAMESPACE), mask (MASK)
17106
17107 =item Some Safety Issues
17108
17109 Memory, CPU, Snooping, Signals, State Changes
17110
17111 =item AUTHOR
17112
17113 =back
17114
17115 =back
17116
17117 =head2 Opcode::ops, ops - Perl pragma to restrict unsafe operations when
17118 compiling
17119
17120 =over 4
17121
17122 =item SYNOPSIS  
17123
17124 =item DESCRIPTION
17125
17126 =item SEE ALSO
17127
17128 =back
17129
17130 =head2 POSIX - Perl interface to IEEE Std 1003.1
17131
17132 =over 4
17133
17134 =item SYNOPSIS
17135
17136 =item DESCRIPTION
17137
17138 =item NOTE
17139
17140 =item CAVEATS 
17141
17142 =item FUNCTIONS
17143
17144 _exit, abort, abs, access, acos, alarm, asctime, asin, assert, atan, atan2,
17145 atexit, atof, atoi, atol, bsearch, calloc, ceil, chdir, chmod, chown,
17146 clearerr, clock, close, closedir, cos, cosh, creat, ctermid, ctime,
17147 cuserid, difftime, div, dup, dup2, errno, execl, execle, execlp, execv,
17148 execve, execvp, exit, exp, fabs, fclose, fcntl, fdopen, feof, ferror,
17149 fflush, fgetc, fgetpos, fgets, fileno, floor, fmod, fopen, fork, fpathconf,
17150 fprintf, fputc, fputs, fread, free, freopen, frexp, fscanf, fseek, fsetpos,
17151 fstat, fsync, ftell, fwrite, getc, getchar, getcwd, getegid, getenv,
17152 geteuid, getgid, getgrgid, getgrnam, getgroups, getlogin, getpgrp, getpid,
17153 getppid, getpwnam, getpwuid, gets, getuid, gmtime, isalnum, isalpha,
17154 isatty, iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace,
17155 isupper, isxdigit, kill, labs, ldexp, ldiv, link, localeconv, localtime,
17156 log, log10, longjmp, lseek, malloc, mblen, mbstowcs, mbtowc, memchr,
17157 memcmp, memcpy, memmove, memset, mkdir, mkfifo, mktime, modf, nice,
17158 offsetof, open, opendir, pathconf, pause, perror, pipe, pow, printf, putc,
17159 putchar, puts, qsort, raise, rand, read, readdir, realloc, remove, rename,
17160 rewind, rewinddir, rmdir, scanf, setgid, setjmp, setlocale, setpgid,
17161 setsid, setuid, sigaction, siglongjmp, sigpending, sigprocmask, sigsetjmp,
17162 sigsuspend, sin, sinh, sleep, sprintf, sqrt, srand, sscanf, stat, strcat,
17163 strchr, strcmp, strcoll, strcpy, strcspn, strerror, strftime, strlen,
17164 strncat, strncmp, strncpy, strpbrk, strrchr, strspn, strstr, strtod,
17165 strtok, strtol, strtoul, strxfrm, sysconf, system, tan, tanh, tcdrain,
17166 tcflow, tcflush, tcgetpgrp, tcsendbreak, tcsetpgrp, time, times, tmpfile,
17167 tmpnam, tolower, toupper, ttyname, tzname, tzset, umask, uname, ungetc,
17168 unlink, utime, vfprintf, vprintf, vsprintf, wait, waitpid, wcstombs,
17169 wctomb, write
17170
17171 =item CLASSES
17172
17173 =over 4
17174
17175 =item POSIX::SigAction
17176
17177 new, handler, mask, flags
17178
17179 =item POSIX::SigSet
17180
17181 new, addset, delset, emptyset, fillset, ismember
17182
17183 =item POSIX::Termios
17184
17185 new, getattr, getcc, getcflag, getiflag, getispeed, getlflag, getoflag,
17186 getospeed, setattr, setcc, setcflag, setiflag, setispeed, setlflag,
17187 setoflag, setospeed, Baud rate values, Terminal interface values, c_cc
17188 field values, c_cflag field values, c_iflag field values, c_lflag field
17189 values, c_oflag field values
17190
17191 =back
17192
17193 =item PATHNAME CONSTANTS
17194
17195 Constants
17196
17197 =item POSIX CONSTANTS
17198
17199 Constants
17200
17201 =item SYSTEM CONFIGURATION
17202
17203 Constants
17204
17205 =item ERRNO
17206
17207 Constants
17208
17209 =item FCNTL
17210
17211 Constants
17212
17213 =item FLOAT
17214
17215 Constants
17216
17217 =item LIMITS
17218
17219 Constants
17220
17221 =item LOCALE
17222
17223 Constants
17224
17225 =item MATH
17226
17227 Constants
17228
17229 =item SIGNAL
17230
17231 Constants
17232
17233 =item STAT
17234
17235 Constants, Macros
17236
17237 =item STDLIB
17238
17239 Constants
17240
17241 =item STDIO
17242
17243 Constants
17244
17245 =item TIME
17246
17247 Constants
17248
17249 =item UNISTD
17250
17251 Constants
17252
17253 =item WAIT
17254
17255 Constants, WNOHANG, WUNTRACED, Macros, WIFEXITED, WEXITSTATUS, WIFSIGNALED,
17256 WTERMSIG, WIFSTOPPED, WSTOPSIG
17257
17258 =back
17259
17260 =head2 PerlIO - On demand loader for PerlIO layers and root of PerlIO::*
17261 name space
17262
17263 =over 4
17264
17265 =item SYNOPSIS
17266
17267 =item DESCRIPTION
17268
17269 unix, stdio, perlio, crlf, utf8, bytes, raw, pop
17270
17271 =over 4
17272
17273 =item Custom Layers
17274
17275 :encoding, :via
17276
17277 =item Alternatives to raw
17278
17279 =item Defaults and how to override them
17280
17281 =item Querying the layers of filehandle
17282
17283 =back
17284
17285 =item AUTHOR
17286
17287 =item SEE ALSO
17288
17289 =back
17290
17291 =head2 PerlIO::encoding - encoding layer
17292
17293 =over 4
17294
17295 =item SYNOPSIS
17296
17297 =item DESCRIPTION
17298
17299 =item SEE ALSO
17300
17301 =back
17302
17303 =head2 PerlIO::scalar - support module for in-memory IO.
17304
17305 =over 4
17306
17307 =item SYNOPSIS
17308
17309 =item DESCRIPTION
17310
17311 =back
17312
17313 =head2 PerlIO::via - Helper class for PerlIO layers implemented in perl
17314
17315 =over 4
17316
17317 =item SYNOPSIS
17318
17319 =item DESCRIPTION
17320
17321 =item EXPECTED METHODS
17322
17323 $class->PUSHED([$mode[,$fh]]), $obj->POPPED([$fh]),
17324 $obj->OPEN($path,$mode[,$fh]), $obj->BINMODE([,$fh]),
17325 $obj->FDOPEN($fd[,$fh]), $obj->SYSOPEN($path,$imode,$perm,[,$fh]),
17326 $obj->FILENO($fh), $obj->READ($buffer,$len,$fh), $obj->WRITE($buffer,$fh),
17327 $obj->FILL($fh), $obj->CLOSE($fh), $obj->SEEK($posn,$whence,$fh),
17328 $obj->TELL($fh), $obj->UNREAD($buffer,$fh), $obj->FLUSH($fh),
17329 $obj->SETLINEBUF($fh), $obj->CLEARERR($fh), $obj->ERROR($fh),
17330 $obj->EOF($fh)
17331
17332 =item EXAMPLES
17333
17334 =over 4
17335
17336 =item Example - a Hexadecimal Handle
17337
17338 =back
17339
17340 =back
17341
17342 =head2 PerlIO::via::QuotedPrint - PerlIO layer for quoted-printable strings
17343
17344 =over 4
17345
17346 =item SYNOPSIS
17347
17348 =item DESCRIPTION
17349
17350 =item SEE ALSO
17351
17352 =item COPYRIGHT
17353
17354 =back
17355
17356 =head2 Pod::Checker, podchecker() - check pod documents for syntax errors
17357
17358 =over 4
17359
17360 =item SYNOPSIS
17361
17362 =item OPTIONS/ARGUMENTS
17363
17364 =over 4
17365
17366 =item podchecker()
17367
17368 B<-warnings> =E<gt> I<val>
17369
17370 =back
17371
17372 =item DESCRIPTION
17373
17374 =item DIAGNOSTICS
17375
17376 =over 4
17377
17378 =item Errors
17379
17380 empty =headn, =over on line I<N> without closing =back, =item without
17381 previous =over, =back without previous =over, No argument for =begin, =end
17382 without =begin, Nested =begin's, =for without formatter specification,
17383 unresolved internal link I<NAME>, Unknown command "I<CMD>", Unknown
17384 interior-sequence "I<SEQ>", nested commands
17385 I<CMD>E<lt>...I<CMD>E<lt>...E<gt>...E<gt>, garbled entity I<STRING>, Entity
17386 number out of range, malformed link LE<lt>E<gt>, nonempty ZE<lt>E<gt>,
17387 empty XE<lt>E<gt>, Spurious text after =pod / =cut, Spurious character(s)
17388 after =back
17389
17390 =item Warnings
17391
17392 multiple occurrence of link target I<name>, line containing nothing but
17393 whitespace in paragraph, file does not start with =head, previous =item has
17394 no contents, preceding non-item paragraph(s), =item type mismatch (I<one>
17395 vs. I<two>), I<N> unescaped C<E<lt>E<gt>> in paragraph, Unknown entity, No
17396 items in =over, No argument for =item, empty section in previous paragraph,
17397 Verbatim paragraph in NAME section, =headI<n> without preceding higher
17398 level
17399
17400 =item Hyperlinks
17401
17402 ignoring leading/trailing whitespace in link, (section) in '$page'
17403 deprecated, alternative text/node '%s' contains non-escaped | or /
17404
17405 =back
17406
17407 =item RETURN VALUE
17408
17409 =item EXAMPLES
17410
17411 =item INTERFACE
17412
17413 =back
17414
17415 C<Pod::Checker-E<gt>new( %options )>
17416
17417 C<$checker-E<gt>poderror( @args )>, C<$checker-E<gt>poderror( {%opts},
17418 @args )>
17419
17420 C<$checker-E<gt>num_errors()>
17421
17422 C<$checker-E<gt>num_warnings()>
17423
17424 C<$checker-E<gt>name()>
17425
17426 C<$checker-E<gt>node()>
17427
17428 C<$checker-E<gt>idx()>
17429
17430 C<$checker-E<gt>hyperlink()>
17431
17432 =over 4
17433
17434 =item AUTHOR
17435
17436 =back
17437
17438 =head2 Pod::Find - find POD documents in directory trees
17439
17440 =over 4
17441
17442 =item SYNOPSIS
17443
17444 =item DESCRIPTION
17445
17446 =back
17447
17448 =over 4
17449
17450 =item C<pod_find( { %opts } , @directories )>
17451
17452 C<-verbose =E<gt> 1>, C<-perl =E<gt> 1>, C<-script =E<gt> 1>, C<-inc =E<gt>
17453 1>
17454
17455 =back
17456
17457 =over 4
17458
17459 =item C<simplify_name( $str )>
17460
17461 =back
17462
17463 =over 4
17464
17465 =item C<pod_where( { %opts }, $pod )>
17466
17467 C<-inc =E<gt> 1>, C<-dirs =E<gt> [ $dir1, $dir2, ... ]>, C<-verbose =E<gt>
17468 1>
17469
17470 =back
17471
17472 =over 4
17473
17474 =item C<contains_pod( $file , $verbose )>
17475
17476 =back
17477
17478 =over 4
17479
17480 =item AUTHOR
17481
17482 =item SEE ALSO
17483
17484 =back
17485
17486 =head2 Pod::Html - module to convert pod files to HTML
17487
17488 =over 4
17489
17490 =item SYNOPSIS
17491
17492 =item DESCRIPTION
17493
17494 =item ARGUMENTS
17495
17496 backlink, cachedir, css, flush, header, help, htmldir, htmlroot, index,
17497 infile, libpods, netscape, outfile, podpath, podroot, quiet, recurse,
17498 title, verbose
17499
17500 =item EXAMPLE
17501
17502 =item ENVIRONMENT
17503
17504 =item AUTHOR
17505
17506 =item SEE ALSO
17507
17508 =item COPYRIGHT
17509
17510 =back
17511
17512 =head2 Pod::InputObjects - objects representing POD input paragraphs,
17513 commands, etc.
17514
17515 =over 4
17516
17517 =item SYNOPSIS
17518
17519 =item REQUIRES
17520
17521 =item EXPORTS
17522
17523 =item DESCRIPTION
17524
17525 package B<Pod::InputSource>, package B<Pod::Paragraph>, package
17526 B<Pod::InteriorSequence>, package B<Pod::ParseTree>
17527
17528 =back
17529
17530 =over 4
17531
17532 =item B<Pod::InputSource>
17533
17534 =back
17535
17536 =over 4
17537
17538 =item B<new()>
17539
17540 =back
17541
17542 =over 4
17543
17544 =item B<name()>
17545
17546 =back
17547
17548 =over 4
17549
17550 =item B<handle()>
17551
17552 =back
17553
17554 =over 4
17555
17556 =item B<was_cutting()>
17557
17558 =back
17559
17560 =over 4
17561
17562 =item B<Pod::Paragraph>
17563
17564 =back
17565
17566 =over 4
17567
17568 =item Pod::Paragraph-E<gt>B<new()>
17569
17570 =back
17571
17572 =over 4
17573
17574 =item $pod_para-E<gt>B<cmd_name()>
17575
17576 =back
17577
17578 =over 4
17579
17580 =item $pod_para-E<gt>B<text()>
17581
17582 =back
17583
17584 =over 4
17585
17586 =item $pod_para-E<gt>B<raw_text()>
17587
17588 =back
17589
17590 =over 4
17591
17592 =item $pod_para-E<gt>B<cmd_prefix()>
17593
17594 =back
17595
17596 =over 4
17597
17598 =item $pod_para-E<gt>B<cmd_separator()>
17599
17600 =back
17601
17602 =over 4
17603
17604 =item $pod_para-E<gt>B<parse_tree()>
17605
17606 =back
17607
17608 =over 4
17609
17610 =item $pod_para-E<gt>B<file_line()>
17611
17612 =back
17613
17614 =over 4
17615
17616 =item B<Pod::InteriorSequence>
17617
17618 =back
17619
17620 =over 4
17621
17622 =item Pod::InteriorSequence-E<gt>B<new()>
17623
17624 =back
17625
17626 =over 4
17627
17628 =item $pod_seq-E<gt>B<cmd_name()>
17629
17630 =back
17631
17632 =over 4
17633
17634 =item $pod_seq-E<gt>B<prepend()>
17635
17636 =back
17637
17638 =over 4
17639
17640 =item $pod_seq-E<gt>B<append()>
17641
17642 =back
17643
17644 =over 4
17645
17646 =item $pod_seq-E<gt>B<nested()>
17647
17648 =back
17649
17650 =over 4
17651
17652 =item $pod_seq-E<gt>B<raw_text()>
17653
17654 =back
17655
17656 =over 4
17657
17658 =item $pod_seq-E<gt>B<left_delimiter()>
17659
17660 =back
17661
17662 =over 4
17663
17664 =item $pod_seq-E<gt>B<right_delimiter()>
17665
17666 =back
17667
17668 =over 4
17669
17670 =item $pod_seq-E<gt>B<parse_tree()>
17671
17672 =back
17673
17674 =over 4
17675
17676 =item $pod_seq-E<gt>B<file_line()>
17677
17678 =back
17679
17680 =over 4
17681
17682 =item Pod::InteriorSequence::B<DESTROY()>
17683
17684 =back
17685
17686 =over 4
17687
17688 =item B<Pod::ParseTree>
17689
17690 =back
17691
17692 =over 4
17693
17694 =item Pod::ParseTree-E<gt>B<new()>
17695
17696 =back
17697
17698 =over 4
17699
17700 =item $ptree-E<gt>B<top()>
17701
17702 =back
17703
17704 =over 4
17705
17706 =item $ptree-E<gt>B<children()>
17707
17708 =back
17709
17710 =over 4
17711
17712 =item $ptree-E<gt>B<prepend()>
17713
17714 =back
17715
17716 =over 4
17717
17718 =item $ptree-E<gt>B<append()>
17719
17720 =back
17721
17722 =over 4
17723
17724 =item $ptree-E<gt>B<raw_text()>
17725
17726 =back
17727
17728 =over 4
17729
17730 =item Pod::ParseTree::B<DESTROY()>
17731
17732 =back
17733
17734 =over 4
17735
17736 =item SEE ALSO
17737
17738 =item AUTHOR
17739
17740 =back
17741
17742 =head2 Pod::LaTeX - Convert Pod data to formatted Latex
17743
17744 =over 4
17745
17746 =item SYNOPSIS
17747
17748 =item DESCRIPTION
17749
17750 =back
17751
17752 =over 4
17753
17754 =item OBJECT METHODS
17755
17756 C<initialize>
17757
17758 =back
17759
17760 =over 4
17761
17762 =item Data Accessors
17763
17764 B<AddPreamble>
17765
17766 =back
17767
17768 B<AddPostamble>
17769
17770 B<Head1Level>
17771
17772 B<Label>
17773
17774 B<LevelNoNum>
17775
17776 B<MakeIndex>
17777
17778 B<ReplaceNAMEwithSection>
17779
17780 B<StartWithNewPage>
17781
17782 B<TableOfContents>
17783
17784 B<UniqueLabels>
17785
17786 B<UserPreamble>
17787
17788 B<UserPostamble>
17789
17790 B<Lists>
17791
17792 =over 4
17793
17794 =item Subclassed methods
17795
17796 =back
17797
17798 B<begin_pod>
17799
17800 B<end_pod>
17801
17802 B<command>
17803
17804 B<verbatim>
17805
17806 B<textblock>
17807
17808 B<interior_sequence>
17809
17810 =over 4
17811
17812 =item List Methods
17813
17814 B<begin_list>
17815
17816 =back
17817
17818 B<end_list>
17819
17820 B<add_item>
17821
17822 =over 4
17823
17824 =item Methods for headings
17825
17826 B<head>
17827
17828 =back
17829
17830 =over 4
17831
17832 =item Internal methods
17833
17834 B<_output>
17835
17836 =back
17837
17838 B<_replace_special_chars>
17839
17840 B<_replace_special_chars_late>
17841
17842 B<_create_label>
17843
17844 B<_create_index>
17845
17846 B<_clean_latex_commands>
17847
17848 B<_split_delimited>
17849
17850 =over 4
17851
17852 =item NOTES
17853
17854 =item SEE ALSO
17855
17856 =item AUTHORS
17857
17858 =item COPYRIGHT
17859
17860 =item REVISION
17861
17862 =back
17863
17864 =head2 Pod::Man - Convert POD data to formatted *roff input
17865
17866 =over 4
17867
17868 =item SYNOPSIS
17869
17870 =item DESCRIPTION
17871
17872 center, date, fixed, fixedbold, fixeditalic, fixedbolditalic, name, quotes,
17873 release, section
17874
17875 =item DIAGNOSTICS
17876
17877 roff font should be 1 or 2 chars, not "%s", Invalid link %s, Invalid quote
17878 specification "%s", %s:%d: Unknown command paragraph "%s", %s:%d: Unknown
17879 escape EE<lt>%sE<gt>, %s:%d: Unknown formatting code %s, %s:%d: Unmatched
17880 =back
17881
17882 =item BUGS
17883
17884 =item CAVEATS
17885
17886 =item SEE ALSO
17887
17888 =item AUTHOR
17889
17890 =item COPYRIGHT AND LICENSE
17891
17892 =back
17893
17894 =head2 Pod::ParseLink - Parse an LE<lt>E<gt> formatting code in POD text
17895
17896 =over 4
17897
17898 =item SYNOPSIS
17899
17900 =item DESCRIPTION
17901
17902 =item SEE ALSO
17903
17904 =item AUTHOR
17905
17906 =item COPYRIGHT AND LICENSE
17907
17908 =back
17909
17910 =head2 Pod::ParseUtils - helpers for POD parsing and conversion
17911
17912 =over 4
17913
17914 =item SYNOPSIS
17915
17916 =item DESCRIPTION
17917
17918 =back
17919
17920 =over 4
17921
17922 =item Pod::List
17923
17924 Pod::List-E<gt>new()
17925
17926 =back
17927
17928 $list-E<gt>file()
17929
17930 $list-E<gt>start()
17931
17932 $list-E<gt>indent()
17933
17934 $list-E<gt>type()
17935
17936 $list-E<gt>rx()
17937
17938 $list-E<gt>item()
17939
17940 $list-E<gt>parent()
17941
17942 $list-E<gt>tag()
17943
17944 =over 4
17945
17946 =item Pod::Hyperlink
17947
17948 Pod::Hyperlink-E<gt>new()
17949
17950 =back
17951
17952 $link-E<gt>parse($string)
17953
17954 $link-E<gt>markup($string)
17955
17956 $link-E<gt>text()
17957
17958 $link-E<gt>warning()
17959
17960 $link-E<gt>file(), $link-E<gt>line()
17961
17962 $link-E<gt>page()
17963
17964 $link-E<gt>node()
17965
17966 $link-E<gt>alttext()
17967
17968 $link-E<gt>type()
17969
17970 $link-E<gt>link()
17971
17972 =over 4
17973
17974 =item Pod::Cache
17975
17976 Pod::Cache-E<gt>new()
17977
17978 =back
17979
17980 $cache-E<gt>item()
17981
17982 $cache-E<gt>find_page($name)
17983
17984 =over 4
17985
17986 =item Pod::Cache::Item
17987
17988 Pod::Cache::Item-E<gt>new()
17989
17990 =back
17991
17992 $cacheitem-E<gt>page()
17993
17994 $cacheitem-E<gt>description()
17995
17996 $cacheitem-E<gt>path()
17997
17998 $cacheitem-E<gt>file()
17999
18000 $cacheitem-E<gt>nodes()
18001
18002 $cacheitem-E<gt>find_node($name)
18003
18004 $cacheitem-E<gt>idx()
18005
18006 =over 4
18007
18008 =item AUTHOR
18009
18010 =item SEE ALSO
18011
18012 =back
18013
18014 =head2 Pod::Parser - base class for creating POD filters and translators
18015
18016 =over 4
18017
18018 =item SYNOPSIS
18019
18020 =item REQUIRES
18021
18022 =item EXPORTS
18023
18024 =item DESCRIPTION
18025
18026 =item QUICK OVERVIEW
18027
18028 =item PARSING OPTIONS
18029
18030 B<-want_nonPODs> (default: unset), B<-process_cut_cmd> (default: unset),
18031 B<-warnings> (default: unset)
18032
18033 =back
18034
18035 =over 4
18036
18037 =item RECOMMENDED SUBROUTINE/METHOD OVERRIDES
18038
18039 =back
18040
18041 =over 4
18042
18043 =item B<command()>
18044
18045 C<$cmd>, C<$text>, C<$line_num>, C<$pod_para>
18046
18047 =back
18048
18049 =over 4
18050
18051 =item B<verbatim()>
18052
18053 C<$text>, C<$line_num>, C<$pod_para>
18054
18055 =back
18056
18057 =over 4
18058
18059 =item B<textblock()>
18060
18061 C<$text>, C<$line_num>, C<$pod_para>
18062
18063 =back
18064
18065 =over 4
18066
18067 =item B<interior_sequence()>
18068
18069 =back
18070
18071 =over 4
18072
18073 =item OPTIONAL SUBROUTINE/METHOD OVERRIDES
18074
18075 =back
18076
18077 =over 4
18078
18079 =item B<new()>
18080
18081 =back
18082
18083 =over 4
18084
18085 =item B<initialize()>
18086
18087 =back
18088
18089 =over 4
18090
18091 =item B<begin_pod()>
18092
18093 =back
18094
18095 =over 4
18096
18097 =item B<begin_input()>
18098
18099 =back
18100
18101 =over 4
18102
18103 =item B<end_input()>
18104
18105 =back
18106
18107 =over 4
18108
18109 =item B<end_pod()>
18110
18111 =back
18112
18113 =over 4
18114
18115 =item B<preprocess_line()>
18116
18117 =back
18118
18119 =over 4
18120
18121 =item B<preprocess_paragraph()>
18122
18123 =back
18124
18125 =over 4
18126
18127 =item METHODS FOR PARSING AND PROCESSING
18128
18129 =back
18130
18131 =over 4
18132
18133 =item B<parse_text()>
18134
18135 B<-expand_seq> =E<gt> I<code-ref>|I<method-name>, B<-expand_text> =E<gt>
18136 I<code-ref>|I<method-name>, B<-expand_ptree> =E<gt>
18137 I<code-ref>|I<method-name>
18138
18139 =back
18140
18141 =over 4
18142
18143 =item B<interpolate()>
18144
18145 =back
18146
18147 =over 4
18148
18149 =item B<parse_paragraph()>
18150
18151 =back
18152
18153 =over 4
18154
18155 =item B<parse_from_filehandle()>
18156
18157 =back
18158
18159 =over 4
18160
18161 =item B<parse_from_file()>
18162
18163 =back
18164
18165 =over 4
18166
18167 =item ACCESSOR METHODS
18168
18169 =back
18170
18171 =over 4
18172
18173 =item B<errorsub()>
18174
18175 =back
18176
18177 =over 4
18178
18179 =item B<cutting()>
18180
18181 =back
18182
18183 =over 4
18184
18185 =item B<parseopts()>
18186
18187 =back
18188
18189 =over 4
18190
18191 =item B<output_file()>
18192
18193 =back
18194
18195 =over 4
18196
18197 =item B<output_handle()>
18198
18199 =back
18200
18201 =over 4
18202
18203 =item B<input_file()>
18204
18205 =back
18206
18207 =over 4
18208
18209 =item B<input_handle()>
18210
18211 =back
18212
18213 =over 4
18214
18215 =item B<input_streams()>
18216
18217 =back
18218
18219 =over 4
18220
18221 =item B<top_stream()>
18222
18223 =back
18224
18225 =over 4
18226
18227 =item PRIVATE METHODS AND DATA
18228
18229 =back
18230
18231 =over 4
18232
18233 =item B<_push_input_stream()>
18234
18235 =back
18236
18237 =over 4
18238
18239 =item B<_pop_input_stream()>
18240
18241 =back
18242
18243 =over 4
18244
18245 =item TREE-BASED PARSING
18246
18247 =item SEE ALSO
18248
18249 =item AUTHOR
18250
18251 =back
18252
18253 =head2 Pod::Perldoc::ToChecker - let Perldoc check Pod for errors
18254
18255 =over 4
18256
18257 =item SYNOPSIS
18258
18259 =item DESCRIPTION
18260
18261 =item SEE ALSO
18262
18263 =item COPYRIGHT AND DISCLAIMERS
18264
18265 =item AUTHOR
18266
18267 =back
18268
18269 =head2 Pod::Perldoc::ToMan - let Perldoc render Pod as man pages
18270
18271 =over 4
18272
18273 =item SYNOPSIS
18274
18275 =item DESCRIPTION
18276
18277 =item CAVEAT
18278
18279 =item SEE ALSO
18280
18281 =item COPYRIGHT AND DISCLAIMERS
18282
18283 =item AUTHOR
18284
18285 =back
18286
18287 =head2 Pod::Perldoc::ToNroff - let Perldoc convert Pod to nroff
18288
18289 =over 4
18290
18291 =item SYNOPSIS
18292
18293 =item DESCRIPTION
18294
18295 =item CAVEAT
18296
18297 =item SEE ALSO
18298
18299 =item COPYRIGHT AND DISCLAIMERS
18300
18301 =item AUTHOR
18302
18303 =back
18304
18305 =head2 Pod::Perldoc::ToPod - let Perldoc render Pod as ... Pod!
18306
18307 =over 4
18308
18309 =item SYNOPSIS
18310
18311 =item DESCRIPTION
18312
18313 =item SEE ALSO
18314
18315 =item COPYRIGHT AND DISCLAIMERS
18316
18317 =item AUTHOR
18318
18319 =back
18320
18321 =head2 Pod::Perldoc::ToRtf - let Perldoc render Pod as RTF
18322
18323 =over 4
18324
18325 =item SYNOPSIS
18326
18327 =item DESCRIPTION
18328
18329 =item SEE ALSO
18330
18331 =item COPYRIGHT AND DISCLAIMERS
18332
18333 =item AUTHOR
18334
18335 =back
18336
18337 =head2 Pod::Perldoc::ToText - let Perldoc render Pod as plaintext
18338
18339 =over 4
18340
18341 =item SYNOPSIS
18342
18343 =item DESCRIPTION
18344
18345 =item CAVEAT
18346
18347 =item SEE ALSO
18348
18349 =item COPYRIGHT AND DISCLAIMERS
18350
18351 =item AUTHOR
18352
18353 =back
18354
18355 =head2 Pod::Perldoc::ToTk - let Perldoc use Tk::Pod to render Pod
18356
18357 =over 4
18358
18359 =item SYNOPSIS
18360
18361 =item DESCRIPTION
18362
18363 =item SEE ALSO
18364
18365 =item AUTHOR
18366
18367 =back
18368
18369 =head2 Pod::Perldoc::ToXml - let Perldoc render Pod as XML
18370
18371 =over 4
18372
18373 =item SYNOPSIS
18374
18375 =item DESCRIPTION
18376
18377 =item SEE ALSO
18378
18379 =item COPYRIGHT AND DISCLAIMERS
18380
18381 =item AUTHOR
18382
18383 =back
18384
18385 =head2 Pod::PlainText - Convert POD data to formatted ASCII text
18386
18387 =over 4
18388
18389 =item SYNOPSIS
18390
18391 =item DESCRIPTION
18392
18393 alt, indent, loose, sentence, width
18394
18395 =item DIAGNOSTICS
18396
18397 Bizarre space in item, Can't open %s for reading: %s, Unknown escape: %s,
18398 Unknown sequence: %s, Unmatched =back
18399
18400 =item RESTRICTIONS
18401
18402 =item NOTES
18403
18404 =item SEE ALSO
18405
18406 =item AUTHOR
18407
18408 =back
18409
18410 =head2 Pod::Plainer - Perl extension for converting Pod to old style Pod.
18411
18412 =over 4
18413
18414 =item SYNOPSIS
18415
18416 =item DESCRIPTION
18417
18418 =over 4
18419
18420 =item EXPORT
18421
18422 =back
18423
18424 =item AUTHOR
18425
18426 =item SEE ALSO
18427
18428 =back
18429
18430 =head2 Pod::Select, podselect() - extract selected sections of POD from
18431 input
18432
18433 =over 4
18434
18435 =item SYNOPSIS
18436
18437 =item REQUIRES
18438
18439 =item EXPORTS
18440
18441 =item DESCRIPTION
18442
18443 =item SECTION SPECIFICATIONS
18444
18445 =item RANGE SPECIFICATIONS
18446
18447 =back
18448
18449 =over 4
18450
18451 =item OBJECT METHODS
18452
18453 =back
18454
18455 =over 4
18456
18457 =item B<curr_headings()>
18458
18459 =back
18460
18461 =over 4
18462
18463 =item B<select()>
18464
18465 =back
18466
18467 =over 4
18468
18469 =item B<add_selection()>
18470
18471 =back
18472
18473 =over 4
18474
18475 =item B<clear_selections()>
18476
18477 =back
18478
18479 =over 4
18480
18481 =item B<match_section()>
18482
18483 =back
18484
18485 =over 4
18486
18487 =item B<is_selected()>
18488
18489 =back
18490
18491 =over 4
18492
18493 =item EXPORTED FUNCTIONS
18494
18495 =back
18496
18497 =over 4
18498
18499 =item B<podselect()>
18500
18501 B<-output>, B<-sections>, B<-ranges>
18502
18503 =back
18504
18505 =over 4
18506
18507 =item PRIVATE METHODS AND DATA
18508
18509 =back
18510
18511 =over 4
18512
18513 =item B<_compile_section_spec()>
18514
18515 =back
18516
18517 =over 4
18518
18519 =item $self->{_SECTION_HEADINGS}
18520
18521 =back
18522
18523 =over 4
18524
18525 =item $self->{_SELECTED_SECTIONS}
18526
18527 =back
18528
18529 =over 4
18530
18531 =item SEE ALSO
18532
18533 =item AUTHOR
18534
18535 =back
18536
18537 =head2 Pod::Text - Convert POD data to formatted ASCII text
18538
18539 =over 4
18540
18541 =item SYNOPSIS
18542
18543 =item DESCRIPTION
18544
18545 alt, code, indent, loose, margin, quotes, sentence, width
18546
18547 =item DIAGNOSTICS
18548
18549 Bizarre space in item, Item called without tag, Can't open %s for reading:
18550 %s, Invalid quote specification "%s", %s:%d: Unknown command paragraph: %s,
18551 %s:%d: Unknown escape: %s, %s:%d: Unknown formatting code: %s, %s:%d:
18552 Unmatched =back
18553
18554 =item RESTRICTIONS
18555
18556 =item NOTES
18557
18558 =item SEE ALSO
18559
18560 =item AUTHOR
18561
18562 =item COPYRIGHT AND LICENSE
18563
18564 =back
18565
18566 =head2 Pod::Text::Color - Convert POD data to formatted color ASCII text
18567
18568 =over 4
18569
18570 =item SYNOPSIS
18571
18572 =item DESCRIPTION
18573
18574 =item BUGS
18575
18576 =item SEE ALSO
18577
18578 =item AUTHOR
18579
18580 =item COPYRIGHT AND LICENSE
18581
18582 =back
18583
18584 =head2 Pod::Text::Overstrike - Convert POD data to formatted overstrike
18585 text
18586
18587 =over 4
18588
18589 =item SYNOPSIS
18590
18591 =item DESCRIPTION
18592
18593 =item BUGS
18594
18595 =item SEE ALSO
18596
18597 =item AUTHOR
18598
18599 =item COPYRIGHT AND LICENSE
18600
18601 =back
18602
18603 =head2 Pod::Text::Termcap - Convert POD data to ASCII text with format
18604 escapes
18605
18606 =over 4
18607
18608 =item SYNOPSIS
18609
18610 =item DESCRIPTION
18611
18612 =item NOTES
18613
18614 =item SEE ALSO
18615
18616 =item AUTHOR
18617
18618 =item COPYRIGHT AND LICENSE
18619
18620 =back
18621
18622 =head2 Pod::Usage, pod2usage() - print a usage message from embedded pod
18623 documentation
18624
18625 =over 4
18626
18627 =item SYNOPSIS
18628
18629 =item ARGUMENTS
18630
18631 C<-message>, C<-msg>, C<-exitval>, C<-verbose>, C<-output>, C<-input>,
18632 C<-pathlist>
18633
18634 =item DESCRIPTION
18635
18636 =item EXAMPLES
18637
18638 =over 4
18639
18640 =item Recommended Use
18641
18642 =back
18643
18644 =item CAVEATS
18645
18646 =item AUTHOR
18647
18648 =item ACKNOWLEDGEMENTS
18649
18650 =back
18651
18652 =head2 SDBM_File - Tied access to sdbm files
18653
18654 =over 4
18655
18656 =item SYNOPSIS
18657
18658 =item DESCRIPTION
18659
18660 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
18661
18662 =item DIAGNOSTICS
18663
18664 =over 4
18665
18666 =item C<sdbm store returned -1, errno 22, key "..." at ...>
18667
18668 =back
18669
18670 =item BUGS AND WARNINGS
18671
18672 =back
18673
18674 =head2 Safe - Compile and execute code in restricted compartments
18675
18676 =over 4
18677
18678 =item SYNOPSIS
18679
18680 =item DESCRIPTION
18681
18682 a new namespace, an operator mask
18683
18684 =item WARNING
18685
18686 =over 4
18687
18688 =item RECENT CHANGES
18689
18690 =item Methods in class Safe
18691
18692 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
18693 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
18694 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
18695 root (NAMESPACE), mask (MASK)
18696
18697 =item Some Safety Issues
18698
18699 Memory, CPU, Snooping, Signals, State Changes
18700
18701 =item AUTHOR
18702
18703 =back
18704
18705 =back
18706
18707 =head2 Scalar::Util - A selection of general-utility scalar subroutines
18708
18709 =over 4
18710
18711 =item SYNOPSIS
18712
18713 =item DESCRIPTION
18714
18715 blessed EXPR, dualvar NUM, STRING, isvstring EXPR, isweak EXPR,
18716 looks_like_number EXPR, openhandle FH, refaddr EXPR, reftype EXPR,
18717 set_prototype CODEREF, PROTOTYPE, tainted EXPR, weaken REF
18718
18719 =item KNOWN BUGS
18720
18721 =item COPYRIGHT
18722
18723 =item BLATANT PLUG
18724
18725 =back
18726
18727 =head2 Search::Dict, look - search for key in dictionary file
18728
18729 =over 4
18730
18731 =item SYNOPSIS
18732
18733 =item DESCRIPTION
18734
18735 =back
18736
18737 =head2 SelectSaver - save and restore selected file handle
18738
18739 =over 4
18740
18741 =item SYNOPSIS
18742
18743 =item DESCRIPTION
18744
18745 =back
18746
18747 =head2 SelfLoader - load functions only on demand
18748
18749 =over 4
18750
18751 =item SYNOPSIS
18752
18753 =item DESCRIPTION
18754
18755 =over 4
18756
18757 =item The __DATA__ token
18758
18759 =item SelfLoader autoloading
18760
18761 =item Autoloading and package lexicals
18762
18763 =item SelfLoader and AutoLoader
18764
18765 =item __DATA__, __END__, and the FOOBAR::DATA filehandle.
18766
18767 =item Classes and inherited methods.
18768
18769 =back
18770
18771 =item Multiple packages and fully qualified subroutine names
18772
18773 =back
18774
18775 =head2 Shell - run shell commands transparently within perl
18776
18777 =over 4
18778
18779 =item SYNOPSIS
18780
18781 =item DESCRIPTION
18782
18783 =over 4
18784
18785 =item OBJECT ORIENTED SYNTAX
18786
18787 =back
18788
18789 =item AUTHOR
18790
18791 =back
18792
18793 =head2 Socket, sockaddr_in, sockaddr_un, inet_aton, inet_ntoa - load the C
18794 socket.h defines and structure manipulators 
18795
18796 =over 4
18797
18798 =item SYNOPSIS
18799
18800 =item DESCRIPTION
18801
18802 inet_aton HOSTNAME, inet_ntoa IP_ADDRESS, INADDR_ANY, INADDR_BROADCAST,
18803 INADDR_LOOPBACK, INADDR_NONE, sockaddr_family SOCKADDR, sockaddr_in PORT,
18804 ADDRESS, sockaddr_in SOCKADDR_IN, pack_sockaddr_in PORT, IP_ADDRESS,
18805 unpack_sockaddr_in SOCKADDR_IN, sockaddr_un PATHNAME, sockaddr_un
18806 SOCKADDR_UN, pack_sockaddr_un PATH, unpack_sockaddr_un SOCKADDR_UN
18807
18808 =back
18809
18810 =head2 Storable - persistence for Perl data structures
18811
18812 =over 4
18813
18814 =item SYNOPSIS
18815
18816 =item DESCRIPTION
18817
18818 =item MEMORY STORE
18819
18820 =item ADVISORY LOCKING
18821
18822 =item SPEED
18823
18824 =item CANONICAL REPRESENTATION
18825
18826 =item CODE REFERENCES
18827
18828 =item FORWARD COMPATIBILITY
18829
18830 utf8 data, restricted hashes, files from future versions of Storable
18831
18832 =item ERROR REPORTING
18833
18834 =item WIZARDS ONLY
18835
18836 =over 4
18837
18838 =item Hooks
18839
18840 C<STORABLE_freeze> I<obj>, I<cloning>, C<STORABLE_thaw> I<obj>, I<cloning>,
18841 I<serialized>, ..
18842
18843 =item Predicates
18844
18845 C<Storable::last_op_in_netorder>, C<Storable::is_storing>,
18846 C<Storable::is_retrieving>
18847
18848 =item Recursion
18849
18850 =item Deep Cloning
18851
18852 =back
18853
18854 =item Storable magic
18855
18856 =item EXAMPLES
18857
18858 =item WARNING
18859
18860 =item BUGS
18861
18862 =over 4
18863
18864 =item 64 bit data in perl 5.6.0 and 5.6.1
18865
18866 =back
18867
18868 =item CREDITS
18869
18870 =item AUTHOR
18871
18872 =item SEE ALSO
18873
18874 =back
18875
18876 =head2 Switch - A switch statement for Perl
18877
18878 =over 4
18879
18880 =item VERSION
18881
18882 =item SYNOPSIS
18883
18884 =item BACKGROUND
18885
18886 =item DESCRIPTION
18887
18888 =over 4
18889
18890 =item Allowing fall-through
18891
18892 =item Automating fall-through
18893
18894 =item Alternative syntax
18895
18896 =item Higher-order Operations
18897
18898 =back
18899
18900 =item DEPENDENCIES
18901
18902 =item AUTHOR
18903
18904 =item BUGS
18905
18906 =item LIMITATION
18907
18908 =item COPYRIGHT
18909
18910 =back
18911
18912 =head2 Symbol - manipulate Perl symbols and their names
18913
18914 =over 4
18915
18916 =item SYNOPSIS
18917
18918 =item DESCRIPTION
18919
18920 =back
18921
18922 =head2 Sys::Hostname - Try every conceivable way to get hostname
18923
18924 =over 4
18925
18926 =item SYNOPSIS
18927
18928 =item DESCRIPTION
18929
18930 =item AUTHOR
18931
18932 =back
18933
18934 =head2 Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl
18935 interface to the UNIX syslog(3) calls
18936
18937 =over 4
18938
18939 =item SYNOPSIS
18940
18941 =item DESCRIPTION
18942
18943 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
18944 setlogmask $mask_priority, setlogsock $sock_type [$stream_location] (added
18945 in 5.004_02), closelog
18946
18947 =item EXAMPLES
18948
18949 =item SEE ALSO
18950
18951 =item AUTHOR
18952
18953 =back
18954
18955 =head2 Syslog::Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog -
18956 Perl interface to the UNIX syslog(3) calls
18957
18958 =over 4
18959
18960 =item SYNOPSIS
18961
18962 =item DESCRIPTION
18963
18964 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
18965 setlogmask $mask_priority, setlogsock $sock_type [$stream_location] (added
18966 in 5.004_02), closelog
18967
18968 =item EXAMPLES
18969
18970 =item SEE ALSO
18971
18972 =item AUTHOR
18973
18974 =back
18975
18976 =head2 Term::ANSIColor - Color screen output using ANSI escape sequences
18977
18978 =over 4
18979
18980 =item SYNOPSIS
18981
18982 =item DESCRIPTION
18983
18984 =item DIAGNOSTICS
18985
18986 Bad escape sequence %s, Bareword "%s" not allowed while "strict subs" in
18987 use, Invalid attribute name %s, Name "%s" used only once: possible typo, No
18988 comma allowed after filehandle, No name for escape sequence %s
18989
18990 =item ENVIRONMENT
18991
18992 ANSI_COLORS_DISABLED
18993
18994 =item RESTRICTIONS
18995
18996 =item NOTES
18997
18998 =item SEE ALSO
18999
19000 =item AUTHORS
19001
19002 =item COPYRIGHT AND LICENSE
19003
19004 =back
19005
19006 =head2 Term::Cap - Perl termcap interface
19007
19008 =over 4
19009
19010 =item SYNOPSIS
19011
19012 =item DESCRIPTION
19013
19014 =over 4
19015
19016 =item METHODS
19017
19018 =back
19019
19020 =back
19021
19022 B<Tgetent>, OSPEED, TERM
19023
19024 B<Tpad>, B<$string>, B<$cnt>, B<$FH>
19025
19026 B<Tputs>, B<$cap>, B<$cnt>, B<$FH>
19027
19028 B<Tgoto>, B<$cap>, B<$col>, B<$row>, B<$FH>
19029
19030 B<Trequire>
19031
19032 =over 4
19033
19034 =item EXAMPLES
19035
19036 =item COPYRIGHT AND LICENSE
19037
19038 =item AUTHOR
19039
19040 =item SEE ALSO
19041
19042 =back
19043
19044 =head2 Term::Complete - Perl word completion module
19045
19046 =over 4
19047
19048 =item SYNOPSIS
19049
19050 =item DESCRIPTION
19051
19052 E<lt>tabE<gt>, ^D, ^U, E<lt>delE<gt>, E<lt>bsE<gt>
19053
19054 =item DIAGNOSTICS
19055
19056 =item BUGS
19057
19058 =item AUTHOR
19059
19060 =back
19061
19062 =head2 Term::ReadLine - Perl interface to various C<readline> packages.
19063 If no real package is found, substitutes stubs instead of basic functions.
19064
19065 =over 4
19066
19067 =item SYNOPSIS
19068
19069 =item DESCRIPTION
19070
19071 =item Minimal set of supported functions
19072
19073 C<ReadLine>, C<new>, C<readline>, C<addhistory>, C<IN>, C<OUT>, C<MinLine>,
19074 C<findConsole>, Attribs, C<Features>
19075
19076 =item Additional supported functions
19077
19078 C<tkRunning>, C<ornaments>, C<newTTY>
19079
19080 =item EXPORTS
19081
19082 =item ENVIRONMENT
19083
19084 =item CAVEATS
19085
19086 =back
19087
19088 =head2 Test - provides a simple framework for writing test scripts
19089
19090 =over 4
19091
19092 =item SYNOPSIS
19093
19094 =item DESCRIPTION
19095
19096 =item QUICK START GUIDE
19097
19098 =over 4
19099
19100 =item Functions
19101
19102 C<plan(...)>, C<tests =E<gt> I<number>>, C<todo =E<gt> [I<1,5,14>]>,
19103 C<onfail =E<gt> sub { ... }>, C<onfail =E<gt> \&some_sub>
19104
19105 =back
19106
19107 =back
19108
19109 B<_to_value>
19110
19111 C<ok(...)>
19112
19113 C<skip(I<skip_if_true>, I<args...>)>
19114
19115 =over 4
19116
19117 =item TEST TYPES
19118
19119 NORMAL TESTS, SKIPPED TESTS, TODO TESTS
19120
19121 =item ONFAIL
19122
19123 =item BUGS and CAVEATS
19124
19125 =item NOTE
19126
19127 =item SEE ALSO
19128
19129 =item AUTHOR
19130
19131 =back
19132
19133 =head2 Test::Builder - Backend for building test libraries
19134
19135 =over 4
19136
19137 =item SYNOPSIS
19138
19139 =item DESCRIPTION
19140
19141 =over 4
19142
19143 =item Construction
19144
19145 B<new>
19146
19147 =back
19148
19149 =back
19150
19151 =over 4
19152
19153 =item Setting up tests
19154
19155 B<exported_to>
19156
19157 =back
19158
19159 B<plan>
19160
19161 B<expected_tests>
19162
19163 B<no_plan>
19164
19165 B<has_plan>
19166
19167 B<skip_all>
19168
19169 =over 4
19170
19171 =item Running tests
19172
19173 B<ok>
19174
19175 =back
19176
19177 B<is_eq>, B<is_num>
19178
19179 B<isnt_eq>, B<isnt_num>
19180
19181 B<like>, B<unlike>
19182
19183 B<maybe_regex>
19184
19185 B<cmp_ok>
19186
19187 B<BAILOUT>
19188
19189 B<skip>
19190
19191 B<todo_skip>
19192
19193 B<skip_rest>
19194
19195 =over 4
19196
19197 =item Test style
19198
19199 B<level>
19200
19201 =back
19202
19203 B<use_numbers>
19204
19205 B<no_header>, B<no_ending>
19206
19207 =over 4
19208
19209 =item Output
19210
19211 B<diag>
19212
19213 =back
19214
19215 B<_print>
19216
19217 B<output>, B<failure_output>, B<todo_output>
19218
19219 =over 4
19220
19221 =item Test Status and Info
19222
19223 B<current_test>
19224
19225 =back
19226
19227 B<summary>
19228
19229 B<details>
19230
19231 B<todo>
19232
19233 B<caller>
19234
19235 B<_sanity_check>
19236
19237 B<_whoa>
19238
19239 B<_my_exit>
19240
19241 =over 4
19242
19243 =item THREADS
19244
19245 =item EXAMPLES
19246
19247 =item SEE ALSO
19248
19249 =item AUTHORS
19250
19251 =item COPYRIGHT
19252
19253 =back
19254
19255 =head2 Test::Harness - run perl standard test scripts with statistics
19256
19257 =over 4
19258
19259 =item SYNOPSIS
19260
19261 =item DESCRIPTION
19262
19263 =over 4
19264
19265 =item The test script output
19266
19267 B<'1..M'>, B<'ok', 'not ok'.  Ok?>, B<test numbers>, B<test names>,
19268 B<Skipping tests>, B<Todo tests>, B<Bail out!>, B<Comments>, B<Anything
19269 else>
19270
19271 =item Taint mode
19272
19273 =item Configuration variables.
19274
19275 B<$Test::Harness::verbose>, B<$Test::Harness::switches>
19276
19277 =item Failure
19278
19279 B<Failed Test>, B<Stat>, B<Wstat>, B<Total>, B<Fail>, B<Failed>, B<List of
19280 Failed>
19281
19282 =item Functions
19283
19284 B<runtests>
19285
19286 =back
19287
19288 =back
19289
19290 B<_all_ok>
19291
19292 B<_globdir>
19293
19294 B<_run_all_tests>
19295
19296 B<_mk_leader>
19297
19298 B<_leader_width>
19299
19300 =over 4
19301
19302 =item EXPORT
19303
19304 =item DIAGNOSTICS
19305
19306 C<All tests successful.\nFiles=%d,  Tests=%d, %s>, C<FAILED tests
19307 %s\n\tFailed %d/%d tests, %.2f%% okay.>, C<Test returned status %d (wstat
19308 %d)>, C<Failed 1 test, %.2f%% okay. %s>, C<Failed %d/%d tests, %.2f%% okay.
19309 %s>, C<FAILED--Further testing stopped: %s>
19310
19311 =item ENVIRONMENT
19312
19313 C<HARNESS_ACTIVE>, C<HARNESS_COLUMNS>, C<HARNESS_COMPILE_TEST>,
19314 C<HARNESS_FILELEAK_IN_DIR>, C<HARNESS_IGNORE_EXITCODE>, C<HARNESS_NOTTY>,
19315 C<HARNESS_PERL_SWITCHES>, C<HARNESS_VERBOSE>
19316
19317 =item EXAMPLE
19318
19319 =item SEE ALSO
19320
19321 =item AUTHORS
19322
19323 =item LICENSE
19324
19325 =item TODO
19326
19327 =item BUGS
19328
19329 =back
19330
19331 =head2 Test::Harness::Assert - simple assert
19332
19333 =over 4
19334
19335 =item SYNOPSIS
19336
19337 =item DESCRIPTION
19338
19339 =over 4
19340
19341 =item Functions
19342
19343 B<assert>
19344
19345 =back
19346
19347 =back
19348
19349 =over 4
19350
19351 =item AUTHOR
19352
19353 =item SEE ALSO
19354
19355 =back
19356
19357 =head2 Test::Harness::Iterator - Internal Test::Harness Iterator
19358
19359 =over 4
19360
19361 =item SYNOPSIS
19362
19363 =item DESCRIPTION
19364
19365 =back
19366
19367 =head2 Test::Harness::Straps - detailed analysis of test results
19368
19369 =over 4
19370
19371 =item SYNOPSIS
19372
19373 =item DESCRIPTION
19374
19375 =over 4
19376
19377 =item Construction
19378
19379 B<new>
19380
19381 =back
19382
19383 =back
19384
19385 B<_init>
19386
19387 =over 4
19388
19389 =item Analysis
19390
19391 B<analyze>
19392
19393 =back
19394
19395 B<analyze_fh>
19396
19397 B<analyze_file>
19398
19399 B<_switches>
19400
19401 B<_INC2PERL5LIB>
19402
19403 B<_filtered_INC>
19404
19405 B<_restore_PERL5LIB>
19406
19407 =over 4
19408
19409 =item Parsing
19410
19411 B<_is_comment>
19412
19413 =back
19414
19415 B<_is_header>
19416
19417 B<_is_test>
19418
19419 B<_is_bail_out>
19420
19421 B<_reset_file_state>
19422
19423 =over 4
19424
19425 =item Results
19426
19427 B<_detailize>
19428
19429 =back
19430
19431 =over 4
19432
19433 =item EXAMPLES
19434
19435 =item AUTHOR
19436
19437 =item SEE ALSO
19438
19439 =back
19440
19441 =head2 Test::More - yet another framework for writing test scripts
19442
19443 =over 4
19444
19445 =item SYNOPSIS
19446
19447 =item DESCRIPTION
19448
19449 =over 4
19450
19451 =item I love it when a plan comes together
19452
19453 =back
19454
19455 =back
19456
19457 =over 4
19458
19459 =item Test names
19460
19461 =item I'm ok, you're not ok.
19462
19463 B<ok>
19464
19465 =back
19466
19467 B<is>, B<isnt>
19468
19469 B<like>
19470
19471 B<unlike>
19472
19473 B<cmp_ok>
19474
19475 B<can_ok>
19476
19477 B<isa_ok>
19478
19479 B<pass>, B<fail>
19480
19481 =over 4
19482
19483 =item Diagnostics
19484
19485 B<diag>
19486
19487 =back
19488
19489 =over 4
19490
19491 =item Module tests
19492
19493 B<use_ok>
19494
19495 =back
19496
19497 B<require_ok>
19498
19499 =over 4
19500
19501 =item Conditional tests
19502
19503 B<SKIP: BLOCK>
19504
19505 =back
19506
19507 B<TODO: BLOCK>, B<todo_skip>
19508
19509 When do I use SKIP vs. TODO?
19510
19511 =over 4
19512
19513 =item Comparison functions
19514
19515 B<is_deeply>
19516
19517 =back
19518
19519 B<eq_array>
19520
19521 B<eq_hash>
19522
19523 B<eq_set>
19524
19525 =over 4
19526
19527 =item Extending and Embedding Test::More
19528
19529 B<builder>
19530
19531 =back
19532
19533 =over 4
19534
19535 =item NOTES
19536
19537 =item BUGS and CAVEATS
19538
19539 Making your own ok(), The eq_* family has some caveats, Test::Harness
19540 upgrades
19541
19542 =item HISTORY
19543
19544 =item SEE ALSO
19545
19546 =item AUTHORS
19547
19548 =item COPYRIGHT
19549
19550 =back
19551
19552 =head2 Test::Simple - Basic utilities for writing tests.
19553
19554 =over 4
19555
19556 =item SYNOPSIS
19557
19558 =item DESCRIPTION
19559
19560 B<ok>
19561
19562 =back
19563
19564 =over 4
19565
19566 =item EXAMPLE
19567
19568 =item CAVEATS
19569
19570 =item NOTES
19571
19572 =item HISTORY
19573
19574 =item SEE ALSO
19575
19576 L<Test::More>, L<Test>, L<Test::Unit>, L<Test::Inline>, L<SelfTest>,
19577 L<Test::Harness>
19578
19579 =item AUTHORS
19580
19581 =item COPYRIGHT
19582
19583 =back
19584
19585 =head2 Test::Tutorial - A tutorial about writing really basic tests
19586
19587 =over 4
19588
19589 =item DESCRIPTION
19590
19591 =over 4
19592
19593 =item Nuts and bolts of testing.
19594
19595 =item Where to start?
19596
19597 =item Names
19598
19599 =item Test the manual
19600
19601 =item Sometimes the tests are wrong
19602
19603 =item Testing lots of values
19604
19605 =item Informative names
19606
19607 =item Skipping tests
19608
19609 =item Todo tests
19610
19611 =item Testing with taint mode.
19612
19613 =back
19614
19615 =item FOOTNOTES
19616
19617 =item AUTHORS
19618
19619 =item COPYRIGHT
19620
19621 =back
19622
19623 =head2 Text::Abbrev, abbrev - create an abbreviation table from a list
19624
19625 =over 4
19626
19627 =item SYNOPSIS
19628
19629 =item DESCRIPTION
19630
19631 =item EXAMPLE
19632
19633 =back
19634
19635 =head2 Text::Balanced - Extract delimited text sequences from strings.
19636
19637 =over 4
19638
19639 =item SYNOPSIS
19640
19641 =item DESCRIPTION
19642
19643 =over 4
19644
19645 =item General behaviour in list contexts
19646
19647 [0], [1], [2]
19648
19649 =item General behaviour in scalar and void contexts
19650
19651 =item A note about prefixes
19652
19653 =item C<extract_delimited>
19654
19655 =item C<extract_bracketed>
19656
19657 =item C<extract_tagged>
19658
19659 C<reject =E<gt> $listref>, C<ignore =E<gt> $listref>, C<fail =E<gt> $str>,
19660 [0], [1], [2], [3], [4], [5]
19661
19662 =item C<gen_extract_tagged>
19663
19664 =item C<extract_quotelike>
19665
19666 [0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10]
19667
19668 =item C<extract_quotelike> and "here documents"
19669
19670 [0], [1], [2], [3], [4], [5], [6], [7..10]
19671
19672 =item C<extract_codeblock>
19673
19674 =item C<extract_multiple>
19675
19676 =item C<gen_delimited_pat>
19677
19678 =back
19679
19680 =item DIAGNOSTICS
19681
19682  C<Did not find a suitable bracket: "%s">,  C<Did not find prefix: /%s/>, 
19683 C<Did not find opening bracket after prefix: "%s">,  C<No quotelike
19684 operator found after prefix: "%s">,  C<Unmatched closing bracket: "%c">, 
19685 C<Unmatched opening bracket(s): "%s">, C<Unmatched embedded quote (%s)>,
19686 C<Did not find closing delimiter to match '%s'>,  C<Mismatched closing
19687 bracket: expected "%c" but found "%s">,  C<No block delimiter found after
19688 quotelike "%s">, C<Did not find leading dereferencer>, C<Bad identifier
19689 after dereferencer>, C<Did not find expected opening bracket at %s>,
19690 C<Improperly nested codeblock at %s>,  C<Missing second block for quotelike
19691 "%s">, C<No match found for opening bracket>, C<Did not find opening tag:
19692 /%s/>, C<Unable to construct closing tag to match: /%s/>, C<Found invalid
19693 nested tag: %s>, C<Found unbalanced nested tag: %s>, C<Did not find closing
19694 tag>
19695
19696 =item AUTHOR
19697
19698 =item BUGS AND IRRITATIONS
19699
19700 =item COPYRIGHT
19701
19702 =back
19703
19704 =head2 Text::ParseWords - parse text into an array of tokens or array of
19705 arrays
19706
19707 =over 4
19708
19709 =item SYNOPSIS
19710
19711 =item DESCRIPTION
19712
19713 =item EXAMPLES
19714
19715 =item AUTHORS
19716
19717 =back
19718
19719 =head2 Text::Soundex - Implementation of the Soundex Algorithm as Described
19720 by Knuth
19721
19722 =over 4
19723
19724 =item SYNOPSIS
19725
19726 =item DESCRIPTION
19727
19728 =item EXAMPLES
19729
19730 =item LIMITATIONS
19731
19732 =item AUTHOR
19733
19734 =back
19735
19736 =head2 Text::Tabs -- expand and unexpand tabs per the unix expand(1) and
19737 unexpand(1)
19738
19739 =over 4
19740
19741 =item SYNOPSIS
19742
19743 =item DESCRIPTION
19744
19745 =item BUGS
19746
19747 =item AUTHOR
19748
19749 =back
19750
19751 =head2 Text::Wrap - line wrapping to form simple paragraphs
19752
19753 =over 4
19754
19755 =item SYNOPSIS 
19756
19757 =item DESCRIPTION
19758
19759 =item OVERRIDES
19760
19761 =item EXAMPLE
19762
19763 =item AUTHOR
19764
19765 =back
19766
19767 =head2 Thread - manipulate threads in Perl (for old code only)
19768
19769 =over 4
19770
19771 =item CAVEAT
19772
19773 =item SYNOPSIS
19774
19775 =item DESCRIPTION
19776
19777 =item FUNCTIONS
19778
19779 $thread = Thread->new(\&start_sub), $thread = Thread->new(\&start_sub,
19780 LIST), lock VARIABLE, async BLOCK;, Thread->self, cond_wait VARIABLE,
19781 cond_signal VARIABLE, cond_broadcast VARIABLE, yield
19782
19783 =item METHODS
19784
19785 join, eval, detach, equal, tid, flags, done
19786
19787 =item LIMITATIONS
19788
19789 =item SEE ALSO
19790
19791 =back
19792
19793 =head2 Thread::Queue - thread-safe queues
19794
19795 =over 4
19796
19797 =item SYNOPSIS
19798
19799 =item DESCRIPTION
19800
19801 =item FUNCTIONS AND METHODS
19802
19803 new, enqueue LIST, dequeue, dequeue_nb, pending
19804
19805 =item SEE ALSO
19806
19807 =back
19808
19809 =head2 Thread::Semaphore - thread-safe semaphores
19810
19811 =over 4
19812
19813 =item SYNOPSIS
19814
19815 =item DESCRIPTION
19816
19817 =item FUNCTIONS AND METHODS
19818
19819 new, new NUMBER, down, down NUMBER, up, up NUMBER
19820
19821 =back
19822
19823 =head2 Thread::Signal - Start a thread which runs signal handlers reliably
19824 (for old code)
19825
19826 =over 4
19827
19828 =item CAVEAT
19829
19830 =item SYNOPSIS
19831
19832 =item DESCRIPTION
19833
19834 =item BUGS
19835
19836 =back
19837
19838 =head2 Thread::Specific - thread-specific keys
19839
19840 =over 4
19841
19842 =item SYNOPSIS
19843
19844 =item DESCRIPTION
19845
19846 =back
19847
19848 =head2 Tie::Array - base class for tied arrays
19849
19850 =over 4
19851
19852 =item SYNOPSIS
19853
19854 =item DESCRIPTION
19855
19856 TIEARRAY classname, LIST, STORE this, index, value, FETCH this, index,
19857 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
19858 key, DELETE this, key, CLEAR this, DESTROY this, PUSH this, LIST, POP this,
19859 SHIFT this, UNSHIFT this, LIST, SPLICE this, offset, length, LIST
19860
19861 =item CAVEATS
19862
19863 =item AUTHOR
19864
19865 =back
19866
19867 =head2 Tie::File - Access the lines of a disk file via a Perl array
19868
19869 =over 4
19870
19871 =item SYNOPSIS
19872
19873 =item DESCRIPTION
19874
19875 =over 4
19876
19877 =item C<recsep>
19878
19879 =item C<autochomp>
19880
19881 =item C<mode>
19882
19883 =item C<memory>
19884
19885 =item C<dw_size>
19886
19887 =item Option Format
19888
19889 =back
19890
19891 =item Public Methods
19892
19893 =over 4
19894
19895 =item C<flock>
19896
19897 =item C<autochomp>
19898
19899 =item C<defer>, C<flush>, C<discard>, and C<autodefer>
19900
19901 =back
19902
19903 =item Tying to an already-opened filehandle
19904
19905 =item Deferred Writing
19906
19907 =over 4
19908
19909 =item Autodeferring
19910
19911 =back
19912
19913 =item CAVEATS
19914
19915 =item SUBCLASSING
19916
19917 =item WHAT ABOUT C<DB_File>?
19918
19919 =item AUTHOR
19920
19921 =item LICENSE
19922
19923 =item WARRANTY
19924
19925 =item THANKS
19926
19927 =item TODO
19928
19929 =back
19930
19931 =head2 Tie::Handle, Tie::StdHandle  - base class definitions for tied
19932 handles
19933
19934 =over 4
19935
19936 =item SYNOPSIS
19937
19938 =item DESCRIPTION
19939
19940 TIEHANDLE classname, LIST, WRITE this, scalar, length, offset, PRINT this,
19941 LIST, PRINTF this, format, LIST, READ this, scalar, length, offset,
19942 READLINE this, GETC this, CLOSE this, OPEN this, filename, BINMODE this,
19943 EOF this, TELL this, SEEK this, offset, whence, DESTROY this
19944
19945 =item MORE INFORMATION
19946
19947 =item COMPATIBILITY
19948
19949 =back
19950
19951 =head2 Tie::Hash, Tie::StdHash, Tie::ExtraHash - base class definitions for
19952 tied hashes
19953
19954 =over 4
19955
19956 =item SYNOPSIS
19957
19958 =item DESCRIPTION
19959
19960 TIEHASH classname, LIST, STORE this, key, value, FETCH this, key, FIRSTKEY
19961 this, NEXTKEY this, lastkey, EXISTS this, key, DELETE this, key, CLEAR this
19962
19963 =item Inheriting from B<Tie::StdHash>
19964
19965 =item Inheriting from B<Tie::ExtraHash>
19966
19967 =item C<UNTIE> and C<DESTROY>
19968
19969 =item MORE INFORMATION
19970
19971 =back
19972
19973 =head2 Tie::Memoize - add data to hash when needed
19974
19975 =over 4
19976
19977 =item SYNOPSIS
19978
19979 =item DESCRIPTION
19980
19981 =item Inheriting from B<Tie::Memoize>
19982
19983 =item EXAMPLE
19984
19985 =item BUGS
19986
19987 =item AUTHOR
19988
19989 =back
19990
19991 =head2 Tie::RefHash - use references as hash keys
19992
19993 =over 4
19994
19995 =item SYNOPSIS
19996
19997 =item DESCRIPTION
19998
19999 =item EXAMPLE
20000
20001 =item AUTHOR
20002
20003 =item VERSION
20004
20005 =item SEE ALSO
20006
20007 =back
20008
20009 =head2 Tie::Scalar, Tie::StdScalar - base class definitions for tied
20010 scalars
20011
20012 =over 4
20013
20014 =item SYNOPSIS
20015
20016 =item DESCRIPTION
20017
20018 TIESCALAR classname, LIST, FETCH this, STORE this, value, DESTROY this
20019
20020 =item MORE INFORMATION
20021
20022 =back
20023
20024 =head2 Tie::SubstrHash - Fixed-table-size, fixed-key-length hashing
20025
20026 =over 4
20027
20028 =item SYNOPSIS
20029
20030 =item DESCRIPTION
20031
20032 =item CAVEATS
20033
20034 =back
20035
20036 =head2 Time::HiRes - High resolution alarm, sleep, gettimeofday, interval
20037 timers
20038
20039 =over 4
20040
20041 =item SYNOPSIS
20042
20043 =item DESCRIPTION
20044
20045 gettimeofday (), usleep ( $useconds ), ualarm ( $useconds [,
20046 $interval_useconds ] ), tv_interval, time (), sleep ( $floating_seconds ),
20047 alarm ( $floating_seconds [, $interval_floating_seconds ] ), setitimer,
20048 getitimer ( $which )
20049
20050 =item EXAMPLES
20051
20052 =item C API
20053
20054 =item CAVEATS
20055
20056 =item AUTHORS
20057
20058 =item COPYRIGHT AND LICENSE
20059
20060 =back
20061
20062 =head2 Time::Local - efficiently compute time from local and GMT time
20063
20064 =over 4
20065
20066 =item SYNOPSIS
20067
20068 =item DESCRIPTION
20069
20070 =item IMPLEMENTATION
20071
20072 =item BUGS
20073
20074 =back
20075
20076 =head2 Time::gmtime - by-name interface to Perl's built-in gmtime()
20077 function
20078
20079 =over 4
20080
20081 =item SYNOPSIS
20082
20083 =item DESCRIPTION
20084
20085 =item NOTE
20086
20087 =item AUTHOR
20088
20089 =back
20090
20091 =head2 Time::localtime - by-name interface to Perl's built-in localtime()
20092 function
20093
20094 =over 4
20095
20096 =item SYNOPSIS
20097
20098 =item DESCRIPTION
20099
20100 =item NOTE
20101
20102 =item AUTHOR
20103
20104 =back
20105
20106 =head2 Time::tm - internal object used by Time::gmtime and Time::localtime
20107
20108 =over 4
20109
20110 =item SYNOPSIS
20111
20112 =item DESCRIPTION
20113
20114 =item AUTHOR
20115
20116 =back
20117
20118 =head2 UNIVERSAL - base class for ALL classes (blessed references)
20119
20120 =over 4
20121
20122 =item SYNOPSIS
20123
20124 =item DESCRIPTION
20125
20126 C<< $obj->isa( TYPE ) >>, C<< CLASS->isa( TYPE ) >>, C<isa( VAL, TYPE )>,
20127 C<TYPE>, C<$obj>, C<CLASS>, C<VAL>, C<< $obj->can( METHOD ) >>, C<<
20128 CLASS->can( METHOD ) >>, C<can( VAL, METHOD )>, C<VERSION ( [ REQUIRE ] )>
20129
20130 =item EXPORTS
20131
20132 =back
20133
20134 =head2 Unicode::Collate - Unicode Collation Algorithm
20135
20136 =over 4
20137
20138 =item SYNOPSIS
20139
20140 =item DESCRIPTION
20141
20142 =over 4
20143
20144 =item Constructor and Tailoring
20145
20146 UCA_Version, alternate, backwards, entry, ignoreName, ignoreChar, level,
20147 normalization, overrideCJK, overrideHangul, preprocess, rearrange, table,
20148 undefName, undefChar, katakana_before_hiragana, upper_before_lower
20149
20150 =item Methods for Collation
20151
20152 C<@sorted = $Collator-E<gt>sort(@not_sorted)>, C<$result =
20153 $Collator-E<gt>cmp($a, $b)>, C<$result = $Collator-E<gt>eq($a, $b)>,
20154 C<$result = $Collator-E<gt>ne($a, $b)>, C<$result = $Collator-E<gt>lt($a,
20155 $b)>, C<$result = $Collator-E<gt>le($a, $b)>, C<$result =
20156 $Collator-E<gt>gt($a, $b)>, C<$result = $Collator-E<gt>ge($a, $b)>,
20157 C<$sortKey = $Collator-E<gt>getSortKey($string)>, C<$sortKeyForm =
20158 $Collator-E<gt>viewSortKey($string)>
20159
20160 =item Methods for Searching
20161
20162 C<$position = $Collator-E<gt>index($string, $substring[, $position])>,
20163 C<($position, $length) = $Collator-E<gt>index($string, $substring[,
20164 $position])>, C<$match_ref = $Collator-E<gt>match($string, $substring)>,
20165 C<($match)   = $Collator-E<gt>match($string, $substring)>, C<@match =
20166 $Collator-E<gt>gmatch($string, $substring)>, C<$count =
20167 $Collator-E<gt>subst($string, $substring, $replacement)>, C<$count =
20168 $Collator-E<gt>gsubst($string, $substring, $replacement)>
20169
20170 =item Other Methods
20171
20172 C<%old_tailoring = $Collator-E<gt>change(%new_tailoring)>, UCA_Version,
20173 Base_Unicode_Version
20174
20175 =item EXPORT
20176
20177 =item TODO
20178
20179 =item CAVEAT
20180
20181 =item Conformance Test
20182
20183 =back
20184
20185 =item AUTHOR
20186
20187 =item SEE ALSO
20188
20189 http://www.unicode.org/reports/tr10/,
20190 http://www.unicode.org/reports/tr10/allkeys.txt,
20191 http://www.unicode.org/reports/tr10/CollationTest.html
20192 http://www.unicode.org/reports/tr10/CollationTest.zip,
20193 http://www.unicode.org/reports/tr15/, L<Unicode::Normalize>
20194
20195 =back
20196
20197 =head2 Unicode::Normalize - Unicode Normalization Forms
20198
20199 =over 4
20200
20201 =item SYNOPSIS
20202
20203 =item DESCRIPTION
20204
20205 =over 4
20206
20207 =item Normalization Forms
20208
20209 C<$NFD_string = NFD($string)>, C<$NFC_string = NFC($string)>,
20210 C<$NFKD_string = NFKD($string)>, C<$NFKC_string = NFKC($string)>,
20211 C<$normalized_string = normalize($form_name, $string)>
20212
20213 =item Decomposition and Composition
20214
20215 C<$decomposed_string = decompose($string)>, C<$decomposed_string =
20216 decompose($string, $useCompatMapping)>, C<$reordered_string  =
20217 reorder($string)>, C<$composed_string   = compose($string)>
20218
20219 =item Quick Check
20220
20221 C<$result = checkNFD($string)>, C<$result = checkNFC($string)>, C<$result =
20222 checkNFKD($string)>, C<$result = checkNFKC($string)>, C<$result =
20223 check($form_name, $string)>
20224
20225 =item Character Data
20226
20227 C<$canonical_decomposed = getCanon($codepoint)>,
20228 C<$compatibility_decomposed = getCompat($codepoint)>,
20229 C<$codepoint_composite = getComposite($codepoint_here, $codepoint_next)>,
20230 C<$combining_class = getCombinClass($codepoint)>, C<$is_exclusion =
20231 isExclusion($codepoint)>, C<$is_singleton = isSingleton($codepoint)>,
20232 C<$is_non_starter_decomposition = isNonStDecomp($codepoint)>,
20233 C<$may_be_composed_with_prev_char = isComp2nd($codepoint)>
20234
20235 =item EXPORT
20236
20237 =back
20238
20239 =item AUTHOR
20240
20241 =item SEE ALSO
20242
20243 http://www.unicode.org/unicode/reports/tr15/,
20244 http://www.unicode.org/Public/UNIDATA/DerivedNormalizationProps.txt
20245
20246 =back
20247
20248 =head2 Unicode::UCD - Unicode character database
20249
20250 =over 4
20251
20252 =item SYNOPSIS
20253
20254 =item DESCRIPTION
20255
20256 =back
20257
20258 =over 4
20259
20260 =item charinfo
20261
20262 =back
20263
20264 =over 4
20265
20266 =item charblock
20267
20268 =back
20269
20270 =over 4
20271
20272 =item charscript
20273
20274 =back
20275
20276 =over 4
20277
20278 =item charblocks
20279
20280 =back
20281
20282 =over 4
20283
20284 =item charscripts
20285
20286 =back
20287
20288 =over 4
20289
20290 =item Blocks versus Scripts
20291
20292 =item Matching Scripts and Blocks
20293
20294 =item Code Point Arguments
20295
20296 =item charinrange
20297
20298 =back
20299
20300 =over 4
20301
20302 =item compexcl
20303
20304 =back
20305
20306 =over 4
20307
20308 =item casefold
20309
20310 =back
20311
20312 =over 4
20313
20314 =item casespec
20315
20316 =back
20317
20318 =over 4
20319
20320 =item Unicode::UCD::UnicodeVersion
20321
20322 =back
20323
20324 =over 4
20325
20326 =item Implementation Note
20327
20328 =back
20329
20330 =over 4
20331
20332 =item BUGS
20333
20334 =item AUTHOR
20335
20336 =back
20337
20338 =head2 User::grent - by-name interface to Perl's built-in getgr*()
20339 functions
20340
20341 =over 4
20342
20343 =item SYNOPSIS
20344
20345 =item DESCRIPTION
20346
20347 =item NOTE
20348
20349 =item AUTHOR
20350
20351 =back
20352
20353 =head2 User::pwent - by-name interface to Perl's built-in getpw*()
20354 functions
20355
20356 =over 4
20357
20358 =item SYNOPSIS
20359
20360 =item DESCRIPTION
20361
20362 =over 4
20363
20364 =item System Specifics
20365
20366 =back
20367
20368 =item NOTE
20369
20370 =item AUTHOR
20371
20372 =item HISTORY
20373
20374 March 18th, 2000
20375
20376 =back
20377
20378 =head2 Win32 - Interfaces to some Win32 API Functions
20379
20380 =over 4
20381
20382 =item DESCRIPTION
20383
20384 =over 4
20385
20386 =item Alphabetical Listing of Win32 Functions
20387
20388 Win32::AbortSystemShutdown(MACHINE), Win32::BuildNumber(),
20389 Win32::CopyFile(FROM, TO, OVERWRITE), Win32::DomainName(),
20390 Win32::ExpandEnvironmentStrings(STRING), Win32::FormatMessage(ERRORCODE),
20391 Win32::FsType(), Win32::FreeLibrary(HANDLE), Win32::GetArchName(),
20392 Win32::GetChipName(), Win32::GetCwd(), Win32::GetFolderPath(FOLDER [,
20393 CREATE]), Win32::GetFullPathName(FILENAME), Win32::GetLastError(),
20394 Win32::GetLongPathName(PATHNAME), Win32::GetNextAvailDrive(),
20395 Win32::GetOSVersion(), Win32::GetOSName(),
20396 Win32::GetShortPathName(PATHNAME), Win32::GetProcAddress(INSTANCE,
20397 PROCNAME), Win32::GetTickCount(), Win32::InitiateSystemShutdown,
20398 Win32::IsWinNT(), Win32::IsWin95(), Win32::LoadLibrary(LIBNAME),
20399 Win32::LoginName(), Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID,
20400 SIDTYPE), Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE),
20401 Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]]), Win32::NodeName(),
20402 Win32::RegisterServer(LIBRARYNAME), Win32::SetChildShowWindow(SHOWWINDOW),
20403 Win32::SetCwd(NEWDIRECTORY), Win32::SetLastError(ERROR),
20404 Win32::Sleep(TIME), Win32::Spawn(COMMAND, ARGS, PID),
20405 Win32::UnregisterServer(LIBRARYNAME)
20406
20407 =back
20408
20409 =back
20410
20411 =head2 XSLoader - Dynamically load C libraries into Perl code
20412
20413 =over 4
20414
20415 =item SYNOPSIS
20416
20417 =item DESCRIPTION
20418
20419 =item AUTHOR
20420
20421 =back
20422
20423 =head1 AUXILIARY DOCUMENTATION
20424
20425 Here should be listed all the extra programs' documentation, but they
20426 don't all have manual pages yet:
20427
20428 =over 4
20429
20430 =item a2p
20431
20432 =item s2p
20433
20434 =item find2perl
20435
20436 =item h2ph
20437
20438 =item c2ph
20439
20440 =item h2xs
20441
20442 =item xsubpp
20443
20444 =item pod2man
20445
20446 =item wrapsuid
20447
20448 =back
20449
20450 =head1 AUTHOR
20451
20452 Larry Wall <F<larry@wall.org>>, with the help of oodles
20453 of other folks.
20454