This is 5.8.0 RC2.
[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: 2002/03/11
107 21:32:23 $)
108
109 =over 4
110
111 =item DESCRIPTION
112
113 =over 4
114
115 =item perlfaq: Structural overview of the FAQ.
116
117 =item L<perlfaq1>: General Questions About Perl
118
119 =item L<perlfaq2>: Obtaining and Learning about Perl
120
121 =item L<perlfaq3>: Programming Tools
122
123 =item L<perlfaq4>: Data Manipulation
124
125 =item L<perlfaq5>: Files and Formats
126
127 =item L<perlfaq6>: Regular Expressions
128
129 =item L<perlfaq7>: General Perl Language Issues
130
131 =item L<perlfaq8>: System Interaction
132
133 =item L<perlfaq9>: Networking
134
135 =back
136
137 =item About the perlfaq documents
138
139 =over 4
140
141 =item Where to get the perlfaq
142
143 =item How to contribute to the perlfaq
144
145 =item What will happen if you mail your Perl programming problems to the
146 authors
147
148 =back
149
150 =item Credits
151
152 =item Author and Copyright Information
153
154 =over 4
155
156 =item Bundled Distributions
157
158 =item Disclaimer
159
160 =back
161
162 =item Changes
163
164 1/November/2000, 23/May/99, 13/April/99, 7/January/99, 22/June/98,
165 24/April/97, 23/April/97, 25/March/97, 18/March/97, 17/March/97 Version,
166 Initial Release: 11/March/97
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 Range Operators
281
282 =item Conditional Operator
283
284 =item Assignment Operators
285
286 =item Comma Operator
287
288 =item List Operators (Rightward)
289
290 =item Logical Not
291
292 =item Logical And
293
294 =item Logical or and Exclusive Or
295
296 =item C Operators Missing From Perl
297
298 unary &, unary *, (TYPE)
299
300 =item Quote and Quote-like Operators
301
302 =item Regexp Quote-Like Operators
303
304 ?PATTERN?, m/PATTERN/cgimosx, /PATTERN/cgimosx, q/STRING/, C<'STRING'>,
305 qq/STRING/, "STRING", qr/STRING/imosx, qx/STRING/, `STRING`, qw/STRING/,
306 s/PATTERN/REPLACEMENT/egimosx, tr/SEARCHLIST/REPLACEMENTLIST/cds,
307 y/SEARCHLIST/REPLACEMENTLIST/cds, <<EOF
308
309 =item Gory details of parsing quoted constructs
310
311 Finding the end, Removal of backslashes before delimiters, Interpolation,
312 C<<<'EOF'>, C<m''>, C<s'''>, C<tr///>, C<y///>, C<''>, C<q//>, C<"">,
313 C<``>, C<qq//>, C<qx//>, C<< <file*glob> >>, C<?RE?>, C</RE/>, C<m/RE/>,
314 C<s/RE/foo/>,, Interpolation of regular expressions, Optimization of
315 regular expressions
316
317 =item I/O Operators
318
319 =item Constant Folding
320
321 =item Bitwise String Operators
322
323 =item Integer Arithmetic
324
325 =item Floating-point Arithmetic
326
327 =item Bigger Numbers
328
329 =back
330
331 =back
332
333 =head2 perlsub - Perl subroutines
334
335 =over 4
336
337 =item SYNOPSIS
338
339 =item DESCRIPTION
340
341 =over 4
342
343 =item Private Variables via my()
344
345 =item Persistent Private Variables
346
347 =item Temporary Values via local()
348
349 =item Lvalue subroutines
350
351 Lvalue subroutines are EXPERIMENTAL
352
353 =item Passing Symbol Table Entries (typeglobs)
354
355 =item When to Still Use local()
356
357 =item Pass by Reference
358
359 =item Prototypes
360
361 =item Constant Functions
362
363 =item Overriding Built-in Functions
364
365 =item Autoloading
366
367 =item Subroutine Attributes
368
369 =back
370
371 =item SEE ALSO
372
373 =back
374
375 =head2 perlfunc - Perl builtin functions
376
377 =over 4
378
379 =item DESCRIPTION
380
381 =over 4
382
383 =item Perl Functions by Category
384
385 Functions for SCALARs or strings, Regular expressions and pattern matching,
386 Numeric functions, Functions for real @ARRAYs, Functions for list data,
387 Functions for real %HASHes, Input and output functions, Functions for fixed
388 length data or records, Functions for filehandles, files, or directories,
389 Keywords related to the control flow of your perl program, Keywords related
390 to scoping, Miscellaneous functions, Functions for processes and process
391 groups, Keywords related to perl modules, Keywords related to classes and
392 object-orientedness, Low-level socket functions, System V interprocess
393 communication functions, Fetching user and group info, Fetching network
394 info, Time-related functions, Functions new in perl5, Functions obsoleted
395 in perl5
396
397 =item Portability
398
399 =item Alphabetical Listing of Perl Functions
400
401 I<-X> FILEHANDLE, I<-X> EXPR, I<-X>, abs VALUE, abs, accept
402 NEWSOCKET,GENERICSOCKET, alarm SECONDS, alarm, atan2 Y,X, bind SOCKET,NAME,
403 binmode FILEHANDLE, DISCIPLINE, binmode FILEHANDLE, bless REF,CLASSNAME,
404 bless REF, caller EXPR, caller, chdir EXPR, chmod LIST, chomp VARIABLE,
405 chomp( LIST ), chomp, chop VARIABLE, chop( LIST ), chop, chown LIST, chr
406 NUMBER, chr, chroot FILENAME, chroot, close FILEHANDLE, close, closedir
407 DIRHANDLE, connect SOCKET,NAME, continue BLOCK, cos EXPR, cos, crypt
408 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MASK, defined EXPR,
409 defined, delete EXPR, die LIST, do BLOCK, do SUBROUTINE(LIST), do EXPR,
410 dump LABEL, dump, each HASH, eof FILEHANDLE, eof (), eof, eval EXPR, eval
411 BLOCK, exec LIST, exec PROGRAM LIST, exists EXPR, exit EXPR, exp EXPR, exp,
412 fcntl FILEHANDLE,FUNCTION,SCALAR, fileno FILEHANDLE, flock
413 FILEHANDLE,OPERATION, fork, format, formline PICTURE,LIST, getc FILEHANDLE,
414 getc, getlogin, getpeername SOCKET, getpgrp PID, getppid, getpriority
415 WHICH,WHO, getpwnam NAME, getgrnam NAME, gethostbyname NAME, getnetbyname
416 NAME, getprotobyname NAME, getpwuid UID, getgrgid GID, getservbyname
417 NAME,PROTO, gethostbyaddr ADDR,ADDRTYPE, getnetbyaddr ADDR,ADDRTYPE,
418 getprotobynumber NUMBER, getservbyport PORT,PROTO, getpwent, getgrent,
419 gethostent, getnetent, getprotoent, getservent, setpwent, setgrent,
420 sethostent STAYOPEN, setnetent STAYOPEN, setprotoent STAYOPEN, setservent
421 STAYOPEN, endpwent, endgrent, endhostent, endnetent, endprotoent,
422 endservent, getsockname SOCKET, getsockopt SOCKET,LEVEL,OPTNAME, glob EXPR,
423 glob, gmtime EXPR, goto LABEL, goto EXPR, goto &NAME, grep BLOCK LIST, grep
424 EXPR,LIST, hex EXPR, hex, import, index STR,SUBSTR,POSITION, index
425 STR,SUBSTR, int EXPR, int, ioctl FILEHANDLE,FUNCTION,SCALAR, join
426 EXPR,LIST, keys HASH, kill SIGNAL, LIST, last LABEL, last, lc EXPR, lc,
427 lcfirst EXPR, lcfirst, length EXPR, length, link OLDFILE,NEWFILE, listen
428 SOCKET,QUEUESIZE, local EXPR, localtime EXPR, lock THING, log EXPR, log,
429 lstat EXPR, lstat, m//, map BLOCK LIST, map EXPR,LIST, mkdir FILENAME,MASK,
430 mkdir FILENAME, msgctl ID,CMD,ARG, msgget KEY,FLAGS, msgrcv
431 ID,VAR,SIZE,TYPE,FLAGS, msgsnd ID,MSG,FLAGS, my EXPR, my TYPE EXPR, my EXPR
432 : ATTRS, my TYPE EXPR : ATTRS, next LABEL, next, no Module VERSION LIST, no
433 Module VERSION, no Module LIST, no Module, oct EXPR, oct, open
434 FILEHANDLE,EXPR, open FILEHANDLE,MODE,EXPR, open FILEHANDLE,MODE,EXPR,LIST,
435 open FILEHANDLE,MODE,REFERENCE, open FILEHANDLE, opendir DIRHANDLE,EXPR,
436 ord EXPR, ord, our EXPR, our EXPR TYPE, our EXPR : ATTRS, our TYPE EXPR :
437 ATTRS, pack TEMPLATE,LIST, package NAMESPACE, package, pipe
438 READHANDLE,WRITEHANDLE, pop ARRAY, pop, pos SCALAR, pos, print FILEHANDLE
439 LIST, print LIST, print, printf FILEHANDLE FORMAT, LIST, printf FORMAT,
440 LIST, prototype FUNCTION, push ARRAY,LIST, q/STRING/, qq/STRING/,
441 qr/STRING/, qx/STRING/, qw/STRING/, quotemeta EXPR, quotemeta, rand EXPR,
442 rand, read FILEHANDLE,SCALAR,LENGTH,OFFSET, read FILEHANDLE,SCALAR,LENGTH,
443 readdir DIRHANDLE, readline EXPR, readlink EXPR, readlink, readpipe EXPR,
444 recv SOCKET,SCALAR,LENGTH,FLAGS, redo LABEL, redo, ref EXPR, ref, rename
445 OLDNAME,NEWNAME, require VERSION, require EXPR, require, reset EXPR, reset,
446 return EXPR, return, reverse LIST, rewinddir DIRHANDLE, rindex
447 STR,SUBSTR,POSITION, rindex STR,SUBSTR, rmdir FILENAME, rmdir, s///, scalar
448 EXPR, seek FILEHANDLE,POSITION,WHENCE, seekdir DIRHANDLE,POS, select
449 FILEHANDLE, select, select RBITS,WBITS,EBITS,TIMEOUT, semctl
450 ID,SEMNUM,CMD,ARG, semget KEY,NSEMS,FLAGS, semop KEY,OPSTRING, send
451 SOCKET,MSG,FLAGS,TO, send SOCKET,MSG,FLAGS, setpgrp PID,PGRP, setpriority
452 WHICH,WHO,PRIORITY, setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL, shift ARRAY,
453 shift, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS, shmread ID,VAR,POS,SIZE,
454 shmwrite ID,STRING,POS,SIZE, shutdown SOCKET,HOW, sin EXPR, sin, sleep
455 EXPR, sleep, socket SOCKET,DOMAIN,TYPE,PROTOCOL, socketpair
456 SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, sort SUBNAME LIST, sort BLOCK LIST,
457 sort LIST, splice ARRAY,OFFSET,LENGTH,LIST, splice ARRAY,OFFSET,LENGTH,
458 splice ARRAY,OFFSET, splice ARRAY, split /PATTERN/,EXPR,LIMIT, split
459 /PATTERN/,EXPR, split /PATTERN/, split, sprintf FORMAT, LIST, sqrt EXPR,
460 sqrt, srand EXPR, srand, stat FILEHANDLE, stat EXPR, stat, study SCALAR,
461 study, sub NAME BLOCK, sub NAME (PROTO) BLOCK, sub NAME : ATTRS BLOCK, sub
462 NAME (PROTO) : ATTRS BLOCK, substr EXPR,OFFSET,LENGTH,REPLACEMENT, substr
463 EXPR,OFFSET,LENGTH, substr EXPR,OFFSET, symlink OLDFILE,NEWFILE, syscall
464 LIST, sysopen FILEHANDLE,FILENAME,MODE, sysopen
465 FILEHANDLE,FILENAME,MODE,PERMS, sysread FILEHANDLE,SCALAR,LENGTH,OFFSET,
466 sysread FILEHANDLE,SCALAR,LENGTH, sysseek FILEHANDLE,POSITION,WHENCE,
467 system LIST, system PROGRAM LIST, syswrite FILEHANDLE,SCALAR,LENGTH,OFFSET,
468 syswrite FILEHANDLE,SCALAR,LENGTH, syswrite FILEHANDLE,SCALAR, tell
469 FILEHANDLE, tell, telldir DIRHANDLE, tie VARIABLE,CLASSNAME,LIST, tied
470 VARIABLE, time, times, tr///, truncate FILEHANDLE,LENGTH, truncate
471 EXPR,LENGTH, uc EXPR, uc, ucfirst EXPR, ucfirst, umask EXPR, umask, undef
472 EXPR, undef, unlink LIST, unlink, unpack TEMPLATE,EXPR, untie VARIABLE,
473 unshift ARRAY,LIST, use Module VERSION LIST, use Module VERSION, use Module
474 LIST, use Module, use VERSION, utime LIST, values HASH, vec
475 EXPR,OFFSET,BITS, wait, waitpid PID,FLAGS, wantarray, warn LIST, write
476 FILEHANDLE, write EXPR, write, y///
477
478 =back
479
480 =back
481
482 =head2 perlreftut - Mark's very short tutorial about references
483
484 =over 4
485
486 =item DESCRIPTION
487
488 =item Who Needs Complicated Data Structures?
489
490 =item The Solution
491
492 =item Syntax
493
494 =over 4
495
496 =item Making References
497
498 =item Using References
499
500 =back
501
502 =item An Example
503
504 =item Arrow Rule
505
506 =item Solution
507
508 =item The Rest
509
510 =item Summary
511
512 =item Credits
513
514 =over 4
515
516 =item Distribution Conditions
517
518 =back
519
520 =back
521
522 =head2 perldsc - Perl Data Structures Cookbook
523
524 =over 4
525
526 =item DESCRIPTION
527
528 arrays of arrays, hashes of arrays, arrays of hashes, hashes of hashes,
529 more elaborate constructs
530
531 =item REFERENCES
532
533 =item COMMON MISTAKES
534
535 =item CAVEAT ON PRECEDENCE
536
537 =item WHY YOU SHOULD ALWAYS C<use strict>
538
539 =item DEBUGGING
540
541 =item CODE EXAMPLES
542
543 =item ARRAYS OF ARRAYS
544
545 =over 4
546
547 =item Declaration of an ARRAY OF ARRAYS
548
549 =item Generation of an ARRAY OF ARRAYS
550
551 =item Access and Printing of an ARRAY OF ARRAYS
552
553 =back
554
555 =item HASHES OF ARRAYS
556
557 =over 4
558
559 =item Declaration of a HASH OF ARRAYS
560
561 =item Generation of a HASH OF ARRAYS
562
563 =item Access and Printing of a HASH OF ARRAYS
564
565 =back
566
567 =item ARRAYS OF HASHES
568
569 =over 4
570
571 =item Declaration of an ARRAY OF HASHES
572
573 =item Generation of an ARRAY OF HASHES
574
575 =item Access and Printing of an ARRAY OF HASHES
576
577 =back
578
579 =item HASHES OF HASHES
580
581 =over 4
582
583 =item Declaration of a HASH OF HASHES
584
585 =item Generation of a HASH OF HASHES
586
587 =item Access and Printing of a HASH OF HASHES
588
589 =back
590
591 =item MORE ELABORATE RECORDS
592
593 =over 4
594
595 =item Declaration of MORE ELABORATE RECORDS
596
597 =item Declaration of a HASH OF COMPLEX RECORDS
598
599 =item Generation of a HASH OF COMPLEX RECORDS
600
601 =back
602
603 =item Database Ties
604
605 =item SEE ALSO
606
607 =item AUTHOR
608
609 =back
610
611 =head2 perlrequick - Perl regular expressions quick start
612
613 =over 4
614
615 =item DESCRIPTION
616
617 =item The Guide
618
619 =over 4
620
621 =item Simple word matching
622
623 =item Using character classes
624
625 =item Matching this or that
626
627 =item Grouping things and hierarchical matching
628
629 =item Extracting matches
630
631 =item Matching repetitions
632
633 =item More matching
634
635 =item Search and replace
636
637 =item The split operator
638
639 =back
640
641 =item BUGS
642
643 =item SEE ALSO
644
645 =item AUTHOR AND COPYRIGHT
646
647 =over 4
648
649 =item Acknowledgments
650
651 =back
652
653 =back
654
655 =head2 perlpod - the Plain Old Documentation format
656
657 =over 4
658
659 =item DESCRIPTION
660
661 =over 4
662
663 =item Ordinary Paragraph
664
665 =item Verbatim Paragraph
666
667 =item Command Paragraph
668
669 C<=head1 I<Heading Text>>, C<=head2 I<Heading Text>>, C<=head3 I<Heading
670 Text>>, C<=head4 I<Heading Text>>, C<=over I<indentlevel>>, C<=item
671 I<stuff...>>, C<=back>, C<=cut>, C<=pod>, C<=begin I<formatname>>, C<=end
672 I<formatname>>, C<=for I<formatname> I<text...>>
673
674 =item Formatting Codes
675
676 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
677 C<CE<lt>codeE<gt>> -- code text, C<LE<lt>nameE<gt>> -- a hyperlink,
678 C<EE<lt>escapeE<gt>> -- a character escape, C<FE<lt>filenameE<gt>> -- used
679 for filenames, C<SE<lt>textE<gt>> -- text contains non-breaking spaces,
680 C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a null
681 (zero-effect) formatting code
682
683 =item The Intent
684
685 =item Embedding Pods in Perl Modules
686
687 =item Hints for Writing Pod
688
689 =back
690
691 =item SEE ALSO
692
693 =item AUTHOR
694
695 =back
696
697 =head2 perlpodspec - Plain Old Documentation: format specification and
698 notes
699
700 =over 4
701
702 =item DESCRIPTION
703
704 =item Pod Definitions
705
706 =item Pod Commands
707
708 "=head1", "=head2", "=head3", "=head4", "=pod", "=cut", "=over", "=item",
709 "=back", "=begin formatname", "=end formatname", "=for formatname text..."
710
711 =item Pod Formatting Codes
712
713 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
714 C<CE<lt>codeE<gt>> -- code text, C<FE<lt>filenameE<gt>> -- style for
715 filenames, C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a
716 null (zero-effect) formatting code, C<LE<lt>nameE<gt>> -- a hyperlink,
717 C<EE<lt>escapeE<gt>> -- a character escape, C<SE<lt>textE<gt>> -- text
718 contains non-breaking spaces
719
720 =item Notes on Implementing Pod Processors
721
722 =item About LE<lt>...E<gt> Codes
723
724 First:, Second:, Third:, Fourth:, Fifth:, Sixth:
725
726 =item About =over...=back Regions
727
728 =item About Data Paragraphs and "=begin/=end" Regions
729
730 =item SEE ALSO
731
732 =item AUTHOR
733
734 =back
735
736 =head2 perlstyle - Perl style guide
737
738 =over 4
739
740 =item DESCRIPTION
741
742 =back
743
744 =head2 perltrap - Perl traps for the unwary
745
746 =over 4
747
748 =item DESCRIPTION
749
750 =over 4
751
752 =item Awk Traps
753
754 =item C Traps
755
756 =item Sed Traps
757
758 =item Shell Traps
759
760 =item Perl Traps
761
762 =item Perl4 to Perl5 Traps
763
764 Discontinuance, Deprecation, and BugFix traps, Parsing Traps, Numerical
765 Traps, General data type traps, Context Traps - scalar, list contexts,
766 Precedence Traps, General Regular Expression Traps using s///, etc,
767 Subroutine, Signal, Sorting Traps, OS Traps, DBM Traps, Unclassified Traps
768
769 =item Discontinuance, Deprecation, and BugFix traps
770
771 Discontinuance, Deprecation, BugFix, Discontinuance, Discontinuance,
772 Discontinuance, BugFix, Discontinuance, Discontinuance, BugFix,
773 Discontinuance, Deprecation, Discontinuance, Discontinuance
774
775 =item Parsing Traps
776
777 Parsing, Parsing, Parsing, Parsing, Parsing
778
779 =item Numerical Traps
780
781 Numerical, Numerical, Numerical, Bitwise string ops
782
783 =item General data type traps
784
785 (Arrays), (Arrays), (Hashes), (Globs), (Globs), (Scalar String),
786 (Constants), (Scalars), (Variable Suicide)
787
788 =item Context Traps - scalar, list contexts
789
790 (list context), (scalar context), (scalar context), (list, builtin)
791
792 =item Precedence Traps
793
794 Precedence, Precedence, Precedence, Precedence, Precedence, Precedence,
795 Precedence
796
797 =item General Regular Expression Traps using s///, etc.
798
799 Regular Expression, Regular Expression, Regular Expression, Regular
800 Expression, Regular Expression, Regular Expression, Regular Expression,
801 Regular Expression
802
803 =item Subroutine, Signal, Sorting Traps
804
805 (Signals), (Sort Subroutine), warn() won't let you specify a filehandle
806
807 =item OS Traps
808
809 (SysV), (SysV)
810
811 =item Interpolation Traps
812
813 Interpolation, Interpolation, Interpolation, Interpolation, Interpolation,
814 Interpolation, Interpolation, Interpolation, Interpolation
815
816 =item DBM Traps
817
818 DBM, DBM
819
820 =item Unclassified Traps
821
822 C<require>/C<do> trap using returned value, C<split> on empty string with
823 LIMIT specified
824
825 =back
826
827 =back
828
829 =head2 perlrun - how to execute the Perl interpreter
830
831 =over 4
832
833 =item SYNOPSIS
834
835 =item DESCRIPTION
836
837 =over 4
838
839 =item #! and quoting on non-Unix systems
840
841 OS/2, MS-DOS, Win95/NT, Macintosh, VMS
842
843 =item Location of Perl
844
845 =item Command Switches
846
847 B<-0>[I<digits>], B<-a>, B<-C>, B<-c>, B<-d>, B<-d:>I<foo[=bar,baz]>,
848 B<-D>I<letters>, B<-D>I<number>, B<-e> I<commandline>, B<-F>I<pattern>,
849 B<-h>, B<-i>[I<extension>], B<-I>I<directory>, B<-l>[I<octnum>],
850 B<-m>[B<->]I<module>, B<-M>[B<->]I<module>, B<-M>[B<->]I<'module ...'>,
851 B<-[mM]>[B<->]I<module=arg[,arg]...>, B<-n>, B<-p>, B<-P>, B<-s>, B<-S>,
852 B<-t>, B<-T>, B<-u>, B<-U>, B<-v>, B<-V>, B<-V:>I<name>, B<-w>, B<-W>,
853 B<-X>, B<-x> I<directory>
854
855 =back
856
857 =item ENVIRONMENT
858
859 HOME, LOGDIR, PATH, PERL5LIB, PERL5OPT, PERLIO, :bytes, :crlf, :mmap,
860 :perlio, :raw, :stdio, :unix, :utf8, :win32, PERLIO_DEBUG, PERLLIB,
861 PERL5DB, PERL5SHELL (specific to the Win32 port), PERL_DEBUG_MSTATS,
862 PERL_DESTRUCT_LEVEL, PERL_ENCODING, PERL_ROOT (specific to the VMS port),
863 SYS$LOGIN (specific to the VMS port)
864
865 =back
866
867 =head2 perldiag - various Perl diagnostics
868
869 =over 4
870
871 =item DESCRIPTION
872
873 =back
874
875 =head2 perllexwarn - Perl Lexical Warnings
876
877 =over 4
878
879 =item DESCRIPTION
880
881 =over 4
882
883 =item Default Warnings and Optional Warnings
884
885 =item What's wrong with B<-w> and C<$^W>
886
887 =item Controlling Warnings from the Command Line
888
889 B<-w>, B<-W>, B<-X>
890
891 =item Backward Compatibility
892
893 =item Category Hierarchy
894
895 =item Fatal Warnings
896
897 =item Reporting Warnings from a Module
898
899 =back
900
901 =item TODO
902
903 =item SEE ALSO
904
905 =item AUTHOR
906
907 =back
908
909 =head2 perldebtut - Perl debugging tutorial
910
911 =over 4
912
913 =item DESCRIPTION
914
915 =item use strict
916
917 =item Looking at data and -w and v
918
919 =item help
920
921 =item Stepping through code
922
923 =item Placeholder for a, w, t, T
924
925 =item REGULAR EXPRESSIONS
926
927 =item OUTPUT TIPS
928
929 =item CGI
930
931 =item GUIs
932
933 =item SUMMARY
934
935 =item SEE ALSO
936
937 =item AUTHOR
938
939 =item CONTRIBUTORS
940
941 =back
942
943 =head2 perldebug - Perl debugging
944
945 =over 4
946
947 =item DESCRIPTION
948
949 =item The Perl Debugger
950
951 =over 4
952
953 =item Debugger Commands
954
955 h, h [command], h h, p expr, x [maxdepth] expr, V [pkg [vars]], X [vars], y
956 [level [vars]], T, s [expr], n [expr], r, <CR>, c [line|sub], l, l
957 min+incr, l min-max, l line, l subname, -, v [line], f filename, /pattern/,
958 ?pattern?, L [abw], S [[!]regex], t, t expr, b, b [line] [condition], b
959 subname [condition], b postpone subname [condition], b load filename, b
960 compile subname, B line, B *, a [line] command, A line, A *, w expr, W
961 expr, W *, o, o booloption .., o anyoption? .., o option=value .., < ?, < [
962 command ], << command, > ?, > command, >> command, { ?, { [ command ], {{
963 command, ! number, ! -number, ! pattern, !! cmd, source file, H -number, q
964 or ^D, R, |dbcmd, ||dbcmd, command, m expr, M, man [manpage]
965
966 =item Configurable Options
967
968 C<recallCommand>, C<ShellBang>, C<pager>, C<tkRunning>, C<signalLevel>,
969 C<warnLevel>, C<dieLevel>, C<AutoTrace>, C<LineInfo>, C<inhibit_exit>,
970 C<PrintRet>, C<ornaments>, C<frame>, C<maxTraceLen>, C<windowSize>,
971 C<arrayDepth>, C<hashDepth>, C<dumpDepth>, C<compactDump>, C<veryCompact>,
972 C<globPrint>, C<DumpDBFiles>, C<DumpPackages>, C<DumpReused>, C<quote>,
973 C<HighBit>, C<undefPrint>, C<UsageOnly>, C<TTY>, C<noTTY>, C<ReadLine>,
974 C<NonStop>
975
976 =item Debugger input/output
977
978 Prompt, Multiline commands, Stack backtrace, Line Listing Format, Frame
979 listing
980
981 =item Debugging compile-time statements
982
983 =item Debugger Customization
984
985 =item Readline Support
986
987 =item Editor Support for Debugging
988
989 =item The Perl Profiler
990
991 =back
992
993 =item Debugging regular expressions
994
995 =item Debugging memory usage
996
997 =item SEE ALSO
998
999 =item BUGS
1000
1001 =back
1002
1003 =head2 perlvar - Perl predefined variables
1004
1005 =over 4
1006
1007 =item DESCRIPTION
1008
1009 =over 4
1010
1011 =item Predefined Names
1012
1013 $ARG, $_, $a, $b, $<I<digits>>, $MATCH, $&, $PREMATCH, $`, $POSTMATCH, $',
1014 $LAST_PAREN_MATCH, $+, $^N, @LAST_MATCH_END, @+, $MULTILINE_MATCHING, $*,
1015 HANDLE->input_line_number(EXPR), $INPUT_LINE_NUMBER, $NR, $,
1016 IO::Handle->input_record_separator(EXPR), $INPUT_RECORD_SEPARATOR, $RS, $/,
1017 HANDLE->autoflush(EXPR), $OUTPUT_AUTOFLUSH, $|,
1018 IO::Handle->output_field_separator EXPR, $OUTPUT_FIELD_SEPARATOR, $OFS, $,,
1019 IO::Handle->output_record_separator EXPR, $OUTPUT_RECORD_SEPARATOR, $ORS,
1020 $\, $LIST_SEPARATOR, $", $SUBSCRIPT_SEPARATOR, $SUBSEP, $;, $OFMT, $#,
1021 HANDLE->format_page_number(EXPR), $FORMAT_PAGE_NUMBER, $%,
1022 HANDLE->format_lines_per_page(EXPR), $FORMAT_LINES_PER_PAGE, $=,
1023 HANDLE->format_lines_left(EXPR), $FORMAT_LINES_LEFT, $-, @LAST_MATCH_START,
1024 @-, C<$`> is the same as C<substr($var, 0, $-[0])>, C<$&> is the same as
1025 C<substr($var, $-[0], $+[0] - $-[0])>, C<$'> is the same as C<substr($var,
1026 $+[0])>, C<$1> is the same as C<substr($var, $-[1], $+[1] - $-[1])>, C<$2>
1027 is the same as C<substr($var, $-[2], $+[2] - $-[2])>, C<$3> is the same as
1028 C<substr $var, $-[3], $+[3] - $-[3])>, HANDLE->format_name(EXPR),
1029 $FORMAT_NAME, $~, HANDLE->format_top_name(EXPR), $FORMAT_TOP_NAME, $^,
1030 IO::Handle->format_line_break_characters EXPR,
1031 $FORMAT_LINE_BREAK_CHARACTERS, $:, IO::Handle->format_formfeed EXPR,
1032 $FORMAT_FORMFEED, $^L, $ACCUMULATOR, $^A, $CHILD_ERROR, $?, ${^ENCODING},
1033 $OS_ERROR, $ERRNO, $!, %!, $EXTENDED_OS_ERROR, $^E, $EVAL_ERROR, $@,
1034 $PROCESS_ID, $PID, $$, $REAL_USER_ID, $UID, $<, $EFFECTIVE_USER_ID, $EUID,
1035 $>, $REAL_GROUP_ID, $GID, $(, $EFFECTIVE_GROUP_ID, $EGID, $),
1036 $PROGRAM_NAME, $0, $[, $], $COMPILING, $^C, $DEBUGGING, $^D,
1037 $SYSTEM_FD_MAX, $^F, $^H, %^H, $INPLACE_EDIT, $^I, $^M, $OSNAME, $^O,
1038 ${^OPEN}, $PERLDB, $^P, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
1039 0x100, 0x200, $LAST_REGEXP_CODE_RESULT, $^R, $EXCEPTIONS_BEING_CAUGHT, $^S,
1040 $BASETIME, $^T, ${^TAINT}, $PERL_VERSION, $^V, $WARNING, $^W,
1041 ${^WARNING_BITS}, ${^WIDE_SYSTEM_CALLS}, $EXECUTABLE_NAME, $^X, ARGV,
1042 $ARGV, @ARGV, @F, @INC, @_, %INC, %ENV, $ENV{expr}, %SIG, $SIG{expr}
1043
1044 =item Error Indicators
1045
1046 =item Technical Note on the Syntax of Variable Names
1047
1048 =back
1049
1050 =item BUGS
1051
1052 =back
1053
1054 =head2 perllol - Manipulating Arrays of Arrays in Perl
1055
1056 =over 4
1057
1058 =item DESCRIPTION
1059
1060 =over 4
1061
1062 =item Declaration and Access of Arrays of Arrays
1063
1064 =item Growing Your Own
1065
1066 =item Access and Printing
1067
1068 =item Slices
1069
1070 =back
1071
1072 =item SEE ALSO
1073
1074 =item AUTHOR
1075
1076 =back
1077
1078 =head2 perlopentut - tutorial on opening things in Perl
1079
1080 =over 4
1081
1082 =item DESCRIPTION
1083
1084 =item Open E<agrave> la shell
1085
1086 =over 4
1087
1088 =item Simple Opens
1089
1090 =item Pipe Opens
1091
1092 =item The Minus File
1093
1094 =item Mixing Reads and Writes
1095
1096 =item Filters 
1097
1098 =back
1099
1100 =item Open E<agrave> la C
1101
1102 =over 4
1103
1104 =item Permissions E<agrave> la mode
1105
1106 =back
1107
1108 =item Obscure Open Tricks
1109
1110 =over 4
1111
1112 =item Re-Opening Files (dups)
1113
1114 =item Dispelling the Dweomer
1115
1116 =item Paths as Opens
1117
1118 =item Single Argument Open
1119
1120 =item Playing with STDIN and STDOUT
1121
1122 =back
1123
1124 =item Other I/O Issues
1125
1126 =over 4
1127
1128 =item Opening Non-File Files
1129
1130 =item Binary Files
1131
1132 =item File Locking
1133
1134 =item IO Layers
1135
1136 =back
1137
1138 =item SEE ALSO 
1139
1140 =item AUTHOR and COPYRIGHT
1141
1142 =item HISTORY
1143
1144 =back
1145
1146 =head2 perlpacktut - tutorial on C<pack> and C<unpack>
1147
1148 =over 4
1149
1150 =item DESCRIPTION
1151
1152 =item The Basic Principle
1153
1154 =item Packing Text
1155
1156 =item Packing Numbers
1157
1158 =over 4
1159
1160 =item Integers
1161
1162 =item Unpacking a Stack Frame
1163
1164 =item How to Eat an Egg on a Net
1165
1166 =item Floating point Numbers
1167
1168 =back
1169
1170 =item Exotic Templates
1171
1172 =over 4
1173
1174 =item Bit Strings
1175
1176 =item Uuencoding
1177
1178 =item Doing Sums
1179
1180 =item  Unicode
1181
1182 =item Another Portable Binary Encoding
1183
1184 =back
1185
1186 =item Lengths and Widths
1187
1188 =over 4
1189
1190 =item String Lengths
1191
1192 =item Dynamic Templates
1193
1194 =back
1195
1196 =item Packing and Unpacking C Structures
1197
1198 =over 4
1199
1200 =item The Alignment Pit
1201
1202 =item Alignment, Take 2
1203
1204 =item Alignment, Take 3
1205
1206 =item Pointers for How to Use Them
1207
1208 =back
1209
1210 =item Pack Recipes
1211
1212 =item Funnies Section
1213
1214 =item Authors
1215
1216 =back
1217
1218 =head2 perlretut - Perl regular expressions tutorial
1219
1220 =over 4
1221
1222 =item DESCRIPTION
1223
1224 =item Part 1: The basics
1225
1226 =over 4
1227
1228 =item Simple word matching
1229
1230 =item Using character classes
1231
1232 =item Matching this or that
1233
1234 =item Grouping things and hierarchical matching
1235
1236 =item Extracting matches
1237
1238 =item Matching repetitions
1239
1240 =item Building a regexp
1241
1242 =item Using regular expressions in Perl
1243
1244 =back
1245
1246 =item Part 2: Power tools
1247
1248 =over 4
1249
1250 =item More on characters, strings, and character classes
1251
1252 =item Compiling and saving regular expressions
1253
1254 =item Embedding comments and modifiers in a regular expression
1255
1256 =item Non-capturing groupings
1257
1258 =item Looking ahead and looking behind
1259
1260 =item Using independent subexpressions to prevent backtracking
1261
1262 =item Conditional expressions
1263
1264 =item A bit of magic: executing Perl code in a regular expression
1265
1266 =item Pragmas and debugging
1267
1268 =back
1269
1270 =item BUGS
1271
1272 =item SEE ALSO
1273
1274 =item AUTHOR AND COPYRIGHT
1275
1276 =over 4
1277
1278 =item Acknowledgments
1279
1280 =back
1281
1282 =back
1283
1284 =head2 perlre - Perl regular expressions
1285
1286 =over 4
1287
1288 =item DESCRIPTION
1289
1290 i, m, s, x
1291
1292 =over 4
1293
1294 =item Regular Expressions
1295
1296 [1], [2], [3], cntrl, graph, print, punct, xdigit
1297
1298 =item Extended Patterns
1299
1300 C<(?#text)>, C<(?imsx-imsx)>, C<(?:pattern)>, C<(?imsx-imsx:pattern)>,
1301 C<(?=pattern)>, C<(?!pattern)>, C<(?<=pattern)>, C<(?<!pattern)>, C<(?{
1302 code })>, C<(??{ code })>, C<< (?>pattern) >>,
1303 C<(?(condition)yes-pattern|no-pattern)>, C<(?(condition)yes-pattern)>
1304
1305 =item Backtracking
1306
1307 =item Version 8 Regular Expressions
1308
1309 =item Warning on \1 vs $1
1310
1311 =item Repeated patterns matching zero-length substring
1312
1313 =item Combining pieces together
1314
1315 C<ST>, C<S|T>, C<S{REPEAT_COUNT}>, C<S{min,max}>, C<S{min,max}?>, C<S?>,
1316 C<S*>, C<S+>, C<S??>, C<S*?>, C<S+?>, C<< (?>S) >>, C<(?=S)>, C<(?<=S)>,
1317 C<(?!S)>, C<(?<!S)>, C<(??{ EXPR })>,
1318 C<(?(condition)yes-pattern|no-pattern)>
1319
1320 =item Creating custom RE engines
1321
1322 =back
1323
1324 =item BUGS
1325
1326 =item SEE ALSO
1327
1328 =back
1329
1330 =head2 perlref - Perl references and nested data structures
1331
1332 =over 4
1333
1334 =item NOTE
1335
1336 =item DESCRIPTION
1337
1338 =over 4
1339
1340 =item Making References
1341
1342 =item Using References
1343
1344 =item Symbolic references
1345
1346 =item Not-so-symbolic references
1347
1348 =item Pseudo-hashes: Using an array as a hash
1349
1350 =item Function Templates
1351
1352 =back
1353
1354 =item WARNING
1355
1356 =item SEE ALSO
1357
1358 =back
1359
1360 =head2 perlform - Perl formats
1361
1362 =over 4
1363
1364 =item DESCRIPTION
1365
1366 =over 4
1367
1368 =item Format Variables
1369
1370 =back
1371
1372 =item NOTES
1373
1374 =over 4
1375
1376 =item Footers
1377
1378 =item Accessing Formatting Internals
1379
1380 =back
1381
1382 =item WARNINGS
1383
1384 =back
1385
1386 =head2 perlboot - Beginner's Object-Oriented Tutorial
1387
1388 =over 4
1389
1390 =item DESCRIPTION
1391
1392 =over 4
1393
1394 =item If we could talk to the animals...
1395
1396 =item Introducing the method invocation arrow
1397
1398 =item Invoking a barnyard
1399
1400 =item The extra parameter of method invocation
1401
1402 =item Calling a second method to simplify things
1403
1404 =item Inheriting the windpipes
1405
1406 =item A few notes about @ISA
1407
1408 =item Overriding the methods
1409
1410 =item Starting the search from a different place
1411
1412 =item The SUPER way of doing things
1413
1414 =item Where we're at so far...
1415
1416 =item A horse is a horse, of course of course -- or is it?
1417
1418 =item Invoking an instance method
1419
1420 =item Accessing the instance data
1421
1422 =item How to build a horse
1423
1424 =item Inheriting the constructor
1425
1426 =item Making a method work with either classes or instances
1427
1428 =item Adding parameters to a method
1429
1430 =item More interesting instances
1431
1432 =item A horse of a different color
1433
1434 =item Summary
1435
1436 =back
1437
1438 =item SEE ALSO
1439
1440 =item COPYRIGHT
1441
1442 =back
1443
1444 =head2 perltoot - Tom's object-oriented tutorial for perl
1445
1446 =over 4
1447
1448 =item DESCRIPTION
1449
1450 =item Creating a Class
1451
1452 =over 4
1453
1454 =item Object Representation
1455
1456 =item Class Interface
1457
1458 =item Constructors and Instance Methods
1459
1460 =item Planning for the Future: Better Constructors
1461
1462 =item Destructors
1463
1464 =item Other Object Methods
1465
1466 =back
1467
1468 =item Class Data
1469
1470 =over 4
1471
1472 =item Accessing Class Data
1473
1474 =item Debugging Methods
1475
1476 =item Class Destructors
1477
1478 =item Documenting the Interface
1479
1480 =back
1481
1482 =item Aggregation
1483
1484 =item Inheritance
1485
1486 =over 4
1487
1488 =item Overridden Methods
1489
1490 =item Multiple Inheritance
1491
1492 =item UNIVERSAL: The Root of All Objects
1493
1494 =back
1495
1496 =item Alternate Object Representations
1497
1498 =over 4
1499
1500 =item Arrays as Objects
1501
1502 =item Closures as Objects
1503
1504 =back
1505
1506 =item AUTOLOAD: Proxy Methods
1507
1508 =over 4
1509
1510 =item Autoloaded Data Methods
1511
1512 =item Inherited Autoloaded Data Methods
1513
1514 =back
1515
1516 =item Metaclassical Tools
1517
1518 =over 4
1519
1520 =item Class::Struct
1521
1522 =item Data Members as Variables
1523
1524 =back
1525
1526 =item NOTES
1527
1528 =over 4
1529
1530 =item Object Terminology
1531
1532 =back
1533
1534 =item SEE ALSO
1535
1536 =item AUTHOR AND COPYRIGHT
1537
1538 =item COPYRIGHT
1539
1540 =over 4
1541
1542 =item Acknowledgments
1543
1544 =back
1545
1546 =back
1547
1548 =head2 perltooc - Tom's OO Tutorial for Class Data in Perl
1549
1550 =over 4
1551
1552 =item DESCRIPTION
1553
1554 =item Class Data in a Can
1555
1556 =item Class Data as Package Variables
1557
1558 =over 4
1559
1560 =item Putting All Your Eggs in One Basket
1561
1562 =item Inheritance Concerns
1563
1564 =item The Eponymous Meta-Object
1565
1566 =item Indirect References to Class Data
1567
1568 =item Monadic Classes
1569
1570 =item Translucent Attributes
1571
1572 =back
1573
1574 =item Class Data as Lexical Variables
1575
1576 =over 4
1577
1578 =item Privacy and Responsibility 
1579
1580 =item File-Scoped Lexicals
1581
1582 =item More Inheritance Concerns
1583
1584 =item Locking the Door and Throwing Away the Key
1585
1586 =item Translucency Revisited
1587
1588 =back
1589
1590 =item NOTES
1591
1592 =item SEE ALSO
1593
1594 =item AUTHOR AND COPYRIGHT
1595
1596 =item ACKNOWLEDGEMENTS
1597
1598 =item HISTORY
1599
1600 =back
1601
1602 =head2 perlobj - Perl objects
1603
1604 =over 4
1605
1606 =item DESCRIPTION
1607
1608 =over 4
1609
1610 =item An Object is Simply a Reference
1611
1612 =item A Class is Simply a Package
1613
1614 =item A Method is Simply a Subroutine
1615
1616 =item Method Invocation
1617
1618 =item Indirect Object Syntax
1619
1620 =item Default UNIVERSAL methods
1621
1622 isa(CLASS), can(METHOD), VERSION( [NEED] )
1623
1624 =item Destructors
1625
1626 =item Summary
1627
1628 =item Two-Phased Garbage Collection
1629
1630 =back
1631
1632 =item SEE ALSO
1633
1634 =back
1635
1636 =head2 perlbot - Bag'o Object Tricks (the BOT)
1637
1638 =over 4
1639
1640 =item DESCRIPTION
1641
1642 =item OO SCALING TIPS
1643
1644 =item INSTANCE VARIABLES
1645
1646 =item SCALAR INSTANCE VARIABLES
1647
1648 =item INSTANCE VARIABLE INHERITANCE
1649
1650 =item OBJECT RELATIONSHIPS
1651
1652 =item OVERRIDING SUPERCLASS METHODS
1653
1654 =item USING RELATIONSHIP WITH SDBM
1655
1656 =item THINKING OF CODE REUSE
1657
1658 =item CLASS CONTEXT AND THE OBJECT
1659
1660 =item INHERITING A CONSTRUCTOR
1661
1662 =item DELEGATION
1663
1664 =back
1665
1666 =head2 perltie - how to hide an object class in a simple variable
1667
1668 =over 4
1669
1670 =item SYNOPSIS
1671
1672 =item DESCRIPTION
1673
1674 =over 4
1675
1676 =item Tying Scalars
1677
1678 TIESCALAR classname, LIST, FETCH this, STORE this, value, UNTIE this,
1679 DESTROY this
1680
1681 =item Tying Arrays
1682
1683 TIEARRAY classname, LIST, FETCH this, index, STORE this, index, value,
1684 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
1685 key, DELETE this, key, CLEAR this, PUSH this, LIST, POP this, SHIFT this,
1686 UNSHIFT this, LIST, SPLICE this, offset, length, LIST, UNTIE this, DESTROY
1687 this
1688
1689 =item Tying Hashes
1690
1691 USER, HOME, CLOBBER, LIST, TIEHASH classname, LIST, FETCH this, key, STORE
1692 this, key, value, DELETE this, key, CLEAR this, EXISTS this, key, FIRSTKEY
1693 this, NEXTKEY this, lastkey, UNTIE this, DESTROY this
1694
1695 =item Tying FileHandles
1696
1697 TIEHANDLE classname, LIST, WRITE this, LIST, PRINT this, LIST, PRINTF this,
1698 LIST, READ this, LIST, READLINE this, GETC this, CLOSE this, UNTIE this,
1699 DESTROY this
1700
1701 =item UNTIE this
1702
1703 =item The C<untie> Gotcha
1704
1705 =back
1706
1707 =item SEE ALSO
1708
1709 =item BUGS
1710
1711 =item AUTHOR
1712
1713 =back
1714
1715 =head2 perlipc - Perl interprocess communication (signals, fifos, pipes,
1716 safe subprocesses, sockets, and semaphores)
1717
1718 =over 4
1719
1720 =item DESCRIPTION
1721
1722 =item Signals
1723
1724 =over 4
1725
1726 =item Handling the SIGHUP Signal in Daemons
1727
1728 =back
1729
1730 =item Named Pipes
1731
1732 =over 4
1733
1734 =item Deferred Signals
1735
1736 Long running opcodes, Interrupting IO, Signals as "faults", Signals
1737 triggered by operating system state
1738
1739 =back
1740
1741 =item Using open() for IPC
1742
1743 =over 4
1744
1745 =item Filehandles
1746
1747 =item Background Processes
1748
1749 =item Complete Dissociation of Child from Parent
1750
1751 =item Safe Pipe Opens
1752
1753 =item Bidirectional Communication with Another Process
1754
1755 =item Bidirectional Communication with Yourself
1756
1757 =back
1758
1759 =item Sockets: Client/Server Communication
1760
1761 =over 4
1762
1763 =item Internet Line Terminators
1764
1765 =item Internet TCP Clients and Servers
1766
1767 =item Unix-Domain TCP Clients and Servers
1768
1769 =back
1770
1771 =item TCP Clients with IO::Socket
1772
1773 =over 4
1774
1775 =item A Simple Client
1776
1777 C<Proto>, C<PeerAddr>, C<PeerPort>
1778
1779 =item A Webget Client
1780
1781 =item Interactive Client with IO::Socket
1782
1783 =back
1784
1785 =item TCP Servers with IO::Socket
1786
1787 Proto, LocalPort, Listen, Reuse
1788
1789 =item UDP: Message Passing
1790
1791 =item SysV IPC
1792
1793 =item NOTES
1794
1795 =item BUGS
1796
1797 =item AUTHOR
1798
1799 =item SEE ALSO
1800
1801 =back
1802
1803 =head2 perlfork - Perl's fork() emulation
1804
1805 =over 4
1806
1807 =item SYNOPSIS
1808
1809 =item DESCRIPTION
1810
1811 =over 4
1812
1813 =item Behavior of other Perl features in forked pseudo-processes
1814
1815 $$ or $PROCESS_ID, %ENV, chdir() and all other builtins that accept
1816 filenames, wait() and waitpid(), kill(), exec(), exit(), Open handles to
1817 files, directories and network sockets
1818
1819 =item Resource limits
1820
1821 =item Killing the parent process
1822
1823 =item Lifetime of the parent process and pseudo-processes
1824
1825 =item CAVEATS AND LIMITATIONS
1826
1827 BEGIN blocks, Open filehandles, Forking pipe open() not yet implemented,
1828 Global state maintained by XSUBs, Interpreter embedded in larger
1829 application, Thread-safety of extensions
1830
1831 =back
1832
1833 =item BUGS
1834
1835 =item AUTHOR
1836
1837 =item SEE ALSO
1838
1839 =back
1840
1841 =head2 perlnumber - semantics of numbers and numeric operations in Perl
1842
1843 =over 4
1844
1845 =item SYNOPSIS
1846
1847 =item DESCRIPTION
1848
1849 =item Storing numbers
1850
1851 =item Numeric operators and numeric conversions
1852
1853 =item Flavors of Perl numeric operations
1854
1855 Arithmetic operators except, C<no integer>, Arithmetic operators except,
1856 C<use integer>, Bitwise operators, C<no integer>, Bitwise operators, C<use
1857 integer>, Operators which expect an integer, Operators which expect a
1858 string
1859
1860 =item AUTHOR
1861
1862 =item SEE ALSO
1863
1864 =back
1865
1866 =head2 perlthrtut - tutorial on threads in Perl
1867
1868 =over 4
1869
1870 =item DESCRIPTION
1871
1872 =item Status
1873
1874 =item What Is A Thread Anyway?
1875
1876 =item Threaded Program Models
1877
1878 =over 4
1879
1880 =item Boss/Worker
1881
1882 =item Work Crew
1883
1884 =item Pipeline
1885
1886 =back
1887
1888 =item Native threads
1889
1890 =item What kind of threads are Perl threads?
1891
1892 =item Threadsafe Modules
1893
1894 =item Thread Basics
1895
1896 =over 4
1897
1898 =item Basic Thread Support
1899
1900 =item A Note about the Examples
1901
1902 =item Creating Threads
1903
1904 =item Giving up control
1905
1906 =item Waiting For A Thread To Exit
1907
1908 =item Ignoring A Thread
1909
1910 =back
1911
1912 =item Threads And Data
1913
1914 =over 4
1915
1916 =item Shared And Unshared Data
1917
1918 =item Thread Pitfalls: Races
1919
1920 =back
1921
1922 =item Synchronization and control
1923
1924 =over 4
1925
1926 =item Controlling access: lock()
1927
1928 =item A Thread Pitfall: Deadlocks
1929
1930 =item Queues: Passing Data Around
1931
1932 =item Semaphores: Synchronizing Data Access
1933
1934 =item Basic semaphores
1935
1936 =item Advanced Semaphores
1937
1938 =item cond_wait() and cond_signal()
1939
1940 =back
1941
1942 =item General Thread Utility Routines
1943
1944 =over 4
1945
1946 =item What Thread Am I In?
1947
1948 =item Thread IDs
1949
1950 =item Are These Threads The Same?
1951
1952 =item What Threads Are Running?
1953
1954 =back
1955
1956 =item A Complete Example
1957
1958 =item Performance considerations
1959
1960 =item Threadsafety of System Libraries
1961
1962 =item Conclusion
1963
1964 =item Bibliography
1965
1966 =over 4
1967
1968 =item Introductory Texts
1969
1970 =item OS-Related References
1971
1972 =item Other References
1973
1974 =back
1975
1976 =item Acknowledgements
1977
1978 =item AUTHOR
1979
1980 =item Copyrights
1981
1982 =back
1983
1984 =head2 perlothrtut - old tutorial on threads in Perl
1985
1986 =over 4
1987
1988 =item DESCRIPTION
1989
1990 =item What Is A Thread Anyway?
1991
1992 =item Threaded Program Models
1993
1994 =over 4
1995
1996 =item Boss/Worker
1997
1998 =item Work Crew
1999
2000 =item Pipeline
2001
2002 =back
2003
2004 =item Native threads
2005
2006 =item What kind of threads are perl threads?
2007
2008 =item Threadsafe Modules
2009
2010 =item Thread Basics
2011
2012 =over 4
2013
2014 =item Basic Thread Support
2015
2016 =item Creating Threads
2017
2018 =item Giving up control
2019
2020 =item Waiting For A Thread To Exit
2021
2022 =item Errors In Threads
2023
2024 =item Ignoring A Thread
2025
2026 =back
2027
2028 =item Threads And Data
2029
2030 =over 4
2031
2032 =item Shared And Unshared Data
2033
2034 =item Thread Pitfall: Races
2035
2036 =item Controlling access: lock()
2037
2038 =item Thread Pitfall: Deadlocks
2039
2040 =item Queues: Passing Data Around
2041
2042 =back
2043
2044 =item Threads And Code
2045
2046 =over 4
2047
2048 =item Semaphores: Synchronizing Data Access
2049
2050 Basic semaphores, Advanced Semaphores
2051
2052 =item Attributes: Restricting Access To Subroutines
2053
2054 =item Subroutine Locks
2055
2056 =item Methods
2057
2058 =item Locking A Subroutine
2059
2060 =back
2061
2062 =item General Thread Utility Routines
2063
2064 =over 4
2065
2066 =item What Thread Am I In?
2067
2068 =item Thread IDs
2069
2070 =item Are These Threads The Same?
2071
2072 =item What Threads Are Running?
2073
2074 =back
2075
2076 =item A Complete Example
2077
2078 =item Conclusion
2079
2080 =item Bibliography
2081
2082 =over 4
2083
2084 =item Introductory Texts
2085
2086 =item OS-Related References
2087
2088 =item Other References
2089
2090 =back
2091
2092 =item Acknowledgements
2093
2094 =item AUTHOR
2095
2096 =item Copyrights
2097
2098 =back
2099
2100 =head2 perlport - Writing portable Perl
2101
2102 =over 4
2103
2104 =item DESCRIPTION
2105
2106 Not all Perl programs have to be portable, Nearly all of Perl already I<is>
2107 portable
2108
2109 =item ISSUES
2110
2111 =over 4
2112
2113 =item Newlines
2114
2115 =item Numbers endianness and Width
2116
2117 =item Files and Filesystems
2118
2119 =item System Interaction
2120
2121 =item Command names versus file pathnames
2122
2123 =item Interprocess Communication (IPC)
2124
2125 =item External Subroutines (XS)
2126
2127 =item Standard Modules
2128
2129 =item Time and Date
2130
2131 =item Character sets and character encoding
2132
2133 =item Internationalisation
2134
2135 =item System Resources
2136
2137 =item Security
2138
2139 =item Style
2140
2141 =back
2142
2143 =item CPAN Testers
2144
2145 Mailing list: cpan-testers@perl.org, Testing results:
2146 http://testers.cpan.org/
2147
2148 =item PLATFORMS
2149
2150 =over 4
2151
2152 =item Unix
2153
2154 =item DOS and Derivatives
2155
2156 =item S<Mac OS>
2157
2158 =item VMS
2159
2160 =item VOS
2161
2162 =item EBCDIC Platforms
2163
2164 =item Acorn RISC OS
2165
2166 =item Other perls
2167
2168 =back
2169
2170 =item FUNCTION IMPLEMENTATIONS
2171
2172 =over 4
2173
2174 =item Alphabetical Listing of Perl Functions
2175
2176 -I<X> FILEHANDLE, -I<X> EXPR, -I<X>, alarm SECONDS, alarm, binmode
2177 FILEHANDLE, chmod LIST, chown LIST, chroot FILENAME, chroot, crypt
2178 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MODE, dump LABEL, exec
2179 LIST, exit EXPR, exit, fcntl FILEHANDLE,FUNCTION,SCALAR, flock
2180 FILEHANDLE,OPERATION, fork, getlogin, getpgrp PID, getppid, getpriority
2181 WHICH,WHO, getpwnam NAME, getgrnam NAME, getnetbyname NAME, getpwuid UID,
2182 getgrgid GID, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
2183 getservbyport PORT,PROTO, getpwent, getgrent, gethostent, getnetent,
2184 getprotoent, getservent, sethostent STAYOPEN, setnetent STAYOPEN,
2185 setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent, endhostent,
2186 endnetent, endprotoent, endservent, getsockopt SOCKET,LEVEL,OPTNAME, glob
2187 EXPR, glob, ioctl FILEHANDLE,FUNCTION,SCALAR, kill SIGNAL, LIST, link
2188 OLDFILE,NEWFILE, lstat FILEHANDLE, lstat EXPR, lstat, msgctl ID,CMD,ARG,
2189 msgget KEY,FLAGS, msgsnd ID,MSG,FLAGS, msgrcv ID,VAR,SIZE,TYPE,FLAGS, open
2190 FILEHANDLE,EXPR, open FILEHANDLE, pipe READHANDLE,WRITEHANDLE, readlink
2191 EXPR, readlink, select RBITS,WBITS,EBITS,TIMEOUT, semctl ID,SEMNUM,CMD,ARG,
2192 semget KEY,NSEMS,FLAGS, semop KEY,OPSTRING, setgrent, setpgrp PID,PGRP,
2193 setpriority WHICH,WHO,PRIORITY, setpwent, setsockopt
2194 SOCKET,LEVEL,OPTNAME,OPTVAL, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS,
2195 shmread ID,VAR,POS,SIZE, shmwrite ID,STRING,POS,SIZE, sockatmark SOCKET,
2196 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, stat FILEHANDLE, stat
2197 EXPR, stat, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
2198 FILEHANDLE,FILENAME,MODE,PERMS, system LIST, times, truncate
2199 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, umask EXPR, umask, utime LIST,
2200 wait, waitpid PID,FLAGS
2201
2202 =back
2203
2204 =item CHANGES
2205
2206 v1.48, 02 February 2001, v1.47, 22 March 2000, v1.46, 12 February 2000,
2207 v1.45, 20 December 1999, v1.44, 19 July 1999, v1.43, 24 May 1999, v1.42, 22
2208 May 1999, v1.41, 19 May 1999, v1.40, 11 April 1999, v1.39, 11 February
2209 1999, v1.38, 31 December 1998, v1.37, 19 December 1998, v1.36, 9 September
2210 1998, v1.35, 13 August 1998, v1.33, 06 August 1998, v1.32, 05 August 1998,
2211 v1.30, 03 August 1998, v1.23, 10 July 1998
2212
2213 =item Supported Platforms
2214
2215 =item SEE ALSO
2216
2217 =item AUTHORS / CONTRIBUTORS
2218
2219 =back
2220
2221 =head2 perllocale - Perl locale handling (internationalization and
2222 localization)
2223
2224 =over 4
2225
2226 =item DESCRIPTION
2227
2228 =item PREPARING TO USE LOCALES
2229
2230 =item USING LOCALES
2231
2232 =over 4
2233
2234 =item The use locale pragma
2235
2236 =item The setlocale function
2237
2238 =item Finding locales
2239
2240 =item LOCALE PROBLEMS
2241
2242 =item Temporarily fixing locale problems
2243
2244 =item Permanently fixing locale problems
2245
2246 =item Permanently fixing your system's locale configuration
2247
2248 =item Fixing system locale configuration
2249
2250 =item The localeconv function
2251
2252 =item I18N::Langinfo
2253
2254 =back
2255
2256 =item LOCALE CATEGORIES
2257
2258 =over 4
2259
2260 =item Category LC_COLLATE: Collation
2261
2262 =item Category LC_CTYPE: Character Types
2263
2264 =item Category LC_NUMERIC: Numeric Formatting
2265
2266 =item Category LC_MONETARY: Formatting of monetary amounts
2267
2268 =item LC_TIME
2269
2270 =item Other categories
2271
2272 =back
2273
2274 =item SECURITY
2275
2276 =item ENVIRONMENT
2277
2278 PERL_BADLANG, LC_ALL, LANGUAGE, LC_CTYPE, LC_COLLATE, LC_MONETARY,
2279 LC_NUMERIC, LC_TIME, LANG
2280
2281 =item NOTES
2282
2283 =over 4
2284
2285 =item Backward compatibility
2286
2287 =item I18N:Collate obsolete
2288
2289 =item Sort speed and memory use impacts
2290
2291 =item write() and LC_NUMERIC
2292
2293 =item Freely available locale definitions
2294
2295 =item I18n and l10n
2296
2297 =item An imperfect standard
2298
2299 =back
2300
2301 =item Unicode and UTF-8
2302
2303 =item BUGS
2304
2305 =over 4
2306
2307 =item Broken systems
2308
2309 =back
2310
2311 =item SEE ALSO
2312
2313 =item HISTORY
2314
2315 =back
2316
2317 =head2 perluniintro - Perl Unicode introduction
2318
2319 =over 4
2320
2321 =item DESCRIPTION
2322
2323 =over 4
2324
2325 =item Unicode
2326
2327 =item Perl's Unicode Support
2328
2329 =item Perl's Unicode Model
2330
2331 =item Unicode and EBCDIC
2332
2333 =item Creating Unicode
2334
2335 =item Handling Unicode
2336
2337 =item Legacy Encodings
2338
2339 =item Unicode I/O
2340
2341 =item Displaying Unicode As Text
2342
2343 =item Special Cases
2344
2345 =item Advanced Topics
2346
2347 =item Miscellaneous
2348
2349 =item Questions With Answers
2350
2351 =item Hexadecimal Notation
2352
2353 =item Further Resources
2354
2355 =back
2356
2357 =item UNICODE IN OLDER PERLS
2358
2359 =item SEE ALSO
2360
2361 =item ACKNOWLEDGMENTS
2362
2363 =item AUTHOR, COPYRIGHT, AND LICENSE
2364
2365 =back
2366
2367 =head2 perlunicode - Unicode support in Perl
2368
2369 =over 4
2370
2371 =item DESCRIPTION
2372
2373 =over 4
2374
2375 =item Important Caveats
2376
2377 Input and Output Disciplines, Regular Expressions, C<use utf8> still needed
2378 to enable UTF-8/UTF-EBCDIC in scripts
2379
2380 =item Byte and Character Semantics
2381
2382 =item Effects of Character Semantics
2383
2384 =item Scripts
2385
2386 =item Blocks
2387
2388 =item User-Defined Character Properties
2389
2390 =item Character Encodings for Input and Output
2391
2392 =item Unicode Regular Expression Support Level
2393
2394 =item Unicode Encodings
2395
2396 =item Security Implications of Unicode
2397
2398 =item Unicode in Perl on EBCDIC
2399
2400 =item Locales
2401
2402 =item Using Unicode in XS
2403
2404 =back
2405
2406 =item BUGS
2407
2408 =over 4
2409
2410 =item Interaction with Locales
2411
2412 =item Interaction with Extensions
2413
2414 =item Speed
2415
2416 =back
2417
2418 =item SEE ALSO
2419
2420 =back
2421
2422 =head2 perlebcdic - Considerations for running Perl on EBCDIC platforms
2423
2424 =over 4
2425
2426 =item DESCRIPTION
2427
2428 =item COMMON CHARACTER CODE SETS
2429
2430 =over 4
2431
2432 =item ASCII
2433
2434 =item ISO 8859
2435
2436 =item Latin 1 (ISO 8859-1)
2437
2438 =item EBCDIC
2439
2440 =item 13 variant characters
2441
2442 =item 0037
2443
2444 =item 1047
2445
2446 =item POSIX-BC
2447
2448 =item Unicode code points versus EBCDIC code points
2449
2450 =item Remaining Perl Unicode problems in EBCDIC
2451
2452 =item Unicode and UTF
2453
2454 =item Using Encode
2455
2456 =back
2457
2458 =item SINGLE OCTET TABLES
2459
2460 recipe 0, recipe 1, recipe 2, recipe 3, recipe 4, recipe 5, recipe 6
2461
2462 =item IDENTIFYING CHARACTER CODE SETS
2463
2464 =item CONVERSIONS
2465
2466 =over 4
2467
2468 =item tr///
2469
2470 =item iconv
2471
2472 =item C RTL
2473
2474 =back
2475
2476 =item OPERATOR DIFFERENCES
2477
2478 =item FUNCTION DIFFERENCES
2479
2480 chr(), ord(), pack(), print(), printf(), sort(), sprintf(), unpack()
2481
2482 =item REGULAR EXPRESSION DIFFERENCES
2483
2484 =item SOCKETS
2485
2486 =item SORTING
2487
2488 =over 4
2489
2490 =item Ignore ASCII vs. EBCDIC sort differences.
2491
2492 =item MONO CASE then sort data.
2493
2494 =item Convert, sort data, then re convert.
2495
2496 =item Perform sorting on one type of machine only.
2497
2498 =back
2499
2500 =item TRANSFORMATION FORMATS
2501
2502 =over 4
2503
2504 =item URL decoding and encoding
2505
2506 =item uu encoding and decoding
2507
2508 =item Quoted-Printable encoding and decoding
2509
2510 =item Caesarian ciphers
2511
2512 =back
2513
2514 =item Hashing order and checksums
2515
2516 =item I18N AND L10N
2517
2518 =item MULTI OCTET CHARACTER SETS
2519
2520 =item OS ISSUES
2521
2522 =over 4
2523
2524 =item OS/400 
2525
2526 IFS access
2527
2528 =item OS/390, z/OS
2529
2530 chcp, dataset access, OS/390, z/OS iconv, locales
2531
2532 =item VM/ESA?
2533
2534 =item POSIX-BC?
2535
2536 =back
2537
2538 =item BUGS
2539
2540 =item SEE ALSO
2541
2542 =item REFERENCES
2543
2544 =item HISTORY
2545
2546 =item AUTHOR
2547
2548 =back
2549
2550 =head2 perlsec - Perl security
2551
2552 =over 4
2553
2554 =item DESCRIPTION
2555
2556 =over 4
2557
2558 =item Laundering and Detecting Tainted Data
2559
2560 =item Switches On the "#!" Line
2561
2562 =item Cleaning Up Your Path
2563
2564 =item Security Bugs
2565
2566 =item Protecting Your Programs
2567
2568 =item Unicode
2569
2570 =back
2571
2572 =item SEE ALSO
2573
2574 =back
2575
2576 =head2 perlmod - Perl modules (packages and symbol tables)
2577
2578 =over 4
2579
2580 =item DESCRIPTION
2581
2582 =over 4
2583
2584 =item Packages
2585
2586 =item Symbol Tables
2587
2588 =item Package Constructors and Destructors
2589
2590 =item Perl Classes
2591
2592 =item Perl Modules
2593
2594 =item Making your module threadsafe
2595
2596 =back
2597
2598 =item SEE ALSO
2599
2600 =back
2601
2602 =head2 perlmodinstall - Installing CPAN Modules
2603
2604 =over 4
2605
2606 =item DESCRIPTION
2607
2608 =over 4
2609
2610 =item PREAMBLE
2611
2612 B<DECOMPRESS> the file, B<UNPACK> the file into a directory, B<BUILD> the
2613 module (sometimes unnecessary), B<INSTALL> the module
2614
2615 =back
2616
2617 =item PORTABILITY
2618
2619 =item HEY
2620
2621 =item AUTHOR
2622
2623 =item COPYRIGHT
2624
2625 =back
2626
2627 =head2 perlmodlib - constructing new Perl modules and finding existing ones
2628
2629 =over 4
2630
2631 =item DESCRIPTION
2632
2633 =item THE PERL MODULE LIBRARY
2634
2635 =over 4
2636
2637 =item Pragmatic Modules
2638
2639 attributes, attrs, autouse, base, bigint, bignum, bigrat, blib, bytes,
2640 charnames, constant, diagnostics, encoding, fields, filetest, if, integer,
2641 less, locale, open, ops, overload, re, sigtrap, sort, strict, subs,
2642 threads, utf8, vars, vmsish, warnings, warnings::register
2643
2644 =item Standard Modules
2645
2646 AnyDBM_File, Attribute::Handlers, AutoLoader, AutoSplit, B, B::Asmdata,
2647 B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC, B::Concise, B::Debug,
2648 B::Deparse, B::Disassembler, B::Lint, B::Showlex, B::Stackobj, B::Stash,
2649 B::Terse, B::Xref, Benchmark, ByteLoader, CGI, CGI::Apache, CGI::Carp,
2650 CGI::Cookie, CGI::Fast, CGI::Pretty, CGI::Push, CGI::Switch, CGI::Util,
2651 CPAN, CPAN::FirstTime, CPAN::Nox, Carp, Carp::Heavy, Class::ISA,
2652 Class::Struct, Config, Cwd, DB, DB_File, Devel::SelfStubber, Digest,
2653 DirHandle, Dumpvalue, Encode, English, Env, Errno, Exporter,
2654 Exporter::Heavy, ExtUtils::Command, ExtUtils::Command::MM,
2655 ExtUtils::Constant, ExtUtils::Embed, ExtUtils::Install,
2656 ExtUtils::Installed, ExtUtils::Liblist, ExtUtils::MM, ExtUtils::MM_Any,
2657 ExtUtils::MM_BeOS, ExtUtils::MM_Cygwin, ExtUtils::MM_DOS,
2658 ExtUtils::MM_MacOS, ExtUtils::MM_NW5, ExtUtils::MM_OS2, ExtUtils::MM_UWIN,
2659 ExtUtils::MM_Unix, ExtUtils::MM_VMS, ExtUtils::MM_Win32,
2660 ExtUtils::MM_Win95, ExtUtils::MY, ExtUtils::MakeMaker, ExtUtils::Manifest,
2661 ExtUtils::Mkbootstrap, ExtUtils::Mksymlists, ExtUtils::Packlist,
2662 ExtUtils::testlib, Fatal, Fcntl, File::Basename, File::CheckTree,
2663 File::Compare, File::Copy, File::DosGlob, File::Find, File::Path,
2664 File::Spec, File::Spec::Cygwin, File::Spec::Epoc, File::Spec::Functions,
2665 File::Spec::Mac, File::Spec::NW5, File::Spec::OS2, File::Spec::Unix,
2666 File::Spec::VMS, File::Spec::Win32, File::Temp, File::stat, FileCache,
2667 FileHandle, Filter::Simple, FindBin, Getopt::Long, Getopt::Std, Hash::Util,
2668 I18N::Collate, I18N::LangTags, I18N::LangTags::List, IO, IPC::Open2,
2669 IPC::Open3, Locale::Constants, Locale::Country, Locale::Currency,
2670 Locale::Language, Locale::Maketext, Locale::Maketext::TPJ13,
2671 Locale::Script, Math::BigFloat, Math::BigInt, Math::BigInt::Calc,
2672 Math::BigRat, Math::Complex, Math::Trig, Memoize, Memoize::AnyDBM_File,
2673 Memoize::Expire, Memoize::ExpireFile, Memoize::ExpireTest,
2674 Memoize::NDBM_File, Memoize::SDBM_File, Memoize::Storable, NDBM_File, NEXT,
2675 Net::Cmd, Net::Config, Net::Domain, Net::FTP, Net::NNTP, Net::Netrc,
2676 Net::POP3, Net::Ping, Net::SMTP, Net::Time, Net::hostent, Net::libnetFAQ,
2677 Net::netent, Net::protoent, Net::servent, O, ODBM_File, Opcode, POSIX,
2678 PerlIO, Pod::Checker, Pod::Find, Pod::Functions, Pod::Html,
2679 Pod::InputObjects, Pod::LaTeX, Pod::Man, Pod::ParseLink, Pod::ParseUtils,
2680 Pod::Parser, Pod::Plainer, Pod::Select, Pod::Text, Pod::Text::Color,
2681 Pod::Text::Overstrike, Pod::Text::Termcap, Pod::Usage, SDBM_File, Safe,
2682 Search::Dict, SelectSaver, SelfLoader, Shell, Socket, Storable, Switch,
2683 Symbol, Term::ANSIColor, Term::Cap, Term::Complete, Term::ReadLine, Test,
2684 Test::Builder, Test::Harness, Test::Harness::Assert,
2685 Test::Harness::Iterator, Test::Harness::Straps, Test::More, Test::Simple,
2686 Test::Tutorial, Text::Abbrev, Text::Balanced, Text::ParseWords,
2687 Text::Soundex, Text::Tabs, Text::Wrap, Thread, Thread::Queue,
2688 Thread::Semaphore, Tie::Array, Tie::File, Tie::Handle, Tie::Hash,
2689 Tie::Memoize, Tie::RefHash, Tie::Scalar, Tie::SubstrHash, Time::Local,
2690 Time::gmtime, Time::localtime, Time::tm, UNIVERSAL, Unicode::Collate,
2691 Unicode::UCD, User::grent, User::pwent, Win32
2692
2693 =item Extension Modules
2694
2695 =back
2696
2697 =item CPAN
2698
2699 =over 4
2700
2701 =item Africa
2702
2703 =item Asia
2704
2705 =item Central America
2706
2707 =item Europe
2708
2709 =item North America
2710
2711 =item Oceania
2712
2713 =item South America
2714
2715 =back
2716
2717 =item Modules: Creation, Use, and Abuse
2718
2719 =over 4
2720
2721 =item Guidelines for Module Creation
2722
2723 =item Guidelines for Converting Perl 4 Library Scripts into Modules
2724
2725 =item Guidelines for Reusing Application Code
2726
2727 =back
2728
2729 =item NOTE
2730
2731 =back
2732
2733 =head2 perlmodstyle - Perl module style guide
2734
2735 =over 4
2736
2737 =item INTRODUCTION
2738
2739 =item QUICK CHECKLIST
2740
2741 =over 4
2742
2743 =item Before you start
2744
2745 =item The API
2746
2747 =item Stability
2748
2749 =item Documentation
2750
2751 =item Release considerations
2752
2753 =back
2754
2755 =item BEFORE YOU START WRITING A MODULE
2756
2757 =over 4
2758
2759 =item Has it been done before?
2760
2761 =item Do one thing and do it well
2762
2763 =item What's in a name?
2764
2765 =back
2766
2767 =item DESIGNING AND WRITING YOUR MODULE
2768
2769 =over 4
2770
2771 =item To OO or not to OO?
2772
2773 =item Designing your API
2774
2775 Write simple routines to do simple things, Separate functionality from
2776 output, Provide sensible shortcuts and defaults, Naming conventions,
2777 Parameter passing
2778
2779 =item Strictness and warnings
2780
2781 =item Backwards compatibility
2782
2783 =item Error handling and messages
2784
2785 =back
2786
2787 =item DOCUMENTING YOUR MODULE
2788
2789 =over 4
2790
2791 =item POD
2792
2793 =item README, INSTALL, release notes, changelogs
2794
2795 =back
2796
2797 =item RELEASE CONSIDERATIONS
2798
2799 =over 4
2800
2801 =item Version numbering
2802
2803 =item Pre-requisites
2804
2805 =item Testing
2806
2807 =item Packaging
2808
2809 =item Licensing
2810
2811 =back
2812
2813 =item COMMON PITFALLS
2814
2815 =over 4
2816
2817 =item Reinventing the wheel
2818
2819 =item Trying to do too much
2820
2821 =item Inappropriate documentation
2822
2823 =back
2824
2825 =item SEE ALSO
2826
2827 L<perlstyle>, L<perlnewmod>, L<perlpod>, L<podchecker>, Testing tools,
2828 http://pause.perl.org/, Any good book on software engineering
2829
2830 =item AUTHOR
2831
2832 =back
2833
2834 =head2 perlnewmod - preparing a new module for distribution
2835
2836 =over 4
2837
2838 =item DESCRIPTION
2839
2840 =over 4
2841
2842 =item Warning
2843
2844 =item What should I make into a module?
2845
2846 =item Step-by-step: Preparing the ground
2847
2848 Look around, Check it's new, Discuss the need, Choose a name, Check again
2849
2850 =item Step-by-step: Making the module
2851
2852 Start with F<h2xs>, Use L<strict|strict> and L<warnings|warnings>, Use
2853 L<Carp|Carp>, Use L<Exporter|Exporter> - wisely!, Use L<plain old
2854 documentation|perlpod>, Write tests, Write the README
2855
2856 =item Step-by-step: Distributing your module
2857
2858 Get a CPAN user ID, C<perl Makefile.PL; make test; make dist>, Upload the
2859 tarball, Announce to the modules list, Announce to clpa, Fix bugs!
2860
2861 =back
2862
2863 =item AUTHOR
2864
2865 =item SEE ALSO
2866
2867 =back
2868
2869 =head2 perlfaq1 - General Questions About Perl ($Revision: 1.8 $, $Date:
2870 2002/04/07 18:46:13 $)
2871
2872 =over 4
2873
2874 =item DESCRIPTION
2875
2876 =over 4
2877
2878 =item What is Perl?
2879
2880 =item Who supports Perl?  Who develops it?  Why is it free?
2881
2882 =item Which version of Perl should I use?
2883
2884 =item What are perl4 and perl5?
2885
2886 =item What is perl6?
2887
2888 =item How stable is Perl?
2889
2890 =item Is Perl difficult to learn?
2891
2892 =item How does Perl compare with other languages like Java, Python, REXX,
2893 Scheme, or Tcl?
2894
2895 =item Can I do [task] in Perl?
2896
2897 =item When shouldn't I program in Perl?
2898
2899 =item What's the difference between "perl" and "Perl"?
2900
2901 =item Is it a Perl program or a Perl script?
2902
2903 =item What is a JAPH?
2904
2905 =item Where can I get a list of Larry Wall witticisms?
2906
2907 =item How can I convince my sysadmin/supervisor/employees to use version
2908 5/5.6.1/Perl instead of some other language?
2909
2910 =back
2911
2912 =item AUTHOR AND COPYRIGHT
2913
2914 =back
2915
2916 =head2 perlfaq2 - Obtaining and Learning about Perl ($Revision: 1.13 $,
2917 $Date: 2002/04/26 16:56:35 $)
2918
2919 =over 4
2920
2921 =item DESCRIPTION
2922
2923 =over 4
2924
2925 =item What machines support Perl?  Where do I get it?
2926
2927 =item How can I get a binary version of Perl?
2928
2929 =item I don't have a C compiler on my system.  How can I compile perl?
2930
2931 =item I copied the Perl binary from one machine to another, but scripts
2932 don't work.
2933
2934 =item I grabbed the sources and tried to compile but gdbm/dynamic
2935 loading/malloc/linking/... failed.  How do I make it work?
2936
2937 =item What modules and extensions are available for Perl?  What is CPAN? 
2938 What does CPAN/src/... mean?
2939
2940 =item Is there an ISO or ANSI certified version of Perl?
2941
2942 =item Where can I get information on Perl?
2943
2944 =item What are the Perl newsgroups on Usenet?  Where do I post questions?
2945
2946 =item Where should I post source code?
2947
2948 =item Perl Books
2949
2950 References, Tutorials, Task-Oriented, Special Topics
2951
2952 =item Perl in Magazines
2953
2954 =item Perl on the Net: FTP and WWW Access
2955
2956 =item What mailing lists are there for Perl?
2957
2958 =item Archives of comp.lang.perl.misc
2959
2960 =item Where can I buy a commercial version of Perl?
2961
2962 =item Where do I send bug reports?
2963
2964 =item What is perl.com? Perl Mongers? pm.org? perl.org? cpan.org?
2965
2966 =back
2967
2968 =item AUTHOR AND COPYRIGHT
2969
2970 =back
2971
2972 =head2 perlfaq3 - Programming Tools ($Revision: 1.22 $, $Date: 2002/05/06
2973 13:11:13 $)
2974
2975 =over 4
2976
2977 =item DESCRIPTION
2978
2979 =over 4
2980
2981 =item How do I do (anything)?
2982
2983 =item How can I use Perl interactively?
2984
2985 =item Is there a Perl shell?
2986
2987 =item How do I debug my Perl programs?
2988
2989 =item How do I profile my Perl programs?
2990
2991 =item How do I cross-reference my Perl programs?
2992
2993 =item Is there a pretty-printer (formatter) for Perl?
2994
2995 =item Is there a ctags for Perl?
2996
2997 =item Is there an IDE or Windows Perl Editor?
2998
2999 Komodo, The Object System, Open Perl IDE, PerlBuilder, visiPerl+, OptiPerl,
3000 CodeMagicCD, GNU Emacs, MicroEMACS, XEmacs, Elvis, Vile, Vim, Codewright,
3001 MultiEdit, SlickEdit, Bash, Ksh, Tcsh, Zsh, BBEdit and BBEdit Lite, Alpha
3002
3003 =item Where can I get Perl macros for vi?
3004
3005 =item Where can I get perl-mode for emacs?
3006
3007 =item How can I use curses with Perl?
3008
3009 =item How can I use X or Tk with Perl?
3010
3011 =item How can I generate simple menus without using CGI or Tk?
3012
3013 =item How can I make my Perl program run faster?
3014
3015 =item How can I make my Perl program take less memory?
3016
3017 Don't slurp!, Use map and grep selectively, Avoid unnecessary quotes and
3018 stringification, Pass by reference, Tie large variables to disk
3019
3020 =item Is it unsafe to return a pointer to local data?
3021
3022 =item How can I free an array or hash so my program shrinks?
3023
3024 =item How can I make my CGI script more efficient?
3025
3026 =item How can I hide the source for my Perl program?
3027
3028 =item How can I compile my Perl program into byte code or C?
3029
3030 =item How can I compile Perl into Java?
3031
3032 =item How can I get C<#!perl> to work on [MS-DOS,NT,...]?
3033
3034 =item Can I write useful Perl programs on the command line?
3035
3036 =item Why don't Perl one-liners work on my DOS/Mac/VMS system?
3037
3038 =item Where can I learn about CGI or Web programming in Perl?
3039
3040 =item Where can I learn about object-oriented Perl programming?
3041
3042 =item Where can I learn about linking C with Perl? [h2xs, xsubpp]
3043
3044 =item I've read perlembed, perlguts, etc., but I can't embed perl in
3045 my C program; what am I doing wrong?
3046
3047 =item When I tried to run my script, I got this message. What does it mean?
3048
3049 =item What's MakeMaker?
3050
3051 =back
3052
3053 =item AUTHOR AND COPYRIGHT
3054
3055 =back
3056
3057 =head2 perlfaq4 - Data Manipulation ($Revision: 1.25 $, $Date: 2002/05/30
3058 07:04:25 $)
3059
3060 =over 4
3061
3062 =item DESCRIPTION
3063
3064 =item Data: Numbers
3065
3066 =over 4
3067
3068 =item Why am I getting long decimals (eg, 19.9499999999999) instead of the
3069 numbers I should be getting (eg, 19.95)?
3070
3071 =item Why isn't my octal data interpreted correctly?
3072
3073 =item Does Perl have a round() function?  What about ceil() and floor()? 
3074 Trig functions?
3075
3076 =item How do I convert between numeric representations?
3077
3078 How do I convert hexadecimal into decimal, How do I convert from decimal to
3079 hexadecimal, How do I convert from octal to decimal, How do I convert from
3080 decimal to octal, How do I convert from binary to decimal, How do I convert
3081 from decimal to binary
3082
3083 =item Why doesn't & work the way I want it to?
3084
3085 =item How do I multiply matrices?
3086
3087 =item How do I perform an operation on a series of integers?
3088
3089 =item How can I output Roman numerals?
3090
3091 =item Why aren't my random numbers random?
3092
3093 =item How do I get a random number between X and Y?
3094
3095 =back
3096
3097 =item Data: Dates
3098
3099 =over 4
3100
3101 =item How do I find the week-of-the-year/day-of-the-year?
3102
3103 =item How do I find the current century or millennium?
3104
3105 =item How can I compare two dates and find the difference?
3106
3107 =item How can I take a string and turn it into epoch seconds?
3108
3109 =item How can I find the Julian Day?
3110
3111 =item How do I find yesterday's date?
3112
3113 =item Does Perl have a Year 2000 problem?  Is Perl Y2K compliant?
3114
3115 =back
3116
3117 =item Data: Strings
3118
3119 =over 4
3120
3121 =item How do I validate input?
3122
3123 =item How do I unescape a string?
3124
3125 =item How do I remove consecutive pairs of characters?
3126
3127 =item How do I expand function calls in a string?
3128
3129 =item How do I find matching/nesting anything?
3130
3131 =item How do I reverse a string?
3132
3133 =item How do I expand tabs in a string?
3134
3135 =item How do I reformat a paragraph?
3136
3137 =item How can I access/change the first N letters of a string?
3138
3139 =item How do I change the Nth occurrence of something?
3140
3141 =item How can I count the number of occurrences of a substring within a
3142 string?
3143
3144 =item How do I capitalize all the words on one line?
3145
3146 =item How can I split a [character] delimited string except when inside
3147 [character]? (Comma-separated files)
3148
3149 =item How do I strip blank space from the beginning/end of a string?
3150
3151 =item How do I pad a string with blanks or pad a number with zeroes?
3152
3153 =item How do I extract selected columns from a string?
3154
3155 =item How do I find the soundex value of a string?
3156
3157 =item How can I expand variables in text strings?
3158
3159 =item What's wrong with always quoting "$vars"?
3160
3161 =item Why don't my <<HERE documents work?
3162
3163 1. There must be no space after the << part, 2. There (probably) should be
3164 a semicolon at the end, 3. You can't (easily) have any space in front of
3165 the tag
3166
3167 =back
3168
3169 =item Data: Arrays
3170
3171 =over 4
3172
3173 =item What is the difference between a list and an array?
3174
3175 =item What is the difference between $array[1] and @array[1]?
3176
3177 =item How can I remove duplicate elements from a list or array?
3178
3179 a), b), c), d), e)
3180
3181 =item How can I tell whether a certain element is contained in a list or
3182 array?
3183
3184 =item How do I compute the difference of two arrays?  How do I compute the
3185 intersection of two arrays?
3186
3187 =item How do I test whether two arrays or hashes are equal?
3188
3189 =item How do I find the first array element for which a condition is true?
3190
3191 =item How do I handle linked lists?
3192
3193 =item How do I handle circular lists?
3194
3195 =item How do I shuffle an array randomly?
3196
3197 =item How do I process/modify each element of an array?
3198
3199 =item How do I select a random element from an array?
3200
3201 =item How do I permute N elements of a list?
3202
3203 =item How do I sort an array by (anything)?
3204
3205 =item How do I manipulate arrays of bits?
3206
3207 =item Why does defined() return true on empty arrays and hashes?
3208
3209 =back
3210
3211 =item Data: Hashes (Associative Arrays)
3212
3213 =over 4
3214
3215 =item How do I process an entire hash?
3216
3217 =item What happens if I add or remove keys from a hash while iterating over
3218 it?
3219
3220 =item How do I look up a hash element by value?
3221
3222 =item How can I know how many entries are in a hash?
3223
3224 =item How do I sort a hash (optionally by value instead of key)?
3225
3226 =item How can I always keep my hash sorted?
3227
3228 =item What's the difference between "delete" and "undef" with hashes?
3229
3230 =item Why don't my tied hashes make the defined/exists distinction?
3231
3232 =item How do I reset an each() operation part-way through?
3233
3234 =item How can I get the unique keys from two hashes?
3235
3236 =item How can I store a multidimensional array in a DBM file?
3237
3238 =item How can I make my hash remember the order I put elements into it?
3239
3240 =item Why does passing a subroutine an undefined element in a hash create
3241 it?
3242
3243 =item How can I make the Perl equivalent of a C structure/C++ class/hash or
3244 array of hashes or arrays?
3245
3246 =item How can I use a reference as a hash key?
3247
3248 =back
3249
3250 =item Data: Misc
3251
3252 =over 4
3253
3254 =item How do I handle binary data correctly?
3255
3256 =item How do I determine whether a scalar is a number/whole/integer/float?
3257
3258 =item How do I keep persistent data across program calls?
3259
3260 =item How do I print out or copy a recursive data structure?
3261
3262 =item How do I define methods for every class/object?
3263
3264 =item How do I verify a credit card checksum?
3265
3266 =item How do I pack arrays of doubles or floats for XS code?
3267
3268 =back
3269
3270 =item AUTHOR AND COPYRIGHT
3271
3272 =back
3273
3274 =head2 perlfaq5 - Files and Formats ($Revision: 1.18 $, $Date: 2002/05/30
3275 07:04:25 $)
3276
3277 =over 4
3278
3279 =item DESCRIPTION
3280
3281 =over 4
3282
3283 =item How do I flush/unbuffer an output filehandle?  Why must I do this?
3284
3285 =item How do I change one line in a file/delete a line in a file/insert a
3286 line in the middle of a file/append to the beginning of a file?
3287
3288 =item How do I count the number of lines in a file?
3289
3290 =item How do I make a temporary file name?
3291
3292 =item How can I manipulate fixed-record-length files?
3293
3294 =item How can I make a filehandle local to a subroutine?  How do I pass
3295 filehandles between subroutines?  How do I make an array of filehandles?
3296
3297 =item How can I use a filehandle indirectly?
3298
3299 =item How can I set up a footer format to be used with write()?
3300
3301 =item How can I write() into a string?
3302
3303 =item How can I output my numbers with commas added?
3304
3305 =item How can I translate tildes (~) in a filename?
3306
3307 =item How come when I open a file read-write it wipes it out?
3308
3309 =item Why do I sometimes get an "Argument list too long" when I use <*>?
3310
3311 =item Is there a leak/bug in glob()?
3312
3313 =item How can I open a file with a leading ">" or trailing blanks?
3314
3315 =item How can I reliably rename a file?
3316
3317 =item How can I lock a file?
3318
3319 =item Why can't I just open(FH, ">file.lock")?
3320
3321 =item I still don't get locking.  I just want to increment the number in
3322 the file.  How can I do this?
3323
3324 =item All I want to do is append a small amount of text to the end of a
3325 file.  Do I still have to use locking?
3326
3327 =item How do I randomly update a binary file?
3328
3329 =item How do I get a file's timestamp in perl?
3330
3331 =item How do I set a file's timestamp in perl?
3332
3333 =item How do I print to more than one file at once?
3334
3335 =item How can I read in an entire file all at once?
3336
3337 =item How can I read in a file by paragraphs?
3338
3339 =item How can I read a single character from a file?  From the keyboard?
3340
3341 =item How can I tell whether there's a character waiting on a filehandle?
3342
3343 =item How do I do a C<tail -f> in perl?
3344
3345 =item How do I dup() a filehandle in Perl?
3346
3347 =item How do I close a file descriptor by number?
3348
3349 =item Why can't I use "C:\temp\foo" in DOS paths?  Why doesn't
3350 `C:\temp\foo.exe` work?
3351
3352 =item Why doesn't glob("*.*") get all the files?
3353
3354 =item Why does Perl let me delete read-only files?  Why does C<-i> clobber
3355 protected files?  Isn't this a bug in Perl?
3356
3357 =item How do I select a random line from a file?
3358
3359 =item Why do I get weird spaces when I print an array of lines?
3360
3361 =back
3362
3363 =item AUTHOR AND COPYRIGHT
3364
3365 =back
3366
3367 =head2 perlfaq6 - Regular Expressions ($Revision: 1.12 $, $Date: 2002/06/01
3368 22:31:09 $)
3369
3370 =over 4
3371
3372 =item DESCRIPTION
3373
3374 =over 4
3375
3376 =item How can I hope to use regular expressions without creating illegible
3377 and unmaintainable code?
3378
3379 Comments Outside the Regex, Comments Inside the Regex, Different Delimiters
3380
3381 =item I'm having trouble matching over more than one line.  What's wrong?
3382
3383 =item How can I pull out lines between two patterns that are themselves on
3384 different lines?
3385
3386 =item I put a regular expression into $/ but it didn't work. What's wrong?
3387
3388 =item How do I substitute case insensitively on the LHS while preserving
3389 case on the RHS?
3390
3391 =item How can I make C<\w> match national character sets?
3392
3393 =item How can I match a locale-smart version of C</[a-zA-Z]/>?
3394
3395 =item How can I quote a variable to use in a regex?
3396
3397 =item What is C</o> really for?
3398
3399 =item How do I use a regular expression to strip C style comments from a
3400 file?
3401
3402 =item Can I use Perl regular expressions to match balanced text?
3403
3404 =item What does it mean that regexes are greedy?  How can I get around it?
3405
3406 =item How do I process each word on each line?
3407
3408 =item How can I print out a word-frequency or line-frequency summary?
3409
3410 =item How can I do approximate matching?
3411
3412 =item How do I efficiently match many regular expressions at once?
3413
3414 =item Why don't word-boundary searches with C<\b> work for me?
3415
3416 =item Why does using $&, $`, or $' slow my program down?
3417
3418 =item What good is C<\G> in a regular expression?
3419
3420 =item Are Perl regexes DFAs or NFAs?  Are they POSIX compliant?
3421
3422 =item What's wrong with using grep or map in a void context?
3423
3424 =item How can I match strings with multibyte characters?
3425
3426 =item How do I match a pattern that is supplied by the user?
3427
3428 =back
3429
3430 =item AUTHOR AND COPYRIGHT
3431
3432 =back
3433
3434 =head2 perlfaq7 - General Perl Language Issues ($Revision: 1.8 $, $Date:
3435 2002/03/26 15:48:32 $)
3436
3437 =over 4
3438
3439 =item DESCRIPTION
3440
3441 =over 4
3442
3443 =item Can I get a BNF/yacc/RE for the Perl language?
3444
3445 =item What are all these $@%&* punctuation signs, and how do I know when to
3446 use them?
3447
3448 =item Do I always/never have to quote my strings or use semicolons and
3449 commas?
3450
3451 =item How do I skip some return values?
3452
3453 =item How do I temporarily block warnings?
3454
3455 =item What's an extension?
3456
3457 =item Why do Perl operators have different precedence than C operators?
3458
3459 =item How do I declare/create a structure?
3460
3461 =item How do I create a module?
3462
3463 =item How do I create a class?
3464
3465 =item How can I tell if a variable is tainted?
3466
3467 =item What's a closure?
3468
3469 =item What is variable suicide and how can I prevent it?
3470
3471 =item How can I pass/return a {Function, FileHandle, Array, Hash, Method,
3472 Regex}?
3473
3474 Passing Variables and Functions, Passing Filehandles, Passing Regexes,
3475 Passing Methods
3476
3477 =item How do I create a static variable?
3478
3479 =item What's the difference between dynamic and lexical (static) scoping? 
3480 Between local() and my()?
3481
3482 =item How can I access a dynamic variable while a similarly named lexical
3483 is in scope?
3484
3485 =item What's the difference between deep and shallow binding?
3486
3487 =item Why doesn't "my($foo) = <FILE>;" work right?
3488
3489 =item How do I redefine a builtin function, operator, or method?
3490
3491 =item What's the difference between calling a function as &foo and foo()?
3492
3493 =item How do I create a switch or case statement?
3494
3495 =item How can I catch accesses to undefined variables/functions/methods?
3496
3497 =item Why can't a method included in this same file be found?
3498
3499 =item How can I find out my current package?
3500
3501 =item How can I comment out a large block of perl code?
3502
3503 =item How do I clear a package?
3504
3505 =item How can I use a variable as a variable name?
3506
3507 =back
3508
3509 =item AUTHOR AND COPYRIGHT
3510
3511 =back
3512
3513 =head2 perlfaq8 - System Interaction ($Revision: 1.8 $, $Date: 2002/05/16
3514 12:41:42 $)
3515
3516 =over 4
3517
3518 =item DESCRIPTION
3519
3520 =over 4
3521
3522 =item How do I find out which operating system I'm running under?
3523
3524 =item How come exec() doesn't return?
3525
3526 =item How do I do fancy stuff with the keyboard/screen/mouse?
3527
3528 Keyboard, Screen, Mouse
3529
3530 =item How do I print something out in color?
3531
3532 =item How do I read just one key without waiting for a return key?
3533
3534 =item How do I check whether input is ready on the keyboard?
3535
3536 =item How do I clear the screen?
3537
3538 =item How do I get the screen size?
3539
3540 =item How do I ask the user for a password?
3541
3542 =item How do I read and write the serial port?
3543
3544 lockfiles, open mode, end of line, flushing output, non-blocking input
3545
3546 =item How do I decode encrypted password files?
3547
3548 =item How do I start a process in the background?
3549
3550 STDIN, STDOUT, and STDERR are shared, Signals, Zombies
3551
3552 =item How do I trap control characters/signals?
3553
3554 =item How do I modify the shadow password file on a Unix system?
3555
3556 =item How do I set the time and date?
3557
3558 =item How can I sleep() or alarm() for under a second?
3559
3560 =item How can I measure time under a second?
3561
3562 =item How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
3563
3564 =item Why doesn't my sockets program work under System V (Solaris)?  What
3565 does the error message "Protocol not supported" mean?
3566
3567 =item How can I call my system's unique C functions from Perl?
3568
3569 =item Where do I get the include files to do ioctl() or syscall()?
3570
3571 =item Why do setuid perl scripts complain about kernel problems?
3572
3573 =item How can I open a pipe both to and from a command?
3574
3575 =item Why can't I get the output of a command with system()?
3576
3577 =item How can I capture STDERR from an external command?
3578
3579 =item Why doesn't open() return an error when a pipe open fails?
3580
3581 =item What's wrong with using backticks in a void context?
3582
3583 =item How can I call backticks without shell processing?
3584
3585 =item Why can't my script read from STDIN after I gave it EOF (^D on Unix,
3586 ^Z on MS-DOS)?
3587
3588 =item How can I convert my shell script to perl?
3589
3590 =item Can I use perl to run a telnet or ftp session?
3591
3592 =item How can I write expect in Perl?
3593
3594 =item Is there a way to hide perl's command line from programs such as
3595 "ps"?
3596
3597 =item I {changed directory, modified my environment} in a perl script.  How
3598 come the change disappeared when I exited the script?  How do I get my
3599 changes to be visible?
3600
3601 Unix
3602
3603 =item How do I close a process's filehandle without waiting for it to
3604 complete?
3605
3606 =item How do I fork a daemon process?
3607
3608 =item How do I find out if I'm running interactively or not?
3609
3610 =item How do I timeout a slow event?
3611
3612 =item How do I set CPU limits?
3613
3614 =item How do I avoid zombies on a Unix system?
3615
3616 =item How do I use an SQL database?
3617
3618 =item How do I make a system() exit on control-C?
3619
3620 =item How do I open a file without blocking?
3621
3622 =item How do I install a module from CPAN?
3623
3624 =item What's the difference between require and use?
3625
3626 =item How do I keep my own module/library directory?
3627
3628 =item How do I add the directory my program lives in to the module/library
3629 search path?
3630
3631 =item How do I add a directory to my include path at runtime?
3632
3633 =item What is socket.ph and where do I get it?
3634
3635 =back
3636
3637 =item AUTHOR AND COPYRIGHT
3638
3639 =back
3640
3641 =head2 perlfaq9 - Networking ($Revision: 1.9 $, $Date: 2002/04/07 18:46:13
3642 $)
3643
3644 =over 4
3645
3646 =item DESCRIPTION
3647
3648 =over 4
3649
3650 =item What is the correct form of response from a CGI script?
3651
3652 =item My CGI script runs from the command line but not the browser.  (500
3653 Server Error)
3654
3655 =item How can I get better error messages from a CGI program?
3656
3657 =item How do I remove HTML from a string?
3658
3659 =item How do I extract URLs?
3660
3661 =item How do I download a file from the user's machine?  How do I open a
3662 file on another machine?
3663
3664 =item How do I make a pop-up menu in HTML?
3665
3666 =item How do I fetch an HTML file?
3667
3668 =item How do I automate an HTML form submission?
3669
3670 =item How do I decode or create those %-encodings on the web?
3671
3672 =item How do I redirect to another page?
3673
3674 =item How do I put a password on my web pages?
3675
3676 =item How do I edit my .htpasswd and .htgroup files with Perl?
3677
3678 =item How do I make sure users can't enter values into a form that cause my
3679 CGI script to do bad things?
3680
3681 =item How do I parse a mail header?
3682
3683 =item How do I decode a CGI form?
3684
3685 =item How do I check a valid mail address?
3686
3687 =item How do I decode a MIME/BASE64 string?
3688
3689 =item How do I return the user's mail address?
3690
3691 =item How do I send mail?
3692
3693 =item How do I use MIME to make an attachment to a mail message?
3694
3695 =item How do I read mail?
3696
3697 =item How do I find out my hostname/domainname/IP address?
3698
3699 =item How do I fetch a news article or the active newsgroups?
3700
3701 =item How do I fetch/put an FTP file?
3702
3703 =item How can I do RPC in Perl?
3704
3705 =back
3706
3707 =item AUTHOR AND COPYRIGHT
3708
3709 =back
3710
3711 =head2 perlcompile - Introduction to the Perl Compiler-Translator 
3712
3713 =over 4
3714
3715 =item DESCRIPTION
3716
3717 =over 4
3718
3719 =item Layout
3720
3721 B::Bytecode, B::C, B::CC, B::Lint, B::Deparse, B::Xref
3722
3723 =back
3724
3725 =item Using The Back Ends
3726
3727 =over 4
3728
3729 =item The Cross Referencing Back End
3730
3731 i, &, s, r
3732
3733 =item The Decompiling Back End
3734
3735 =item The Lint Back End
3736
3737 =item The Simple C Back End
3738
3739 =item The Bytecode Back End
3740
3741 =item The Optimized C Back End
3742
3743 =back
3744
3745 =item Module List for the Compiler Suite
3746
3747 B, O, B::Asmdata, B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC,
3748 B::Concise, B::Debug, B::Deparse, B::Disassembler, B::Lint, B::Showlex,
3749 B::Stackobj, B::Stash, B::Terse, B::Xref
3750
3751 =item KNOWN PROBLEMS
3752
3753 =item AUTHOR
3754
3755 =back
3756
3757 =head2 perlembed - how to embed perl in your C program
3758
3759 =over 4
3760
3761 =item DESCRIPTION
3762
3763 =over 4
3764
3765 =item PREAMBLE
3766
3767 B<Use C from Perl?>, B<Use a Unix program from Perl?>, B<Use Perl from
3768 Perl?>, B<Use C from C?>, B<Use Perl from C?>
3769
3770 =item ROADMAP
3771
3772 =item Compiling your C program
3773
3774 =item Adding a Perl interpreter to your C program
3775
3776 =item Calling a Perl subroutine from your C program
3777
3778 =item Evaluating a Perl statement from your C program
3779
3780 =item Performing Perl pattern matches and substitutions from your C program
3781
3782 =item Fiddling with the Perl stack from your C program
3783
3784 =item Maintaining a persistent interpreter
3785
3786 =item Execution of END blocks
3787
3788 =item Maintaining multiple interpreter instances
3789
3790 =item Using Perl modules, which themselves use C libraries, from your C
3791 program
3792
3793 =back
3794
3795 =item Embedding Perl under Win32
3796
3797 =item MORAL
3798
3799 =item AUTHOR
3800
3801 =item COPYRIGHT
3802
3803 =back
3804
3805 =head2 perldebguts - Guts of Perl debugging 
3806
3807 =over 4
3808
3809 =item DESCRIPTION
3810
3811 =item Debugger Internals
3812
3813 =over 4
3814
3815 =item Writing Your Own Debugger
3816
3817 =back
3818
3819 =item Frame Listing Output Examples
3820
3821 =item Debugging regular expressions
3822
3823 =over 4
3824
3825 =item Compile-time output
3826
3827 C<anchored> I<STRING> C<at> I<POS>, C<floating> I<STRING> C<at>
3828 I<POS1..POS2>, C<matching floating/anchored>, C<minlen>, C<stclass>
3829 I<TYPE>, C<noscan>, C<isall>, C<GPOS>, C<plus>, C<implicit>, C<with eval>,
3830 C<anchored(TYPE)>
3831
3832 =item Types of nodes
3833
3834 =item Run-time output
3835
3836 =back
3837
3838 =item Debugging Perl memory usage
3839
3840 =over 4
3841
3842 =item Using C<$ENV{PERL_DEBUG_MSTATS}>
3843
3844 C<buckets SMALLEST(APPROX)..GREATEST(APPROX)>, Free/Used, C<Total sbrk():
3845 SBRKed/SBRKs:CONTINUOUS>, C<pad: 0>, C<heads: 2192>, C<chain: 0>, C<tail:
3846 6144>
3847
3848 =item Example of using B<-DL> switch
3849
3850 C<717>, C<002>, C<054>, C<602>, C<702>, C<704>
3851
3852 =item B<-DL> details
3853
3854 C<!!!>, C<!!>, C<!>
3855
3856 =item Limitations of B<-DL> statistics
3857
3858 =back
3859
3860 =item SEE ALSO
3861
3862 =back
3863
3864 =head2 perlxstut, perlXStut - Tutorial for writing XSUBs
3865
3866 =over 4
3867
3868 =item DESCRIPTION
3869
3870 =item SPECIAL NOTES
3871
3872 =over 4
3873
3874 =item make
3875
3876 =item Version caveat
3877
3878 =item Dynamic Loading versus Static Loading
3879
3880 =back
3881
3882 =item TUTORIAL
3883
3884 =over 4
3885
3886 =item EXAMPLE 1
3887
3888 =item EXAMPLE 2
3889
3890 =item What has gone on?
3891
3892 =item Writing good test scripts
3893
3894 =item EXAMPLE 3
3895
3896 =item What's new here?
3897
3898 =item Input and Output Parameters
3899
3900 =item The XSUBPP Program
3901
3902 =item The TYPEMAP file
3903
3904 =item Warning about Output Arguments
3905
3906 =item EXAMPLE 4
3907
3908 =item What has happened here?
3909
3910 =item Anatomy of .xs file
3911
3912 =item Getting the fat out of XSUBs
3913
3914 =item More about XSUB arguments
3915
3916 =item The Argument Stack
3917
3918 =item Extending your Extension
3919
3920 =item Documenting your Extension
3921
3922 =item Installing your Extension
3923
3924 =item EXAMPLE 5
3925
3926 =item New Things in this Example
3927
3928 =item EXAMPLE 6
3929
3930 =item New Things in this Example
3931
3932 =item EXAMPLE 7 (Coming Soon)
3933
3934 =item EXAMPLE 8 (Coming Soon)
3935
3936 =item EXAMPLE 9 Passing open files to XSes
3937
3938 =item Troubleshooting these Examples
3939
3940 =back
3941
3942 =item See also
3943
3944 =item Author
3945
3946 =over 4
3947
3948 =item Last Changed
3949
3950 =back
3951
3952 =back
3953
3954 =head2 perlxs - XS language reference manual
3955
3956 =over 4
3957
3958 =item DESCRIPTION
3959
3960 =over 4
3961
3962 =item Introduction
3963
3964 =item On The Road
3965
3966 =item The Anatomy of an XSUB
3967
3968 =item The Argument Stack
3969
3970 =item The RETVAL Variable
3971
3972 =item The MODULE Keyword
3973
3974 =item The PACKAGE Keyword
3975
3976 =item The PREFIX Keyword
3977
3978 =item The OUTPUT: Keyword
3979
3980 =item The NO_OUTPUT Keyword
3981
3982 =item The CODE: Keyword
3983
3984 =item The INIT: Keyword
3985
3986 =item The NO_INIT Keyword
3987
3988 =item Initializing Function Parameters
3989
3990 =item Default Parameter Values
3991
3992 =item The PREINIT: Keyword
3993
3994 =item The SCOPE: Keyword
3995
3996 =item The INPUT: Keyword
3997
3998 =item The IN/OUTLIST/IN_OUTLIST/OUT/IN_OUT Keywords
3999
4000 =item The C<length(NAME)> Keyword
4001
4002 =item Variable-length Parameter Lists
4003
4004 =item The C_ARGS: Keyword
4005
4006 =item The PPCODE: Keyword
4007
4008 =item Returning Undef And Empty Lists
4009
4010 =item The REQUIRE: Keyword
4011
4012 =item The CLEANUP: Keyword
4013
4014 =item The POSTCALL: Keyword
4015
4016 =item The BOOT: Keyword
4017
4018 =item The VERSIONCHECK: Keyword
4019
4020 =item The PROTOTYPES: Keyword
4021
4022 =item The PROTOTYPE: Keyword
4023
4024 =item The ALIAS: Keyword
4025
4026 =item The OVERLOAD: Keyword
4027
4028 =item The INTERFACE: Keyword
4029
4030 =item The INTERFACE_MACRO: Keyword
4031
4032 =item The INCLUDE: Keyword
4033
4034 =item The CASE: Keyword
4035
4036 =item The & Unary Operator
4037
4038 =item Inserting POD, Comments and C Preprocessor Directives
4039
4040 =item Using XS With C++
4041
4042 =item Interface Strategy
4043
4044 =item Perl Objects And C Structures
4045
4046 =item The Typemap
4047
4048 =item Safely Storing Static Data in XS
4049
4050 MY_CXT_KEY, typedef my_cxt_t, START_MY_CXT, MY_CXT_INIT, dMY_CXT, MY_CXT
4051
4052 =back
4053
4054 =item EXAMPLES
4055
4056 =item XS VERSION
4057
4058 =item AUTHOR
4059
4060 =back
4061
4062 =head2 perlclib - Internal replacements for standard C library functions
4063
4064 =over 4
4065
4066 =item DESCRIPTION
4067
4068 =over 4
4069
4070 =item Conventions
4071
4072 C<t>, C<p>, C<n>, C<s>
4073
4074 =item File Operations
4075
4076 =item File Input and Output
4077
4078 =item File Positioning
4079
4080 =item Memory Management and String Handling
4081
4082 =item Character Class Tests
4083
4084 =item F<stdlib.h> functions
4085
4086 =item Miscellaneous functions
4087
4088 =back
4089
4090 =item SEE ALSO
4091
4092 =back
4093
4094 =head2 perlguts - Introduction to the Perl API
4095
4096 =over 4
4097
4098 =item DESCRIPTION
4099
4100 =item Variables
4101
4102 =over 4
4103
4104 =item Datatypes
4105
4106 =item What is an "IV"?
4107
4108 =item Working with SVs
4109
4110 =item Offsets
4111
4112 =item What's Really Stored in an SV?
4113
4114 =item Working with AVs
4115
4116 =item Working with HVs
4117
4118 =item Hash API Extensions
4119
4120 =item References
4121
4122 =item Blessed References and Class Objects
4123
4124 =item Creating New Variables
4125
4126 GV_ADDMULTI, GV_ADDWARN
4127
4128 =item Reference Counts and Mortality
4129
4130 =item Stashes and Globs
4131
4132 =item Double-Typed SVs
4133
4134 =item Magic Variables
4135
4136 =item Assigning Magic
4137
4138 =item Magic Virtual Tables
4139
4140 =item Finding Magic
4141
4142 =item Understanding the Magic of Tied Hashes and Arrays
4143
4144 =item Localizing changes
4145
4146 C<SAVEINT(int i)>, C<SAVEIV(IV i)>, C<SAVEI32(I32 i)>, C<SAVELONG(long i)>,
4147 C<SAVESPTR(s)>, C<SAVEPPTR(p)>, C<SAVEFREESV(SV *sv)>, C<SAVEMORTALIZESV(SV
4148 *sv)>, C<SAVEFREEOP(OP *op)>, C<SAVEFREEPV(p)>, C<SAVECLEARSV(SV *sv)>,
4149 C<SAVEDELETE(HV *hv, char *key, I32 length)>,
4150 C<SAVEDESTRUCTOR(DESTRUCTORFUNC_NOCONTEXT_t f, void *p)>,
4151 C<SAVEDESTRUCTOR_X(DESTRUCTORFUNC_t f, void *p)>, C<SAVESTACK_POS()>, C<SV*
4152 save_scalar(GV *gv)>, C<AV* save_ary(GV *gv)>, C<HV* save_hash(GV *gv)>,
4153 C<void save_item(SV *item)>, C<void save_list(SV **sarg, I32 maxsarg)>,
4154 C<SV* save_svref(SV **sptr)>, C<void save_aptr(AV **aptr)>, C<void
4155 save_hptr(HV **hptr)>
4156
4157 =back
4158
4159 =item Subroutines
4160
4161 =over 4
4162
4163 =item XSUBs and the Argument Stack
4164
4165 =item Calling Perl Routines from within C Programs
4166
4167 =item Memory Allocation
4168
4169 =item PerlIO
4170
4171 =item Putting a C value on Perl stack
4172
4173 =item Scratchpads
4174
4175 =item Scratchpads and recursion
4176
4177 =back
4178
4179 =item Compiled code
4180
4181 =over 4
4182
4183 =item Code tree
4184
4185 =item Examining the tree
4186
4187 =item Compile pass 1: check routines
4188
4189 =item Compile pass 1a: constant folding
4190
4191 =item Compile pass 2: context propagation
4192
4193 =item Compile pass 3: peephole optimization
4194
4195 =item Pluggable runops
4196
4197 =back
4198
4199 =item Examining internal data structures with the C<dump> functions
4200
4201 =item How multiple interpreters and concurrency are supported
4202
4203 =over 4
4204
4205 =item Background and PERL_IMPLICIT_CONTEXT
4206
4207 =item So what happened to dTHR?
4208
4209 =item How do I use all this in extensions?
4210
4211 =item Should I do anything special if I call perl from multiple threads?
4212
4213 =item Future Plans and PERL_IMPLICIT_SYS
4214
4215 =back
4216
4217 =item Internal Functions
4218
4219 A, p, d, s, n, r, f, M, o, j, x
4220
4221 =over 4
4222
4223 =item Formatted Printing of IVs, UVs, and NVs
4224
4225 =item Pointer-To-Integer and Integer-To-Pointer
4226
4227 =item Source Documentation
4228
4229 =back
4230
4231 =item Unicode Support
4232
4233 =over 4
4234
4235 =item What B<is> Unicode, anyway?
4236
4237 =item How can I recognise a UTF8 string?
4238
4239 =item How does UTF8 represent Unicode characters?
4240
4241 =item How does Perl store UTF8 strings?
4242
4243 =item How do I convert a string to UTF8?
4244
4245 =item Is there anything else I need to know?
4246
4247 =back
4248
4249 =item Custom Operators
4250
4251 =item AUTHORS
4252
4253 =item SEE ALSO
4254
4255 =back
4256
4257 =head2 perlcall - Perl calling conventions from C
4258
4259 =over 4
4260
4261 =item DESCRIPTION
4262
4263 An Error Handler, An Event Driven Program
4264
4265 =item THE CALL_ FUNCTIONS
4266
4267 call_sv, call_pv, call_method, call_argv
4268
4269 =item FLAG VALUES
4270
4271 =over 4
4272
4273 =item  G_VOID
4274
4275 =item  G_SCALAR
4276
4277 =item G_ARRAY
4278
4279 =item G_DISCARD
4280
4281 =item G_NOARGS
4282
4283 =item G_EVAL
4284
4285 =item G_KEEPERR
4286
4287 =item Determining the Context
4288
4289 =back
4290
4291 =item KNOWN PROBLEMS
4292
4293 =item EXAMPLES
4294
4295 =over 4
4296
4297 =item No Parameters, Nothing returned
4298
4299 =item Passing Parameters
4300
4301 =item Returning a Scalar
4302
4303 =item Returning a list of values
4304
4305 =item Returning a list in a scalar context
4306
4307 =item Returning Data from Perl via the parameter list
4308
4309 =item Using G_EVAL
4310
4311 =item Using G_KEEPERR
4312
4313 =item Using call_sv
4314
4315 =item Using call_argv
4316
4317 =item Using call_method
4318
4319 =item Using GIMME_V
4320
4321 =item Using Perl to dispose of temporaries
4322
4323 =item Strategies for storing Callback Context Information
4324
4325 1. Ignore the problem - Allow only 1 callback, 2. Create a sequence of
4326 callbacks - hard wired limit, 3. Use a parameter to map to the Perl
4327 callback
4328
4329 =item Alternate Stack Manipulation
4330
4331 =item Creating and calling an anonymous subroutine in C
4332
4333 =back
4334
4335 =item SEE ALSO
4336
4337 =item AUTHOR
4338
4339 =item DATE
4340
4341 =back
4342
4343 =head2 perlutil - utilities packaged with the Perl distribution
4344
4345 =over 4
4346
4347 =item DESCRIPTION
4348
4349 =over 4
4350
4351 =item DOCUMENTATION
4352
4353 L<perldoc|perldoc>, L<pod2man|pod2man> and L<pod2text|pod2text>,
4354 L<pod2html|pod2html> and L<pod2latex|pod2latex>, L<pod2usage|pod2usage>,
4355 L<podselect|podselect>, L<podchecker|podchecker>, L<splain|splain>,
4356 L<roffitall|roffitall>
4357
4358 =item CONVERTORS
4359
4360 L<a2p|a2p>, L<s2p|s2p>, L<find2perl|find2perl>
4361
4362 =item Administration
4363
4364 L<libnetcfg|libnetcfg>
4365
4366 =item Development
4367
4368 L<perlbug|perlbug>, L<h2ph|h2ph>, L<c2ph|c2ph> and L<pstruct|pstruct>,
4369 L<h2xs|h2xs>, L<dprofpp|dprofpp>, L<perlcc|perlcc>
4370
4371 =item SEE ALSO
4372
4373 =back
4374
4375 =back
4376
4377 =head2 perlfilter - Source Filters
4378
4379 =over 4
4380
4381 =item DESCRIPTION
4382
4383 =item CONCEPTS
4384
4385 =item USING FILTERS
4386
4387 =item WRITING A SOURCE FILTER
4388
4389 =item WRITING A SOURCE FILTER IN C
4390
4391 B<Decryption Filters>
4392
4393 =item CREATING A SOURCE FILTER AS A SEPARATE EXECUTABLE
4394
4395 =item WRITING A SOURCE FILTER IN PERL
4396
4397 =item USING CONTEXT: THE DEBUG FILTER
4398
4399 =item CONCLUSION
4400
4401 =item REQUIREMENTS
4402
4403 =item AUTHOR
4404
4405 =item Copyrights
4406
4407 =back
4408
4409 =head2 perldbmfilter - Perl DBM Filters
4410
4411 =over 4
4412
4413 =item SYNOPSIS
4414
4415 =item DESCRIPTION
4416
4417 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
4418 B<filter_fetch_value>
4419
4420 =over 4
4421
4422 =item The Filter
4423
4424 =item An Example -- the NULL termination problem.
4425
4426 =item Another Example -- Key is a C int.
4427
4428 =back
4429
4430 =item SEE ALSO
4431
4432 =item AUTHOR
4433
4434 =back
4435
4436 =head2 perlapi - autogenerated documentation for the perl public API
4437
4438 =over 4
4439
4440 =item DESCRIPTION
4441
4442 =item "Gimme" Values
4443
4444 GIMME, GIMME_V, G_ARRAY, G_DISCARD, G_EVAL, G_NOARGS, G_SCALAR, G_VOID
4445
4446 =item Array Manipulation Functions
4447
4448 AvFILL, av_clear, av_delete, av_exists, av_extend, av_fetch, av_fill,
4449 av_len, av_make, av_pop, av_push, av_shift, av_store, av_undef, av_unshift,
4450 get_av, newAV, Nullav, sortsv
4451
4452 =item Callback Functions
4453
4454 call_argv, call_method, call_pv, call_sv, ENTER, eval_pv, eval_sv,
4455 FREETMPS, LEAVE, SAVETMPS
4456
4457 =item Character classes
4458
4459 isALNUM, isALPHA, isDIGIT, isLOWER, isSPACE, isUPPER, toLOWER, toUPPER
4460
4461 =item Cloning an interpreter
4462
4463 perl_clone
4464
4465 =item CV Manipulation Functions
4466
4467 CvSTASH, get_cv, Nullcv
4468
4469 =item Embedding Functions
4470
4471 load_module, nothreadhook, perl_alloc, perl_construct, perl_destruct,
4472 perl_free, perl_parse, perl_run, require_pv
4473
4474 =item Functions in file pp_pack.c
4475
4476 pack_cat, unpack_str
4477
4478 =item Global Variables
4479
4480 PL_modglobal, PL_na, PL_sv_no, PL_sv_undef, PL_sv_yes
4481
4482 =item GV Functions
4483
4484 GvSV, gv_fetchmeth, gv_fetchmethod, gv_fetchmethod_autoload,
4485 gv_fetchmeth_autoload, gv_stashpv, gv_stashsv
4486
4487 =item Handy Values
4488
4489 HEf_SVKEY, Nullch, Nullsv
4490
4491 =item Hash Manipulation Functions
4492
4493 get_hv, HeHASH, HeKEY, HeKLEN, HePV, HeSVKEY, HeSVKEY_force, HeSVKEY_set,
4494 HeVAL, HvNAME, hv_clear, hv_delete, hv_delete_ent, hv_exists,
4495 hv_exists_ent, hv_fetch, hv_fetch_ent, hv_iterinit, hv_iterkey,
4496 hv_iterkeysv, hv_iternext, hv_iternextsv, hv_iternext_flags, hv_iterval,
4497 hv_magic, hv_store, hv_store_ent, hv_undef, newHV, Nullhv
4498
4499 =item Magical Functions
4500
4501 mg_clear, mg_copy, mg_find, mg_free, mg_get, mg_length, mg_magical, mg_set,
4502 SvGETMAGIC, SvLOCK, SvSETMAGIC, SvSetMagicSV, SvSetMagicSV_nosteal,
4503 SvSetSV, SvSetSV_nosteal, SvSHARE
4504
4505 =item Memory Management
4506
4507 Copy, Move, New, Newc, NEWSV, Newz, Poison, Renew, Renewc, Safefree,
4508 savepv, savepvn, savesharedpv, StructCopy, Zero
4509
4510 =item Miscellaneous Functions
4511
4512 fbm_compile, fbm_instr, form, getcwd_sv, strEQ, strGE, strGT, strLE, strLT,
4513 strNE, strnEQ, strnNE
4514
4515 =item Numeric functions
4516
4517 grok_bin, grok_hex, grok_number, grok_numeric_radix, grok_oct, scan_bin,
4518 scan_hex, scan_oct
4519
4520 =item Optree Manipulation Functions
4521
4522 cv_const_sv, newCONSTSUB, newXS
4523
4524 =item Stack Manipulation Macros
4525
4526 dMARK, dORIGMARK, dSP, EXTEND, MARK, ORIGMARK, POPi, POPl, POPn, POPp,
4527 POPpbytex, POPpx, POPs, PUSHi, PUSHMARK, PUSHn, PUSHp, PUSHs, PUSHu,
4528 PUTBACK, SP, SPAGAIN, XPUSHi, XPUSHn, XPUSHp, XPUSHs, XPUSHu, XSRETURN,
4529 XSRETURN_IV, XSRETURN_NO, XSRETURN_NV, XSRETURN_PV, XSRETURN_UNDEF,
4530 XSRETURN_YES, XST_mIV, XST_mNO, XST_mNV, XST_mPV, XST_mUNDEF, XST_mYES
4531
4532 =item SV Flags
4533
4534 svtype, SVt_IV, SVt_NV, SVt_PV, SVt_PVAV, SVt_PVCV, SVt_PVHV, SVt_PVMG
4535
4536 =item SV Manipulation Functions
4537
4538 get_sv, looks_like_number, newRV_inc, newRV_noinc, newSV, newSViv, newSVnv,
4539 newSVpv, newSVpvf, newSVpvn, newSVpvn_share, newSVrv, newSVsv, newSVuv,
4540 new_vstring, SvCUR, SvCUR_set, SvEND, SvGROW, SvIOK, SvIOKp, SvIOK_notUV,
4541 SvIOK_off, SvIOK_on, SvIOK_only, SvIOK_only_UV, SvIOK_UV, SvIV, SvIVx,
4542 SvIVX, SvLEN, SvNIOK, SvNIOKp, SvNIOK_off, SvNOK, SvNOKp, SvNOK_off,
4543 SvNOK_on, SvNOK_only, SvNV, SvNVX, SvNVx, SvOK, SvOOK, SvPOK, SvPOKp,
4544 SvPOK_off, SvPOK_on, SvPOK_only, SvPOK_only_UTF8, SvPV, SvPVbyte,
4545 SvPVbytex, SvPVbytex_force, SvPVbyte_force, SvPVbyte_nolen, SvPVutf8,
4546 SvPVutf8x, SvPVutf8x_force, SvPVutf8_force, SvPVutf8_nolen, SvPVx, SvPVX,
4547 SvPV_force, SvPV_force_nomg, SvPV_nolen, SvREFCNT, SvREFCNT_dec,
4548 SvREFCNT_inc, SvROK, SvROK_off, SvROK_on, SvRV, SvSTASH, SvTAINT,
4549 SvTAINTED, SvTAINTED_off, SvTAINTED_on, SvTRUE, SvTYPE, SvUNLOCK, SvUOK,
4550 SvUPGRADE, SvUTF8, SvUTF8_off, SvUTF8_on, SvUV, SvUVX, SvUVx, sv_2bool,
4551 sv_2cv, sv_2io, sv_2iv, sv_2mortal, sv_2nv, sv_2pvbyte, sv_2pvbyte_nolen,
4552 sv_2pvutf8, sv_2pvutf8_nolen, sv_2pv_flags, sv_2pv_nolen, sv_2uv,
4553 sv_backoff, sv_bless, sv_catpv, sv_catpvf, sv_catpvf_mg, sv_catpvn,
4554 sv_catpvn_flags, sv_catpvn_mg, sv_catpv_mg, sv_catsv, sv_catsv_flags,
4555 sv_catsv_mg, sv_chop, sv_clear, sv_cmp, sv_cmp_locale, sv_collxfrm,
4556 sv_copypv, sv_dec, sv_derived_from, sv_eq, sv_force_normal,
4557 sv_force_normal_flags, sv_free, sv_gets, sv_grow, sv_inc, sv_insert,
4558 sv_isa, sv_isobject, sv_iv, sv_len, sv_len_utf8, sv_magic, sv_magicext,
4559 sv_mortalcopy, sv_newmortal, sv_newref, sv_nolocking, sv_nosharing,
4560 sv_nounlocking, sv_nv, sv_pos_b2u, sv_pos_u2b, sv_pv, sv_pvbyte,
4561 sv_pvbyten, sv_pvbyten_force, sv_pvn, sv_pvn_force, sv_pvn_force_flags,
4562 sv_pvutf8, sv_pvutf8n, sv_pvutf8n_force, sv_reftype, sv_replace,
4563 sv_report_used, sv_reset, sv_rvweaken, sv_setiv, sv_setiv_mg, sv_setnv,
4564 sv_setnv_mg, sv_setpv, sv_setpvf, sv_setpvf_mg, sv_setpvn, sv_setpvn_mg,
4565 sv_setpv_mg, sv_setref_iv, sv_setref_nv, sv_setref_pv, sv_setref_pvn,
4566 sv_setref_uv, sv_setsv, sv_setsv_flags, sv_setsv_mg, sv_setuv, sv_setuv_mg,
4567 sv_taint, sv_tainted, sv_true, sv_unmagic, sv_unref, sv_unref_flags,
4568 sv_untaint, sv_upgrade, sv_usepvn, sv_usepvn_mg, sv_utf8_decode,
4569 sv_utf8_downgrade, sv_utf8_encode, sv_utf8_upgrade, sv_utf8_upgrade_flags,
4570 sv_uv, sv_vcatpvfn, sv_vsetpvfn
4571
4572 =item Unicode Support
4573
4574 bytes_from_utf8, bytes_to_utf8, ibcmp_utf8, is_utf8_char, is_utf8_string,
4575 pv_uni_display, sv_recode_to_utf8, sv_uni_display, to_utf8_case,
4576 to_utf8_fold, to_utf8_lower, to_utf8_title, to_utf8_upper, utf8n_to_uvchr,
4577 utf8n_to_uvuni, utf8_distance, utf8_hop, utf8_length, utf8_to_bytes,
4578 utf8_to_uvchr, utf8_to_uvuni, uvchr_to_utf8, uvuni_to_utf8_flags
4579
4580 =item Variables created by C<xsubpp> and C<xsubpp> internal functions
4581
4582 ax, CLASS, dAX, dITEMS, dXSARGS, dXSI32, items, ix, newXSproto, RETVAL, ST,
4583 THIS, XS, XSRETURN_EMPTY, XS_VERSION, XS_VERSION_BOOTCHECK
4584
4585 =item Warning and Dieing
4586
4587 croak, warn
4588
4589 =item AUTHORS
4590
4591 =item SEE ALSO
4592
4593 =back
4594
4595 =head2 perlintern - autogenerated documentation of purely B<internal>
4596                  Perl functions
4597
4598 =over 4
4599
4600 =item DESCRIPTION
4601
4602 =item Global Variables
4603
4604 PL_DBsingle, PL_DBsub, PL_DBtrace, PL_dowarn, PL_last_in_gv, PL_ofs_sv,
4605 PL_rs
4606
4607 =item GV Functions
4608
4609 is_gv_magical
4610
4611 =item IO Functions
4612
4613 start_glob
4614
4615 =item Pad Data Structures
4616
4617 CvPADLIST
4618
4619 =item Stack Manipulation Macros
4620
4621 djSP, LVRET
4622
4623 =item SV Manipulation Functions
4624
4625 report_uninit, sv_add_arena, sv_clean_all, sv_clean_objs, sv_free_arenas
4626
4627 =item AUTHORS
4628
4629 =item SEE ALSO
4630
4631 =back
4632
4633 =head2 perliol - C API for Perl's implementation of IO in Layers.
4634
4635 =over 4
4636
4637 =item SYNOPSIS
4638
4639 =item DESCRIPTION
4640
4641 =over 4
4642
4643 =item History and Background
4644
4645 =item Layers vs Disciplines
4646
4647 =item Data Structures
4648
4649 =item Functions and Attributes
4650
4651 =item Per-instance Data
4652
4653 =item Layers in action.
4654
4655 =item Per-instance flag bits
4656
4657 PERLIO_F_EOF, PERLIO_F_CANWRITE,  PERLIO_F_CANREAD, PERLIO_F_ERROR,
4658 PERLIO_F_TRUNCATE, PERLIO_F_APPEND, PERLIO_F_CRLF, PERLIO_F_UTF8,
4659 PERLIO_F_UNBUF, PERLIO_F_WRBUF, PERLIO_F_RDBUF, PERLIO_F_LINEBUF,
4660 PERLIO_F_TEMP, PERLIO_F_OPEN, PERLIO_F_FASTGETS
4661
4662 =item Methods in Detail
4663
4664 size, name, size, kind, PERLIO_K_BUFFERED, PERLIO_K_RAW, PERLIO_K_CANCRLF,
4665 PERLIO_K_FASTGETS, PERLIO_K_MULTIARG, Pushed, Popped, Open, Binmode,
4666 Getarg, Fileno, Dup, Read, Write, Seek, Tell, Close, Flush, Fill, Eof,
4667 Error,  Clearerr, Setlinebuf, Get_base, Get_bufsiz, Get_ptr, Get_cnt,
4668 Set_ptrcnt
4669
4670 =item Core Layers
4671
4672 "unix", "perlio", "stdio", "crlf", "mmap", "pending", "raw", "utf8"
4673
4674 =item Extension Layers
4675
4676 ":encoding", ":Scalar", ":Via"
4677
4678 =back
4679
4680 =item TODO
4681
4682 =back
4683
4684 =head2 perlapio - perl's IO abstraction interface.
4685
4686 =over 4
4687
4688 =item SYNOPSIS
4689
4690 =item DESCRIPTION
4691
4692 1. USE_STDIO, 2. USE_SFIO, 3. USE_PERLIO, B<PerlIO_stdin()>,
4693 B<PerlIO_stdout()>, B<PerlIO_stderr()>, B<PerlIO_open(path, mode)>,
4694 B<PerlIO_fdopen(fd,mode)>, B<PerlIO_reopen(path,mode,f)>,
4695 B<PerlIO_printf(f,fmt,...)>, B<PerlIO_vprintf(f,fmt,a)>,
4696 B<PerlIO_stdoutf(fmt,...)>, B<PerlIO_read(f,buf,count)>,
4697 B<PerlIO_write(f,buf,count)>, B<PerlIO_close(f)>, B<PerlIO_puts(f,s)>,
4698 B<PerlIO_putc(f,c)>, B<PerlIO_ungetc(f,c)>, B<PerlIO_getc(f)>,
4699 B<PerlIO_eof(f)>, B<PerlIO_error(f)>, B<PerlIO_fileno(f)>,
4700 B<PerlIO_clearerr(f)>, B<PerlIO_flush(f)>, B<PerlIO_seek(f,offset,whence)>,
4701 B<PerlIO_tell(f)>, B<PerlIO_getpos(f,p)>, B<PerlIO_setpos(f,p)>,
4702 B<PerlIO_rewind(f)>, B<PerlIO_tmpfile()>, B<PerlIO_setlinebuf(f)>
4703
4704 =over 4
4705
4706 =item Co-existence with stdio
4707
4708 B<PerlIO_importFILE(f,mode)>, B<PerlIO_exportFILE(f,mode)>,
4709 B<PerlIO_releaseFILE(p,f)>, B<PerlIO_findFILE(f)>
4710
4711 =item "Fast gets" Functions
4712
4713 B<PerlIO_fast_gets(f)>, B<PerlIO_has_cntptr(f)>, B<PerlIO_get_cnt(f)>,
4714 B<PerlIO_get_ptr(f)>, B<PerlIO_set_ptrcnt(f,p,c)>, B<PerlIO_canset_cnt(f)>,
4715 B<PerlIO_set_cnt(f,c)>, B<PerlIO_has_base(f)>, B<PerlIO_get_base(f)>,
4716 B<PerlIO_get_bufsiz(f)>
4717
4718 =item Other Functions
4719
4720 PerlIO_apply_layers(f,mode,layers), PerlIO_binmode(f,ptype,imode,layers),
4721 'E<lt>' read, 'E<gt>' write, '+' read/write, PerlIO_debug(fmt,...)
4722
4723 =back
4724
4725 =back
4726
4727 =head2 perltodo - Perl TO-DO List
4728
4729 =over 4
4730
4731 =item DESCRIPTION
4732
4733 =item To do during 5.6.x
4734
4735 =over 4
4736
4737 =item Support for I/O disciplines
4738
4739 =item Autoload bytes.pm
4740
4741 =item Make "\u{XXXX}" et al work
4742
4743 =item Create a char *sv_pvprintify(sv, STRLEN *lenp, UV flags)
4744
4745 =item Overloadable regex assertions
4746
4747 =item Unicode
4748
4749 =item Work out exit/die semantics for threads
4750
4751 =item Better support for nonpreemptive threading systems like GNU pth
4752
4753 =item Typed lexicals for compiler
4754
4755 =item Compiler workarounds for Win32
4756
4757 =item AUTOLOADing in the compiler
4758
4759 =item Fixing comppadlist when compiling
4760
4761 =item Cleaning up exported namespace
4762
4763 =item Complete signal handling
4764
4765 =item Out-of-source builds
4766
4767 =item POSIX realtime support
4768
4769 =item UNIX98 support
4770
4771 =item IPv6 Support
4772
4773 =item Long double conversion
4774
4775 =item Locales
4776
4777 =item Arithmetic on non-Arabic numerals
4778
4779 =item POSIX Unicode character classes
4780
4781 =item Factoring out common suffices/prefices in regexps (trie optimization)
4782
4783 =item Security audit shipped utilities
4784
4785 =item Sort out the uid-setting mess
4786
4787 =item Custom opcodes
4788
4789 =item DLL Versioning
4790
4791 =item Introduce @( and @)
4792
4793 =item Floating point handling
4794
4795 =item IV/UV preservation
4796
4797 =item Replace pod2html with something using Pod::Parser
4798
4799 =item Automate module testing on CPAN
4800
4801 =item sendmsg and recvmsg
4802
4803 =item Rewrite perlre documentation
4804
4805 =item Convert example code to IO::Handle filehandles
4806
4807 =item Document Win32 choices
4808
4809 =item Check new modules
4810
4811 =item Make roffitall find pods and libs itself
4812
4813 =back
4814
4815 =item To do at some point
4816
4817 =over 4
4818
4819 =item Remove regular expression recursion
4820
4821 =item Memory leaks after failed eval
4822
4823 =item bitfields in pack
4824
4825 =item Cross compilation
4826
4827 =item Perl preprocessor / macros
4828
4829 =item Perl lexer in Perl
4830
4831 =item Using POSIX calls internally
4832
4833 =item -i rename file when changed
4834
4835 =item All ARGV input should act like E<lt>E<gt>
4836
4837 =item Support for rerunning debugger
4838
4839 =item Test Suite for the Debugger
4840
4841 =item my sub foo { }
4842
4843 =item One-pass global destruction
4844
4845 =item Rewrite regexp parser
4846
4847 =item Cache recently used regexps
4848
4849 =item Cross-compilation support
4850
4851 =item Bit-shifting bitvectors
4852
4853 =item debugger pragma
4854
4855 =item use less pragma
4856
4857 =item switch structures
4858
4859 =item Cache eval tree
4860
4861 =item rcatmaybe
4862
4863 =item Shrink opcode tables
4864
4865 =item Optimize away @_
4866
4867 =item Prototypes versus indirect objects
4868
4869 =item Install HTML
4870
4871 =item Prototype method calls
4872
4873 =item Return context prototype declarations
4874
4875 =item magic_setisa
4876
4877 =item Garbage collection
4878
4879 =item IO tutorial
4880
4881 =item Rewrite perldoc
4882
4883 =item Install .3p manpages
4884
4885 =item Unicode tutorial
4886
4887 =item Update POSIX.pm for 1003.1-2
4888
4889 =item Retargetable installation
4890
4891 =item POSIX emulation on non-POSIX systems
4892
4893 =item Rename Win32 headers
4894
4895 =item Finish off lvalue functions
4896
4897 =item Update sprintf documentation
4898
4899 =item Use fchown/fchmod internally
4900
4901 =item Make v-strings overloaded objects
4902
4903 =item Allow restricted hash assignment
4904
4905 =item Should overload be inheritable?
4906
4907 =item Taint rethink
4908
4909 =back
4910
4911 =item Vague ideas
4912
4913 =over 4
4914
4915 =item ref() in list context
4916
4917 =item Make tr/// return histogram of characters in list context
4918
4919 =item Compile to real threaded code
4920
4921 =item Structured types
4922
4923 =item Modifiable $1 et al.
4924
4925 =item Procedural interfaces for IO::*, etc.
4926
4927 =item RPC modules
4928
4929 =item Attach/detach debugger from running program
4930
4931 =item GUI::Native
4932
4933 =item foreach(reverse ...)
4934
4935 =item Constant function cache
4936
4937 =item Approximate regular expression matching
4938
4939 =back
4940
4941 =item Ongoing
4942
4943 =over 4
4944
4945 =item Update guts documentation
4946
4947 =item Add more tests
4948
4949 =item Update auxiliary tools
4950
4951 =item Create debugging macros
4952
4953 =item truncate to the people
4954
4955 =item Unicode in Filenames
4956
4957 =back
4958
4959 =item Recently done things
4960
4961 =over 4
4962
4963 =item Alternative RE syntax module
4964
4965 =item Safe signal handling
4966
4967 =item Tie Modules
4968
4969 =item gettimeofday
4970
4971 =item setitimer and getimiter
4972
4973 =item Testing __DIE__ hook
4974
4975 =item CPP equivalent in Perl
4976
4977 =item Explicit switch statements
4978
4979 =item autocroak
4980
4981 =item UTF/EBCDIC
4982
4983 =item UTF Regexes
4984
4985 =item perlcc to produce executable
4986
4987 =item END blocks saved in compiled output
4988
4989 =item Secure temporary file module
4990
4991 =item Integrate Time::HiRes
4992
4993 =item Turn Cwd into XS
4994
4995 =item Mmap for input
4996
4997 =item Byte to/from UTF8 and UTF8 to/from local conversion
4998
4999 =item Add sockatmark support
5000
5001 =item Mailing list archives
5002
5003 =item Bug tracking
5004
5005 =item Integrate MacPerl
5006
5007 =item Web "nerve center" for Perl
5008
5009 =item Regular expression tutorial
5010
5011 =item Debugging Tutorial
5012
5013 =item Integrate new modules
5014
5015 =item Integrate profiler
5016
5017 =item Y2K error detection
5018
5019 =item Regular expression debugger
5020
5021 =item POD checker
5022
5023 =item "Dynamic" lexicals
5024
5025 =item Cache precompiled modules
5026
5027 =back
5028
5029 =item Deprecated Wishes
5030
5031 =over 4
5032
5033 =item Loop control on do{}
5034
5035 =item Lexically scoped typeglobs
5036
5037 =item format BOTTOM
5038
5039 =item report HANDLE
5040
5041 =item Generalised want()/caller())
5042
5043 =item Named prototypes
5044
5045 =item Built-in globbing
5046
5047 =item Regression tests for suidperl
5048
5049 =item Cached hash values
5050
5051 =item Add compression modules
5052
5053 =item Reorganise documentation into tutorials/references
5054
5055 =item Remove distinction between functions and operators
5056
5057 =item Make XS easier to use
5058
5059 =item Make embedding easier to use
5060
5061 =item man for perl
5062
5063 =item my $Package::variable
5064
5065 =item "or" tests defined, not truth
5066
5067 =item "class"-based lexicals
5068
5069 =item byteperl
5070
5071 =item Lazy evaluation / tail recursion removal
5072
5073 =item Make "use utf8" the default
5074
5075 =item Unicode collation and normalization
5076
5077 =item pack/unpack tutorial
5078
5079 =back
5080
5081 =back
5082
5083 =head2 perlhack - How to hack at the Perl internals
5084
5085 =over 4
5086
5087 =item DESCRIPTION
5088
5089 Does concept match the general goals of Perl?, Where is the
5090 implementation?, Backwards compatibility, Could it be a module instead?, Is
5091 the feature generic enough?, Does it potentially introduce new bugs?, Does
5092 it preclude other desirable features?, Is the implementation robust?, Is
5093 the implementation generic enough to be portable?, Is the implementation
5094 tested?, Is there enough documentation?, Is there another way to do it?,
5095 Does it create too much work?, Patches speak louder than words
5096
5097 =over 4
5098
5099 =item Keeping in sync
5100
5101 rsync'ing the source tree, Using rsync over the LAN, Using pushing over the
5102 NFS, rsync'ing the patches
5103
5104 =item Why rsync the source tree
5105
5106 It's easier to rsync the source tree, It's more reliable
5107
5108 =item Why rsync the patches
5109
5110 It's easier to rsync the patches, It's a good reference, Finding a start
5111 point, Finding how to fix a bug, Finding the source of misbehaviour
5112
5113 =item Perlbug remote interface
5114
5115 1 http://bugs.perl.org, 2 bugdb@perl.org, 3
5116 commands_and_bugdids@bugs.perl.org, notes, patches, tests
5117
5118 =item Submitting patches
5119
5120 L<perlguts>, L<perlxstut> and L<perlxs>, L<perlapi>,
5121 F<Porting/pumpkin.pod>, The perl5-porters FAQ
5122
5123 =item Finding Your Way Around
5124
5125 Core modules, Tests, Documentation, Configure, Interpreter
5126
5127 =item Elements of the interpreter
5128
5129 Startup, Parsing, Optimization, Running
5130
5131 =item Internal Variable Types
5132
5133 =item Op Trees
5134
5135 =item Stacks
5136
5137 Argument stack, Mark stack, Save stack
5138
5139 =item Millions of Macros
5140
5141 =item Poking at Perl
5142
5143 =item Using a source-level debugger
5144
5145 run [args], break function_name, break source.c:xxx, step, next, continue,
5146 finish, 'enter', print
5147
5148 =item Dumping Perl Data Structures
5149
5150 =item Patching
5151
5152 =item Patching a core module
5153
5154 =item Adding a new function to the core
5155
5156 =item Writing a test
5157
5158 F<t/base/>, F<t/cmd/>, F<t/comp/>, F<t/io/>, F<t/lib/>, F<t/op/>,
5159 F<t/pod/>, F<t/run/>, t/base t/comp, t/cmd t/run t/io t/op, t/lib ext lib
5160
5161 =item Special Make Test Targets
5162
5163 coretest, test.deparse, minitest, test.third check.third utest.third
5164 ucheck.third, test.torture torturetest, utest ucheck test.utf8 check.utf8
5165
5166 =back
5167
5168 =item EXTERNAL TOOLS FOR DEBUGGING PERL
5169
5170 =over 4
5171
5172 =item Rational Software's Purify
5173
5174 =item Purify on Unix
5175
5176 -Accflags=-DPURIFY, -Doptimize='-g', -Uusemymalloc, -Dusemultiplicity
5177
5178 =item Purify on NT
5179
5180 DEFINES, USE_MULTI = define, #PERL_MALLOC = define, CFG = Debug
5181
5182 =item Compaq's/Digital's/HP's Third Degree
5183
5184 =item PERL_DESTRUCT_LEVEL
5185
5186 =item Profiling
5187
5188 =item Gprof Profiling
5189
5190 -a, -b, -e routine, -f routine, -s, -z
5191
5192 =item GCC gcov Profiling
5193
5194 =item Pixie Profiling
5195
5196 -h, -l, -p[rocedures], -h[eavy], -i[nvocations], -l[ines], -testcoverage,
5197 -z[ero]
5198
5199 =item Miscellaneous tricks
5200
5201 =item CONCLUSION
5202
5203 I<The Road goes ever on and on, down from the door where it began.>
5204
5205 =back
5206
5207 =item AUTHOR
5208
5209 =back
5210
5211 =head2 perlhist - the Perl history records
5212
5213 =over 4
5214
5215 =item DESCRIPTION
5216
5217 =item INTRODUCTION
5218
5219 =item THE KEEPERS OF THE PUMPKIN
5220
5221 =over 4
5222
5223 =item PUMPKIN?
5224
5225 =back
5226
5227 =item THE RECORDS
5228
5229 =over 4
5230
5231 =item SELECTED RELEASE SIZES
5232
5233 =item SELECTED PATCH SIZES
5234
5235 =back
5236
5237 =item THE KEEPERS OF THE RECORDS
5238
5239 =back
5240
5241 =head2 perldelta - what is new for perl v5.8.0
5242
5243 =over 4
5244
5245 =item DESCRIPTION
5246
5247 =item Highlights In 5.8.0
5248
5249 =item Incompatible Changes
5250
5251 =over 4
5252
5253 =item Binary Incompatibility
5254
5255 =item 64-bit platforms and malloc
5256
5257 =item AIX Dynaloading
5258
5259 =item Attributes for C<my> variables now handled at run-time.
5260
5261 =item Socket Extension Dynamic in VMS
5262
5263 =item IEEE-format Floating Point Default on OpenVMS Alpha
5264
5265 =item New Unicode Properties
5266
5267 =item REF(...) Instead Of SCALAR(...)
5268
5269 =item pack/unpack D/F recycled
5270
5271 =item Deprecations
5272
5273 =back
5274
5275 =item Core Enhancements
5276
5277 =over 4
5278
5279 =item PerlIO is Now The Default
5280
5281 =item Restricted Hashes
5282
5283 =item Safe Signals
5284
5285 =item Unicode Overhaul
5286
5287 =item Understanding of Numbers
5288
5289 =item Arrays now always interpolate into double-quoted strings [561]
5290
5291 =item Miscellaneous Changes
5292
5293 =back
5294
5295 =item Modules and Pragmata
5296
5297 =over 4
5298
5299 =item New Modules and Pragmata
5300
5301 =item Updated And Improved Modules and Pragmata
5302
5303 =back
5304
5305 =item Utility Changes
5306
5307 =item New Documentation
5308
5309 =item Performance Enhancements
5310
5311 =item Installation and Configuration Improvements
5312
5313 =over 4
5314
5315 =item Generic Improvements
5316
5317 =item New Or Improved Platforms
5318
5319 =back
5320
5321 =item Selected Bug Fixes
5322
5323 =over 4
5324
5325 =item Platform Specific Changes and Fixes
5326
5327 =back
5328
5329 =item New or Changed Diagnostics
5330
5331 =item Changed Internals
5332
5333 =item Security Vulnerability Closed [561]
5334
5335 =item New Tests
5336
5337 =item Known Problems
5338
5339 =over 4
5340
5341 =item AIX
5342
5343 =item Alpha systems with old gccs fail several tests
5344
5345 =item AmigaOS
5346
5347 =item BeOS
5348
5349 =item Cygwin "unable to remap"
5350
5351 =item ext/threads/t/libc
5352
5353 =item FreeBSD built with ithreads coredumps reading large directories
5354
5355 =item FreeBSD Failing locale Test 117 For ISO 8859-15 Locales
5356
5357 =item IRIX fails ext/List/Util/t/shuffle.t
5358
5359 =item Modifying $_ Inside for(..)
5360
5361 =item mod_perl 1.26 Doesn't Build With Threaded Perl
5362
5363 =item lib/ftmp-security tests warn 'system possibly insecure'
5364
5365 =item HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5366
5367 =item Linux with glibc 2.2.5 fails t/op/int subtest #6 with -Duse64bitint
5368
5369 =item Linux With Sfio Fails op/misc Test 48
5370
5371 =item libwww-perl (LWP) fails base/date #51
5372
5373 =item Mac OS X
5374
5375 =item OS/2 Test Failures
5376
5377 =item op/sprintf tests 91, 129, and 130
5378
5379 =item Solaris 2.5
5380
5381 =item Solaris x86 Fails Tests With -Duse64bitint
5382
5383 =item SUPER-UX (NEC SX)
5384
5385 =item PDL failing some tests
5386
5387 =item Term::ReadKey not working on Win32
5388
5389 =item Failure of Thread (5.005-style) tests
5390
5391 =item Timing problems
5392
5393 =item Unicode in package/class and subroutine names does not work
5394
5395 =item UNICOS/mk
5396
5397 =item UTS
5398
5399 =item VOS (Stratus)
5400
5401 =item VMS
5402
5403 =item Win32
5404
5405 =item XML::Parser not working
5406
5407 =item z/OS (OS/390)
5408
5409 =item Localising Tied Arrays and Hashes Is Broken
5410
5411 =item Self-tying Problems
5412
5413 =item Tied/Magical Array/Hash Elements Do Not Autovivify
5414
5415 =item Building Extensions Can Fail Because Of Largefiles
5416
5417 =item Unicode Support on EBCDIC Still Spotty
5418
5419 =item The Compiler Suite Is Still Very Experimental
5420
5421 =item The Long Double Support Is Still Experimental
5422
5423 =item Seen In Perl 5.7 But Gone Now
5424
5425 =back
5426
5427 =item Reporting Bugs
5428
5429 =item SEE ALSO
5430
5431 =item HISTORY
5432
5433 =back
5434
5435 =head2 perl572delta - what's new for perl v5.7.2
5436
5437 =over 4
5438
5439 =item DESCRIPTION
5440
5441 =item Security Vulnerability Closed
5442
5443 =item Incompatible Changes
5444
5445 =over 4
5446
5447 =item 64-bit platforms and malloc
5448
5449 =item AIX Dynaloading
5450
5451 =item Socket Extension Dynamic in VMS
5452
5453 =item Different Definition of the Unicode Character Classes \p{In...}
5454
5455 =item Deprecations
5456
5457 =back
5458
5459 =item Core Enhancements
5460
5461 =item Modules and Pragmata
5462
5463 =over 4
5464
5465 =item New Modules and Distributions
5466
5467 =item Updated And Improved Modules and Pragmata
5468
5469 =back
5470
5471 =item Utility Changes
5472
5473 =item New Documentation
5474
5475 =item Installation and Configuration Improvements
5476
5477 =over 4
5478
5479 =item New Or Improved Platforms
5480
5481 =item Generic Improvements
5482
5483 =back
5484
5485 =item Selected Bug Fixes
5486
5487 =over 4
5488
5489 =item Platform Specific Changes and Fixes
5490
5491 =back
5492
5493 =item New or Changed Diagnostics
5494
5495 =item Source Code Enhancements
5496
5497 =over 4
5498
5499 =item MAGIC constants
5500
5501 =item Better commented code
5502
5503 =item Regex pre-/post-compilation items matched up
5504
5505 =item gcc -Wall
5506
5507 =back
5508
5509 =item New Tests
5510
5511 =item Known Problems
5512
5513 =over 4
5514
5515 =item AIX
5516
5517 =item Amiga Perl Invoking Mystery
5518
5519 =item lib/ftmp-security tests warn 'system possibly insecure'
5520
5521 =item Cygwin intermittent failures of lib/Memoize/t/expire_file 11 and 12
5522
5523 =item HP-UX lib/io_multihomed Fails When LP64-Configured
5524
5525 =item  HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5526
5527 =item Linux With Sfio Fails op/misc Test 48
5528
5529 =item OS/390
5530
5531 =item op/sprintf tests 129 and 130
5532
5533 =item  Failure of Thread tests
5534
5535 =item UNICOS
5536
5537 =item UTS
5538
5539 =item VMS
5540
5541 =item Win32
5542
5543 =item Localising a Tied Variable Leaks Memory
5544
5545 =item Self-tying of Arrays and Hashes Is Forbidden
5546
5547 =item Variable Attributes are not Currently Usable for Tieing
5548
5549 =item Building Extensions Can Fail Because Of Largefiles
5550
5551 =item The Compiler Suite Is Still Experimental
5552
5553 =item The Long Double Support is Still Experimental
5554
5555 =back
5556
5557 =item Reporting Bugs
5558
5559 =item SEE ALSO
5560
5561 =item HISTORY
5562
5563 =back
5564
5565 =head2 perl571delta - what's new for perl v5.7.1
5566
5567 =over 4
5568
5569 =item DESCRIPTION
5570
5571 =item Security Vulnerability Closed
5572
5573 =item Incompatible Changes
5574
5575 =item Core Enhancements
5576
5577 =over 4
5578
5579 =item AUTOLOAD Is Now Lvaluable
5580
5581 =item PerlIO is Now The Default
5582
5583 =item Signals Are Now Safe
5584
5585 =back
5586
5587 =item Modules and Pragmata
5588
5589 =over 4
5590
5591 =item New Modules
5592
5593 =item Updated And Improved Modules and Pragmata
5594
5595 =back
5596
5597 =item Performance Enhancements
5598
5599 =item Utility Changes
5600
5601 =item New Documentation
5602
5603 =over 4
5604
5605 =item perlclib
5606
5607 =item perliol
5608
5609 =item README.aix
5610
5611 =item README.bs2000
5612
5613 =item README.macos
5614
5615 =item README.mpeix
5616
5617 =item README.solaris
5618
5619 =item README.vos
5620
5621 =item Porting/repository.pod
5622
5623 =back
5624
5625 =item Installation and Configuration Improvements
5626
5627 =over 4
5628
5629 =item New Or Improved Platforms
5630
5631 =item Generic Improvements
5632
5633 d_cmsghdr, d_fcntl_can_lock, d_fsync, d_getitimer, d_getpagsz, d_msghdr_s,
5634 need_va_copy, d_readv, d_recvmsg, d_sendmsg, sig_size, d_sockatmark,
5635 d_strtoq, d_u32align, d_ualarm, d_usleep
5636
5637 =back
5638
5639 =item Selected Bug Fixes
5640
5641 =over 4
5642
5643 =item Platform Specific Changes and Fixes
5644
5645 =back
5646
5647 =item New or Changed Diagnostics
5648
5649 =item Changed Internals
5650
5651 =item New Tests
5652
5653 =item Known Problems
5654
5655 =over 4
5656
5657 =item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
5658
5659 =item lib/ftmp-security tests warn 'system possibly insecure'
5660
5661 =item lib/io_multihomed Fails In LP64-Configured HP-UX
5662
5663 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5664
5665 =item lib/b test 19
5666
5667 =item Linux With Sfio Fails op/misc Test 48
5668
5669 =item sigaction test 13 in VMS
5670
5671 =item sprintf tests 129 and 130
5672
5673 =item  Failure of Thread tests
5674
5675 =item Localising a Tied Variable Leaks Memory
5676
5677 =item Self-tying of Arrays and Hashes Is Forbidden
5678
5679 =item Building Extensions Can Fail Because Of Largefiles
5680
5681 =item The Compiler Suite Is Still Experimental
5682
5683 =back
5684
5685 =item Reporting Bugs
5686
5687 =item SEE ALSO
5688
5689 =item HISTORY
5690
5691 =back
5692
5693 =head2 perl570delta - what's new for perl v5.7.0
5694
5695 =over 4
5696
5697 =item DESCRIPTION
5698
5699 =item Security Vulnerability Closed
5700
5701 =item Incompatible Changes
5702
5703 =item Core Enhancements
5704
5705 =item Modules and Pragmata
5706
5707 =over 4
5708
5709 =item New Modules
5710
5711 =item Updated And Improved Modules and Pragmata
5712
5713 =back
5714
5715 =item Utility Changes
5716
5717 =item New Documentation
5718
5719 =item Performance Enhancements
5720
5721 =item Installation and Configuration Improvements
5722
5723 =over 4
5724
5725 =item Generic Improvements
5726
5727 =back
5728
5729 =item Selected Bug Fixes
5730
5731 =over 4
5732
5733 =item Platform Specific Changes and Fixes
5734
5735 =back
5736
5737 =item New or Changed Diagnostics
5738
5739 =item Changed Internals
5740
5741 =item Known Problems
5742
5743 =over 4
5744
5745 =item Unicode Support Still Far From Perfect
5746
5747 =item EBCDIC Still A Lost Platform
5748
5749 =item Building Extensions Can Fail Because Of Largefiles
5750
5751 =item ftmp-security tests warn 'system possibly insecure'
5752
5753 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5754
5755 =item Long Doubles Still Don't Work In Solaris
5756
5757 =item Linux With Sfio Fails op/misc Test 48
5758
5759 =item Storable tests fail in some platforms
5760
5761 =item Threads Are Still Experimental
5762
5763 =item The Compiler Suite Is Still Experimental
5764
5765 =back
5766
5767 =item Reporting Bugs
5768
5769 =item SEE ALSO
5770
5771 =item HISTORY
5772
5773 =back
5774
5775 =head2 perl561delta - what's new for perl v5.6.x
5776
5777 =over 4
5778
5779 =item DESCRIPTION
5780
5781 =item Summary of changes between 5.6.0 and 5.6.1
5782
5783 =over 4
5784
5785 =item Security Issues
5786
5787 =item Core bug fixes
5788
5789 C<UNIVERSAL::isa()>, Memory leaks, Numeric conversions, qw(a\\b), caller(),
5790 Bugs in regular expressions, "slurp" mode, Autovivification of symbolic
5791 references to special variables, Lexical warnings, Spurious warnings and
5792 errors, glob(), Tainting, sort(), #line directives, Subroutine prototypes,
5793 map(), Debugger, PERL5OPT, chop(), Unicode support, 64-bit support,
5794 Compiler, Lvalue subroutines, IO::Socket, File::Find, xsubpp, C<no
5795 Module;>, Tests
5796
5797 =item Core features
5798
5799 =item Configuration issues
5800
5801 =item Documentation
5802
5803 =item Bundled modules
5804
5805 B::Concise, File::Temp, Pod::LaTeX, Pod::Text::Overstrike, CGI, CPAN,
5806 Class::Struct, DB_File, Devel::Peek, File::Find, Getopt::Long, IO::Poll,
5807 IPC::Open3, Math::BigFloat, Math::Complex, Net::Ping, Opcode, Pod::Parser,
5808 Pod::Text, SDBM_File, Sys::Syslog, Tie::RefHash, Tie::SubstrHash
5809
5810 =item Platform-specific improvements
5811
5812 NCR MP-RAS, NonStop-UX
5813
5814 =back
5815
5816 =item Core Enhancements
5817
5818 =over 4
5819
5820 =item Interpreter cloning, threads, and concurrency
5821
5822 =item Lexically scoped warning categories
5823
5824 =item Unicode and UTF-8 support
5825
5826 =item Support for interpolating named characters
5827
5828 =item "our" declarations
5829
5830 =item Support for strings represented as a vector of ordinals
5831
5832 =item Improved Perl version numbering system
5833
5834 =item New syntax for declaring subroutine attributes
5835
5836 =item File and directory handles can be autovivified
5837
5838 =item open() with more than two arguments
5839
5840 =item 64-bit support
5841
5842 =item Large file support
5843
5844 =item Long doubles
5845
5846 =item "more bits"
5847
5848 =item Enhanced support for sort() subroutines
5849
5850 =item C<sort $coderef @foo> allowed
5851
5852 =item File globbing implemented internally
5853
5854 =item Support for CHECK blocks
5855
5856 =item POSIX character class syntax [: :] supported
5857
5858 =item Better pseudo-random number generator
5859
5860 =item Improved C<qw//> operator
5861
5862 =item Better worst-case behavior of hashes
5863
5864 =item pack() format 'Z' supported
5865
5866 =item pack() format modifier '!' supported
5867
5868 =item pack() and unpack() support counted strings
5869
5870 =item Comments in pack() templates
5871
5872 =item Weak references
5873
5874 =item Binary numbers supported
5875
5876 =item Lvalue subroutines
5877
5878 =item Some arrows may be omitted in calls through references
5879
5880 =item Boolean assignment operators are legal lvalues
5881
5882 =item exists() is supported on subroutine names
5883
5884 =item exists() and delete() are supported on array elements
5885
5886 =item Pseudo-hashes work better
5887
5888 =item Automatic flushing of output buffers
5889
5890 =item Better diagnostics on meaningless filehandle operations
5891
5892 =item Where possible, buffered data discarded from duped input filehandle
5893
5894 =item eof() has the same old magic as <>
5895
5896 =item binmode() can be used to set :crlf and :raw modes
5897
5898 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
5899
5900 =item system(), backticks and pipe open now reflect exec() failure
5901
5902 =item Improved diagnostics
5903
5904 =item Diagnostics follow STDERR
5905
5906 =item More consistent close-on-exec behavior
5907
5908 =item syswrite() ease-of-use
5909
5910 =item Better syntax checks on parenthesized unary operators
5911
5912 =item Bit operators support full native integer width
5913
5914 =item Improved security features
5915
5916 =item More functional bareword prototype (*)
5917
5918 =item C<require> and C<do> may be overridden
5919
5920 =item $^X variables may now have names longer than one character
5921
5922 =item New variable $^C reflects C<-c> switch
5923
5924 =item New variable $^V contains Perl version as a string
5925
5926 =item Optional Y2K warnings
5927
5928 =item Arrays now always interpolate into double-quoted strings
5929
5930 =back
5931
5932 =item Modules and Pragmata
5933
5934 =over 4
5935
5936 =item Modules
5937
5938 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
5939 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
5940 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
5941 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
5942 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
5943 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
5944 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
5945 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
5946
5947 =item Pragmata
5948
5949 =back
5950
5951 =item Utility Changes
5952
5953 =over 4
5954
5955 =item dprofpp
5956
5957 =item find2perl
5958
5959 =item h2xs
5960
5961 =item perlcc
5962
5963 =item perldoc
5964
5965 =item The Perl Debugger
5966
5967 =back
5968
5969 =item Improved Documentation
5970
5971 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
5972 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
5973 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
5974 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
5975
5976 =item Performance enhancements
5977
5978 =over 4
5979
5980 =item Simple sort() using { $a <=> $b } and the like are optimized
5981
5982 =item Optimized assignments to lexical variables
5983
5984 =item Faster subroutine calls
5985
5986 =item delete(), each(), values() and hash iteration are faster
5987
5988 =back
5989
5990 =item Installation and Configuration Improvements
5991
5992 =over 4
5993
5994 =item -Dusethreads means something different
5995
5996 =item New Configure flags
5997
5998 =item Threadedness and 64-bitness now more daring
5999
6000 =item Long Doubles
6001
6002 =item -Dusemorebits
6003
6004 =item -Duselargefiles
6005
6006 =item installusrbinperl
6007
6008 =item SOCKS support
6009
6010 =item C<-A> flag
6011
6012 =item Enhanced Installation Directories
6013
6014 =item gcc automatically tried if 'cc' does not seem to be working
6015
6016 =back
6017
6018 =item Platform specific changes
6019
6020 =over 4
6021
6022 =item Supported platforms
6023
6024 =item DOS
6025
6026 =item OS390 (OpenEdition MVS)
6027
6028 =item VMS
6029
6030 =item Win32
6031
6032 =back
6033
6034 =item Significant bug fixes
6035
6036 =over 4
6037
6038 =item <HANDLE> on empty files
6039
6040 =item C<eval '...'> improvements
6041
6042 =item All compilation errors are true errors
6043
6044 =item Implicitly closed filehandles are safer
6045
6046 =item Behavior of list slices is more consistent
6047
6048 =item C<(\$)> prototype and C<$foo{a}>
6049
6050 =item C<goto &sub> and AUTOLOAD
6051
6052 =item C<-bareword> allowed under C<use integer>
6053
6054 =item Failures in DESTROY()
6055
6056 =item Locale bugs fixed
6057
6058 =item Memory leaks
6059
6060 =item Spurious subroutine stubs after failed subroutine calls
6061
6062 =item Taint failures under C<-U>
6063
6064 =item END blocks and the C<-c> switch
6065
6066 =item Potential to leak DATA filehandles
6067
6068 =back
6069
6070 =item New or Changed Diagnostics
6071
6072 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6073 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6074 / cannot take a count, / must be followed by a, A or Z, / must be followed
6075 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6076 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6077 passed through, /%s/ should probably be written as "%s", %s() called too
6078 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6079 argument is not a HASH or ARRAY element or slice, %s argument is not a
6080 subroutine name, %s package attribute may clash with future reserved word:
6081 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6082 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6083 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6084 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6085 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6086 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6087 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6088 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6089 weaken a nonreference, Character class [:%s:] unknown, Character class
6090 syntax [%s] belongs inside character classes, Constant is not %s reference,
6091 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6092 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6093 "local" instead of "our"?), Document contains no data, entering effective
6094 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6095 output, flock() on closed filehandle %s, Global symbol "%s" requires
6096 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6097 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6098 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6099 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6100 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6101 separator character %s in attribute list, Invalid separator character %s in
6102 subroutine attribute list, leaving effective %s failed, Lvalue subs
6103 returning %s not implemented yet, Method %s not permitted, Missing
6104 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6105 No %s specified for -%c, No package name allowed for variable %s in "our",
6106 No space allowed after -%c, no UTC offset information; assuming local time
6107 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6108 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6109 around "%s" list, Possible unintended interpolation of %s in string,
6110 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6111 instead, Premature end of script headers, Repeat count in pack overflows,
6112 Repeat count in unpack overflows, realloc() of freed memory ignored,
6113 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6114 zero-length expression, switching effective %s is not implemented, This
6115 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6116 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6117 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6118 escape \\%c passed through, Unterminated attribute parameter in attribute
6119 list, Unterminated attribute list, Unterminated attribute parameter in
6120 subroutine attribute list, Unterminated subroutine attribute list, Value of
6121 CLI symbol "%s" too long, Version number must be a constant number
6122
6123 =item New tests
6124
6125 =item Incompatible Changes
6126
6127 =over 4
6128
6129 =item Perl Source Incompatibilities
6130
6131 CHECK is a new keyword, Treatment of list slices of undef has changed,
6132 Format of $English::PERL_VERSION is different, Literals of the form
6133 C<1.2.3> parse differently, Possibly changed pseudo-random number
6134 generator, Hashing function for hash keys has changed, C<undef> fails on
6135 read only values, Close-on-exec bit may be set on pipe and socket handles,
6136 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6137 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6138 Text of some diagnostic output has changed, C<%@> has been removed,
6139 Parenthesized not() behaves like a list operator, Semantics of bareword
6140 prototype C<(*)> have changed, Semantics of bit operators may have changed
6141 on 64-bit platforms, More builtins taint their results
6142
6143 =item C Source Incompatibilities
6144
6145 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6146
6147 =item Compatible C Source API Changes
6148
6149 C<PATCHLEVEL> is now C<PERL_VERSION>
6150
6151 =item Binary Incompatibilities
6152
6153 =back
6154
6155 =item Known Problems
6156
6157 =over 4
6158
6159 =item Localizing a tied hash element may leak memory
6160
6161 =item Known test failures
6162
6163 =item EBCDIC platforms not fully supported
6164
6165 =item UNICOS/mk CC failures during Configure run
6166
6167 =item Arrow operator and arrays
6168
6169 =item Experimental features
6170
6171 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6172 pseudo-hash data type, The Compiler suite, Internal implementation of file
6173 globbing, The DB module, The regular expression code constructs:
6174
6175 =back
6176
6177 =item Obsolete Diagnostics
6178
6179 Character class syntax [: :] is reserved for future extensions, Ill-formed
6180 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6181 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6182 to mean "${$}<digit>" is deprecated
6183
6184 =item Reporting Bugs
6185
6186 =item SEE ALSO
6187
6188 =item HISTORY
6189
6190 =back
6191
6192 =head2 perl56delta - what's new for perl v5.6.0
6193
6194 =over 4
6195
6196 =item DESCRIPTION
6197
6198 =item Core Enhancements
6199
6200 =over 4
6201
6202 =item Interpreter cloning, threads, and concurrency
6203
6204 =item Lexically scoped warning categories
6205
6206 =item Unicode and UTF-8 support
6207
6208 =item Support for interpolating named characters
6209
6210 =item "our" declarations
6211
6212 =item Support for strings represented as a vector of ordinals
6213
6214 =item Improved Perl version numbering system
6215
6216 =item New syntax for declaring subroutine attributes
6217
6218 =item File and directory handles can be autovivified
6219
6220 =item open() with more than two arguments
6221
6222 =item 64-bit support
6223
6224 =item Large file support
6225
6226 =item Long doubles
6227
6228 =item "more bits"
6229
6230 =item Enhanced support for sort() subroutines
6231
6232 =item C<sort $coderef @foo> allowed
6233
6234 =item File globbing implemented internally
6235
6236 =item Support for CHECK blocks
6237
6238 =item POSIX character class syntax [: :] supported
6239
6240 =item Better pseudo-random number generator
6241
6242 =item Improved C<qw//> operator
6243
6244 =item Better worst-case behavior of hashes
6245
6246 =item pack() format 'Z' supported
6247
6248 =item pack() format modifier '!' supported
6249
6250 =item pack() and unpack() support counted strings
6251
6252 =item Comments in pack() templates
6253
6254 =item Weak references
6255
6256 =item Binary numbers supported
6257
6258 =item Lvalue subroutines
6259
6260 =item Some arrows may be omitted in calls through references
6261
6262 =item Boolean assignment operators are legal lvalues
6263
6264 =item exists() is supported on subroutine names
6265
6266 =item exists() and delete() are supported on array elements
6267
6268 =item Pseudo-hashes work better
6269
6270 =item Automatic flushing of output buffers
6271
6272 =item Better diagnostics on meaningless filehandle operations
6273
6274 =item Where possible, buffered data discarded from duped input filehandle
6275
6276 =item eof() has the same old magic as <>
6277
6278 =item binmode() can be used to set :crlf and :raw modes
6279
6280 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
6281
6282 =item system(), backticks and pipe open now reflect exec() failure
6283
6284 =item Improved diagnostics
6285
6286 =item Diagnostics follow STDERR
6287
6288 =item More consistent close-on-exec behavior
6289
6290 =item syswrite() ease-of-use
6291
6292 =item Better syntax checks on parenthesized unary operators
6293
6294 =item Bit operators support full native integer width
6295
6296 =item Improved security features
6297
6298 =item More functional bareword prototype (*)
6299
6300 =item C<require> and C<do> may be overridden
6301
6302 =item $^X variables may now have names longer than one character
6303
6304 =item New variable $^C reflects C<-c> switch
6305
6306 =item New variable $^V contains Perl version as a string
6307
6308 =item Optional Y2K warnings
6309
6310 =item Arrays now always interpolate into double-quoted strings
6311
6312 =back
6313
6314 =item Modules and Pragmata
6315
6316 =over 4
6317
6318 =item Modules
6319
6320 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6321 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6322 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6323 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6324 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6325 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6326 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6327 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6328
6329 =item Pragmata
6330
6331 =back
6332
6333 =item Utility Changes
6334
6335 =over 4
6336
6337 =item dprofpp
6338
6339 =item find2perl
6340
6341 =item h2xs
6342
6343 =item perlcc
6344
6345 =item perldoc
6346
6347 =item The Perl Debugger
6348
6349 =back
6350
6351 =item Improved Documentation
6352
6353 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6354 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6355 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6356 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6357
6358 =item Performance enhancements
6359
6360 =over 4
6361
6362 =item Simple sort() using { $a <=> $b } and the like are optimized
6363
6364 =item Optimized assignments to lexical variables
6365
6366 =item Faster subroutine calls
6367
6368 =item delete(), each(), values() and hash iteration are faster
6369
6370 =back
6371
6372 =item Installation and Configuration Improvements
6373
6374 =over 4
6375
6376 =item -Dusethreads means something different
6377
6378 =item New Configure flags
6379
6380 =item Threadedness and 64-bitness now more daring
6381
6382 =item Long Doubles
6383
6384 =item -Dusemorebits
6385
6386 =item -Duselargefiles
6387
6388 =item installusrbinperl
6389
6390 =item SOCKS support
6391
6392 =item C<-A> flag
6393
6394 =item Enhanced Installation Directories
6395
6396 =back
6397
6398 =item Platform specific changes
6399
6400 =over 4
6401
6402 =item Supported platforms
6403
6404 =item DOS
6405
6406 =item OS390 (OpenEdition MVS)
6407
6408 =item VMS
6409
6410 =item Win32
6411
6412 =back
6413
6414 =item Significant bug fixes
6415
6416 =over 4
6417
6418 =item <HANDLE> on empty files
6419
6420 =item C<eval '...'> improvements
6421
6422 =item All compilation errors are true errors
6423
6424 =item Implicitly closed filehandles are safer
6425
6426 =item Behavior of list slices is more consistent
6427
6428 =item C<(\$)> prototype and C<$foo{a}>
6429
6430 =item C<goto &sub> and AUTOLOAD
6431
6432 =item C<-bareword> allowed under C<use integer>
6433
6434 =item Failures in DESTROY()
6435
6436 =item Locale bugs fixed
6437
6438 =item Memory leaks
6439
6440 =item Spurious subroutine stubs after failed subroutine calls
6441
6442 =item Taint failures under C<-U>
6443
6444 =item END blocks and the C<-c> switch
6445
6446 =item Potential to leak DATA filehandles
6447
6448 =back
6449
6450 =item New or Changed Diagnostics
6451
6452 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6453 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6454 / cannot take a count, / must be followed by a, A or Z, / must be followed
6455 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6456 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6457 passed through, /%s/ should probably be written as "%s", %s() called too
6458 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6459 argument is not a HASH or ARRAY element or slice, %s argument is not a
6460 subroutine name, %s package attribute may clash with future reserved word:
6461 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6462 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6463 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6464 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6465 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6466 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6467 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6468 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6469 weaken a nonreference, Character class [:%s:] unknown, Character class
6470 syntax [%s] belongs inside character classes, Constant is not %s reference,
6471 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6472 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6473 "local" instead of "our"?), Document contains no data, entering effective
6474 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6475 output, flock() on closed filehandle %s, Global symbol "%s" requires
6476 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6477 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6478 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6479 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6480 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6481 separator character %s in attribute list, Invalid separator character %s in
6482 subroutine attribute list, leaving effective %s failed, Lvalue subs
6483 returning %s not implemented yet, Method %s not permitted, Missing
6484 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6485 No %s specified for -%c, No package name allowed for variable %s in "our",
6486 No space allowed after -%c, no UTC offset information; assuming local time
6487 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6488 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6489 around "%s" list, Possible unintended interpolation of %s in string,
6490 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6491 instead, Premature end of script headers, Repeat count in pack overflows,
6492 Repeat count in unpack overflows, realloc() of freed memory ignored,
6493 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6494 zero-length expression, switching effective %s is not implemented, This
6495 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6496 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6497 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6498 escape \\%c passed through, Unterminated attribute parameter in attribute
6499 list, Unterminated attribute list, Unterminated attribute parameter in
6500 subroutine attribute list, Unterminated subroutine attribute list, Value of
6501 CLI symbol "%s" too long, Version number must be a constant number
6502
6503 =item New tests
6504
6505 =item Incompatible Changes
6506
6507 =over 4
6508
6509 =item Perl Source Incompatibilities
6510
6511 CHECK is a new keyword, Treatment of list slices of undef has changed,
6512 Format of $English::PERL_VERSION is different, Literals of the form
6513 C<1.2.3> parse differently, Possibly changed pseudo-random number
6514 generator, Hashing function for hash keys has changed, C<undef> fails on
6515 read only values, Close-on-exec bit may be set on pipe and socket handles,
6516 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6517 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6518 Text of some diagnostic output has changed, C<%@> has been removed,
6519 Parenthesized not() behaves like a list operator, Semantics of bareword
6520 prototype C<(*)> have changed, Semantics of bit operators may have changed
6521 on 64-bit platforms, More builtins taint their results
6522
6523 =item C Source Incompatibilities
6524
6525 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6526
6527 =item Compatible C Source API Changes
6528
6529 C<PATCHLEVEL> is now C<PERL_VERSION>
6530
6531 =item Binary Incompatibilities
6532
6533 =back
6534
6535 =item Known Problems
6536
6537 =over 4
6538
6539 =item Thread test failures
6540
6541 =item EBCDIC platforms not supported
6542
6543 =item In 64-bit HP-UX the lib/io_multihomed test may hang
6544
6545 =item NEXTSTEP 3.3 POSIX test failure
6546
6547 =item Tru64 (aka Digital UNIX, aka DEC OSF/1) lib/sdbm test failure with
6548 gcc
6549
6550 =item UNICOS/mk CC failures during Configure run
6551
6552 =item Arrow operator and arrays
6553
6554 =item Experimental features
6555
6556 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6557 pseudo-hash data type, The Compiler suite, Internal implementation of file
6558 globbing, The DB module, The regular expression code constructs:
6559
6560 =back
6561
6562 =item Obsolete Diagnostics
6563
6564 Character class syntax [: :] is reserved for future extensions, Ill-formed
6565 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6566 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6567 to mean "${$}<digit>" is deprecated
6568
6569 =item Reporting Bugs
6570
6571 =item SEE ALSO
6572
6573 =item HISTORY
6574
6575 =back
6576
6577 =head2 perl5005delta - what's new for perl5.005
6578
6579 =over 4
6580
6581 =item DESCRIPTION
6582
6583 =item About the new versioning system
6584
6585 =item Incompatible Changes
6586
6587 =over 4
6588
6589 =item WARNING:  This version is not binary compatible with Perl 5.004.
6590
6591 =item Default installation structure has changed
6592
6593 =item Perl Source Compatibility
6594
6595 =item C Source Compatibility
6596
6597 =item Binary Compatibility
6598
6599 =item Security fixes may affect compatibility
6600
6601 =item Relaxed new mandatory warnings introduced in 5.004
6602
6603 =item Licensing
6604
6605 =back
6606
6607 =item Core Changes
6608
6609 =over 4
6610
6611 =item Threads
6612
6613 =item Compiler
6614
6615 =item Regular Expressions
6616
6617 Many new and improved optimizations, Many bug fixes, New regular expression
6618 constructs, New operator for precompiled regular expressions, Other
6619 improvements, Incompatible changes
6620
6621 =item   Improved malloc()
6622
6623 =item Quicksort is internally implemented
6624
6625 =item Reliable signals
6626
6627 =item Reliable stack pointers
6628
6629 =item More generous treatment of carriage returns
6630
6631 =item Memory leaks
6632
6633 =item Better support for multiple interpreters
6634
6635 =item Behavior of local() on array and hash elements is now well-defined
6636
6637 =item C<%!> is transparently tied to the L<Errno> module
6638
6639 =item Pseudo-hashes are supported
6640
6641 =item C<EXPR foreach EXPR> is supported
6642
6643 =item Keywords can be globally overridden
6644
6645 =item C<$^E> is meaningful on Win32
6646
6647 =item C<foreach (1..1000000)> optimized
6648
6649 =item C<Foo::> can be used as implicitly quoted package name
6650
6651 =item C<exists $Foo::{Bar::}> tests existence of a package
6652
6653 =item Better locale support
6654
6655 =item Experimental support for 64-bit platforms
6656
6657 =item prototype() returns useful results on builtins
6658
6659 =item Extended support for exception handling
6660
6661 =item Re-blessing in DESTROY() supported for chaining DESTROY() methods
6662
6663 =item All C<printf> format conversions are handled internally
6664
6665 =item New C<INIT> keyword
6666
6667 =item New C<lock> keyword
6668
6669 =item New C<qr//> operator
6670
6671 =item C<our> is now a reserved word
6672
6673 =item Tied arrays are now fully supported
6674
6675 =item Tied handles support is better
6676
6677 =item 4th argument to substr
6678
6679 =item Negative LENGTH argument to splice
6680
6681 =item Magic lvalues are now more magical
6682
6683 =item <> now reads in records
6684
6685 =back
6686
6687 =item Supported Platforms
6688
6689 =over 4
6690
6691 =item New Platforms
6692
6693 =item Changes in existing support
6694
6695 =back
6696
6697 =item Modules and Pragmata
6698
6699 =over 4
6700
6701 =item New Modules
6702
6703 B, Data::Dumper, Dumpvalue, Errno, File::Spec, ExtUtils::Installed,
6704 ExtUtils::Packlist, Fatal, IPC::SysV, Test, Tie::Array, Tie::Handle,
6705 Thread, attrs, fields, re
6706
6707 =item Changes in existing modules
6708
6709 Benchmark, Carp, CGI, Fcntl, Math::Complex, Math::Trig, POSIX, DB_File,
6710 MakeMaker, CPAN, Cwd
6711
6712 =back
6713
6714 =item Utility Changes
6715
6716 =item Documentation Changes
6717
6718 =item New Diagnostics
6719
6720 Ambiguous call resolved as CORE::%s(), qualify as such or use &, Bad index
6721 while coercing array into hash, Bareword "%s" refers to nonexistent
6722 package, Can't call method "%s" on an undefined value, Can't check
6723 filesystem of script "%s" for nosuid, Can't coerce array into hash, Can't
6724 goto subroutine from an eval-string, Can't localize pseudo-hash element,
6725 Can't use %%! because Errno.pm is not available, Cannot find an opnumber
6726 for "%s", Character class syntax [. .] is reserved for future extensions,
6727 Character class syntax [: :] is reserved for future extensions, Character
6728 class syntax [= =] is reserved for future extensions, %s: Eval-group in
6729 insecure regular expression, %s: Eval-group not allowed, use re 'eval', %s:
6730 Eval-group not allowed at run time, Explicit blessing to '' (assuming
6731 package main), Illegal hex digit ignored, No such array field, No such
6732 field "%s" in variable %s of type %s, Out of memory during ridiculously
6733 large request, Range iterator outside integer range, Recursive inheritance
6734 detected while looking for method '%s' %s, Reference found where even-sized
6735 list expected, Undefined value assigned to typeglob, Use of reserved word
6736 "%s" is deprecated, perl: warning: Setting locale failed
6737
6738 =item Obsolete Diagnostics
6739
6740 Can't mktemp(), Can't write to temp file for B<-e>: %s, Cannot open
6741 temporary file, regexp too big
6742
6743 =item Configuration Changes
6744
6745 =item BUGS
6746
6747 =item SEE ALSO
6748
6749 =item HISTORY
6750
6751 =back
6752
6753 =head2 perl5004delta - what's new for perl5.004
6754
6755 =over 4
6756
6757 =item DESCRIPTION
6758
6759 =item Supported Environments
6760
6761 =item Core Changes
6762
6763 =over 4
6764
6765 =item List assignment to %ENV works
6766
6767 =item Change to "Can't locate Foo.pm in @INC" error
6768
6769 =item Compilation option: Binary compatibility with 5.003
6770
6771 =item $PERL5OPT environment variable
6772
6773 =item Limitations on B<-M>, B<-m>, and B<-T> options
6774
6775 =item More precise warnings
6776
6777 =item Deprecated: Inherited C<AUTOLOAD> for non-methods
6778
6779 =item Previously deprecated %OVERLOAD is no longer usable
6780
6781 =item Subroutine arguments created only when they're modified
6782
6783 =item Group vector changeable with C<$)>
6784
6785 =item Fixed parsing of $$<digit>, &$<digit>, etc.
6786
6787 =item Fixed localization of $<digit>, $&, etc.
6788
6789 =item No resetting of $. on implicit close
6790
6791 =item C<wantarray> may return undef
6792
6793 =item C<eval EXPR> determines value of EXPR in scalar context
6794
6795 =item Changes to tainting checks
6796
6797 No glob() or <*>, No spawning if tainted $CDPATH, $ENV, $BASH_ENV, No
6798 spawning if tainted $TERM doesn't look like a terminal name
6799
6800 =item New Opcode module and revised Safe module
6801
6802 =item Embedding improvements
6803
6804 =item Internal change: FileHandle class based on IO::* classes
6805
6806 =item Internal change: PerlIO abstraction interface
6807
6808 =item New and changed syntax
6809
6810 $coderef->(PARAMS)
6811
6812 =item New and changed builtin constants
6813
6814 __PACKAGE__
6815
6816 =item New and changed builtin variables
6817
6818 $^E, $^H, $^M
6819
6820 =item New and changed builtin functions
6821
6822 delete on slices, flock, printf and sprintf, keys as an lvalue, my() in
6823 Control Structures, pack() and unpack(), sysseek(), use VERSION, use Module
6824 VERSION LIST, prototype(FUNCTION), srand, $_ as Default, C<m//gc> does not
6825 reset search position on failure, C<m//x> ignores whitespace before ?*+{},
6826 nested C<sub{}> closures work now, formats work right on changing lexicals
6827
6828 =item New builtin methods
6829
6830 isa(CLASS), can(METHOD), VERSION( [NEED] )
6831
6832 =item TIEHANDLE now supported
6833
6834 TIEHANDLE classname, LIST, PRINT this, LIST, PRINTF this, LIST, READ this
6835 LIST, READLINE this, GETC this, DESTROY this
6836
6837 =item Malloc enhancements
6838
6839 -DPERL_EMERGENCY_SBRK, -DPACK_MALLOC, -DTWO_POT_OPTIMIZE
6840
6841 =item Miscellaneous efficiency enhancements
6842
6843 =back
6844
6845 =item Support for More Operating Systems
6846
6847 =over 4
6848
6849 =item Win32
6850
6851 =item Plan 9
6852
6853 =item QNX
6854
6855 =item AmigaOS
6856
6857 =back
6858
6859 =item Pragmata
6860
6861 use autouse MODULE => qw(sub1 sub2 sub3), use blib, use blib 'dir', use
6862 constant NAME => VALUE, use locale, use ops, use vmsish
6863
6864 =item Modules
6865
6866 =over 4
6867
6868 =item Required Updates
6869
6870 =item Installation directories
6871
6872 =item Module information summary
6873
6874 =item Fcntl
6875
6876 =item IO
6877
6878 =item Math::Complex
6879
6880 =item Math::Trig
6881
6882 =item DB_File
6883
6884 =item Net::Ping
6885
6886 =item Object-oriented overrides for builtin operators
6887
6888 =back
6889
6890 =item Utility Changes
6891
6892 =over 4
6893
6894 =item pod2html
6895
6896 Sends converted HTML to standard output
6897
6898 =item xsubpp
6899
6900 C<void> XSUBs now default to returning nothing
6901
6902 =back
6903
6904 =item C Language API Changes
6905
6906 C<gv_fetchmethod> and C<perl_call_sv>, C<perl_eval_pv>, Extended API for
6907 manipulating hashes
6908
6909 =item Documentation Changes
6910
6911 L<perldelta>, L<perlfaq>, L<perllocale>, L<perltoot>, L<perlapio>,
6912 L<perlmodlib>, L<perldebug>, L<perlsec>
6913
6914 =item New Diagnostics
6915
6916 "my" variable %s masks earlier declaration in same scope, %s argument is
6917 not a HASH element or slice, Allocation too large: %lx, Allocation too
6918 large, Applying %s to %s will act on scalar(%s), Attempt to free
6919 nonexistent shared string, Attempt to use reference as lvalue in substr,
6920 Bareword "%s" refers to nonexistent package, Can't redefine active sort
6921 subroutine %s, Can't use bareword ("%s") as %s ref while "strict refs" in
6922 use, Cannot resolve method `%s' overloading `%s' in package `%s', Constant
6923 subroutine %s redefined, Constant subroutine %s undefined, Copy method did
6924 not return a reference, Died, Exiting pseudo-block via %s, Identifier too
6925 long, Illegal character %s (carriage return), Illegal switch in PERL5OPT:
6926 %s, Integer overflow in hex number, Integer overflow in octal number,
6927 internal error: glob failed, Invalid conversion in %s: "%s", Invalid type
6928 in pack: '%s', Invalid type in unpack: '%s', Name "%s::%s" used only once:
6929 possible typo, Null picture in formline, Offset outside string, Out of
6930 memory!, Out of memory during request for %s, panic: frexp, Possible
6931 attempt to put comments in qw() list, Possible attempt to separate words
6932 with commas, Scalar value @%s{%s} better written as $%s{%s}, Stub found
6933 while resolving method `%s' overloading `%s' in %s, Too late for "B<-T>"
6934 option, untie attempted while %d inner references still exist, Unrecognized
6935 character %s, Unsupported function fork, Use of "$$<digit>" to mean
6936 "${$}<digit>" is deprecated, Value of %s can be "0"; test with defined(),
6937 Variable "%s" may be unavailable, Variable "%s" will not stay shared,
6938 Warning: something's wrong, Ill-formed logical name |%s| in prime_env_iter,
6939 Got an error from DosAllocMem, Malformed PERLLIB_PREFIX, PERL_SH_DIR too
6940 long, Process terminated by SIG%s
6941
6942 =item BUGS
6943
6944 =item SEE ALSO
6945
6946 =item HISTORY
6947
6948 =back
6949
6950 =head2 perlaix, README.aix - Perl version 5 on IBM Unix (AIX) systems
6951
6952 =over 4
6953
6954 =item DESCRIPTION
6955
6956 =over 4
6957
6958 =item Compiling Perl 5 on AIX
6959
6960 =item OS level
6961
6962 =item Building Dynamic Extensions on AIX
6963
6964 =item The IBM ANSI C Compiler
6965
6966 =item Using GNU's gcc for building perl
6967
6968 =item Using Large Files with Perl
6969
6970 =item Threaded Perl
6971
6972 =item 64-bit Perl
6973
6974 =item AIX 4.2 and extensions using C++ with statics
6975
6976 =back
6977
6978 =item AUTHOR
6979
6980 =item DATE
6981
6982 =back
6983
6984 =head2 perlapollo, README.apollo - Perl version 5 on Apollo DomainOS
6985
6986 =over 4
6987
6988 =item DESCRIPTION
6989
6990 =item AUTHOR
6991
6992 =back
6993
6994 =head2 perlamiga - Perl under Amiga OS
6995
6996 =over 4
6997
6998 =item NOTE
6999
7000 =item SYNOPSIS
7001
7002 =back
7003
7004 =over 4
7005
7006 =item DESCRIPTION
7007
7008 =over 4
7009
7010 =item Prerequisites for Compiling Perl on AmigaOS
7011
7012 B<Unix emulation for AmigaOS: ixemul.library>, B<Version of Amiga OS>
7013
7014 =item Starting Perl programs under AmigaOS
7015
7016 =item Shortcomings of Perl under AmigaOS
7017
7018 =back
7019
7020 =item INSTALLATION
7021
7022 =item Accessing documentation
7023
7024 =over 4
7025
7026 =item Manpages for Perl on AmigaOS
7027
7028 =item Perl HTML Documentation on AmigaOS
7029
7030 =item Perl GNU Info Files on AmigaOS
7031
7032 =item Perl LaTeX Documentation on AmigaOS
7033
7034 =back
7035
7036 =item BUILDING PERL ON AMIGAOS
7037
7038 =over 4
7039
7040 =item Build Prerequisites for Perl on AmigaOS
7041
7042 =item Getting the Perl Source for AmigaOS
7043
7044 =item Making Perl on AmigaOS
7045
7046 =item Testing Perl on AmigaOS
7047
7048 =item Installing the built Perl on AmigaOS
7049
7050 =back
7051
7052 =item PERL 5.8.0 BROKEN IN AMIGAOS
7053
7054 =item AUTHORS
7055
7056 =item SEE ALSO
7057
7058 =back
7059
7060 =head2 perlbeos, README.beos - Perl version 5 on BeOS
7061
7062 =over 4
7063
7064 =item DESCRIPTION
7065
7066 =over 4
7067
7068 =item General Issues with Perl on BeOS
7069
7070 =item BeOS Release-specific Notes
7071
7072 R4 x86, R4 PPC
7073
7074 =item Contact Information
7075
7076 =item Update 2002-05-30
7077
7078 =back
7079
7080 =back
7081
7082 =head2 perlbs2000, README.BS2000 - building and installing Perl for BS2000.
7083
7084 =over 4
7085
7086 =item SYNOPSIS
7087
7088 =item DESCRIPTION
7089
7090 =over 4
7091
7092 =item gzip on BS2000
7093
7094 =item bison on BS2000
7095
7096 =item Unpacking Perl Distribution on BS2000
7097
7098 =item Compiling Perl on BS2000
7099
7100 =item Testing Perl on BS2000
7101
7102 =item Installing Perl on BS2000
7103
7104 =item Using Perl in the Posix-Shell of BS2000
7105
7106 =item Using Perl in "native" BS2000
7107
7108 =item Floating point anomalies on BS2000
7109
7110 =back
7111
7112 =item AUTHORS
7113
7114 =item SEE ALSO
7115
7116 =over 4
7117
7118 =item Mailing list
7119
7120 =back
7121
7122 =item HISTORY
7123
7124 =back
7125
7126 =over 4
7127
7128 =item Name
7129
7130 =item Description
7131
7132 =item Build
7133
7134 =over 4
7135
7136 =item Tools & SDK
7137
7138 =item Make
7139
7140 =back
7141
7142 =item Acknowledgements
7143
7144 =item Author
7145
7146 =back
7147
7148 =head2 perlcygwin, README.cygwin - Perl for Cygwin
7149
7150 =over 4
7151
7152 =item SYNOPSIS
7153
7154 =item PREREQUISITES FOR COMPILING PERL ON CYGWIN
7155
7156 =over 4
7157
7158 =item Cygwin = GNU+Cygnus+Windows (Don't leave UNIX without it)
7159
7160 =item Cygwin Configuration
7161
7162 C<PATH>, I<nroff>, Permissions
7163
7164 =back
7165
7166 =item CONFIGURE PERL ON CYGWIN
7167
7168 =over 4
7169
7170 =item Stripping Perl Binaries on Cygwin
7171
7172 =item Optional Libraries for Perl on Cygwin
7173
7174 C<-lcrypt>, C<-lgdbm> (C<use GDBM_File>), C<-ldb> (C<use DB_File>),
7175 C<-lcygipc> (C<use IPC::SysV>), C<-lutil>
7176
7177 =item Configure-time Options for Perl on Cygwin
7178
7179 C<-Uusedl>, C<-Uusemymalloc>, C<-Uuseperlio>, C<-Dusemultiplicity>,
7180 C<-Duse64bitint>, C<-Duselongdouble>, C<-Dusethreads>, C<-Duselargefiles>,
7181 C<-Dmksymlinks>
7182
7183 =item Suspicious Warnings on Cygwin
7184
7185 I<dlsym()>, Win9x and C<d_eofnblk>, Compiler/Preprocessor defines
7186
7187 =back
7188
7189 =item MAKE ON CYGWIN
7190
7191 =over 4
7192
7193 =item Warnings on Cygwin
7194
7195 =item ld2 on Cygwin
7196
7197 =back
7198
7199 =item TEST ON CYGWIN
7200
7201 =over 4
7202
7203 =item File Permissions on Cygwin
7204
7205 =item Script Portability on Cygwin
7206
7207 Pathnames, Text/Binary, F<.exe>, chown(), Miscellaneous
7208
7209 =back
7210
7211 =item INSTALL PERL ON CYGWIN
7212
7213 =item MANIFEST ON CYGWIN
7214
7215 Documentation, Build, Configure, Make, Install, Tests, Compiled Perl
7216 Source, Compiled Module Source, Perl Modules/Scripts
7217
7218 =item BUGS ON CYGWIN
7219
7220 =item AUTHORS
7221
7222 =item HISTORY
7223
7224 =back
7225
7226 =head2 perldgux - Perl under DG/UX.
7227
7228 =over 4
7229
7230 =item SYNOPSIS
7231
7232 =back
7233
7234 =over 4
7235
7236 =item DESCRIPTION
7237
7238 =item BUILDING PERL ON DG/UX
7239
7240 =over 4
7241
7242 =item Non-threaded Perl on DG/UX
7243
7244 =item Threaded Perl on DG/UX
7245
7246 =item Testing Perl on DG/UX
7247
7248 =item Installing the built perl on DG/UX
7249
7250 =back
7251
7252 =item AUTHOR
7253
7254 =item SEE ALSO
7255
7256 =back
7257
7258 =head2 perldos - Perl under DOS, W31, W95.
7259
7260 =over 4
7261
7262 =item SYNOPSIS
7263
7264 =item DESCRIPTION
7265
7266 =over 4
7267
7268 =item Prerequisites for Compiling Perl on DOS
7269
7270 DJGPP, Pthreads
7271
7272 =item Shortcomings of Perl under DOS
7273
7274 =item Building Perl on DOS
7275
7276 =item Testing Perl on DOS
7277
7278 =item Installation of Perl on DOS
7279
7280 =back
7281
7282 =item BUILDING AND INSTALLING MODULES ON DOS
7283
7284 =over 4
7285
7286 =item Building Prerequisites for Perl on DOS
7287
7288 =item Unpacking CPAN Modules on DOS
7289
7290 =item Building Non-XS Modules on DOS
7291
7292 =item Building XS Modules on DOS
7293
7294 =back
7295
7296 =item AUTHOR
7297
7298 =item SEE ALSO
7299
7300 =back
7301
7302 =head2 perlepoc, README.epoc - Perl for EPOC
7303
7304 =over 4
7305
7306 =item SYNOPSIS
7307
7308 =item INTRODUCTION
7309
7310 =item INSTALLING PERL ON EPOC
7311
7312 =item STARTING PERL ON EPOC
7313
7314 =over 4
7315
7316 =item Editors on Epoc
7317
7318 =item Features of Perl on Epoc
7319
7320 =item Restrictions of Perl on Epoc
7321
7322 =item Compiling Perl 5 on the EPOC cross compiling environment
7323
7324 =back
7325
7326 =item SUPPORT STATUS OF PERL ON EPOC
7327
7328 =item AUTHOR
7329
7330 =item LAST UPDATE
7331
7332 =back
7333
7334 =head2 perlfreebsd, README.freebsd - Perl version 5 on FreeBSD systems
7335
7336 =over 4
7337
7338 =item DESCRIPTION
7339
7340 =over 4
7341
7342 =item FreeBSD core dumps from readdir_r with ithreads
7343
7344 =item $^X doesn't always contain a full path in FreeBSD
7345
7346 =item Perl will no more be part of "base FreeBSD"
7347
7348 =back
7349
7350 =item AUTHOR
7351
7352 =back
7353
7354 =head2 perlhpux, README.hpux - Perl version 5 on Hewlett-Packard Unix
7355 (HP-UX) systems
7356
7357 =over 4
7358
7359 =item DESCRIPTION
7360
7361 =over 4
7362
7363 =item Using perl as shipped with HP-UX
7364
7365 =item Compiling Perl 5 on HP-UX
7366
7367 =item PA-RISC
7368
7369 =item PA-RISC 1.0
7370
7371 =item PA-RISC 1.1
7372
7373 =item PA-RISC 2.0
7374
7375 =item Itanium
7376
7377 =item Portability Between PA-RISC Versions
7378
7379 =item Itanium Processor Family and HP-UX
7380
7381 =item Building Dynamic Extensions on HP-UX
7382
7383 =item The HP ANSI C Compiler
7384
7385 =item The GNU C Compiler
7386
7387 =item Using Large Files with Perl on HP-UX
7388
7389 =item Threaded Perl on HP-UX
7390
7391 =item 64-bit Perl on HP-UX
7392
7393 =item Oracle on HP-UX
7394
7395 =item GDBM and Threads on HP-UX
7396
7397 =item NFS filesystems and utime(2) on HP-UX
7398
7399 =item perl -P and // and HP-UX
7400
7401 =item HP-UX Kernel Parameters (maxdsiz) for Compiling Perl
7402
7403 =back
7404
7405 =item nss_delete core dump from op/pwent or op/grent
7406
7407 =item AUTHOR
7408
7409 =item DATE
7410
7411 =back
7412
7413 =head2 perlhurd, README.hurd - Perl version 5 on Hurd
7414
7415 =over 4
7416
7417 =item DESCRIPTION
7418
7419 =over 4
7420
7421 =item Known Problems with Perl on Hurd 
7422
7423 =back
7424
7425 =item AUTHOR
7426
7427 =back
7428
7429 =head2 perlirix, README.irix - Perl version 5 on Irix systems
7430
7431 =over 4
7432
7433 =item DESCRIPTION
7434
7435 =over 4
7436
7437 =item Building 32-bit Perl in Irix
7438
7439 =item Building 64-bit Perl in Irix
7440
7441 =item About Compiler Versions of Irix
7442
7443 =item Linker Problems in Irix
7444
7445 =item Malloc in Irix
7446
7447 =item Building with threads in Irix
7448
7449 =back
7450
7451 =item AUTHOR
7452
7453 =back
7454
7455 =head2 perlmachten, README.machten - Perl version 5 on Power MachTen
7456 systems
7457
7458 =over 4
7459
7460 =item DESCRIPTION
7461
7462 =over 4
7463
7464 =item Compiling Perl 5 on MachTen
7465
7466 =item Failures during C<make test> on MachTen
7467
7468 op/lexassign.t, pragma/warnings.t
7469
7470 =item Building external modules on MachTen
7471
7472 =back
7473
7474 =item AUTHOR
7475
7476 =item DATE
7477
7478 =back
7479
7480 =head2 perlmacos, README.macos - Perl under Mac OS (Classic)
7481
7482 =over 4
7483
7484 =item SYNOPSIS
7485
7486 =item DESCRIPTION
7487
7488 =item AUTHOR
7489
7490 =item DATE
7491
7492 =back
7493
7494 =head2 perlmint, README.mint - Perl version 5 on Atari MiNT
7495
7496 =over 4
7497
7498 =item DESCRIPTION
7499
7500 =item Known problems with Perl on MiNT
7501
7502 =item AUTHOR
7503
7504 =back
7505
7506 =head2 perlmpeix, README.mpeix - Perl/iX for HP e3000 MPE
7507
7508 =over 4
7509
7510 =item SYNOPSIS
7511
7512 =item NOTE
7513
7514 =item Binary distribution from HP
7515
7516 =item What's New in Perl for MPE/iX
7517
7518 =item Welcome to Perl/iX
7519
7520 =item System Requirements for Perl/iX
7521
7522 =item How to Obtain Perl/iX
7523
7524 =item Perl/iX Distribution Contents Highlights
7525
7526 README, INSTALL, LIBSHP3K, PERL, .cpan/, lib/, man/,
7527 public_html/feedback.cgi, src/perl-5.6.0-mpe
7528
7529 =item How to Compile Perl/iX
7530
7531  4,  6
7532
7533 =item Getting Started with Perl/iX
7534
7535 =item MPE/iX Implementation Considerations
7536
7537 =item Known Perl/iX Bugs Under Investigation
7538
7539 =item Perl/iX To-Do List
7540
7541 =item Perl/iX Change History
7542
7543 =item AUTHOR
7544
7545 =item Name
7546
7547 =item Description
7548
7549 =item Build
7550
7551 =over 4
7552
7553 =item Tools & SDK
7554
7555 =item Setup
7556
7557 SetNWBld.bat, Buildtype.bat
7558
7559 =item Make
7560
7561 =item Interpreter
7562
7563 =item Extensions
7564
7565 =back
7566
7567 =item Install
7568
7569 =item Build new extensions
7570
7571 =item Acknowledgements
7572
7573 =item Authors
7574
7575 =item Date
7576
7577 =back
7578
7579 =head2 perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
7580
7581 =over 4
7582
7583 =item SYNOPSIS
7584
7585 =back
7586
7587 =over 4
7588
7589 =item DESCRIPTION
7590
7591 =over 4
7592
7593 =item Target
7594
7595 =item Other OSes
7596
7597 =item Prerequisites
7598
7599 EMX, RSX, HPFS, pdksh
7600
7601 =item Starting Perl programs under OS/2 (and DOS and...)
7602
7603 =item Starting OS/2 (and DOS) programs under Perl
7604
7605 =back
7606
7607 =item Frequently asked questions
7608
7609 =over 4
7610
7611 =item "It does not work"
7612
7613 =item I cannot run external programs
7614
7615 =item I cannot embed perl into my program, or use F<perl.dll> from my
7616 program. 
7617
7618 Is your program EMX-compiled with C<-Zmt -Zcrtdll>?, Did you use
7619 L<ExtUtils::Embed>?
7620
7621 =item C<``> and pipe-C<open> do not work under DOS.
7622
7623 =item Cannot start C<find.exe "pattern" file>
7624
7625 =back
7626
7627 =item INSTALLATION
7628
7629 =over 4
7630
7631 =item Automatic binary installation
7632
7633 C<PERL_BADLANG>, C<PERL_BADFREE>, F<Config.pm>
7634
7635 =item Manual binary installation
7636
7637 Perl VIO and PM executables (dynamically linked), Perl_ VIO executable
7638 (statically linked), Executables for Perl utilities, Main Perl library,
7639 Additional Perl modules, Tools to compile Perl modules, Manpages for Perl
7640 and utilities, Manpages for Perl modules, Source for Perl documentation,
7641 Perl manual in F<.INF> format, Pdksh
7642
7643 =item B<Warning>
7644
7645 =back
7646
7647 =item Accessing documentation
7648
7649 =over 4
7650
7651 =item OS/2 F<.INF> file
7652
7653 =item Plain text
7654
7655 =item Manpages
7656
7657 =item HTML
7658
7659 =item GNU C<info> files
7660
7661 =item F<PDF> files
7662
7663 =item C<LaTeX> docs
7664
7665 =back
7666
7667 =item BUILD
7668
7669 =over 4
7670
7671 =item The short story
7672
7673 =item Prerequisites
7674
7675 =item Getting perl source
7676
7677 =item Application of the patches
7678
7679 =item Hand-editing
7680
7681 =item Making
7682
7683 =item Testing
7684
7685 A lot of C<bad free>, Process terminated by SIGTERM/SIGINT, F<op/fs.t>,
7686 F<op/stat.t>
7687
7688 =item Installing the built perl
7689
7690 =item C<a.out>-style build
7691
7692 =back
7693
7694 =item Build FAQ
7695
7696 =over 4
7697
7698 =item Some C</> became C<\> in pdksh.
7699
7700 =item C<'errno'> - unresolved external
7701
7702 =item Problems with tr or sed
7703
7704 =item Some problem (forget which ;-)
7705
7706 =item Library ... not found
7707
7708 =item Segfault in make
7709
7710 =item op/sprintf test failure
7711
7712 =back
7713
7714 =item Specific (mis)features of OS/2 port
7715
7716 =over 4
7717
7718 =item C<setpriority>, C<getpriority>
7719
7720 =item C<system()>
7721
7722 =item C<extproc> on the first line
7723
7724 =item Additional modules:
7725
7726 =item Prebuilt methods:
7727
7728 C<File::Copy::syscopy>, C<DynaLoader::mod2fname>,  C<Cwd::current_drive()>,
7729  C<Cwd::sys_chdir(name)>,  C<Cwd::change_drive(name)>, 
7730 C<Cwd::sys_is_absolute(name)>,  C<Cwd::sys_is_rooted(name)>, 
7731 C<Cwd::sys_is_relative(name)>,  C<Cwd::sys_cwd(name)>, 
7732 C<Cwd::sys_abspath(name, dir)>,  C<Cwd::extLibpath([type])>, 
7733 C<Cwd::extLibpath_set( path [, type ] )>,
7734 C<OS2::Error(do_harderror,do_exception)>, C<OS2::Errors2Drive(drive)>,
7735 OS2::SysInfo(), OS2::BootDrive(), C<OS2::MorphPM(serve)>,
7736 C<OS2::UnMorphPM(serve)>, C<OS2::Serve_Messages(force)>,
7737 C<OS2::Process_Messages(force [, cnt])>, C<OS2::_control87(new,mask)>,
7738 OS2::get_control87(), C<OS2::set_control87_em(new=MCW_EM,mask=MCW_EM)>
7739
7740 =item Prebuilt variables:
7741
7742 $OS2::emx_rev, $OS2::emx_env, $OS2::os_ver
7743
7744 =item Misfeatures
7745
7746 =item Modifications
7747
7748 C<popen>, C<tmpnam>, C<tmpfile>, C<ctermid>, C<stat>, C<mkdir>, C<rmdir>,
7749 C<flock>
7750
7751 =item Identifying DLLs
7752
7753 =item Centralized management of resources
7754
7755 C<HAB>, C<HMQ>
7756
7757 =back
7758
7759 =item Perl flavors
7760
7761 =over 4
7762
7763 =item F<perl.exe>
7764
7765 =item F<perl_.exe>
7766
7767 =item F<perl__.exe>
7768
7769 =item F<perl___.exe>
7770
7771 =item Why strange names?
7772
7773 =item Why dynamic linking?
7774
7775 =item Why chimera build?
7776
7777 =back
7778
7779 =item ENVIRONMENT
7780
7781 =over 4
7782
7783 =item C<PERLLIB_PREFIX>
7784
7785 =item C<PERL_BADLANG>
7786
7787 =item C<PERL_BADFREE>
7788
7789 =item C<PERL_SH_DIR>
7790
7791 =item C<USE_PERL_FLOCK>
7792
7793 =item C<TMP> or C<TEMP>
7794
7795 =back
7796
7797 =item Evolution
7798
7799 =over 4
7800
7801 =item Priorities
7802
7803 =item DLL name mangling: pre 5.6.2
7804
7805 =item DLL name mangling: 5.6.2 and beyond
7806
7807 Global DLLs, specific DLLs, C<BEGINLIBPATH> and C<ENDLIBPATH>, F<.> from
7808 C<LIBPATH>
7809
7810 =item DLL forwarder generation
7811
7812 =item Threading
7813
7814 =item Calls to external programs
7815
7816 =item Memory allocation
7817
7818 =item Threads
7819
7820 C<COND_WAIT>, F<os2.c>
7821
7822 =back
7823
7824 =item BUGS
7825
7826 =back
7827
7828 =over 4
7829
7830 =item AUTHOR
7831
7832 =item SEE ALSO
7833
7834 =back
7835
7836 =head2 perlos390, README.os390 - building and installing Perl for OS/390
7837 and z/OS
7838
7839 =over 4
7840
7841 =item SYNOPSIS
7842
7843 =item DESCRIPTION
7844
7845 =over 4
7846
7847 =item Tools
7848
7849 =item Unpacking Perl distribution on OS/390
7850
7851 =item Setup and utilities for Perl on OS/390
7852
7853 =item Configure Perl on OS/390
7854
7855 =item Build, Test, Install Perl on OS/390
7856
7857 =item Build Anomalies with Perl on OS/390
7858
7859 =item Testing Anomalies with Perl on OS/390
7860
7861 =item Installation Anomalies with Perl on OS/390
7862
7863 =item Usage Hints for Perl on OS/390
7864
7865 =item Floating Point Anomalies with Perl on OS/390
7866
7867 =item Modules and Extensions for Perl on OS/390
7868
7869 =back
7870
7871 =item AUTHORS
7872
7873 =item SEE ALSO
7874
7875 =over 4
7876
7877 =item Mailing list for Perl on OS/390
7878
7879 =back
7880
7881 =item HISTORY
7882
7883 =back
7884
7885 =head2 perlqnx, README.qnx - Perl version 5 on QNX
7886
7887 =over 4
7888
7889 =item DESCRIPTION
7890
7891 =over 4
7892
7893 =item Required Software for Compiling Perl on QNX4
7894
7895 /bin/sh, ar, nm, cpp, make
7896
7897 =item Outstanding Issues with Perl on QNX4
7898
7899 =item QNX auxiliary files
7900
7901 qnx/ar, qnx/cpp
7902
7903 =item Outstanding issues with perl under QNX6
7904
7905 =back
7906
7907 =item AUTHOR
7908
7909 =back
7910
7911 =head2 perlplan9 - Plan 9-specific documentation for Perl
7912
7913 =over 4
7914
7915 =item DESCRIPTION
7916
7917 =over 4
7918
7919 =item Invoking Perl
7920
7921 =item What's in Plan 9 Perl
7922
7923 =item What's not in Plan 9 Perl
7924
7925 =item Perl5 Functions not currently supported in Plan 9 Perl
7926
7927 =item Signals in Plan 9 Perl
7928
7929 =back
7930
7931 =item COMPILING AND INSTALLING PERL ON PLAN 9
7932
7933 =over 4
7934
7935 =item Installing Perl Documentation on Plan 9
7936
7937 =back
7938
7939 =item BUGS
7940
7941 =item Revision date
7942
7943 =item AUTHOR
7944
7945 =back
7946
7947 =head2 perlsolaris, README.solaris - Perl version 5 on Solaris systems
7948
7949 =over 4
7950
7951 =item DESCRIPTION
7952
7953 =over 4
7954
7955 =item Solaris Version Numbers.
7956
7957 =back
7958
7959 =item RESOURCES
7960
7961 Solaris FAQ, Precompiled Binaries, Solaris Documentation
7962
7963 =item SETTING UP
7964
7965 =over 4
7966
7967 =item File Extraction Problems on Solaris.
7968
7969 =item Compiler and Related Tools on Solaris.
7970
7971 =item Environment for Compiling Perl on Solaris
7972
7973 =back
7974
7975 =item RUN CONFIGURE.
7976
7977 =over 4
7978
7979 =item 64-bit Issues with Perl on Solaris.
7980
7981 =item Threads in Perl on Solaris.
7982
7983 =item Malloc Issues with Perl on Solaris.
7984
7985 =back
7986
7987 =item MAKE PROBLEMS.
7988
7989 Dynamic Loading Problems With GNU as and GNU ld, ld.so.1: ./perl: fatal:
7990 relocation error:, dlopen: stub interception failed, #error "No
7991 DATAMODEL_NATIVE specified", sh: ar: not found
7992
7993 =item MAKE TEST
7994
7995 =over 4
7996
7997 =item op/stat.t test 4 in Solaris
7998
7999 =item nss_delete core dump from op/pwent or op/grent
8000
8001 =back
8002
8003 =item PREBUILT BINARIES OF PERL FOR SOLARIS.
8004
8005 =item RUNTIME ISSUES FOR PERL ON SOLARIS.
8006
8007 =over 4
8008
8009 =item Limits on Numbers of Open Files on Solaris.
8010
8011 =back
8012
8013 =item SOLARIS-SPECIFIC MODULES.
8014
8015 =item SOLARIS-SPECIFIC PROBLEMS WITH MODULES.
8016
8017 =over 4
8018
8019 =item Proc::ProcessTable on Solaris
8020
8021 =item BSD::Resource on Solaris
8022
8023 =item Net::SSLeay on Solaris
8024
8025 =back
8026
8027 =item AUTHOR
8028
8029 =item LAST MODIFIED
8030
8031 =back
8032
8033 =head2 perltru64, README.tru64 - Perl version 5 on Tru64 (formerly known as
8034 Digital UNIX formerly known as DEC OSF/1) systems
8035
8036 =over 4
8037
8038 =item DESCRIPTION
8039
8040 =over 4
8041
8042 =item Compiling Perl 5 on Tru64
8043
8044 =item Using Large Files with Perl on Tru64
8045
8046 =item Threaded Perl on Tru64
8047
8048 =item Long Doubles on Tru64
8049
8050 =item 64-bit Perl on Tru64
8051
8052 =item Warnings about floating-point overflow when compiling Perl on Tru64
8053
8054 =back
8055
8056 =item Testing Perl on Tru64
8057
8058 =item ext/ODBM_File/odbm Test Failing With Static Builds
8059
8060 =item Perl Fails Because Of Unresolved Symbol sockatmark
8061
8062 =item AUTHOR
8063
8064 =back
8065
8066 =head2 perluts - Perl under UTS
8067
8068 =over 4
8069
8070 =item SYNOPSIS
8071
8072 =item DESCRIPTION
8073
8074 =item BUILDING PERL ON UTS
8075
8076 =item Installing the built perl on UTS
8077
8078 =item AUTHOR
8079
8080 =back
8081
8082 =head2 perlvmesa, README.vmesa - building and installing Perl for VM/ESA.
8083
8084 =over 4
8085
8086 =item SYNOPSIS
8087
8088 =item DESCRIPTION
8089
8090 =over 4
8091
8092 =item Unpacking Perl Distribution on VM/ESA
8093
8094 =item Setup Perl and utilities on VM/ESA
8095
8096 =item Configure Perl on VM/ESA
8097
8098 =item Testing Anomalies of Perl on VM/ESA
8099
8100 =item Usage Hints for Perl on VM/ESA
8101
8102 =back
8103
8104 =item AUTHORS
8105
8106 =item SEE ALSO
8107
8108 =over 4
8109
8110 =item Mailing list for Perl on VM/ESA
8111
8112 =back
8113
8114 =back
8115
8116 =head2 perlvms - VMS-specific documentation for Perl
8117
8118 =over 4
8119
8120 =item DESCRIPTION
8121
8122 =item Installation
8123
8124 =item Organization of Perl Images
8125
8126 =over 4
8127
8128 =item Core Images
8129
8130 =item Perl Extensions
8131
8132 =item Installing static extensions
8133
8134 =item Installing dynamic extensions
8135
8136 =back
8137
8138 =item File specifications
8139
8140 =over 4
8141
8142 =item Syntax
8143
8144 =item Wildcard expansion
8145
8146 =item Pipes
8147
8148 =back
8149
8150 =item PERL5LIB and PERLLIB
8151
8152 =item Command line
8153
8154 =over 4
8155
8156 =item I/O redirection and backgrounding
8157
8158 =item Command line switches
8159
8160 -i, -S, -u
8161
8162 =back
8163
8164 =item Perl functions
8165
8166 File tests, backticks, binmode FILEHANDLE, crypt PLAINTEXT, USER, dump,
8167 exec LIST, fork, getpwent, getpwnam, getpwuid, gmtime, kill, qx//, select
8168 (system call), stat EXPR, system LIST, time, times, unlink LIST, utime
8169 LIST, waitpid PID,FLAGS
8170
8171 =item Perl variables
8172
8173 %ENV, CRTL_ENV, CLISYM_[LOCAL], Any other string, $!, $^E, $?, $|
8174
8175 =item Standard modules with VMS-specific differences
8176
8177 =over 4
8178
8179 =item SDBM_File
8180
8181 =back
8182
8183 =item Revision date
8184
8185 =item AUTHOR
8186
8187 =back
8188
8189 =head2 perlvos, README.vos - Perl for Stratus VOS
8190
8191 =over 4
8192
8193 =item SYNOPSIS
8194
8195 =over 4
8196
8197 =item Multiple methods to build perl for VOS
8198
8199 =item Stratus POSIX Support
8200
8201 =back
8202
8203 =item INSTALLING PERL IN VOS
8204
8205 =over 4
8206
8207 =item Compiling Perl 5 on VOS
8208
8209 =item Installing Perl 5 on VOS
8210
8211 =back
8212
8213 =item USING PERL IN VOS
8214
8215 =over 4
8216
8217 =item Unimplemented Features of Perl on VOS
8218
8219 =item Restrictions of Perl on VOS
8220
8221 =item Handling of underflow and overflow
8222
8223 =back
8224
8225 =item TEST STATUS
8226
8227 =item SUPPORT STATUS
8228
8229 =item AUTHOR
8230
8231 =item LAST UPDATE
8232
8233 =back
8234
8235 =head2 perlwin32 - Perl under Windows
8236
8237 =over 4
8238
8239 =item SYNOPSIS
8240
8241 =item DESCRIPTION
8242
8243 =over 4
8244
8245 =item Setting Up Perl on Win32
8246
8247 Make, Command Shell, Borland C++, Microsoft Visual C++, Microsoft Platform
8248 SDK 64-bit Compiler, Mingw32 with GCC
8249
8250 =item Building
8251
8252 =item Testing Perl on Win32
8253
8254 =item Installation of Perl on Win32
8255
8256 =item Usage Hints for Perl on Win32
8257
8258 Environment Variables, File Globbing, Using perl from the command line,
8259 Building Extensions, Command-line Wildcard Expansion, Win32 Specific
8260 Extensions, Notes on 64-bit Windows
8261
8262 =item Running Perl Scripts
8263
8264 Miscellaneous Things
8265
8266 =back
8267
8268 =item BUGS AND CAVEATS
8269
8270 =item AUTHORS
8271
8272 Gary Ng E<lt>71564.1743@CompuServe.COME<gt>, Gurusamy Sarathy
8273 E<lt>gsar@activestate.comE<gt>, Nick Ing-Simmons
8274 E<lt>nick@ing-simmons.netE<gt>
8275
8276 =item SEE ALSO
8277
8278 =item HISTORY
8279
8280 =back
8281
8282 =head1 PRAGMA DOCUMENTATION
8283
8284 =head2 attrs - set/get attributes of a subroutine (deprecated)
8285
8286 =over 4
8287
8288 =item SYNOPSIS
8289
8290 =item DESCRIPTION
8291
8292 method, locked
8293
8294 =back
8295
8296 =head2 re - Perl pragma to alter regular expression behaviour
8297
8298 =over 4
8299
8300 =item SYNOPSIS
8301
8302 =item DESCRIPTION
8303
8304 =back
8305
8306 =head2 threadshared::queue, threads::shared::queue - thread-safe queues
8307
8308 =over 4
8309
8310 =item SYNOPSIS
8311
8312 =item DESCRIPTION
8313
8314 =item FUNCTIONS AND METHODS
8315
8316 new, enqueue LIST, dequeue, dequeue_nb, pending
8317
8318 =item SEE ALSO
8319
8320 =back
8321
8322 =head2 threadshared::semaphore, threads::shared::semaphore - thread-safe
8323 semaphores
8324
8325 =over 4
8326
8327 =item SYNOPSIS
8328
8329 =item DESCRIPTION
8330
8331 =item FUNCTIONS AND METHODS
8332
8333 new, new NUMBER, down, down NUMBER, up, up NUMBER
8334
8335 =back
8336
8337 =head2 threadshared::shared, threads::shared - Perl extension for sharing
8338 data structures between threads
8339
8340 =over 4
8341
8342 =item SYNOPSIS
8343
8344 =item DESCRIPTION
8345
8346 =item EXPORT
8347
8348 =item FUNCTIONS
8349
8350 share VARIABLE, lock VARIABLE, cond_wait VARIABLE, cond_signal VARIABLE,
8351 cond_broadcast VARIABLE
8352
8353 =item NOTES
8354
8355 =item BUGS
8356
8357 =item AUTHOR
8358
8359 =item SEE ALSO
8360
8361 =back
8362
8363 =head2 threads - Perl extension allowing use of interpreter based threads
8364 from perl
8365
8366 =over 4
8367
8368 =item SYNOPSIS
8369
8370 =item DESCRIPTION
8371
8372 $thread = threads->create(function, LIST), $thread->join, $thread->detach,
8373 threads->self, $thread->tid, threads->yield();, threads->list();, async
8374 BLOCK;
8375
8376 =item WARNINGS
8377
8378 A thread exited while %d other threads were still running
8379
8380 =item BUGS / TODO
8381
8382 Parent-Child threads, tid is I32, Returning objects, PERL_OLD_SIGNALS are
8383 not threadsafe, will not be
8384
8385 =item AUTHOR and COPYRIGHT
8386
8387 =item SEE ALSO
8388
8389 =back
8390
8391 =head2 attributes - get/set subroutine or variable attributes
8392
8393 =over 4
8394
8395 =item SYNOPSIS
8396
8397 =item DESCRIPTION
8398
8399 =over 4
8400
8401 =item Built-in Attributes
8402
8403 locked, method, lvalue
8404
8405 =item Available Subroutines
8406
8407 get, reftype
8408
8409 =item Package-specific Attribute Handling
8410
8411 FETCH_I<type>_ATTRIBUTES, MODIFY_I<type>_ATTRIBUTES
8412
8413 =item Syntax of Attribute Lists
8414
8415 =back
8416
8417 =item EXPORTS
8418
8419 =over 4
8420
8421 =item Default exports
8422
8423 =item Available exports
8424
8425 =item Export tags defined
8426
8427 =back
8428
8429 =item EXAMPLES
8430
8431 =item SEE ALSO
8432
8433 =back
8434
8435 =head2 attrs - set/get attributes of a subroutine (deprecated)
8436
8437 =over 4
8438
8439 =item SYNOPSIS
8440
8441 =item DESCRIPTION
8442
8443 method, locked
8444
8445 =back
8446
8447 =head2 autouse - postpone load of modules until a function is used
8448
8449 =over 4
8450
8451 =item SYNOPSIS
8452
8453 =item DESCRIPTION
8454
8455 =item WARNING
8456
8457 =item AUTHOR
8458
8459 =item SEE ALSO
8460
8461 =back
8462
8463 =head2 base - Establish IS-A relationship with base class at compile time
8464
8465 =over 4
8466
8467 =item SYNOPSIS
8468
8469 =item DESCRIPTION
8470
8471 =item HISTORY
8472
8473 =item SEE ALSO
8474
8475 =back
8476
8477 =head2 bigint - Transparent big integer support for Perl
8478
8479 =over 4
8480
8481 =item SYNOPSIS
8482
8483 =item DESCRIPTION
8484
8485 =over 4
8486
8487 =item OPTIONS
8488
8489 a or accuracy, p or precision, t or trace, l or lib, v or version
8490
8491 =item MATH LIBRARY
8492
8493 =item INTERNAL FORMAT
8494
8495 =item SIGN
8496
8497 =item METHODS
8498
8499 =back
8500
8501 =item MODULES USED
8502
8503 =item EXAMPLES
8504
8505 =item LICENSE
8506
8507 =item SEE ALSO
8508
8509 =item AUTHORS
8510
8511 =back
8512
8513 =head2 bignum - Transparent BigNumber support for Perl
8514
8515 =over 4
8516
8517 =item SYNOPSIS
8518
8519 =item DESCRIPTION
8520
8521 =over 4
8522
8523 =item OPTIONS
8524
8525 a or accuracy, p or precision, t or trace, l or lib, v or version
8526
8527 =item MATH LIBRARY
8528
8529 =item INTERNAL FORMAT
8530
8531 =item SIGN
8532
8533 =item METHODS
8534
8535 =back
8536
8537 =item MODULES USED
8538
8539 =item EXAMPLES
8540
8541 =item LICENSE
8542
8543 =item SEE ALSO
8544
8545 =item AUTHORS
8546
8547 =back
8548
8549 =head2 bigrat - Transparent BigNumber/BigRational support for Perl
8550
8551 =over 4
8552
8553 =item SYNOPSIS
8554
8555 =item DESCRIPTION
8556
8557 =over 4
8558
8559 =item MODULES USED
8560
8561 =item MATH LIBRARY
8562
8563 =item SIGN
8564
8565 =item METHODS
8566
8567 =back
8568
8569 =item EXAMPLES
8570
8571         perl -Mbigrat -le 'print sqrt(33)'
8572         perl -Mbigrat -le 'print 2*255'
8573         perl -Mbigrat -le 'print 4.5+2*255'
8574         perl -Mbigrat -le 'print 3/7 + 5/7 + 8/3'       
8575         perl -Mbigrat -le 'print 12->is_odd()';
8576
8577 =item LICENSE
8578
8579 =item SEE ALSO
8580
8581 =item AUTHORS
8582
8583 =back
8584
8585 =head2 blib - Use MakeMaker's uninstalled version of a package
8586
8587 =over 4
8588
8589 =item SYNOPSIS
8590
8591 =item DESCRIPTION
8592
8593 =item BUGS
8594
8595 =item AUTHOR
8596
8597 =back
8598
8599 =head2 bytes - Perl pragma to force byte semantics rather than character
8600 semantics
8601
8602 =over 4
8603
8604 =item SYNOPSIS
8605
8606 =item DESCRIPTION
8607
8608 =item SEE ALSO
8609
8610 =back
8611
8612 =head2 charnames - define character names for C<\N{named}> string literal
8613 escapes
8614
8615 =over 4
8616
8617 =item SYNOPSIS
8618
8619 =item DESCRIPTION
8620
8621 =item CUSTOM TRANSLATORS
8622
8623 =item charnames::viacode(code)
8624
8625 =item charnames::vianame(name)
8626
8627 =item ALIASES
8628
8629 =item ILLEGAL CHARACTERS
8630
8631 =item BUGS
8632
8633 =back
8634
8635 =head2 constant - Perl pragma to declare constants
8636
8637 =over 4
8638
8639 =item SYNOPSIS
8640
8641 =item DESCRIPTION
8642
8643 =item NOTES
8644
8645 =over 4
8646
8647 =item List constants
8648
8649 =item Defining multiple constants at once
8650
8651 =item Magic constants
8652
8653 =back
8654
8655 =item TECHNICAL NOTES
8656
8657 =item BUGS
8658
8659 =item AUTHOR
8660
8661 =item COPYRIGHT
8662
8663 =back
8664
8665 =head2 diagnostics - Perl compiler pragma to force verbose warning
8666 diagnostics
8667
8668 =over 4
8669
8670 =item SYNOPSIS
8671
8672 =item DESCRIPTION
8673
8674 =over 4
8675
8676 =item The C<diagnostics> Pragma
8677
8678 =item The I<splain> Program
8679
8680 =back
8681
8682 =item EXAMPLES
8683
8684 =item INTERNALS
8685
8686 =item BUGS
8687
8688 =item AUTHOR
8689
8690 =back
8691
8692 =head2 encoding - allows you to write your script in non-ascii or non-utf8
8693
8694 =over 4
8695
8696 =item SYNOPSIS
8697
8698 =item ABSTRACT
8699
8700 =item USAGE
8701
8702 use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
8703 I<ENCNAME_IN> ...] ;, no encoding;
8704
8705 =item CAVEATS
8706
8707 =over 4
8708
8709 =item NOT SCOPED
8710
8711 =item DO NOT MIX MULTIPLE ENCODINGS
8712
8713 =back
8714
8715 =item Non-ASCII Identifiers and Filter option
8716
8717 use encoding I<ENCNAME> Filter=E<gt>1;
8718
8719 =item EXAMPLE - Greekperl
8720
8721 =item KNOWN PROBLEMS
8722
8723 =item SEE ALSO
8724
8725 =back
8726
8727 =head2 fields - compile-time class fields
8728
8729 =over 4
8730
8731 =item SYNOPSIS
8732
8733 =item DESCRIPTION
8734
8735 new, phash
8736
8737 =item SEE ALSO
8738
8739 =back
8740
8741 =head2 filetest - Perl pragma to control the filetest permission operators
8742
8743 =over 4
8744
8745 =item SYNOPSIS
8746
8747 =item DESCRIPTION
8748
8749 =over 4
8750
8751 =item subpragma access
8752
8753 =back
8754
8755 =back
8756
8757 =head2 if - C<use> a Perl module if a condition holds
8758
8759 =over 4
8760
8761 =item SYNOPSIS
8762
8763 =item DESCRIPTION
8764
8765 =item BUGS
8766
8767 =item AUTHOR
8768
8769 =back
8770
8771 =head2 integer - Perl pragma to use integer arithmetic instead of floating
8772 point
8773
8774 =over 4
8775
8776 =item SYNOPSIS
8777
8778 =item DESCRIPTION
8779
8780 =back
8781
8782 =head2 less - perl pragma to request less of something from the compiler
8783
8784 =over 4
8785
8786 =item SYNOPSIS
8787
8788 =item DESCRIPTION
8789
8790 =back
8791
8792 =head2 lib - manipulate @INC at compile time
8793
8794 =over 4
8795
8796 =item SYNOPSIS
8797
8798 =item DESCRIPTION
8799
8800 =over 4
8801
8802 =item Adding directories to @INC
8803
8804 =item Deleting directories from @INC
8805
8806 =item Restoring original @INC
8807
8808 =back
8809
8810 =item CAVEATS
8811
8812 =item NOTES
8813
8814 =item SEE ALSO
8815
8816 =item AUTHOR
8817
8818 =back
8819
8820 =head2 locale - Perl pragma to use and avoid POSIX locales for built-in
8821 operations
8822
8823 =over 4
8824
8825 =item SYNOPSIS
8826
8827 =item DESCRIPTION
8828
8829 =back
8830
8831 =head2 open - perl pragma to set default disciplines for input and output
8832
8833 =over 4
8834
8835 =item SYNOPSIS
8836
8837 =item DESCRIPTION
8838
8839 =item NONPERLIO FUNCTIONALITY
8840
8841 =item IMPLEMENTATION DETAILS
8842
8843 =item SEE ALSO
8844
8845 =back
8846
8847 =head2 ops - Perl pragma to restrict unsafe operations when compiling
8848
8849 =over 4
8850
8851 =item SYNOPSIS  
8852
8853 =item DESCRIPTION
8854
8855 =item SEE ALSO
8856
8857 =back
8858
8859 =head2 overload - Package for overloading perl operations
8860
8861 =over 4
8862
8863 =item SYNOPSIS
8864
8865 =item DESCRIPTION
8866
8867 =over 4
8868
8869 =item Declaration of overloaded functions
8870
8871 =item Calling Conventions for Binary Operations
8872
8873 FALSE, TRUE, C<undef>
8874
8875 =item Calling Conventions for Unary Operations
8876
8877 =item Calling Conventions for Mutators
8878
8879 C<++> and C<-->, C<x=> and other assignment versions
8880
8881 =item Overloadable Operations
8882
8883 I<Arithmetic operations>, I<Comparison operations>, I<Bit operations>,
8884 I<Increment and decrement>, I<Transcendental functions>, I<Boolean, string
8885 and numeric conversion>, I<Iteration>, I<Dereferencing>, I<Special>
8886
8887 =item Inheritance and overloading
8888
8889 Strings as values of C<use overload> directive, Overloading of an operation
8890 is inherited by derived classes
8891
8892 =back
8893
8894 =item SPECIAL SYMBOLS FOR C<use overload>
8895
8896 =over 4
8897
8898 =item Last Resort
8899
8900 =item Fallback
8901
8902 C<undef>, TRUE, defined, but FALSE
8903
8904 =item Copy Constructor
8905
8906 B<Example>
8907
8908 =back
8909
8910 =item MAGIC AUTOGENERATION
8911
8912 I<Assignment forms of arithmetic operations>, I<Conversion operations>,
8913 I<Increment and decrement>, C<abs($a)>, I<Unary minus>, I<Negation>,
8914 I<Concatenation>, I<Comparison operations>, I<Iterator>, I<Dereferencing>,
8915 I<Copy operator>
8916
8917 =item Losing overloading
8918
8919 =item Run-time Overloading
8920
8921 =item Public functions
8922
8923 overload::StrVal(arg), overload::Overloaded(arg), overload::Method(obj,op)
8924
8925 =item Overloading constants
8926
8927 integer, float, binary, q, qr
8928
8929 =item IMPLEMENTATION
8930
8931 =item Metaphor clash
8932
8933 =item Cookbook
8934
8935 =over 4
8936
8937 =item Two-face scalars
8938
8939 =item Two-face references
8940
8941 =item Symbolic calculator
8942
8943 =item I<Really> symbolic calculator
8944
8945 =back
8946
8947 =item AUTHOR
8948
8949 =item DIAGNOSTICS
8950
8951 Odd number of arguments for overload::constant, `%s' is not an overloadable
8952 type, `%s' is not a code reference
8953
8954 =item BUGS
8955
8956 =back
8957
8958 =head2 re - Perl pragma to alter regular expression behaviour
8959
8960 =over 4
8961
8962 =item SYNOPSIS
8963
8964 =item DESCRIPTION
8965
8966 =back
8967
8968 =head2 sigtrap - Perl pragma to enable simple signal handling
8969
8970 =over 4
8971
8972 =item SYNOPSIS
8973
8974 =item DESCRIPTION
8975
8976 =item OPTIONS
8977
8978 =over 4
8979
8980 =item SIGNAL HANDLERS
8981
8982 B<stack-trace>, B<die>, B<handler> I<your-handler>
8983
8984 =item SIGNAL LISTS
8985
8986 B<normal-signals>, B<error-signals>, B<old-interface-signals>
8987
8988 =item OTHER
8989
8990 B<untrapped>, B<any>, I<signal>, I<number>
8991
8992 =back
8993
8994 =item EXAMPLES
8995
8996 =back
8997
8998 =head2 sort - perl pragma to control sort() behaviour
8999
9000 =over 4
9001
9002 =item SYNOPSIS
9003
9004 =item DESCRIPTION
9005
9006 =item CAVEATS
9007
9008 =back
9009
9010 =head2 strict - Perl pragma to restrict unsafe constructs
9011
9012 =over 4
9013
9014 =item SYNOPSIS
9015
9016 =item DESCRIPTION
9017
9018 C<strict refs>, C<strict vars>, C<strict subs>
9019
9020 =back
9021
9022 =head2 subs - Perl pragma to predeclare sub names
9023
9024 =over 4
9025
9026 =item SYNOPSIS
9027
9028 =item DESCRIPTION
9029
9030 =back
9031
9032 =head2 threads - Perl extension allowing use of interpreter based threads
9033 from perl
9034
9035 =over 4
9036
9037 =item SYNOPSIS
9038
9039 =item DESCRIPTION
9040
9041 $thread = threads->create(function, LIST), $thread->join, $thread->detach,
9042 threads->self, $thread->tid, threads->yield();, threads->list();, async
9043 BLOCK;
9044
9045 =item WARNINGS
9046
9047 A thread exited while %d other threads were still running
9048
9049 =item BUGS / TODO
9050
9051 Parent-Child threads, tid is I32, Returning objects, PERL_OLD_SIGNALS are
9052 not threadsafe, will not be
9053
9054 =item AUTHOR and COPYRIGHT
9055
9056 =item SEE ALSO
9057
9058 =back
9059
9060 =head2 threadshared, threads::shared - Perl extension for sharing data
9061 structures between threads
9062
9063 =over 4
9064
9065 =item SYNOPSIS
9066
9067 =item DESCRIPTION
9068
9069 =item EXPORT
9070
9071 =item FUNCTIONS
9072
9073 share VARIABLE, lock VARIABLE, cond_wait VARIABLE, cond_signal VARIABLE,
9074 cond_broadcast VARIABLE
9075
9076 =item NOTES
9077
9078 =item BUGS
9079
9080 =item AUTHOR
9081
9082 =item SEE ALSO
9083
9084 =back
9085
9086 =head2 threadshared::queue, threads::shared::queue - thread-safe queues
9087
9088 =over 4
9089
9090 =item SYNOPSIS
9091
9092 =item DESCRIPTION
9093
9094 =item FUNCTIONS AND METHODS
9095
9096 new, enqueue LIST, dequeue, dequeue_nb, pending
9097
9098 =item SEE ALSO
9099
9100 =back
9101
9102 =head2 threadshared::semaphore, threads::shared::semaphore - thread-safe
9103 semaphores
9104
9105 =over 4
9106
9107 =item SYNOPSIS
9108
9109 =item DESCRIPTION
9110
9111 =item FUNCTIONS AND METHODS
9112
9113 new, new NUMBER, down, down NUMBER, up, up NUMBER
9114
9115 =back
9116
9117 =head2 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source
9118 code
9119
9120 =over 4
9121
9122 =item SYNOPSIS
9123
9124 =item DESCRIPTION
9125
9126 =over 4
9127
9128 =item Utility functions
9129
9130 $num_octets = utf8::upgrade($string);, utf8::downgrade($string[, FAIL_OK]),
9131 utf8::encode($string), $flag = utf8::decode($string), $flag =
9132 utf8::valid(STRING)
9133
9134 =back
9135
9136 =item BUGS
9137
9138 =item SEE ALSO
9139
9140 =back
9141
9142 =head2 vars - Perl pragma to predeclare global variable names (obsolete)
9143
9144 =over 4
9145
9146 =item SYNOPSIS
9147
9148 =item DESCRIPTION
9149
9150 =back
9151
9152 =head2 vmsish - Perl pragma to control VMS-specific language features
9153
9154 =over 4
9155
9156 =item SYNOPSIS
9157
9158 =item DESCRIPTION
9159
9160 C<vmsish status>, C<vmsish exit>, C<vmsish time>, C<vmsish hushed>
9161
9162 =back
9163
9164 =head2 warnings - Perl pragma to control optional warnings
9165
9166 =over 4
9167
9168 =item SYNOPSIS
9169
9170 =item DESCRIPTION
9171
9172 use warnings::register, warnings::enabled(), warnings::enabled($category),
9173 warnings::enabled($object), warnings::warn($message),
9174 warnings::warn($category, $message), warnings::warn($object, $message),
9175 warnings::warnif($message), warnings::warnif($category, $message),
9176 warnings::warnif($object, $message)
9177
9178 =back
9179
9180 =head2 warnings::register - warnings import function
9181
9182 =over 4
9183
9184 =item SYNOPSIS
9185
9186 =item DESCRIPTION
9187
9188 =back
9189
9190 =head1 MODULE DOCUMENTATION
9191
9192 =head2 AnyDBM_File - provide framework for multiple DBMs
9193
9194 =over 4
9195
9196 =item SYNOPSIS
9197
9198 =item DESCRIPTION
9199
9200 =over 4
9201
9202 =item DBM Comparisons
9203
9204 [0], [1], [2], [3]
9205
9206 =back
9207
9208 =item SEE ALSO
9209
9210 =back
9211
9212 =head2 Attribute::Handlers - Simpler definition of attribute handlers
9213
9214 =over 4
9215
9216 =item VERSION
9217
9218 =item SYNOPSIS
9219
9220 =item DESCRIPTION
9221
9222 [0], [1], [2], [3], [4], [5]
9223
9224 =over 4
9225
9226 =item Typed lexicals
9227
9228 =item Type-specific attribute handlers
9229
9230 =item Non-interpretive attribute handlers
9231
9232 =item Phase-specific attribute handlers
9233
9234 =item Attributes as C<tie> interfaces
9235
9236 =back
9237
9238 =item EXAMPLES
9239
9240 =item DIAGNOSTICS
9241
9242 C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
9243 attributes>, C<Declaration of %s attribute in package %s may clash with
9244 future reserved word>, C<Can't have two ATTR specifiers on one subroutine>,
9245 C<Can't autotie a %s>, C<Internal error: %s symbol went missing>, C<Won't
9246 be able to apply END handler>
9247
9248 =item AUTHOR
9249
9250 =item BUGS
9251
9252 =item COPYRIGHT
9253
9254 =back
9255
9256 =head2 AutoLoader - load subroutines only on demand
9257
9258 =over 4
9259
9260 =item SYNOPSIS
9261
9262 =item DESCRIPTION
9263
9264 =over 4
9265
9266 =item Subroutine Stubs
9267
9268 =item Using B<AutoLoader>'s AUTOLOAD Subroutine
9269
9270 =item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
9271
9272 =item Package Lexicals
9273
9274 =item Not Using AutoLoader
9275
9276 =item B<AutoLoader> vs. B<SelfLoader>
9277
9278 =back
9279
9280 =item CAVEATS
9281
9282 =item SEE ALSO
9283
9284 =back
9285
9286 =head2 AutoSplit - split a package for autoloading
9287
9288 =over 4
9289
9290 =item SYNOPSIS
9291
9292 =item DESCRIPTION
9293
9294 $keep, $check, $modtime
9295
9296 =over 4
9297
9298 =item Multiple packages
9299
9300 =back
9301
9302 =item DIAGNOSTICS
9303
9304 =back
9305
9306 =head2 B - The Perl Compiler
9307
9308 =over 4
9309
9310 =item SYNOPSIS
9311
9312 =item DESCRIPTION
9313
9314 =item OVERVIEW OF CLASSES
9315
9316 =over 4
9317
9318 =item SV-RELATED CLASSES
9319
9320 =item B::SV METHODS
9321
9322 REFCNT, FLAGS
9323
9324 =item B::IV METHODS
9325
9326 IV, IVX, UVX, int_value, needs64bits, packiv
9327
9328 =item B::NV METHODS
9329
9330 NV, NVX
9331
9332 =item B::RV METHODS
9333
9334 RV
9335
9336 =item B::PV METHODS
9337
9338 PV, RV, PVX
9339
9340 =item B::PVMG METHODS
9341
9342 MAGIC, SvSTASH
9343
9344 =item B::MAGIC METHODS
9345
9346 MOREMAGIC, precomp, PRIVATE, TYPE, FLAGS, OBJ, PTR, REGEX
9347
9348 =item B::PVLV METHODS
9349
9350 TARGOFF, TARGLEN, TYPE, TARG
9351
9352 =item B::BM METHODS
9353
9354 USEFUL, PREVIOUS, RARE, TABLE
9355
9356 =item B::GV METHODS
9357
9358 is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
9359 LINE, FILE, FILEGV, GvREFCNT, FLAGS
9360
9361 =item B::IO METHODS
9362
9363 LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
9364 BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS, IsSTD
9365
9366 =item B::AV METHODS
9367
9368 FILL, MAX, OFF, ARRAY, AvFLAGS
9369
9370 =item B::CV METHODS
9371
9372 STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, XSUB, XSUBANY,
9373 CvFLAGS, const_sv
9374
9375 =item B::HV METHODS
9376
9377 FILL, MAX, KEYS, RITER, NAME, PMROOT, ARRAY
9378
9379 =item OP-RELATED CLASSES
9380
9381 =item B::OP METHODS
9382
9383 next, sibling, name, ppaddr, desc, targ, type, seq, flags, private
9384
9385 =item B::UNOP METHOD
9386
9387 first
9388
9389 =item B::BINOP METHOD
9390
9391 last
9392
9393 =item B::LOGOP METHOD
9394
9395 other
9396
9397 =item B::LISTOP METHOD
9398
9399 children
9400
9401 =item B::PMOP METHODS
9402
9403 pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, pmdynflags,
9404 pmpermflags, precomp, pmoffet
9405
9406 =item B::SVOP METHOD
9407
9408 sv, gv
9409
9410 =item B::PADOP METHOD
9411
9412 padix
9413
9414 =item B::PVOP METHOD
9415
9416 pv
9417
9418 =item B::LOOP METHODS
9419
9420 redoop, nextop, lastop
9421
9422 =item B::COP METHODS
9423
9424 label, stash, file, cop_seq, arybase, line
9425
9426 =back
9427
9428 =item FUNCTIONS EXPORTED BY C<B>
9429
9430 main_cv, init_av, begin_av, end_av, main_root, main_start, comppadlist,
9431 regex_padav, sv_undef, sv_yes, sv_no, amagic_generation, walkoptree(OP,
9432 METHOD), walkoptree_debug(DEBUG), walksymtable(SYMREF, METHOD, RECURSE,
9433 PREFIX), svref_2object(SV), ppname(OPNUM), hash(STR), cast_I32(I), minus_c,
9434 cstring(STR), perlstring(STR), class(OBJ), threadsv_names
9435
9436 =item AUTHOR
9437
9438 =back
9439
9440 =head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
9441 bytecode
9442
9443 =over 4
9444
9445 =item SYNOPSIS
9446
9447 =item DESCRIPTION
9448
9449 %insn_data, @insn_name, @optype, @specialsv_name
9450
9451 =item AUTHOR
9452
9453 =back
9454
9455 =head2 B::Assembler - Assemble Perl bytecode
9456
9457 =over 4
9458
9459 =item SYNOPSIS
9460
9461 =item DESCRIPTION
9462
9463 =item AUTHORS
9464
9465 =back
9466
9467 =head2 B::Bblock - Walk basic blocks
9468
9469 =over 4
9470
9471 =item SYNOPSIS
9472
9473 =item DESCRIPTION
9474
9475 =over 4
9476
9477 =item Functions
9478
9479 B<find_leaders>
9480
9481 =back
9482
9483 =item AUTHOR
9484
9485 =back
9486
9487 =head2 B::Bytecode - Perl compiler's bytecode backend
9488
9489 =over 4
9490
9491 =item SYNOPSIS
9492
9493 =item DESCRIPTION
9494
9495 =item OPTIONS
9496
9497 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
9498 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
9499 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
9500
9501 =item EXAMPLES
9502
9503 =item BUGS
9504
9505 =item AUTHORS
9506
9507 =back
9508
9509 =head2 B::C - Perl compiler's C backend
9510
9511 =over 4
9512
9513 =item SYNOPSIS
9514
9515 =item DESCRIPTION
9516
9517 =item OPTIONS
9518
9519 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-D>, B<-Do>, B<-Dc>, B<-DA>,
9520 B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fsave-data>, B<-fppaddr>, B<-fwarn-sv>,
9521 B<-fuse-script-name>, B<-fsave-sig-hash>, B<-On>, B<-O0>, B<-O1>, B<-O2>,
9522 B<-llimit>
9523
9524 =item EXAMPLES
9525
9526 =item BUGS
9527
9528 =item AUTHOR
9529
9530 =back
9531
9532 =head2 B::CC - Perl compiler's optimized C translation backend
9533
9534 =over 4
9535
9536 =item SYNOPSIS
9537
9538 =item DESCRIPTION
9539
9540 =item OPTIONS
9541
9542 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-mModulename>, B<-D>, B<-Dr>,
9543 B<-DO>, B<-Ds>, B<-Dp>, B<-Dq>, B<-Dl>, B<-Dt>, B<-f>,
9544 B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
9545
9546 =item EXAMPLES
9547
9548 =item BUGS
9549
9550 =item DIFFERENCES
9551
9552 =over 4
9553
9554 =item Loops
9555
9556 =item Context of ".."
9557
9558 =item Arithmetic
9559
9560 =item Deprecated features
9561
9562 =back
9563
9564 =item AUTHOR
9565
9566 =back
9567
9568 =head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
9569
9570 =over 4
9571
9572 =item SYNOPSIS
9573
9574 =item DESCRIPTION
9575
9576 =item EXAMPLE
9577
9578 =item OPTIONS
9579
9580 B<-basic>, B<-exec>, B<-tree>, B<-compact>, B<-loose>, B<-vt>, B<-ascii>,
9581 B<-main>, B<-base>I<n>, B<-bigendian>, B<-littleendian>, B<-concise>,
9582 B<-terse>, B<-linenoise>, B<-debug>, B<-env>
9583
9584 =item FORMATTING SPECIFICATIONS
9585
9586 B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
9587 B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
9588 B<#>I<var>, B<#>I<var>I<N>, B<~>, B<#addr>, B<#arg>, B<#class>,
9589 B<#classsym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
9590 B<#flags>, B<#flagval>, B<#hyphseq>, B<#label>, B<#lastaddr>, B<#name>,
9591 B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>, B<#private>, B<#privval>,
9592 B<#seq>, B<#seqnum>, B<#sibaddr>, B<#svaddr>, B<#svclass>, B<#svval>,
9593 B<#targ>, B<#targarg>, B<#targarglife>, B<#typenum>
9594
9595 =item ABBREVIATIONS
9596
9597 =over 4
9598
9599 =item OP flags abbreviations
9600
9601 =item OP class abbreviations
9602
9603 =back
9604
9605 =item Using B::Concise outside of the O framework
9606
9607 =item AUTHOR
9608
9609 =back
9610
9611 =head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
9612
9613 =over 4
9614
9615 =item SYNOPSIS
9616
9617 =item DESCRIPTION
9618
9619 =item AUTHOR
9620
9621 =back
9622
9623 =head2 B::Deparse - Perl compiler backend to produce perl code
9624
9625 =over 4
9626
9627 =item SYNOPSIS
9628
9629 =item DESCRIPTION
9630
9631 =item OPTIONS
9632
9633 B<-l>, B<-p>, B<-P>, B<-q>, B<-f>I<FILE>, B<-s>I<LETTERS>, B<C>,
9634 B<i>I<NUMBER>, B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
9635
9636 =item USING B::Deparse AS A MODULE
9637
9638 =over 4
9639
9640 =item Synopsis
9641
9642 =item Description
9643
9644 =item new
9645
9646 =item ambient_pragmas
9647
9648 strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
9649
9650 =item coderef2text
9651
9652 =back
9653
9654 =item BUGS
9655
9656 =item AUTHOR
9657
9658 =back
9659
9660 =head2 B::Disassembler - Disassemble Perl bytecode
9661
9662 =over 4
9663
9664 =item SYNOPSIS
9665
9666 =item DESCRIPTION
9667
9668 =item AUTHOR
9669
9670 =back
9671
9672 =head2 B::Lint - Perl lint
9673
9674 =over 4
9675
9676 =item SYNOPSIS
9677
9678 =item DESCRIPTION
9679
9680 =item OPTIONS AND LINT CHECKS
9681
9682 B<context>, B<implicit-read> and B<implicit-write>, B<dollar-underscore>,
9683 B<private-names>, B<undefined-subs>, B<regexp-variables>, B<all>, B<none>
9684
9685 =item NON LINT-CHECK OPTIONS
9686
9687 B<-u Package>
9688
9689 =item BUGS
9690
9691 =item AUTHOR
9692
9693 =back
9694
9695 =head2 B::O, O - Generic interface to Perl Compiler backends
9696
9697 =over 4
9698
9699 =item SYNOPSIS
9700
9701 =item DESCRIPTION
9702
9703 =item CONVENTIONS
9704
9705 =item IMPLEMENTATION
9706
9707 =item BUGS
9708
9709 =item AUTHOR
9710
9711 =back
9712
9713 =head2 B::Showlex - Show lexical variables used in functions or files
9714
9715 =over 4
9716
9717 =item SYNOPSIS
9718
9719 =item DESCRIPTION
9720
9721 =item AUTHOR
9722
9723 =back
9724
9725 =head2 B::Stackobj - Helper module for CC backend
9726
9727 =over 4
9728
9729 =item SYNOPSIS
9730
9731 =item DESCRIPTION
9732
9733 =item AUTHOR
9734
9735 =back
9736
9737 =head2 B::Stash - show what stashes are loaded
9738
9739 =head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
9740
9741 =over 4
9742
9743 =item SYNOPSIS
9744
9745 =item DESCRIPTION
9746
9747 =item AUTHOR
9748
9749 =back
9750
9751 =head2 B::Xref - Generates cross reference reports for Perl programs
9752
9753 =over 4
9754
9755 =item SYNOPSIS
9756
9757 =item DESCRIPTION
9758
9759 =item OPTIONS
9760
9761 C<-oFILENAME>, C<-r>, C<-d>, C<-D[tO]>
9762
9763 =item BUGS
9764
9765 =item AUTHOR
9766
9767 =back
9768
9769 =head2 Bblock, B::Bblock - Walk basic blocks
9770
9771 =over 4
9772
9773 =item SYNOPSIS
9774
9775 =item DESCRIPTION
9776
9777 =over 4
9778
9779 =item Functions
9780
9781 B<find_leaders>
9782
9783 =back
9784
9785 =item AUTHOR
9786
9787 =back
9788
9789 =head2 Benchmark - benchmark running times of Perl code
9790
9791 =over 4
9792
9793 =item SYNOPSIS
9794
9795 =item DESCRIPTION
9796
9797 =over 4
9798
9799 =item Methods
9800
9801 new, debug, iters
9802
9803 =item Standard Exports
9804
9805 timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
9806 timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
9807 TIMEDIFF, [ STYLE, [ FORMAT ] ] )
9808
9809 =item Optional Exports
9810
9811 clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUT, CODEHASHREF, [
9812 STYLE ] ), cmpthese ( RESULTSHASHREF, [ STYLE ] ), countit(TIME, CODE),
9813 disablecache ( ), enablecache ( ), timesum ( T1, T2 )
9814
9815 =back
9816
9817 =item NOTES
9818
9819 =item EXAMPLES
9820
9821 =item INHERITANCE
9822
9823 =item CAVEATS
9824
9825 =item SEE ALSO
9826
9827 =item AUTHORS
9828
9829 =item MODIFICATION HISTORY
9830
9831 =back
9832
9833 =head2 ByteLoader - load byte compiled perl code
9834
9835 =over 4
9836
9837 =item SYNOPSIS
9838
9839 =item DESCRIPTION
9840
9841 =item AUTHOR
9842
9843 =item SEE ALSO
9844
9845 =back
9846
9847 =head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend
9848
9849 =over 4
9850
9851 =item SYNOPSIS
9852
9853 =item DESCRIPTION
9854
9855 =item OPTIONS
9856
9857 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
9858 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
9859 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
9860
9861 =item EXAMPLES
9862
9863 =item BUGS
9864
9865 =item AUTHORS
9866
9867 =back
9868
9869 =head2 CGI - Simple Common Gateway Interface Class
9870
9871 =over 4
9872
9873 =item SYNOPSIS
9874
9875 =item ABSTRACT
9876
9877 =item DESCRIPTION
9878
9879 =over 4
9880
9881 =item PROGRAMMING STYLE
9882
9883 =item CALLING CGI.PM ROUTINES
9884
9885 =item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
9886
9887 =item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
9888
9889 =item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
9890
9891 =item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
9892
9893 =item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
9894
9895 =item SETTING THE VALUE(S) OF A NAMED PARAMETER:
9896
9897 =item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
9898
9899 =item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
9900
9901 =item DELETING A PARAMETER COMPLETELY:
9902
9903 =item DELETING ALL PARAMETERS:
9904
9905 =item DIRECT ACCESS TO THE PARAMETER LIST:
9906
9907 =item FETCHING THE PARAMETER LIST AS A HASH:
9908
9909 =item SAVING THE STATE OF THE SCRIPT TO A FILE:
9910
9911 =item RETRIEVING CGI ERRORS
9912
9913 =item USING THE FUNCTION-ORIENTED INTERFACE
9914
9915 B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:html4>, B<:netscape>, B<:html>,
9916 B<:standard>, B<:all>
9917
9918 =item PRAGMAS
9919
9920 -any, -compile, -nosticky, -no_undef_params, -no_xhtml, -nph,
9921 -newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
9922 -private_tempfiles
9923
9924 =item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
9925
9926 1. start_table() (generates a <table> tag), 2. end_table() (generates a
9927 </table> tag), 3. start_ul() (generates a <ul> tag), 4. end_ul() (generates
9928 a </ul> tag)
9929
9930 =back
9931
9932 =item GENERATING DYNAMIC DOCUMENTS
9933
9934 =over 4
9935
9936 =item CREATING A STANDARD HTTP HEADER:
9937
9938 =item GENERATING A REDIRECTION HEADER
9939
9940 =item CREATING THE HTML DOCUMENT HEADER
9941
9942 B<Parameters:>, 4, 5, 6..
9943
9944 =item ENDING THE HTML DOCUMENT:
9945
9946 =item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
9947
9948 =item OBTAINING THE SCRIPT'S URL
9949
9950 B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
9951 (B<-query_string>), B<-base>
9952
9953 =item MIXING POST AND URL PARAMETERS
9954
9955 =back
9956
9957 =item CREATING STANDARD HTML ELEMENTS:
9958
9959 =over 4
9960
9961 =item PROVIDING ARGUMENTS TO HTML SHORTCUTS
9962
9963 =item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
9964
9965 =item HTML SHORTCUTS AND LIST INTERPOLATION
9966
9967 =item NON-STANDARD HTML SHORTCUTS
9968
9969 =item AUTOESCAPING HTML
9970
9971 $escaped_string = escapeHTML("unescaped string");, $charset =
9972 charset([$charset]);, $flag = autoEscape([$flag]);
9973
9974 =item PRETTY-PRINTING HTML
9975
9976 =back
9977
9978 =item CREATING FILL-OUT FORMS:
9979
9980 =over 4
9981
9982 =item CREATING AN ISINDEX TAG
9983
9984 =item STARTING AND ENDING A FORM
9985
9986 B<application/x-www-form-urlencoded>, B<multipart/form-data>
9987
9988 =item CREATING A TEXT FIELD
9989
9990 B<Parameters>
9991
9992 =item CREATING A BIG TEXT FIELD
9993
9994 =item CREATING A PASSWORD FIELD
9995
9996 =item CREATING A FILE UPLOAD FIELD
9997
9998 B<Parameters>
9999
10000 =item CREATING A POPUP MENU
10001
10002 =item CREATING A SCROLLING LIST
10003
10004 B<Parameters:>
10005
10006 =item CREATING A GROUP OF RELATED CHECKBOXES
10007
10008 B<Parameters:>
10009
10010 =item CREATING A STANDALONE CHECKBOX
10011
10012 B<Parameters:>
10013
10014 =item CREATING A RADIO BUTTON GROUP
10015
10016 B<Parameters:>
10017
10018 =item CREATING A SUBMIT BUTTON 
10019
10020 B<Parameters:>
10021
10022 =item CREATING A RESET BUTTON
10023
10024 =item CREATING A DEFAULT BUTTON
10025
10026 =item CREATING A HIDDEN FIELD
10027
10028 B<Parameters:>
10029
10030 =item CREATING A CLICKABLE IMAGE BUTTON
10031
10032 B<Parameters:>
10033
10034 =item CREATING A JAVASCRIPT ACTION BUTTON
10035
10036 =back
10037
10038 =item HTTP COOKIES
10039
10040 1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
10041 B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
10042
10043 =item WORKING WITH FRAMES
10044
10045 1. Create a <Frameset> document, 2. Specify the destination for the
10046 document in the HTTP header, 3. Specify the destination for the document in
10047 the <form> tag
10048
10049 =item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
10050
10051 =item DEBUGGING
10052
10053 =over 4
10054
10055 =item DUMPING OUT ALL THE NAME/VALUE PAIRS
10056
10057 =back
10058
10059 =item FETCHING ENVIRONMENT VARIABLES
10060
10061 B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
10062 B<path_translated()>, B<remote_host()>, B<script_name()>, B<referer()>,
10063 B<auth_type ()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
10064 B<server_software ()>, B<remote_user ()>, B<user_name ()>,
10065 B<request_method()>, B<content_type()>, B<http()>, B<https()>
10066
10067 =item USING NPH SCRIPTS
10068
10069 In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
10070 parameters
10071
10072 =item Server Push
10073
10074 multipart_init(), multipart_start(), multipart_end(), multipart_final()
10075
10076 =item Avoiding Denial of Service Attacks
10077
10078 B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
10079 basis>, B<2. Globally for all scripts>
10080
10081 =item COMPATIBILITY WITH CGI-LIB.PL
10082
10083 =item AUTHOR INFORMATION
10084
10085 =item CREDITS
10086
10087 Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
10088 (james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
10089 (mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
10090 (jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
10091 (applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
10092 (tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
10093 (tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
10094 MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
10095 (kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
10096 Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
10097 MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
10098 ...and many many more..
10099
10100 =item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
10101
10102 =item BUGS
10103
10104 =item SEE ALSO
10105
10106 =back
10107
10108 =head2 CGI::Apache - Backward compatibility module for CGI.pm
10109
10110 =over 4
10111
10112 =item SYNOPSIS
10113
10114 =item ABSTRACT
10115
10116 =item DESCRIPTION
10117
10118 =item AUTHOR INFORMATION
10119
10120 =item BUGS
10121
10122 =item SEE ALSO
10123
10124 =back
10125
10126 =head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
10127 other) error log
10128
10129 =over 4
10130
10131 =item SYNOPSIS
10132
10133 =item DESCRIPTION
10134
10135 =item REDIRECTING ERROR MESSAGES
10136
10137 =item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
10138
10139 =over 4
10140
10141 =item Changing the default message
10142
10143 =back
10144
10145 =item MAKING WARNINGS APPEAR AS HTML COMMENTS
10146
10147 =item CHANGE LOG
10148
10149 =item AUTHORS
10150
10151 =item SEE ALSO
10152
10153 =back
10154
10155 =head2 CGI::Cookie - Interface to Netscape Cookies
10156
10157 =over 4
10158
10159 =item SYNOPSIS
10160
10161 =item DESCRIPTION
10162
10163 =item USING CGI::Cookie
10164
10165 B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
10166
10167 =over 4
10168
10169 =item Creating New Cookies
10170
10171 =item Sending the Cookie to the Browser
10172
10173 =item Recovering Previous Cookies
10174
10175 =item Manipulating Cookies
10176
10177 B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
10178
10179 =back
10180
10181 =item AUTHOR INFORMATION
10182
10183 =item BUGS
10184
10185 =item SEE ALSO
10186
10187 =back
10188
10189 =head2 CGI::Fast - CGI Interface for Fast CGI
10190
10191 =over 4
10192
10193 =item SYNOPSIS
10194
10195 =item DESCRIPTION
10196
10197 =item OTHER PIECES OF THE PUZZLE
10198
10199 =item WRITING FASTCGI PERL SCRIPTS
10200
10201 =item INSTALLING FASTCGI SCRIPTS
10202
10203 =item USING FASTCGI SCRIPTS AS CGI SCRIPTS
10204
10205 =item EXTERNAL FASTCGI SERVER INVOCATION
10206
10207 FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
10208
10209 =item CAVEATS
10210
10211 =item AUTHOR INFORMATION
10212
10213 =item BUGS
10214
10215 =item SEE ALSO
10216
10217 =back
10218
10219 =head2 CGI::Pretty - module to produce nicely formatted HTML code
10220
10221 =over 4
10222
10223 =item SYNOPSIS
10224
10225 =item DESCRIPTION
10226
10227 =over 4
10228
10229 =item Tags that won't be formatted
10230
10231 =item Customizing the Indenting
10232
10233 =back
10234
10235 =item BUGS
10236
10237 =item AUTHOR
10238
10239 =item SEE ALSO
10240
10241 =back
10242
10243 =head2 CGI::Push - Simple Interface to Server Push
10244
10245 =over 4
10246
10247 =item SYNOPSIS
10248
10249 =item DESCRIPTION
10250
10251 =item USING CGI::Push
10252
10253 -next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
10254
10255 =over 4
10256
10257 =item Heterogeneous Pages
10258
10259 =item Changing the Page Delay on the Fly
10260
10261 =back
10262
10263 =item INSTALLING CGI::Push SCRIPTS
10264
10265 =item AUTHOR INFORMATION
10266
10267 =item BUGS
10268
10269 =item SEE ALSO
10270
10271 =back
10272
10273 =head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
10274
10275 =over 4
10276
10277 =item SYNOPSIS
10278
10279 =item ABSTRACT
10280
10281 =item DESCRIPTION
10282
10283 =item AUTHOR INFORMATION
10284
10285 =item BUGS
10286
10287 =item SEE ALSO
10288
10289 =back
10290
10291 =head2 CGI::Util - Internal utilities used by CGI module
10292
10293 =over 4
10294
10295 =item SYNOPSIS
10296
10297 =item DESCRIPTION
10298
10299 =item AUTHOR INFORMATION
10300
10301 =item SEE ALSO
10302
10303 =back
10304
10305 =head2 CPAN - query, download and build perl modules from CPAN sites
10306
10307 =over 4
10308
10309 =item SYNOPSIS
10310
10311 =item DESCRIPTION
10312
10313 =over 4
10314
10315 =item Interactive Mode
10316
10317 Searching for authors, bundles, distribution files and modules, make, test,
10318 install, clean  modules or distributions, get, readme, look module or
10319 distribution, ls author, Signals
10320
10321 =item CPAN::Shell
10322
10323 =item autobundle
10324
10325 =item recompile
10326
10327 =item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
10328
10329 =item Programmer's interface
10330
10331 expand($type,@things), expandany(@things), Programming Examples
10332
10333 =item Methods in the other Classes
10334
10335 CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
10336 CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
10337 CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
10338 CPAN::Bundle::clean(), CPAN::Bundle::contains(),
10339 CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
10340 CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
10341 CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
10342 CPAN::Bundle::readme(), CPAN::Bundle::test(),
10343 CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
10344 CPAN::Distribution::clean(), CPAN::Distribution::containsmods(),
10345 CPAN::Distribution::cvs_import(), CPAN::Distribution::dir(),
10346 CPAN::Distribution::force($method,@args), CPAN::Distribution::get(),
10347 CPAN::Distribution::install(), CPAN::Distribution::isa_perl(),
10348 CPAN::Distribution::look(), CPAN::Distribution::make(),
10349 CPAN::Distribution::prereq_pm(), CPAN::Distribution::readme(),
10350 CPAN::Distribution::test(), CPAN::Distribution::uptodate(),
10351 CPAN::Index::force_reload(), CPAN::Index::reload(), CPAN::InfoObj::dump(),
10352 CPAN::Module::as_glimpse(), CPAN::Module::as_string(),
10353 CPAN::Module::clean(), CPAN::Module::cpan_file(),
10354 CPAN::Module::cpan_version(), CPAN::Module::cvs_import(),
10355 CPAN::Module::description(), CPAN::Module::force($method,@args),
10356 CPAN::Module::get(), CPAN::Module::inst_file(),
10357 CPAN::Module::inst_version(), CPAN::Module::install(),
10358 CPAN::Module::look(), CPAN::Module::make(),
10359 CPAN::Module::manpage_headline(), CPAN::Module::readme(),
10360 CPAN::Module::test(), CPAN::Module::uptodate(), CPAN::Module::userid()
10361
10362 =item Cache Manager
10363
10364 =item Bundles
10365
10366 =item Prerequisites
10367
10368 =item Finding packages and VERSION
10369
10370 =item Debugging
10371
10372 =item Floppy, Zip, Offline Mode
10373
10374 =back
10375
10376 =item CONFIGURATION
10377
10378 C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
10379 E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
10380 optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
10381 [unshift|push|splice] E<lt>listE<gt>>
10382
10383 =over 4
10384
10385 =item Note on urllist parameter's format
10386
10387 =item urllist parameter has CD-ROM support
10388
10389 =back
10390
10391 =item SECURITY
10392
10393 =item EXPORT
10394
10395 =item POPULATE AN INSTALLATION WITH LOTS OF MODULES
10396
10397 =item WORKING WITH CPAN.pm BEHIND FIREWALLS
10398
10399 =over 4
10400
10401 =item Three basic types of firewalls
10402
10403 http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
10404
10405 =item Configuring lynx or ncftp for going through a firewall
10406
10407 =back
10408
10409 =item FAQ
10410
10411 1), 2), 3), 4), 5), 6), 7), 8), 9), 10)
10412
10413 =item BUGS
10414
10415 =item AUTHOR
10416
10417 =item TRANSLATIONS
10418
10419 =item SEE ALSO
10420
10421 =back
10422
10423 =head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
10424
10425 =over 4
10426
10427 =item SYNOPSIS
10428
10429 =item DESCRIPTION
10430
10431 =back
10432
10433 =head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
10434 module
10435
10436 =over 4
10437
10438 =item SYNOPSIS
10439
10440 =item DESCRIPTION
10441
10442 =item  SEE ALSO
10443
10444 =back
10445
10446 =head2 Carp, carp    - warn of errors (from perspective of caller)
10447
10448 =over 4
10449
10450 =item SYNOPSIS
10451
10452 =item DESCRIPTION
10453
10454 =over 4
10455
10456 =item Forcing a Stack Trace
10457
10458 =back
10459
10460 =item BUGS
10461
10462 =back
10463
10464 =head2 Carp::Heavy, Carp heavy machinery - no user serviceable parts inside
10465
10466 =head2 Class::ISA -- report the search path for a class's ISA tree
10467
10468 =over 4
10469
10470 =item SYNOPSIS
10471
10472 =item DESCRIPTION
10473
10474 =item FUNCTIONS
10475
10476 the function Class::ISA::super_path($CLASS), the function
10477 Class::ISA::self_and_super_path($CLASS), the function
10478 Class::ISA::self_and_super_versions($CLASS)
10479
10480 =item CAUTIONARY NOTES
10481
10482 =item COPYRIGHT
10483
10484 =item AUTHOR
10485
10486 =back
10487
10488 =head2 Class::Struct - declare struct-like datatypes as Perl classes
10489
10490 =over 4
10491
10492 =item SYNOPSIS
10493
10494 =item DESCRIPTION
10495
10496 =over 4
10497
10498 =item The C<struct()> function
10499
10500 =item Class Creation at Compile Time
10501
10502 =item Element Types and Accessor Methods
10503
10504 Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
10505 C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
10506
10507 =item Initializing with C<new>
10508
10509 =back
10510
10511 =item EXAMPLES
10512
10513 Example 1, Example 2, Example 3
10514
10515 =item Author and Modification History
10516
10517 =back
10518
10519 =head2 Config - access Perl configuration information
10520
10521 =over 4
10522
10523 =item SYNOPSIS
10524
10525 =item DESCRIPTION
10526
10527 myconfig(), config_sh(), config_vars(@names)
10528
10529 =item EXAMPLE
10530
10531 =item WARNING
10532
10533 =item GLOSSARY
10534
10535 =over 4
10536
10537 =item _
10538
10539 C<_a>, C<_exe>, C<_o>
10540
10541 =item a
10542
10543 C<afs>, C<afsroot>, C<alignbytes>, C<ansi2knr>, C<aphostname>,
10544 C<api_revision>, C<api_subversion>, C<api_version>, C<api_versionstring>,
10545 C<ar>, C<archlib>, C<archlibexp>, C<archname64>, C<archname>, C<archobjs>,
10546 C<asctime_r_proto>, C<awk>
10547
10548 =item b
10549
10550 C<baserev>, C<bash>, C<bin>, C<binexp>, C<bison>, C<byacc>, C<byteorder>
10551
10552 =item c
10553
10554 C<c>, C<castflags>, C<cat>, C<cc>, C<cccdlflags>, C<ccdlflags>, C<ccflags>,
10555 C<ccflags_uselargefiles>, C<ccname>, C<ccsymbols>, C<ccversion>, C<cf_by>,
10556 C<cf_email>, C<cf_time>, C<charsize>, C<chgrp>, C<chmod>, C<chown>,
10557 C<clocktype>, C<comm>, C<compress>, C<contains>, C<cp>, C<cpio>, C<cpp>,
10558 C<cpp_stuff>, C<cppccsymbols>, C<cppflags>, C<cpplast>, C<cppminus>,
10559 C<cpprun>, C<cppstdin>, C<cppsymbols>, C<crypt_r_proto>, C<cryptlib>,
10560 C<csh>, C<ctermid_r_proto>, C<ctime_r_proto>
10561
10562 =item d
10563
10564 C<d__fwalk>, C<d_access>, C<d_accessx>, C<d_alarm>, C<d_archlib>,
10565 C<d_asctime_r>, C<d_atolf>, C<d_atoll>, C<d_attribut>, C<d_bcmp>,
10566 C<d_bcopy>, C<d_bsd>, C<d_bsdgetpgrp>, C<d_bsdsetpgrp>, C<d_bzero>,
10567 C<d_casti32>, C<d_castneg>, C<d_charvspr>, C<d_chown>, C<d_chroot>,
10568 C<d_chsize>, C<d_class>, C<d_closedir>, C<d_cmsghdr_s>, C<d_const>,
10569 C<d_crypt>, C<d_crypt_r>, C<d_csh>, C<d_ctermid_r>, C<d_ctime_r>,
10570 C<d_cuserid>, C<d_dbl_dig>, C<d_dbminitproto>, C<d_difftime>, C<d_dirfd>,
10571 C<d_dirnamlen>, C<d_dlerror>, C<d_dlopen>, C<d_dlsymun>, C<d_dosuid>,
10572 C<d_drand48_r>, C<d_drand48proto>, C<d_dup2>, C<d_eaccess>, C<d_endgrent>,
10573 C<d_endgrent_r>, C<d_endhent>, C<d_endhostent_r>, C<d_endnent>,
10574 C<d_endnetent_r>, C<d_endpent>, C<d_endprotoent_r>, C<d_endpwent>,
10575 C<d_endpwent_r>, C<d_endsent>, C<d_endservent_r>, C<d_eofnblk>,
10576 C<d_eunice>, C<d_fchdir>, C<d_fchmod>, C<d_fchown>, C<d_fcntl>,
10577 C<d_fcntl_can_lock>, C<d_fd_macros>, C<d_fd_set>, C<d_fds_bits>,
10578 C<d_fgetpos>, C<d_finite>, C<d_finitel>, C<d_flexfnam>, C<d_flock>,
10579 C<d_flockproto>, C<d_fork>, C<d_fp_class>, C<d_fpathconf>, C<d_fpclass>,
10580 C<d_fpclassify>, C<d_fpclassl>, C<d_fpos64_t>, C<d_frexpl>, C<d_fs_data_s>,
10581 C<d_fseeko>, C<d_fsetpos>, C<d_fstatfs>, C<d_fstatvfs>, C<d_fsync>,
10582 C<d_ftello>, C<d_ftime>, C<d_Gconvert>, C<d_getcwd>, C<d_getespwnam>,
10583 C<d_getfsstat>, C<d_getgrent>, C<d_getgrent_r>, C<d_getgrgid_r>,
10584 C<d_getgrnam_r>, C<d_getgrps>, C<d_gethbyaddr>, C<d_gethbyname>,
10585 C<d_gethent>, C<d_gethname>, C<d_gethostbyaddr_r>, C<d_gethostbyname_r>,
10586 C<d_gethostent_r>, C<d_gethostprotos>, C<d_getitimer>, C<d_getlogin>,
10587 C<d_getlogin_r>, C<d_getmnt>, C<d_getmntent>, C<d_getnbyaddr>,
10588 C<d_getnbyname>, C<d_getnent>, C<d_getnetbyaddr_r>, C<d_getnetbyname_r>,
10589 C<d_getnetent_r>, C<d_getnetprotos>, C<d_getpagsz>, C<d_getpbyname>,
10590 C<d_getpbynumber>, C<d_getpent>, C<d_getpgid>, C<d_getpgrp2>, C<d_getpgrp>,
10591 C<d_getppid>, C<d_getprior>, C<d_getprotobyname_r>,
10592 C<d_getprotobynumber_r>, C<d_getprotoent_r>, C<d_getprotoprotos>,
10593 C<d_getprpwnam>, C<d_getpwent>, C<d_getpwent_r>, C<d_getpwnam_r>,
10594 C<d_getpwuid_r>, C<d_getsbyname>, C<d_getsbyport>, C<d_getsent>,
10595 C<d_getservbyname_r>, C<d_getservbyport_r>, C<d_getservent_r>,
10596 C<d_getservprotos>, C<d_getspnam>, C<d_getspnam_r>, C<d_gettimeod>,
10597 C<d_gmtime_r>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>, C<d_htonl>,
10598 C<d_index>, C<d_inetaton>, C<d_int64_t>, C<d_isascii>, C<d_isfinite>,
10599 C<d_isinf>, C<d_isnan>, C<d_isnanl>, C<d_killpg>, C<d_lchown>,
10600 C<d_ldbl_dig>, C<d_link>, C<d_localtime_r>, C<d_locconv>, C<d_lockf>,
10601 C<d_longdbl>, C<d_longlong>, C<d_lseekproto>, C<d_lstat>, C<d_madvise>,
10602 C<d_mblen>, C<d_mbstowcs>, C<d_mbtowc>, C<d_memchr>, C<d_memcmp>,
10603 C<d_memcpy>, C<d_memmove>, C<d_memset>, C<d_mkdir>, C<d_mkdtemp>,
10604 C<d_mkfifo>, C<d_mkstemp>, C<d_mkstemps>, C<d_mktime>, C<d_mmap>,
10605 C<d_modfl>, C<d_modfl_pow32_bug>, C<d_mprotect>, C<d_msg>, C<d_msg_ctrunc>,
10606 C<d_msg_dontroute>, C<d_msg_oob>, C<d_msg_peek>, C<d_msg_proxy>,
10607 C<d_msgctl>, C<d_msgget>, C<d_msghdr_s>, C<d_msgrcv>, C<d_msgsnd>,
10608 C<d_msync>, C<d_munmap>, C<d_mymalloc>, C<d_nice>, C<d_nl_langinfo>,
10609 C<d_nv_preserves_uv>, C<d_off64_t>, C<d_old_pthread_create_joinable>,
10610 C<d_oldpthreads>, C<d_oldsock>, C<d_open3>, C<d_pathconf>, C<d_pause>,
10611 C<d_perl_otherlibdirs>, C<d_phostname>, C<d_pipe>, C<d_poll>,
10612 C<d_portable>, C<d_PRId64>, C<d_PRIeldbl>, C<d_PRIEUldbl>, C<d_PRIfldbl>,
10613 C<d_PRIFUldbl>, C<d_PRIgldbl>, C<d_PRIGUldbl>, C<d_PRIi64>, C<d_PRIo64>,
10614 C<d_PRIu64>, C<d_PRIx64>, C<d_PRIXU64>, C<d_procselfexe>,
10615 C<d_pthread_atfork>, C<d_pthread_yield>, C<d_pwage>, C<d_pwchange>,
10616 C<d_pwclass>, C<d_pwcomment>, C<d_pwexpire>, C<d_pwgecos>, C<d_pwpasswd>,
10617 C<d_pwquota>, C<d_qgcvt>, C<d_quad>, C<d_random_r>, C<d_readdir64_r>,
10618 C<d_readdir>, C<d_readdir_r>, C<d_readlink>, C<d_readv>, C<d_recvmsg>,
10619 C<d_rename>, C<d_rewinddir>, C<d_rmdir>, C<d_safebcpy>, C<d_safemcpy>,
10620 C<d_sanemcmp>, C<d_sbrkproto>, C<d_sched_yield>, C<d_scm_rights>,
10621 C<d_SCNfldbl>, C<d_seekdir>, C<d_select>, C<d_sem>, C<d_semctl>,
10622 C<d_semctl_semid_ds>, C<d_semctl_semun>, C<d_semget>, C<d_semop>,
10623 C<d_sendmsg>, C<d_setegid>, C<d_seteuid>, C<d_setgrent>, C<d_setgrent_r>,
10624 C<d_setgrps>, C<d_sethent>, C<d_sethostent_r>, C<d_setitimer>,
10625 C<d_setlinebuf>, C<d_setlocale>, C<d_setlocale_r>, C<d_setnent>,
10626 C<d_setnetent_r>, C<d_setpent>, C<d_setpgid>, C<d_setpgrp2>, C<d_setpgrp>,
10627 C<d_setprior>, C<d_setproctitle>, C<d_setprotoent_r>, C<d_setpwent>,
10628 C<d_setpwent_r>, C<d_setregid>, C<d_setresgid>, C<d_setresuid>,
10629 C<d_setreuid>, C<d_setrgid>, C<d_setruid>, C<d_setsent>, C<d_setservent_r>,
10630 C<d_setsid>, C<d_setvbuf>, C<d_sfio>, C<d_shm>, C<d_shmat>,
10631 C<d_shmatprototype>, C<d_shmctl>, C<d_shmdt>, C<d_shmget>, C<d_sigaction>,
10632 C<d_sigprocmask>, C<d_sigsetjmp>, C<d_sockatmark>, C<d_sockatmarkproto>,
10633 C<d_socket>, C<d_socklen_t>, C<d_sockpair>, C<d_socks5_init>, C<d_sqrtl>,
10634 C<d_srand48_r>, C<d_srandom_r>, C<d_sresgproto>, C<d_sresuproto>,
10635 C<d_statblks>, C<d_statfs_f_flags>, C<d_statfs_s>, C<d_statvfs>,
10636 C<d_stdio_cnt_lval>, C<d_stdio_ptr_lval>, C<d_stdio_ptr_lval_nochange_cnt>,
10637 C<d_stdio_ptr_lval_sets_cnt>, C<d_stdio_stream_array>, C<d_stdiobase>,
10638 C<d_stdstdio>, C<d_strchr>, C<d_strcoll>, C<d_strctcpy>, C<d_strerrm>,
10639 C<d_strerror>, C<d_strerror_r>, C<d_strftime>, C<d_strtod>, C<d_strtol>,
10640 C<d_strtold>, C<d_strtoll>, C<d_strtoq>, C<d_strtoul>, C<d_strtoull>,
10641 C<d_strtouq>, C<d_strxfrm>, C<d_suidsafe>, C<d_symlink>, C<d_syscall>,
10642 C<d_syscallproto>, C<d_sysconf>, C<d_sysernlst>, C<d_syserrlst>,
10643 C<d_system>, C<d_tcgetpgrp>, C<d_tcsetpgrp>, C<d_telldir>,
10644 C<d_telldirproto>, C<d_time>, C<d_times>, C<d_tm_tm_gmtoff>,
10645 C<d_tm_tm_zone>, C<d_tmpnam_r>, C<d_truncate>, C<d_ttyname_r>, C<d_tzname>,
10646 C<d_u32align>, C<d_ualarm>, C<d_umask>, C<d_uname>, C<d_union_semun>,
10647 C<d_unordered>, C<d_usleep>, C<d_usleepproto>, C<d_ustat>, C<d_vendorarch>,
10648 C<d_vendorbin>, C<d_vendorlib>, C<d_vfork>, C<d_void_closedir>,
10649 C<d_voidsig>, C<d_voidtty>, C<d_volatile>, C<d_vprintf>, C<d_wait4>,
10650 C<d_waitpid>, C<d_wcstombs>, C<d_wctomb>, C<d_writev>, C<d_xenix>, C<date>,
10651 C<db_hashtype>, C<db_prefixtype>, C<db_version_major>, C<db_version_minor>,
10652 C<db_version_patch>, C<defvoidused>, C<direntrytype>, C<dlext>, C<dlsrc>,
10653 C<doublesize>, C<drand01>, C<drand48_r_proto>, C<dynamic_ext>
10654
10655 =item e
10656
10657 C<eagain>, C<ebcdic>, C<echo>, C<egrep>, C<emacs>, C<endgrent_r_proto>,
10658 C<endhostent_r_proto>, C<endnetent_r_proto>, C<endprotoent_r_proto>,
10659 C<endpwent_r_proto>, C<endservent_r_proto>, C<eunicefix>, C<exe_ext>,
10660 C<expr>, C<extensions>, C<extras>
10661
10662 =item f
10663
10664 C<fflushall>, C<fflushNULL>, C<find>, C<firstmakefile>, C<flex>,
10665 C<fpossize>, C<fpostype>, C<freetype>, C<from>, C<full_ar>, C<full_csh>,
10666 C<full_sed>
10667
10668 =item g
10669
10670 C<gccosandvers>, C<gccversion>, C<getgrent_r_proto>, C<getgrgid_r_proto>,
10671 C<getgrnam_r_proto>, C<gethostbyaddr_r_proto>, C<gethostbyname_r_proto>,
10672 C<gethostent_r_proto>, C<getlogin_r_proto>, C<getnetbyaddr_r_proto>,
10673 C<getnetbyname_r_proto>, C<getnetent_r_proto>, C<getprotobyname_r_proto>,
10674 C<getprotobynumber_r_proto>, C<getprotoent_r_proto>, C<getpwent_r_proto>,
10675 C<getpwnam_r_proto>, C<getpwuid_r_proto>, C<getservbyname_r_proto>,
10676 C<getservbyport_r_proto>, C<getservent_r_proto>, C<getspnam_r_proto>,
10677 C<gidformat>, C<gidsign>, C<gidsize>, C<gidtype>, C<glibpth>, C<gmake>,
10678 C<gmtime_r_proto>, C<gnulibc_version>, C<grep>, C<groupcat>, C<groupstype>,
10679 C<gzip>
10680
10681 =item h
10682
10683 C<h_fcntl>, C<h_sysfile>, C<hint>, C<hostcat>
10684
10685 =item i
10686
10687 C<i16size>, C<i16type>, C<i32size>, C<i32type>, C<i64size>, C<i64type>,
10688 C<i8size>, C<i8type>, C<i_arpainet>, C<i_bsdioctl>, C<i_crypt>, C<i_db>,
10689 C<i_dbm>, C<i_dirent>, C<i_dld>, C<i_dlfcn>, C<i_fcntl>, C<i_float>,
10690 C<i_fp>, C<i_fp_class>, C<i_gdbm>, C<i_grp>, C<i_ieeefp>, C<i_inttypes>,
10691 C<i_langinfo>, C<i_libutil>, C<i_limits>, C<i_locale>, C<i_machcthr>,
10692 C<i_malloc>, C<i_math>, C<i_memory>, C<i_mntent>, C<i_ndbm>, C<i_netdb>,
10693 C<i_neterrno>, C<i_netinettcp>, C<i_niin>, C<i_poll>, C<i_prot>,
10694 C<i_pthread>, C<i_pwd>, C<i_rpcsvcdbm>, C<i_sfio>, C<i_sgtty>, C<i_shadow>,
10695 C<i_socks>, C<i_stdarg>, C<i_stddef>, C<i_stdlib>, C<i_string>,
10696 C<i_sunmath>, C<i_sysaccess>, C<i_sysdir>, C<i_sysfile>, C<i_sysfilio>,
10697 C<i_sysin>, C<i_sysioctl>, C<i_syslog>, C<i_sysmman>, C<i_sysmode>,
10698 C<i_sysmount>, C<i_sysndir>, C<i_sysparam>, C<i_sysresrc>, C<i_syssecrt>,
10699 C<i_sysselct>, C<i_syssockio>, C<i_sysstat>, C<i_sysstatfs>,
10700 C<i_sysstatvfs>, C<i_systime>, C<i_systimek>, C<i_systimes>, C<i_systypes>,
10701 C<i_sysuio>, C<i_sysun>, C<i_sysutsname>, C<i_sysvfs>, C<i_syswait>,
10702 C<i_termio>, C<i_termios>, C<i_time>, C<i_unistd>, C<i_ustat>, C<i_utime>,
10703 C<i_values>, C<i_varargs>, C<i_varhdr>, C<i_vfork>,
10704 C<ignore_versioned_solibs>, C<inc_version_list>, C<inc_version_list_init>,
10705 C<incpath>, C<inews>, C<installarchlib>, C<installbin>, C<installman1dir>,
10706 C<installman3dir>, C<installprefix>, C<installprefixexp>,
10707 C<installprivlib>, C<installscript>, C<installsitearch>, C<installsitebin>,
10708 C<installsitelib>, C<installstyle>, C<installusrbinperl>,
10709 C<installvendorarch>, C<installvendorbin>, C<installvendorlib>, C<intsize>,
10710 C<issymlink>, C<ivdformat>, C<ivsize>, C<ivtype>
10711
10712 =item k
10713
10714 C<known_extensions>, C<ksh>
10715
10716 =item l
10717
10718 C<ld>, C<lddlflags>, C<ldflags>, C<ldflags_uselargefiles>, C<ldlibpthname>,
10719 C<less>, C<lib_ext>, C<libc>, C<libperl>, C<libpth>, C<libs>, C<libsdirs>,
10720 C<libsfiles>, C<libsfound>, C<libspath>, C<libswanted>,
10721 C<libswanted_uselargefiles>, C<line>, C<lint>, C<lkflags>, C<ln>, C<lns>,
10722 C<localtime_r_proto>, C<locincpth>, C<loclibpth>, C<longdblsize>,
10723 C<longlongsize>, C<longsize>, C<lp>, C<lpr>, C<ls>, C<lseeksize>,
10724 C<lseektype>
10725
10726 =item m
10727
10728 C<mail>, C<mailx>, C<make>, C<make_set_make>, C<mallocobj>, C<mallocsrc>,
10729 C<malloctype>, C<man1dir>, C<man1direxp>, C<man1ext>, C<man3dir>,
10730 C<man3direxp>, C<man3ext>
10731
10732 =item M
10733
10734 C<Mcc>, C<mips_type>, C<mkdir>, C<mmaptype>, C<modetype>, C<more>,
10735 C<multiarch>, C<mv>, C<myarchname>, C<mydomain>, C<myhostname>, C<myuname>
10736
10737 =item n
10738
10739 C<n>, C<need_va_copy>, C<netdb_hlen_type>, C<netdb_host_type>,
10740 C<netdb_name_type>, C<netdb_net_type>, C<nm>, C<nm_opt>, C<nm_so_opt>,
10741 C<nonxs_ext>, C<nroff>, C<nv_preserves_uv_bits>, C<nveformat>,
10742 C<nvEUformat>, C<nvfformat>, C<nvFUformat>, C<nvgformat>, C<nvGUformat>,
10743 C<nvsize>, C<nvtype>
10744
10745 =item o
10746
10747 C<o_nonblock>, C<obj_ext>, C<old_pthread_create_joinable>, C<optimize>,
10748 C<orderlib>, C<osname>, C<osvers>, C<otherlibdirs>
10749
10750 =item p
10751
10752 C<package>, C<pager>, C<passcat>, C<patchlevel>, C<path_sep>, C<perl5>,
10753 C<perl>, C<perl_patchlevel>
10754
10755 =item P
10756
10757 C<PERL_REVISION>, C<PERL_SUBVERSION>, C<PERL_VERSION>, C<perladmin>,
10758 C<perllibs>, C<perlpath>, C<pg>, C<phostname>, C<pidtype>, C<plibpth>,
10759 C<pm_apiversion>, C<pmake>, C<pr>, C<prefix>, C<prefixexp>, C<privlib>,
10760 C<privlibexp>, C<procselfexe>, C<prototype>, C<ptrsize>
10761
10762 =item q
10763
10764 C<quadkind>, C<quadtype>
10765
10766 =item r
10767
10768 C<randbits>, C<randfunc>, C<random_r_proto>, C<randseedtype>, C<ranlib>,
10769 C<rd_nodata>, C<readdir64_r_proto>, C<readdir_r_proto>, C<revision>, C<rm>,
10770 C<rmail>, C<run>, C<runnm>
10771
10772 =item s
10773
10774 C<sched_yield>, C<scriptdir>, C<scriptdirexp>, C<sed>, C<seedfunc>,
10775 C<selectminbits>, C<selecttype>, C<sendmail>, C<setgrent_r_proto>,
10776 C<sethostent_r_proto>, C<setlocale_r_proto>, C<setnetent_r_proto>,
10777 C<setprotoent_r_proto>, C<setpwent_r_proto>, C<setservent_r_proto>, C<sh>,
10778 C<shar>, C<sharpbang>, C<shmattype>, C<shortsize>, C<shrpenv>, C<shsharp>,
10779 C<sig_count>, C<sig_name>, C<sig_name_init>, C<sig_num>, C<sig_num_init>,
10780 C<sig_size>, C<signal_t>, C<sitearch>, C<sitearchexp>, C<sitebin>,
10781 C<sitebinexp>, C<sitelib>, C<sitelib_stem>, C<sitelibexp>, C<siteprefix>,
10782 C<siteprefixexp>, C<sizesize>, C<sizetype>, C<sleep>, C<smail>, C<so>,
10783 C<sockethdr>, C<socketlib>, C<socksizetype>, C<sort>, C<spackage>,
10784 C<spitshell>, C<sPRId64>, C<sPRIeldbl>, C<sPRIEUldbl>, C<sPRIfldbl>,
10785 C<sPRIFUldbl>, C<sPRIgldbl>, C<sPRIGUldbl>, C<sPRIi64>, C<sPRIo64>,
10786 C<sPRIu64>, C<sPRIx64>, C<sPRIXU64>, C<srand48_r_proto>,
10787 C<srandom_r_proto>, C<src>, C<sSCNfldbl>, C<ssizetype>, C<startperl>,
10788 C<startsh>, C<static_ext>, C<stdchar>, C<stdio_base>, C<stdio_bufsiz>,
10789 C<stdio_cnt>, C<stdio_filbuf>, C<stdio_ptr>, C<stdio_stream_array>,
10790 C<strerror_r_proto>, C<strings>, C<submit>, C<subversion>, C<sysman>
10791
10792 =item t
10793
10794 C<tail>, C<tar>, C<targetarch>, C<tbl>, C<tee>, C<test>, C<timeincl>,
10795 C<timetype>, C<tmpnam_r_proto>, C<to>, C<touch>, C<tr>, C<trnl>, C<troff>,
10796 C<ttyname_r_proto>
10797
10798 =item u
10799
10800 C<u16size>, C<u16type>, C<u32size>, C<u32type>, C<u64size>, C<u64type>,
10801 C<u8size>, C<u8type>, C<uidformat>, C<uidsign>, C<uidsize>, C<uidtype>,
10802 C<uname>, C<uniq>, C<uquadtype>, C<use5005threads>, C<use64bitall>,
10803 C<use64bitint>, C<usecrosscompile>, C<usedl>, C<useithreads>,
10804 C<uselargefiles>, C<uselongdouble>, C<usemorebits>, C<usemultiplicity>,
10805 C<usemymalloc>, C<usenm>, C<useopcode>, C<useperlio>, C<useposix>,
10806 C<usereentrant>, C<usesfio>, C<useshrplib>, C<usesocks>, C<usethreads>,
10807 C<usevendorprefix>, C<usevfork>, C<usrinc>, C<uuname>, C<uvoformat>,
10808 C<uvsize>, C<uvtype>, C<uvuformat>, C<uvxformat>, C<uvXUformat>
10809
10810 =item v
10811
10812 C<vendorarch>, C<vendorarchexp>, C<vendorbin>, C<vendorbinexp>,
10813 C<vendorlib>, C<vendorlib_stem>, C<vendorlibexp>, C<vendorprefix>,
10814 C<vendorprefixexp>, C<version>, C<version_patchlevel_string>,
10815 C<versiononly>, C<vi>, C<voidflags>
10816
10817 =item x
10818
10819 C<xlibpth>, C<xs_apiversion>
10820
10821 =item y
10822
10823 C<yacc>, C<yaccflags>
10824
10825 =item z
10826
10827 C<zcat>, C<zip>
10828
10829 =back
10830
10831 =item NOTE
10832
10833 =back
10834
10835 =head2 Cwd - get pathname of current working directory
10836
10837 =over 4
10838
10839 =item SYNOPSIS
10840
10841 =item DESCRIPTION
10842
10843 =over 4
10844
10845 =item getcwd and friends
10846
10847 getcwd, cwd, fastcwd, fastgetcwd
10848
10849 =item abs_path and friends
10850
10851 abs_path, realpath, fast_abs_path
10852
10853 =item $ENV{PWD}
10854
10855 =back
10856
10857 =item NOTES
10858
10859 =item SEE ALSO
10860
10861 =back
10862
10863 =head2 DB - programmatic interface to the Perl debugging API (draft,
10864 subject to
10865 change)
10866
10867 =over 4
10868
10869 =item SYNOPSIS
10870
10871 =item DESCRIPTION
10872
10873 =over 4
10874
10875 =item Global Variables
10876
10877  $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace,  @DB::args, 
10878 @DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
10879 $DB::lineno
10880
10881 =item API Methods
10882
10883 CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
10884 CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
10885
10886 =item Client Callback Methods
10887
10888 CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
10889 CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
10890 CLIENT->output(LIST)
10891
10892 =back
10893
10894 =item BUGS
10895
10896 =item AUTHOR
10897
10898 =back
10899
10900 =head2 DB_File - Perl5 access to Berkeley DB version 1.x
10901
10902 =over 4
10903
10904 =item SYNOPSIS
10905
10906 =item DESCRIPTION
10907
10908 B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
10909
10910 =over 4
10911
10912 =item Using DB_File with Berkeley DB version 2 or greater
10913
10914 =item Interface to Berkeley DB
10915
10916 =item Opening a Berkeley DB Database File
10917
10918 =item Default Parameters
10919
10920 =item In Memory Databases
10921
10922 =back
10923
10924 =item DB_HASH
10925
10926 =over 4
10927
10928 =item A Simple Example
10929
10930 =back
10931
10932 =item DB_BTREE
10933
10934 =over 4
10935
10936 =item Changing the BTREE sort order
10937
10938 =item Handling Duplicate Keys 
10939
10940 =item The get_dup() Method
10941
10942 =item The find_dup() Method
10943
10944 =item The del_dup() Method
10945
10946 =item Matching Partial Keys 
10947
10948 =back
10949
10950 =item DB_RECNO
10951
10952 =over 4
10953
10954 =item The 'bval' Option
10955
10956 =item A Simple Example
10957
10958 =item Extra RECNO Methods
10959
10960 B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
10961 B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
10962 length, elements);>
10963
10964 =item Another Example
10965
10966 =back
10967
10968 =item THE API INTERFACE
10969
10970 B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
10971 $X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
10972 $flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
10973 $value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
10974
10975 =item DBM FILTERS
10976
10977 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
10978 B<filter_fetch_value>
10979
10980 =over 4
10981
10982 =item The Filter
10983
10984 =item An Example -- the NULL termination problem.
10985
10986 =item Another Example -- Key is a C int.
10987
10988 =back
10989
10990 =item HINTS AND TIPS 
10991
10992 =over 4
10993
10994 =item Locking: The Trouble with fd
10995
10996 =item Safe ways to lock a database
10997
10998 B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
10999
11000 =item Sharing Databases With C Applications
11001
11002 =item The untie() Gotcha
11003
11004 =back
11005
11006 =item COMMON QUESTIONS
11007
11008 =over 4
11009
11010 =item Why is there Perl source in my database?
11011
11012 =item How do I store complex data structures with DB_File?
11013
11014 =item What does "Invalid Argument" mean?
11015
11016 =item What does "Bareword 'DB_File' not allowed" mean? 
11017
11018 =back
11019
11020 =item REFERENCES
11021
11022 =item HISTORY
11023
11024 =item BUGS
11025
11026 =item AVAILABILITY
11027
11028 =item COPYRIGHT
11029
11030 =item SEE ALSO
11031
11032 =item AUTHOR
11033
11034 =back
11035
11036 =head2 Data::Dumper - stringified perl data structures, suitable for both
11037 printing and C<eval>
11038
11039 =over 4
11040
11041 =item SYNOPSIS
11042
11043 =item DESCRIPTION
11044
11045 =over 4
11046
11047 =item Methods
11048
11049 I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
11050 I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
11051 I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
11052 I<$OBJ>->Reset
11053
11054 =item Functions
11055
11056 Dumper(I<LIST>)
11057
11058 =item Configuration Variables or Methods
11059
11060 $Data::Dumper::Indent  I<or>  I<$OBJ>->Indent(I<[NEWVAL]>),
11061 $Data::Dumper::Purity  I<or>  I<$OBJ>->Purity(I<[NEWVAL]>),
11062 $Data::Dumper::Pad  I<or>  I<$OBJ>->Pad(I<[NEWVAL]>),
11063 $Data::Dumper::Varname  I<or>  I<$OBJ>->Varname(I<[NEWVAL]>),
11064 $Data::Dumper::Useqq  I<or>  I<$OBJ>->Useqq(I<[NEWVAL]>),
11065 $Data::Dumper::Terse  I<or>  I<$OBJ>->Terse(I<[NEWVAL]>),
11066 $Data::Dumper::Freezer  I<or>  $I<OBJ>->Freezer(I<[NEWVAL]>),
11067 $Data::Dumper::Toaster  I<or>  $I<OBJ>->Toaster(I<[NEWVAL]>),
11068 $Data::Dumper::Deepcopy  I<or>  $I<OBJ>->Deepcopy(I<[NEWVAL]>),
11069 $Data::Dumper::Quotekeys  I<or>  $I<OBJ>->Quotekeys(I<[NEWVAL]>),
11070 $Data::Dumper::Bless  I<or>  $I<OBJ>->Bless(I<[NEWVAL]>),
11071 $Data::Dumper::Maxdepth  I<or>  $I<OBJ>->Maxdepth(I<[NEWVAL]>),
11072 $Data::Dumper::Useperl  I<or>  $I<OBJ>->Useperl(I<[NEWVAL]>),
11073 $Data::Dumper::Sortkeys  I<or>  $I<OBJ>->Sortkeys(I<[NEWVAL]>),
11074 $Data::Dumper::Deparse  I<or>  $I<OBJ>->Deparse(I<[NEWVAL]>)
11075
11076 =item Exports
11077
11078 Dumper
11079
11080 =back
11081
11082 =item EXAMPLES
11083
11084 =item BUGS
11085
11086 =item AUTHOR
11087
11088 =item VERSION
11089
11090 =item SEE ALSO
11091
11092 =back
11093
11094 =head2 Devel::DProf - a Perl code profiler
11095
11096 =over 4
11097
11098 =item SYNOPSIS
11099
11100 =item DESCRIPTION
11101
11102 =item PROFILE FORMAT
11103
11104 =item AUTOLOAD
11105
11106 =item ENVIRONMENT
11107
11108 =item BUGS
11109
11110 =item SEE ALSO
11111
11112 =back
11113
11114 =head2 Devel::PPPort, Perl/Pollution/Portability
11115
11116 =over 4
11117
11118 =item SYNOPSIS
11119
11120 =item DESCRIPTION
11121
11122 =over 4
11123
11124 =item WriteFile
11125
11126 =back
11127
11128 =item ppport.h
11129
11130 =item AUTHOR
11131
11132 =item SEE ALSO
11133
11134 =back
11135
11136 =head2 Devel::Peek - A data debugging tool for the XS programmer
11137
11138 =over 4
11139
11140 =item SYNOPSIS
11141
11142 =item DESCRIPTION
11143
11144 =over 4
11145
11146 =item Runtime debugging
11147
11148 =item Memory footprint debugging
11149
11150 =back
11151
11152 =item EXAMPLES
11153
11154 =over 4
11155
11156 =item A simple scalar string
11157
11158 =item A simple scalar number
11159
11160 =item A simple scalar with an extra reference
11161
11162 =item A reference to a simple scalar
11163
11164 =item A reference to an array
11165
11166 =item A reference to a hash
11167
11168 =item Dumping a large array or hash
11169
11170 =item A reference to an SV which holds a C pointer
11171
11172 =item A reference to a subroutine
11173
11174 =back
11175
11176 =item EXPORTS
11177
11178 =item BUGS
11179
11180 =item AUTHOR
11181
11182 =item SEE ALSO
11183
11184 =back
11185
11186 =head2 Devel::SelfStubber - generate stubs for a SelfLoading module
11187
11188 =over 4
11189
11190 =item SYNOPSIS
11191
11192 =item DESCRIPTION
11193
11194 =back
11195
11196 =head2 Digest:: - Modules that calculate message digests
11197
11198 =over 4
11199
11200 =item SYNOPSIS
11201
11202 =item DESCRIPTION
11203
11204 I<binary>, I<hex>, I<base64>
11205
11206 =item OO INTERFACE
11207
11208 $ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
11209 Digest::XXX->new($arg,...), $ctx->reset, $ctx->add($data,...),
11210 $ctx->addfile($io_handle), $ctx->digest, $ctx->hexdigest, $ctx->b64digest
11211
11212 =item SEE ALSO
11213
11214 =item AUTHOR
11215
11216 =back
11217
11218 =head2 Digest::MD5 - Perl interface to the MD5 Algorithm
11219
11220 =over 4
11221
11222 =item SYNOPSIS
11223
11224 =item DESCRIPTION
11225
11226 =item FUNCTIONS
11227
11228 md5($data,...), md5_hex($data,...), md5_base64($data,...)
11229
11230 =item METHODS
11231
11232 $md5 = Digest::MD5->new, $md5->reset, $md5->add($data,...),
11233 $md5->addfile($io_handle), $md5->digest, $md5->hexdigest, $md5->b64digest
11234
11235 =item EXAMPLES
11236
11237 =item SEE ALSO
11238
11239 =item COPYRIGHT
11240
11241 =item AUTHORS
11242
11243 =back
11244
11245 =head2 DirHandle - supply object methods for directory handles
11246
11247 =over 4
11248
11249 =item SYNOPSIS
11250
11251 =item DESCRIPTION
11252
11253 =item NOTES
11254
11255 =back
11256
11257 =head2 Dumpvalue - provides screen dump of Perl data.
11258
11259 =over 4
11260
11261 =item SYNOPSIS
11262
11263 =item DESCRIPTION
11264
11265 =over 4
11266
11267 =item Creation
11268
11269 C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
11270 C<dumpDBFiles>, C<dumpPackages>, C<dumpReused>, C<tick>, C<quoteHighBit>,
11271 C<printUndef>, C<usageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
11272 stopDbSignal
11273
11274 =item Methods
11275
11276 dumpValue, dumpValues, stringify, dumpvars, set_quote, set_unctrl,
11277 compactDump, veryCompact, set, get
11278
11279 =back
11280
11281 =back
11282
11283 =head2 DynaLoader - Dynamically load C libraries into Perl code
11284
11285 =over 4
11286
11287 =item SYNOPSIS
11288
11289 =item DESCRIPTION
11290
11291 @dl_library_path, @dl_resolve_using, @dl_require_symbols, @dl_librefs,
11292 @dl_modules, dl_error(), $dl_debug, dl_findfile(), dl_expandspec(),
11293 dl_load_file(), dl_unload_file(), dl_loadflags(), dl_find_symbol(),
11294 dl_find_symbol_anywhere(), dl_undef_symbols(), dl_install_xsub(),
11295 bootstrap()
11296
11297 =item AUTHOR
11298
11299 =back
11300
11301 =head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
11302 Perl code
11303
11304 =over 4
11305
11306 =item SYNOPSIS
11307
11308 =item DESCRIPTION
11309
11310 =item AUTHOR
11311
11312 =back
11313
11314 =head2 Encode - character encodings
11315
11316 =over 4
11317
11318 =item SYNOPSIS
11319
11320 =over 4
11321
11322 =item Table of Contents
11323
11324 =back
11325
11326 =item DESCRIPTION
11327
11328 =over 4
11329
11330 =item TERMINOLOGY
11331
11332 =back
11333
11334 =item PERL ENCODING API
11335
11336 $octets  = encode(ENCODING, $string [, CHECK]), $string = decode(ENCODING,
11337 $octets [, CHECK]), [$length =] from_to($octets, FROM_ENC, TO_ENC [,
11338 CHECK]), $octets = encode_utf8($string);, $string = decode_utf8($octets [,
11339 CHECK]);
11340
11341 =over 4
11342
11343 =item Listing available encodings
11344
11345 =item Defining Aliases
11346
11347 =back
11348
11349 =item Encoding via PerlIO
11350
11351 =item Handling Malformed Data
11352
11353 I<CHECK> = Encode::FB_DEFAULT ( == 0), I<CHECK> = Encode::FB_CROAK ( == 1),
11354 I<CHECK> = Encode::FB_QUIET, I<CHECK> = Encode::FB_WARN, perlqq mode
11355 (I<CHECK> = Encode::FB_PERLQQ), HTML charref mode (I<CHECK> =
11356 Encode::FB_HTMLCREF), XML charref mode (I<CHECK> = Encode::FB_XMLCREF), The
11357 bitmask
11358
11359 =over 4
11360
11361 =item Unimplemented fallback schemes
11362
11363 =back
11364
11365 =item Defining Encodings
11366
11367 =item The UTF-8 flag
11368
11369 Goal #1:, Goal #2:, Goal #3:, Goal #4:
11370
11371 =over 4
11372
11373 =item Messing with Perl's Internals
11374
11375 is_utf8(STRING [, CHECK]), _utf8_on(STRING), _utf8_off(STRING)
11376
11377 =back
11378
11379 =item SEE ALSO
11380
11381 =item MAINTAINER
11382
11383 =back
11384
11385 =head2 Encode::Alias - alias definitions to encodings
11386
11387 =over 4
11388
11389 =item SYNOPSIS
11390
11391 =item DESCRIPTION
11392
11393 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
11394 reference, e.g.:
11395
11396 =over 4
11397
11398 =item Alias overloading
11399
11400 =back
11401
11402 =item SEE ALSO
11403
11404 =back
11405
11406 =head2 Encode::Byte - Single Byte Encodings
11407
11408 =over 4
11409
11410 =item SYNOPSIS
11411
11412 =item ABSTRACT
11413
11414 =item DESCRIPTION
11415
11416 =item SEE ALSO
11417
11418 =back
11419
11420 =head2   Encode::CJKConstants -- Internally used by Encode::??::ISO_2022_*
11421
11422 =head2 Encode::CN - China-based Chinese Encodings
11423
11424 =over 4
11425
11426 =item SYNOPSIS
11427
11428 =item DESCRIPTION
11429
11430 =item NOTES
11431
11432 =item BUGS
11433
11434 =item SEE ALSO
11435
11436 =back
11437
11438 =head2 Encode::CN::HZ -- internally used by Encode::CN
11439
11440 =head2 Encode::Config -- internally used by Encode
11441
11442 =head2 Encode::EBCDIC - EBCDIC Encodings
11443
11444 =over 4
11445
11446 =item SYNOPSIS
11447
11448 =item ABSTRACT
11449
11450 =item DESCRIPTION
11451
11452 =item SEE ALSO
11453
11454 =back
11455
11456 =head2 Encode::Encoding - Encode Implementation Base Class
11457
11458 =over 4
11459
11460 =item SYNOPSIS
11461
11462 =item DESCRIPTION
11463
11464 =over 4
11465
11466 =item Methods you should implement
11467
11468 -E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check])
11469
11470 =item Other methods defined in Encode::Encodings
11471
11472 -E<gt>name, -E<gt>new_sequence, -E<gt>perlio_ok(), -E<gt>needs_lines()
11473
11474 =item Example: Encode::ROT13
11475
11476 =back
11477
11478 =item Why the heck Encode API is different?
11479
11480 =over 4
11481
11482 =item Compiled Encodings
11483
11484 =back
11485
11486 =item SEE ALSO
11487
11488 Scheme 1, Scheme 2, Other Schemes
11489
11490 =back
11491
11492 =head2 Encode::Guess -- Guesses encoding from data
11493
11494 =over 4
11495
11496 =item SYNOPSIS
11497
11498 =item ABSTRACT
11499
11500 =item DESCRIPTION
11501
11502 Encode::Guess->set_suspects, Encode::Guess->add_suspects,
11503 Encode::decode("Guess" ...), Encode::Guess->guess($data),
11504 guess_encoding($data, [, I<list of suspects>])
11505
11506 =item CAVEATS
11507
11508 =item TO DO
11509
11510 =item SEE ALSO
11511
11512 =back
11513
11514 =head2 Encode::JP - Japanese Encodings
11515
11516 =over 4
11517
11518 =item SYNOPSIS
11519
11520 =item ABSTRACT
11521
11522 =item DESCRIPTION
11523
11524 =item Note on ISO-2022-JP(-1)?
11525
11526 =item BUGS
11527
11528 =item SEE ALSO
11529
11530 =back
11531
11532 =head2 Encode::JP::H2Z -- internally used by Encode::JP::2022_JP*
11533
11534 =head2 Encode::JP::JIS7 -- internally used by Encode::JP
11535
11536 =head2 Encode::KR - Korean Encodings
11537
11538 =over 4
11539
11540 =item SYNOPSIS
11541
11542 =item DESCRIPTION
11543
11544 =item BUGS
11545
11546 =item SEE ALSO
11547
11548 =back
11549
11550 =head2 Encode::KR::2022_KR -- internally used by Encode::KR
11551
11552 =head2 Encode::MIME::Header -- MIME 'B' and 'Q' header encoding
11553
11554 =over 4
11555
11556 =item SYNOPSIS
11557
11558 =item ABSTRACT
11559
11560 =item DESCRIPTION
11561
11562 =item BUGS
11563
11564 =item SEE ALSO
11565
11566 =back
11567
11568 =head2 Encode::PerlIO -- a detailed document on Encode and PerlIO
11569
11570 =over 4
11571
11572 =item Overview
11573
11574 =item How does it work?
11575
11576 =item BUGS
11577
11578 =over 4
11579
11580 =item Workaround
11581
11582 =item How can I tell whether my encoding fully supports PerlIO ?
11583
11584 =back
11585
11586 =item SEE ALSO
11587
11588 =back
11589
11590 =head2 Encode::Supported -- Encodings supported by Encode
11591
11592 =over 4
11593
11594 =item DESCRIPTION
11595
11596 =over 4
11597
11598 =item Encoding Names
11599
11600 =back
11601
11602 =item Supported Encodings
11603
11604 =over 4
11605
11606 =item Built-in Encodings
11607
11608 =item Encode::Unicode -- other Unicode encodings
11609
11610 =item Encode::Byte -- Extended ASCII
11611
11612 ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
11613 the Cyrillic world, gsm0338 - Hentai Latin 1
11614
11615 =item CJK: Chinese, Japanese, Korean (Multibyte)
11616
11617 Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
11618 Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
11619 Encode::JIS2K -- JIS X 0213 encodings via CPAN
11620
11621 =item Miscellaneous encodings
11622
11623 Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
11624
11625 =back
11626
11627 =item Unsupported encodings
11628
11629   ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
11630 Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
11631 System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
11632 Various Mac encodings, (Mac) Indic encodings
11633
11634 =item Encoding vs. Charset -- terminology
11635
11636 =item Encoding Classification (by Anton Tagunov and Dan Kogai)
11637
11638 =over 4
11639
11640 =item Microsoft-related naming mess
11641
11642 KS_C_5601-1987, GB2312, Big5, Shift_JIS
11643
11644 =back
11645
11646 =item Glossary
11647
11648 character repertoire, coded character set (CCS), character encoding scheme
11649 (CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
11650 UTF-16
11651
11652 =item See Also
11653
11654 =item References
11655
11656 ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
11657 RFC, UC, Unicode Glossary
11658
11659 =over 4
11660
11661 =item Other Notable Sites
11662
11663 czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
11664 "Introduction to i18n"
11665
11666 =item Offline sources
11667
11668 C<CJKV Information Processing> by Ken Lunde
11669
11670 =back
11671
11672 =back
11673
11674 =head2 Encode::Symbol - Symbol Encodings
11675
11676 =over 4
11677
11678 =item SYNOPSIS
11679
11680 =item ABSTRACT
11681
11682 =item DESCRIPTION
11683
11684 =item SEE ALSO
11685
11686 =back
11687
11688 =head2 Encode::TW - Taiwan-based Chinese Encodings
11689
11690 =over 4
11691
11692 =item SYNOPSIS
11693
11694 =item DESCRIPTION
11695
11696 =item NOTES
11697
11698 =item BUGS
11699
11700 =item SEE ALSO
11701
11702 =back
11703
11704 =head2 Encode::Unicode -- Various Unicode Transformation Formats
11705
11706 =over 4
11707
11708 =item SYNOPSIS
11709
11710 =item ABSTRACT
11711
11712 L<http://www.unicode.org/glossary/> says:, Quick Reference
11713
11714 =item Size, Endianness, and BOM
11715
11716 =over 4
11717
11718 =item by size
11719
11720 =item by endianness
11721
11722 BOM as integer when fetched in network byte order
11723
11724 =back
11725
11726 =item Surrogate Pairs
11727
11728 =item SEE ALSO
11729
11730 =back
11731
11732 =head2 Encode::lib::Encode::Alias, Encode::Alias - alias definitions to
11733 encodings
11734
11735 =over 4
11736
11737 =item SYNOPSIS
11738
11739 =item DESCRIPTION
11740
11741 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
11742 reference, e.g.:
11743
11744 =over 4
11745
11746 =item Alias overloading
11747
11748 =back
11749
11750 =item SEE ALSO
11751
11752 =back
11753
11754 =head2 Encode::lib::Encode::CJKConstants,   Encode::CJKConstants.pm --
11755 Internally used by Encode::??::ISO_2022_*
11756
11757 =head2 Encode::lib::Encode::CN::HZ, Encode::CN::HZ -- internally used by
11758 Encode::CN
11759
11760 =head2 Encode::lib::Encode::Config, Encode::Config -- internally used by
11761 Encode
11762
11763 =head2 Encode::lib::Encode::Encoding, Encode::Encoding - Encode
11764 Implementation Base Class
11765
11766 =over 4
11767
11768 =item SYNOPSIS
11769
11770 =item DESCRIPTION
11771
11772 =over 4
11773
11774 =item Methods you should implement
11775
11776 -E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check])
11777
11778 =item Other methods defined in Encode::Encodings
11779
11780 -E<gt>name, -E<gt>new_sequence, -E<gt>perlio_ok(), -E<gt>needs_lines()
11781
11782 =item Example: Encode::ROT13
11783
11784 =back
11785
11786 =item Why the heck Encode API is different?
11787
11788 =over 4
11789
11790 =item Compiled Encodings
11791
11792 =back
11793
11794 =item SEE ALSO
11795
11796 Scheme 1, Scheme 2, Other Schemes
11797
11798 =back
11799
11800 =head2 Encode::lib::Encode::Guess, Encode::Guess -- Guesses encoding from
11801 data
11802
11803 =over 4
11804
11805 =item SYNOPSIS
11806
11807 =item ABSTRACT
11808
11809 =item DESCRIPTION
11810
11811 Encode::Guess->set_suspects, Encode::Guess->add_suspects,
11812 Encode::decode("Guess" ...), Encode::Guess->guess($data),
11813 guess_encoding($data, [, I<list of suspects>])
11814
11815 =item CAVEATS
11816
11817 =item TO DO
11818
11819 =item SEE ALSO
11820
11821 =back
11822
11823 =head2 Encode::lib::Encode::JP::H2Z, Encode::JP::H2Z -- internally used by
11824 Encode::JP::2022_JP*
11825
11826 =head2 Encode::lib::Encode::JP::JIS7, Encode::JP::JIS7 -- internally used
11827 by Encode::JP
11828
11829 =head2 Encode::lib::Encode::KR::2022_KR, Encode::KR::2022_KR -- internally
11830 used by Encode::KR
11831
11832 =head2 Encode::lib::Encode::MIME::Header, Encode::MIME::Header -- MIME 'B'
11833 and 'Q' header encoding
11834
11835 =over 4
11836
11837 =item SYNOPSIS
11838
11839 =item ABSTRACT
11840
11841 =item DESCRIPTION
11842
11843 =item BUGS
11844
11845 =item SEE ALSO
11846
11847 =back
11848
11849 =head2 Encode::lib::Encode::PerlIO, Encode::PerlIO -- a detailed document
11850 on Encode and PerlIO
11851
11852 =over 4
11853
11854 =item Overview
11855
11856 =item How does it work?
11857
11858 =item BUGS
11859
11860 =over 4
11861
11862 =item Workaround
11863
11864 =item How can I tell whether my encoding fully supports PerlIO ?
11865
11866 =back
11867
11868 =item SEE ALSO
11869
11870 =back
11871
11872 =head2 Encode::lib::Encode::Supported, Encode::Supported -- Encodings
11873 supported by Encode
11874
11875 =over 4
11876
11877 =item DESCRIPTION
11878
11879 =over 4
11880
11881 =item Encoding Names
11882
11883 =back
11884
11885 =item Supported Encodings
11886
11887 =over 4
11888
11889 =item Built-in Encodings
11890
11891 =item Encode::Unicode -- other Unicode encodings
11892
11893 =item Encode::Byte -- Extended ASCII
11894
11895 ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
11896 the Cyrillic world, gsm0338 - Hentai Latin 1
11897
11898 =item CJK: Chinese, Japanese, Korean (Multibyte)
11899
11900 Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
11901 Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
11902 Encode::JIS2K -- JIS X 0213 encodings via CPAN
11903
11904 =item Miscellaneous encodings
11905
11906 Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
11907
11908 =back
11909
11910 =item Unsupported encodings
11911
11912   ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
11913 Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
11914 System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
11915 Various Mac encodings, (Mac) Indic encodings
11916
11917 =item Encoding vs. Charset -- terminology
11918
11919 =item Encoding Classification (by Anton Tagunov and Dan Kogai)
11920
11921 =over 4
11922
11923 =item Microsoft-related naming mess
11924
11925 KS_C_5601-1987, GB2312, Big5, Shift_JIS
11926
11927 =back
11928
11929 =item Glossary
11930
11931 character repertoire, coded character set (CCS), character encoding scheme
11932 (CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
11933 UTF-16
11934
11935 =item See Also
11936
11937 =item References
11938
11939 ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
11940 RFC, UC, Unicode Glossary
11941
11942 =over 4
11943
11944 =item Other Notable Sites
11945
11946 czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
11947 "Introduction to i18n"
11948
11949 =item Offline sources
11950
11951 C<CJKV Information Processing> by Ken Lunde
11952
11953 =back
11954
11955 =back
11956
11957 =head2 Encode::lib::Encoder, Encode::Encoder -- Object Oriented Encoder
11958
11959 =over 4
11960
11961 =item SYNOPSIS
11962
11963   use Encode::Encoder;
11964   # Encode::encode("ISO-8859-1", $data); 
11965   Encode::Encoder->new($data)->iso_8859_1; # OOP way
11966   # shortcut
11967   use Encode::Encoder qw(encoder);
11968   encoder($data)->iso_8859_1;
11969   # you can stack them!
11970   encoder($data)->iso_8859_1->base64;  # provided base64() is defined
11971   # you can use it as a decoder as well
11972   encoder($base64)->bytes('base64')->latin1;
11973   # stringified
11974   print encoder($data)->utf8->latin1;  # prints the string in latin1
11975   # numified
11976   encoder("\x{abcd}\x{ef}g")->utf8 == 6; # true. bytes::length($data)
11977
11978 =item ABSTRACT
11979
11980 =item Description
11981
11982 =over 4
11983
11984 =item Predefined Methods
11985
11986 $e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
11987 $e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
11988 $e-E<gt>bytes([$encoding])
11989
11990 =item Example: base64 transcoder
11991
11992 =item Operator Overloading
11993
11994 =back
11995
11996 =item SEE ALSO
11997
11998 =back
11999
12000 =head2 Encodencoding, encoding - allows you to write your script in
12001 non-ascii or non-utf8
12002
12003 =over 4
12004
12005 =item SYNOPSIS
12006
12007 =item ABSTRACT
12008
12009 =item USAGE
12010
12011 use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
12012 I<ENCNAME_IN> ...] ;, no encoding;
12013
12014 =item CAVEATS
12015
12016 =over 4
12017
12018 =item NOT SCOPED
12019
12020 =item DO NOT MIX MULTIPLE ENCODINGS
12021
12022 =back
12023
12024 =item Non-ASCII Identifiers and Filter option
12025
12026 use encoding I<ENCNAME> Filter=E<gt>1;
12027
12028 =item EXAMPLE - Greekperl
12029
12030 =item KNOWN PROBLEMS
12031
12032 =item SEE ALSO
12033
12034 =back
12035
12036 =head2 Encoder, Encode::Encoder -- Object Oriented Encoder
12037
12038 =over 4
12039
12040 =item SYNOPSIS
12041
12042   use Encode::Encoder;
12043   # Encode::encode("ISO-8859-1", $data); 
12044   Encode::Encoder->new($data)->iso_8859_1; # OOP way
12045   # shortcut
12046   use Encode::Encoder qw(encoder);
12047   encoder($data)->iso_8859_1;
12048   # you can stack them!
12049   encoder($data)->iso_8859_1->base64;  # provided base64() is defined
12050   # you can use it as a decoder as well
12051   encoder($base64)->bytes('base64')->latin1;
12052   # stringified
12053   print encoder($data)->utf8->latin1;  # prints the string in latin1
12054   # numified
12055   encoder("\x{abcd}\x{ef}g")->utf8 == 6; # true. bytes::length($data)
12056
12057 =item ABSTRACT
12058
12059 =item Description
12060
12061 =over 4
12062
12063 =item Predefined Methods
12064
12065 $e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
12066 $e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
12067 $e-E<gt>bytes([$encoding])
12068
12069 =item Example: base64 transcoder
12070
12071 =item Operator Overloading
12072
12073 =back
12074
12075 =item SEE ALSO
12076
12077 =back
12078
12079 =head2 English - use nice English (or awk) names for ugly punctuation
12080 variables
12081
12082 =over 4
12083
12084 =item SYNOPSIS
12085
12086 =item DESCRIPTION
12087
12088 =item PERFORMANCE
12089
12090 =back
12091
12092 =head2 Env - perl module that imports environment variables as scalars or
12093 arrays
12094
12095 =over 4
12096
12097 =item SYNOPSIS
12098
12099 =item DESCRIPTION
12100
12101 =item LIMITATIONS
12102
12103 =item AUTHOR
12104
12105 =back
12106
12107 =head2 Errno - System errno constants
12108
12109 =over 4
12110
12111 =item SYNOPSIS
12112
12113 =item DESCRIPTION
12114
12115 =item CAVEATS
12116
12117 =item AUTHOR
12118
12119 =item COPYRIGHT
12120
12121 =back
12122
12123 =head2 Exporter - Implements default import method for modules
12124
12125 =over 4
12126
12127 =item SYNOPSIS
12128
12129 =item DESCRIPTION
12130
12131 =over 4
12132
12133 =item How to Export
12134
12135 =item Selecting What To Export
12136
12137 =item How to Import
12138
12139 C<use ModuleName;>, C<use ModuleName ();>, C<use ModuleName qw(...);>
12140
12141 =back
12142
12143 =item Advanced features
12144
12145 =over 4
12146
12147 =item Specialised Import Lists
12148
12149 =item Exporting without using Exporter's import method
12150
12151 =item Module Version Checking
12152
12153 =item Managing Unknown Symbols
12154
12155 =item Tag Handling Utility Functions
12156
12157 =item Generating combined tags
12158
12159 =item C<AUTOLOAD>ed Constants
12160
12161 =back
12162
12163 =back
12164
12165 =head2 Exporter::Heavy - Exporter guts
12166
12167 =over 4
12168
12169 =item SYNOPSIS
12170
12171 =item DESCRIPTION
12172
12173 =back
12174
12175 =head2 ExtUtils::Command - utilities to replace common UNIX commands in
12176 Makefiles etc.
12177
12178 =over 4
12179
12180 =item SYNOPSIS
12181
12182 =item DESCRIPTION
12183
12184 =back
12185
12186 cat
12187
12188 eqtime src dst
12189
12190 rm_rf files...
12191
12192 rm_f files...
12193
12194 touch files ..
12195
12196 mv source... destination
12197
12198 cp source... destination
12199
12200 chmod mode files..
12201
12202 mkpath directory..
12203
12204 test_f file
12205
12206 =over 4
12207
12208 =item BUGS
12209
12210 =item SEE ALSO 
12211
12212 =item AUTHOR
12213
12214 =back
12215
12216 =head2 ExtUtils::Command::MM - Commands for the MM's to use in Makefiles
12217
12218 =over 4
12219
12220 =item SYNOPSIS
12221
12222 =item DESCRIPTION
12223
12224 B<test_harness>
12225
12226 =back
12227
12228 =head2 ExtUtils::Constant - generate XS code to import C header constants
12229
12230 =over 4
12231
12232 =item SYNOPSIS
12233
12234 =item DESCRIPTION
12235
12236 =item USAGE
12237
12238 IV, UV, NV, PV, PVN, SV, YES, NO, UNDEF
12239
12240 =item FUNCTIONS
12241
12242 =back
12243
12244 C_stringify NAME
12245
12246 perl_stringify NAME
12247
12248 constant_types
12249
12250 memEQ_clause NAME, CHECKED_AT, INDENT
12251
12252 assign INDENT, TYPE, PRE, POST, VALUE..
12253
12254 return_clause
12255
12256 switch_clause INDENT, NAMELEN, ITEMHASH, ITEM..
12257
12258 params WHAT
12259
12260 dump_names
12261
12262 dogfood
12263
12264 C_constant, name, type, value, macro, default, pre, post, def_pre =item
12265 def_post, utf8
12266
12267 XS_constant PACKAGE, TYPES, SUBNAME, C_SUBNAME
12268
12269 autoload PACKAGE, VERSION, AUTOLOADER
12270
12271 WriteMakefileSnippet
12272
12273 WriteConstants ATTRIBUTE =E<gt> VALUE [, ...], NAME, DEFAULT_TYPE,
12274 BREAKOUT_AT, NAMES, C_FILE, XS_FILE, SUBNAME, C_SUBNAME
12275
12276 =over 4
12277
12278 =item AUTHOR
12279
12280 =back
12281
12282 =head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
12283
12284 =over 4
12285
12286 =item SYNOPSIS
12287
12288 =item DESCRIPTION
12289
12290 =item @EXPORT
12291
12292 =item FUNCTIONS
12293
12294 xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
12295 ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
12296
12297 =item EXAMPLES
12298
12299 =item SEE ALSO
12300
12301 =item AUTHOR
12302
12303 =back
12304
12305 =head2 ExtUtils::Install - install files from here to there
12306
12307 =over 4
12308
12309 =item SYNOPSIS
12310
12311 =item DESCRIPTION
12312
12313 =back
12314
12315 =head2 ExtUtils::Installed - Inventory management of installed modules
12316
12317 =over 4
12318
12319 =item SYNOPSIS
12320
12321 =item DESCRIPTION
12322
12323 =item USAGE
12324
12325 =item FUNCTIONS
12326
12327 new(), modules(), files(), directories(), directory_tree(), validate(),
12328 packlist(), version()
12329
12330 =item EXAMPLE
12331
12332 =item AUTHOR
12333
12334 =back
12335
12336 =head2 ExtUtils::Liblist - determine libraries to use and how to use them
12337
12338 =over 4
12339
12340 =item SYNOPSIS
12341
12342 =item DESCRIPTION
12343
12344 For static extensions, For dynamic extensions at build/link time, For
12345 dynamic extensions at load time
12346
12347 =over 4
12348
12349 =item EXTRALIBS
12350
12351 =item LDLOADLIBS and LD_RUN_PATH
12352
12353 =item BSLOADLIBS
12354
12355 =back
12356
12357 =item PORTABILITY
12358
12359 =over 4
12360
12361 =item VMS implementation
12362
12363 =item Win32 implementation
12364
12365 =back
12366
12367 =item SEE ALSO
12368
12369 =back
12370
12371 =head2 ExtUtils::MM - OS adjusted ExtUtils::MakeMaker subclass
12372
12373 =over 4
12374
12375 =item SYNOPSIS
12376
12377 =item DESCRIPTION
12378
12379 =back
12380
12381 =head2 ExtUtils::MM_Any - Platform agnostic MM methods
12382
12383 =over 4
12384
12385 =item SYNOPSIS
12386
12387 =item DESCRIPTION
12388
12389 =item Inherently Cross-Platform Methods
12390
12391 =over 4
12392
12393 =item File::Spec wrappers  B<DEPRECATED>
12394
12395 canonpath
12396
12397 =back
12398
12399 =back
12400
12401 catdir
12402
12403 catfile
12404
12405 curdir
12406
12407 file_name_is_absolute
12408
12409 path
12410
12411 rootdir
12412
12413 updir
12414
12415 =over 4
12416
12417 =item Thought To Be Cross-Platform Methods
12418
12419 test_via_harness
12420
12421 =back
12422
12423 test_via_script
12424
12425 =over 4
12426
12427 =item AUTHOR
12428
12429 =back
12430
12431 =head2 ExtUtils::MM_BeOS - methods to override UN*X behaviour in
12432 ExtUtils::MakeMaker
12433
12434 =over 4
12435
12436 =item SYNOPSIS
12437
12438 =item DESCRIPTION
12439
12440 =back
12441
12442 perl_archive
12443
12444 =head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
12445 ExtUtils::MakeMaker
12446
12447 =over 4
12448
12449 =item SYNOPSIS
12450
12451 =item DESCRIPTION
12452
12453 canonpath, cflags, manifypods, perl_archive
12454
12455 =back
12456
12457 =head2 ExtUtils::MM_DOS - DOS specific subclass of ExtUtils::MM_Unix
12458
12459 =over 4
12460
12461 =item SYNOPSIS
12462
12463 =item DESCRIPTION
12464
12465 =over 4
12466
12467 =item Overridden methods
12468
12469 B<replace_manpage_separator>
12470
12471 =back
12472
12473 =back
12474
12475 =over 4
12476
12477 =item AUTHOR
12478
12479 =item SEE ALSO
12480
12481 =back
12482
12483 =head2 ExtUtils::MM_MacOS - methods to override UN*X behaviour in
12484 ExtUtils::MakeMaker
12485
12486 =over 4
12487
12488 =item SYNOPSIS
12489
12490 =item DESCRIPTION
12491
12492 =back
12493
12494 maybe_command
12495
12496 guess_name
12497
12498 macify
12499
12500 patternify
12501
12502 init_main
12503
12504 init_others
12505
12506 init_dirscan
12507
12508 libscan (o)
12509
12510 constants (o)
12511
12512 static (o)
12513
12514 dlsyms (o)
12515
12516 dynamic (o)
12517
12518 clean (o)
12519
12520 realclean (o)
12521
12522 rulez (o)
12523
12524 processPL (o)
12525
12526 =head2 ExtUtils::MM_NW5 - methods to override UN*X behaviour in
12527 ExtUtils::MakeMaker
12528
12529 =over 4
12530
12531 =item SYNOPSIS
12532
12533 =item DESCRIPTION
12534
12535 =back
12536
12537 constants (o)
12538
12539 static_lib (o)
12540
12541 dynamic_lib (o)
12542
12543 =head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
12544 ExtUtils::MakeMaker
12545
12546 =over 4
12547
12548 =item SYNOPSIS
12549
12550 =item DESCRIPTION
12551
12552 =item METHODS
12553
12554 =back
12555
12556 perl_archive_after
12557
12558 =head2 ExtUtils::MM_UWIN - U/WIN specific subclass of ExtUtils::MM_Unix
12559
12560 =over 4
12561
12562 =item SYNOPSIS
12563
12564 =item DESCRIPTION
12565
12566 =over 4
12567
12568 =item Overridden methods
12569
12570 B<replace_manpage_separator>
12571
12572 =back
12573
12574 =back
12575
12576 =over 4
12577
12578 =item AUTHOR
12579
12580 =item SEE ALSO
12581
12582 =back
12583
12584 =head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
12585
12586 =over 4
12587
12588 =item SYNOPSIS
12589
12590 =item DESCRIPTION
12591
12592 =item METHODS
12593
12594 =back
12595
12596 =over 4
12597
12598 =item SelfLoaded methods
12599
12600 c_o (o)
12601
12602 =back
12603
12604 cflags (o)
12605
12606 clean (o)
12607
12608 const_cccmd (o)
12609
12610 const_config (o)
12611
12612 const_loadlibs (o)
12613
12614 constants (o)
12615
12616 depend (o)
12617
12618 dir_target (o)
12619
12620 dist (o)
12621
12622 dist_basics (o)
12623
12624 dist_ci (o)
12625
12626 dist_core (o)
12627
12628 dist_dir
12629
12630 dist_test
12631
12632 dlsyms (o)
12633
12634 dynamic (o)
12635
12636 dynamic_bs (o)
12637
12638 dynamic_lib (o)
12639
12640 exescan
12641
12642 extliblist
12643
12644 find_perl
12645
12646 find_tests
12647
12648 =over 4
12649
12650 =item Methods to actually produce chunks of text for the Makefile
12651
12652 fixin
12653
12654 =back
12655
12656 force (o)
12657
12658 guess_name
12659
12660 has_link_code
12661
12662 init_dirscan
12663
12664 init_main
12665
12666 init_others
12667
12668 init_INST
12669
12670 init_INSTALL
12671
12672 init_lib2arch
12673
12674 init_PERL
12675
12676 init_PERM
12677
12678 install (o)
12679
12680 installbin (o)
12681
12682 libscan (o)
12683
12684 linkext (o)
12685
12686 lsdir
12687
12688 macro (o)
12689
12690 makeaperl (o)
12691
12692 makefile (o)
12693
12694 manifypods (o)
12695
12696 maybe_command
12697
12698 maybe_command_in_dirs
12699
12700 needs_linking (o)
12701
12702 nicetext
12703
12704 parse_abstract
12705
12706 parse_version
12707
12708 pasthru (o)
12709
12710 perl_script
12711
12712 perldepend (o)
12713
12714 perm_rw (o)
12715
12716 perm_rwx (o)
12717
12718 pm_to_blib
12719
12720 post_constants (o)
12721
12722 post_initialize (o)
12723
12724 postamble (o)
12725
12726 ppd
12727
12728 prefixify
12729
12730 processPL (o)
12731
12732 quote_paren
12733
12734 realclean (o)
12735
12736 replace_manpage_separator
12737
12738 static (o)
12739
12740 static_lib (o)
12741
12742 staticmake (o)
12743
12744 subdir_x (o)
12745
12746 subdirs (o)
12747
12748 test (o)
12749
12750 test_via_harness (override)
12751
12752 test_via_script (override)
12753
12754 tool_autosplit (o)
12755
12756 tools_other (o)
12757
12758 tool_xsubpp (o)
12759
12760 top_targets (o)
12761
12762 writedoc
12763
12764 xs_c (o)
12765
12766 xs_cpp (o)
12767
12768 xs_o (o)
12769
12770 perl_archive
12771
12772 perl_archive_after
12773
12774 export_list
12775
12776 =over 4
12777
12778 =item SEE ALSO
12779
12780 =back
12781
12782 =head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
12783 ExtUtils::MakeMaker
12784
12785 =over 4
12786
12787 =item SYNOPSIS
12788
12789 =item DESCRIPTION
12790
12791 =over 4
12792
12793 =item Methods always loaded
12794
12795 wraplist
12796
12797 =back
12798
12799 =back
12800
12801 =over 4
12802
12803 =item Methods
12804
12805 guess_name (override)
12806
12807 =back
12808
12809 find_perl (override)
12810
12811 maybe_command (override)
12812
12813 maybe_command_in_dirs (override)
12814
12815 perl_script (override)
12816
12817 replace_manpage_separator
12818
12819 init_main (override)
12820
12821 init_others (override)
12822
12823 constants (override)
12824
12825 cflags (override)
12826
12827 const_cccmd (override)
12828
12829 pm_to_blib (override)
12830
12831 tool_autosplit (override)
12832
12833 tool_sxubpp (override)
12834
12835 xsubpp_version (override)
12836
12837 tools_other (override)
12838
12839 dist (override)
12840
12841 c_o (override)
12842
12843 xs_c (override)
12844
12845 xs_o (override)
12846
12847 top_targets (override)
12848
12849 dlsyms (override)
12850
12851 dynamic_lib (override)
12852
12853 dynamic_bs (override)
12854
12855 static_lib (override)
12856
12857 manifypods (override)
12858
12859 processPL (override)
12860
12861 installbin (override)
12862
12863 subdir_x (override)
12864
12865 clean (override)
12866
12867 realclean (override)
12868
12869 dist_core (override)
12870
12871 dist_test (override)
12872
12873 install (override)
12874
12875 perldepend (override)
12876
12877 makefile (override)
12878
12879 find_tests (override)
12880
12881 test (override)
12882
12883 makeaperl (override)
12884
12885 nicetext (override)
12886
12887 prefixify (override)
12888
12889 =head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
12890 ExtUtils::MakeMaker
12891
12892 =over 4
12893
12894 =item SYNOPSIS
12895
12896 =item DESCRIPTION
12897
12898 =back
12899
12900 constants (o)
12901
12902 static_lib (o)
12903
12904 dynamic_bs (o)
12905
12906 dynamic_lib (o)
12907
12908 perl_script
12909
12910 pm_to_blib
12911
12912 tool_autosplit (override)
12913
12914 tools_other (o)
12915
12916 xs_o (o)
12917
12918 top_targets (o)
12919
12920 manifypods (o)
12921
12922 dist_ci (o)
12923
12924 dist_core (o)
12925
12926 pasthru (o)
12927
12928 =head2 ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X
12929
12930 =over 4
12931
12932 =item SYNOPSIS
12933
12934 =item DESCRIPTION
12935
12936 =back
12937
12938 =head2 ExtUtils::MY - ExtUtils::MakeMaker subclass for customization
12939
12940 =over 4
12941
12942 =item SYNOPSIS
12943
12944 =item DESCRIPTION
12945
12946 =back
12947
12948 =head2 ExtUtils::MakeMaker - create an extension Makefile
12949
12950 =over 4
12951
12952 =item SYNOPSIS
12953
12954 =item DESCRIPTION
12955
12956 =over 4
12957
12958 =item How To Write A Makefile.PL
12959
12960 =item Default Makefile Behaviour
12961
12962 =item make test
12963
12964 =item make testdb
12965
12966 =item make install
12967
12968 =item PREFIX and LIB attribute
12969
12970 =item AFS users
12971
12972 =item Static Linking of a new Perl Binary
12973
12974 =item Determination of Perl Library and Installation Locations
12975
12976 =item Which architecture dependent directory?
12977
12978 =item Using Attributes and Parameters
12979
12980 ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CCFLAGS, CONFIG,
12981 CONFIGURE, DEFINE, DIR, DISTNAME, DL_FUNCS, DL_VARS, EXCLUDE_EXT,
12982 EXE_FILES, FIRST_MAKEFILE, FULLPERL, FULLPERLRUN, FULLPERLRUNINST,
12983 FUNCLIST, H, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB, INSTALLBIN,
12984 INSTALLDIRS, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB, INSTALLSCRIPT,
12985 INSTALLSITEARCH, INSTALLSITEBIN, INSTALLSITELIB, INSTALLSITEMAN1DIR,
12986 INSTALLSITEMAN3DIR, INSTALLVENDORARCH, INSTALLVENDORBIN, INSTALLVENDORLIB,
12987 INSTALLVENDORMAN1DIR, INSTALLVENDORMAN3DIR, INST_ARCHLIB, INST_BIN,
12988 INST_LIB, INST_MAN1DIR, INST_MAN3DIR, INST_SCRIPT, LDDLFLAGS, LDFROM, LIB,
12989 LIBPERL_A, LIBS, LINKTYPE, MAKEAPERL, MAKEFILE, MAN1PODS, MAN3PODS,
12990 MAP_TARGET, MYEXTLIB, NAME, NEEDS_LINKING, NOECHO, NORECURS, NO_VC, OBJECT,
12991 OPTIMIZE, PERL, PERL_CORE, PERLMAINCC, PERL_ARCHLIB, PERL_LIB,
12992 PERL_MALLOC_OK, PERLRUN, PERLRUNINST, PERL_SRC, PERM_RW, PERM_RWX,
12993 PL_FILES, PM, PMLIBDIRS, PM_FILTER, POLLUTE, PPM_INSTALL_EXEC,
12994 PPM_INSTALL_SCRIPT, PREFIX, PREREQ_FATAL, PREREQ_PM, PREREQ_PRINT,
12995 PRINT_PREREQ, SITEPREFIX, SKIP, TYPEMAPS, VENDORPREFIX, VERBINST, VERSION,
12996 VERSION_FROM, XS, XSOPT, XSPROTOARG, XS_VERSION
12997
12998 =item Additional lowercase attributes
12999
13000 clean, depend, dist, dynamic_lib, linkext, macro, realclean, test,
13001 tool_autosplit
13002
13003 =item Overriding MakeMaker Methods
13004
13005 =item The End Of Cargo Cult Programming
13006
13007 C<<MAN3PODS => ' '>>
13008
13009 =item Hintsfile support
13010
13011 =item Distribution Support
13012
13013    make distcheck,    make skipcheck,    make distclean,    make manifest, 
13014   make distdir,   make disttest,    make tardist,    make dist,    make
13015 uutardist,    make shdist,    make zipdist,    make ci
13016
13017 =item Disabling an extension
13018
13019 =back
13020
13021 =item ENVIRONMENT
13022
13023 PERL_MM_OPT, PERL_MM_USE_DEFAULT
13024
13025 =item SEE ALSO
13026
13027 =item AUTHORS
13028
13029 =back
13030
13031 =head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
13032
13033 =over 4
13034
13035 =item SYNOPSIS
13036
13037 =item DESCRIPTION
13038
13039 =item MANIFEST.SKIP
13040
13041 =item EXPORT_OK
13042
13043 =item GLOBAL VARIABLES
13044
13045 =item DIAGNOSTICS
13046
13047 C<Not in MANIFEST:> I<file>, C<Skipping> I<file>, C<No such file:> I<file>,
13048 C<MANIFEST:> I<$!>, C<Added to MANIFEST:> I<file>
13049
13050 =item ENVIRONMENT
13051
13052 B<PERL_MM_MANIFEST_DEBUG>
13053
13054 =item SEE ALSO
13055
13056 =item AUTHOR
13057
13058 =back
13059
13060 =head2 ExtUtils::Miniperl, writemain - write the C code for perlmain.c
13061
13062 =over 4
13063
13064 =item SYNOPSIS
13065
13066 =item DESCRIPTION
13067
13068 =item SEE ALSO
13069
13070 =back
13071
13072 =head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
13073
13074 =over 4
13075
13076 =item SYNOPSIS
13077
13078 =item DESCRIPTION
13079
13080 =back
13081
13082 =head2 ExtUtils::Mksymlists - write linker options files for dynamic
13083 extension
13084
13085 =over 4
13086
13087 =item SYNOPSIS
13088
13089 =item DESCRIPTION
13090
13091 DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
13092
13093 =item AUTHOR
13094
13095 =item REVISION
13096
13097 =back
13098
13099 =head2 ExtUtils::Packlist - manage .packlist files
13100
13101 =over 4
13102
13103 =item SYNOPSIS
13104
13105 =item DESCRIPTION
13106
13107 =item USAGE
13108
13109 =item FUNCTIONS
13110
13111 new(), read(), write(), validate(), packlist_file()
13112
13113 =item EXAMPLE
13114
13115 =item AUTHOR
13116
13117 =back
13118
13119 =head2 ExtUtils::testlib - add blib/* directories to @INC
13120
13121 =over 4
13122
13123 =item SYNOPSIS
13124
13125 =item DESCRIPTION
13126
13127 =back
13128
13129 =head2 Fatal - replace functions with equivalents which succeed or die
13130
13131 =over 4
13132
13133 =item SYNOPSIS
13134
13135 =item DESCRIPTION
13136
13137 =item AUTHOR
13138
13139 =back
13140
13141 =head2 Fcntl - load the C Fcntl.h defines
13142
13143 =over 4
13144
13145 =item SYNOPSIS
13146
13147 =item DESCRIPTION
13148
13149 =item NOTE
13150
13151 =item EXPORTED SYMBOLS
13152
13153 =back
13154
13155 =head2 File::Basename, fileparse - split a pathname into pieces
13156
13157 =over 4
13158
13159 =item SYNOPSIS
13160
13161 =item DESCRIPTION
13162
13163 fileparse_set_fstype, fileparse
13164
13165 =item EXAMPLES
13166
13167 C<basename>, C<dirname>
13168
13169 =back
13170
13171 =head2 File::CheckTree, validate - run many filetest checks on a tree
13172
13173 =over 4
13174
13175 =item SYNOPSIS
13176
13177 =item DESCRIPTION
13178
13179 =item AUTHOR
13180
13181 =item HISTORY
13182
13183 =back
13184
13185 =head2 File::Compare - Compare files or filehandles
13186
13187 =over 4
13188
13189 =item SYNOPSIS
13190
13191 =item DESCRIPTION
13192
13193 =item RETURN
13194
13195 =item AUTHOR
13196
13197 =back
13198
13199 =head2 File::Copy - Copy files or filehandles
13200
13201 =over 4
13202
13203 =item SYNOPSIS
13204
13205 =item DESCRIPTION
13206
13207 =over 4
13208
13209 =item Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
13210
13211 rmscopy($from,$to[,$date_flag])
13212
13213 =back
13214
13215 =item RETURN
13216
13217 =item NOTES
13218
13219 =item AUTHOR
13220
13221 =back
13222
13223 =head2 File::DosGlob - DOS like globbing and then some
13224
13225 =over 4
13226
13227 =item SYNOPSIS
13228
13229 =item DESCRIPTION
13230
13231 =item NOTES
13232
13233 =item EXPORTS (by request only)
13234
13235 =item BUGS
13236
13237 =item AUTHOR
13238
13239 =item HISTORY
13240
13241 =item SEE ALSO
13242
13243 =back
13244
13245 =head2 File::Find - Traverse a directory tree.
13246
13247 =over 4
13248
13249 =item SYNOPSIS
13250
13251 =item DESCRIPTION
13252
13253 B<find>, B<finddepth>
13254
13255 =over 4
13256
13257 =item %options
13258
13259 C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
13260 C<follow_fast>, C<follow_skip>, C<dangling_symlinks>, C<no_chdir>,
13261 C<untaint>, C<untaint_pattern>, C<untaint_skip>
13262
13263 =item The wanted function
13264
13265 C<$File::Find::dir> is the current directory name,, C<$_> is the current
13266 filename within that directory, C<$File::Find::name> is the complete
13267 pathname to the file
13268
13269 =back
13270
13271 =item WARNINGS
13272
13273 =item CAVEAT
13274
13275 $dont_use_nlink, symlinks
13276
13277 =item NOTES
13278
13279 =item HISTORY
13280
13281 =back
13282
13283 =head2 File::Glob - Perl extension for BSD glob routine
13284
13285 =over 4
13286
13287 =item SYNOPSIS
13288
13289 =item DESCRIPTION
13290
13291 C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
13292 C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
13293 C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
13294
13295 =item DIAGNOSTICS
13296
13297 C<GLOB_NOSPACE>, C<GLOB_ABEND>
13298
13299 =item NOTES
13300
13301 =item AUTHOR
13302
13303 =back
13304
13305 =head2 File::Path - create or remove directory trees
13306
13307 =over 4
13308
13309 =item SYNOPSIS
13310
13311 =item DESCRIPTION
13312
13313 =item AUTHORS
13314
13315 =back
13316
13317 =head2 File::Spec - portably perform operations on file names
13318
13319 =over 4
13320
13321 =item SYNOPSIS
13322
13323 =item DESCRIPTION
13324
13325 =item METHODS
13326
13327 canonpath, catdir, catfile, curdir, devnull, rootdir, tmpdir, updir,
13328 no_upwards, case_tolerant, file_name_is_absolute, path, join, splitpath,
13329 splitdir, catpath(), abs2rel, rel2abs()
13330
13331 =item SEE ALSO
13332
13333 =item AUTHORS
13334
13335 =back
13336
13337 =head2 File::Spec::Cygwin - methods for Cygwin file specs
13338
13339 =over 4
13340
13341 =item SYNOPSIS
13342
13343 =item DESCRIPTION
13344
13345 =back
13346
13347 =head2 File::Spec::Epoc - methods for Epoc file specs
13348
13349 =over 4
13350
13351 =item SYNOPSIS
13352
13353 =item DESCRIPTION
13354
13355 canonpath()
13356
13357 =back
13358
13359 =over 4
13360
13361 =item SEE ALSO
13362
13363 =back
13364
13365 =head2 File::Spec::Functions - portably perform operations on file names
13366
13367 =over 4
13368
13369 =item SYNOPSIS
13370
13371 =item DESCRIPTION
13372
13373 =over 4
13374
13375 =item Exports
13376
13377 =back
13378
13379 =item SEE ALSO
13380
13381 =back
13382
13383 =head2 File::Spec::Mac - File::Spec for Mac OS (Classic)
13384
13385 =over 4
13386
13387 =item SYNOPSIS
13388
13389 =item DESCRIPTION
13390
13391 =item METHODS
13392
13393 canonpath
13394
13395 =back
13396
13397 catdir()
13398
13399 catfile
13400
13401 curdir
13402
13403 devnull
13404
13405 rootdir
13406
13407 tmpdir
13408
13409 updir
13410
13411 file_name_is_absolute
13412
13413 path
13414
13415 splitpath
13416
13417 splitdir
13418
13419 catpath
13420
13421 abs2rel
13422
13423 rel2abs
13424
13425 =over 4
13426
13427 =item AUTHORS
13428
13429 =item SEE ALSO
13430
13431 =back
13432
13433 canonpath
13434
13435 splitpath
13436
13437 splitdir
13438
13439 catpath
13440
13441 =head2 File::Spec::OS2 - methods for OS/2 file specs
13442
13443 =over 4
13444
13445 =item SYNOPSIS
13446
13447 =item DESCRIPTION
13448
13449 =back
13450
13451 =head2 File::Spec::Unix - File::Spec for Unix, base for other File::Spec
13452 modules
13453
13454 =over 4
13455
13456 =item SYNOPSIS
13457
13458 =item DESCRIPTION
13459
13460 =item METHODS
13461
13462 canonpath()
13463
13464 =back
13465
13466 catdir()
13467
13468 catfile
13469
13470 curdir
13471
13472 devnull
13473
13474 rootdir
13475
13476 tmpdir
13477
13478 updir
13479
13480 no_upwards
13481
13482 case_tolerant
13483
13484 file_name_is_absolute
13485
13486 path
13487
13488 join
13489
13490 splitpath
13491
13492 splitdir
13493
13494 catpath()
13495
13496 abs2rel
13497
13498 rel2abs()
13499
13500 =over 4
13501
13502 =item SEE ALSO
13503
13504 =back
13505
13506 =head2 File::Spec::VMS - methods for VMS file specs
13507
13508 =over 4
13509
13510 =item SYNOPSIS
13511
13512 =item DESCRIPTION
13513
13514 eliminate_macros
13515
13516 =back
13517
13518 fixpath
13519
13520 =over 4
13521
13522 =item Methods always loaded
13523
13524 canonpath (override)
13525
13526 =back
13527
13528 catdir
13529
13530 catfile
13531
13532 curdir (override)
13533
13534 devnull (override)
13535
13536 rootdir (override)
13537
13538 tmpdir (override)
13539
13540 updir (override)
13541
13542 case_tolerant (override)
13543
13544 path (override)
13545
13546 file_name_is_absolute (override)
13547
13548 splitpath (override)
13549
13550 splitdir (override)
13551
13552 catpath (override)
13553
13554 abs2rel (override)
13555
13556 rel2abs (override)
13557
13558 =over 4
13559
13560 =item SEE ALSO
13561
13562 =back
13563
13564 =head2 File::Spec::Win32 - methods for Win32 file specs
13565
13566 =over 4
13567
13568 =item SYNOPSIS
13569
13570 =item DESCRIPTION
13571
13572 devnull
13573
13574 =back
13575
13576 tmpdir
13577
13578 catfile
13579
13580 canonpath
13581
13582 splitpath
13583
13584 splitdir
13585
13586 catpath
13587
13588 =over 4
13589
13590 =item Note For File::Spec::Win32 Maintainers
13591
13592 =back
13593
13594 =over 4
13595
13596 =item SEE ALSO
13597
13598 =back
13599
13600 =head2 File::Temp - return name and handle of a temporary file safely
13601
13602 =over 4
13603
13604 =item PORTABILITY
13605
13606 =item SYNOPSIS
13607
13608 =item DESCRIPTION
13609
13610 =back
13611
13612 =over 4
13613
13614 =item FUNCTIONS
13615
13616 B<tempfile>
13617
13618 =back
13619
13620 B<tempdir>
13621
13622 =over 4
13623
13624 =item MKTEMP FUNCTIONS
13625
13626 B<mkstemp>
13627
13628 =back
13629
13630 B<mkstemps>
13631
13632 B<mkdtemp>
13633
13634 B<mktemp>
13635
13636 =over 4
13637
13638 =item POSIX FUNCTIONS
13639
13640 B<tmpnam>
13641
13642 =back
13643
13644 B<tmpfile>
13645
13646 =over 4
13647
13648 =item ADDITIONAL FUNCTIONS
13649
13650 B<tempnam>
13651
13652 =back
13653
13654 =over 4
13655
13656 =item UTILITY FUNCTIONS
13657
13658 B<unlink0>
13659
13660 =back
13661
13662 =over 4
13663
13664 =item PACKAGE VARIABLES
13665
13666 B<safe_level>, STANDARD, MEDIUM, HIGH
13667
13668 =back
13669
13670 TopSystemUID
13671
13672 =over 4
13673
13674 =item WARNING
13675
13676 =over 4
13677
13678 =item Temporary files and NFS
13679
13680 =back
13681
13682 =item HISTORY
13683
13684 =item SEE ALSO
13685
13686 =item AUTHOR
13687
13688 =back
13689
13690 =head2 File::stat - by-name interface to Perl's built-in stat() functions
13691
13692 =over 4
13693
13694 =item SYNOPSIS
13695
13696 =item DESCRIPTION
13697
13698 =item NOTE
13699
13700 =item AUTHOR
13701
13702 =back
13703
13704 =head2 FileCache - keep more files open than the system permits
13705
13706 =over 4
13707
13708 =item SYNOPSIS
13709
13710 =item DESCRIPTION
13711
13712 cacheout EXPR, cacheout MODE, EXPR
13713
13714 =item CAVEATS
13715
13716 =item BUGS
13717
13718 =back
13719
13720 =head2 FileHandle - supply object methods for filehandles
13721
13722 =over 4
13723
13724 =item SYNOPSIS
13725
13726 =item DESCRIPTION
13727
13728 $fh->print, $fh->printf, $fh->getline, $fh->getlines
13729
13730 =item SEE ALSO
13731
13732 =back
13733
13734 =head2 Filter::Simple - Simplified source filtering
13735
13736 =over 4
13737
13738 =item SYNOPSIS
13739
13740 =item DESCRIPTION
13741
13742 =over 4
13743
13744 =item The Problem
13745
13746 =item A Solution
13747
13748 =item Disabling or changing <no> behaviour
13749
13750 =item All-in-one interface
13751
13752 =item Filtering only specific components of source code
13753
13754 C<"code">, C<"executable">, C<"quotelike">, C<"string">, C<"regex">,
13755 C<"all">
13756
13757 =item Filtering only the code parts of source code
13758
13759 Most source code ceases to be grammatically correct when it is broken up
13760 into the pieces between string literals and regexes. So the C<'code'>
13761 component filter behaves slightly differently from the other partial
13762 filters
13763 described in the previous section.
13764
13765 =item Using Filter::Simple with an explicit C<import> subroutine
13766
13767 =item Using Filter::Simple and Exporter together
13768
13769 =item How it works
13770
13771 =back
13772
13773 =item AUTHOR
13774
13775 =item COPYRIGHT
13776
13777 =back
13778
13779 =head2 Filter::Util::Call - Perl Source Filter Utility Module
13780
13781 =over 4
13782
13783 =item SYNOPSIS
13784
13785 =item DESCRIPTION
13786
13787 =over 4
13788
13789 =item B<use Filter::Util::Call>
13790
13791 =item B<import()>
13792
13793 =item B<filter() and anonymous sub>
13794
13795 B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
13796
13797 =back
13798
13799 =item EXAMPLES
13800
13801 =over 4
13802
13803 =item Example 1: A simple filter.
13804
13805 =item Example 2: Using the context
13806
13807 =item Example 3: Using the context within the filter
13808
13809 =item Example 4: Using filter_del
13810
13811 =back
13812
13813 =item Filter::Simple
13814
13815 =item AUTHOR
13816
13817 =item DATE
13818
13819 =back
13820
13821 =head2 FindBin - Locate directory of original perl script
13822
13823 =over 4
13824
13825 =item SYNOPSIS
13826
13827 =item DESCRIPTION
13828
13829 =item EXPORTABLE VARIABLES
13830
13831 =item KNOWN ISSUES
13832
13833 =item KNOWN BUGS
13834
13835 =item AUTHORS
13836
13837 =item COPYRIGHT
13838
13839 =back
13840
13841 =head2 GDBM_File - Perl5 access to the gdbm library.
13842
13843 =over 4
13844
13845 =item SYNOPSIS
13846
13847 =item DESCRIPTION
13848
13849 =item AVAILABILITY
13850
13851 =item BUGS
13852
13853 =item SEE ALSO
13854
13855 =back
13856
13857 =head2 Getopt::Long - Extended processing of command line options
13858
13859 =over 4
13860
13861 =item SYNOPSIS
13862
13863 =item DESCRIPTION
13864
13865 =item Command Line Options, an Introduction
13866
13867 =item Getting Started with Getopt::Long
13868
13869 =over 4
13870
13871 =item Simple options
13872
13873 =item A little bit less simple options
13874
13875 =item Mixing command line option with other arguments
13876
13877 =item Options with values
13878
13879 =item Options with multiple values
13880
13881 =item Options with hash values
13882
13883 =item User-defined subroutines to handle options
13884
13885 =item Options with multiple names
13886
13887 =item Case and abbreviations
13888
13889 =item Summary of Option Specifications
13890
13891 !, +, s, i, o, f, : I<type> [ I<desttype> ], : I<number> [ I<desttype> ], :
13892 + [ I<desttype> ]
13893
13894 =back
13895
13896 =item Advanced Possibilities
13897
13898 =over 4
13899
13900 =item Object oriented interface
13901
13902 =item Thread Safety
13903
13904 =item Documentation and help texts
13905
13906 =item Storing options in a hash
13907
13908 =item Bundling
13909
13910 =item The lonesome dash
13911
13912 =item Argument callback
13913
13914 =back
13915
13916 =item Configuring Getopt::Long
13917
13918 default, posix_default, auto_abbrev, getopt_compat, gnu_compat, gnu_getopt,
13919 require_order, permute, bundling (default: disabled), bundling_override
13920 (default: disabled), ignore_case  (default: enabled), ignore_case_always
13921 (default: disabled), pass_through (default: disabled), prefix,
13922 prefix_pattern, debug (default: disabled)
13923
13924 =item Return values and Errors
13925
13926 =item Legacy
13927
13928 =over 4
13929
13930 =item Default destinations
13931
13932 =item Alternative option starters
13933
13934 =item Configuration variables
13935
13936 =back
13937
13938 =item Trouble Shooting
13939
13940 =over 4
13941
13942 =item Warning: Ignoring '!' modifier for short option
13943
13944 =item GetOptions does not return a false result when an option is not
13945 supplied
13946
13947 =item GetOptions does not split the command line correctly
13948
13949 =item How do I put a "-?" option into a Getopt::Long?
13950
13951 =back
13952
13953 =item AUTHOR
13954
13955 =item COPYRIGHT AND DISCLAIMER
13956
13957 =back
13958
13959 =head2 Getopt::Std, getopt - Process single-character switches with switch
13960 clustering
13961
13962 =over 4
13963
13964 =item SYNOPSIS
13965
13966 =item DESCRIPTION
13967
13968 =back
13969
13970 =head2 Hash::Util - A selection of general-utility hash subroutines
13971
13972 =over 4
13973
13974 =item SYNOPSIS
13975
13976 =item DESCRIPTION
13977
13978 =over 4
13979
13980 =item Restricted hashes
13981
13982 lock_keys, unlock_keys
13983
13984 =back
13985
13986 =back
13987
13988 lock_value, unlock_value
13989
13990 B<lock_hash>, B<unlock_hash>
13991
13992 =over 4
13993
13994 =item AUTHOR
13995
13996 =item SEE ALSO
13997
13998 =back
13999
14000 =head2 I18N::Collate - compare 8-bit scalar data according to the current
14001 locale
14002
14003 =over 4
14004
14005 =item SYNOPSIS
14006
14007 =item DESCRIPTION
14008
14009 =back
14010
14011 =head2 I18N::LangTags - functions for dealing with RFC3066-style language
14012 tags
14013
14014 =over 4
14015
14016 =item SYNOPSIS
14017
14018 =item DESCRIPTION
14019
14020 =back
14021
14022 the function is_language_tag($lang1)
14023
14024 the function extract_language_tags($whatever)
14025
14026 the function same_language_tag($lang1, $lang2)
14027
14028 the function similarity_language_tag($lang1, $lang2)
14029
14030 the function is_dialect_of($lang1, $lang2)
14031
14032 the function super_languages($lang1)
14033
14034 the function locale2language_tag($locale_identifier)
14035
14036 the function encode_language_tag($lang1)
14037
14038 the function alternate_language_tags($lang1)
14039
14040 the function @langs = panic_languages(@accept_languages)
14041
14042 =over 4
14043
14044 =item ABOUT LOWERCASING
14045
14046 =item ABOUT UNICODE PLAINTEXT LANGUAGE TAGS
14047
14048 =item SEE ALSO
14049
14050 =item COPYRIGHT
14051
14052 =item AUTHOR
14053
14054 =back
14055
14056 =head2 I18N::LangTags::List -- tags and names for human languages
14057
14058 =over 4
14059
14060 =item SYNOPSIS
14061
14062 =item DESCRIPTION
14063
14064 =item ABOUT LANGUAGE TAGS
14065
14066 =item LIST OF LANGUAGES
14067
14068 {ab} : Abkhazian, {ace} : Achinese, {ach} : Acoli, {ada} : Adangme, {aa} :
14069 Afar, {afh} : Afrihili, {af} : Afrikaans, [{afa} : Afro-Asiatic (Other)],
14070 {aka} : Akan, {akk} : Akkadian, {sq} : Albanian, {ale} : Aleut, [{alg} :
14071 Algonquian languages], [{tut} : Altaic (Other)], {am} : Amharic, {i-ami} :
14072 Ami, [{apa} : Apache languages], {ar} : Arabic, {arc} : Aramaic, {arp} :
14073 Arapaho, {arn} : Araucanian, {arw} : Arawak, {hy} : Armenian, [{art} :
14074 Artificial (Other)], {as} : Assamese, [{ath} : Athapascan languages],
14075 [{aus} : Australian languages], [{map} : Austronesian (Other)], {ava} :
14076 Avaric, {ae} : Avestan, {awa} : Awadhi, {ay} : Aymara, {az} : Azerbaijani,
14077 {ban} : Balinese, [{bat} : Baltic (Other)], {bal} : Baluchi, {bam} :
14078 Bambara, [{bai} : Bamileke languages], {bad} : Banda, [{bnt} : Bantu
14079 (Other)], {bas} : Basa, {ba} : Bashkir, {eu} : Basque, {btk} : Batak
14080 (Indonesia), {bej} : Beja, {be} : Belarusian, {bem} : Bemba, {bn} :
14081 Bengali, [{ber} : Berber (Other)], {bho} : Bhojpuri, {bh} : Bihari, {bik} :
14082 Bikol, {bin} : Bini, {bi} : Bislama, {bs} : Bosnian, {bra} : Braj, {br} :
14083 Breton, {bug} : Buginese, {bg} : Bulgarian, {i-bnn} : Bunun, {bua} :
14084 Buriat, {my} : Burmese, {cad} : Caddo, {car} : Carib, {ca} : Catalan,
14085 [{cau} : Caucasian (Other)], {ceb} : Cebuano, [{cel} : Celtic (Other)],
14086 [{cai} : Central American Indian (Other)], {chg} : Chagatai, [{cmc} :
14087 Chamic languages], {ch} : Chamorro, {ce} : Chechen, {chr} : Cherokee, {chy}
14088 : Cheyenne, {chb} : Chibcha, {ny} : Chichewa, {zh} : Chinese, {chn} :
14089 Chinook Jargon, {chp} : Chipewyan, {cho} : Choctaw, {cu} : Church Slavic,
14090 {chk} : Chuukese, {cv} : Chuvash, {cop} : Coptic, {kw} : Cornish, {co} :
14091 Corsican, {cre} : Cree, {mus} : Creek, [{cpe} : English-based Creoles and
14092 pidgins (Other)], [{cpf} : French-based Creoles and pidgins (Other)],
14093 [{cpp} : Portuguese-based Creoles and pidgins (Other)], [{crp} : Creoles
14094 and pidgins (Other)], {hr} : Croatian, [{cus} : Cushitic (Other)], {cs} :
14095 Czech, {dak} : Dakota, {da} : Danish, {day} : Dayak, {i-default} : Default
14096 (Fallthru) Language, {del} : Delaware, {din} : Dinka, {div} : Divehi, {doi}
14097 : Dogri, {dgr} : Dogrib, [{dra} : Dravidian (Other)], {dua} : Duala, {nl} :
14098 Dutch, {dum} : Middle Dutch (ca.1050-1350), {dyu} : Dyula, {dz} : Dzongkha,
14099 {efi} : Efik, {egy} : Ancient Egyptian, {eka} : Ekajuk, {elx} : Elamite,
14100 {en} : English, {enm} : Old English (1100-1500), {ang} : Old English
14101 (ca.450-1100), {eo} : Esperanto, {et} : Estonian, {ewe} : Ewe, {ewo} :
14102 Ewondo, {fan} : Fang, {fat} : Fanti, {fo} : Faroese, {fj} : Fijian, {fi} :
14103 Finnish, [{fiu} : Finno-Ugrian (Other)], {fon} : Fon, {fr} : French, {frm}
14104 : Middle French (ca.1400-1600), {fro} : Old French (842-ca.1400), {fy} :
14105 Frisian, {fur} : Friulian, {ful} : Fulah, {gaa} : Ga, {gd} : Scots Gaelic,
14106 {gl} : Gallegan, {lug} : Ganda, {gay} : Gayo, {gba} : Gbaya, {gez} : Geez,
14107 {ka} : Georgian, {de} : German, {gmh} : Middle High German (ca.1050-1500),
14108 {goh} : Old High German (ca.750-1050), [{gem} : Germanic (Other)], {gil} :
14109 Gilbertese, {gon} : Gondi, {gor} : Gorontalo, {got} : Gothic, {grb} :
14110 Grebo, {grc} : Ancient Greek, {el} : Modern Greek, {gn} : Guarani, {gu} :
14111 Gujarati, {gwi} : Gwich'in, {hai} : Haida, {ha} : Hausa, {haw} : Hawaiian,
14112 {he} : Hebrew, {hz} : Herero, {hil} : Hiligaynon, {him} : Himachali, {hi} :
14113 Hindi, {ho} : Hiri Motu, {hit} : Hittite, {hmn} : Hmong, {hu} : Hungarian,
14114 {hup} : Hupa, {iba} : Iban, {is} : Icelandic, {ibo} : Igbo, {ijo} : Ijo,
14115 {ilo} : Iloko, [{inc} : Indic (Other)], [{ine} : Indo-European (Other)],
14116 {id} : Indonesian, {ia} : Interlingua (International Auxiliary Language
14117 Association), {ie} : Interlingue, {iu} : Inuktitut, {ik} : Inupiaq, [{ira}
14118 : Iranian (Other)], {ga} : Irish, {mga} : Middle Irish (900-1200), {sga} :
14119 Old Irish (to 900), [{iro} : Iroquoian languages], {it} : Italian, {ja} :
14120 Japanese, {jw} : Javanese, {jrb} : Judeo-Arabic, {jpr} : Judeo-Persian,
14121 {kab} : Kabyle, {kac} : Kachin, {kl} : Kalaallisut, {kam} : Kamba, {kn} :
14122 Kannada, {kau} : Kanuri, {kaa} : Kara-Kalpak, {kar} : Karen, {ks} :
14123 Kashmiri, {kaw} : Kawi, {kk} : Kazakh, {kha} : Khasi, {km} : Khmer, [{khi}
14124 : Khoisan (Other)], {kho} : Khotanese, {ki} : Kikuyu, {kmb} : Kimbundu,
14125 {rw} : Kinyarwanda, {ky} : Kirghiz, {i-klingon} : Klingon, {kv} : Komi,
14126 {kon} : Kongo, {kok} : Konkani, {ko} : Korean, {kos} : Kosraean, {kpe} :
14127 Kpelle, {kro} : Kru, {kj} : Kuanyama, {kum} : Kumyk, {ku} : Kurdish, {kru}
14128 : Kurukh, {kut} : Kutenai, {lad} : Ladino, {lah} : Lahnda, {lam} : Lamba,
14129 {lo} : Lao, {la} : Latin, {lv} : Latvian, {lb} : Letzeburgesch, {lez} :
14130 Lezghian, {ln} : Lingala, {lt} : Lithuanian, {nds} : Low German, {loz} :
14131 Lozi, {lub} : Luba-Katanga, {lua} : Luba-Lulua, {lui} : Luiseno, {lun} :
14132 Lunda, {luo} : Luo (Kenya and Tanzania), {lus} : Lushai, {mk} : Macedonian,
14133 {mad} : Madurese, {mag} : Magahi, {mai} : Maithili, {mak} : Makasar, {mg} :
14134 Malagasy, {ms} : Malay, {ml} : Malayalam, {mt} : Maltese, {mnc} : Manchu,
14135 {mdr} : Mandar, {man} : Mandingo, {mni} : Manipuri, [{mno} : Manobo
14136 languages], {gv} : Manx, {mi} : Maori, {mr} : Marathi, {chm} : Mari, {mh} :
14137 Marshall, {mwr} : Marwari, {mas} : Masai, [{myn} : Mayan languages], {men}
14138 : Mende, {mic} : Micmac, {min} : Minangkabau, {i-mingo} : Mingo, [{mis} :
14139 Miscellaneous languages], {moh} : Mohawk, {mo} : Moldavian, [{mkh} :
14140 Mon-Khmer (Other)], {lol} : Mongo, {mn} : Mongolian, {mos} : Mossi, [{mul}
14141 : Multiple languages], [{mun} : Munda languages], {nah} : Nahuatl, {na} :
14142 Nauru, {nv} : Navajo, {nd} : North Ndebele, {nr} : South Ndebele, {ng} :
14143 Ndonga, {ne} : Nepali, {new} : Newari, {nia} : Nias, [{nic} :
14144 Niger-Kordofanian (Other)], [{ssa} : Nilo-Saharan (Other)], {niu} : Niuean,
14145 {non} : Old Norse, [{nai} : North American Indian], {se} : Northern Sami,
14146 {no} : Norwegian, {nb} : Norwegian Bokmal, {nn} : Norwegian Nynorsk, [{nub}
14147 : Nubian languages], {nym} : Nyamwezi, {nyn} : Nyankole, {nyo} : Nyoro,
14148 {nzi} : Nzima, {oc} : Occitan (post 1500), {oji} : Ojibwa, {or} : Oriya,
14149 {om} : Oromo, {osa} : Osage, {os} : Ossetian; Ossetic, [{oto} : Otomian
14150 languages], {pal} : Pahlavi, {i-pwn} : Paiwan, {pau} : Palauan, {pi} :
14151 Pali, {pam} : Pampanga, {pag} : Pangasinan, {pa} : Panjabi, {pap} :
14152 Papiamento, [{paa} : Papuan (Other)], {fa} : Persian, {peo} : Old Persian
14153 (ca.600-400 B.C.), [{phi} : Philippine (Other)], {phn} : Phoenician, {pon}
14154 : Pohnpeian, {pl} : Polish, {pt} : Portuguese, [{pra} : Prakrit languages],
14155 {pro} : Old Provencal (to 1500), {ps} : Pushto, {qu} : Quechua, {rm} :
14156 Raeto-Romance, {raj} : Rajasthani, {rap} : Rapanui, {rar} : Rarotongan,
14157 [{qaa - qtz} : Reserved for local use.], [{roa} : Romance (Other)], {ro} :
14158 Romanian, {rom} : Romany, {rn} : Rundi, {ru} : Russian, [{sal} : Salishan
14159 languages], {sam} : Samaritan Aramaic, [{smi} : Sami languages (Other)],
14160 {sm} : Samoan, {sad} : Sandawe, {sg} : Sango, {sa} : Sanskrit, {sat} :
14161 Santali, {sc} : Sardinian, {sas} : Sasak, {sco} : Scots, {sel} : Selkup,
14162 [{sem} : Semitic (Other)], {sr} : Serbian, {srr} : Serer, {shn} : Shan,
14163 {sn} : Shona, {sid} : Sidamo, {sgn-...} : Sign Languages, {bla} : Siksika,
14164 {sd} : Sindhi, {si} : Sinhalese, [{sit} : Sino-Tibetan (Other)], [{sio} :
14165 Siouan languages], {den} : Slave (Athapascan), [{sla} : Slavic (Other)],
14166 {sk} : Slovak, {sl} : Slovenian, {sog} : Sogdian, {so} : Somali, {son} :
14167 Songhai, {snk} : Soninke, {wen} : Sorbian languages, {nso} : Northern
14168 Sotho, {st} : Southern Sotho, [{sai} : South American Indian (Other)], {es}
14169 : Spanish, {suk} : Sukuma, {sux} : Sumerian, {su} : Sundanese, {sus} :
14170 Susu, {sw} : Swahili, {ss} : Swati, {sv} : Swedish, {syr} : Syriac, {tl} :
14171 Tagalog, {ty} : Tahitian, [{tai} : Tai (Other)], {tg} : Tajik, {tmh} :
14172 Tamashek, {ta} : Tamil, {i-tao} : Tao, {tt} : Tatar, {i-tay} : Tayal, {te}
14173 : Telugu, {ter} : Tereno, {tet} : Tetum, {th} : Thai, {bo} : Tibetan, {tig}
14174 : Tigre, {ti} : Tigrinya, {tem} : Timne, {tiv} : Tiv, {tli} : Tlingit,
14175 {tpi} : Tok Pisin, {tkl} : Tokelau, {tog} : Tonga (Nyasa), {to} : Tonga
14176 (Tonga Islands), {tsi} : Tsimshian, {ts} : Tsonga, {i-tsu} : Tsou, {tn} :
14177 Tswana, {tum} : Tumbuka, {tr} : Turkish, {ota} : Ottoman Turkish
14178 (1500-1928), {tk} : Turkmen, {tvl} : Tuvalu, {tyv} : Tuvinian, {tw} : Twi,
14179 {uga} : Ugaritic, {ug} : Uighur, {uk} : Ukrainian, {umb} : Umbundu, {und} :
14180 Undetermined, {ur} : Urdu, {uz} : Uzbek, {vai} : Vai, {ven} : Venda, {vi} :
14181 Vietnamese, {vo} : Volapuk, {vot} : Votic, [{wak} : Wakashan languages],
14182 {wal} : Walamo, {war} : Waray, {was} : Washo, {cy} : Welsh, {wo} : Wolof,
14183 {x-...} : Unregistered (Semi-Private Use), {xh} : Xhosa, {sah} : Yakut,
14184 {yao} : Yao, {yap} : Yapese, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik
14185 languages], {znd} : Zande, [{zap} : Zapotec], {zen} : Zenaga, {za} :
14186 Zhuang, {zu} : Zulu, {zun} : Zuni
14187
14188 =item SEE ALSO
14189
14190 =item COPYRIGHT AND DISCLAIMER
14191
14192 =item AUTHOR
14193
14194 =back
14195
14196 =head2 I18N::Langinfo - query locale information
14197
14198 =over 4
14199
14200 =item SYNOPSIS
14201
14202 =item DESCRIPTION
14203
14204 =over 4
14205
14206 =item EXPORT
14207
14208 =back
14209
14210 =item SEE ALSO
14211
14212 =item AUTHOR
14213
14214 =item COPYRIGHT AND LICENSE
14215
14216 =back
14217
14218 =head2 IO - load various IO modules
14219
14220 =over 4
14221
14222 =item SYNOPSIS
14223
14224 =item DESCRIPTION
14225
14226 =back
14227
14228 =head2 IO::Dir - supply object methods for directory handles
14229
14230 =over 4
14231
14232 =item SYNOPSIS
14233
14234 =item DESCRIPTION
14235
14236 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
14237 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
14238
14239 =item SEE ALSO
14240
14241 =item AUTHOR
14242
14243 =item COPYRIGHT
14244
14245 =back
14246
14247 =head2 IO::File - supply object methods for filehandles
14248
14249 =over 4
14250
14251 =item SYNOPSIS
14252
14253 =item DESCRIPTION
14254
14255 =item CONSTRUCTOR
14256
14257 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
14258
14259 =item METHODS
14260
14261 open( FILENAME [,MODE [,PERMS]] )
14262
14263 =item SEE ALSO
14264
14265 =item HISTORY
14266
14267 =back
14268
14269 =head2 IO::Handle - supply object methods for I/O handles
14270
14271 =over 4
14272
14273 =item SYNOPSIS
14274
14275 =item DESCRIPTION
14276
14277 =item CONSTRUCTOR
14278
14279 new (), new_from_fd ( FD, MODE )
14280
14281 =item METHODS
14282
14283 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
14284 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
14285 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
14286 $io->blocking ( [ BOOL ] ), $io->untaint
14287
14288 =item NOTE
14289
14290 =item SEE ALSO
14291
14292 =item BUGS
14293
14294 =item HISTORY
14295
14296 =back
14297
14298 =head2 IO::Pipe - supply object methods for pipes
14299
14300 =over 4
14301
14302 =item SYNOPSIS
14303
14304 =item DESCRIPTION
14305
14306 =item CONSTRUCTOR
14307
14308 new ( [READER, WRITER] )
14309
14310 =item METHODS
14311
14312 reader ([ARGS]), writer ([ARGS]), handles ()
14313
14314 =item SEE ALSO
14315
14316 =item AUTHOR
14317
14318 =item COPYRIGHT
14319
14320 =back
14321
14322 =head2 IO::Poll - Object interface to system poll call
14323
14324 =over 4
14325
14326 =item SYNOPSIS
14327
14328 =item DESCRIPTION
14329
14330 =item METHODS
14331
14332 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
14333 IO ), handles( [ EVENT_MASK ] )
14334
14335 =item SEE ALSO
14336
14337 =item AUTHOR
14338
14339 =item COPYRIGHT
14340
14341 =back
14342
14343 =head2 IO::Seekable - supply seek based methods for I/O objects
14344
14345 =over 4
14346
14347 =item SYNOPSIS
14348
14349 =item DESCRIPTION
14350
14351 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
14352 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
14353 $io->tell
14354
14355 =item SEE ALSO
14356
14357 =item HISTORY
14358
14359 =back
14360
14361 =head2 IO::Select - OO interface to the select system call
14362
14363 =over 4
14364
14365 =item SYNOPSIS
14366
14367 =item DESCRIPTION
14368
14369 =item CONSTRUCTOR
14370
14371 new ( [ HANDLES ] )
14372
14373 =item METHODS
14374
14375 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
14376 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
14377 count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] )
14378
14379 =item EXAMPLE
14380
14381 =item AUTHOR
14382
14383 =item COPYRIGHT
14384
14385 =back
14386
14387 =head2 IO::Socket - Object interface to socket communications
14388
14389 =over 4
14390
14391 =item SYNOPSIS
14392
14393 =item DESCRIPTION
14394
14395 =item CONSTRUCTOR
14396
14397 new ( [ARGS] )
14398
14399 =item METHODS
14400
14401 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
14402 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
14403
14404 =item SEE ALSO
14405
14406 =item AUTHOR
14407
14408 =item COPYRIGHT
14409
14410 =back
14411
14412 =head2 IO::Socket::INET - Object interface for AF_INET domain sockets
14413
14414 =over 4
14415
14416 =item SYNOPSIS
14417
14418 =item DESCRIPTION
14419
14420 =item CONSTRUCTOR
14421
14422 new ( [ARGS] )
14423
14424 =over 4
14425
14426 =item METHODS
14427
14428 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
14429 ()
14430
14431 =back
14432
14433 =item SEE ALSO
14434
14435 =item AUTHOR
14436
14437 =item COPYRIGHT
14438
14439 =back
14440
14441 =head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
14442
14443 =over 4
14444
14445 =item SYNOPSIS
14446
14447 =item DESCRIPTION
14448
14449 =item CONSTRUCTOR
14450
14451 new ( [ARGS] )
14452
14453 =item METHODS
14454
14455 hostpath(), peerpath()
14456
14457 =item SEE ALSO
14458
14459 =item AUTHOR
14460
14461 =item COPYRIGHT
14462
14463 =back
14464
14465 =head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
14466 handles
14467
14468 =over 4
14469
14470 =item SYNOPSIS
14471
14472 =item DESCRIPTION
14473
14474 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
14475 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
14476
14477 =item SEE ALSO
14478
14479 =item AUTHOR
14480
14481 =item COPYRIGHT
14482
14483 =back
14484
14485 =head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
14486
14487 =over 4
14488
14489 =item SYNOPSIS
14490
14491 =item DESCRIPTION
14492
14493 =item CONSTRUCTOR
14494
14495 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
14496
14497 =item METHODS
14498
14499 open( FILENAME [,MODE [,PERMS]] )
14500
14501 =item SEE ALSO
14502
14503 =item HISTORY
14504
14505 =back
14506
14507 =head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
14508 handles
14509
14510 =over 4
14511
14512 =item SYNOPSIS
14513
14514 =item DESCRIPTION
14515
14516 =item CONSTRUCTOR
14517
14518 new (), new_from_fd ( FD, MODE )
14519
14520 =item METHODS
14521
14522 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
14523 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
14524 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
14525 $io->blocking ( [ BOOL ] ), $io->untaint
14526
14527 =item NOTE
14528
14529 =item SEE ALSO
14530
14531 =item BUGS
14532
14533 =item HISTORY
14534
14535 =back
14536
14537 =head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
14538
14539 =over 4
14540
14541 =item SYNOPSIS
14542
14543 =item DESCRIPTION
14544
14545 =item CONSTRUCTOR
14546
14547 new ( [READER, WRITER] )
14548
14549 =item METHODS
14550
14551 reader ([ARGS]), writer ([ARGS]), handles ()
14552
14553 =item SEE ALSO
14554
14555 =item AUTHOR
14556
14557 =item COPYRIGHT
14558
14559 =back
14560
14561 =head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
14562
14563 =over 4
14564
14565 =item SYNOPSIS
14566
14567 =item DESCRIPTION
14568
14569 =item METHODS
14570
14571 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
14572 IO ), handles( [ EVENT_MASK ] )
14573
14574 =item SEE ALSO
14575
14576 =item AUTHOR
14577
14578 =item COPYRIGHT
14579
14580 =back
14581
14582 =head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
14583 I/O objects
14584
14585 =over 4
14586
14587 =item SYNOPSIS
14588
14589 =item DESCRIPTION
14590
14591 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
14592 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
14593 $io->tell
14594
14595 =item SEE ALSO
14596
14597 =item HISTORY
14598
14599 =back
14600
14601 =head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
14602 call
14603
14604 =over 4
14605
14606 =item SYNOPSIS
14607
14608 =item DESCRIPTION
14609
14610 =item CONSTRUCTOR
14611
14612 new ( [ HANDLES ] )
14613
14614 =item METHODS
14615
14616 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
14617 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
14618 count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] )
14619
14620 =item EXAMPLE
14621
14622 =item AUTHOR
14623
14624 =item COPYRIGHT
14625
14626 =back
14627
14628 =head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
14629 communications
14630
14631 =over 4
14632
14633 =item SYNOPSIS
14634
14635 =item DESCRIPTION
14636
14637 =item CONSTRUCTOR
14638
14639 new ( [ARGS] )
14640
14641 =item METHODS
14642
14643 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
14644 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
14645
14646 =item SEE ALSO
14647
14648 =item AUTHOR
14649
14650 =item COPYRIGHT
14651
14652 =back
14653
14654 =head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
14655 AF_INET domain sockets
14656
14657 =over 4
14658
14659 =item SYNOPSIS
14660
14661 =item DESCRIPTION
14662
14663 =item CONSTRUCTOR
14664
14665 new ( [ARGS] )
14666
14667 =over 4
14668
14669 =item METHODS
14670
14671 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
14672 ()
14673
14674 =back
14675
14676 =item SEE ALSO
14677
14678 =item AUTHOR
14679
14680 =item COPYRIGHT
14681
14682 =back
14683
14684 =head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
14685 AF_UNIX domain sockets
14686
14687 =over 4
14688
14689 =item SYNOPSIS
14690
14691 =item DESCRIPTION
14692
14693 =item CONSTRUCTOR
14694
14695 new ( [ARGS] )
14696
14697 =item METHODS
14698
14699 hostpath(), peerpath()
14700
14701 =item SEE ALSO
14702
14703 =item AUTHOR
14704
14705 =item COPYRIGHT
14706
14707 =back
14708
14709 =head2 IPC::Msg - SysV Msg IPC object class
14710
14711 =over 4
14712
14713 =item SYNOPSIS
14714
14715 =item DESCRIPTION
14716
14717 =item METHODS
14718
14719 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
14720 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
14721 FLAGS ] ), stat
14722
14723 =item SEE ALSO
14724
14725 =item AUTHOR
14726
14727 =item COPYRIGHT
14728
14729 =back
14730
14731 =head2 IPC::Open2, open2 - open a process for both reading and writing
14732
14733 =over 4
14734
14735 =item SYNOPSIS
14736
14737 =item DESCRIPTION
14738
14739 =item WARNING 
14740
14741 =item SEE ALSO
14742
14743 =back
14744
14745 =head2 IPC::Open3, open3 - open a process for reading, writing, and error
14746 handling
14747
14748 =over 4
14749
14750 =item SYNOPSIS
14751
14752 =item DESCRIPTION
14753
14754 =item WARNING
14755
14756 =back
14757
14758 =head2 IPC::Semaphore - SysV Semaphore IPC object class
14759
14760 =over 4
14761
14762 =item SYNOPSIS
14763
14764 =item DESCRIPTION
14765
14766 =item METHODS
14767
14768 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
14769 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
14770 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
14771 , VALUE ), stat
14772
14773 =item SEE ALSO
14774
14775 =item AUTHOR
14776
14777 =item COPYRIGHT
14778
14779 =back
14780
14781 =head2 IPC::SysV - SysV IPC constants
14782
14783 =over 4
14784
14785 =item SYNOPSIS
14786
14787 =item DESCRIPTION
14788
14789 ftok( PATH, ID )
14790
14791 =item SEE ALSO
14792
14793 =item AUTHORS
14794
14795 =item COPYRIGHT
14796
14797 =back
14798
14799 =head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
14800
14801 =over 4
14802
14803 =item SYNOPSIS
14804
14805 =item DESCRIPTION
14806
14807 =item METHODS
14808
14809 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
14810 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
14811 FLAGS ] ), stat
14812
14813 =item SEE ALSO
14814
14815 =item AUTHOR
14816
14817 =item COPYRIGHT
14818
14819 =back
14820
14821 =head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
14822 class
14823
14824 =over 4
14825
14826 =item SYNOPSIS
14827
14828 =item DESCRIPTION
14829
14830 =item METHODS
14831
14832 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
14833 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
14834 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
14835 , VALUE ), stat
14836
14837 =item SEE ALSO
14838
14839 =item AUTHOR
14840
14841 =item COPYRIGHT
14842
14843 =back
14844
14845 =head2 List::Util - A selection of general-utility list subroutines
14846
14847 =over 4
14848
14849 =item SYNOPSIS
14850
14851 =item DESCRIPTION
14852
14853 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
14854 BLOCK LIST, shuffle LIST, sum LIST
14855
14856 =item KNOWN BUGS
14857
14858 =item SUGGESTED ADDITIONS
14859
14860 =item COPYRIGHT
14861
14862 =back
14863
14864 =head2 List::Utilib::List::Util, List::Util - A selection of
14865 general-utility list subroutines
14866
14867 =over 4
14868
14869 =item SYNOPSIS
14870
14871 =item DESCRIPTION
14872
14873 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
14874 BLOCK LIST, shuffle LIST, sum LIST
14875
14876 =item KNOWN BUGS
14877
14878 =item SUGGESTED ADDITIONS
14879
14880 =item COPYRIGHT
14881
14882 =back
14883
14884 =head2 List::Utilib::Scalar::Util, Scalar::Util - A selection of
14885 general-utility scalar subroutines
14886
14887 =over 4
14888
14889 =item SYNOPSIS
14890
14891 =item DESCRIPTION
14892
14893 blessed EXPR, dualvar NUM, STRING, isweak EXPR, openhandle FH, reftype
14894 EXPR, tainted EXPR, weaken REF
14895
14896 =item KNOWN BUGS
14897
14898 =item COPYRIGHT
14899
14900 =item BLATANT PLUG
14901
14902 =back
14903
14904 =head2 Locale::Constants - constants for Locale codes
14905
14906 =over 4
14907
14908 =item SYNOPSIS
14909
14910 =item DESCRIPTION
14911
14912 =item KNOWN BUGS AND LIMITATIONS
14913
14914 =item SEE ALSO
14915
14916 Locale::Language, Locale::Country, Locale::Script, Locale::Currency
14917
14918 =item AUTHOR
14919
14920 =item COPYRIGHT
14921
14922 =back
14923
14924 =head2 Locale::Country - ISO codes for country identification (ISO 3166)
14925
14926 =over 4
14927
14928 =item SYNOPSIS
14929
14930 =item DESCRIPTION
14931
14932 B<alpha-2>, B<alpha-3>, B<numeric>
14933
14934 =item CONVERSION ROUTINES
14935
14936 code2country( CODE, [ CODESET ] ), country2code( STRING, [ CODESET ] ),
14937 country_code2code( CODE, CODESET, CODESET )
14938
14939 =item QUERY ROUTINES
14940
14941 C<all_country_codes( [ CODESET ] )>, C<all_country_names( [ CODESET ] )>
14942
14943 =item SEMI-PRIVATE ROUTINES
14944
14945 =over 4
14946
14947 =item alias_code
14948
14949 =item rename_country
14950
14951 =back
14952
14953 =item EXAMPLES
14954
14955 =item DOMAIN NAMES
14956
14957 =item KNOWN BUGS AND LIMITATIONS
14958
14959 =item SEE ALSO
14960
14961 Locale::Language, Locale::Script, Locale::Currency, Locale::SubCountry, ISO
14962 3166-1, http://www.iso.org/iso/en/prods-services/iso3166ma/index.html,
14963 http://www.egt.ie/standards/iso3166/iso3166-1-en.html,
14964 http://www.cia.gov/cia/publications/factbook/docs/app-f.html
14965
14966 =item AUTHOR
14967
14968 =item COPYRIGHT
14969
14970 =back
14971
14972 =head2 Locale::Currency - ISO three letter codes for currency
14973 identification (ISO 4217)
14974
14975 =over 4
14976
14977 =item SYNOPSIS
14978
14979 =item DESCRIPTION
14980
14981 XTS, XXX
14982
14983 =item CONVERSION ROUTINES
14984
14985 code2currency(), currency2code()
14986
14987 =item QUERY ROUTINES
14988
14989 C<all_currency_codes()>, C<all_currency_names()>
14990
14991 =item EXAMPLES
14992
14993 =item KNOWN BUGS AND LIMITATIONS
14994
14995 =item SEE ALSO
14996
14997 Locale::Country, Locale::Script, ISO 4217:1995,
14998 http://www.bsi-global.com/iso4217currency
14999
15000 =item AUTHOR
15001
15002 =item COPYRIGHT
15003
15004 =back
15005
15006 =head2 Locale::Language - ISO two letter codes for language identification
15007 (ISO 639)
15008
15009 =over 4
15010
15011 =item SYNOPSIS
15012
15013 =item DESCRIPTION
15014
15015 =item CONVERSION ROUTINES
15016
15017 code2language(), language2code()
15018
15019 =item QUERY ROUTINES
15020
15021 C<all_language_codes()>, C<all_language_names()>
15022
15023 =item EXAMPLES
15024
15025 =item KNOWN BUGS AND LIMITATIONS
15026
15027 =item SEE ALSO
15028
15029 Locale::Country, Locale::Script, Locale::Currency, ISO 639:1988 (E/F),
15030 http://lcweb.loc.gov/standards/iso639-2/langhome.html
15031
15032 =item AUTHOR
15033
15034 =item COPYRIGHT
15035
15036 =back
15037
15038 =head2 Locale::Maketext -- framework for localization
15039
15040 =over 4
15041
15042 =item SYNOPSIS
15043
15044 =item DESCRIPTION
15045
15046 =item QUICK OVERVIEW
15047
15048 =item METHODS
15049
15050 =over 4
15051
15052 =item Construction Methods
15053
15054 =item The "maketext" Method
15055
15056 $lh->fail_with I<or> $lh->fail_with(I<PARAM>), $lh->failure_handler_auto
15057
15058 =item Utility Methods
15059
15060 $language->quant($number, $singular), $language->quant($number, $singular,
15061 $plural), $language->quant($number, $singular, $plural, $negative),
15062 $language->numf($number), $language->sprintf($format, @items),
15063 $language->language_tag(), $language->encoding()
15064
15065 =item Language Handle Attributes and Internals
15066
15067 =back
15068
15069 =item LANGUAGE CLASS HIERARCHIES
15070
15071 =item ENTRIES IN EACH LEXICON
15072
15073 =item BRACKET NOTATION
15074
15075 =item AUTO LEXICONS
15076
15077 =item CONTROLLING LOOKUP FAILURE
15078
15079 =item HOW TO USE MAKETEXT
15080
15081 =item SEE ALSO
15082
15083 =item COPYRIGHT AND DISCLAIMER
15084
15085 =item AUTHOR
15086
15087 =back
15088
15089 =head2 Locale::Maketext::TPJ13 -- article about software localization
15090
15091 =over 4
15092
15093 =item SYNOPSIS
15094
15095 =item DESCRIPTION
15096
15097 =item Localization and Perl: gettext breaks, Maketext fixes
15098
15099 =over 4
15100
15101 =item A Localization Horror Story: It Could Happen To You
15102
15103 =item The Linguistic View
15104
15105 =item Breaking gettext
15106
15107 =item Replacing gettext
15108
15109 =item Buzzwords: Abstraction and Encapsulation
15110
15111 =item Buzzword: Isomorphism
15112
15113 =item Buzzword: Inheritance
15114
15115 =item Buzzword: Concision
15116
15117 =item The Devil in the Details
15118
15119 =item The Proof in the Pudding: Localizing Web Sites
15120
15121 =item References
15122
15123 =back
15124
15125 =back
15126
15127 =head2 Locale::Script - ISO codes for script identification (ISO 15924)
15128
15129 =over 4
15130
15131 =item SYNOPSIS
15132
15133 =item DESCRIPTION
15134
15135 B<alpha-2>, B<alpha-3>, B<numeric>
15136
15137 =over 4
15138
15139 =item SPECIAL CODES
15140
15141 =back
15142
15143 =item CONVERSION ROUTINES
15144
15145 code2script( CODE, [ CODESET ] ), script2code( STRING, [ CODESET ] ),
15146 script_code2code( CODE, CODESET, CODESET )
15147
15148 =item QUERY ROUTINES
15149
15150 C<all_script_codes ( [ CODESET ] )>, C<all_script_names ( [ CODESET ] )>
15151
15152 =item EXAMPLES
15153
15154 =item KNOWN BUGS AND LIMITATIONS
15155
15156 =item SEE ALSO
15157
15158 Locale::Language, Locale::Currency, Locale::Country, ISO 15924,
15159 http://www.evertype.com/standards/iso15924/
15160
15161 =item AUTHOR
15162
15163 =item COPYRIGHT
15164
15165 =back
15166
15167 =head2 MIME::Base64 - Encoding and decoding of base64 strings
15168
15169 =over 4
15170
15171 =item SYNOPSIS
15172
15173 =item DESCRIPTION
15174
15175 encode_base64($str, [$eol]), decode_base64($str)
15176
15177 =item DIAGNOSTICS
15178
15179 Premature end of base64 data, Premature padding of base64 data
15180
15181 =item EXAMPLES
15182
15183 =item COPYRIGHT
15184
15185 =back
15186
15187 =head2 MIME::Base64::QuotedPrint, MIME::QuotedPrint - Encoding and decoding
15188 of quoted-printable strings
15189
15190 =over 4
15191
15192 =item SYNOPSIS
15193
15194 =item DESCRIPTION
15195
15196 encode_qp($str), decode_qp($str);
15197
15198 =item COPYRIGHT
15199
15200 =back
15201
15202 =head2 MIME::QuotedPrint - Encoding and decoding of quoted-printable
15203 strings
15204
15205 =over 4
15206
15207 =item SYNOPSIS
15208
15209 =item DESCRIPTION
15210
15211 encode_qp($str), decode_qp($str);
15212
15213 =item COPYRIGHT
15214
15215 =back
15216
15217 =head2 Math::BigFloat - Arbitrary size floating point math package
15218
15219 =over 4
15220
15221 =item SYNOPSIS
15222
15223 =item DESCRIPTION
15224
15225 =over 4
15226
15227 =item Canonical notation
15228
15229 =item Output
15230
15231 =item C<mantissa()>, C<exponent()> and C<parts()>
15232
15233 =item Accuracy vs. Precision
15234
15235 =item Rounding
15236
15237 ffround ( +$scale ), ffround ( -$scale ), ffround ( 0 ), fround  ( +$scale
15238 ), fround  ( -$scale ) and fround ( 0 )
15239
15240 =back
15241
15242 =item EXAMPLES
15243
15244   # not ready yet
15245
15246 =item Autocreating constants
15247
15248 =over 4
15249
15250 =item Math library
15251
15252 =item Using Math::BigInt::Lite
15253
15254 =back
15255
15256 =item BUGS
15257
15258 =item CAVEAT
15259
15260 stringify, bstr(), bdiv, Modifying and =, bpow
15261
15262 =item LICENSE
15263
15264 =item AUTHORS
15265
15266 =back
15267
15268 =head2 Math::BigInt - Arbitrary size integer math package
15269
15270 =over 4
15271
15272 =item SYNOPSIS
15273
15274 =item DESCRIPTION
15275
15276 Canonical notation, Input, Output
15277
15278 =item METHODS
15279
15280 =over 4
15281
15282 =item config
15283
15284 =item accuracy
15285
15286 =item brsft
15287
15288 =item new
15289
15290 =item bnan
15291
15292 =item bzero
15293
15294 =item binf
15295
15296 =item bone
15297
15298 =item is_one()/is_zero()/is_nan()/is_inf()
15299
15300 =item is_positive()/is_negative()
15301
15302         $x->is_positive();              # true if >= 0
15303         $x->is_negative();              # true if <  0
15304
15305 =item is_odd()/is_even()/is_int()
15306
15307 =item bcmp
15308
15309 =item bacmp
15310
15311 =item sign
15312
15313 =item bcmp
15314
15315 =item bneg
15316
15317 =item babs
15318
15319 =item bnorm
15320
15321 =item bnot
15322
15323 =item binc
15324
15325 =item bdec
15326
15327 =item badd
15328
15329 =item bsub
15330
15331 =item bmul
15332
15333 =item bdiv
15334
15335 =item bmod
15336
15337 =item bmodinv
15338
15339 =item bmodpow
15340
15341 =item bpow
15342
15343 =item blsft
15344
15345 =item brsft
15346
15347 =item band
15348
15349 =item bior
15350
15351 =item bxor
15352
15353 =item bnot
15354
15355 =item bsqrt
15356
15357 =item bfac
15358
15359 =item round
15360
15361 =item bround
15362
15363 =item bfround
15364
15365 =item bfloor
15366
15367 =item bceil
15368
15369 =item bgcd
15370
15371 =item blcm
15372
15373 =item exponent
15374
15375 =item mantissa
15376
15377 =item parts
15378
15379 =item copy
15380
15381 =item as_number
15382
15383 =item bsstr
15384
15385 =item as_hex
15386
15387 =item as_bin
15388
15389 =back
15390
15391 =item ACCURACY and PRECISION
15392
15393 =over 4
15394
15395 =item Precision P
15396
15397 =item Accuracy A
15398
15399 =item Fallback F
15400
15401 =item Rounding mode R
15402
15403 'trunc', 'even', 'odd', '+inf', '-inf', 'zero', Precision, Accuracy
15404 (significant digits), Setting/Accessing, Creating numbers, Usage,
15405 Precedence, Overriding globals, Local settings, Rounding, Default values,
15406 Remarks
15407
15408 =back
15409
15410 =item INTERNALS
15411
15412 =over 4
15413
15414 =item MATH LIBRARY
15415
15416 =item SIGN
15417
15418 =item mantissa(), exponent() and parts()
15419
15420 =back
15421
15422 =item EXAMPLES
15423
15424   use Math::BigInt;
15425
15426 =item Autocreating constants
15427
15428 =item PERFORMANCE
15429
15430 =over 4
15431
15432 =item Alternative math libraries
15433
15434 =item SUBCLASSING
15435
15436 =back
15437
15438 =item Subclassing Math::BigInt
15439
15440 =item UPGRADING
15441
15442 =over 4
15443
15444 =item Auto-upgrade
15445
15446 bsqrt(), div(), blog()
15447
15448 =back
15449
15450 =item BUGS
15451
15452 Out of Memory!, Fails to load Calc on Perl prior 5.6.0
15453
15454 =item CAVEATS
15455
15456 stringify, bstr(), bsstr() and 'cmp', int(), length, bdiv, infinity
15457 handling, Modifying and =, bpow, Overloading -$x, Mixing different object
15458 types, bsqrt(), brsft()
15459
15460 =item LICENSE
15461
15462 =item SEE ALSO
15463
15464 =item AUTHORS
15465
15466 =back
15467
15468 =head2 Math::BigInt::Calc - Pure Perl module to support Math::BigInt
15469
15470 =over 4
15471
15472 =item SYNOPSIS
15473
15474 =item DESCRIPTION
15475
15476 =item EXPORT
15477
15478 =item WRAP YOUR OWN
15479
15480 =item LICENSE
15481
15482 This program is free software; you may redistribute it and/or modify it
15483 under
15484 the same terms as Perl itself. 
15485
15486 =item AUTHORS
15487
15488 =item SEE ALSO
15489
15490 =back
15491
15492 =head2 Math::BigRat - arbitrarily big rationals
15493
15494 =over 4
15495
15496 =item SYNOPSIS
15497
15498 =item DESCRIPTION
15499
15500 =over 4
15501
15502 =item MATH LIBRARY
15503
15504 =back
15505
15506 =item METHODS
15507
15508 =over 4
15509
15510 =item new()
15511
15512 =item numerator()
15513
15514 =item denominator()
15515
15516         $d = $x->denominator();
15517
15518 =item parts()
15519
15520 =item as_number()
15521
15522 =item bfac()
15523
15524 =item blog()
15525
15526 =item bround()/round()/bfround()
15527
15528 =back
15529
15530 =item BUGS
15531
15532 =item LICENSE
15533
15534 =item SEE ALSO
15535
15536 =item AUTHORS
15537
15538 =back
15539
15540 =head2 Math::Complex - complex numbers and associated mathematical
15541 functions
15542
15543 =over 4
15544
15545 =item SYNOPSIS
15546
15547 =item DESCRIPTION
15548
15549 =item OPERATIONS
15550
15551 =item CREATION
15552
15553 =item STRINGIFICATION
15554
15555 =over 4
15556
15557 =item CHANGED IN PERL 5.6
15558
15559 =back
15560
15561 =item USAGE
15562
15563 =item ERRORS DUE TO DIVISION BY ZERO OR LOGARITHM OF ZERO
15564
15565 =item ERRORS DUE TO INDIGESTIBLE ARGUMENTS
15566
15567 =item BUGS
15568
15569 =item AUTHORS
15570
15571 =back
15572
15573 =head2 Math::Trig - trigonometric functions
15574
15575 =over 4
15576
15577 =item SYNOPSIS
15578
15579 =item DESCRIPTION
15580
15581 =item TRIGONOMETRIC FUNCTIONS
15582
15583 B<tan>
15584
15585 =over 4
15586
15587 =item ERRORS DUE TO DIVISION BY ZERO
15588
15589 =item SIMPLE (REAL) ARGUMENTS, COMPLEX RESULTS
15590
15591 =back
15592
15593 =item PLANE ANGLE CONVERSIONS
15594
15595 =item RADIAL COORDINATE CONVERSIONS
15596
15597 =over 4
15598
15599 =item COORDINATE SYSTEMS
15600
15601 =item 3-D ANGLE CONVERSIONS
15602
15603 cartesian_to_cylindrical, cartesian_to_spherical, cylindrical_to_cartesian,
15604 cylindrical_to_spherical, spherical_to_cartesian, spherical_to_cylindrical
15605
15606 =back
15607
15608 =item GREAT CIRCLE DISTANCES AND DIRECTIONS
15609
15610 =item EXAMPLES
15611
15612 =over 4
15613
15614 =item CAVEAT FOR GREAT CIRCLE FORMULAS
15615
15616 =back
15617
15618 =item BUGS
15619
15620 =item AUTHORS
15621
15622 =back
15623
15624 =head2 Memoize - Make functions faster by trading space for time
15625
15626 =over 4
15627
15628 =item SYNOPSIS
15629
15630 =item DESCRIPTION
15631
15632 =item DETAILS
15633
15634 =item OPTIONS
15635
15636 =over 4
15637
15638 =item INSTALL
15639
15640 =item NORMALIZER
15641
15642 =item C<SCALAR_CACHE>, C<LIST_CACHE>
15643
15644 C<MEMORY>, C<HASH>, C<TIE>, C<FAULT>, C<MERGE>
15645
15646 =back
15647
15648 =item OTHER FACILITIES
15649
15650 =over 4
15651
15652 =item C<unmemoize>
15653
15654 =item C<flush_cache>
15655
15656 =back
15657
15658 =item CAVEATS
15659
15660 =item PERSISTENT CACHE SUPPORT
15661
15662 =item EXPIRATION SUPPORT
15663
15664 =item BUGS
15665
15666 =item MAILING LIST
15667
15668 =item AUTHOR
15669
15670 =item COPYRIGHT AND LICENSE
15671
15672 =item THANK YOU
15673
15674 =back
15675
15676 =head2 Memoize::AnyDBM_File - glue to provide EXISTS for AnyDBM_File for
15677 Storable use
15678
15679 =over 4
15680
15681 =item DESCRIPTION
15682
15683 =back
15684
15685 =head2 Memoize::Expire - Plug-in module for automatic expiration of
15686 memoized values
15687
15688 =over 4
15689
15690 =item SYNOPSIS
15691
15692 =item DESCRIPTION
15693
15694 =item INTERFACE
15695
15696  TIEHASH,  EXISTS,  STORE
15697
15698 =item ALTERNATIVES
15699
15700 =item CAVEATS
15701
15702 =item AUTHOR
15703
15704 =item SEE ALSO
15705
15706 =back
15707
15708 =head2 Memoize::ExpireFile - test for Memoize expiration semantics
15709
15710 =over 4
15711
15712 =item DESCRIPTION
15713
15714 =back
15715
15716 =head2 Memoize::ExpireTest - test for Memoize expiration semantics
15717
15718 =over 4
15719
15720 =item DESCRIPTION
15721
15722 =back
15723
15724 =head2 Memoize::NDBM_File - glue to provide EXISTS for NDBM_File for
15725 Storable use
15726
15727 =over 4
15728
15729 =item DESCRIPTION
15730
15731 =back
15732
15733 =head2 Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for
15734 Storable use
15735
15736 =over 4
15737
15738 =item DESCRIPTION
15739
15740 =back
15741
15742 =head2 Memoize::Storable - store Memoized data in Storable database
15743
15744 =over 4
15745
15746 =item DESCRIPTION
15747
15748 =back
15749
15750 =head2 NDBM_File - Tied access to ndbm files
15751
15752 =over 4
15753
15754 =item SYNOPSIS
15755
15756 =item DESCRIPTION
15757
15758 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
15759
15760 =item DIAGNOSTICS
15761
15762 =over 4
15763
15764 =item C<ndbm store returned -1, errno 22, key "..." at ...>
15765
15766 =back
15767
15768 =item BUGS AND WARNINGS
15769
15770 =back
15771
15772 =head2 NEXT - Provide a pseudo-class NEXT that allows method redispatch
15773
15774 =over 4
15775
15776 =item SYNOPSIS
15777
15778 =item DESCRIPTION
15779
15780 =over 4
15781
15782 =item Enforcing redispatch
15783
15784 =item Avoiding repetitions
15785
15786 =back
15787
15788 =item AUTHOR
15789
15790 =item BUGS AND IRRITATIONS
15791
15792 =item COPYRIGHT
15793
15794 =back
15795
15796 =head2 Net::Cmd - Network Command class (as used by FTP, SMTP etc)
15797
15798 =over 4
15799
15800 =item SYNOPSIS
15801
15802 =item DESCRIPTION
15803
15804 =item USER METHODS
15805
15806 debug ( VALUE ), message (), code (), ok (), status (), datasend ( DATA ),
15807 dataend ()
15808
15809 =item CLASS METHODS
15810
15811 debug_print ( DIR, TEXT ), debug_text ( TEXT ), command ( CMD [, ARGS, ...
15812 ]), unsupported (), response (), parse_response ( TEXT ), getline (),
15813 ungetline ( TEXT ), read_until_dot (), tied_fh ()
15814
15815 =item EXPORTS
15816
15817 =item AUTHOR
15818
15819 =item COPYRIGHT
15820
15821 =back
15822
15823 =head2 Net::Config - Local configuration data for libnet
15824
15825 =over 4
15826
15827 =item SYNOPSYS
15828
15829 =item DESCRIPTION
15830
15831 =item METHODS
15832
15833 requires_firewall HOST
15834
15835 =item NetConfig VALUES
15836
15837 nntp_hosts, snpp_hosts, pop3_hosts, smtp_hosts, ph_hosts, daytime_hosts,
15838 time_hosts, inet_domain, ftp_firewall, ftp_firewall_type, ftp_ext_passive,
15839 ftp_int_pasive, local_netmask, test_hosts, test_exists
15840
15841 =back
15842
15843 =head2 Net::Domain - Attempt to evaluate the current host's internet name
15844 and domain
15845
15846 =over 4
15847
15848 =item SYNOPSIS
15849
15850 =item DESCRIPTION
15851
15852 hostfqdn (), hostname (), hostdomain ()
15853
15854 =item AUTHOR
15855
15856 =item COPYRIGHT
15857
15858 =back
15859
15860 =head2 Net::FTP - FTP Client class
15861
15862 =over 4
15863
15864 =item SYNOPSIS
15865
15866 =item DESCRIPTION
15867
15868 =item OVERVIEW
15869
15870 =item CONSTRUCTOR
15871
15872 new (HOST [,OPTIONS])
15873
15874 =item METHODS
15875
15876 login ([LOGIN [,PASSWORD [, ACCOUNT] ] ]), authorize ( [AUTH [, RESP]]),
15877 site (ARGS), type (TYPE [, ARGS]), ascii ([ARGS]) binary([ARGS])
15878 ebcdic([ARGS]) byte([ARGS]), rename ( OLDNAME, NEWNAME ), delete ( FILENAME
15879 ), cwd ( [ DIR ] ), cdup (), pwd (), restart ( WHERE ), rmdir ( DIR ),
15880 mkdir ( DIR [, RECURSE ]), ls ( [ DIR ] ), dir ( [ DIR ] ), get (
15881 REMOTE_FILE [, LOCAL_FILE [, WHERE]] ), put ( LOCAL_FILE [, REMOTE_FILE ]
15882 ), put_unique ( LOCAL_FILE [, REMOTE_FILE ] ), append ( LOCAL_FILE [,
15883 REMOTE_FILE ] ), unique_name (), mdtm ( FILE ), size ( FILE ), supported (
15884 CMD ), hash ( [FILEHANDLE_GLOB_REF],[ BYTES_PER_HASH_MARK] ), nlst ( [ DIR
15885 ] ), list ( [ DIR ] ), retr ( FILE ), stor ( FILE ), stou ( FILE ), appe (
15886 FILE ), port ( [ PORT ] ), pasv (), pasv_xfer ( SRC_FILE, DEST_SERVER [,
15887 DEST_FILE ] ), pasv_xfer_unique ( SRC_FILE, DEST_SERVER [, DEST_FILE ] ),
15888 pasv_wait ( NON_PASV_SERVER ), abort (), quit ()
15889
15890 =over 4
15891
15892 =item Methods for the adventurous
15893
15894 quot (CMD [,ARGS])
15895
15896 =back
15897
15898 =item THE dataconn CLASS
15899
15900 read ( BUFFER, SIZE [, TIMEOUT ] ), write ( BUFFER, SIZE [, TIMEOUT ] ),
15901 bytes_read (), abort (), close ()
15902
15903 =item UNIMPLEMENTED
15904
15905 B<ALLO>, B<SMNT>, B<HELP>, B<MODE>, B<SYST>, B<STAT>, B<STRU>, B<REIN>
15906
15907 =item REPORTING BUGS
15908
15909 =item AUTHOR
15910
15911 =item SEE ALSO
15912
15913 =item USE EXAMPLES
15914
15915 http://www.csh.rit.edu/~adam/Progs/autoftp-2.0.tar.gz
15916
15917 =item CREDITS
15918
15919 =item COPYRIGHT
15920
15921 =back
15922
15923 =head2 Net::NNTP - NNTP Client class
15924
15925 =over 4
15926
15927 =item SYNOPSIS
15928
15929 =item DESCRIPTION
15930
15931 =item CONSTRUCTOR
15932
15933 new ( [ HOST ] [, OPTIONS ])
15934
15935 =item METHODS
15936
15937 article ( [ MSGID|MSGNUM ], [FH] ), body ( [ MSGID|MSGNUM ], [FH] ), head (
15938 [ MSGID|MSGNUM ], [FH] ), articlefh ( [ MSGID|MSGNUM ] ), bodyfh ( [
15939 MSGID|MSGNUM ] ), headfh ( [ MSGID|MSGNUM ] ), nntpstat ( [ MSGID|MSGNUM ]
15940 ), group ( [ GROUP ] ), ihave ( MSGID [, MESSAGE ]), last (), date (),
15941 postok (), authinfo ( USER, PASS ), list (), newgroups ( SINCE [,
15942 DISTRIBUTIONS ]), newnews ( SINCE [, GROUPS [, DISTRIBUTIONS ]]), next (),
15943 post ( [ MESSAGE ] ), postfh (), slave (), quit ()
15944
15945 =over 4
15946
15947 =item Extension methods
15948
15949 newsgroups ( [ PATTERN ] ), distributions (), subscriptions (),
15950 overview_fmt (), active_times (), active ( [ PATTERN ] ), xgtitle ( PATTERN
15951 ), xhdr ( HEADER, MESSAGE-SPEC ), xover ( MESSAGE-SPEC ), xpath (
15952 MESSAGE-ID ), xpat ( HEADER, PATTERN, MESSAGE-SPEC), xrover, listgroup ( [
15953 GROUP ] ), reader
15954
15955 =back
15956
15957 =item UNSUPPORTED
15958
15959 =item DEFINITIONS
15960
15961 MESSAGE-SPEC, PATTERN, Examples, C<[^]-]>, C<*bdc>, C<[0-9a-zA-Z]>, C<a??d>
15962
15963 =item SEE ALSO
15964
15965 =item AUTHOR
15966
15967 =item COPYRIGHT
15968
15969 =back
15970
15971 =head2 Net::POP3 - Post Office Protocol 3 Client class (RFC1939)
15972
15973 =over 4
15974
15975 =item SYNOPSIS
15976
15977 =item DESCRIPTION
15978
15979 =item EXAMPLES
15980
15981 =item CONSTRUCTOR
15982
15983 new ( [ HOST, ] [ OPTIONS ] )
15984
15985 =item METHODS
15986
15987 user ( USER ), pass ( PASS ), login ( [ USER [, PASS ]] ), apop ( [ USER [,
15988 PASS ]] ), top ( MSGNUM [, NUMLINES ] ), list ( [ MSGNUM ] ), get ( MSGNUM
15989 [, FH ] ), getfh ( MSGNUM ), last (), popstat (), ping ( USER ), uidl ( [
15990 MSGNUM ] ), delete ( MSGNUM ), reset (), quit ()
15991
15992 =item NOTES
15993
15994 =item SEE ALSO
15995
15996 =item AUTHOR
15997
15998 =item COPYRIGHT
15999
16000 =back
16001
16002 =head2 Net::Ping - check a remote host for reachability
16003
16004 =over 4
16005
16006 =item SYNOPSIS
16007
16008 =item DESCRIPTION
16009
16010 =over 4
16011
16012 =item Functions
16013
16014 Net::Ping->new([$proto [, $def_timeout [, $bytes]]]);, $p->source_verify( {
16015 0 | 1 } );, $p->hires( { 0 | 1 } );, $p->bind($local_addr);, $p->ping($host
16016 [, $timeout]);, $p->open($host);, $p->close();, pingecho($host [,
16017 $timeout]);
16018
16019 =back
16020
16021 =item WARNING
16022
16023 =item NOTES
16024
16025 =item AUTHORS
16026
16027 =item COPYRIGHT
16028
16029 =back
16030
16031 =head2 Net::SMTP - Simple Mail Transfer Protocol Client
16032
16033 =over 4
16034
16035 =item SYNOPSIS
16036
16037 =item DESCRIPTION
16038
16039 =item EXAMPLES
16040
16041 =item CONSTRUCTOR
16042
16043 new Net::SMTP [ HOST, ] [ OPTIONS ]
16044
16045 =item METHODS
16046
16047 banner (), domain (), hello ( DOMAIN ), etrn ( DOMAIN ), auth ( USERNAME,
16048 PASSWORD ), mail ( ADDRESS [, OPTIONS] ), send ( ADDRESS ), send_or_mail (
16049 ADDRESS ), send_and_mail ( ADDRESS ), reset (), recipient ( ADDRESS [,
16050 ADDRESS [ ...]] [, OPTIONS ] ), to ( ADDRESS [, ADDRESS [...]] ), cc (
16051 ADDRESS [, ADDRESS [...]] ), bcc ( ADDRESS [, ADDRESS [...]] ), data ( [
16052 DATA ] ), expand ( ADDRESS ), verify ( ADDRESS ), help ( [ $subject ] ),
16053 quit ()
16054
16055 =item ADDRESSES
16056
16057 =item SEE ALSO
16058
16059 =item AUTHOR
16060
16061 =item COPYRIGHT
16062
16063 =back
16064
16065 =head2 Net::Time - time and daytime network client interface
16066
16067 =over 4
16068
16069 =item SYNOPSIS
16070
16071 =item DESCRIPTION
16072
16073 inet_time ( [HOST [, PROTOCOL [, TIMEOUT]]]), inet_daytime ( [HOST [,
16074 PROTOCOL [, TIMEOUT]]])
16075
16076 =item AUTHOR
16077
16078 =item COPYRIGHT
16079
16080 =back
16081
16082 =head2 Net::hostent - by-name interface to Perl's built-in gethost*()
16083 functions
16084
16085 =over 4
16086
16087 =item SYNOPSIS
16088
16089 =item DESCRIPTION
16090
16091 =item EXAMPLES
16092
16093 =item NOTE
16094
16095 =item AUTHOR
16096
16097 =back
16098
16099 =head2 Net::libnetFAQ, libnetFAQ - libnet Frequently Asked Questions
16100
16101 =over 4
16102
16103 =item DESCRIPTION
16104
16105 =over 4
16106
16107 =item Where to get this document
16108
16109 =item How to contribute to this document
16110
16111 =back
16112
16113 =item Author and Copyright Information
16114
16115 =over 4
16116
16117 =item Disclaimer
16118
16119 =back
16120
16121 =item Obtaining and installing libnet
16122
16123 =over 4
16124
16125 =item What is libnet ?
16126
16127 =item Which version of perl do I need ?
16128
16129 =item What other modules do I need ?
16130
16131 =item What machines support libnet ?
16132
16133 =item Where can I get the latest libnet release
16134
16135 =back
16136
16137 =item Using Net::FTP
16138
16139 =over 4
16140
16141 =item How do I download files from an FTP server ?
16142
16143 =item How do I transfer files in binary mode ?
16144
16145 =item How can I get the size of a file on a remote FTP server ?
16146
16147 =item How can I get the modification time of a file on a remote FTP server
16148 ?
16149
16150 =item How can I change the permissions of a file on a remote server ?
16151
16152 =item Can I do a reget operation like the ftp command ?
16153
16154 =item How do I get a directory listing from an FTP server ?
16155
16156 =item Changing directory to "" does not fail ?
16157
16158 =item I am behind a SOCKS firewall, but the Firewall option does not work ?
16159
16160 =item I am behind an FTP proxy firewall, but cannot access machines outside
16161 ?
16162
16163 =item My ftp proxy firewall does not listen on port 21
16164
16165 =item Is it possible to change the file permissions of a file on an FTP
16166 server ?
16167
16168 =item I have seen scripts call a method message, but cannot find it
16169 documented ?
16170
16171 =item Why does Net::FTP not implement mput and mget methods
16172
16173 =back
16174
16175 =item Using Net::SMTP
16176
16177 =over 4
16178
16179 =item Why can't the part of an Email address after the @ be used as the
16180 hostname ?
16181
16182 =item Why does Net::SMTP not do DNS MX lookups ?
16183
16184 =item The verify method always returns true ?
16185
16186 =back
16187
16188 =item Debugging scripts
16189
16190 =over 4
16191
16192 =item How can I debug my scripts that use Net::* modules ?
16193
16194 =back
16195
16196 =item AUTHOR AND COPYRIGHT
16197
16198 =back
16199
16200 =head2 Net::netent - by-name interface to Perl's built-in getnet*()
16201 functions
16202
16203 =over 4
16204
16205 =item SYNOPSIS
16206
16207 =item DESCRIPTION
16208
16209 =item EXAMPLES
16210
16211 =item NOTE
16212
16213 =item AUTHOR
16214
16215 =back
16216
16217 =head2 Net::protoent - by-name interface to Perl's built-in getproto*()
16218 functions
16219
16220 =over 4
16221
16222 =item SYNOPSIS
16223
16224 =item DESCRIPTION
16225
16226 =item NOTE
16227
16228 =item AUTHOR
16229
16230 =back
16231
16232 =head2 Net::servent - by-name interface to Perl's built-in getserv*()
16233 functions
16234
16235 =over 4
16236
16237 =item SYNOPSIS
16238
16239 =item DESCRIPTION
16240
16241 =item EXAMPLES
16242
16243 =item NOTE
16244
16245 =item AUTHOR
16246
16247 =back
16248
16249 =head2 Netrc, Net::Netrc - OO interface to users netrc file
16250
16251 =over 4
16252
16253 =item SYNOPSIS
16254
16255 =item DESCRIPTION
16256
16257 =item THE .netrc FILE
16258
16259 machine name, default, login name, password string, account string, macdef
16260 name
16261
16262 =item CONSTRUCTOR
16263
16264 lookup ( MACHINE [, LOGIN ])
16265
16266 =item METHODS
16267
16268 login (), password (), account (), lpa ()
16269
16270 =item AUTHOR
16271
16272 =item SEE ALSO
16273
16274 =item COPYRIGHT
16275
16276 =back
16277
16278 =head2 O - Generic interface to Perl Compiler backends
16279
16280 =over 4
16281
16282 =item SYNOPSIS
16283
16284 =item DESCRIPTION
16285
16286 =item CONVENTIONS
16287
16288 =item IMPLEMENTATION
16289
16290 =item BUGS
16291
16292 =item AUTHOR
16293
16294 =back
16295
16296 =head2 ODBM_File - Tied access to odbm files
16297
16298 =over 4
16299
16300 =item SYNOPSIS
16301
16302 =item DESCRIPTION
16303
16304 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
16305
16306 =item DIAGNOSTICS
16307
16308 =over 4
16309
16310 =item C<odbm store returned -1, errno 22, key "..." at ...>
16311
16312 =back
16313
16314 =item BUGS AND WARNINGS
16315
16316 =back
16317
16318 =head2 Opcode - Disable named opcodes when compiling perl code
16319
16320 =over 4
16321
16322 =item SYNOPSIS
16323
16324 =item DESCRIPTION
16325
16326 =item NOTE
16327
16328 =item WARNING
16329
16330 =item Operator Names and Operator Lists
16331
16332 an operator name (opname), an operator tag name (optag), a negated opname
16333 or optag, an operator set (opset)
16334
16335 =item Opcode Functions
16336
16337 opcodes, opset (OP, ...), opset_to_ops (OPSET), opset_to_hex (OPSET),
16338 full_opset, empty_opset, invert_opset (OPSET), verify_opset (OPSET, ...),
16339 define_optag (OPTAG, OPSET), opmask_add (OPSET), opmask, opdesc (OP, ...),
16340 opdump (PAT)
16341
16342 =item Manipulating Opsets
16343
16344 =item TO DO (maybe)
16345
16346 =back
16347
16348 =over 4
16349
16350 =item Predefined Opcode Tags
16351
16352 :base_core, :base_mem, :base_loop, :base_io, :base_orig, :base_math,
16353 :base_thread, :default, :filesys_read, :sys_db, :browse, :filesys_open,
16354 :filesys_write, :subprocess, :ownprocess, :others, :still_to_be_decided,
16355 :dangerous
16356
16357 =item SEE ALSO
16358
16359 =item AUTHORS
16360
16361 =back
16362
16363 =head2 Opcode::Safe, Safe - Compile and execute code in restricted
16364 compartments
16365
16366 =over 4
16367
16368 =item SYNOPSIS
16369
16370 =item DESCRIPTION
16371
16372 a new namespace, an operator mask
16373
16374 =item WARNING
16375
16376 =over 4
16377
16378 =item RECENT CHANGES
16379
16380 =item Methods in class Safe
16381
16382 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
16383 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
16384 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
16385 root (NAMESPACE), mask (MASK)
16386
16387 =item Some Safety Issues
16388
16389 Memory, CPU, Snooping, Signals, State Changes
16390
16391 =item AUTHOR
16392
16393 =back
16394
16395 =back
16396
16397 =head2 Opcode::ops, ops - Perl pragma to restrict unsafe operations when
16398 compiling
16399
16400 =over 4
16401
16402 =item SYNOPSIS  
16403
16404 =item DESCRIPTION
16405
16406 =item SEE ALSO
16407
16408 =back
16409
16410 =head2 POSIX - Perl interface to IEEE Std 1003.1
16411
16412 =over 4
16413
16414 =item SYNOPSIS
16415
16416 =item DESCRIPTION
16417
16418 =item NOTE
16419
16420 =item CAVEATS 
16421
16422 =item FUNCTIONS
16423
16424 _exit, abort, abs, access, acos, alarm, asctime, asin, assert, atan, atan2,
16425 atexit, atof, atoi, atol, bsearch, calloc, ceil, chdir, chmod, chown,
16426 clearerr, clock, close, closedir, cos, cosh, creat, ctermid, ctime,
16427 cuserid, difftime, div, dup, dup2, errno, execl, execle, execlp, execv,
16428 execve, execvp, exit, exp, fabs, fclose, fcntl, fdopen, feof, ferror,
16429 fflush, fgetc, fgetpos, fgets, fileno, floor, fmod, fopen, fork, fpathconf,
16430 fprintf, fputc, fputs, fread, free, freopen, frexp, fscanf, fseek, fsetpos,
16431 fstat, ftell, fwrite, getc, getchar, getcwd, getegid, getenv, geteuid,
16432 getgid, getgrgid, getgrnam, getgroups, getlogin, getpgrp, getpid, getppid,
16433 getpwnam, getpwuid, gets, getuid, gmtime, isalnum, isalpha, isatty,
16434 iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace, isupper,
16435 isxdigit, kill, labs, ldexp, ldiv, link, localeconv, localtime, log, log10,
16436 longjmp, lseek, malloc, mblen, mbstowcs, mbtowc, memchr, memcmp, memcpy,
16437 memmove, memset, mkdir, mkfifo, mktime, modf, nice, offsetof, open,
16438 opendir, pathconf, pause, perror, pipe, pow, printf, putc, putchar, puts,
16439 qsort, raise, rand, read, readdir, realloc, remove, rename, rewind,
16440 rewinddir, rmdir, scanf, setgid, setjmp, setlocale, setpgid, setsid,
16441 setuid, sigaction, siglongjmp, sigpending, sigprocmask, sigsetjmp,
16442 sigsuspend, sin, sinh, sleep, sprintf, sqrt, srand, sscanf, stat, strcat,
16443 strchr, strcmp, strcoll, strcpy, strcspn, strerror, strftime, strlen,
16444 strncat, strncmp, strncpy, strpbrk, strrchr, strspn, strstr, strtod,
16445 strtok, strtol, strtoul, strxfrm, sysconf, system, tan, tanh, tcdrain,
16446 tcflow, tcflush, tcgetpgrp, tcsendbreak, tcsetpgrp, time, times, tmpfile,
16447 tmpnam, tolower, toupper, ttyname, tzname, tzset, umask, uname, ungetc,
16448 unlink, utime, vfprintf, vprintf, vsprintf, wait, waitpid, wcstombs,
16449 wctomb, write
16450
16451 =item CLASSES
16452
16453 =over 4
16454
16455 =item POSIX::SigAction
16456
16457 new
16458
16459 =item POSIX::SigSet
16460
16461 new, addset, delset, emptyset, fillset, ismember
16462
16463 =item POSIX::Termios
16464
16465 new, getattr, getcc, getcflag, getiflag, getispeed, getlflag, getoflag,
16466 getospeed, setattr, setcc, setcflag, setiflag, setispeed, setlflag,
16467 setoflag, setospeed, Baud rate values, Terminal interface values, c_cc
16468 field values, c_cflag field values, c_iflag field values, c_lflag field
16469 values, c_oflag field values
16470
16471 =back
16472
16473 =item PATHNAME CONSTANTS
16474
16475 Constants
16476
16477 =item POSIX CONSTANTS
16478
16479 Constants
16480
16481 =item SYSTEM CONFIGURATION
16482
16483 Constants
16484
16485 =item ERRNO
16486
16487 Constants
16488
16489 =item FCNTL
16490
16491 Constants
16492
16493 =item FLOAT
16494
16495 Constants
16496
16497 =item LIMITS
16498
16499 Constants
16500
16501 =item LOCALE
16502
16503 Constants
16504
16505 =item MATH
16506
16507 Constants
16508
16509 =item SIGNAL
16510
16511 Constants
16512
16513 =item STAT
16514
16515 Constants, Macros
16516
16517 =item STDLIB
16518
16519 Constants
16520
16521 =item STDIO
16522
16523 Constants
16524
16525 =item TIME
16526
16527 Constants
16528
16529 =item UNISTD
16530
16531 Constants
16532
16533 =item WAIT
16534
16535 Constants, WNOHANG, WUNTRACED, Macros, WIFEXITED, WEXITSTATUS, WIFSIGNALED,
16536 WTERMSIG, WIFSTOPPED, WSTOPSIG
16537
16538 =back
16539
16540 =head2 PerlIO - On demand loader for PerlIO layers and root of PerlIO::*
16541 name space
16542
16543 =over 4
16544
16545 =item SYNOPSIS
16546
16547 =item DESCRIPTION
16548
16549 unix, stdio, perlio, crlf, utf8, bytes, raw
16550
16551 =over 4
16552
16553 =item Alternatives to raw
16554
16555 =item Defaults and how to override them
16556
16557 =back
16558
16559 =item AUTHOR
16560
16561 =item SEE ALSO
16562
16563 =back
16564
16565 =head2 PerlIO::Scalar - support module for in-memory IO.
16566
16567 =over 4
16568
16569 =item SYNOPSIS
16570
16571 =item DESCRIPTION
16572
16573 =back
16574
16575 =head2 PerlIO::Via - Helper class for PerlIO layers implemented in perl
16576
16577 =over 4
16578
16579 =item SYNOPSIS
16580
16581 =item DESCRIPTION
16582
16583 $class->PUSHED([$mode[,$fh]]), $obj->POPPED([$fh]),
16584 $class->OPEN($path,$mode[,$fh]), $obj->BINMODE([,$fh]),
16585 $class->FDOPEN($fd), $class->SYSOPEN($path,$imode,$perm,$fh),
16586 $obj->FILENO($fh), $obj->READ($buffer,$len,$fh), $obj->WRITE($buffer,$fh),
16587 $obj->FILL($fh), $obj->CLOSE($fh), $obj->SEEK($posn,$whence,$fh),
16588 $obj->TELL($fh), $obj->UNREAD($buffer,$fh), $obj->FLUSH($fh),
16589 $obj->SETLINEBUF($fh), $obj->CLEARERR($fh), $obj->ERROR($fh),
16590 $obj->EOF($fh)
16591
16592 =over 4
16593
16594 =item Example - a Hexadecimal Handle
16595
16596 =back
16597
16598 =back
16599
16600 =head2 PerlIO::encoding - encoding layer
16601
16602 =over 4
16603
16604 =item SYNOPSIS
16605
16606 =item DESCRIPTION
16607
16608 =item SEE ALSO
16609
16610 =back
16611
16612 =head2 Pod::Checker, podchecker() - check pod documents for syntax errors
16613
16614 =over 4
16615
16616 =item SYNOPSIS
16617
16618 =item OPTIONS/ARGUMENTS
16619
16620 =over 4
16621
16622 =item podchecker()
16623
16624 B<-warnings> =E<gt> I<val>
16625
16626 =back
16627
16628 =item DESCRIPTION
16629
16630 =item DIAGNOSTICS
16631
16632 =over 4
16633
16634 =item Errors
16635
16636 empty =headn, =over on line I<N> without closing =back, =item without
16637 previous =over, =back without previous =over, No argument for =begin, =end
16638 without =begin, Nested =begin's, =for without formatter specification,
16639 unresolved internal link I<NAME>, Unknown command "I<CMD>", Unknown
16640 interior-sequence "I<SEQ>", nested commands
16641 I<CMD>E<lt>...I<CMD>E<lt>...E<gt>...E<gt>, garbled entity I<STRING>, Entity
16642 number out of range, malformed link LE<lt>E<gt>, nonempty ZE<lt>E<gt>,
16643 empty XE<lt>E<gt>, Spurious text after =pod / =cut, Spurious character(s)
16644 after =back
16645
16646 =item Warnings
16647
16648 multiple occurrence of link target I<name>, line containing nothing but
16649 whitespace in paragraph, file does not start with =head, previous =item has
16650 no contents, preceding non-item paragraph(s), =item type mismatch (I<one>
16651 vs. I<two>), I<N> unescaped C<E<lt>E<gt>> in paragraph, Unknown entity, No
16652 items in =over, No argument for =item, empty section in previous paragraph,
16653 Verbatim paragraph in NAME section
16654
16655 =item Hyperlinks
16656
16657 ignoring leading/trailing whitespace in link, (section) in '$page'
16658 deprecated, alternative text/node '%s' contains non-escaped | or /
16659
16660 =back
16661
16662 =item RETURN VALUE
16663
16664 =item EXAMPLES
16665
16666 =item INTERFACE
16667
16668 =back
16669
16670 C<Pod::Checker-E<gt>new( %options )>
16671
16672 C<$checker-E<gt>poderror( @args )>, C<$checker-E<gt>poderror( {%opts},
16673 @args )>
16674
16675 C<$checker-E<gt>num_errors()>
16676
16677 C<$checker-E<gt>name()>
16678
16679 C<$checker-E<gt>node()>
16680
16681 C<$checker-E<gt>idx()>
16682
16683 C<$checker-E<gt>hyperlink()>
16684
16685 =over 4
16686
16687 =item AUTHOR
16688
16689 =back
16690
16691 =head2 Pod::Find - find POD documents in directory trees
16692
16693 =over 4
16694
16695 =item SYNOPSIS
16696
16697 =item DESCRIPTION
16698
16699 =back
16700
16701 =over 4
16702
16703 =item C<pod_find( { %opts } , @directories )>
16704
16705 C<-verbose =E<gt> 1>, C<-perl =E<gt> 1>, C<-script =E<gt> 1>, C<-inc =E<gt>
16706 1>
16707
16708 =back
16709
16710 =over 4
16711
16712 =item C<simplify_name( $str )>
16713
16714 =back
16715
16716 =over 4
16717
16718 =item C<pod_where( { %opts }, $pod )>
16719
16720 C<-inc =E<gt> 1>, C<-dirs =E<gt> [ $dir1, $dir2, ... ]>, C<-verbose =E<gt>
16721 1>
16722
16723 =back
16724
16725 =over 4
16726
16727 =item C<contains_pod( $file , $verbose )>
16728
16729 =back
16730
16731 =over 4
16732
16733 =item AUTHOR
16734
16735 =item SEE ALSO
16736
16737 =back
16738
16739 =head2 Pod::Html - module to convert pod files to HTML
16740
16741 =over 4
16742
16743 =item SYNOPSIS
16744
16745 =item DESCRIPTION
16746
16747 =item ARGUMENTS
16748
16749 backlink, cachedir, css, flush, header, help, htmldir, htmlroot, index,
16750 infile, libpods, netscape, outfile, podpath, podroot, quiet, recurse,
16751 title, verbose
16752
16753 =item EXAMPLE
16754
16755 =item ENVIRONMENT
16756
16757 =item AUTHOR
16758
16759 =item SEE ALSO
16760
16761 =item COPYRIGHT
16762
16763 =back
16764
16765 =head2 Pod::InputObjects - objects representing POD input paragraphs,
16766 commands, etc.
16767
16768 =over 4
16769
16770 =item SYNOPSIS
16771
16772 =item REQUIRES
16773
16774 =item EXPORTS
16775
16776 =item DESCRIPTION
16777
16778 package B<Pod::InputSource>, package B<Pod::Paragraph>, package
16779 B<Pod::InteriorSequence>, package B<Pod::ParseTree>
16780
16781 =back
16782
16783 =over 4
16784
16785 =item B<Pod::InputSource>
16786
16787 =back
16788
16789 =over 4
16790
16791 =item B<new()>
16792
16793 =back
16794
16795 =over 4
16796
16797 =item B<name()>
16798
16799 =back
16800
16801 =over 4
16802
16803 =item B<handle()>
16804
16805 =back
16806
16807 =over 4
16808
16809 =item B<was_cutting()>
16810
16811 =back
16812
16813 =over 4
16814
16815 =item B<Pod::Paragraph>
16816
16817 =back
16818
16819 =over 4
16820
16821 =item Pod::Paragraph-E<gt>B<new()>
16822
16823 =back
16824
16825 =over 4
16826
16827 =item $pod_para-E<gt>B<cmd_name()>
16828
16829 =back
16830
16831 =over 4
16832
16833 =item $pod_para-E<gt>B<text()>
16834
16835 =back
16836
16837 =over 4
16838
16839 =item $pod_para-E<gt>B<raw_text()>
16840
16841 =back
16842
16843 =over 4
16844
16845 =item $pod_para-E<gt>B<cmd_prefix()>
16846
16847 =back
16848
16849 =over 4
16850
16851 =item $pod_para-E<gt>B<cmd_separator()>
16852
16853 =back
16854
16855 =over 4
16856
16857 =item $pod_para-E<gt>B<parse_tree()>
16858
16859 =back
16860
16861 =over 4
16862
16863 =item $pod_para-E<gt>B<file_line()>
16864
16865 =back
16866
16867 =over 4
16868
16869 =item B<Pod::InteriorSequence>
16870
16871 =back
16872
16873 =over 4
16874
16875 =item Pod::InteriorSequence-E<gt>B<new()>
16876
16877 =back
16878
16879 =over 4
16880
16881 =item $pod_seq-E<gt>B<cmd_name()>
16882
16883 =back
16884
16885 =over 4
16886
16887 =item $pod_seq-E<gt>B<prepend()>
16888
16889 =back
16890
16891 =over 4
16892
16893 =item $pod_seq-E<gt>B<append()>
16894
16895 =back
16896
16897 =over 4
16898
16899 =item $pod_seq-E<gt>B<nested()>
16900
16901 =back
16902
16903 =over 4
16904
16905 =item $pod_seq-E<gt>B<raw_text()>
16906
16907 =back
16908
16909 =over 4
16910
16911 =item $pod_seq-E<gt>B<left_delimiter()>
16912
16913 =back
16914
16915 =over 4
16916
16917 =item $pod_seq-E<gt>B<right_delimiter()>
16918
16919 =back
16920
16921 =over 4
16922
16923 =item $pod_seq-E<gt>B<parse_tree()>
16924
16925 =back
16926
16927 =over 4
16928
16929 =item $pod_seq-E<gt>B<file_line()>
16930
16931 =back
16932
16933 =over 4
16934
16935 =item Pod::InteriorSequence::B<DESTROY()>
16936
16937 =back
16938
16939 =over 4
16940
16941 =item B<Pod::ParseTree>
16942
16943 =back
16944
16945 =over 4
16946
16947 =item Pod::ParseTree-E<gt>B<new()>
16948
16949 =back
16950
16951 =over 4
16952
16953 =item $ptree-E<gt>B<top()>
16954
16955 =back
16956
16957 =over 4
16958
16959 =item $ptree-E<gt>B<children()>
16960
16961 =back
16962
16963 =over 4
16964
16965 =item $ptree-E<gt>B<prepend()>
16966
16967 =back
16968
16969 =over 4
16970
16971 =item $ptree-E<gt>B<append()>
16972
16973 =back
16974
16975 =over 4
16976
16977 =item $ptree-E<gt>B<raw_text()>
16978
16979 =back
16980
16981 =over 4
16982
16983 =item Pod::ParseTree::B<DESTROY()>
16984
16985 =back
16986
16987 =over 4
16988
16989 =item SEE ALSO
16990
16991 =item AUTHOR
16992
16993 =back
16994
16995 =head2 Pod::LaTeX - Convert Pod data to formatted Latex
16996
16997 =over 4
16998
16999 =item SYNOPSIS
17000
17001 =item DESCRIPTION
17002
17003 =back
17004
17005 =over 4
17006
17007 =item OBJECT METHODS
17008
17009 C<initialize>
17010
17011 =back
17012
17013 =over 4
17014
17015 =item Data Accessors
17016
17017 B<AddPreamble>
17018
17019 =back
17020
17021 B<AddPostamble>
17022
17023 B<Head1Level>
17024
17025 B<Label>
17026
17027 B<LevelNoNum>
17028
17029 B<MakeIndex>
17030
17031 B<ReplaceNAMEwithSection>
17032
17033 B<StartWithNewPage>
17034
17035 B<TableOfContents>
17036
17037 B<UniqueLabels>
17038
17039 B<UserPreamble>
17040
17041 B<UserPostamble>
17042
17043 B<Lists>
17044
17045 =over 4
17046
17047 =item Subclassed methods
17048
17049 =back
17050
17051 B<begin_pod>
17052
17053 B<end_pod>
17054
17055 B<command>
17056
17057 B<verbatim>
17058
17059 B<textblock>
17060
17061 B<interior_sequence>
17062
17063 =over 4
17064
17065 =item List Methods
17066
17067 B<begin_list>
17068
17069 =back
17070
17071 B<end_list>
17072
17073 B<add_item>
17074
17075 =over 4
17076
17077 =item Methods for headings
17078
17079 B<head>
17080
17081 =back
17082
17083 =over 4
17084
17085 =item Internal methods
17086
17087 B<_output>
17088
17089 =back
17090
17091 B<_replace_special_chars>
17092
17093 B<_replace_special_chars_late>
17094
17095 B<_create_label>
17096
17097 B<_create_index>
17098
17099 B<_clean_latex_commands>
17100
17101 B<_split_delimited>
17102
17103 =over 4
17104
17105 =item NOTES
17106
17107 =item SEE ALSO
17108
17109 =item AUTHORS
17110
17111 =item COPYRIGHT
17112
17113 =item REVISION
17114
17115 =back
17116
17117 =head2 Pod::Man - Convert POD data to formatted *roff input
17118
17119 =over 4
17120
17121 =item SYNOPSIS
17122
17123 =item DESCRIPTION
17124
17125 center, date, fixed, fixedbold, fixeditalic, fixedbolditalic, name, quotes,
17126 release, section
17127
17128 =item DIAGNOSTICS
17129
17130 roff font should be 1 or 2 chars, not "%s", Invalid link %s, Invalid quote
17131 specification "%s", %s:%d: Unknown command paragraph "%s", %s:%d: Unknown
17132 escape EE<lt>%sE<gt>, %s:%d: Unknown formatting code %s, %s:%d: Unmatched
17133 =back
17134
17135 =item BUGS
17136
17137 =item CAVEATS
17138
17139 =item SEE ALSO
17140
17141 =item AUTHOR
17142
17143 =item COPYRIGHT AND LICENSE
17144
17145 =back
17146
17147 =head2 Pod::ParseLink -- Parse an LE<lt>E<gt> formatting code in POD text
17148
17149 =over 4
17150
17151 =item SYNOPSIS
17152
17153 =item DESCRIPTION
17154
17155 =item AUTHOR
17156
17157 =item COPYRIGHT AND LICENSE
17158
17159 =back
17160
17161 =head2 Pod::ParseUtils - helpers for POD parsing and conversion
17162
17163 =over 4
17164
17165 =item SYNOPSIS
17166
17167 =item DESCRIPTION
17168
17169 =back
17170
17171 =over 4
17172
17173 =item Pod::List
17174
17175 Pod::List-E<gt>new()
17176
17177 =back
17178
17179 $list-E<gt>file()
17180
17181 $list-E<gt>start()
17182
17183 $list-E<gt>indent()
17184
17185 $list-E<gt>type()
17186
17187 $list-E<gt>rx()
17188
17189 $list-E<gt>item()
17190
17191 $list-E<gt>parent()
17192
17193 $list-E<gt>tag()
17194
17195 =over 4
17196
17197 =item Pod::Hyperlink
17198
17199 Pod::Hyperlink-E<gt>new()
17200
17201 =back
17202
17203 $link-E<gt>parse($string)
17204
17205 $link-E<gt>markup($string)
17206
17207 $link-E<gt>text()
17208
17209 $link-E<gt>warning()
17210
17211 $link-E<gt>file(), $link-E<gt>line()
17212
17213 $link-E<gt>page()
17214
17215 $link-E<gt>node()
17216
17217 $link-E<gt>alttext()
17218
17219 $link-E<gt>type()
17220
17221 $link-E<gt>link()
17222
17223 =over 4
17224
17225 =item Pod::Cache
17226
17227 Pod::Cache-E<gt>new()
17228
17229 =back
17230
17231 $cache-E<gt>item()
17232
17233 $cache-E<gt>find_page($name)
17234
17235 =over 4
17236
17237 =item Pod::Cache::Item
17238
17239 Pod::Cache::Item-E<gt>new()
17240
17241 =back
17242
17243 $cacheitem-E<gt>page()
17244
17245 $cacheitem-E<gt>description()
17246
17247 $cacheitem-E<gt>path()
17248
17249 $cacheitem-E<gt>file()
17250
17251 $cacheitem-E<gt>nodes()
17252
17253 $cacheitem-E<gt>find_node($name)
17254
17255 $cacheitem-E<gt>idx()
17256
17257 =over 4
17258
17259 =item AUTHOR
17260
17261 =item SEE ALSO
17262
17263 =back
17264
17265 =head2 Pod::Parser - base class for creating POD filters and translators
17266
17267 =over 4
17268
17269 =item SYNOPSIS
17270
17271 =item REQUIRES
17272
17273 =item EXPORTS
17274
17275 =item DESCRIPTION
17276
17277 =item QUICK OVERVIEW
17278
17279 =item PARSING OPTIONS
17280
17281 B<-want_nonPODs> (default: unset), B<-process_cut_cmd> (default: unset),
17282 B<-warnings> (default: unset)
17283
17284 =back
17285
17286 =over 4
17287
17288 =item RECOMMENDED SUBROUTINE/METHOD OVERRIDES
17289
17290 =back
17291
17292 =over 4
17293
17294 =item B<command()>
17295
17296 C<$cmd>, C<$text>, C<$line_num>, C<$pod_para>
17297
17298 =back
17299
17300 =over 4
17301
17302 =item B<verbatim()>
17303
17304 C<$text>, C<$line_num>, C<$pod_para>
17305
17306 =back
17307
17308 =over 4
17309
17310 =item B<textblock()>
17311
17312 C<$text>, C<$line_num>, C<$pod_para>
17313
17314 =back
17315
17316 =over 4
17317
17318 =item B<interior_sequence()>
17319
17320 =back
17321
17322 =over 4
17323
17324 =item OPTIONAL SUBROUTINE/METHOD OVERRIDES
17325
17326 =back
17327
17328 =over 4
17329
17330 =item B<new()>
17331
17332 =back
17333
17334 =over 4
17335
17336 =item B<initialize()>
17337
17338 =back
17339
17340 =over 4
17341
17342 =item B<begin_pod()>
17343
17344 =back
17345
17346 =over 4
17347
17348 =item B<begin_input()>
17349
17350 =back
17351
17352 =over 4
17353
17354 =item B<end_input()>
17355
17356 =back
17357
17358 =over 4
17359
17360 =item B<end_pod()>
17361
17362 =back
17363
17364 =over 4
17365
17366 =item B<preprocess_line()>
17367
17368 =back
17369
17370 =over 4
17371
17372 =item B<preprocess_paragraph()>
17373
17374 =back
17375
17376 =over 4
17377
17378 =item METHODS FOR PARSING AND PROCESSING
17379
17380 =back
17381
17382 =over 4
17383
17384 =item B<parse_text()>
17385
17386 B<-expand_seq> =E<gt> I<code-ref>|I<method-name>, B<-expand_text> =E<gt>
17387 I<code-ref>|I<method-name>, B<-expand_ptree> =E<gt>
17388 I<code-ref>|I<method-name>
17389
17390 =back
17391
17392 =over 4
17393
17394 =item B<interpolate()>
17395
17396 =back
17397
17398 =over 4
17399
17400 =item B<parse_paragraph()>
17401
17402 =back
17403
17404 =over 4
17405
17406 =item B<parse_from_filehandle()>
17407
17408 =back
17409
17410 =over 4
17411
17412 =item B<parse_from_file()>
17413
17414 =back
17415
17416 =over 4
17417
17418 =item ACCESSOR METHODS
17419
17420 =back
17421
17422 =over 4
17423
17424 =item B<errorsub()>
17425
17426 =back
17427
17428 =over 4
17429
17430 =item B<cutting()>
17431
17432 =back
17433
17434 =over 4
17435
17436 =item B<parseopts()>
17437
17438 =back
17439
17440 =over 4
17441
17442 =item B<output_file()>
17443
17444 =back
17445
17446 =over 4
17447
17448 =item B<output_handle()>
17449
17450 =back
17451
17452 =over 4
17453
17454 =item B<input_file()>
17455
17456 =back
17457
17458 =over 4
17459
17460 =item B<input_handle()>
17461
17462 =back
17463
17464 =over 4
17465
17466 =item B<input_streams()>
17467
17468 =back
17469
17470 =over 4
17471
17472 =item B<top_stream()>
17473
17474 =back
17475
17476 =over 4
17477
17478 =item PRIVATE METHODS AND DATA
17479
17480 =back
17481
17482 =over 4
17483
17484 =item B<_push_input_stream()>
17485
17486 =back
17487
17488 =over 4
17489
17490 =item B<_pop_input_stream()>
17491
17492 =back
17493
17494 =over 4
17495
17496 =item TREE-BASED PARSING
17497
17498 =item SEE ALSO
17499
17500 =item AUTHOR
17501
17502 =back
17503
17504 =head2 Pod::Plainer - Perl extension for converting Pod to old style Pod.
17505
17506 =over 4
17507
17508 =item SYNOPSIS
17509
17510 =item DESCRIPTION
17511
17512 =over 4
17513
17514 =item EXPORT
17515
17516 =back
17517
17518 =item AUTHOR
17519
17520 =item SEE ALSO
17521
17522 =back
17523
17524 =head2 Pod::Select, podselect() - extract selected sections of POD from
17525 input
17526
17527 =over 4
17528
17529 =item SYNOPSIS
17530
17531 =item REQUIRES
17532
17533 =item EXPORTS
17534
17535 =item DESCRIPTION
17536
17537 =item SECTION SPECIFICATIONS
17538
17539 =item RANGE SPECIFICATIONS
17540
17541 =back
17542
17543 =over 4
17544
17545 =item OBJECT METHODS
17546
17547 =back
17548
17549 =over 4
17550
17551 =item B<curr_headings()>
17552
17553 =back
17554
17555 =over 4
17556
17557 =item B<select()>
17558
17559 =back
17560
17561 =over 4
17562
17563 =item B<add_selection()>
17564
17565 =back
17566
17567 =over 4
17568
17569 =item B<clear_selections()>
17570
17571 =back
17572
17573 =over 4
17574
17575 =item B<match_section()>
17576
17577 =back
17578
17579 =over 4
17580
17581 =item B<is_selected()>
17582
17583 =back
17584
17585 =over 4
17586
17587 =item EXPORTED FUNCTIONS
17588
17589 =back
17590
17591 =over 4
17592
17593 =item B<podselect()>
17594
17595 B<-output>, B<-sections>, B<-ranges>
17596
17597 =back
17598
17599 =over 4
17600
17601 =item PRIVATE METHODS AND DATA
17602
17603 =back
17604
17605 =over 4
17606
17607 =item B<_compile_section_spec()>
17608
17609 =back
17610
17611 =over 4
17612
17613 =item $self->{_SECTION_HEADINGS}
17614
17615 =back
17616
17617 =over 4
17618
17619 =item $self->{_SELECTED_SECTIONS}
17620
17621 =back
17622
17623 =over 4
17624
17625 =item SEE ALSO
17626
17627 =item AUTHOR
17628
17629 =back
17630
17631 =head2 Pod::Text - Convert POD data to formatted ASCII text
17632
17633 =over 4
17634
17635 =item SYNOPSIS
17636
17637 =item DESCRIPTION
17638
17639 alt, code, indent, loose, quotes, sentence, width
17640
17641 =item DIAGNOSTICS
17642
17643 Bizarre space in item, Item called without tag, Can't open %s for reading:
17644 %s, Invalid quote specification "%s", %s:%d: Unknown command paragraph: %s,
17645 %s:%d: Unknown escape: %s, %s:%d: Unknown formatting code: %s, %s:%d:
17646 Unmatched =back
17647
17648 =item RESTRICTIONS
17649
17650 =item NOTES
17651
17652 =item SEE ALSO
17653
17654 =item AUTHOR
17655
17656 =item COPYRIGHT AND LICENSE
17657
17658 =back
17659
17660 =head2 Pod::Text::Color - Convert POD data to formatted color ASCII text
17661
17662 =over 4
17663
17664 =item SYNOPSIS
17665
17666 =item DESCRIPTION
17667
17668 =item BUGS
17669
17670 =item SEE ALSO
17671
17672 =item AUTHOR
17673
17674 =item COPYRIGHT AND LICENSE
17675
17676 =back
17677
17678 =head2 Pod::Text::Overstrike - Convert POD data to formatted overstrike
17679 text
17680
17681 =over 4
17682
17683 =item SYNOPSIS
17684
17685 =item DESCRIPTION
17686
17687 =item BUGS
17688
17689 =item SEE ALSO
17690
17691 =item AUTHOR
17692
17693 =item COPYRIGHT AND LICENSE
17694
17695 =back
17696
17697 =head2 Pod::Text::Termcap, Pod::Text::Color - Convert POD data to ASCII
17698 text with format escapes
17699
17700 =over 4
17701
17702 =item SYNOPSIS
17703
17704 =item DESCRIPTION
17705
17706 =item NOTES
17707
17708 =item SEE ALSO
17709
17710 =item AUTHOR
17711
17712 =item COPYRIGHT AND LICENSE
17713
17714 =back
17715
17716 =head2 Pod::Usage, pod2usage() - print a usage message from embedded pod
17717 documentation
17718
17719 =over 4
17720
17721 =item SYNOPSIS
17722
17723 =item ARGUMENTS
17724
17725 C<-message>, C<-msg>, C<-exitval>, C<-verbose>, C<-output>, C<-input>,
17726 C<-pathlist>
17727
17728 =item DESCRIPTION
17729
17730 =item EXAMPLES
17731
17732 =over 4
17733
17734 =item Recommended Use
17735
17736 =back
17737
17738 =item CAVEATS
17739
17740 =item AUTHOR
17741
17742 =item ACKNOWLEDGEMENTS
17743
17744 =back
17745
17746 =head2 Pod::t::basic, basic.pod - Test of various basic POD features in
17747 translators.
17748
17749 =over 4
17750
17751 =item HEADINGS
17752
17753 =item This C<is> a "level 1" heading
17754
17755 =over 4
17756
17757 =item ``Level'' "2 I<heading>
17758
17759 =back
17760
17761 =item This C<is> a "level 1" heading
17762
17763 =over 4
17764
17765 =item ``Level'' 2 I<heading>
17766
17767 =back
17768
17769 =item LINKS
17770
17771 =item OVER AND ITEMS
17772
17773 This  is a test, a, b, a, b, c, d, "foo", B<bar>, C<baz>, Some longer item
17774 text
17775
17776 =item FORMATTING CODES
17777
17778 E<amp>, E<apos>, E<lt>, E<gt>, E<quot>, E<sol>
17779
17780 =item VERBATIM
17781
17782 =item CONCLUSION
17783
17784 =back
17785
17786 =head2 Pod::t::htmlescp, Escape Sequences Test
17787
17788 =over 4
17789
17790 =item DESCRIPTION
17791
17792 =back
17793
17794 =head2 Pod::t::htmlview, Test HTML Rendering
17795
17796 =over 4
17797
17798 =item SYNOPSIS
17799
17800 =item DESCRIPTION
17801
17802 =item METHODS =E<gt> OTHER STUFF
17803
17804 =over 4
17805
17806 =item new()
17807
17808 foo, bar, baz, C<Black> Cat, Sat S<I<on> the>, MatE<lt>!E<gt>, 1 Cat, 2
17809 Sat, 3 Mat
17810
17811 =item old()
17812
17813 =back
17814
17815 =item TESTING FOR AND BEGIN
17816
17817 =item TESTING URLs hyperlinking
17818
17819 =item SEE ALSO
17820
17821 =back
17822
17823 =head2 SDBM_File - Tied access to sdbm files
17824
17825 =over 4
17826
17827 =item SYNOPSIS
17828
17829 =item DESCRIPTION
17830
17831 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
17832
17833 =item DIAGNOSTICS
17834
17835 =over 4
17836
17837 =item C<sdbm store returned -1, errno 22, key "..." at ...>
17838
17839 =back
17840
17841 =item BUGS AND WARNINGS
17842
17843 =back
17844
17845 =head2 Safe - Compile and execute code in restricted compartments
17846
17847 =over 4
17848
17849 =item SYNOPSIS
17850
17851 =item DESCRIPTION
17852
17853 a new namespace, an operator mask
17854
17855 =item WARNING
17856
17857 =over 4
17858
17859 =item RECENT CHANGES
17860
17861 =item Methods in class Safe
17862
17863 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
17864 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
17865 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
17866 root (NAMESPACE), mask (MASK)
17867
17868 =item Some Safety Issues
17869
17870 Memory, CPU, Snooping, Signals, State Changes
17871
17872 =item AUTHOR
17873
17874 =back
17875
17876 =back
17877
17878 =head2 Scalar::Util - A selection of general-utility scalar subroutines
17879
17880 =over 4
17881
17882 =item SYNOPSIS
17883
17884 =item DESCRIPTION
17885
17886 blessed EXPR, dualvar NUM, STRING, isweak EXPR, openhandle FH, reftype
17887 EXPR, tainted EXPR, weaken REF
17888
17889 =item KNOWN BUGS
17890
17891 =item COPYRIGHT
17892
17893 =item BLATANT PLUG
17894
17895 =back
17896
17897 =head2 Search::Dict, look - search for key in dictionary file
17898
17899 =over 4
17900
17901 =item SYNOPSIS
17902
17903 =item DESCRIPTION
17904
17905 =back
17906
17907 =head2 SelectSaver - save and restore selected file handle
17908
17909 =over 4
17910
17911 =item SYNOPSIS
17912
17913 =item DESCRIPTION
17914
17915 =back
17916
17917 =head2 SelfLoader - load functions only on demand
17918
17919 =over 4
17920
17921 =item SYNOPSIS
17922
17923 =item DESCRIPTION
17924
17925 =over 4
17926
17927 =item The __DATA__ token
17928
17929 =item SelfLoader autoloading
17930
17931 =item Autoloading and package lexicals
17932
17933 =item SelfLoader and AutoLoader
17934
17935 =item __DATA__, __END__, and the FOOBAR::DATA filehandle.
17936
17937 =item Classes and inherited methods.
17938
17939 =back
17940
17941 =item Multiple packages and fully qualified subroutine names
17942
17943 =back
17944
17945 =head2 Shell - run shell commands transparently within perl
17946
17947 =over 4
17948
17949 =item SYNOPSIS
17950
17951 =item DESCRIPTION
17952
17953 =over 4
17954
17955 =item OBJECT ORIENTED SYNTAX
17956
17957 =back
17958
17959 =item AUTHOR
17960
17961 =back
17962
17963 =head2 Socket, sockaddr_in, sockaddr_un, inet_aton, inet_ntoa - load the C
17964 socket.h defines and structure manipulators 
17965
17966 =over 4
17967
17968 =item SYNOPSIS
17969
17970 =item DESCRIPTION
17971
17972 inet_aton HOSTNAME, inet_ntoa IP_ADDRESS, INADDR_ANY, INADDR_BROADCAST,
17973 INADDR_LOOPBACK, INADDR_NONE, sockaddr_family SOCKADDR, sockaddr_in PORT,
17974 ADDRESS, sockaddr_in SOCKADDR_IN, pack_sockaddr_in PORT, IP_ADDRESS,
17975 unpack_sockaddr_in SOCKADDR_IN, sockaddr_un PATHNAME, sockaddr_un
17976 SOCKADDR_UN, pack_sockaddr_un PATH, unpack_sockaddr_un SOCKADDR_UN
17977
17978 =back
17979
17980 =head2 Storable - persistence for Perl data structures
17981
17982 =over 4
17983
17984 =item SYNOPSIS
17985
17986 =item DESCRIPTION
17987
17988 =item MEMORY STORE
17989
17990 =item ADVISORY LOCKING
17991
17992 =item SPEED
17993
17994 =item CANONICAL REPRESENTATION
17995
17996 =item FORWARD COMPATIBILITY
17997
17998 utf8 data, restricted hashes, files from future versions of Storable
17999
18000 =item ERROR REPORTING
18001
18002 =item WIZARDS ONLY
18003
18004 =over 4
18005
18006 =item Hooks
18007
18008 C<STORABLE_freeze> I<obj>, I<cloning>, C<STORABLE_thaw> I<obj>, I<cloning>,
18009 I<serialized>, ..
18010
18011 =item Predicates
18012
18013 C<Storable::last_op_in_netorder>, C<Storable::is_storing>,
18014 C<Storable::is_retrieving>
18015
18016 =item Recursion
18017
18018 =item Deep Cloning
18019
18020 =back
18021
18022 =item Storable magic
18023
18024 =item EXAMPLES
18025
18026 =item WARNING
18027
18028 =item BUGS
18029
18030 =over 4
18031
18032 =item 64 bit data in perl 5.6.0 and 5.6.1
18033
18034 =back
18035
18036 =item CREDITS
18037
18038 =item AUTHOR
18039
18040 =item SEE ALSO
18041
18042 =back
18043
18044 =head2 Switch - A switch statement for Perl
18045
18046 =over 4
18047
18048 =item VERSION
18049
18050 =item SYNOPSIS
18051
18052 =item BACKGROUND
18053
18054 =item DESCRIPTION
18055
18056 =over 4
18057
18058 =item Allowing fall-through
18059
18060 =item Automating fall-through
18061
18062 =item Alternative syntax
18063
18064 =item Higher-order Operations
18065
18066 =back
18067
18068 =item DEPENDENCIES
18069
18070 =item AUTHOR
18071
18072 =item BUGS
18073
18074 =item LIMITATION
18075
18076 =item COPYRIGHT
18077
18078 =back
18079
18080 =head2 Symbol - manipulate Perl symbols and their names
18081
18082 =over 4
18083
18084 =item SYNOPSIS
18085
18086 =item DESCRIPTION
18087
18088 =back
18089
18090 =head2 Sys::Hostname - Try every conceivable way to get hostname
18091
18092 =over 4
18093
18094 =item SYNOPSIS
18095
18096 =item DESCRIPTION
18097
18098 =item AUTHOR
18099
18100 =back
18101
18102 =head2 Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl
18103 interface to the UNIX syslog(3) calls
18104
18105 =over 4
18106
18107 =item SYNOPSIS
18108
18109 =item DESCRIPTION
18110
18111 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
18112 setlogmask $mask_priority, setlogsock $sock_type [$stream_location] (added
18113 in 5.004_02), closelog
18114
18115 =item EXAMPLES
18116
18117 =item SEE ALSO
18118
18119 =item AUTHOR
18120
18121 =back
18122
18123 =head2 Syslog::Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog -
18124 Perl interface to the UNIX syslog(3) calls
18125
18126 =over 4
18127
18128 =item SYNOPSIS
18129
18130 =item DESCRIPTION
18131
18132 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
18133 setlogmask $mask_priority, setlogsock $sock_type [$stream_location] (added
18134 in 5.004_02), closelog
18135
18136 =item EXAMPLES
18137
18138 =item SEE ALSO
18139
18140 =item AUTHOR
18141
18142 =back
18143
18144 =head2 Term::ANSIColor - Color screen output using ANSI escape sequences
18145
18146 =over 4
18147
18148 =item SYNOPSIS
18149
18150 =item DESCRIPTION
18151
18152 =item DIAGNOSTICS
18153
18154 Bad escape sequence %s, Bareword "%s" not allowed while "strict subs" in
18155 use, Invalid attribute name %s, Name "%s" used only once: possible typo, No
18156 comma allowed after filehandle, No name for escape sequence %s
18157
18158 =item ENVIRONMENT
18159
18160 ANSI_COLORS_DISABLED
18161
18162 =item RESTRICTIONS
18163
18164 =item NOTES
18165
18166 =item SEE ALSO
18167
18168 =item AUTHORS
18169
18170 =item LICENSE
18171
18172 =back
18173
18174 =head2 Term::Cap - Perl termcap interface
18175
18176 =over 4
18177
18178 =item SYNOPSIS
18179
18180 =item DESCRIPTION
18181
18182 =over 4
18183
18184 =item METHODS
18185
18186 =back
18187
18188 =back
18189
18190 B<Tgetent>, OSPEED, TERM
18191
18192 B<Tpad>, B<$string>, B<$cnt>, B<$FH>
18193
18194 B<Tputs>, B<$cap>, B<$cnt>, B<$FH>
18195
18196 B<Tgoto>, B<$cap>, B<$col>, B<$row>, B<$FH>
18197
18198 B<Trequire>
18199
18200 =over 4
18201
18202 =item EXAMPLES
18203
18204 =item COPYRIGHT AND LICENSE
18205
18206 =item AUTHOR
18207
18208 =item SEE ALSO
18209
18210 =back
18211
18212 =head2 Term::Complete - Perl word completion module
18213
18214 =over 4
18215
18216 =item SYNOPSIS
18217
18218 =item DESCRIPTION
18219
18220 E<lt>tabE<gt>, ^D, ^U, E<lt>delE<gt>, E<lt>bsE<gt>
18221
18222 =item DIAGNOSTICS
18223
18224 =item BUGS
18225
18226 =item AUTHOR
18227
18228 =back
18229
18230 =head2 Term::ReadLine - Perl interface to various C<readline> packages. If
18231 no real package is found, substitutes stubs instead of basic functions.
18232
18233 =over 4
18234
18235 =item SYNOPSIS
18236
18237 =item DESCRIPTION
18238
18239 =item Minimal set of supported functions
18240
18241 C<ReadLine>, C<new>, C<readline>, C<addhistory>, C<IN>, $C<OUT>,
18242 C<MinLine>, C<findConsole>, Attribs, C<Features>
18243
18244 =item Additional supported functions
18245
18246 C<tkRunning>, C<ornaments>, C<newTTY>
18247
18248 =item EXPORTS
18249
18250 =item ENVIRONMENT
18251
18252 =item CAVEATS
18253
18254 =back
18255
18256 =head2 Test - provides a simple framework for writing test scripts
18257
18258 =over 4
18259
18260 =item SYNOPSIS
18261
18262 =item DESCRIPTION
18263
18264 =over 4
18265
18266 =item Functions
18267
18268 B<plan>
18269
18270 =back
18271
18272 =back
18273
18274 B<_to_value>
18275
18276 B<ok>
18277
18278 =over 4
18279
18280 =item TEST TYPES
18281
18282 NORMAL TESTS, SKIPPED TESTS, TODO TESTS
18283
18284 =item ONFAIL
18285
18286 =item BUGS and CAVEATS
18287
18288 =item NOTE
18289
18290 =item SEE ALSO
18291
18292 =item AUTHOR
18293
18294 =back
18295
18296 =head2 Test::Builder - Backend for building test libraries
18297
18298 =over 4
18299
18300 =item SYNOPSIS
18301
18302 =item DESCRIPTION
18303
18304 =over 4
18305
18306 =item Construction
18307
18308 B<new>
18309
18310 =back
18311
18312 =back
18313
18314 =over 4
18315
18316 =item Setting up tests
18317
18318 B<exported_to>
18319
18320 =back
18321
18322 B<plan>
18323
18324 B<expected_tests>
18325
18326 B<no_plan>
18327
18328 B<skip_all>
18329
18330 =over 4
18331
18332 =item Running tests
18333
18334 B<ok>
18335
18336 =back
18337
18338 B<is_eq>, B<is_num>
18339
18340 B<isnt_eq>, B<isnt_num>
18341
18342 B<like>, B<unlike>
18343
18344 B<maybe_regex>
18345
18346 B<cmp_ok>
18347
18348 B<BAILOUT>
18349
18350 B<skip>
18351
18352 B<todo_skip>
18353
18354 B<skip_rest>
18355
18356 =over 4
18357
18358 =item Test style
18359
18360 B<level>
18361
18362 =back
18363
18364 B<use_numbers>
18365
18366 B<no_header>, B<no_ending>
18367
18368 =over 4
18369
18370 =item Output
18371
18372 B<diag>
18373
18374 =back
18375
18376 B<_print>
18377
18378 B<output>, B<failure_output>, B<todo_output>
18379
18380 =over 4
18381
18382 =item Test Status and Info
18383
18384 B<current_test>
18385
18386 =back
18387
18388 B<summary>
18389
18390 B<details>  I<UNIMPLEMENTED>, B<todo>
18391
18392 B<caller>
18393
18394 B<_sanity_check>
18395
18396 B<_whoa>
18397
18398 B<_my_exit>
18399
18400 =over 4
18401
18402 =item THREADS
18403
18404 =item EXAMPLES
18405
18406 =item SEE ALSO
18407
18408 =item AUTHORS
18409
18410 =item COPYRIGHT
18411
18412 =back
18413
18414 =head2 Test::Harness - run perl standard test scripts with statistics
18415
18416 =over 4
18417
18418 =item SYNOPSIS
18419
18420 =item DESCRIPTION
18421
18422 =over 4
18423
18424 =item The test script output
18425
18426 B<'1..M'>, B<'ok', 'not ok'.  Ok?>, B<test numbers>, B<test names>,
18427 B<Skipping tests>, B<Todo tests>, B<Bail out!>, B<Comments>, B<Anything
18428 else>
18429
18430 =item Taint mode
18431
18432 =item Configuration variables.
18433
18434 B<$Test::Harness::verbose>, B<$Test::Harness::switches>
18435
18436 =item Failure
18437
18438 B<Failed Test>, B<Stat>, B<Wstat>, B<Total>, B<Fail>, B<Failed>, B<List of
18439 Failed>
18440
18441 =item Functions
18442
18443 B<runtests>
18444
18445 =back
18446
18447 =back
18448
18449 B<_all_ok>
18450
18451 B<_globdir>
18452
18453 B<_run_all_tests>
18454
18455 B<_mk_leader>
18456
18457 B<_leader_width>
18458
18459 =over 4
18460
18461 =item EXPORT
18462
18463 =item DIAGNOSTICS
18464
18465 C<All tests successful.\nFiles=%d,  Tests=%d, %s>, C<FAILED tests
18466 %s\n\tFailed %d/%d tests, %.2f%% okay.>, C<Test returned status %d (wstat
18467 %d)>, C<Failed 1 test, %.2f%% okay. %s>, C<Failed %d/%d tests, %.2f%% okay.
18468 %s>, C<FAILED--Further testing stopped: %s>
18469
18470 =item ENVIRONMENT
18471
18472 C<HARNESS_ACTIVE>, C<HARNESS_COLUMNS>, C<HARNESS_COMPILE_TEST>,
18473 C<HARNESS_FILELEAK_IN_DIR>, C<HARNESS_IGNORE_EXITCODE>, C<HARNESS_NOTTY>,
18474 C<HARNESS_PERL_SWITCHES>, C<HARNESS_VERBOSE>
18475
18476 =item EXAMPLE
18477
18478 =item SEE ALSO
18479
18480 =item AUTHORS
18481
18482 =item TODO
18483
18484 =item BUGS
18485
18486 =back
18487
18488 =head2 Test::Harness::Assert - simple assert
18489
18490 =over 4
18491
18492 =item SYNOPSIS
18493
18494 =item DESCRIPTION
18495
18496 =over 4
18497
18498 =item Functions
18499
18500 B<assert>
18501
18502 =back
18503
18504 =back
18505
18506 =over 4
18507
18508 =item AUTHOR
18509
18510 =item SEE ALSO
18511
18512 =back
18513
18514 =head2 Test::Harness::Iterator - Internal Test::Harness Iterator
18515
18516 =over 4
18517
18518 =item SYNOPSIS
18519
18520 =item DESCRIPTION
18521
18522 =back
18523
18524 =head2 Test::Harness::Straps - detailed analysis of test results
18525
18526 =over 4
18527
18528 =item SYNOPSIS
18529
18530 =item DESCRIPTION
18531
18532 =over 4
18533
18534 =item Construction
18535
18536 B<new>
18537
18538 =back
18539
18540 =back
18541
18542 B<_init>
18543
18544 =over 4
18545
18546 =item Analysis
18547
18548 B<analyze>
18549
18550 =back
18551
18552 B<analyze_fh>
18553
18554 B<analyze_file>
18555
18556 B<_switches>
18557
18558 B<_INC2PERL5LIB>
18559
18560 B<_filtered_INC>
18561
18562 B<_restore_PERL5LIB>
18563
18564 =over 4
18565
18566 =item Parsing
18567
18568 B<_is_comment>
18569
18570 =back
18571
18572 B<_is_header>
18573
18574 B<_is_test>
18575
18576 B<_is_bail_out>
18577
18578 B<_reset_file_state>
18579
18580 =over 4
18581
18582 =item Results
18583
18584 B<_detailize>
18585
18586 =back
18587
18588 =over 4
18589
18590 =item EXAMPLES
18591
18592 =item AUTHOR
18593
18594 =item SEE ALSO
18595
18596 =back
18597
18598 =head2 Test::More - yet another framework for writing test scripts
18599
18600 =over 4
18601
18602 =item SYNOPSIS
18603
18604 =item DESCRIPTION
18605
18606 =over 4
18607
18608 =item I love it when a plan comes together
18609
18610 =back
18611
18612 =back
18613
18614 =over 4
18615
18616 =item Test names
18617
18618 =item I'm ok, you're not ok.
18619
18620 B<ok>
18621
18622 =back
18623
18624 B<is>, B<isnt>
18625
18626 B<like>
18627
18628 B<unlike>
18629
18630 B<cmp_ok>
18631
18632 B<can_ok>
18633
18634 B<isa_ok>
18635
18636 B<pass>, B<fail>
18637
18638 =over 4
18639
18640 =item Diagnostics
18641
18642 B<diag>
18643
18644 =back
18645
18646 =over 4
18647
18648 =item Module tests
18649
18650 B<use_ok>
18651
18652 =back
18653
18654 B<require_ok>
18655
18656 =over 4
18657
18658 =item Conditional tests
18659
18660 B<SKIP: BLOCK>
18661
18662 =back
18663
18664 B<TODO: BLOCK>, B<todo_skip>
18665
18666 When do I use SKIP vs. TODO?
18667
18668 =over 4
18669
18670 =item Comparison functions
18671
18672 B<is_deeply>
18673
18674 =back
18675
18676 B<eq_array>
18677
18678 B<eq_hash>
18679
18680 B<eq_set>
18681
18682 =over 4
18683
18684 =item Extending and Embedding Test::More
18685
18686 B<builder>
18687
18688 =back
18689
18690 =over 4
18691
18692 =item NOTES
18693
18694 =item BUGS and CAVEATS
18695
18696 Making your own ok(), The eq_* family has some caveats, Test::Harness
18697 upgrades
18698
18699 =item HISTORY
18700
18701 =item SEE ALSO
18702
18703 =item AUTHORS
18704
18705 =item COPYRIGHT
18706
18707 =back
18708
18709 =head2 Test::Simple - Basic utilities for writing tests.
18710
18711 =over 4
18712
18713 =item SYNOPSIS
18714
18715 =item DESCRIPTION
18716
18717 B<ok>
18718
18719 =back
18720
18721 =over 4
18722
18723 =item EXAMPLE
18724
18725 =item CAVEATS
18726
18727 =item NOTES
18728
18729 =item HISTORY
18730
18731 =item SEE ALSO
18732
18733 L<Test::More>, L<Test>, L<Test::Unit>, L<Test::Inline>, L<SelfTest>,
18734 L<Test::Harness>
18735
18736 =item AUTHORS
18737
18738 =item COPYRIGHT
18739
18740 =back
18741
18742 =head2 Test::Tutorial - A tutorial about writing really basic tests
18743
18744 =over 4
18745
18746 =item DESCRIPTION
18747
18748 =over 4
18749
18750 =item Nuts and bolts of testing.
18751
18752 =item Where to start?
18753
18754 =item Names
18755
18756 =item Test the manual
18757
18758 =item Sometimes the tests are wrong
18759
18760 =item Testing lots of values
18761
18762 =item Informative names
18763
18764 =item Skipping tests
18765
18766 =item Todo tests
18767
18768 =item Testing with taint mode.
18769
18770 =back
18771
18772 =item FOOTNOTES
18773
18774 =item AUTHORS
18775
18776 =item COPYRIGHT
18777
18778 =back
18779
18780 =head2 Text::Abbrev, abbrev - create an abbreviation table from a list
18781
18782 =over 4
18783
18784 =item SYNOPSIS
18785
18786 =item DESCRIPTION
18787
18788 =item EXAMPLE
18789
18790 =back
18791
18792 =head2 Text::Balanced - Extract delimited text sequences from strings.
18793
18794 =over 4
18795
18796 =item SYNOPSIS
18797
18798 =item DESCRIPTION
18799
18800 =over 4
18801
18802 =item General behaviour in list contexts
18803
18804 [0], [1], [2]
18805
18806 =item General behaviour in scalar and void contexts
18807
18808 =item A note about prefixes
18809
18810 =item C<extract_delimited>
18811
18812 =item C<extract_bracketed>
18813
18814 =item C<extract_tagged>
18815
18816 C<reject =E<gt> $listref>, C<ignore =E<gt> $listref>, C<fail =E<gt> $str>,
18817 [0], [1], [2], [3], [4], [5]
18818
18819 =item C<gen_extract_tagged>
18820
18821 =item C<extract_quotelike>
18822
18823 [0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10]
18824
18825 =item C<extract_quotelike> and "here documents"
18826
18827 [0], [1], [2], [3], [4], [5], [6], [7..10]
18828
18829 =item C<extract_codeblock>
18830
18831 =item C<extract_multiple>
18832
18833 =item C<gen_delimited_pat>
18834
18835 =back
18836
18837 =item DIAGNOSTICS
18838
18839  C<Did not find a suitable bracket: "%s">,  C<Did not find prefix: /%s/>, 
18840 C<Did not find opening bracket after prefix: "%s">,  C<No quotelike
18841 operator found after prefix: "%s">,  C<Unmatched closing bracket: "%c">, 
18842 C<Unmatched opening bracket(s): "%s">, C<Unmatched embedded quote (%s)>,
18843 C<Did not find closing delimiter to match '%s'>,  C<Mismatched closing
18844 bracket: expected "%c" but found "%s">,  C<No block delimiter found after
18845 quotelike "%s">, C<Did not find leading dereferencer>, C<Bad identifier
18846 after dereferencer>, C<Did not find expected opening bracket at %s>,
18847 C<Improperly nested codeblock at %s>,  C<Missing second block for quotelike
18848 "%s">, C<No match found for opening bracket>, C<Did not find opening tag:
18849 /%s/>, C<Unable to construct closing tag to match: /%s/>, C<Found invalid
18850 nested tag: %s>, C<Found unbalanced nested tag: %s>, C<Did not find closing
18851 tag>
18852
18853 =item AUTHOR
18854
18855 =item BUGS AND IRRITATIONS
18856
18857 =item COPYRIGHT
18858
18859 =back
18860
18861 =head2 Text::ParseWords - parse text into an array of tokens or array of
18862 arrays
18863
18864 =over 4
18865
18866 =item SYNOPSIS
18867
18868 =item DESCRIPTION
18869
18870 =item EXAMPLES
18871
18872 =item AUTHORS
18873
18874 =back
18875
18876 =head2 Text::Soundex - Implementation of the Soundex Algorithm as Described
18877 by Knuth
18878
18879 =over 4
18880
18881 =item SYNOPSIS
18882
18883 =item DESCRIPTION
18884
18885 =item EXAMPLES
18886
18887 =item LIMITATIONS
18888
18889 =item AUTHOR
18890
18891 =back
18892
18893 =head2 Text::Tabs -- expand and unexpand tabs per the unix expand(1) and
18894 unexpand(1)
18895
18896 =over 4
18897
18898 =item SYNOPSIS
18899
18900 =item DESCRIPTION
18901
18902 =item BUGS
18903
18904 =item AUTHOR
18905
18906 =back
18907
18908 =head2 Text::Wrap - line wrapping to form simple paragraphs
18909
18910 =over 4
18911
18912 =item SYNOPSIS 
18913
18914 =item DESCRIPTION
18915
18916 =item OVERRIDES
18917
18918 =item EXAMPLE
18919
18920 =item AUTHOR
18921
18922 =back
18923
18924 =head2 Thread - manipulate threads in Perl (for old code only)
18925
18926 =over 4
18927
18928 =item CAVEAT
18929
18930 =item SYNOPSIS
18931
18932 =item DESCRIPTION
18933
18934 =item FUNCTIONS
18935
18936 $thread = Thread->new(\&start_sub), $thread = Thread->new(\&start_sub,
18937 LIST), lock VARIABLE, async BLOCK;, Thread->self, cond_wait VARIABLE,
18938 cond_signal VARIABLE, cond_broadcast VARIABLE, yield
18939
18940 =item METHODS
18941
18942 join, eval, detach, equal, tid, flags, done
18943
18944 =item LIMITATIONS
18945
18946 =item SEE ALSO
18947
18948 =back
18949
18950 =head2 Thread::Queue - thread-safe queues (for old code only)
18951
18952 =over 4
18953
18954 =item CAVEAT
18955
18956 =item SYNOPSIS
18957
18958 =item DESCRIPTION
18959
18960 =item FUNCTIONS AND METHODS
18961
18962 new, enqueue LIST, dequeue, dequeue_nb, pending
18963
18964 =item SEE ALSO
18965
18966 =back
18967
18968 =head2 Thread::Semaphore - thread-safe semaphores (for old code only)
18969
18970 =over 4
18971
18972 =item CAVEAT
18973
18974 =item SYNOPSIS
18975
18976 =item DESCRIPTION
18977
18978 =item FUNCTIONS AND METHODS
18979
18980 new, new NUMBER, down, down NUMBER, up, up NUMBER
18981
18982 =back
18983
18984 =head2 Thread::Signal - Start a thread which runs signal handlers reliably
18985
18986 =over 4
18987
18988 =item SYNOPSIS
18989
18990 =item DESCRIPTION
18991
18992 =item BUGS
18993
18994 =back
18995
18996 =head2 Thread::Specific - thread-specific keys
18997
18998 =over 4
18999
19000 =item SYNOPSIS
19001
19002 =item DESCRIPTION
19003
19004 =back
19005
19006 =head2 Tie::Array - base class for tied arrays
19007
19008 =over 4
19009
19010 =item SYNOPSIS
19011
19012 =item DESCRIPTION
19013
19014 TIEARRAY classname, LIST, STORE this, index, value, FETCH this, index,
19015 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
19016 key, DELETE this, key, CLEAR this, DESTROY this, PUSH this, LIST, POP this,
19017 SHIFT this, UNSHIFT this, LIST, SPLICE this, offset, length, LIST
19018
19019 =item CAVEATS
19020
19021 =item AUTHOR
19022
19023 =back
19024
19025 =head2 Tie::File - Access the lines of a disk file via a Perl array
19026
19027 =over 4
19028
19029 =item SYNOPSIS
19030
19031 =item DESCRIPTION
19032
19033 =over 4
19034
19035 =item C<recsep>
19036
19037 =item C<autochomp>
19038
19039 =item C<mode>
19040
19041 =item C<memory>
19042
19043 =item C<dw_size>
19044
19045 =item Option Format
19046
19047 =back
19048
19049 =item Public Methods
19050
19051 =over 4
19052
19053 =item C<flock>
19054
19055 =item C<autochomp>
19056
19057 =item C<defer>, C<flush>, C<discard>, and C<autodefer>
19058
19059 =back
19060
19061 =item Tying to an already-opened filehandle
19062
19063 =item Deferred Writing
19064
19065 =over 4
19066
19067 =item Autodeferring
19068
19069 =back
19070
19071 =item CAVEATS
19072
19073 =item SUBCLASSING
19074
19075 =item WHAT ABOUT C<DB_File>?
19076
19077 =item AUTHOR
19078
19079 =item LICENSE
19080
19081 =item WARRANTY
19082
19083 =item THANKS
19084
19085 =item TODO
19086
19087 =back
19088
19089 =head2 Tie::Handle, Tie::StdHandle  - base class definitions for tied
19090 handles
19091
19092 =over 4
19093
19094 =item SYNOPSIS
19095
19096 =item DESCRIPTION
19097
19098 TIEHANDLE classname, LIST, WRITE this, scalar, length, offset, PRINT this,
19099 LIST, PRINTF this, format, LIST, READ this, scalar, length, offset,
19100 READLINE this, GETC this, CLOSE this, OPEN this, filename, BINMODE this,
19101 EOF this, TELL this, SEEK this, offset, whence, DESTROY this
19102
19103 =item MORE INFORMATION
19104
19105 =item COMPATIBILITY
19106
19107 =back
19108
19109 =head2 Tie::Hash, Tie::StdHash, Tie::ExtraHash - base class definitions for
19110 tied hashes
19111
19112 =over 4
19113
19114 =item SYNOPSIS
19115
19116 =item DESCRIPTION
19117
19118 TIEHASH classname, LIST, STORE this, key, value, FETCH this, key, FIRSTKEY
19119 this, NEXTKEY this, lastkey, EXISTS this, key, DELETE this, key, CLEAR this
19120
19121 =item Inheriting from B<Tie::StdHash>
19122
19123 =item Inheriting from B<Tie::ExtraHash>
19124
19125 =item C<UNTIE> and C<DESTROY>
19126
19127 =item MORE INFORMATION
19128
19129 =back
19130
19131 =head2 Tie::Memoize - add data to hash when needed
19132
19133 =over 4
19134
19135 =item SYNOPSIS
19136
19137 =item DESCRIPTION
19138
19139 =item Inheriting from B<Tie::Memoize>
19140
19141 =item EXAMPLE
19142
19143 =item BUGS
19144
19145 =item AUTHOR
19146
19147 =back
19148
19149 =head2 Tie::RefHash - use references as hash keys
19150
19151 =over 4
19152
19153 =item SYNOPSIS
19154
19155 =item DESCRIPTION
19156
19157 =item EXAMPLE
19158
19159 =item AUTHOR
19160
19161 =item VERSION
19162
19163 =item SEE ALSO
19164
19165 =back
19166
19167 =head2 Tie::Scalar, Tie::StdScalar - base class definitions for tied
19168 scalars
19169
19170 =over 4
19171
19172 =item SYNOPSIS
19173
19174 =item DESCRIPTION
19175
19176 TIESCALAR classname, LIST, FETCH this, STORE this, value, DESTROY this
19177
19178 =item MORE INFORMATION
19179
19180 =back
19181
19182 =head2 Tie::SubstrHash - Fixed-table-size, fixed-key-length hashing
19183
19184 =over 4
19185
19186 =item SYNOPSIS
19187
19188 =item DESCRIPTION
19189
19190 =item CAVEATS
19191
19192 =back
19193
19194 =head2 Time::HiRes - High resolution alarm, sleep, gettimeofday, interval
19195 timers
19196
19197 =over 4
19198
19199 =item SYNOPSIS
19200
19201 =item DESCRIPTION
19202
19203 gettimeofday (), usleep ( $useconds ), ualarm ( $useconds [,
19204 $interval_useconds ] ), tv_interval, time (), sleep ( $floating_seconds ),
19205 alarm ( $floating_seconds [, $interval_floating_seconds ] ), setitimer,
19206 getitimer ( $which )
19207
19208 =item EXAMPLES
19209
19210 =item C API
19211
19212 =item CAVEATS
19213
19214 =item AUTHORS
19215
19216 =item REVISION
19217
19218 =item COPYRIGHT
19219
19220 =back
19221
19222 =head2 Time::Local - efficiently compute time from local and GMT time
19223
19224 =over 4
19225
19226 =item SYNOPSIS
19227
19228 =item DESCRIPTION
19229
19230 =item IMPLEMENTATION
19231
19232 =item BUGS
19233
19234 =back
19235
19236 =head2 Time::gmtime - by-name interface to Perl's built-in gmtime()
19237 function
19238
19239 =over 4
19240
19241 =item SYNOPSIS
19242
19243 =item DESCRIPTION
19244
19245 =item NOTE
19246
19247 =item AUTHOR
19248
19249 =back
19250
19251 =head2 Time::localtime - by-name interface to Perl's built-in localtime()
19252 function
19253
19254 =over 4
19255
19256 =item SYNOPSIS
19257
19258 =item DESCRIPTION
19259
19260 =item NOTE
19261
19262 =item AUTHOR
19263
19264 =back
19265
19266 =head2 Time::tm - internal object used by Time::gmtime and Time::localtime
19267
19268 =over 4
19269
19270 =item SYNOPSIS
19271
19272 =item DESCRIPTION
19273
19274 =item AUTHOR
19275
19276 =back
19277
19278 =head2 UNIVERSAL - base class for ALL classes (blessed references)
19279
19280 =over 4
19281
19282 =item SYNOPSIS
19283
19284 =item DESCRIPTION
19285
19286 $obj->isa( TYPE ), CLASS->isa( TYPE ), isa( VAL, TYPE ), $obj->can( METHOD
19287 ), CLASS->can( METHOD ), can( VAL, METHOD ), VERSION ( [ REQUIRE ] )
19288
19289 =back
19290
19291 =head2 Unicode::Collate - Unicode Collation Algorithm
19292
19293 =over 4
19294
19295 =item SYNOPSIS
19296
19297 =item DESCRIPTION
19298
19299 =over 4
19300
19301 =item Constructor and Tailoring
19302
19303 alternate, backwards, entry, ignoreName, ignoreChar, level, normalization,
19304 overrideCJK, overrideHangul, preprocess, rearrange, table, undefName,
19305 undefChar, katakana_before_hiragana, upper_before_lower
19306
19307 =item Methods for Collation
19308
19309 C<@sorted = $Collator-E<gt>sort(@not_sorted)>, C<$result =
19310 $Collator-E<gt>cmp($a, $b)>, C<$result = $Collator-E<gt>eq($a, $b)>,
19311 C<$result = $Collator-E<gt>ne($a, $b)>, C<$result = $Collator-E<gt>lt($a,
19312 $b)>, C<$result = $Collator-E<gt>le($a, $b)>, C<$result =
19313 $Collator-E<gt>gt($a, $b)>, C<$result = $Collator-E<gt>ge($a, $b)>,
19314 C<$sortKey = $Collator-E<gt>getSortKey($string)>, C<$sortKeyForm =
19315 $Collator-E<gt>viewSortKey($string)>, C<$position =
19316 $Collator-E<gt>index($string, $substring)>, C<($position, $length) =
19317 $Collator-E<gt>index($string, $substring)>
19318
19319 =item Other Methods
19320
19321 UCA_Version, Base_Unicode_Version
19322
19323 =item EXPORT
19324
19325 =item TODO
19326
19327 =item CAVEAT
19328
19329 =item BUGS
19330
19331 =back
19332
19333 =item AUTHOR
19334
19335 =item SEE ALSO
19336
19337 http://www.unicode.org/unicode/reports/tr10/,
19338 http://www.unicode.org/unicode/reports/tr10/allkeys.txt,
19339 http://www.unicode.org/unicode/reports/tr15/,
19340 http://www.unicode.org/unicode/reports/tr18, L<Unicode::Normalize>
19341
19342 =back
19343
19344 =head2 Unicode::Normalize - Unicode Normalization Forms
19345
19346 =over 4
19347
19348 =item SYNOPSIS
19349
19350 =item DESCRIPTION
19351
19352 =over 4
19353
19354 =item Normalization Forms
19355
19356 C<$NFD_string = NFD($string)>, C<$NFC_string = NFC($string)>,
19357 C<$NFKD_string = NFKD($string)>, C<$NFKC_string = NFKC($string)>,
19358 C<$normalized_string = normalize($form_name, $string)>
19359
19360 =item Decomposition and Composition
19361
19362 C<$decomposed_string = decompose($string)>, C<$decomposed_string =
19363 decompose($string, $useCompatMapping)>, C<$reordered_string  =
19364 reorder($string)>, C<$composed_string   = compose($string)>
19365
19366 =item Quick Check
19367
19368 C<$result = checkNFD($string)>, C<$result = checkNFC($string)>, C<$result =
19369 checkNFKD($string)>, C<$result = checkNFKC($string)>, C<$result =
19370 check($form_name, $string)>
19371
19372 =item Character Data
19373
19374 C<$canonical_decomposed = getCanon($codepoint)>,
19375 C<$compatibility_decomposed = getCompat($codepoint)>,
19376 C<$codepoint_composite = getComposite($codepoint_here, $codepoint_next)>,
19377 C<$combining_class = getCombinClass($codepoint)>, C<$is_exclusion =
19378 isExclusion($codepoint)>, C<$is_singleton = isSingleton($codepoint)>,
19379 C<$is_non_startar_decomposition = isNonStDecomp($codepoint)>,
19380 C<$may_be_composed_with_prev_char = isComp2nd($codepoint)>
19381
19382 =item EXPORT
19383
19384 =back
19385
19386 =item AUTHOR
19387
19388 =item SEE ALSO
19389
19390 http://www.unicode.org/unicode/reports/tr15/,
19391 http://www.unicode.org/Public/UNIDATA/DerivedNormalizationProps.txt
19392
19393 =back
19394
19395 =head2 Unicode::UCD - Unicode character database
19396
19397 =over 4
19398
19399 =item SYNOPSIS
19400
19401 =item DESCRIPTION
19402
19403 =back
19404
19405 =over 4
19406
19407 =item charinfo
19408
19409 =back
19410
19411 =over 4
19412
19413 =item charblock
19414
19415 =back
19416
19417 =over 4
19418
19419 =item charscript
19420
19421 =back
19422
19423 =over 4
19424
19425 =item charblocks
19426
19427 =back
19428
19429 =over 4
19430
19431 =item charscripts
19432
19433 =back
19434
19435 =over 4
19436
19437 =item Blocks versus Scripts
19438
19439 =item Matching Scripts and Blocks
19440
19441 =item Code Point Arguments
19442
19443 =item charinrange
19444
19445 =back
19446
19447 =over 4
19448
19449 =item compexcl
19450
19451 =back
19452
19453 =over 4
19454
19455 =item casefold
19456
19457 =back
19458
19459 =over 4
19460
19461 =item casespec
19462
19463 =back
19464
19465 =over 4
19466
19467 =item Unicode::UCD::UnicodeVersion
19468
19469 =back
19470
19471 =over 4
19472
19473 =item Implementation Note
19474
19475 =back
19476
19477 =over 4
19478
19479 =item BUGS
19480
19481 =item AUTHOR
19482
19483 =back
19484
19485 =head2 User::grent - by-name interface to Perl's built-in getgr*()
19486 functions
19487
19488 =over 4
19489
19490 =item SYNOPSIS
19491
19492 =item DESCRIPTION
19493
19494 =item NOTE
19495
19496 =item AUTHOR
19497
19498 =back
19499
19500 =head2 User::pwent - by-name interface to Perl's built-in getpw*()
19501 functions
19502
19503 =over 4
19504
19505 =item SYNOPSIS
19506
19507 =item DESCRIPTION
19508
19509 =over 4
19510
19511 =item System Specifics
19512
19513 =back
19514
19515 =item NOTE
19516
19517 =item AUTHOR
19518
19519 =item HISTORY
19520
19521 March 18th, 2000
19522
19523 =back
19524
19525 =head2 Win32 - Interfaces to some Win32 API Functions
19526
19527 =over 4
19528
19529 =item DESCRIPTION
19530
19531 =over 4
19532
19533 =item Alphabetical Listing of Win32 Functions
19534
19535 Win32::AbortSystemShutdown(MACHINE), Win32::BuildNumber(),
19536 Win32::CopyFile(FROM, TO, OVERWRITE), Win32::DomainName(),
19537 Win32::ExpandEnvironmentStrings(STRING), Win32::FormatMessage(ERRORCODE),
19538 Win32::FsType(), Win32::FreeLibrary(HANDLE), Win32::GetArchName(),
19539 Win32::GetChipName(), Win32::GetCwd(), Win32::GetFullPathName(FILENAME),
19540 Win32::GetLastError(), Win32::GetLongPathName(PATHNAME),
19541 Win32::GetNextAvailDrive(), Win32::GetOSVersion(), Win32::GetOSName(),
19542 Win32::GetShortPathName(PATHNAME), Win32::GetProcAddress(INSTANCE,
19543 PROCNAME), Win32::GetTickCount(), Win32::InitiateSystemShutdown,
19544 Win32::IsWinNT(), Win32::IsWin95(), Win32::LoadLibrary(LIBNAME),
19545 Win32::LoginName(), Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID,
19546 SIDTYPE), Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE),
19547 Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]]), Win32::NodeName(),
19548 Win32::RegisterServer(LIBRARYNAME), Win32::SetChildShowWindow(SHOWWINDOW),
19549 Win32::SetCwd(NEWDIRECTORY), Win32::SetLastError(ERROR),
19550 Win32::Sleep(TIME), Win32::Spawn(COMMAND, ARGS, PID),
19551 Win32::UnregisterServer(LIBRARYNAME)
19552
19553 =back
19554
19555 =back
19556
19557 =head2 XS::APItest - Test the perl C API
19558
19559 =over 4
19560
19561 =item SYNOPSIS
19562
19563 =item ABSTRACT
19564
19565 =item DESCRIPTION
19566
19567 =over 4
19568
19569 =item EXPORT
19570
19571 B<print_double>, B<print_long_double>, B<have_long_double>, B<print_nv>,
19572 B<print_iv>, B<print_uv>, B<print_int>, B<print_long>, B<print_float>
19573
19574 =back
19575
19576 =item SEE ALSO
19577
19578 =item AUTHORS
19579
19580 =item COPYRIGHT AND LICENSE
19581
19582 =back
19583
19584 =head2 XS::Typemap - module to test the XS typemaps distributed with perl
19585
19586 =over 4
19587
19588 =item SYNOPSIS
19589
19590 =item DESCRIPTION
19591
19592 =back
19593
19594 =over 4
19595
19596 =item NOTES
19597
19598 =item AUTHOR
19599
19600 =back
19601
19602 =head2 XSLoader - Dynamically load C libraries into Perl code
19603
19604 =over 4
19605
19606 =item SYNOPSIS
19607
19608 =item DESCRIPTION
19609
19610 =item AUTHOR
19611
19612 =back
19613
19614 =head1 AUXILIARY DOCUMENTATION
19615
19616 Here should be listed all the extra programs' documentation, but they
19617 don't all have manual pages yet:
19618
19619 =over 4
19620
19621 =item a2p
19622
19623 =item s2p
19624
19625 =item find2perl
19626
19627 =item h2ph
19628
19629 =item c2ph
19630
19631 =item h2xs
19632
19633 =item xsubpp
19634
19635 =item pod2man
19636
19637 =item wrapsuid
19638
19639 =back
19640
19641 =head1 AUTHOR
19642
19643 Larry Wall <F<larry@wall.org>>, with the help of oodles
19644 of other folks.
19645