19c1be2fcd106d0fb23e47e76c83a0e8a3521d57
[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 Platform-Specific
33
34 =back
35
36 =item DESCRIPTION
37
38 =item AVAILABILITY
39
40 =item ENVIRONMENT
41
42 =item AUTHOR
43
44 =item FILES
45
46 =item SEE ALSO
47
48 =item DIAGNOSTICS
49
50 =item BUGS
51
52 =item NOTES
53
54 =back
55
56 =head2 perlintro -- a brief introduction and overview of Perl
57
58 =over 4
59
60 =item DESCRIPTION
61
62 =over 4
63
64 =item What is Perl?
65
66 =item Running Perl programs
67
68 =item Basic syntax overview
69
70 =item Perl variable types
71
72 Scalars, Arrays, Hashes
73
74 =item Variable scoping
75
76 =item Conditional and looping constructs
77
78 if, while, for, foreach
79
80 =item Builtin operators and functions
81
82 Arithmetic, Numeric comparison, String comparison, Boolean logic,
83 Miscellaneous
84
85 =item Files and I/O
86
87 =item Regular expressions
88
89 Simple matching, Simple substitution, More complex regular expressions,
90 Parentheses for capturing, Other regexp features
91
92 =item Writing subroutines
93
94 =item OO Perl
95
96 =item Using Perl modules
97
98 =back
99
100 =item AUTHOR
101
102 =back
103
104 =head2 perlfaq - frequently asked questions about Perl ($Date: 2002/03/11
105 21:32:23 $)
106
107 =over 4
108
109 =item DESCRIPTION
110
111 =over 4
112
113 =item perlfaq: Structural overview of the FAQ.
114
115 =item L<perlfaq1>: General Questions About Perl
116
117 =item L<perlfaq2>: Obtaining and Learning about Perl
118
119 =item L<perlfaq3>: Programming Tools
120
121 =item L<perlfaq4>: Data Manipulation
122
123 =item L<perlfaq5>: Files and Formats
124
125 =item L<perlfaq6>: Regular Expressions
126
127 =item L<perlfaq7>: General Perl Language Issues
128
129 =item L<perlfaq8>: System Interaction
130
131 =item L<perlfaq9>: Networking
132
133 =back
134
135 =item About the perlfaq documents
136
137 =over 4
138
139 =item Where to get the perlfaq
140
141 =item How to contribute to the perlfaq
142
143 =item What will happen if you mail your Perl programming problems to the
144 authors
145
146 =back
147
148 =item Credits
149
150 =item Author and Copyright Information
151
152 =over 4
153
154 =item Bundled Distributions
155
156 =item Disclaimer
157
158 =back
159
160 =item Changes
161
162 1/November/2000, 23/May/99, 13/April/99, 7/January/99, 22/June/98,
163 24/April/97, 23/April/97, 25/March/97, 18/March/97, 17/March/97 Version,
164 Initial Release: 11/March/97
165
166 =back
167
168 =head2 perlbook - Perl book information
169
170 =over 4
171
172 =item DESCRIPTION
173
174 =back
175
176 =head2 perlsyn - Perl syntax
177
178 =over 4
179
180 =item DESCRIPTION
181
182 =over 4
183
184 =item Declarations
185
186 =item Simple statements
187
188 =item Compound statements
189
190 =item Loop Control
191
192 =item For Loops
193
194 =item Foreach Loops
195
196 =item Basic BLOCKs and Switch Statements
197
198 =item Goto
199
200 =item PODs: Embedded Documentation
201
202 =item Plain Old Comments (Not!)
203
204 =back
205
206 =back
207
208 =head2 perldata - Perl data types
209
210 =over 4
211
212 =item DESCRIPTION
213
214 =over 4
215
216 =item Variable names
217
218 =item Context
219
220 =item Scalar values
221
222 =item Scalar value constructors
223
224 =item List value constructors
225
226 =item Slices
227
228 =item Typeglobs and Filehandles
229
230 =back
231
232 =item SEE ALSO
233
234 =back
235
236 =head2 perlop - Perl operators and precedence
237
238 =over 4
239
240 =item SYNOPSIS
241
242 =item DESCRIPTION
243
244 =over 4
245
246 =item Terms and List Operators (Leftward)
247
248 =item The Arrow Operator
249
250 =item Auto-increment and Auto-decrement
251
252 =item Exponentiation
253
254 =item Symbolic Unary Operators
255
256 =item Binding Operators
257
258 =item Multiplicative Operators
259
260 =item Additive Operators
261
262 =item Shift Operators
263
264 =item Named Unary Operators
265
266 =item Relational Operators
267
268 =item Equality Operators
269
270 =item Bitwise And
271
272 =item Bitwise Or and Exclusive Or
273
274 =item C-style Logical And
275
276 =item C-style Logical Or
277
278 =item Range Operators
279
280 =item Conditional Operator
281
282 =item Assignment Operators
283
284 =item Comma Operator
285
286 =item List Operators (Rightward)
287
288 =item Logical Not
289
290 =item Logical And
291
292 =item Logical or and Exclusive Or
293
294 =item C Operators Missing From Perl
295
296 unary &, unary *, (TYPE)
297
298 =item Quote and Quote-like Operators
299
300 =item Regexp Quote-Like Operators
301
302 ?PATTERN?, m/PATTERN/cgimosx, /PATTERN/cgimosx, q/STRING/, C<'STRING'>,
303 qq/STRING/, "STRING", qr/STRING/imosx, qx/STRING/, `STRING`, qw/STRING/,
304 s/PATTERN/REPLACEMENT/egimosx, tr/SEARCHLIST/REPLACEMENTLIST/cds,
305 y/SEARCHLIST/REPLACEMENTLIST/cds, <<EOF
306
307 =item Gory details of parsing quoted constructs
308
309 Finding the end, Removal of backslashes before delimiters, Interpolation,
310 C<<<'EOF'>, C<m''>, C<s'''>, C<tr///>, C<y///>, C<''>, C<q//>, C<"">,
311 C<``>, C<qq//>, C<qx//>, C<< <file*glob> >>, C<?RE?>, C</RE/>, C<m/RE/>,
312 C<s/RE/foo/>,, Interpolation of regular expressions, Optimization of
313 regular expressions
314
315 =item I/O Operators
316
317 =item Constant Folding
318
319 =item Bitwise String Operators
320
321 =item Integer Arithmetic
322
323 =item Floating-point Arithmetic
324
325 =item Bigger Numbers
326
327 =back
328
329 =back
330
331 =head2 perlsub - Perl subroutines
332
333 =over 4
334
335 =item SYNOPSIS
336
337 =item DESCRIPTION
338
339 =over 4
340
341 =item Private Variables via my()
342
343 =item Persistent Private Variables
344
345 =item Temporary Values via local()
346
347 =item Lvalue subroutines
348
349 =item Passing Symbol Table Entries (typeglobs)
350
351 =item When to Still Use local()
352
353 =item Pass by Reference
354
355 =item Prototypes
356
357 =item Constant Functions
358
359 =item Overriding Built-in Functions
360
361 =item Autoloading
362
363 =item Subroutine Attributes
364
365 =back
366
367 =item SEE ALSO
368
369 =back
370
371 =head2 perlfunc - Perl builtin functions
372
373 =over 4
374
375 =item DESCRIPTION
376
377 =over 4
378
379 =item Perl Functions by Category
380
381 Functions for SCALARs or strings, Regular expressions and pattern matching,
382 Numeric functions, Functions for real @ARRAYs, Functions for list data,
383 Functions for real %HASHes, Input and output functions, Functions for fixed
384 length data or records, Functions for filehandles, files, or directories,
385 Keywords related to the control flow of your perl program, Keywords related
386 to scoping, Miscellaneous functions, Functions for processes and process
387 groups, Keywords related to perl modules, Keywords related to classes and
388 object-orientedness, Low-level socket functions, System V interprocess
389 communication functions, Fetching user and group info, Fetching network
390 info, Time-related functions, Functions new in perl5, Functions obsoleted
391 in perl5
392
393 =item Portability
394
395 =item Alphabetical Listing of Perl Functions
396
397 I<-X> FILEHANDLE, I<-X> EXPR, I<-X>, abs VALUE, abs, accept
398 NEWSOCKET,GENERICSOCKET, alarm SECONDS, alarm, atan2 Y,X, bind SOCKET,NAME,
399 binmode FILEHANDLE, DISCIPLINE, binmode FILEHANDLE, bless REF,CLASSNAME,
400 bless REF, caller EXPR, caller, chdir EXPR, chmod LIST, chomp VARIABLE,
401 chomp( LIST ), chomp, chop VARIABLE, chop( LIST ), chop, chown LIST, chr
402 NUMBER, chr, chroot FILENAME, chroot, close FILEHANDLE, close, closedir
403 DIRHANDLE, connect SOCKET,NAME, continue BLOCK, cos EXPR, cos, crypt
404 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MASK, defined EXPR,
405 defined, delete EXPR, die LIST, do BLOCK, do SUBROUTINE(LIST), do EXPR,
406 dump LABEL, dump, each HASH, eof FILEHANDLE, eof (), eof, eval EXPR, eval
407 BLOCK, exec LIST, exec PROGRAM LIST, exists EXPR, exit EXPR, exp EXPR, exp,
408 fcntl FILEHANDLE,FUNCTION,SCALAR, fileno FILEHANDLE, flock
409 FILEHANDLE,OPERATION, fork, format, formline PICTURE,LIST, getc FILEHANDLE,
410 getc, getlogin, getpeername SOCKET, getpgrp PID, getppid, getpriority
411 WHICH,WHO, getpwnam NAME, getgrnam NAME, gethostbyname NAME, getnetbyname
412 NAME, getprotobyname NAME, getpwuid UID, getgrgid GID, getservbyname
413 NAME,PROTO, gethostbyaddr ADDR,ADDRTYPE, getnetbyaddr ADDR,ADDRTYPE,
414 getprotobynumber NUMBER, getservbyport PORT,PROTO, getpwent, getgrent,
415 gethostent, getnetent, getprotoent, getservent, setpwent, setgrent,
416 sethostent STAYOPEN, setnetent STAYOPEN, setprotoent STAYOPEN, setservent
417 STAYOPEN, endpwent, endgrent, endhostent, endnetent, endprotoent,
418 endservent, getsockname SOCKET, getsockopt SOCKET,LEVEL,OPTNAME, glob EXPR,
419 glob, gmtime EXPR, goto LABEL, goto EXPR, goto &NAME, grep BLOCK LIST, grep
420 EXPR,LIST, hex EXPR, hex, import, index STR,SUBSTR,POSITION, index
421 STR,SUBSTR, int EXPR, int, ioctl FILEHANDLE,FUNCTION,SCALAR, join
422 EXPR,LIST, keys HASH, kill SIGNAL, LIST, last LABEL, last, lc EXPR, lc,
423 lcfirst EXPR, lcfirst, length EXPR, length, link OLDFILE,NEWFILE, listen
424 SOCKET,QUEUESIZE, local EXPR, localtime EXPR, lock THING, log EXPR, log,
425 lstat EXPR, lstat, m//, map BLOCK LIST, map EXPR,LIST, mkdir FILENAME,MASK,
426 mkdir FILENAME, msgctl ID,CMD,ARG, msgget KEY,FLAGS, msgrcv
427 ID,VAR,SIZE,TYPE,FLAGS, msgsnd ID,MSG,FLAGS, my EXPR, my EXPR : ATTRIBUTES,
428 next LABEL, next, no Module LIST, oct EXPR, oct, open FILEHANDLE,EXPR, open
429 FILEHANDLE,MODE,EXPR, open FILEHANDLE,MODE,EXPR,LIST, open
430 FILEHANDLE,MODE,REFERENCE, open FILEHANDLE, opendir DIRHANDLE,EXPR, ord
431 EXPR, ord, our EXPR, our EXPR : ATTRIBUTES, pack TEMPLATE,LIST, package
432 NAMESPACE, package, pipe READHANDLE,WRITEHANDLE, pop ARRAY, pop, pos
433 SCALAR, pos, print FILEHANDLE LIST, print LIST, print, printf FILEHANDLE
434 FORMAT, LIST, printf FORMAT, LIST, prototype FUNCTION, push ARRAY,LIST,
435 q/STRING/, qq/STRING/, qr/STRING/, qx/STRING/, qw/STRING/, quotemeta EXPR,
436 quotemeta, rand EXPR, rand, read FILEHANDLE,SCALAR,LENGTH,OFFSET, read
437 FILEHANDLE,SCALAR,LENGTH, readdir DIRHANDLE, readline EXPR, readlink EXPR,
438 readlink, readpipe EXPR, recv SOCKET,SCALAR,LENGTH,FLAGS, redo LABEL, redo,
439 ref EXPR, ref, rename OLDNAME,NEWNAME, require VERSION, require EXPR,
440 require, reset EXPR, reset, return EXPR, return, reverse LIST, rewinddir
441 DIRHANDLE, rindex STR,SUBSTR,POSITION, rindex STR,SUBSTR, rmdir FILENAME,
442 rmdir, s///, scalar EXPR, seek FILEHANDLE,POSITION,WHENCE, seekdir
443 DIRHANDLE,POS, select FILEHANDLE, select, select RBITS,WBITS,EBITS,TIMEOUT,
444 semctl ID,SEMNUM,CMD,ARG, semget KEY,NSEMS,FLAGS, semop KEY,OPSTRING, send
445 SOCKET,MSG,FLAGS,TO, send SOCKET,MSG,FLAGS, setpgrp PID,PGRP, setpriority
446 WHICH,WHO,PRIORITY, setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL, shift ARRAY,
447 shift, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS, shmread ID,VAR,POS,SIZE,
448 shmwrite ID,STRING,POS,SIZE, shutdown SOCKET,HOW, sin EXPR, sin, sleep
449 EXPR, sleep, sockatmark SOCKET, socket SOCKET,DOMAIN,TYPE,PROTOCOL,
450 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, sort SUBNAME LIST, sort
451 BLOCK LIST, sort LIST, splice ARRAY,OFFSET,LENGTH,LIST, splice
452 ARRAY,OFFSET,LENGTH, splice ARRAY,OFFSET, splice ARRAY, split
453 /PATTERN/,EXPR,LIMIT, split /PATTERN/,EXPR, split /PATTERN/, split, sprintf
454 FORMAT, LIST, sqrt EXPR, sqrt, srand EXPR, srand, stat FILEHANDLE, stat
455 EXPR, stat, study SCALAR, study, sub BLOCK, sub NAME, sub NAME BLOCK,
456 substr EXPR,OFFSET,LENGTH,REPLACEMENT, substr EXPR,OFFSET,LENGTH, substr
457 EXPR,OFFSET, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
458 FILEHANDLE,FILENAME,MODE, sysopen FILEHANDLE,FILENAME,MODE,PERMS, sysread
459 FILEHANDLE,SCALAR,LENGTH,OFFSET, sysread FILEHANDLE,SCALAR,LENGTH, sysseek
460 FILEHANDLE,POSITION,WHENCE, system LIST, system PROGRAM LIST, syswrite
461 FILEHANDLE,SCALAR,LENGTH,OFFSET, syswrite FILEHANDLE,SCALAR,LENGTH,
462 syswrite FILEHANDLE,SCALAR, tell FILEHANDLE, tell, telldir DIRHANDLE, tie
463 VARIABLE,CLASSNAME,LIST, tied VARIABLE, time, times, tr///, truncate
464 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, uc EXPR, uc, ucfirst EXPR,
465 ucfirst, umask EXPR, umask, undef EXPR, undef, unlink LIST, unlink, unpack
466 TEMPLATE,EXPR, untie VARIABLE, unshift ARRAY,LIST, use Module VERSION LIST,
467 use Module VERSION, use Module LIST, use Module, use VERSION, utime LIST,
468 values HASH, vec EXPR,OFFSET,BITS, wait, waitpid PID,FLAGS, wantarray, warn
469 LIST, write FILEHANDLE, write EXPR, write, y///
470
471 =back
472
473 =back
474
475 =head2 perlreftut - Mark's very short tutorial about references
476
477 =over 4
478
479 =item DESCRIPTION
480
481 =item Who Needs Complicated Data Structures?
482
483 =item The Solution
484
485 =item Syntax
486
487 =over 4
488
489 =item Making References
490
491 =item Using References
492
493 =back
494
495 =item An Example
496
497 =item Arrow Rule
498
499 =item Solution
500
501 =item The Rest
502
503 =item Summary
504
505 =item Credits
506
507 =over 4
508
509 =item Distribution Conditions
510
511 =back
512
513 =back
514
515 =head2 perldsc - Perl Data Structures Cookbook
516
517 =over 4
518
519 =item DESCRIPTION
520
521 arrays of arrays, hashes of arrays, arrays of hashes, hashes of hashes,
522 more elaborate constructs
523
524 =item REFERENCES
525
526 =item COMMON MISTAKES
527
528 =item CAVEAT ON PRECEDENCE
529
530 =item WHY YOU SHOULD ALWAYS C<use strict>
531
532 =item DEBUGGING
533
534 =item CODE EXAMPLES
535
536 =item ARRAYS OF ARRAYS
537
538 =over 4
539
540 =item Declaration of an ARRAY OF ARRAYS
541
542 =item Generation of an ARRAY OF ARRAYS
543
544 =item Access and Printing of an ARRAY OF ARRAYS
545
546 =back
547
548 =item HASHES OF ARRAYS
549
550 =over 4
551
552 =item Declaration of a HASH OF ARRAYS
553
554 =item Generation of a HASH OF ARRAYS
555
556 =item Access and Printing of a HASH OF ARRAYS
557
558 =back
559
560 =item ARRAYS OF HASHES
561
562 =over 4
563
564 =item Declaration of an ARRAY OF HASHES
565
566 =item Generation of an ARRAY OF HASHES
567
568 =item Access and Printing of an ARRAY OF HASHES
569
570 =back
571
572 =item HASHES OF HASHES
573
574 =over 4
575
576 =item Declaration of a HASH OF HASHES
577
578 =item Generation of a HASH OF HASHES
579
580 =item Access and Printing of a HASH OF HASHES
581
582 =back
583
584 =item MORE ELABORATE RECORDS
585
586 =over 4
587
588 =item Declaration of MORE ELABORATE RECORDS
589
590 =item Declaration of a HASH OF COMPLEX RECORDS
591
592 =item Generation of a HASH OF COMPLEX RECORDS
593
594 =back
595
596 =item Database Ties
597
598 =item SEE ALSO
599
600 =item AUTHOR
601
602 =back
603
604 =head2 perlrequick - Perl regular expressions quick start
605
606 =over 4
607
608 =item DESCRIPTION
609
610 =item The Guide
611
612 =over 4
613
614 =item Simple word matching
615
616 =item Using character classes
617
618 =item Matching this or that
619
620 =item Grouping things and hierarchical matching
621
622 =item Extracting matches
623
624 =item Matching repetitions
625
626 =item More matching
627
628 =item Search and replace
629
630 =item The split operator
631
632 =back
633
634 =item BUGS
635
636 =item SEE ALSO
637
638 =item AUTHOR AND COPYRIGHT
639
640 =over 4
641
642 =item Acknowledgments
643
644 =back
645
646 =back
647
648 =head2 perlpod - the Plain Old Documentation format
649
650 =over 4
651
652 =item DESCRIPTION
653
654 =over 4
655
656 =item Ordinary Paragraph
657
658 =item Verbatim Paragraph
659
660 =item Command Paragraph
661
662 C<=head1 I<Heading Text>>, C<=head2 I<Heading Text>>, C<=head3 I<Heading
663 Text>>, C<=head4 I<Heading Text>>, C<=over I<indentlevel>>, C<=item
664 I<stuff...>>, C<=back>, C<=cut>, C<=pod>, C<=begin I<formatname>>, C<=end
665 I<formatname>>, C<=for I<formatname> I<text...>>
666
667 =item Formatting Codes
668
669 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
670 C<CE<lt>codeE<gt>> -- code text, C<LE<lt>nameE<gt>> -- a hyperlink,
671 C<EE<lt>escapeE<gt>> -- a character escape, C<FE<lt>filenameE<gt>> -- used
672 for filenames, C<SE<lt>textE<gt>> -- text contains non-breaking spaces,
673 C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a null
674 (zero-effect) formatting code
675
676 =item The Intent
677
678 =item Embedding Pods in Perl Modules
679
680 =item Hints for Writing Pod
681
682 =back
683
684 =item SEE ALSO
685
686 =item AUTHOR
687
688 =back
689
690 =head2 perlpodspec - Plain Old Documentation: format specification and
691 notes
692
693 =over 4
694
695 =item DESCRIPTION
696
697 =item Pod Definitions
698
699 =item Pod Commands
700
701 "=head1", "=head2", "=head3", "=head4", "=pod", "=cut", "=over", "=item",
702 "=back", "=begin formatname", "=end formatname", "=for formatname text..."
703
704 =item Pod Formatting Codes
705
706 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
707 C<CE<lt>codeE<gt>> -- code text, C<FE<lt>filenameE<gt>> -- style for
708 filenames, C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a
709 null (zero-effect) formatting code, C<LE<lt>nameE<gt>> -- a hyperlink,
710 C<EE<lt>escapeE<gt>> -- a character escape, C<SE<lt>textE<gt>> -- text
711 contains non-breaking spaces
712
713 =item Notes on Implementing Pod Processors
714
715 =item About LE<lt>...E<gt> Codes
716
717 First:, Second:, Third:, Fourth:, Fifth:, Sixth:
718
719 =item About =over...=back Regions
720
721 =item About Data Paragraphs and "=begin/=end" Regions
722
723 =item SEE ALSO
724
725 =item AUTHOR
726
727 =back
728
729 =head2 perlstyle - Perl style guide
730
731 =over 4
732
733 =item DESCRIPTION
734
735 =back
736
737 =head2 perltrap - Perl traps for the unwary
738
739 =over 4
740
741 =item DESCRIPTION
742
743 =over 4
744
745 =item Awk Traps
746
747 =item C Traps
748
749 =item Sed Traps
750
751 =item Shell Traps
752
753 =item Perl Traps
754
755 =item Perl4 to Perl5 Traps
756
757 Discontinuance, Deprecation, and BugFix traps, Parsing Traps, Numerical
758 Traps, General data type traps, Context Traps - scalar, list contexts,
759 Precedence Traps, General Regular Expression Traps using s///, etc,
760 Subroutine, Signal, Sorting Traps, OS Traps, DBM Traps, Unclassified Traps
761
762 =item Discontinuance, Deprecation, and BugFix traps
763
764 Discontinuance, Deprecation, BugFix, Discontinuance, Discontinuance,
765 Discontinuance, BugFix, Discontinuance, Discontinuance, BugFix,
766 Discontinuance, Deprecation, Discontinuance, Discontinuance
767
768 =item Parsing Traps
769
770 Parsing, Parsing, Parsing, Parsing, Parsing
771
772 =item Numerical Traps
773
774 Numerical, Numerical, Numerical, Bitwise string ops
775
776 =item General data type traps
777
778 (Arrays), (Arrays), (Hashes), (Globs), (Globs), (Scalar String),
779 (Constants), (Scalars), (Variable Suicide)
780
781 =item Context Traps - scalar, list contexts
782
783 (list context), (scalar context), (scalar context), (list, builtin)
784
785 =item Precedence Traps
786
787 Precedence, Precedence, Precedence, Precedence, Precedence, Precedence,
788 Precedence
789
790 =item General Regular Expression Traps using s///, etc.
791
792 Regular Expression, Regular Expression, Regular Expression, Regular
793 Expression, Regular Expression, Regular Expression, Regular Expression,
794 Regular Expression
795
796 =item Subroutine, Signal, Sorting Traps
797
798 (Signals), (Sort Subroutine), warn() won't let you specify a filehandle
799
800 =item OS Traps
801
802 (SysV), (SysV)
803
804 =item Interpolation Traps
805
806 Interpolation, Interpolation, Interpolation, Interpolation, Interpolation,
807 Interpolation, Interpolation, Interpolation, Interpolation
808
809 =item DBM Traps
810
811 DBM, DBM
812
813 =item Unclassified Traps
814
815 C<require>/C<do> trap using returned value, C<split> on empty string with
816 LIMIT specified
817
818 =back
819
820 =back
821
822 =head2 perlrun - how to execute the Perl interpreter
823
824 =over 4
825
826 =item SYNOPSIS
827
828 =item DESCRIPTION
829
830 =over 4
831
832 =item #! and quoting on non-Unix systems
833
834 OS/2, MS-DOS, Win95/NT, Macintosh, VMS
835
836 =item Location of Perl
837
838 =item Command Switches
839
840 B<-0>[I<digits>], B<-a>, B<-C>, B<-c>, B<-d>, B<-d:>I<foo[=bar,baz]>,
841 B<-D>I<letters>, B<-D>I<number>, B<-e> I<commandline>, B<-F>I<pattern>,
842 B<-h>, B<-i>[I<extension>], B<-I>I<directory>, B<-l>[I<octnum>],
843 B<-m>[B<->]I<module>, B<-M>[B<->]I<module>, B<-M>[B<->]I<'module ...'>,
844 B<-[mM]>[B<->]I<module=arg[,arg]...>, B<-n>, B<-p>, B<-P>, B<-s>, B<-S>,
845 B<-t>, B<-T>, B<-u>, B<-U>, B<-v>, B<-V>, B<-V:>I<name>, B<-w>, B<-W>,
846 B<-X>, B<-x> I<directory>
847
848 =back
849
850 =item ENVIRONMENT
851
852 HOME, LOGDIR, PATH, PERL5LIB, PERL5OPT, PERLLIB, PERL5DB, PERL5SHELL
853 (specific to the Win32 port), PERL_DEBUG_MSTATS, PERL_DESTRUCT_LEVEL,
854 PERL_ENCODING, PERL_ROOT (specific to the VMS port), SYS$LOGIN (specific to
855 the VMS port)
856
857 =item DESCRIPTION
858
859 accept() on closed socket %s, Allocation too large: %lx, '!' allowed only
860 after types %s, Ambiguous call resolved as CORE::%s(), qualify as such or
861 use &, Ambiguous range in transliteration operator, Ambiguous use of %s
862 resolved as %s, '|' and '<' may not both be specified on command line, '|'
863 and '>' may not both be specified on command line, Applying %s to %s will
864 act on scalar(%s), Args must match #! line, Arg too short for msgsnd, %s
865 argument is not a HASH or ARRAY element, %s argument is not a HASH or ARRAY
866 element or slice, %s argument is not a subroutine name, Argument "%s" isn't
867 numeric%s, Array @%s missing the @ in argument %d of %s(), assertion
868 botched: %s, Assertion failed: file "%s", Assignment to both a list and a
869 scalar, Attempt to access disallowed key '%s' in a fixed hash, Attempt to
870 clear a fixed hash, Attempt to delete readonly key '%s' from a fixed hash,
871 Attempt to delete disallowed key '%s' from a fixed hash, Attempt to bless
872 into a reference, Attempt to free non-arena SV: 0x%lx, Attempt to free
873 nonexistent shared string, Attempt to free temp prematurely, Attempt to
874 free unreferenced glob pointers, Attempt to free unreferenced scalar,
875 Attempt to join self, Attempt to pack pointer to temporary value, Attempt
876 to use reference as lvalue in substr, Bad arg length for %s, is %d, should
877 be %s, Bad evalled substitution pattern, Bad filehandle: %s, Bad free()
878 ignored, Bad hash, Bad index while coercing array into hash, Badly placed
879 ()'s, Bad name after %s::, Bad realloc() ignored, Bad symbol for array, Bad
880 symbol for filehandle, Bad symbol for hash, Bareword found in conditional,
881 Bareword "%s" not allowed while "strict subs" in use, Bareword "%s" refers
882 to nonexistent package, BEGIN failed--compilation aborted, BEGIN not safe
883 after errors--compilation aborted, \1 better written as $1, Binary number >
884 0b11111111111111111111111111111111 non-portable, bind() on closed socket
885 %s, binmode() on closed filehandle %s, Bit vector size > 32 non-portable,
886 Bizarre copy of %s in %s, B<-P> not allowed for setuid/setgid script,
887 Buffer overflow in prime_env_iter: %s, Callback called exit, %s() called
888 too early to check prototype, / cannot take a count, Can't bless
889 non-reference value, Can't call method "%s" in empty package "%s", Can't
890 call method "%s" on an undefined value, Can't call method "%s" on unblessed
891 reference, Can't call method "%s" without a package or object reference,
892 Can't chdir to %s, Can't check filesystem of script "%s" for nosuid, Can't
893 coerce array into hash, Can't coerce %s to integer in %s, Can't coerce %s
894 to number in %s, Can't coerce %s to string in %s, Can't create pipe
895 mailbox, Can't declare class for non-scalar %s in "%s", Can't declare %s in
896 "%s", Can't do inplace edit: %s is not a regular file, Can't do inplace
897 edit on %s: %s, Can't do inplace edit without backup, Can't do inplace
898 edit: %s would not be unique, Can't do {n,m} with n > m in regex; marked by
899 <-- HERE in m/%s/, Can't do setegid!, Can't do seteuid!, Can't do setuid,
900 Can't do waitpid with flags, Can't emulate -%s on #! line, Can't exec "%s":
901 %s, Can't exec %s, Can't execute %s, Can't find an opnumber for "%s", Can't
902 find %s character property "%s", Can't find label %s, Can't find %s on
903 PATH, Can't find %s on PATH, '.' not in PATH, Can't find string terminator
904 %s anywhere before EOF, Can't find %s property definition %s, Can't fork,
905 Can't get filespec - stale stat buffer?, Can't get pipe mailbox device
906 name, Can't get SYSGEN parameter value for MAXBUF, Can't "goto" into the
907 middle of a foreach loop, Can't "goto" out of a pseudo block, Can't goto
908 subroutine from an eval-string, Can't goto subroutine outside a subroutine,
909 Can't ignore signal CHLD, forcing to default, Can't "last" outside a loop
910 block, Can't localize lexical variable %s, Can't localize pseudo-hash
911 element, Can't localize through a reference, Can't locate file %s, Can't
912 locate auto/%s.al in @INC, Can't locate object method "%s" via package
913 "%s", (perhaps you forgot to load "%s"?), Can't locate package %s for
914 @%s::ISA, Can't make list assignment to \%ENV on this system, Can't modify
915 %s in %s, Can't modify nonexistent substring, Can't modify non-lvalue
916 subroutine call, Can't msgrcv to read-only var, Can't "next" outside a loop
917 block, Can't open %s: %s, Can't open bidirectional pipe, Can't open error
918 file %s as stderr, Can't open input file %s as stdin, Can't open output
919 file %s as stdout, Can't open output pipe (name: %s), Can't open perl
920 script%s: %s, Can't read CRTL environ, Can't redefine active sort
921 subroutine %s, Can't "redo" outside a loop block, Can't remove %s: %s,
922 skipping file, Can't rename %s to %s: %s, skipping file, Can't reopen input
923 pipe (name: %s) in binary mode, Can't resolve method `%s' overloading `%s'
924 in package `%s', Can't reswap uid and euid, Can't return %s from lvalue
925 subroutine, Can't return %s to lvalue scalar context, Can't return outside
926 a subroutine, Can't stat script "%s", Can't swap uid and euid, Can't take
927 log of %g, Can't take sqrt of %g, Can't undef active subroutine, Can't
928 unshift, Can't upgrade that kind of scalar, Can't upgrade to undef, Can't
929 use an undefined value as %s reference, Can't use anonymous symbol table
930 for method lookup, Can't use bareword ("%s") as %s ref while "strict refs"
931 in use, Can't use %! because Errno.pm is not available, Can't use %s for
932 loop variable, Can't use global %s in "my", Can't use "my %s" in sort
933 comparison, Can't use %s ref as %s ref, Can't use string ("%s") as %s ref
934 while "strict refs" in use, Can't use subscript on %s, Can't use \%c to
935 mean $%c in expression, Can't weaken a nonreference, Can't x= to read-only
936 value, Character in "C" format wrapped, Character in "c" format wrapped,
937 close() on unopened filehandle %s, %s: Command not found, Compilation
938 failed in require, Complex regular subexpression recursion limit (%d)
939 exceeded, connect() on closed socket %s, Constant(%s)%s: %s, Constant is
940 not %s reference, Constant subroutine %s redefined, Constant subroutine %s
941 undefined, Copy method did not return a reference, CORE::%s is not a
942 keyword, corrupted regexp pointers, corrupted regexp program, Corrupt
943 malloc ptr 0x%lx at 0x%lx, C<-p> destination: %s, C<-T> and C<-B> not
944 implemented on filehandles, Deep recursion on subroutine "%s",
945 defined(@array) is deprecated, defined(%hash) is deprecated, %s defines
946 neither package nor VERSION--version check failed, Delimiter for here
947 document is too long, Did not produce a valid header, %s did not return a
948 true value, (Did you mean &%s instead?), (Did you mean "local" instead of
949 "our"?), (Did you mean $ or @ instead of %?), Died, Document contains no
950 data, %s does not define %s::VERSION--version check failed, Don't know how
951 to handle magic of type '%s', do_study: out of memory, (Do you need to
952 predeclare %s?), dump() better written as CORE::dump(), Duplicate free()
953 ignored, elseif should be elsif, Empty %s, entering effective %s failed,
954 Error converting file specification %s, %s: Eval-group in insecure regular
955 expression, %s: Eval-group not allowed at run time, %s: Eval-group not
956 allowed, use re 'eval', Excessively long <> operator, exec? I'm not *that*
957 kind of operating system, Execution of %s aborted due to compilation
958 errors, Exiting eval via %s, Exiting format via %s, Exiting pseudo-block
959 via %s, Exiting subroutine via %s, Exiting substitution via %s, Explicit
960 blessing to '' (assuming package main), %s: Expression syntax, %s
961 failed--call queue aborted, False [] range "%s" in regex; marked by <--
962 HERE in m/%s/, Fatal VMS error at %s, line %d, fcntl is not implemented,
963 Filehandle %s opened only for input, Filehandle %s opened only for output,
964 Final $ should be \$ or $name, Final @ should be \@ or @name, flock() on
965 closed filehandle %s, Quantifier follows nothing in regex;, Format not
966 terminated, Format %s redefined, Found = in conditional, should be ==, %s
967 found where operator expected, gdbm store returned %d, errno %d, key "%s",
968 gethostent not implemented, get%sname() on closed socket %s, getpwnam
969 returned invalid UIC %#o for user "%s", getsockopt() on closed socket %s,
970 Global symbol "%s" requires explicit package name, glob failed (%s), Glob
971 not terminated, Got an error from DosAllocMem, goto must have label,
972 %s-group starts with a count, %s had compilation errors, Had to create %s
973 unexpectedly, Hash %%s missing the % in argument %d of %s(), %s has too
974 many errors, Hexadecimal number > 0xffffffff non-portable, Identifier too
975 long, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
976 character %s (carriage return), Illegal character in prototype for %s : %s,
977 Illegal division by zero, Illegal hexadecimal digit %s ignored, Illegal
978 modulus zero, Illegal number of bits in vec, Illegal octal digit %s,
979 Illegal octal digit %s ignored, Illegal switch in PERL5OPT: %s, Ill-formed
980 CRTL environ value "%s", Ill-formed message in prime_env_iter: |%s|, (in
981 cleanup) %s, In EBCDIC the v-string components cannot exceed 2147483647,
982 Insecure dependency in %s, Insecure directory in %s, Insecure $ENV{%s}
983 while running %s, Integer overflow in %s number, Internal disaster in
984 regex; marked by <-- HERE in m/%s/, Internal inconsistency in tracking
985 vforks, Internal urp in regex; marked by <-- HERE in m/%s/, %s (...)
986 interpreted as function, Invalid %s attribute: %s, Invalid %s attributes:
987 %s, Invalid conversion in %s: "%s", Invalid [] range "%s" in regex; marked
988 by <-- HERE in m/%s/, Invalid [] range "%s" in transliteration operator,
989 Invalid separator character %s in attribute list, Invalid type in pack:
990 '%s', Invalid type in unpack: '%s', ioctl is not implemented, ioctl() on
991 unopened %s, IO::Socket::atmark not implemented on this architecture, `%s'
992 is not a code reference, `%s' is not an overloadable type, junk on end of
993 regexp, Label not found for "last %s", Label not found for "next %s", Label
994 not found for "redo %s", leaving effective %s failed, listen() on closed
995 socket %s, lstat() on filehandle %s, Lvalue subs returning %s not
996 implemented yet, Lookbehind longer than %d not implemented in regex;,
997 Malformed PERLLIB_PREFIX, Malformed prototype for %s: %s, Malformed UTF-8
998 character (%s), Malformed UTF-16 surrogate, %s matches null string many
999 times in regex;, "%s" may clash with future reserved word, % may only be
1000 used in unpack, Method for operation %s not found in package %s during
1001 blessing, Method %s not permitted, Might be a runaway multi-line %s string
1002 starting on line %d, Misplaced _ in number, Missing %sbrace%s on \N{},
1003 Missing comma after first argument to %s function, Missing command in piped
1004 open, Missing name in "my sub", Missing $ on loop variable, (Missing
1005 operator before %s?), Missing right brace on %s, Missing right curly or
1006 square bracket, (Missing semicolon on previous line?), Modification of a
1007 read-only value attempted, Modification of non-creatable array value
1008 attempted, %s, Modification of non-creatable hash value attempted, %s,
1009 Module name must be constant, Module name required with -%c option, More
1010 than one argument to open, msg%s not implemented, Multidimensional syntax
1011 %s not supported, / must be followed by a*, A* or Z*, / must be followed by
1012 a, A or Z, / must follow a numeric type, "my sub" not yet implemented, "my"
1013 variable %s can't be in a package, Name "%s::%s" used only once: possible
1014 typo, Negative length, Negative offset to vec in lvalue context, Nested
1015 quantifiers in regex; marked by <-- HERE in m/%s/, %s never introduced, No
1016 %s allowed while running setuid, No B<-e> allowed in setuid scripts, No
1017 comma allowed after %s, No command into which to pipe on command line, No
1018 DB::DB routine defined, No dbm on this machine, No DBsub routine, No error
1019 file after 2> or 2>> on command line, No input file after < on command
1020 line, No #! line, "no" not allowed in expression, No output file after > on
1021 command line, No output file after > or >> on command line, No package name
1022 allowed for variable %s in "our", No Perl script found in input, No
1023 setregid available, No setreuid available, No space allowed after -%c, No
1024 %s specified for -%c, No such class %s, No such pipe open, No such
1025 pseudo-hash field "%s", No such pseudo-hash field "%s" in variable %s of
1026 type %s, No such signal: SIG%s, Not a CODE reference, Not a format
1027 reference, Not a GLOB reference, Not a HASH reference, Not an ARRAY
1028 reference, Not a perl script, Not a SCALAR reference, Not a subroutine
1029 reference, Not a subroutine reference in overload table, Not enough
1030 arguments for %s, Not enough format arguments, %s: not found, %s not
1031 allowed in length fields, no UTC offset information; assuming local time is
1032 UTC, Null filename used, NULL OP IN RUN, Null picture in formline, Null
1033 realloc, NULL regexp argument, NULL regexp parameter, Number too long,
1034 Octal number in vector unsupported, Octal number > 037777777777
1035 non-portable, Odd number of arguments for overload::constant, Odd number of
1036 elements in anonymous hash, Odd number of elements in hash assignment,
1037 Offset outside string, -%s on unopened filehandle %s, %s() on unopened %s,
1038 oops: oopsAV, oops: oopsHV, Operation `%s': no method found, %s, Operator
1039 or semicolon missing before %s, "our" variable %s redeclared, Out of
1040 memory!, Out of memory during "large" request for %s, Out of memory during
1041 request for %s, Out of memory during ridiculously large request, Out of
1042 memory for yacc stack, @ outside of string, %s package attribute may clash
1043 with future reserved word: %s, page overflow, panic: %s, panic: ck_grep,
1044 panic: ck_split, panic: corrupt saved stack index, panic: del_backref,
1045 panic: die %s, panic: pp_match%s, panic: do_subst, panic: do_trans_%s,
1046 panic: frexp, panic: goto, panic: INTERPCASEMOD, panic: INTERPCONCAT,
1047 panic: kid popen errno read, panic: last, panic: leave_scope clearsv,
1048 panic: leave_scope inconsistency, panic: magic_killbackrefs, panic: malloc,
1049 panic: mapstart, panic: null array, panic: pad_alloc, panic: pad_free
1050 curpad, panic: pad_free po, panic: pad_reset curpad, panic: pad_sv po,
1051 panic: pad_swipe curpad, panic: pad_swipe po, panic: pp_iter, panic:
1052 pp_split, panic: realloc, panic: restartop, panic: return, panic: scan_num,
1053 panic: sv_insert, panic: top_env, panic: yylex, panic: utf16_to_utf8: odd
1054 bytelen, Parentheses missing around "%s" list, Perl %s required--this is
1055 only version %s, stopped, PERL_SH_DIR too long, perl: warning: Setting
1056 locale failed, perlio: argument list not closed for layer "%s", perlio:
1057 invalid separator character %s in attribute list, perlio: unknown layer
1058 "%s", Permission denied, pid %x not a child, P must have an explicit size,
1059 POSIX syntax [%s] belongs inside character classes in regex;, POSIX syntax
1060 [. .] is reserved for future extensions in regex;, POSIX syntax [= =] is
1061 reserved for future extensions in regex;, POSIX class [:%s:] unknown in
1062 regex;, POSIX getpgrp can't take an argument, Possible attempt to put
1063 comments in qw() list, Possible attempt to separate words with commas,
1064 Possible memory corruption: %s overflowed 3rd argument, Possible unintended
1065 interpolation of %s in string, Possible Y2K bug: %s, pragma "attrs" is
1066 deprecated, use "sub NAME : ATTRS" instead, Precedence problem: open %s
1067 should be open(%s), Premature end of script headers, printf() on closed
1068 filehandle %s, print() on closed filehandle %s, Process terminated by
1069 SIG%s, Prototype mismatch: %s vs %s, Prototype not terminated, Quantifier
1070 in {,} bigger than %d in regex;, Quantifier unexpected on zero-length
1071 expression;, Range iterator outside integer range, readline() on closed
1072 filehandle %s, Reallocation too large: %lx, realloc() of freed memory
1073 ignored, Recompile perl with B<-D>DEBUGGING to use B<-D> switch, Recursive
1074 inheritance detected in package '%s', Recursive inheritance detected while
1075 looking for method %s, Reference found where even-sized list expected,
1076 Reference is already weak, Reference miscount in sv_replace(), Reference to
1077 nonexistent group in regex;, regexp memory corruption, Regexp out of space,
1078 Repeat count in pack overflows, Repeat count in unpack overflows, Reversed
1079 %s= operator, Runaway format, Scalar value @%s[%s] better written as
1080 $%s[%s], Scalar value @%s{%s} better written as $%s{%s}, Scalars leaked:
1081 %d, Script is not setuid/setgid in suidperl, Search pattern not terminated,
1082 %sseek() on unopened filehandle, select not implemented, Self-ties of
1083 arrays and hashes are not supported, Semicolon seems to be missing,
1084 semi-panic: attempt to dup freed string, sem%s not implemented, send() on
1085 closed socket %s, Sequence (? incomplete in regex; marked by <-- HERE in
1086 m/%s/, Sequence (?{...}) not terminated or not {}-balanced in regex;,
1087 Sequence (?%s...) not implemented in regex;, Sequence (?%s...) not
1088 recognized in regex;, Sequence (?#... not terminated in regex;, 500 Server
1089 error, Server error, setegid() not implemented, seteuid() not implemented,
1090 setpgrp can't take arguments, setrgid() not implemented, setruid() not
1091 implemented, setsockopt() on closed socket %s, Setuid/gid script is
1092 writable by world, shm%s not implemented, <> should be quotes, /%s/ should
1093 probably be written as "%s", shutdown() on closed socket %s, SIG%s handler
1094 "%s" not defined, sort is now a reserved word, Sort subroutine didn't
1095 return a numeric value, Sort subroutine didn't return single value,
1096 splice() offset past end of array, Split loop, Statement unlikely to be
1097 reached, stat() on unopened filehandle %s, Stub found while resolving
1098 method `%s' overloading %s, Subroutine %s redefined, Substitution loop,
1099 Substitution pattern not terminated, Substitution replacement not
1100 terminated, substr outside of string, suidperl is no longer needed since
1101 %s, Switch (?(condition)... contains too many branches in regex;, Switch
1102 condition not recognized in regex;, switching effective %s is not
1103 implemented, syntax error, syntax error at line %d: `%s' unexpected, syntax
1104 error in file %s at line %d, next 2 tokens "%s", %s syntax OK, System V %s
1105 is not implemented on this machine, syswrite() on closed filehandle %s,
1106 Target of goto is too deeply nested, tell() on unopened filehandle, That
1107 use of $[ is unsupported, The crypt() function is unimplemented due to
1108 excessive paranoia, The %s function is unimplemented, The stat preceding %s
1109 wasn't an lstat, This Perl can't reset CRTL environ elements (%s), This
1110 Perl can't set CRTL environ elements (%s=%s), times not implemented, Too
1111 few args to syscall, Too late for "B<-T>" option, Too late for "-%s"
1112 option, Too late to run %s block, Too many args to syscall, Too many
1113 arguments for %s, Too many )'s, Too many ('s, Trailing \ in regex m/%s/,
1114 Transliteration pattern not terminated, Transliteration replacement not
1115 terminated, truncate not implemented, Type of arg %d to %s must be %s (not
1116 %s), umask not implemented, Unable to create sub named "%s", Unbalanced
1117 context: %d more PUSHes than POPs, Unbalanced saves: %d more saves than
1118 restores, Unbalanced scopes: %d more ENTERs than LEAVEs, Unbalanced tmps:
1119 %d more allocs than frees, Undefined format "%s" called, Undefined sort
1120 subroutine "%s" called, Undefined subroutine &%s called, Undefined
1121 subroutine called, Undefined subroutine in sort, Undefined top format "%s"
1122 called, Undefined value assigned to typeglob, %s: Undefined variable,
1123 unexec of %s into %s failed!, Unicode character %s is illegal, Unknown
1124 BYTEORDER, Unknown "re" subpragma '%s' (known ones are: %s), Unknown switch
1125 condition (?(%.2s in regex;, Unknown open() mode '%s', Unknown process %x
1126 sent message to prime_env_iter: %s, Unknown warnings category '%s',
1127 unmatched [ in regex; marked by <-- HERE in m/%s/, unmatched ( in regex;
1128 marked by <-- HERE in m/%s/, Unmatched right %s bracket, Unquoted string
1129 "%s" may clash with future reserved word, Unrecognized character %s, /%s/:
1130 Unrecognized escape \\%c in character class passed through, Unrecognized
1131 escape \\%c passed through in regex;, Unrecognized escape \\%c passed
1132 through, Unrecognized signal name "%s", Unrecognized switch: -%s  (-h will
1133 show valid options), Unsuccessful %s on filename containing newline,
1134 Unsupported directory function "%s" called, Unsupported function %s,
1135 Unsupported function fork, Unsupported script encoding, Unsupported socket
1136 function "%s" called, Unterminated attribute list, Unterminated attribute
1137 parameter in attribute list, Unterminated compressed integer, Unterminated
1138 <> operator, untie attempted while %d inner references still exist, Useless
1139 (?%s) - use /%s modifier in regex;, Useless (?-%s) - don't use /%s modifier
1140 in regex;, Useless use of %s in void context, Useless use of "re" pragma,
1141 Useless use of sort in scalar context, Useless use of %s with no values,
1142 "use" not allowed in expression, Use of bare << to mean <<"" is deprecated,
1143 Use of *glob{FILEHANDLE} is deprecated, Use of chdir('') or chdir(undef) as
1144 chdir() deprecated, Use of implicit split to @_ is deprecated, Use of
1145 inherited AUTOLOAD for non-method %s() is deprecated, Use of -l on
1146 filehandle %s, Use of "package" with no arguments is deprecated, Use of %s
1147 in printf format not supported, Use of $* is deprecated, Use of %s is
1148 deprecated, Use of $# is deprecated, Use of reference "%s" as array index,
1149 Use of reserved word "%s" is deprecated, Use of tainted arguments in %s is
1150 deprecated, Use of uninitialized value%s, Using a hash as a reference is
1151 deprecated, Using an array as a reference is deprecated, UTF-16 surrogate
1152 %s, Value of %s can be "0"; test with defined(), Value of CLI symbol "%s"
1153 too long, Variable "%s" is not imported%s, "%s" variable %s masks earlier
1154 declaration in same %s, Variable "%s" may be unavailable, Variable syntax,
1155 Variable "%s" will not stay shared, Variable length lookbehind not
1156 implemented in regex;, Version number must be a constant number, v-string
1157 in use/require is non-portable, Warning: something's wrong, Warning: unable
1158 to close filehandle %s properly, Warning: Use of "%s" without parentheses
1159 is ambiguous, Wide character in %s, write() on closed filehandle %s, X
1160 outside of string, x outside of string, Xsub "%s" called in sort, Xsub
1161 called in sort, YOU HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET!, You
1162 need to quote "%s"
1163
1164 =back
1165
1166 =head2 perllexwarn - Perl Lexical Warnings
1167
1168 =over 4
1169
1170 =item DESCRIPTION
1171
1172 =over 4
1173
1174 =item Default Warnings and Optional Warnings
1175
1176 =item What's wrong with B<-w> and C<$^W>
1177
1178 =item Controlling Warnings from the Command Line
1179
1180 B<-w>, B<-W>, B<-X>
1181
1182 =item Backward Compatibility
1183
1184 =item Category Hierarchy
1185
1186 =item Fatal Warnings
1187
1188 =item Reporting Warnings from a Module
1189
1190 =back
1191
1192 =item TODO
1193
1194 =item SEE ALSO
1195
1196 =item AUTHOR
1197
1198 =back
1199
1200 =head2 perldebtut - Perl debugging tutorial
1201
1202 =over 4
1203
1204 =item DESCRIPTION
1205
1206 =item use strict
1207
1208 =item Looking at data and -w and v
1209
1210 =item help
1211
1212 =item Stepping through code
1213
1214 =item Placeholder for a, w, t, T
1215
1216 =item REGULAR EXPRESSIONS
1217
1218 =item OUTPUT TIPS
1219
1220 =item CGI
1221
1222 =item GUIs
1223
1224 =item SUMMARY
1225
1226 =item SEE ALSO
1227
1228 =item AUTHOR
1229
1230 =item CONTRIBUTORS
1231
1232 =back
1233
1234 =head2 perldebug - Perl debugging
1235
1236 =over 4
1237
1238 =item DESCRIPTION
1239
1240 =item The Perl Debugger
1241
1242 =over 4
1243
1244 =item Debugger Commands
1245
1246 h, h [command], h h, p expr, x [maxdepth] expr, V [pkg [vars]], X [vars],
1247 T, s [expr], n [expr], r, <CR>, c [line|sub], l, l min+incr, l min-max, l
1248 line, l subname, -, v [line], f filename, /pattern/, ?pattern?, L [abw], S
1249 [[!]regex], t, t expr, b, b [line] [condition], b subname [condition], b
1250 postpone subname [condition], b load filename, b compile subname, B line, B
1251 *, a [line] command, A line, A *, w expr, W expr, W *, o, o booloption ..,
1252 o anyoption? .., o option=value .., < ?, < [ command ], << command, > ?, >
1253 command, >> command, { ?, { [ command ], {{ command, ! number, ! -number, !
1254 pattern, !! cmd, @ file, H -number, q or ^D, R, |dbcmd, ||dbcmd, command, m
1255 expr, M, man [manpage]
1256
1257 =item Configurable Options
1258
1259 C<recallCommand>, C<ShellBang>, C<pager>, C<tkRunning>, C<signalLevel>,
1260 C<warnLevel>, C<dieLevel>, C<AutoTrace>, C<LineInfo>, C<inhibit_exit>,
1261 C<PrintRet>, C<ornaments>, C<frame>, C<maxTraceLen>, C<windowSize>,
1262 C<arrayDepth>, C<hashDepth>, C<dumpDepth>, C<compactDump>, C<veryCompact>,
1263 C<globPrint>, C<DumpDBFiles>, C<DumpPackages>, C<DumpReused>, C<quote>,
1264 C<HighBit>, C<undefPrint>, C<UsageOnly>, C<TTY>, C<noTTY>, C<ReadLine>,
1265 C<NonStop>
1266
1267 =item Debugger input/output
1268
1269 Prompt, Multiline commands, Stack backtrace, Line Listing Format, Frame
1270 listing
1271
1272 =item Debugging compile-time statements
1273
1274 =item Debugger Customization
1275
1276 =item Readline Support
1277
1278 =item Editor Support for Debugging
1279
1280 =item The Perl Profiler
1281
1282 =back
1283
1284 =item Debugging regular expressions
1285
1286 =item Debugging memory usage
1287
1288 =item SEE ALSO
1289
1290 =item BUGS
1291
1292 =back
1293
1294 =head2 perlvar - Perl predefined variables
1295
1296 =over 4
1297
1298 =item DESCRIPTION
1299
1300 =over 4
1301
1302 =item Predefined Names
1303
1304 $ARG, $_, $a, $b, $<I<digits>>, $MATCH, $&, $PREMATCH, $`, $POSTMATCH, $',
1305 $LAST_PAREN_MATCH, $+, $^N, @LAST_MATCH_END, @+, $MULTILINE_MATCHING, $*,
1306 HANDLE->input_line_number(EXPR), $INPUT_LINE_NUMBER, $NR, $,
1307 IO::Handle->input_record_separator(EXPR), $INPUT_RECORD_SEPARATOR, $RS, $/,
1308 HANDLE->autoflush(EXPR), $OUTPUT_AUTOFLUSH, $|,
1309 IO::Handle->output_field_separator EXPR, $OUTPUT_FIELD_SEPARATOR, $OFS, $,,
1310 IO::Handle->output_record_separator EXPR, $OUTPUT_RECORD_SEPARATOR, $ORS,
1311 $\, $LIST_SEPARATOR, $", $SUBSCRIPT_SEPARATOR, $SUBSEP, $;, $OFMT, $#,
1312 HANDLE->format_page_number(EXPR), $FORMAT_PAGE_NUMBER, $%,
1313 HANDLE->format_lines_per_page(EXPR), $FORMAT_LINES_PER_PAGE, $=,
1314 HANDLE->format_lines_left(EXPR), $FORMAT_LINES_LEFT, $-, @LAST_MATCH_START,
1315 @-, C<$`> is the same as C<substr($var, 0, $-[0])>, C<$&> is the same as
1316 C<substr($var, $-[0], $+[0] - $-[0])>, C<$'> is the same as C<substr($var,
1317 $+[0])>, C<$1> is the same as C<substr($var, $-[1], $+[1] - $-[1])>, C<$2>
1318 is the same as C<substr($var, $-[2], $+[2] - $-[2])>, C<$3> is the same as
1319 C<substr $var, $-[3], $+[3] - $-[3])>, HANDLE->format_name(EXPR),
1320 $FORMAT_NAME, $~, HANDLE->format_top_name(EXPR), $FORMAT_TOP_NAME, $^,
1321 IO::Handle->format_line_break_characters EXPR,
1322 $FORMAT_LINE_BREAK_CHARACTERS, $:, IO::Handle->format_formfeed EXPR,
1323 $FORMAT_FORMFEED, $^L, $ACCUMULATOR, $^A, $CHILD_ERROR, $?, ${^ENCODING},
1324 $OS_ERROR, $ERRNO, $!, $EXTENDED_OS_ERROR, $^E, $EVAL_ERROR, $@,
1325 $PROCESS_ID, $PID, $$, $REAL_USER_ID, $UID, $<, $EFFECTIVE_USER_ID, $EUID,
1326 $>, $REAL_GROUP_ID, $GID, $(, $EFFECTIVE_GROUP_ID, $EGID, $),
1327 $PROGRAM_NAME, $0, $[, $], $COMPILING, $^C, $DEBUGGING, $^D,
1328 $SYSTEM_FD_MAX, $^F, $^H, %^H, $INPLACE_EDIT, $^I, $^M, $OSNAME, $^O,
1329 ${^OPEN}, $PERLDB, $^P, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
1330 0x100, 0x200, $LAST_REGEXP_CODE_RESULT, $^R, $EXCEPTIONS_BEING_CAUGHT, $^S,
1331 $BASETIME, $^T, ${^TAINT}, $PERL_VERSION, $^V, $WARNING, $^W,
1332 ${^WARNING_BITS}, ${^WIDE_SYSTEM_CALLS}, $EXECUTABLE_NAME, $^X, ARGV,
1333 $ARGV, @ARGV, @F, @INC, @_, %INC, %ENV, $ENV{expr}, %SIG, $SIG{expr}
1334
1335 =item Error Indicators
1336
1337 =item Technical Note on the Syntax of Variable Names
1338
1339 =back
1340
1341 =item BUGS
1342
1343 =back
1344
1345 =head2 perllol - Manipulating Arrays of Arrays in Perl
1346
1347 =over 4
1348
1349 =item DESCRIPTION
1350
1351 =over 4
1352
1353 =item Declaration and Access of Arrays of Arrays
1354
1355 =item Growing Your Own
1356
1357 =item Access and Printing
1358
1359 =item Slices
1360
1361 =back
1362
1363 =item SEE ALSO
1364
1365 =item AUTHOR
1366
1367 =back
1368
1369 =head2 perlopentut - tutorial on opening things in Perl
1370
1371 =over 4
1372
1373 =item DESCRIPTION
1374
1375 =item Open E<agrave> la shell
1376
1377 =over 4
1378
1379 =item Simple Opens
1380
1381 =item Pipe Opens
1382
1383 =item The Minus File
1384
1385 =item Mixing Reads and Writes
1386
1387 =item Filters 
1388
1389 =back
1390
1391 =item Open E<agrave> la C
1392
1393 =over 4
1394
1395 =item Permissions E<agrave> la mode
1396
1397 =back
1398
1399 =item Obscure Open Tricks
1400
1401 =over 4
1402
1403 =item Re-Opening Files (dups)
1404
1405 =item Dispelling the Dweomer
1406
1407 =item Paths as Opens
1408
1409 =item Single Argument Open
1410
1411 =item Playing with STDIN and STDOUT
1412
1413 =back
1414
1415 =item Other I/O Issues
1416
1417 =over 4
1418
1419 =item Opening Non-File Files
1420
1421 =item Binary Files
1422
1423 =item File Locking
1424
1425 =back
1426
1427 =item SEE ALSO 
1428
1429 =item AUTHOR and COPYRIGHT
1430
1431 =item HISTORY
1432
1433 =back
1434
1435 =head2 perlpacktut - tutorial on C<pack> and C<unpack>
1436
1437 =over 4
1438
1439 =item DESCRIPTION
1440
1441 =item The Basic Principle
1442
1443 =item Packing Text
1444
1445 =item Packing Numbers
1446
1447 =over 4
1448
1449 =item Integers
1450
1451 =item Unpacking a Stack Frame
1452
1453 =item How to Eat an Egg on a Net
1454
1455 =item Floating point Numbers
1456
1457 =back
1458
1459 =item Exotic Templates
1460
1461 =over 4
1462
1463 =item Bit Strings
1464
1465 =item Uuencoding
1466
1467 =item Doing Sums
1468
1469 =item  Unicode
1470
1471 =item Another Portable Binary Encoding
1472
1473 =back
1474
1475 =item Lengths and Widths
1476
1477 =over 4
1478
1479 =item String Lengths
1480
1481 =item Dynamic Templates
1482
1483 =back
1484
1485 =item Packing and Unpacking C Structures
1486
1487 =over 4
1488
1489 =item The Alignment Pit
1490
1491 =item Alignment, Take 2
1492
1493 =item Alignment, Take 3
1494
1495 =item Pointers for How to Use Them
1496
1497 =back
1498
1499 =item Pack Recipes
1500
1501 =item Funnies Section
1502
1503 =item Authors
1504
1505 =back
1506
1507 =head2 perlretut - Perl regular expressions tutorial
1508
1509 =over 4
1510
1511 =item DESCRIPTION
1512
1513 =item Part 1: The basics
1514
1515 =over 4
1516
1517 =item Simple word matching
1518
1519 =item Using character classes
1520
1521 =item Matching this or that
1522
1523 =item Grouping things and hierarchical matching
1524
1525 =item Extracting matches
1526
1527 =item Matching repetitions
1528
1529 =item Building a regexp
1530
1531 =item Using regular expressions in Perl
1532
1533 =back
1534
1535 =item Part 2: Power tools
1536
1537 =over 4
1538
1539 =item More on characters, strings, and character classes
1540
1541 =item Compiling and saving regular expressions
1542
1543 =item Embedding comments and modifiers in a regular expression
1544
1545 =item Non-capturing groupings
1546
1547 =item Looking ahead and looking behind
1548
1549 =item Using independent subexpressions to prevent backtracking
1550
1551 =item Conditional expressions
1552
1553 =item A bit of magic: executing Perl code in a regular expression
1554
1555 =item Pragmas and debugging
1556
1557 =back
1558
1559 =item BUGS
1560
1561 =item SEE ALSO
1562
1563 =item AUTHOR AND COPYRIGHT
1564
1565 =over 4
1566
1567 =item Acknowledgments
1568
1569 =back
1570
1571 =back
1572
1573 =head2 perlre - Perl regular expressions
1574
1575 =over 4
1576
1577 =item DESCRIPTION
1578
1579 i, m, s, x
1580
1581 =over 4
1582
1583 =item Regular Expressions
1584
1585 [1], [2], [3], cntrl, graph, print, punct, xdigit
1586
1587 =item Extended Patterns
1588
1589 C<(?#text)>, C<(?imsx-imsx)>, C<(?:pattern)>, C<(?imsx-imsx:pattern)>,
1590 C<(?=pattern)>, C<(?!pattern)>, C<(?<=pattern)>, C<(?<!pattern)>, C<(?{
1591 code })>, C<(??{ code })>, C<< (?>pattern) >>,
1592 C<(?(condition)yes-pattern|no-pattern)>, C<(?(condition)yes-pattern)>
1593
1594 =item Backtracking
1595
1596 =item Version 8 Regular Expressions
1597
1598 =item Warning on \1 vs $1
1599
1600 =item Repeated patterns matching zero-length substring
1601
1602 =item Combining pieces together
1603
1604 C<ST>, C<S|T>, C<S{REPEAT_COUNT}>, C<S{min,max}>, C<S{min,max}?>, C<S?>,
1605 C<S*>, C<S+>, C<S??>, C<S*?>, C<S+?>, C<< (?>S) >>, C<(?=S)>, C<(?<=S)>,
1606 C<(?!S)>, C<(?<!S)>, C<(??{ EXPR })>,
1607 C<(?(condition)yes-pattern|no-pattern)>
1608
1609 =item Creating custom RE engines
1610
1611 =back
1612
1613 =item BUGS
1614
1615 =item SEE ALSO
1616
1617 =back
1618
1619 =head2 perlref - Perl references and nested data structures
1620
1621 =over 4
1622
1623 =item NOTE
1624
1625 =item DESCRIPTION
1626
1627 =over 4
1628
1629 =item Making References
1630
1631 =item Using References
1632
1633 =item Symbolic references
1634
1635 =item Not-so-symbolic references
1636
1637 =item Pseudo-hashes: Using an array as a hash
1638
1639 =item Function Templates
1640
1641 =back
1642
1643 =item WARNING
1644
1645 =item SEE ALSO
1646
1647 =back
1648
1649 =head2 perlform - Perl formats
1650
1651 =over 4
1652
1653 =item DESCRIPTION
1654
1655 =over 4
1656
1657 =item Format Variables
1658
1659 =back
1660
1661 =item NOTES
1662
1663 =over 4
1664
1665 =item Footers
1666
1667 =item Accessing Formatting Internals
1668
1669 =back
1670
1671 =item WARNINGS
1672
1673 =back
1674
1675 =head2 perlboot - Beginner's Object-Oriented Tutorial
1676
1677 =over 4
1678
1679 =item DESCRIPTION
1680
1681 =over 4
1682
1683 =item If we could talk to the animals...
1684
1685 =item Introducing the method invocation arrow
1686
1687 =item Invoking a barnyard
1688
1689 =item The extra parameter of method invocation
1690
1691 =item Calling a second method to simplify things
1692
1693 =item Inheriting the windpipes
1694
1695 =item A few notes about @ISA
1696
1697 =item Overriding the methods
1698
1699 =item Starting the search from a different place
1700
1701 =item The SUPER way of doing things
1702
1703 =item Where we're at so far...
1704
1705 =item A horse is a horse, of course of course -- or is it?
1706
1707 =item Invoking an instance method
1708
1709 =item Accessing the instance data
1710
1711 =item How to build a horse
1712
1713 =item Inheriting the constructor
1714
1715 =item Making a method work with either classes or instances
1716
1717 =item Adding parameters to a method
1718
1719 =item More interesting instances
1720
1721 =item A horse of a different color
1722
1723 =item Summary
1724
1725 =back
1726
1727 =item SEE ALSO
1728
1729 =item COPYRIGHT
1730
1731 =back
1732
1733 =head2 perltoot - Tom's object-oriented tutorial for perl
1734
1735 =over 4
1736
1737 =item DESCRIPTION
1738
1739 =item Creating a Class
1740
1741 =over 4
1742
1743 =item Object Representation
1744
1745 =item Class Interface
1746
1747 =item Constructors and Instance Methods
1748
1749 =item Planning for the Future: Better Constructors
1750
1751 =item Destructors
1752
1753 =item Other Object Methods
1754
1755 =back
1756
1757 =item Class Data
1758
1759 =over 4
1760
1761 =item Accessing Class Data
1762
1763 =item Debugging Methods
1764
1765 =item Class Destructors
1766
1767 =item Documenting the Interface
1768
1769 =back
1770
1771 =item Aggregation
1772
1773 =item Inheritance
1774
1775 =over 4
1776
1777 =item Overridden Methods
1778
1779 =item Multiple Inheritance
1780
1781 =item UNIVERSAL: The Root of All Objects
1782
1783 =back
1784
1785 =item Alternate Object Representations
1786
1787 =over 4
1788
1789 =item Arrays as Objects
1790
1791 =item Closures as Objects
1792
1793 =back
1794
1795 =item AUTOLOAD: Proxy Methods
1796
1797 =over 4
1798
1799 =item Autoloaded Data Methods
1800
1801 =item Inherited Autoloaded Data Methods
1802
1803 =back
1804
1805 =item Metaclassical Tools
1806
1807 =over 4
1808
1809 =item Class::Struct
1810
1811 =item Data Members as Variables
1812
1813 =back
1814
1815 =item NOTES
1816
1817 =over 4
1818
1819 =item Object Terminology
1820
1821 =back
1822
1823 =item SEE ALSO
1824
1825 =item AUTHOR AND COPYRIGHT
1826
1827 =item COPYRIGHT
1828
1829 =over 4
1830
1831 =item Acknowledgments
1832
1833 =back
1834
1835 =back
1836
1837 =head2 perltooc - Tom's OO Tutorial for Class Data in Perl
1838
1839 =over 4
1840
1841 =item DESCRIPTION
1842
1843 =item Class Data in a Can
1844
1845 =item Class Data as Package Variables
1846
1847 =over 4
1848
1849 =item Putting All Your Eggs in One Basket
1850
1851 =item Inheritance Concerns
1852
1853 =item The Eponymous Meta-Object
1854
1855 =item Indirect References to Class Data
1856
1857 =item Monadic Classes
1858
1859 =item Translucent Attributes
1860
1861 =back
1862
1863 =item Class Data as Lexical Variables
1864
1865 =over 4
1866
1867 =item Privacy and Responsibility 
1868
1869 =item File-Scoped Lexicals
1870
1871 =item More Inheritance Concerns
1872
1873 =item Locking the Door and Throwing Away the Key
1874
1875 =item Translucency Revisited
1876
1877 =back
1878
1879 =item NOTES
1880
1881 =item SEE ALSO
1882
1883 =item AUTHOR AND COPYRIGHT
1884
1885 =item ACKNOWLEDGEMENTS
1886
1887 =item HISTORY
1888
1889 =back
1890
1891 =head2 perlobj - Perl objects
1892
1893 =over 4
1894
1895 =item DESCRIPTION
1896
1897 =over 4
1898
1899 =item An Object is Simply a Reference
1900
1901 =item A Class is Simply a Package
1902
1903 =item A Method is Simply a Subroutine
1904
1905 =item Method Invocation
1906
1907 =item Indirect Object Syntax
1908
1909 =item Default UNIVERSAL methods
1910
1911 isa(CLASS), can(METHOD), VERSION( [NEED] )
1912
1913 =item Destructors
1914
1915 =item Summary
1916
1917 =item Two-Phased Garbage Collection
1918
1919 =back
1920
1921 =item SEE ALSO
1922
1923 =back
1924
1925 =head2 perlbot - Bag'o Object Tricks (the BOT)
1926
1927 =over 4
1928
1929 =item DESCRIPTION
1930
1931 =item OO SCALING TIPS
1932
1933 =item INSTANCE VARIABLES
1934
1935 =item SCALAR INSTANCE VARIABLES
1936
1937 =item INSTANCE VARIABLE INHERITANCE
1938
1939 =item OBJECT RELATIONSHIPS
1940
1941 =item OVERRIDING SUPERCLASS METHODS
1942
1943 =item USING RELATIONSHIP WITH SDBM
1944
1945 =item THINKING OF CODE REUSE
1946
1947 =item CLASS CONTEXT AND THE OBJECT
1948
1949 =item INHERITING A CONSTRUCTOR
1950
1951 =item DELEGATION
1952
1953 =back
1954
1955 =head2 perltie - how to hide an object class in a simple variable
1956
1957 =over 4
1958
1959 =item SYNOPSIS
1960
1961 =item DESCRIPTION
1962
1963 =over 4
1964
1965 =item Tying Scalars
1966
1967 TIESCALAR classname, LIST, FETCH this, STORE this, value, UNTIE this,
1968 DESTROY this
1969
1970 =item Tying Arrays
1971
1972 TIEARRAY classname, LIST, FETCH this, index, STORE this, index, value,
1973 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
1974 key, DELETE this, key, CLEAR this, PUSH this, LIST, POP this, SHIFT this,
1975 UNSHIFT this, LIST, SPLICE this, offset, length, LIST, UNTIE this, DESTROY
1976 this
1977
1978 =item Tying Hashes
1979
1980 USER, HOME, CLOBBER, LIST, TIEHASH classname, LIST, FETCH this, key, STORE
1981 this, key, value, DELETE this, key, CLEAR this, EXISTS this, key, FIRSTKEY
1982 this, NEXTKEY this, lastkey, UNTIE this, DESTROY this
1983
1984 =item Tying FileHandles
1985
1986 TIEHANDLE classname, LIST, WRITE this, LIST, PRINT this, LIST, PRINTF this,
1987 LIST, READ this, LIST, READLINE this, GETC this, CLOSE this, UNTIE this,
1988 DESTROY this
1989
1990 =item UNTIE this
1991
1992 =item The C<untie> Gotcha
1993
1994 =back
1995
1996 =item SEE ALSO
1997
1998 =item BUGS
1999
2000 =item AUTHOR
2001
2002 =back
2003
2004 =head2 perlipc - Perl interprocess communication (signals, fifos, pipes,
2005 safe subprocesses, sockets, and semaphores)
2006
2007 =over 4
2008
2009 =item DESCRIPTION
2010
2011 =item Signals
2012
2013 =item Named Pipes
2014
2015 =over 4
2016
2017 =item WARNING
2018
2019 =back
2020
2021 =item Using open() for IPC
2022
2023 =over 4
2024
2025 =item Filehandles
2026
2027 =item Background Processes
2028
2029 =item Complete Dissociation of Child from Parent
2030
2031 =item Safe Pipe Opens
2032
2033 =item Bidirectional Communication with Another Process
2034
2035 =item Bidirectional Communication with Yourself
2036
2037 =back
2038
2039 =item Sockets: Client/Server Communication
2040
2041 =over 4
2042
2043 =item Internet Line Terminators
2044
2045 =item Internet TCP Clients and Servers
2046
2047 =item Unix-Domain TCP Clients and Servers
2048
2049 =back
2050
2051 =item TCP Clients with IO::Socket
2052
2053 =over 4
2054
2055 =item A Simple Client
2056
2057 C<Proto>, C<PeerAddr>, C<PeerPort>
2058
2059 =item A Webget Client
2060
2061 =item Interactive Client with IO::Socket
2062
2063 =back
2064
2065 =item TCP Servers with IO::Socket
2066
2067 Proto, LocalPort, Listen, Reuse
2068
2069 =item UDP: Message Passing
2070
2071 =item SysV IPC
2072
2073 =item NOTES
2074
2075 =item BUGS
2076
2077 =item AUTHOR
2078
2079 =item SEE ALSO
2080
2081 =back
2082
2083 =head2 perlfork - Perl's fork() emulation (EXPERIMENTAL, subject to change)
2084
2085 =over 4
2086
2087 =item SYNOPSIS
2088
2089 =item DESCRIPTION
2090
2091 =over 4
2092
2093 =item Behavior of other Perl features in forked pseudo-processes
2094
2095 $$ or $PROCESS_ID, %ENV, chdir() and all other builtins that accept
2096 filenames, wait() and waitpid(), kill(), exec(), exit(), Open handles to
2097 files, directories and network sockets
2098
2099 =item Resource limits
2100
2101 =item Killing the parent process
2102
2103 =item Lifetime of the parent process and pseudo-processes
2104
2105 =item CAVEATS AND LIMITATIONS
2106
2107 BEGIN blocks, Open filehandles, Forking pipe open() not yet implemented,
2108 Global state maintained by XSUBs, Interpreter embedded in larger
2109 application, Thread-safety of extensions
2110
2111 =back
2112
2113 =item BUGS
2114
2115 =item AUTHOR
2116
2117 =item SEE ALSO
2118
2119 =back
2120
2121 =head2 perlnumber - semantics of numbers and numeric operations in Perl
2122
2123 =over 4
2124
2125 =item SYNOPSIS
2126
2127 =item DESCRIPTION
2128
2129 =item Storing numbers
2130
2131 =item Numeric operators and numeric conversions
2132
2133 =item Flavors of Perl numeric operations
2134
2135 Arithmetic operators except, C<no integer>, Arithmetic operators except,
2136 C<use integer>, Bitwise operators, C<no integer>, Bitwise operators, C<use
2137 integer>, Operators which expect an integer, Operators which expect a
2138 string
2139
2140 =item AUTHOR
2141
2142 =item SEE ALSO
2143
2144 =back
2145
2146 =head2 perlthrtut - tutorial on threads in Perl
2147
2148 =over 4
2149
2150 =item DESCRIPTION
2151
2152 =back
2153
2154 =head2 perlothrtut - old tutorial on threads in Perl
2155
2156 =over 4
2157
2158 =item DESCRIPTION
2159
2160 =item What Is A Thread Anyway?
2161
2162 =item Threaded Program Models
2163
2164 =over 4
2165
2166 =item Boss/Worker
2167
2168 =item Work Crew
2169
2170 =item Pipeline
2171
2172 =back
2173
2174 =item Native threads
2175
2176 =item What kind of threads are perl threads?
2177
2178 =item Threadsafe Modules
2179
2180 =item Thread Basics
2181
2182 =over 4
2183
2184 =item Basic Thread Support
2185
2186 =item Creating Threads
2187
2188 =item Giving up control
2189
2190 =item Waiting For A Thread To Exit
2191
2192 =item Errors In Threads
2193
2194 =item Ignoring A Thread
2195
2196 =back
2197
2198 =item Threads And Data
2199
2200 =over 4
2201
2202 =item Shared And Unshared Data
2203
2204 =item Thread Pitfall: Races
2205
2206 =item Controlling access: lock()
2207
2208 =item Thread Pitfall: Deadlocks
2209
2210 =item Queues: Passing Data Around
2211
2212 =back
2213
2214 =item Threads And Code
2215
2216 =over 4
2217
2218 =item Semaphores: Synchronizing Data Access
2219
2220 Basic semaphores, Advanced Semaphores
2221
2222 =item Attributes: Restricting Access To Subroutines
2223
2224 =item Subroutine Locks
2225
2226 =item Methods
2227
2228 =item Locking A Subroutine
2229
2230 =back
2231
2232 =item General Thread Utility Routines
2233
2234 =over 4
2235
2236 =item What Thread Am I In?
2237
2238 =item Thread IDs
2239
2240 =item Are These Threads The Same?
2241
2242 =item What Threads Are Running?
2243
2244 =back
2245
2246 =item A Complete Example
2247
2248 =item Conclusion
2249
2250 =item Bibliography
2251
2252 =over 4
2253
2254 =item Introductory Texts
2255
2256 =item OS-Related References
2257
2258 =item Other References
2259
2260 =back
2261
2262 =item Acknowledgements
2263
2264 =item AUTHOR
2265
2266 =item Copyrights
2267
2268 =back
2269
2270 =head2 perlport - Writing portable Perl
2271
2272 =over 4
2273
2274 =item DESCRIPTION
2275
2276 Not all Perl programs have to be portable, Nearly all of Perl already I<is>
2277 portable
2278
2279 =item ISSUES
2280
2281 =over 4
2282
2283 =item Newlines
2284
2285 =item Numbers endianness and Width
2286
2287 =item Files and Filesystems
2288
2289 =item System Interaction
2290
2291 =item Interprocess Communication (IPC)
2292
2293 =item External Subroutines (XS)
2294
2295 =item Standard Modules
2296
2297 =item Time and Date
2298
2299 =item Character sets and character encoding
2300
2301 =item Internationalisation
2302
2303 =item System Resources
2304
2305 =item Security
2306
2307 =item Style
2308
2309 =back
2310
2311 =item CPAN Testers
2312
2313 Mailing list: cpan-testers@perl.org, Testing results:
2314 http://testers.cpan.org/
2315
2316 =item PLATFORMS
2317
2318 =over 4
2319
2320 =item Unix
2321
2322 =item DOS and Derivatives
2323
2324 =item S<Mac OS>
2325
2326 =item VMS
2327
2328 =item VOS
2329
2330 =item EBCDIC Platforms
2331
2332 =item Acorn RISC OS
2333
2334 =item Other perls
2335
2336 =back
2337
2338 =item FUNCTION IMPLEMENTATIONS
2339
2340 =over 4
2341
2342 =item Alphabetical Listing of Perl Functions
2343
2344 -I<X> FILEHANDLE, -I<X> EXPR, -I<X>, alarm SECONDS, alarm, binmode
2345 FILEHANDLE, chmod LIST, chown LIST, chroot FILENAME, chroot, crypt
2346 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MODE, dump LABEL, exec
2347 LIST, exit EXPR, exit, fcntl FILEHANDLE,FUNCTION,SCALAR, flock
2348 FILEHANDLE,OPERATION, fork, getlogin, getpgrp PID, getppid, getpriority
2349 WHICH,WHO, getpwnam NAME, getgrnam NAME, getnetbyname NAME, getpwuid UID,
2350 getgrgid GID, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
2351 getservbyport PORT,PROTO, getpwent, getgrent, gethostent, getnetent,
2352 getprotoent, getservent, setpwent, setgrent, sethostent STAYOPEN, setnetent
2353 STAYOPEN, setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent,
2354 endhostent, endnetent, endprotoent, endservent, getsockopt
2355 SOCKET,LEVEL,OPTNAME, glob EXPR, glob, ioctl FILEHANDLE,FUNCTION,SCALAR,
2356 kill SIGNAL, LIST, link OLDFILE,NEWFILE, lstat FILEHANDLE, lstat EXPR,
2357 lstat, msgctl ID,CMD,ARG, msgget KEY,FLAGS, msgsnd ID,MSG,FLAGS, msgrcv
2358 ID,VAR,SIZE,TYPE,FLAGS, open FILEHANDLE,EXPR, open FILEHANDLE, pipe
2359 READHANDLE,WRITEHANDLE, readlink EXPR, readlink, select
2360 RBITS,WBITS,EBITS,TIMEOUT, semctl ID,SEMNUM,CMD,ARG, semget
2361 KEY,NSEMS,FLAGS, semop KEY,OPSTRING, setgrent, setpgrp PID,PGRP,
2362 setpriority WHICH,WHO,PRIORITY, setpwent, setsockopt
2363 SOCKET,LEVEL,OPTNAME,OPTVAL, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS,
2364 shmread ID,VAR,POS,SIZE, shmwrite ID,STRING,POS,SIZE, sockatmark SOCKET,
2365 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, stat FILEHANDLE, stat
2366 EXPR, stat, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
2367 FILEHANDLE,FILENAME,MODE,PERMS, system LIST, times, truncate
2368 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, umask EXPR, umask, utime LIST,
2369 wait, waitpid PID,FLAGS
2370
2371 =back
2372
2373 =item CHANGES
2374
2375 v1.48, 02 February 2001, v1.47, 22 March 2000, v1.46, 12 February 2000,
2376 v1.45, 20 December 1999, v1.44, 19 July 1999, v1.43, 24 May 1999, v1.42, 22
2377 May 1999, v1.41, 19 May 1999, v1.40, 11 April 1999, v1.39, 11 February
2378 1999, v1.38, 31 December 1998, v1.37, 19 December 1998, v1.36, 9 September
2379 1998, v1.35, 13 August 1998, v1.33, 06 August 1998, v1.32, 05 August 1998,
2380 v1.30, 03 August 1998, v1.23, 10 July 1998
2381
2382 =item Supported Platforms
2383
2384 =item SEE ALSO
2385
2386 =item AUTHORS / CONTRIBUTORS
2387
2388 =back
2389
2390 =head2 perllocale - Perl locale handling (internationalization and
2391 localization)
2392
2393 =over 4
2394
2395 =item DESCRIPTION
2396
2397 =item PREPARING TO USE LOCALES
2398
2399 =item USING LOCALES
2400
2401 =over 4
2402
2403 =item The use locale pragma
2404
2405 =item The setlocale function
2406
2407 =item Finding locales
2408
2409 =item LOCALE PROBLEMS
2410
2411 =item Temporarily fixing locale problems
2412
2413 =item Permanently fixing locale problems
2414
2415 =item Permanently fixing your system's locale configuration
2416
2417 =item Fixing system locale configuration
2418
2419 =item The localeconv function
2420
2421 =item I18N::Langinfo
2422
2423 =back
2424
2425 =item LOCALE CATEGORIES
2426
2427 =over 4
2428
2429 =item Category LC_COLLATE: Collation
2430
2431 =item Category LC_CTYPE: Character Types
2432
2433 =item Category LC_NUMERIC: Numeric Formatting
2434
2435 =item Category LC_MONETARY: Formatting of monetary amounts
2436
2437 =item LC_TIME
2438
2439 =item Other categories
2440
2441 =back
2442
2443 =item SECURITY
2444
2445 =item ENVIRONMENT
2446
2447 PERL_BADLANG, LC_ALL, LANGUAGE, LC_CTYPE, LC_COLLATE, LC_MONETARY,
2448 LC_NUMERIC, LC_TIME, LANG
2449
2450 =item NOTES
2451
2452 =over 4
2453
2454 =item Backward compatibility
2455
2456 =item I18N:Collate obsolete
2457
2458 =item Sort speed and memory use impacts
2459
2460 =item write() and LC_NUMERIC
2461
2462 =item Freely available locale definitions
2463
2464 =item I18n and l10n
2465
2466 =item An imperfect standard
2467
2468 =back
2469
2470 =item Unicode and UTF-8
2471
2472 =item BUGS
2473
2474 =over 4
2475
2476 =item Broken systems
2477
2478 =back
2479
2480 =item SEE ALSO
2481
2482 =item HISTORY
2483
2484 =back
2485
2486 =head2 perluniintro - Perl Unicode introduction
2487
2488 =over 4
2489
2490 =item DESCRIPTION
2491
2492 =over 4
2493
2494 =item Unicode
2495
2496 =item Perl's Unicode Support
2497
2498 =item Perl's Unicode Model
2499
2500 =item Unicode and EBCDIC
2501
2502 =item Creating Unicode
2503
2504 =item Handling Unicode
2505
2506 =item Legacy Encodings
2507
2508 =item Unicode I/O
2509
2510 =item Displaying Unicode As Text
2511
2512 =item Special Cases
2513
2514 =item Advanced Topics
2515
2516 =item Miscellaneous
2517
2518 =item Questions With Answers
2519
2520 , , , , , , 
2521
2522 =item Hexadecimal Notation
2523
2524 =item Further Resources
2525
2526 =back
2527
2528 =item UNICODE IN OLDER PERLS
2529
2530 =item SEE ALSO
2531
2532 =item ACKNOWLEDGEMENTS
2533
2534 =item AUTHOR, COPYRIGHT, AND LICENSE
2535
2536 =back
2537
2538 =head2 perlunicode - Unicode support in Perl
2539
2540 =over 4
2541
2542 =item DESCRIPTION
2543
2544 =over 4
2545
2546 =item Important Caveats
2547
2548 Input and Output Disciplines, Regular Expressions, C<use utf8> still needed
2549 to enable UTF-8/UTF-EBCDIC in scripts
2550
2551 =item Byte and Character semantics
2552
2553 =item Effects of character semantics
2554
2555 =item Scripts
2556
2557 =item Blocks
2558
2559 =item Character encodings for input and output
2560
2561 =item Unicode Regular Expression Support Level
2562
2563 =item Unicode Encodings
2564
2565 =item Security Implications of Malformed UTF-8
2566
2567 =item Unicode in Perl on EBCDIC
2568
2569 =item Locales
2570
2571 =item Using Unicode in XS
2572
2573 =back
2574
2575 =item BUGS
2576
2577 =item SEE ALSO
2578
2579 =back
2580
2581 =head2 perlebcdic - Considerations for running Perl on EBCDIC platforms
2582
2583 =over 4
2584
2585 =item DESCRIPTION
2586
2587 =item COMMON CHARACTER CODE SETS
2588
2589 =over 4
2590
2591 =item ASCII
2592
2593 =item ISO 8859
2594
2595 =item Latin 1 (ISO 8859-1)
2596
2597 =item EBCDIC
2598
2599 =item 13 variant characters
2600
2601 =item 0037
2602
2603 =item 1047
2604
2605 =item POSIX-BC
2606
2607 =item Unicode code points versus EBCDIC code points
2608
2609 =item Remaining Perl Unicode problems in EBCDIC
2610
2611 =item Unicode and UTF
2612
2613 =item Using Encode
2614
2615 =back
2616
2617 =item SINGLE OCTET TABLES
2618
2619 recipe 0, recipe 1, recipe 2, recipe 3, recipe 4, recipe 5, recipe 6
2620
2621 =item IDENTIFYING CHARACTER CODE SETS
2622
2623 =item CONVERSIONS
2624
2625 =over 4
2626
2627 =item tr///
2628
2629 =item iconv
2630
2631 =item C RTL
2632
2633 =back
2634
2635 =item OPERATOR DIFFERENCES
2636
2637 =item FUNCTION DIFFERENCES
2638
2639 chr(), ord(), pack(), print(), printf(), sort(), sprintf(), unpack()
2640
2641 =item REGULAR EXPRESSION DIFFERENCES
2642
2643 =item SOCKETS
2644
2645 =item SORTING
2646
2647 =over 4
2648
2649 =item Ignore ASCII vs. EBCDIC sort differences.
2650
2651 =item MONO CASE then sort data.
2652
2653 =item Convert, sort data, then re convert.
2654
2655 =item Perform sorting on one type of machine only.
2656
2657 =back
2658
2659 =item TRANSFORMATION FORMATS
2660
2661 =over 4
2662
2663 =item URL decoding and encoding
2664
2665 =item uu encoding and decoding
2666
2667 =item Quoted-Printable encoding and decoding
2668
2669 =item Caesarian ciphers
2670
2671 =back
2672
2673 =item Hashing order and checksums
2674
2675 =item I18N AND L10N
2676
2677 =item MULTI OCTET CHARACTER SETS
2678
2679 =item OS ISSUES
2680
2681 =over 4
2682
2683 =item OS/400 
2684
2685 IFS access
2686
2687 =item OS/390, z/OS
2688
2689 chcp, dataset access, OS/390, z/OS iconv, locales
2690
2691 =item VM/ESA?
2692
2693 =item POSIX-BC?
2694
2695 =back
2696
2697 =item BUGS
2698
2699 =item SEE ALSO
2700
2701 =item REFERENCES
2702
2703 =item HISTORY
2704
2705 =item AUTHOR
2706
2707 =back
2708
2709 =head2 perlsec - Perl security
2710
2711 =over 4
2712
2713 =item DESCRIPTION
2714
2715 =over 4
2716
2717 =item Laundering and Detecting Tainted Data
2718
2719 =item Switches On the "#!" Line
2720
2721 =item Cleaning Up Your Path
2722
2723 =item Security Bugs
2724
2725 =item Protecting Your Programs
2726
2727 =back
2728
2729 =item SEE ALSO
2730
2731 =back
2732
2733 =head2 perlmod - Perl modules (packages and symbol tables)
2734
2735 =over 4
2736
2737 =item DESCRIPTION
2738
2739 =over 4
2740
2741 =item Packages
2742
2743 =item Symbol Tables
2744
2745 =item Package Constructors and Destructors
2746
2747 =item Perl Classes
2748
2749 =item Perl Modules
2750
2751 =item Making your module threadsafe
2752
2753 =back
2754
2755 =item SEE ALSO
2756
2757 =back
2758
2759 =head2 perlmodinstall - Installing CPAN Modules
2760
2761 =over 4
2762
2763 =item DESCRIPTION
2764
2765 =over 4
2766
2767 =item PREAMBLE
2768
2769 B<DECOMPRESS> the file, B<UNPACK> the file into a directory, B<BUILD> the
2770 module (sometimes unnecessary), B<INSTALL> the module
2771
2772 =back
2773
2774 =item PORTABILITY
2775
2776 =item HEY
2777
2778 =item AUTHOR
2779
2780 =item COPYRIGHT
2781
2782 =back
2783
2784 =head2 perlmodlib - constructing new Perl modules and finding existing ones
2785
2786 =over 4
2787
2788 =item DESCRIPTION
2789
2790 =item THE PERL MODULE LIBRARY
2791
2792 =over 4
2793
2794 =item Pragmatic Modules
2795
2796 attributes, attrs, autouse, base, blib, bytes, charnames, constant,
2797 diagnostics, encoding, fields, filetest, if, integer, less, locale, open,
2798 ops, overload, re, sigtrap, sort, strict, subs, threads, utf8, vars,
2799 vmsish, warnings, warnings::register
2800
2801 =item Standard Modules
2802
2803 AnyDBM_File, Attribute::Handlers, AutoLoader, AutoSplit, B, B::Asmdata,
2804 B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC, B::Concise, B::Debug,
2805 B::Deparse, B::Disassembler, B::Lint, B::Showlex, B::Stackobj, B::Stash,
2806 B::Terse, B::Xref, Benchmark, ByteLoader, CGI, CGI::Apache, CGI::Carp,
2807 CGI::Cookie, CGI::Fast, CGI::Pretty, CGI::Push, CGI::Switch, CGI::Util,
2808 CPAN, CPAN::FirstTime, CPAN::Nox, Carp, Carp::Heavy, Class::ISA,
2809 Class::Struct, Cwd, DB, DB_File, Devel::SelfStubber, Digest, DirHandle,
2810 Dumpvalue, Encode, English, Env, Exporter, Exporter::Heavy,
2811 ExtUtils::Command, ExtUtils::Constant, ExtUtils::Embed, ExtUtils::Install,
2812 ExtUtils::Installed, ExtUtils::Liblist, ExtUtils::MM_BeOS,
2813 ExtUtils::MM_Cygwin, ExtUtils::MM_NW5, ExtUtils::MM_OS2, ExtUtils::MM_Unix,
2814 ExtUtils::MM_VMS, ExtUtils::MM_Win32, ExtUtils::MakeMaker,
2815 ExtUtils::Manifest, ExtUtils::Mkbootstrap, ExtUtils::Mksymlists,
2816 ExtUtils::Packlist, ExtUtils::testlib, Fatal, Fcntl, File::Basename,
2817 File::CheckTree, File::Compare, File::Copy, File::DosGlob, File::Find,
2818 File::Path, File::Spec, File::Spec::Cygwin, File::Spec::Epoc,
2819 File::Spec::Functions, File::Spec::Mac, File::Spec::OS2, File::Spec::Unix,
2820 File::Spec::VMS, File::Spec::Win32, File::Temp, File::stat, FileCache,
2821 FileHandle, Filter::Simple, FindBin, Getopt::Long, Getopt::Std, Hash::Util,
2822 I18N::Collate, I18N::LangTags, I18N::LangTags::List, IO, IPC::Open2,
2823 IPC::Open3, Locale::Constants, Locale::Country, Locale::Currency,
2824 Locale::Language, Locale::Maketext, Locale::Maketext::TPJ13,
2825 Locale::Script, Math::BigFloat, Math::BigInt, Math::BigInt::Calc,
2826 Math::Complex, Math::Trig, Memoize, Memoize::AnyDBM_File, Memoize::Expire,
2827 Memoize::ExpireFile, Memoize::ExpireTest, Memoize::NDBM_File,
2828 Memoize::SDBM_File, Memoize::Storable, NDBM_File, NEXT, Net::Cmd,
2829 Net::Config, Net::Domain, Net::FTP, Net::NNTP, Net::Netrc, Net::POP3,
2830 Net::Ping, Net::SMTP, Net::Time, Net::hostent, Net::libnetFAQ, Net::netent,
2831 Net::protoent, Net::servent, O, ODBM_File, Opcode, POSIX, PerlIO,
2832 Pod::Checker, Pod::Find, Pod::Functions, Pod::Html, Pod::InputObjects,
2833 Pod::LaTeX, Pod::Man, Pod::ParseLink, Pod::ParseUtils, Pod::Parser,
2834 Pod::Plainer, Pod::Select, Pod::Text, Pod::Text::Color,
2835 Pod::Text::Overstrike, Pod::Text::Termcap, Pod::Usage, Pod::t::basic,
2836 SDBM_File, Safe, Search::Dict, SelectSaver, SelfLoader, Shell, Socket,
2837 Storable, Switch, Symbol, Term::ANSIColor, Term::Cap, Term::Complete,
2838 Term::ReadLine, Test, Test::Builder, Test::Harness, Test::Harness::Assert,
2839 Test::Harness::Iterator, Test::Harness::Straps, Test::More, Test::Simple,
2840 Test::Tutorial, Text::Abbrev, Text::Balanced, Text::ParseWords,
2841 Text::Soundex, Text::Tabs, Text::Wrap, Thread, Tie::Array, Tie::File,
2842 Tie::Handle, Tie::Hash, Tie::Memoize, Tie::RefHash, Tie::Scalar,
2843 Tie::SubstrHash, Time::Local, Time::gmtime, Time::localtime, Time::tm,
2844 UNIVERSAL, Unicode::Collate, Unicode::UCD, User::grent, User::pwent, Win32
2845
2846 =item Extension Modules
2847
2848 =back
2849
2850 =item CPAN
2851
2852 =over 4
2853
2854 =item Africa
2855
2856 =item Asia
2857
2858 =item Central America
2859
2860 =item Europe
2861
2862 =item North America
2863
2864 =item Oceania
2865
2866 =item South America
2867
2868 =back
2869
2870 =item Modules: Creation, Use, and Abuse
2871
2872 =over 4
2873
2874 =item Guidelines for Module Creation
2875
2876 =item Guidelines for Converting Perl 4 Library Scripts into Modules
2877
2878 =item Guidelines for Reusing Application Code
2879
2880 =back
2881
2882 =item NOTE
2883
2884 =back
2885
2886 =head2 perlmodstyle - Perl module style guide
2887
2888 =over 4
2889
2890 =item INTRODUCTION
2891
2892 =item QUICK CHECKLIST
2893
2894 =over 4
2895
2896 =item Before you start
2897
2898 =item The API
2899
2900 =item Stability
2901
2902 =item Documentation
2903
2904 =item Release considerations
2905
2906 =back
2907
2908 =item BEFORE YOU START WRITING A MODULE
2909
2910 =over 4
2911
2912 =item Has it been done before?
2913
2914 =item Do one thing and do it well
2915
2916 =item What's in a name?
2917
2918 =back
2919
2920 =item DESIGNING AND WRITING YOUR MODULE
2921
2922 =over 4
2923
2924 =item To OO or not to OO?
2925
2926 =item Designing your API
2927
2928 Write simple routines to do simple things, Separate functionality from
2929 output, Provide sensible shortcuts and defaults, Naming conventions,
2930 Parameter passing
2931
2932 =item Strictness and warnings
2933
2934 =item Backwards compatibility
2935
2936 =item Error handling and messages
2937
2938 =back
2939
2940 =item DOCUMENTING YOUR MODULE
2941
2942 =over 4
2943
2944 =item POD
2945
2946 =item README, INSTALL, release notes, changelogs
2947
2948 =back
2949
2950 =item RELEASE CONSIDERATIONS
2951
2952 =over 4
2953
2954 =item Version numbering
2955
2956 =item Pre-requisites
2957
2958 =item Testing
2959
2960 =item Packaging
2961
2962 =item Licensing
2963
2964 =back
2965
2966 =item COMMON PITFALLS
2967
2968 =over 4
2969
2970 =item Reinventing the wheel
2971
2972 =item Trying to do too much
2973
2974 =item Inappropriate documentation
2975
2976 =back
2977
2978 =item SEE ALSO
2979
2980 L<perlstyle>, L<perlnewmod>, L<perlpod>, L<podchecker>, Testing tools,
2981 http://pause.perl.org/, Any good book on software engineering
2982
2983 =item AUTHOR
2984
2985 =back
2986
2987 =head2 perlnewmod - preparing a new module for distribution
2988
2989 =over 4
2990
2991 =item DESCRIPTION
2992
2993 =over 4
2994
2995 =item Warning
2996
2997 =item What should I make into a module?
2998
2999 =item Step-by-step: Preparing the ground
3000
3001 Look around, Check it's new, Discuss the need, Choose a name, Check again
3002
3003 =item Step-by-step: Making the module
3004
3005 Start with F<h2xs>, Use L<strict|strict> and L<warnings|warnings>, Use
3006 L<Carp|Carp>, Use L<Exporter|Exporter> - wisely!, Use L<plain old
3007 documentation|perlpod>, Write tests, Write the README
3008
3009 =item Step-by-step: Distributing your module
3010
3011 Get a CPAN user ID, C<perl Makefile.PL; make test; make dist>, Upload the
3012 tarball, Announce to the modules list, Announce to clpa, Fix bugs!
3013
3014 =back
3015
3016 =item AUTHOR
3017
3018 =item SEE ALSO
3019
3020 =back
3021
3022 =head2 perlfaq1 - General Questions About Perl ($Revision: 1.7 $, $Date:
3023 2002/02/21 14:49:15 $)
3024
3025 =over 4
3026
3027 =item DESCRIPTION
3028
3029 =over 4
3030
3031 =item What is Perl?
3032
3033 =item Who supports Perl?  Who develops it?  Why is it free?
3034
3035 =item Which version of Perl should I use?
3036
3037 =item What are perl4 and perl5?
3038
3039 =item What is perl6?
3040
3041 =item How stable is Perl?
3042
3043 =item Is Perl difficult to learn?
3044
3045 =item How does Perl compare with other languages like Java, Python, REXX,
3046 Scheme, or Tcl?
3047
3048 =item Can I do [task] in Perl?
3049
3050 =item When shouldn't I program in Perl?
3051
3052 =item What's the difference between "perl" and "Perl"?
3053
3054 =item Is it a Perl program or a Perl script?
3055
3056 =item What is a JAPH?
3057
3058 =item Where can I get a list of Larry Wall witticisms?
3059
3060 =item How can I convince my sysadmin/supervisor/employees to use version
3061 5/5.6.1/Perl instead of some other language?
3062
3063 =back
3064
3065 =item AUTHOR AND COPYRIGHT
3066
3067 =back
3068
3069 =head2 perlfaq2 - Obtaining and Learning about Perl ($Revision: 1.9 $,
3070 $Date: 2002/03/09 21:01:13 $)
3071
3072 =over 4
3073
3074 =item DESCRIPTION
3075
3076 =over 4
3077
3078 =item What machines support Perl?  Where do I get it?
3079
3080 =item How can I get a binary version of Perl?
3081
3082 =item I don't have a C compiler on my system.  How can I compile perl?
3083
3084 =item I copied the Perl binary from one machine to another, but scripts
3085 don't work.
3086
3087 =item I grabbed the sources and tried to compile but gdbm/dynamic
3088 loading/malloc/linking/... failed.  How do I make it work?
3089
3090 =item What modules and extensions are available for Perl?  What is CPAN? 
3091 What does CPAN/src/... mean?
3092
3093 =item Is there an ISO or ANSI certified version of Perl?
3094
3095 =item Where can I get information on Perl?
3096
3097 =item What are the Perl newsgroups on Usenet?  Where do I post questions?
3098
3099 =item Where should I post source code?
3100
3101 =item Perl Books
3102
3103 References, Tutorials, Task-Oriented, Special Topics
3104
3105 =item Perl in Magazines
3106
3107 =item Perl on the Net: FTP and WWW Access
3108
3109 =item What mailing lists are there for Perl?
3110
3111 =item Archives of comp.lang.perl.misc
3112
3113 =item Where can I buy a commercial version of Perl?
3114
3115 =item Where do I send bug reports?
3116
3117 =item What is perl.com? Perl Mongers? pm.org? perl.org? cpan.org?
3118
3119 =back
3120
3121 =item AUTHOR AND COPYRIGHT
3122
3123 =back
3124
3125 =head2 perlfaq3 - Programming Tools ($Revision: 1.15 $, $Date: 2002/02/11
3126 19:29:52 $)
3127
3128 =over 4
3129
3130 =item DESCRIPTION
3131
3132 =over 4
3133
3134 =item How do I do (anything)?
3135
3136 =item How can I use Perl interactively?
3137
3138 =item Is there a Perl shell?
3139
3140 =item How do I debug my Perl programs?
3141
3142 =item How do I profile my Perl programs?
3143
3144 =item How do I cross-reference my Perl programs?
3145
3146 =item Is there a pretty-printer (formatter) for Perl?
3147
3148 =item Is there a ctags for Perl?
3149
3150 =item Is there an IDE or Windows Perl Editor?
3151
3152 Komodo, The Object System, Open Perl IDE, PerlBuilder, visiPerl+,
3153 CodeMagicCD, GNU Emacs, MicroEMACS, XEmacs, Elvis, Vile, Vim, Codewright,
3154 MultiEdit, SlickEdit, Bash, Ksh, Tcsh, Zsh, BBEdit and BBEdit Lite, Alpha
3155
3156 =item Where can I get Perl macros for vi?
3157
3158 =item Where can I get perl-mode for emacs?
3159
3160 =item How can I use curses with Perl?
3161
3162 =item How can I use X or Tk with Perl?
3163
3164 =item How can I generate simple menus without using CGI or Tk?
3165
3166 =item How can I make my Perl program run faster?
3167
3168 =item How can I make my Perl program take less memory?
3169
3170 Don't slurp!, Use map and grep selectively, Avoid unnecessary quotes and
3171 stringification, Pass by reference, Tie large variables to disk
3172
3173 =item Is it unsafe to return a pointer to local data?
3174
3175 =item How can I free an array or hash so my program shrinks?
3176
3177 =item How can I make my CGI script more efficient?
3178
3179 =item How can I hide the source for my Perl program?
3180
3181 =item How can I compile my Perl program into byte code or C?
3182
3183 =item How can I compile Perl into Java?
3184
3185 =item How can I get C<#!perl> to work on [MS-DOS,NT,...]?
3186
3187 =item Can I write useful Perl programs on the command line?
3188
3189 =item Why don't Perl one-liners work on my DOS/Mac/VMS system?
3190
3191 =item Where can I learn about CGI or Web programming in Perl?
3192
3193 =item Where can I learn about object-oriented Perl programming?
3194
3195 =item Where can I learn about linking C with Perl? [h2xs, xsubpp]
3196
3197 =item I've read perlembed, perlguts, etc., but I can't embed perl in
3198 my C program; what am I doing wrong?
3199
3200 =item When I tried to run my script, I got this message. What does it mean?
3201
3202 =item What's MakeMaker?
3203
3204 =back
3205
3206 =item AUTHOR AND COPYRIGHT
3207
3208 =back
3209
3210 =head2 perlfaq4 - Data Manipulation ($Revision: 1.19 $, $Date: 2002/03/11
3211 22:15:19 $)
3212
3213 =over 4
3214
3215 =item DESCRIPTION
3216
3217 =item Data: Numbers
3218
3219 =over 4
3220
3221 =item Why am I getting long decimals (eg, 19.9499999999999) instead of the
3222 numbers I should be getting (eg, 19.95)?
3223
3224 =item Why isn't my octal data interpreted correctly?
3225
3226 =item Does Perl have a round() function?  What about ceil() and floor()? 
3227 Trig functions?
3228
3229 =item How do I convert between numeric representations?
3230
3231 B<How do I convert Hexadecimal into decimal:>, B<How do I convert from
3232 decimal to hexadecimal:>, B<How do I convert from octal to decimal:>, B<How
3233 do I convert from decimal to octal:>, B<How do I convert from binary to
3234 decimal:>, B<How do I convert from decimal to binary:>
3235
3236 =item Why doesn't & work the way I want it to?
3237
3238 =item How do I multiply matrices?
3239
3240 =item How do I perform an operation on a series of integers?
3241
3242 =item How can I output Roman numerals?
3243
3244 =item Why aren't my random numbers random?
3245
3246 =item How do I get a random number between X and Y?
3247
3248 =back
3249
3250 =item Data: Dates
3251
3252 =over 4
3253
3254 =item How do I find the week-of-the-year/day-of-the-year?
3255
3256 =item How do I find the current century or millennium?
3257
3258 =item How can I compare two dates and find the difference?
3259
3260 =item How can I take a string and turn it into epoch seconds?
3261
3262 =item How can I find the Julian Day?
3263
3264 =item How do I find yesterday's date?
3265
3266 =item Does Perl have a Year 2000 problem?  Is Perl Y2K compliant?
3267
3268 =back
3269
3270 =item Data: Strings
3271
3272 =over 4
3273
3274 =item How do I validate input?
3275
3276 =item How do I unescape a string?
3277
3278 =item How do I remove consecutive pairs of characters?
3279
3280 =item How do I expand function calls in a string?
3281
3282 =item How do I find matching/nesting anything?
3283
3284 =item How do I reverse a string?
3285
3286 =item How do I expand tabs in a string?
3287
3288 =item How do I reformat a paragraph?
3289
3290 =item How can I access/change the first N letters of a string?
3291
3292 =item How do I change the Nth occurrence of something?
3293
3294 =item How can I count the number of occurrences of a substring within a
3295 string?
3296
3297 =item How do I capitalize all the words on one line?
3298
3299 =item How can I split a [character] delimited string except when inside
3300 [character]? (Comma-separated files)
3301
3302 =item How do I strip blank space from the beginning/end of a string?
3303
3304 =item How do I pad a string with blanks or pad a number with zeroes?
3305
3306 =item How do I extract selected columns from a string?
3307
3308 =item How do I find the soundex value of a string?
3309
3310 =item How can I expand variables in text strings?
3311
3312 =item What's wrong with always quoting "$vars"?
3313
3314 =item Why don't my <<HERE documents work?
3315
3316 1. There must be no space after the << part, 2. There (probably) should be
3317 a semicolon at the end, 3. You can't (easily) have any space in front of
3318 the tag
3319
3320 =back
3321
3322 =item Data: Arrays
3323
3324 =over 4
3325
3326 =item What is the difference between a list and an array?
3327
3328 =item What is the difference between $array[1] and @array[1]?
3329
3330 =item How can I remove duplicate elements from a list or array?
3331
3332 a), b), c), d), e)
3333
3334 =item How can I tell whether a certain element is contained in a list or
3335 array?
3336
3337 =item How do I compute the difference of two arrays?  How do I compute the
3338 intersection of two arrays?
3339
3340 =item How do I test whether two arrays or hashes are equal?
3341
3342 =item How do I find the first array element for which a condition is true?
3343
3344 =item How do I handle linked lists?
3345
3346 =item How do I handle circular lists?
3347
3348 =item How do I shuffle an array randomly?
3349
3350 =item How do I process/modify each element of an array?
3351
3352 =item How do I select a random element from an array?
3353
3354 =item How do I permute N elements of a list?
3355
3356 =item How do I sort an array by (anything)?
3357
3358 =item How do I manipulate arrays of bits?
3359
3360 =item Why does defined() return true on empty arrays and hashes?
3361
3362 =back
3363
3364 =item Data: Hashes (Associative Arrays)
3365
3366 =over 4
3367
3368 =item How do I process an entire hash?
3369
3370 =item What happens if I add or remove keys from a hash while iterating over
3371 it?
3372
3373 =item How do I look up a hash element by value?
3374
3375 =item How can I know how many entries are in a hash?
3376
3377 =item How do I sort a hash (optionally by value instead of key)?
3378
3379 =item How can I always keep my hash sorted?
3380
3381 =item What's the difference between "delete" and "undef" with hashes?
3382
3383 =item Why don't my tied hashes make the defined/exists distinction?
3384
3385 =item How do I reset an each() operation part-way through?
3386
3387 =item How can I get the unique keys from two hashes?
3388
3389 =item How can I store a multidimensional array in a DBM file?
3390
3391 =item How can I make my hash remember the order I put elements into it?
3392
3393 =item Why does passing a subroutine an undefined element in a hash create
3394 it?
3395
3396 =item How can I make the Perl equivalent of a C structure/C++ class/hash or
3397 array of hashes or arrays?
3398
3399 =item How can I use a reference as a hash key?
3400
3401 =back
3402
3403 =item Data: Misc
3404
3405 =over 4
3406
3407 =item How do I handle binary data correctly?
3408
3409 =item How do I determine whether a scalar is a number/whole/integer/float?
3410
3411 =item How do I keep persistent data across program calls?
3412
3413 =item How do I print out or copy a recursive data structure?
3414
3415 =item How do I define methods for every class/object?
3416
3417 =item How do I verify a credit card checksum?
3418
3419 =item How do I pack arrays of doubles or floats for XS code?
3420
3421 =back
3422
3423 =item AUTHOR AND COPYRIGHT
3424
3425 =back
3426
3427 =head2 perlfaq5 - Files and Formats ($Revision: 1.12 $, $Date: 2002/03/11
3428 22:25:25 $)
3429
3430 =over 4
3431
3432 =item DESCRIPTION
3433
3434 =over 4
3435
3436 =item How do I flush/unbuffer an output filehandle?  Why must I do this?
3437
3438 =item How do I change one line in a file/delete a line in a file/insert a
3439 line in the middle of a file/append to the beginning of a file?
3440
3441 =item How do I count the number of lines in a file?
3442
3443 =item How do I make a temporary file name?
3444
3445 =item How can I manipulate fixed-record-length files?
3446
3447 =item How can I make a filehandle local to a subroutine?  How do I pass
3448 filehandles between subroutines?  How do I make an array of filehandles?
3449
3450 =item How can I use a filehandle indirectly?
3451
3452 =item How can I set up a footer format to be used with write()?
3453
3454 =item How can I write() into a string?
3455
3456 =item How can I output my numbers with commas added?
3457
3458 =item How can I translate tildes (~) in a filename?
3459
3460 =item How come when I open a file read-write it wipes it out?
3461
3462 =item Why do I sometimes get an "Argument list too long" when I use <*>?
3463
3464 =item Is there a leak/bug in glob()?
3465
3466 =item How can I open a file with a leading ">" or trailing blanks?
3467
3468 =item How can I reliably rename a file?
3469
3470 =item How can I lock a file?
3471
3472 =item Why can't I just open(FH, ">file.lock")?
3473
3474 =item I still don't get locking.  I just want to increment the number in
3475 the file.  How can I do this?
3476
3477 =item All I want to do is append a small amount of text to the end of a
3478 file.  Do I still have to use locking?
3479
3480 =item How do I randomly update a binary file?
3481
3482 =item How do I get a file's timestamp in perl?
3483
3484 =item How do I set a file's timestamp in perl?
3485
3486 =item How do I print to more than one file at once?
3487
3488 =item How can I read in an entire file all at once?
3489
3490 =item How can I read in a file by paragraphs?
3491
3492 =item How can I read a single character from a file?  From the keyboard?
3493
3494 =item How can I tell whether there's a character waiting on a filehandle?
3495
3496 =item How do I do a C<tail -f> in perl?
3497
3498 =item How do I dup() a filehandle in Perl?
3499
3500 =item How do I close a file descriptor by number?
3501
3502 =item Why can't I use "C:\temp\foo" in DOS paths?  Why doesn't
3503 `C:\temp\foo.exe` work?
3504
3505 =item Why doesn't glob("*.*") get all the files?
3506
3507 =item Why does Perl let me delete read-only files?  Why does C<-i> clobber
3508 protected files?  Isn't this a bug in Perl?
3509
3510 =item How do I select a random line from a file?
3511
3512 =item Why do I get weird spaces when I print an array of lines?
3513
3514 =back
3515
3516 =item AUTHOR AND COPYRIGHT
3517
3518 =back
3519
3520 =head2 perlfaq6 - Regular Expressions ($Revision: 1.8 $, $Date: 2002/01/31
3521 04:27:55 $)
3522
3523 =over 4
3524
3525 =item DESCRIPTION
3526
3527 =over 4
3528
3529 =item How can I hope to use regular expressions without creating illegible
3530 and unmaintainable code?
3531
3532 Comments Outside the Regex, Comments Inside the Regex, Different Delimiters
3533
3534 =item I'm having trouble matching over more than one line.  What's wrong?
3535
3536 =item How can I pull out lines between two patterns that are themselves on
3537 different lines?
3538
3539 =item I put a regular expression into $/ but it didn't work. What's wrong?
3540
3541 =item How do I substitute case insensitively on the LHS while preserving
3542 case on the RHS?
3543
3544 =item How can I make C<\w> match national character sets?
3545
3546 =item How can I match a locale-smart version of C</[a-zA-Z]/>?
3547
3548 =item How can I quote a variable to use in a regex?
3549
3550 =item What is C</o> really for?
3551
3552 =item How do I use a regular expression to strip C style comments from a
3553 file?
3554
3555 =item Can I use Perl regular expressions to match balanced text?
3556
3557 =item What does it mean that regexes are greedy?  How can I get around it?
3558
3559 =item How do I process each word on each line?
3560
3561 =item How can I print out a word-frequency or line-frequency summary?
3562
3563 =item How can I do approximate matching?
3564
3565 =item How do I efficiently match many regular expressions at once?
3566
3567 =item Why don't word-boundary searches with C<\b> work for me?
3568
3569 =item Why does using $&, $`, or $' slow my program down?
3570
3571 =item What good is C<\G> in a regular expression?
3572
3573 =item Are Perl regexes DFAs or NFAs?  Are they POSIX compliant?
3574
3575 =item What's wrong with using grep or map in a void context?
3576
3577 =item How can I match strings with multibyte characters?
3578
3579 =item How do I match a pattern that is supplied by the user?
3580
3581 =back
3582
3583 =item AUTHOR AND COPYRIGHT
3584
3585 =back
3586
3587 =head2 perlfaq7 - General Perl Language Issues ($Revision: 1.7 $, $Date:
3588 2002/01/31 04:27:55 $)
3589
3590 =over 4
3591
3592 =item DESCRIPTION
3593
3594 =over 4
3595
3596 =item Can I get a BNF/yacc/RE for the Perl language?
3597
3598 =item What are all these $@%&* punctuation signs, and how do I know when to
3599 use them?
3600
3601 =item Do I always/never have to quote my strings or use semicolons and
3602 commas?
3603
3604 =item How do I skip some return values?
3605
3606 =item How do I temporarily block warnings?
3607
3608 =item What's an extension?
3609
3610 =item Why do Perl operators have different precedence than C operators?
3611
3612 =item How do I declare/create a structure?
3613
3614 =item How do I create a module?
3615
3616 =item How do I create a class?
3617
3618 =item How can I tell if a variable is tainted?
3619
3620 =item What's a closure?
3621
3622 =item What is variable suicide and how can I prevent it?
3623
3624 =item How can I pass/return a {Function, FileHandle, Array, Hash, Method,
3625 Regex}?
3626
3627 Passing Variables and Functions, Passing Filehandles, Passing Regexes,
3628 Passing Methods
3629
3630 =item How do I create a static variable?
3631
3632 =item What's the difference between dynamic and lexical (static) scoping? 
3633 Between local() and my()?
3634
3635 =item How can I access a dynamic variable while a similarly named lexical
3636 is in scope?
3637
3638 =item What's the difference between deep and shallow binding?
3639
3640 =item Why doesn't "my($foo) = <FILE>;" work right?
3641
3642 =item How do I redefine a builtin function, operator, or method?
3643
3644 =item What's the difference between calling a function as &foo and foo()?
3645
3646 =item How do I create a switch or case statement?
3647
3648 =item How can I catch accesses to undefined variables/functions/methods?
3649
3650 =item Why can't a method included in this same file be found?
3651
3652 =item How can I find out my current package?
3653
3654 =item How can I comment out a large block of perl code?
3655
3656 =item How do I clear a package?
3657
3658 =item How can I use a variable as a variable name?
3659
3660 =back
3661
3662 =item AUTHOR AND COPYRIGHT
3663
3664 =back
3665
3666 =head2 perlfaq8 - System Interaction ($Revision: 1.6 $, $Date: 2002/01/28
3667 04:17:27 $)
3668
3669 =over 4
3670
3671 =item DESCRIPTION
3672
3673 =over 4
3674
3675 =item How do I find out which operating system I'm running under?
3676
3677 =item How come exec() doesn't return?
3678
3679 =item How do I do fancy stuff with the keyboard/screen/mouse?
3680
3681 Keyboard, Screen, Mouse
3682
3683 =item How do I print something out in color?
3684
3685 =item How do I read just one key without waiting for a return key?
3686
3687 =item How do I check whether input is ready on the keyboard?
3688
3689 =item How do I clear the screen?
3690
3691 =item How do I get the screen size?
3692
3693 =item How do I ask the user for a password?
3694
3695 =item How do I read and write the serial port?
3696
3697 lockfiles, open mode, end of line, flushing output, non-blocking input
3698
3699 =item How do I decode encrypted password files?
3700
3701 =item How do I start a process in the background?
3702
3703 STDIN, STDOUT, and STDERR are shared, Signals, Zombies
3704
3705 =item How do I trap control characters/signals?
3706
3707 =item How do I modify the shadow password file on a Unix system?
3708
3709 =item How do I set the time and date?
3710
3711 =item How can I sleep() or alarm() for under a second?
3712
3713 =item How can I measure time under a second?
3714
3715 =item How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
3716
3717 =item Why doesn't my sockets program work under System V (Solaris)?  What
3718 does the error message "Protocol not supported" mean?
3719
3720 =item How can I call my system's unique C functions from Perl?
3721
3722 =item Where do I get the include files to do ioctl() or syscall()?
3723
3724 =item Why do setuid perl scripts complain about kernel problems?
3725
3726 =item How can I open a pipe both to and from a command?
3727
3728 =item Why can't I get the output of a command with system()?
3729
3730 =item How can I capture STDERR from an external command?
3731
3732 =item Why doesn't open() return an error when a pipe open fails?
3733
3734 =item What's wrong with using backticks in a void context?
3735
3736 =item How can I call backticks without shell processing?
3737
3738 =item Why can't my script read from STDIN after I gave it EOF (^D on Unix,
3739 ^Z on MS-DOS)?
3740
3741 =item How can I convert my shell script to perl?
3742
3743 =item Can I use perl to run a telnet or ftp session?
3744
3745 =item How can I write expect in Perl?
3746
3747 =item Is there a way to hide perl's command line from programs such as
3748 "ps"?
3749
3750 =item I {changed directory, modified my environment} in a perl script.  How
3751 come the change disappeared when I exited the script?  How do I get my
3752 changes to be visible?
3753
3754 Unix
3755
3756 =item How do I close a process's filehandle without waiting for it to
3757 complete?
3758
3759 =item How do I fork a daemon process?
3760
3761 =item How do I find out if I'm running interactively or not?
3762
3763 =item How do I timeout a slow event?
3764
3765 =item How do I set CPU limits?
3766
3767 =item How do I avoid zombies on a Unix system?
3768
3769 =item How do I use an SQL database?
3770
3771 =item How do I make a system() exit on control-C?
3772
3773 =item How do I open a file without blocking?
3774
3775 =item How do I install a module from CPAN?
3776
3777 =item What's the difference between require and use?
3778
3779 =item How do I keep my own module/library directory?
3780
3781 =item How do I add the directory my program lives in to the module/library
3782 search path?
3783
3784 =item How do I add a directory to my include path at runtime?
3785
3786 =item What is socket.ph and where do I get it?
3787
3788 =back
3789
3790 =item AUTHOR AND COPYRIGHT
3791
3792 =back
3793
3794 =head2 perlfaq9 - Networking ($Revision: 1.7 $, $Date: 2002/01/28 04:17:27
3795 $)
3796
3797 =over 4
3798
3799 =item DESCRIPTION
3800
3801 =over 4
3802
3803 =item What is the correct form of response from a CGI script?
3804
3805 =item My CGI script runs from the command line but not the browser.  (500
3806 Server Error)
3807
3808 =item How can I get better error messages from a CGI program?
3809
3810 =item How do I remove HTML from a string?
3811
3812 =item How do I extract URLs?
3813
3814 =item How do I download a file from the user's machine?  How do I open a
3815 file on another machine?
3816
3817 =item How do I make a pop-up menu in HTML?
3818
3819 =item How do I fetch an HTML file?
3820
3821 =item How do I automate an HTML form submission?
3822
3823 =item How do I decode or create those %-encodings on the web?
3824
3825 =item How do I redirect to another page?
3826
3827 =item How do I put a password on my web pages?
3828
3829 =item How do I edit my .htpasswd and .htgroup files with Perl?
3830
3831 =item How do I make sure users can't enter values into a form that cause my
3832 CGI script to do bad things?
3833
3834 =item How do I parse a mail header?
3835
3836 =item How do I decode a CGI form?
3837
3838 =item How do I check a valid mail address?
3839
3840 =item How do I decode a MIME/BASE64 string?
3841
3842 =item How do I return the user's mail address?
3843
3844 =item How do I send mail?
3845
3846 =item How do I use MIME to make an attachment to a mail message?
3847
3848 =item How do I read mail?
3849
3850 =item How do I find out my hostname/domainname/IP address?
3851
3852 =item How do I fetch a news article or the active newsgroups?
3853
3854 =item How do I fetch/put an FTP file?
3855
3856 =item How can I do RPC in Perl?
3857
3858 =back
3859
3860 =item AUTHOR AND COPYRIGHT
3861
3862 =back
3863
3864 =head2 perlcompile - Introduction to the Perl Compiler-Translator 
3865
3866 =over 4
3867
3868 =item DESCRIPTION
3869
3870 =over 4
3871
3872 =item Layout
3873
3874 B::Bytecode, B::C, B::CC, B::Lint, B::Deparse, B::Xref
3875
3876 =back
3877
3878 =item Using The Back Ends
3879
3880 =over 4
3881
3882 =item The Cross Referencing Back End
3883
3884 i, &, s, r
3885
3886 =item The Decompiling Back End
3887
3888 =item The Lint Back End
3889
3890 =item The Simple C Back End
3891
3892 =item The Bytecode Back End
3893
3894 =item The Optimized C Back End
3895
3896 B, O, B::Asmdata, B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC,
3897 B::Debug, B::Deparse, B::Disassembler, B::Lint, B::Showlex, B::Stackobj,
3898 B::Stash, B::Terse, B::Xref
3899
3900 =back
3901
3902 =item KNOWN PROBLEMS
3903
3904 =item AUTHOR
3905
3906 =back
3907
3908 =head2 perlembed - how to embed perl in your C program
3909
3910 =over 4
3911
3912 =item DESCRIPTION
3913
3914 =over 4
3915
3916 =item PREAMBLE
3917
3918 B<Use C from Perl?>, B<Use a Unix program from Perl?>, B<Use Perl from
3919 Perl?>, B<Use C from C?>, B<Use Perl from C?>
3920
3921 =item ROADMAP
3922
3923 =item Compiling your C program
3924
3925 =item Adding a Perl interpreter to your C program
3926
3927 =item Calling a Perl subroutine from your C program
3928
3929 =item Evaluating a Perl statement from your C program
3930
3931 =item Performing Perl pattern matches and substitutions from your C program
3932
3933 =item Fiddling with the Perl stack from your C program
3934
3935 =item Maintaining a persistent interpreter
3936
3937 =item Execution of END blocks
3938
3939 =item Maintaining multiple interpreter instances
3940
3941 =item Using Perl modules, which themselves use C libraries, from your C
3942 program
3943
3944 =back
3945
3946 =item Embedding Perl under Win32
3947
3948 =item MORAL
3949
3950 =item AUTHOR
3951
3952 =item COPYRIGHT
3953
3954 =back
3955
3956 =head2 perldebguts - Guts of Perl debugging 
3957
3958 =over 4
3959
3960 =item DESCRIPTION
3961
3962 =item Debugger Internals
3963
3964 =over 4
3965
3966 =item Writing Your Own Debugger
3967
3968 =back
3969
3970 =item Frame Listing Output Examples
3971
3972 =item Debugging regular expressions
3973
3974 =over 4
3975
3976 =item Compile-time output
3977
3978 C<anchored> I<STRING> C<at> I<POS>, C<floating> I<STRING> C<at>
3979 I<POS1..POS2>, C<matching floating/anchored>, C<minlen>, C<stclass>
3980 I<TYPE>, C<noscan>, C<isall>, C<GPOS>, C<plus>, C<implicit>, C<with eval>,
3981 C<anchored(TYPE)>
3982
3983 =item Types of nodes
3984
3985 =item Run-time output
3986
3987 =back
3988
3989 =item Debugging Perl memory usage
3990
3991 =over 4
3992
3993 =item Using C<$ENV{PERL_DEBUG_MSTATS}>
3994
3995 C<buckets SMALLEST(APPROX)..GREATEST(APPROX)>, Free/Used, C<Total sbrk():
3996 SBRKed/SBRKs:CONTINUOUS>, C<pad: 0>, C<heads: 2192>, C<chain: 0>, C<tail:
3997 6144>
3998
3999 =item Example of using B<-DL> switch
4000
4001 C<717>, C<002>, C<054>, C<602>, C<702>, C<704>
4002
4003 =item B<-DL> details
4004
4005 C<!!!>, C<!!>, C<!>
4006
4007 =item Limitations of B<-DL> statistics
4008
4009 =back
4010
4011 =item SEE ALSO
4012
4013 =back
4014
4015 =head2 perlxstut, perlXStut - Tutorial for writing XSUBs
4016
4017 =over 4
4018
4019 =item DESCRIPTION
4020
4021 =item SPECIAL NOTES
4022
4023 =over 4
4024
4025 =item make
4026
4027 =item Version caveat
4028
4029 =item Dynamic Loading versus Static Loading
4030
4031 =back
4032
4033 =item TUTORIAL
4034
4035 =over 4
4036
4037 =item EXAMPLE 1
4038
4039 =item EXAMPLE 2
4040
4041 =item What has gone on?
4042
4043 =item Writing good test scripts
4044
4045 =item EXAMPLE 3
4046
4047 =item What's new here?
4048
4049 =item Input and Output Parameters
4050
4051 =item The XSUBPP Program
4052
4053 =item The TYPEMAP file
4054
4055 =item Warning about Output Arguments
4056
4057 =item EXAMPLE 4
4058
4059 =item What has happened here?
4060
4061 =item Anatomy of .xs file
4062
4063 =item Getting the fat out of XSUBs
4064
4065 =item More about XSUB arguments
4066
4067 =item The Argument Stack
4068
4069 =item Extending your Extension
4070
4071 =item Documenting your Extension
4072
4073 =item Installing your Extension
4074
4075 =item EXAMPLE 5
4076
4077 =item New Things in this Example
4078
4079 =item EXAMPLE 6
4080
4081 =item New Things in this Example
4082
4083 =item EXAMPLE 7 (Coming Soon)
4084
4085 =item EXAMPLE 8 (Coming Soon)
4086
4087 =item EXAMPLE 9 (Coming Soon)
4088
4089 =item Troubleshooting these Examples
4090
4091 =back
4092
4093 =item See also
4094
4095 =item Author
4096
4097 =over 4
4098
4099 =item Last Changed
4100
4101 =back
4102
4103 =back
4104
4105 =head2 perlxs - XS language reference manual
4106
4107 =over 4
4108
4109 =item DESCRIPTION
4110
4111 =over 4
4112
4113 =item Introduction
4114
4115 =item On The Road
4116
4117 =item The Anatomy of an XSUB
4118
4119 =item The Argument Stack
4120
4121 =item The RETVAL Variable
4122
4123 =item The MODULE Keyword
4124
4125 =item The PACKAGE Keyword
4126
4127 =item The PREFIX Keyword
4128
4129 =item The OUTPUT: Keyword
4130
4131 =item The NO_OUTPUT Keyword
4132
4133 =item The CODE: Keyword
4134
4135 =item The INIT: Keyword
4136
4137 =item The NO_INIT Keyword
4138
4139 =item Initializing Function Parameters
4140
4141 =item Default Parameter Values
4142
4143 =item The PREINIT: Keyword
4144
4145 =item The SCOPE: Keyword
4146
4147 =item The INPUT: Keyword
4148
4149 =item The IN/OUTLIST/IN_OUTLIST/OUT/IN_OUT Keywords
4150
4151 =item The C<length(NAME)> Keyword
4152
4153 =item Variable-length Parameter Lists
4154
4155 =item The C_ARGS: Keyword
4156
4157 =item The PPCODE: Keyword
4158
4159 =item Returning Undef And Empty Lists
4160
4161 =item The REQUIRE: Keyword
4162
4163 =item The CLEANUP: Keyword
4164
4165 =item The POSTCALL: Keyword
4166
4167 =item The BOOT: Keyword
4168
4169 =item The VERSIONCHECK: Keyword
4170
4171 =item The PROTOTYPES: Keyword
4172
4173 =item The PROTOTYPE: Keyword
4174
4175 =item The ALIAS: Keyword
4176
4177 =item The OVERLOAD: Keyword
4178
4179 =item The INTERFACE: Keyword
4180
4181 =item The INTERFACE_MACRO: Keyword
4182
4183 =item The INCLUDE: Keyword
4184
4185 =item The CASE: Keyword
4186
4187 =item The & Unary Operator
4188
4189 =item Inserting POD, Comments and C Preprocessor Directives
4190
4191 =item Using XS With C++
4192
4193 =item Interface Strategy
4194
4195 =item Perl Objects And C Structures
4196
4197 =item The Typemap
4198
4199 =item Safely Storing Static Data in XS
4200
4201 MY_CXT_KEY, typedef my_cxt_t, START_MY_CXT, MY_CXT_INIT, dMY_CXT, MY_CXT
4202
4203 =back
4204
4205 =item EXAMPLES
4206
4207 =item XS VERSION
4208
4209 =item AUTHOR
4210
4211 =back
4212
4213 =head2 perlclib - Internal replacements for standard C library functions
4214
4215 =over 4
4216
4217 =item DESCRIPTION
4218
4219 =over 4
4220
4221 =item Conventions
4222
4223 C<t>, C<p>, C<n>, C<s>
4224
4225 =item File Operations
4226
4227 =item File Input and Output
4228
4229 =item File Positioning
4230
4231 =item Memory Management and String Handling
4232
4233 =item Character Class Tests
4234
4235 =item F<stdlib.h> functions
4236
4237 =item Miscellaneous functions
4238
4239 =back
4240
4241 =item SEE ALSO
4242
4243 =back
4244
4245 =head2 perlguts - Introduction to the Perl API
4246
4247 =over 4
4248
4249 =item DESCRIPTION
4250
4251 =item Variables
4252
4253 =over 4
4254
4255 =item Datatypes
4256
4257 =item What is an "IV"?
4258
4259 =item Working with SVs
4260
4261 =item Offsets
4262
4263 =item What's Really Stored in an SV?
4264
4265 =item Working with AVs
4266
4267 =item Working with HVs
4268
4269 =item Hash API Extensions
4270
4271 =item References
4272
4273 =item Blessed References and Class Objects
4274
4275 =item Creating New Variables
4276
4277 =item Reference Counts and Mortality
4278
4279 =item Stashes and Globs
4280
4281 =item Double-Typed SVs
4282
4283 =item Magic Variables
4284
4285 =item Assigning Magic
4286
4287 =item Magic Virtual Tables
4288
4289 =item Finding Magic
4290
4291 =item Understanding the Magic of Tied Hashes and Arrays
4292
4293 =item Localizing changes
4294
4295 C<SAVEINT(int i)>, C<SAVEIV(IV i)>, C<SAVEI32(I32 i)>, C<SAVELONG(long i)>,
4296 C<SAVESPTR(s)>, C<SAVEPPTR(p)>, C<SAVEFREESV(SV *sv)>, C<SAVEMORTALIZESV(SV
4297 *sv)>, C<SAVEFREEOP(OP *op)>, C<SAVEFREEPV(p)>, C<SAVECLEARSV(SV *sv)>,
4298 C<SAVEDELETE(HV *hv, char *key, I32 length)>,
4299 C<SAVEDESTRUCTOR(DESTRUCTORFUNC_NOCONTEXT_t f, void *p)>,
4300 C<SAVEDESTRUCTOR_X(DESTRUCTORFUNC_t f, void *p)>, C<SAVESTACK_POS()>, C<SV*
4301 save_scalar(GV *gv)>, C<AV* save_ary(GV *gv)>, C<HV* save_hash(GV *gv)>,
4302 C<void save_item(SV *item)>, C<void save_list(SV **sarg, I32 maxsarg)>,
4303 C<SV* save_svref(SV **sptr)>, C<void save_aptr(AV **aptr)>, C<void
4304 save_hptr(HV **hptr)>
4305
4306 =back
4307
4308 =item Subroutines
4309
4310 =over 4
4311
4312 =item XSUBs and the Argument Stack
4313
4314 =item Calling Perl Routines from within C Programs
4315
4316 =item Memory Allocation
4317
4318 =item PerlIO
4319
4320 =item Putting a C value on Perl stack
4321
4322 =item Scratchpads
4323
4324 =item Scratchpads and recursion
4325
4326 =back
4327
4328 =item Compiled code
4329
4330 =over 4
4331
4332 =item Code tree
4333
4334 =item Examining the tree
4335
4336 =item Compile pass 1: check routines
4337
4338 =item Compile pass 1a: constant folding
4339
4340 =item Compile pass 2: context propagation
4341
4342 =item Compile pass 3: peephole optimization
4343
4344 =item Pluggable runops
4345
4346 =back
4347
4348 =item Examining internal data structures with the C<dump> functions
4349
4350 =item How multiple interpreters and concurrency are supported
4351
4352 =over 4
4353
4354 =item Background and PERL_IMPLICIT_CONTEXT
4355
4356 =item So what happened to dTHR?
4357
4358 =item How do I use all this in extensions?
4359
4360 =item Should I do anything special if I call perl from multiple threads?
4361
4362 =item Future Plans and PERL_IMPLICIT_SYS
4363
4364 =back
4365
4366 =item Internal Functions
4367
4368 A, p, d, s, n, r, f, M, o, j, x
4369
4370 =over 4
4371
4372 =item Formatted Printing of IVs, UVs, and NVs
4373
4374 =item Pointer-To-Integer and Integer-To-Pointer
4375
4376 =item Source Documentation
4377
4378 =back
4379
4380 =item Unicode Support
4381
4382 =over 4
4383
4384 =item What B<is> Unicode, anyway?
4385
4386 =item How can I recognise a UTF8 string?
4387
4388 =item How does UTF8 represent Unicode characters?
4389
4390 =item How does Perl store UTF8 strings?
4391
4392 =item How do I convert a string to UTF8?
4393
4394 =item Is there anything else I need to know?
4395
4396 =back
4397
4398 =item Custom Operators
4399
4400 =item AUTHORS
4401
4402 =item SEE ALSO
4403
4404 =back
4405
4406 =head2 perlcall - Perl calling conventions from C
4407
4408 =over 4
4409
4410 =item DESCRIPTION
4411
4412 An Error Handler, An Event Driven Program
4413
4414 =item THE CALL_ FUNCTIONS
4415
4416 call_sv, call_pv, call_method, call_argv
4417
4418 =item FLAG VALUES
4419
4420 =over 4
4421
4422 =item  G_VOID
4423
4424 =item  G_SCALAR
4425
4426 =item G_ARRAY
4427
4428 =item G_DISCARD
4429
4430 =item G_NOARGS
4431
4432 =item G_EVAL
4433
4434 =item G_KEEPERR
4435
4436 =item Determining the Context
4437
4438 =back
4439
4440 =item KNOWN PROBLEMS
4441
4442 =item EXAMPLES
4443
4444 =over 4
4445
4446 =item No Parameters, Nothing returned
4447
4448 =item Passing Parameters
4449
4450 =item Returning a Scalar
4451
4452 =item Returning a list of values
4453
4454 =item Returning a list in a scalar context
4455
4456 =item Returning Data from Perl via the parameter list
4457
4458 =item Using G_EVAL
4459
4460 =item Using G_KEEPERR
4461
4462 =item Using call_sv
4463
4464 =item Using call_argv
4465
4466 =item Using call_method
4467
4468 =item Using GIMME_V
4469
4470 =item Using Perl to dispose of temporaries
4471
4472 =item Strategies for storing Callback Context Information
4473
4474 1. Ignore the problem - Allow only 1 callback, 2. Create a sequence of
4475 callbacks - hard wired limit, 3. Use a parameter to map to the Perl
4476 callback
4477
4478 =item Alternate Stack Manipulation
4479
4480 =item Creating and calling an anonymous subroutine in C
4481
4482 =back
4483
4484 =item SEE ALSO
4485
4486 =item AUTHOR
4487
4488 =item DATE
4489
4490 =back
4491
4492 =head2 perlutil - utilities packaged with the Perl distribution
4493
4494 =over 4
4495
4496 =item DESCRIPTION
4497
4498 =over 4
4499
4500 =item DOCUMENTATION
4501
4502 L<perldoc|perldoc>, L<pod2man|pod2man> and L<pod2text|pod2text>,
4503 L<pod2html|pod2html> and L<pod2latex|pod2latex>, L<pod2usage|pod2usage>,
4504 L<podselect|podselect>, L<podchecker|podchecker>, L<splain|splain>,
4505 L<roffitall|roffitall>
4506
4507 =item CONVERTORS
4508
4509 L<a2p|a2p>, L<s2p|s2p>, L<find2perl|find2perl>
4510
4511 =item Administration
4512
4513 L<libnetcfg|libnetcfg>
4514
4515 =item Development
4516
4517 L<perlbug|perlbug>, L<h2ph|h2ph>, L<c2ph|c2ph> and L<pstruct|pstruct>,
4518 L<h2xs|h2xs>, L<dprofpp|dprofpp>, L<perlcc|perlcc>
4519
4520 =item SEE ALSO
4521
4522 =back
4523
4524 =back
4525
4526 =head2 perlfilter - Source Filters
4527
4528 =over 4
4529
4530 =item DESCRIPTION
4531
4532 =item CONCEPTS
4533
4534 =item USING FILTERS
4535
4536 =item WRITING A SOURCE FILTER
4537
4538 =item WRITING A SOURCE FILTER IN C
4539
4540 B<Decryption Filters>
4541
4542 =item CREATING A SOURCE FILTER AS A SEPARATE EXECUTABLE
4543
4544 =item WRITING A SOURCE FILTER IN PERL
4545
4546 =item USING CONTEXT: THE DEBUG FILTER
4547
4548 =item CONCLUSION
4549
4550 =item REQUIREMENTS
4551
4552 =item AUTHOR
4553
4554 =item Copyrights
4555
4556 =back
4557
4558 =head2 perldbmfilter - Perl DBM Filters
4559
4560 =over 4
4561
4562 =item SYNOPSIS
4563
4564 =item DESCRIPTION
4565
4566 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
4567 B<filter_fetch_value>
4568
4569 =over 4
4570
4571 =item The Filter
4572
4573 =item An Example -- the NULL termination problem.
4574
4575 =item Another Example -- Key is a C int.
4576
4577 =back
4578
4579 =item SEE ALSO
4580
4581 =item AUTHOR
4582
4583 =back
4584
4585 =head2 perlapi - autogenerated documentation for the perl public API
4586
4587 =over 4
4588
4589 =item DESCRIPTION
4590
4591 =item "Gimme" Values
4592
4593 GIMME, GIMME_V, G_ARRAY, G_DISCARD, G_EVAL, G_NOARGS, G_SCALAR, G_VOID
4594
4595 =item Array Manipulation Functions
4596
4597 AvFILL, av_clear, av_delete, av_exists, av_extend, av_fetch, av_fill,
4598 av_len, av_make, av_pop, av_push, av_shift, av_store, av_undef, av_unshift,
4599 get_av, newAV, Nullav, sortsv
4600
4601 =item Callback Functions
4602
4603 call_argv, call_method, call_pv, call_sv, ENTER, eval_pv, eval_sv,
4604 FREETMPS, LEAVE, SAVETMPS
4605
4606 =item Character classes
4607
4608 isALNUM, isALPHA, isDIGIT, isLOWER, isSPACE, isUPPER, toLOWER, toUPPER
4609
4610 =item Cloning an interpreter
4611
4612 perl_clone
4613
4614 =item CV Manipulation Functions
4615
4616 CvSTASH, get_cv, Nullcv
4617
4618 =item Embedding Functions
4619
4620 load_module, perl_alloc, perl_construct, perl_destruct, perl_free,
4621 perl_parse, perl_run, require_pv
4622
4623 =item Functions in file pp_pack.c
4624
4625 pack_cat, unpack_str
4626
4627 =item Global Variables
4628
4629 PL_modglobal, PL_na, PL_sv_no, PL_sv_undef, PL_sv_yes
4630
4631 =item GV Functions
4632
4633 GvSV, gv_fetchmeth, gv_fetchmethod, gv_fetchmethod_autoload,
4634 gv_fetchmeth_autoload, gv_stashpv, gv_stashsv
4635
4636 =item Handy Values
4637
4638 HEf_SVKEY, Nullch, Nullsv
4639
4640 =item Hash Manipulation Functions
4641
4642 get_hv, HeHASH, HeKEY, HeKLEN, HePV, HeSVKEY, HeSVKEY_force, HeSVKEY_set,
4643 HeVAL, HvNAME, hv_clear, hv_delete, hv_delete_ent, hv_exists,
4644 hv_exists_ent, hv_fetch, hv_fetch_ent, hv_iterinit, hv_iterkey,
4645 hv_iterkeysv, hv_iternext, hv_iternextsv, hv_iterval, hv_magic, hv_store,
4646 hv_store_ent, hv_undef, newHV, Nullhv
4647
4648 =item Magical Functions
4649
4650 mg_clear, mg_copy, mg_find, mg_free, mg_get, mg_length, mg_magical, mg_set,
4651 SvGETMAGIC, SvLOCK, SvSETMAGIC, SvSetMagicSV, SvSetMagicSV_nosteal,
4652 SvSetSV, SvSetSV_nosteal, SvSHARE
4653
4654 =item Memory Management
4655
4656 Copy, Move, New, Newc, NEWSV, Newz, Renew, Renewc, Safefree, savepv,
4657 savepvn, savesharedpv, StructCopy, Zero
4658
4659 =item Miscellaneous Functions
4660
4661 fbm_compile, fbm_instr, form, getcwd_sv, strEQ, strGE, strGT, strLE, strLT,
4662 strNE, strnEQ, strnNE
4663
4664 =item Numeric functions
4665
4666 grok_bin, grok_hex, grok_number, grok_numeric_radix, grok_oct, scan_bin,
4667 scan_hex, scan_oct
4668
4669 =item Optree Manipulation Functions
4670
4671 cv_const_sv, newCONSTSUB, newXS
4672
4673 =item Stack Manipulation Macros
4674
4675 dMARK, dORIGMARK, dSP, EXTEND, MARK, ORIGMARK, POPi, POPl, POPn, POPp,
4676 POPpbytex, POPpx, POPs, PUSHi, PUSHMARK, PUSHn, PUSHp, PUSHs, PUSHu,
4677 PUTBACK, SP, SPAGAIN, XPUSHi, XPUSHn, XPUSHp, XPUSHs, XPUSHu, XSRETURN,
4678 XSRETURN_IV, XSRETURN_NO, XSRETURN_NV, XSRETURN_PV, XSRETURN_UNDEF,
4679 XSRETURN_YES, XST_mIV, XST_mNO, XST_mNV, XST_mPV, XST_mUNDEF, XST_mYES
4680
4681 =item SV Flags
4682
4683 svtype, SVt_IV, SVt_NV, SVt_PV, SVt_PVAV, SVt_PVCV, SVt_PVHV, SVt_PVMG
4684
4685 =item SV Manipulation Functions
4686
4687 get_sv, looks_like_number, memcmp_byte_utf8, newRV_inc, newRV_noinc, newSV,
4688 newSViv, newSVnv, newSVpv, newSVpvf, newSVpvn, newSVpvn_share, newSVrv,
4689 newSVsv, newSVuv, new_vstring, SvCUR, SvCUR_set, SvEND, SvGROW, SvIOK,
4690 SvIOKp, SvIOK_notUV, SvIOK_off, SvIOK_on, SvIOK_only, SvIOK_only_UV,
4691 SvIOK_UV, SvIV, SvIVx, SvIVX, SvLEN, SvNIOK, SvNIOKp, SvNIOK_off, SvNOK,
4692 SvNOKp, SvNOK_off, SvNOK_on, SvNOK_only, SvNV, SvNVx, SvNVX, SvOK, SvOOK,
4693 SvPOK, SvPOKp, SvPOK_off, SvPOK_on, SvPOK_only, SvPOK_only_UTF8, SvPV,
4694 SvPVbyte, SvPVbytex, SvPVbytex_force, SvPVbyte_force, SvPVbyte_nolen,
4695 SvPVutf8, SvPVutf8x, SvPVutf8x_force, SvPVutf8_force, SvPVutf8_nolen,
4696 SvPVx, SvPVX, SvPV_force, SvPV_force_nomg, SvPV_nolen, SvREFCNT,
4697 SvREFCNT_dec, SvREFCNT_inc, SvROK, SvROK_off, SvROK_on, SvRV, SvSTASH,
4698 SvTAINT, SvTAINTED, SvTAINTED_off, SvTAINTED_on, SvTRUE, SvTYPE, SvUNLOCK,
4699 SvUOK, SvUPGRADE, SvUTF8, SvUTF8_off, SvUTF8_on, SvUV, SvUVx, SvUVX,
4700 sv_2bool, sv_2cv, sv_2io, sv_2iv, sv_2mortal, sv_2nv, sv_2pvbyte,
4701 sv_2pvbyte_nolen, sv_2pvutf8, sv_2pvutf8_nolen, sv_2pv_flags, sv_2pv_nolen,
4702 sv_2uv, sv_backoff, sv_bless, sv_catpv, sv_catpvf, sv_catpvf_mg, sv_catpvn,
4703 sv_catpvn_flags, sv_catpvn_mg, sv_catpv_mg, sv_catsv, sv_catsv_flags,
4704 sv_catsv_mg, sv_chop, sv_clear, sv_cmp, sv_cmp_locale, sv_collxfrm,
4705 sv_copypv, sv_dec, sv_derived_from, sv_eq, sv_force_normal,
4706 sv_force_normal_flags, sv_free, sv_gets, sv_grow, sv_inc, sv_insert,
4707 sv_isa, sv_isobject, sv_iv, sv_len, sv_len_utf8, sv_magic, sv_magicext,
4708 sv_mortalcopy, sv_newmortal, sv_newref, sv_nolocking, sv_nosharing,
4709 sv_nounlocking, sv_nv, sv_pos_b2u, sv_pos_u2b, sv_pv, sv_pvbyte,
4710 sv_pvbyten, sv_pvbyten_force, sv_pvn, sv_pvn_force, sv_pvn_force_flags,
4711 sv_pvutf8, sv_pvutf8n, sv_pvutf8n_force, sv_reftype, sv_replace,
4712 sv_report_used, sv_reset, sv_rvweaken, sv_setiv, sv_setiv_mg, sv_setnv,
4713 sv_setnv_mg, sv_setpv, sv_setpvf, sv_setpvf_mg, sv_setpviv, sv_setpviv_mg,
4714 sv_setpvn, sv_setpvn_mg, sv_setpv_mg, sv_setref_iv, sv_setref_nv,
4715 sv_setref_pv, sv_setref_pvn, sv_setref_uv, sv_setsv, sv_setsv_flags,
4716 sv_setsv_mg, sv_setuv, sv_setuv_mg, sv_taint, sv_tainted, sv_true,
4717 sv_unmagic, sv_unref, sv_unref_flags, sv_untaint, sv_upgrade, sv_usepvn,
4718 sv_usepvn_mg, sv_utf8_decode, sv_utf8_downgrade, sv_utf8_encode,
4719 sv_utf8_upgrade, sv_utf8_upgrade_flags, sv_uv, sv_vcatpvfn, sv_vsetpvfn
4720
4721 =item Unicode Support
4722
4723 bytes_from_utf8, bytes_to_utf8, ibcmp_utf8, is_utf8_char, is_utf8_string,
4724 pv_uni_display, sv_recode_to_utf8, sv_uni_display, to_utf8_case,
4725 to_utf8_fold, to_utf8_lower, to_utf8_title, to_utf8_upper, utf8n_to_uvchr,
4726 utf8n_to_uvuni, utf8_distance, utf8_hop, utf8_length, utf8_to_bytes,
4727 utf8_to_uvchr, utf8_to_uvuni, uvchr_to_utf8, uvuni_to_utf8_flags
4728
4729 =item Variables created by C<xsubpp> and C<xsubpp> internal functions
4730
4731 ax, CLASS, dAX, dITEMS, dXSARGS, dXSI32, items, ix, newXSproto, RETVAL, ST,
4732 THIS, XS, XSRETURN_EMPTY, XS_VERSION, XS_VERSION_BOOTCHECK
4733
4734 =item Warning and Dieing
4735
4736 croak, warn
4737
4738 =item AUTHORS
4739
4740 =item SEE ALSO
4741
4742 =back
4743
4744 =head2 perlintern - autogenerated documentation of purely B<internal>
4745                  Perl functions
4746
4747 =over 4
4748
4749 =item DESCRIPTION
4750
4751 =item Global Variables
4752
4753 PL_DBsingle, PL_DBsub, PL_DBtrace, PL_dowarn, PL_last_in_gv, PL_ofs_sv,
4754 PL_rs
4755
4756 =item GV Functions
4757
4758 is_gv_magical
4759
4760 =item IO Functions
4761
4762 start_glob
4763
4764 =item Pad Data Structures
4765
4766 CvPADLIST
4767
4768 =item Stack Manipulation Macros
4769
4770 djSP, LVRET
4771
4772 =item SV Manipulation Functions
4773
4774 report_uninit, sv_add_arena, sv_clean_all, sv_clean_objs, sv_free_arenas
4775
4776 =item AUTHORS
4777
4778 =item SEE ALSO
4779
4780 =back
4781
4782 =head2 perliol - C API for Perl's implementation of IO in Layers.
4783
4784 =over 4
4785
4786 =item SYNOPSIS
4787
4788 =item DESCRIPTION
4789
4790 =over 4
4791
4792 =item History and Background
4793
4794 =item Layers vs Disciplines
4795
4796 =item Data Structures
4797
4798 =item Functions and Attributes
4799
4800 =item Per-instance Data
4801
4802 =item Layers in action.
4803
4804 =item Per-instance flag bits
4805
4806 PERLIO_F_EOF, PERLIO_F_CANWRITE,  PERLIO_F_CANREAD, PERLIO_F_ERROR,
4807 PERLIO_F_TRUNCATE, PERLIO_F_APPEND, PERLIO_F_CRLF, PERLIO_F_UTF8,
4808 PERLIO_F_UNBUF, PERLIO_F_WRBUF, PERLIO_F_RDBUF, PERLIO_F_LINEBUF,
4809 PERLIO_F_TEMP, PERLIO_F_OPEN, PERLIO_F_FASTGETS
4810
4811 =item Methods in Detail
4812
4813 name, size, kind, PERLIO_K_BUFFERED, PERLIO_K_CANCRLF, PERLIO_K_FASTGETS,
4814 PERLIO_K_MULTIARG, PERLIO_K_RAW, Pushed, Popped, Open, Getarg, Fileno, Dup,
4815 Read, Write, Seek, Tell, Close, Flush, Fill, Eof, Error,  Clearerr,
4816 Setlinebuf, Get_base, Get_bufsiz, Get_ptr, Get_cnt, Set_ptrcnt
4817
4818 =item Core Layers
4819
4820 "unix", "perlio", "stdio", "crlf", "mmap", "pending", "raw", "utf8"
4821
4822 =item Extension Layers
4823
4824 ":encoding", ":Scalar", ":Object" or ":Perl"
4825
4826 =back
4827
4828 =item TODO
4829
4830 =back
4831
4832 =head2 perlapio - perl's IO abstraction interface.
4833
4834 =over 4
4835
4836 =item SYNOPSIS
4837
4838 =item DESCRIPTION
4839
4840 1. USE_STDIO, 2. USE_SFIO, 3. USE_PERLIO, B<PerlIO_stdin()>,
4841 B<PerlIO_stdout()>, B<PerlIO_stderr()>, B<PerlIO_open(path, mode)>,
4842 B<PerlIO_fdopen(fd,mode)>, B<PerlIO_reopen(path,mode,f)>,
4843 B<PerlIO_printf(f,fmt,...)>, B<PerlIO_vprintf(f,fmt,a)>,
4844 B<PerlIO_stdoutf(fmt,...)>, B<PerlIO_read(f,buf,count)>,
4845 B<PerlIO_write(f,buf,count)>, B<PerlIO_close(f)>, B<PerlIO_puts(f,s)>,
4846 B<PerlIO_putc(f,c)>, B<PerlIO_ungetc(f,c)>, B<PerlIO_getc(f)>,
4847 B<PerlIO_eof(f)>, B<PerlIO_error(f)>, B<PerlIO_fileno(f)>,
4848 B<PerlIO_clearerr(f)>, B<PerlIO_flush(f)>, B<PerlIO_seek(f,offset,whence)>,
4849 B<PerlIO_tell(f)>, B<PerlIO_getpos(f,p)>, B<PerlIO_setpos(f,p)>,
4850 B<PerlIO_rewind(f)>, B<PerlIO_tmpfile()>, B<PerlIO_setlinebuf(f)>
4851
4852 =over 4
4853
4854 =item Co-existence with stdio
4855
4856 B<PerlIO_importFILE(f,flags)>, B<PerlIO_exportFILE(f,flags)>,
4857 B<PerlIO_findFILE(f)>, B<PerlIO_releaseFILE(p,f)>
4858
4859 =item "Fast gets" Functions
4860
4861 B<PerlIO_fast_gets(f)>, B<PerlIO_has_cntptr(f)>, B<PerlIO_get_cnt(f)>,
4862 B<PerlIO_get_ptr(f)>, B<PerlIO_set_ptrcnt(f,p,c)>, B<PerlIO_canset_cnt(f)>,
4863 B<PerlIO_set_cnt(f,c)>, B<PerlIO_has_base(f)>, B<PerlIO_get_base(f)>,
4864 B<PerlIO_get_bufsiz(f)>
4865
4866 =item Other Functions
4867
4868 PerlIO_apply_layers(f,mode,layers), PerlIO_binmode(f,ptype,imode,layers),
4869 'E<lt>' read, 'E<gt>' write, '+' read/write, PerlIO_debug(fmt,...)
4870
4871 =back
4872
4873 =back
4874
4875 =head2 perltodo - Perl TO-DO List
4876
4877 =over 4
4878
4879 =item DESCRIPTION
4880
4881 =item To do during 5.6.x
4882
4883 =over 4
4884
4885 =item Support for I/O disciplines
4886
4887 =item Autoload bytes.pm
4888
4889 =item Make "\u{XXXX}" et al work
4890
4891 =item Create a char *sv_pvprintify(sv, STRLEN *lenp, UV flags)
4892
4893 =item Overloadable regex assertions
4894
4895 =item Unicode
4896
4897 =item use Thread for iThreads
4898
4899 =item make perl_clone optionally clone ops
4900
4901 =item Work out exit/die semantics for threads
4902
4903 =item Typed lexicals for compiler
4904
4905 =item Compiler workarounds for Win32
4906
4907 =item AUTOLOADing in the compiler
4908
4909 =item Fixing comppadlist when compiling
4910
4911 =item Cleaning up exported namespace
4912
4913 =item Complete signal handling
4914
4915 =item Out-of-source builds
4916
4917 =item POSIX realtime support
4918
4919 =item UNIX98 support
4920
4921 =item IPv6 Support
4922
4923 =item Long double conversion
4924
4925 =item Locales
4926
4927 =item Thread-safe regexes
4928
4929 =item Arithmetic on non-Arabic numerals
4930
4931 =item POSIX Unicode character classes
4932
4933 =item Factoring out common suffices/prefices in regexps (trie optimization)
4934
4935 =item Security audit shipped utilities
4936
4937 =item Sort out the uid-setting mess
4938
4939 =item Custom opcodes
4940
4941 =item DLL Versioning
4942
4943 =item Introduce @( and @)
4944
4945 =item Floating point handling
4946
4947 =item IV/UV preservation
4948
4949 =item Replace pod2html with something using Pod::Parser
4950
4951 =item Automate module testing on CPAN
4952
4953 =item sendmsg and recvmsg
4954
4955 =item Rewrite perlre documentation
4956
4957 =item Convert example code to IO::Handle filehandles
4958
4959 =item Document Win32 choices
4960
4961 =item Check new modules
4962
4963 =item Make roffitall find pods and libs itself
4964
4965 =back
4966
4967 =item To do at some point
4968
4969 =over 4
4970
4971 =item Remove regular expression recursion
4972
4973 =item Memory leaks after failed eval
4974
4975 =item bitfields in pack
4976
4977 =item Cross compilation
4978
4979 =item Perl preprocessor / macros
4980
4981 =item Perl lexer in Perl
4982
4983 =item Using POSIX calls internally
4984
4985 =item -i rename file when changed
4986
4987 =item All ARGV input should act like E<lt>E<gt>
4988
4989 =item Support for rerunning debugger
4990
4991 =item Test Suite for the Debugger
4992
4993 =item my sub foo { }
4994
4995 =item One-pass global destruction
4996
4997 =item Rewrite regexp parser
4998
4999 =item Cache recently used regexps
5000
5001 =item Re-entrant functions
5002
5003 =item Cross-compilation support
5004
5005 =item Bit-shifting bitvectors
5006
5007 =item debugger pragma
5008
5009 =item use less pragma
5010
5011 =item switch structures
5012
5013 =item Cache eval tree
5014
5015 =item rcatmaybe
5016
5017 =item Shrink opcode tables
5018
5019 =item Optimize away @_
5020
5021 =item Prototypes versus indirect objects
5022
5023 =item Install HTML
5024
5025 =item Prototype method calls
5026
5027 =item Return context prototype declarations
5028
5029 =item magic_setisa
5030
5031 =item Garbage collection
5032
5033 =item IO tutorial
5034
5035 =item Rewrite perldoc
5036
5037 =item Install .3p manpages
5038
5039 =item Unicode tutorial
5040
5041 =item Update POSIX.pm for 1003.1-2
5042
5043 =item Retargetable installation
5044
5045 =item POSIX emulation on non-POSIX systems
5046
5047 =item Rename Win32 headers
5048
5049 =item Finish off lvalue functions
5050
5051 =item Update sprintf documentation
5052
5053 =item Use fchown/fchmod internally
5054
5055 =item Make v-strings overloaded objects
5056
5057 =item Allow restricted hash assignment
5058
5059 =back
5060
5061 =item Vague ideas
5062
5063 =over 4
5064
5065 =item ref() in list context
5066
5067 =item Make tr/// return histogram of characters in list context
5068
5069 =item Compile to real threaded code
5070
5071 =item Structured types
5072
5073 =item Modifiable $1 et al.
5074
5075 =item Procedural interfaces for IO::*, etc.
5076
5077 =item RPC modules
5078
5079 =item Attach/detach debugger from running program
5080
5081 =item GUI::Native
5082
5083 =item foreach(reverse ...)
5084
5085 =item Constant function cache
5086
5087 =item Approximate regular expression matching
5088
5089 =back
5090
5091 =item Ongoing
5092
5093 =over 4
5094
5095 =item Update guts documentation
5096
5097 =item Add more tests
5098
5099 =item Update auxiliary tools
5100
5101 =back
5102
5103 =item Recently done things
5104
5105 =over 4
5106
5107 =item Alternative RE syntax module
5108
5109 =item Safe signal handling
5110
5111 =item Tie Modules
5112
5113 =item gettimeofday
5114
5115 =item setitimer and getimiter
5116
5117 =item Testing __DIE__ hook
5118
5119 =item CPP equivalent in Perl
5120
5121 =item Explicit switch statements
5122
5123 =item autocroak
5124
5125 =item UTF/EBCDIC
5126
5127 =item UTF Regexes
5128
5129 =item perlcc to produce executable
5130
5131 =item END blocks saved in compiled output
5132
5133 =item Secure temporary file module
5134
5135 =item Integrate Time::HiRes
5136
5137 =item Turn Cwd into XS
5138
5139 =item Mmap for input
5140
5141 =item Byte to/from UTF8 and UTF8 to/from local conversion
5142
5143 =item Add sockatmark support
5144
5145 =item Mailing list archives
5146
5147 =item Bug tracking
5148
5149 =item Integrate MacPerl
5150
5151 =item Web "nerve center" for Perl
5152
5153 =item Regular expression tutorial
5154
5155 =item Debugging Tutorial
5156
5157 =item Integrate new modules
5158
5159 =item Integrate profiler
5160
5161 =item Y2K error detection
5162
5163 =item Regular expression debugger
5164
5165 =item POD checker
5166
5167 =item "Dynamic" lexicals
5168
5169 =item Cache precompiled modules
5170
5171 =back
5172
5173 =item Deprecated Wishes
5174
5175 =over 4
5176
5177 =item Loop control on do{}
5178
5179 =item Lexically scoped typeglobs
5180
5181 =item format BOTTOM
5182
5183 =item report HANDLE
5184
5185 =item Generalised want()/caller())
5186
5187 =item Named prototypes
5188
5189 =item Built-in globbing
5190
5191 =item Regression tests for suidperl
5192
5193 =item Cached hash values
5194
5195 =item Add compression modules
5196
5197 =item Reorganise documentation into tutorials/references
5198
5199 =item Remove distinction between functions and operators
5200
5201 =item Make XS easier to use
5202
5203 =item Make embedding easier to use
5204
5205 =item man for perl
5206
5207 =item my $Package::variable
5208
5209 =item "or" tests defined, not truth
5210
5211 =item "class"-based lexicals
5212
5213 =item byteperl
5214
5215 =item Lazy evaluation / tail recursion removal
5216
5217 =item Make "use utf8" the default
5218
5219 =item Unicode collation and normalization
5220
5221 =item Create debugging macros
5222
5223 =item truncate to the people
5224
5225 =item pack/unpack tutorial
5226
5227 =back
5228
5229 =back
5230
5231 =head2 perlhack - How to hack at the Perl internals
5232
5233 =over 4
5234
5235 =item DESCRIPTION
5236
5237 Does concept match the general goals of Perl?, Where is the
5238 implementation?, Backwards compatibility, Could it be a module instead?, Is
5239 the feature generic enough?, Does it potentially introduce new bugs?, Does
5240 it preclude other desirable features?, Is the implementation robust?, Is
5241 the implementation generic enough to be portable?, Is the implementation
5242 tested?, Is there enough documentation?, Is there another way to do it?,
5243 Does it create too much work?, Patches speak louder than words
5244
5245 =over 4
5246
5247 =item Keeping in sync
5248
5249 rsync'ing the source tree, Using rsync over the LAN, Using pushing over the
5250 NFS, rsync'ing the patches
5251
5252 =item Why rsync the source tree
5253
5254 It's easier to rsync the source tree, It's more recent, It's more reliable
5255
5256 =item Why rsync the patches
5257
5258 It's easier to rsync the patches, It's a good reference, Finding a start
5259 point, Finding how to fix a bug, Finding the source of misbehaviour
5260
5261 =item Perlbug remote interface
5262
5263 1 http://bugs.perl.org, 2 bugdb@perl.org, 3
5264 commands_and_bugdids@bugs.perl.org, notes, patches, tests
5265
5266 =item Submitting patches
5267
5268 L<perlguts>, L<perlxstut> and L<perlxs>, L<perlapi>,
5269 F<Porting/pumpkin.pod>, The perl5-porters FAQ
5270
5271 =item Finding Your Way Around
5272
5273 Core modules, Tests, Documentation, Configure, Interpreter
5274
5275 =item Elements of the interpreter
5276
5277 Startup, Parsing, Optimization, Running
5278
5279 =item Internal Variable Types
5280
5281 =item Op Trees
5282
5283 =item Stacks
5284
5285 Argument stack, Mark stack, Save stack
5286
5287 =item Millions of Macros
5288
5289 =item Poking at Perl
5290
5291 =item Using a source-level debugger
5292
5293 run [args], break function_name, break source.c:xxx, step, next, continue,
5294 finish, 'enter', print
5295
5296 =item Dumping Perl Data Structures
5297
5298 =item Patching
5299
5300 =item Patching a core module
5301
5302 =item Adding a new function to the core
5303
5304 =item Writing a test
5305
5306 F<t/base/>, F<t/cmd/>, F<t/comp/>, F<t/io/>, F<t/lib/>, F<t/op/>,
5307 F<t/pod/>, F<t/run/>, t/base t/comp, t/cmd t/run t/io t/op, t/lib ext lib
5308
5309 =back
5310
5311 =item EXTERNAL TOOLS FOR DEBUGGING PERL
5312
5313 =over 4
5314
5315 =item Rational Software's Purify
5316
5317 =item Purify on Unix
5318
5319 -Accflags=-DPURIFY, -Doptimize='-g', -Uusemymalloc, -Dusemultiplicity
5320
5321 =item Purify on NT
5322
5323 DEFINES, USE_MULTI = define, #PERL_MALLOC = define, CFG = Debug
5324
5325 =item Compaq's/Digital's Third Degree
5326
5327 =item PERL_DESTRUCT_LEVEL
5328
5329 =item Profiling
5330
5331 =item Gprof Profiling
5332
5333 -a, -b, -e routine, -f routine, -s, -z
5334
5335 =item GCC gcov Profiling
5336
5337 =item Pixie Profiling
5338
5339 -h, -l, -p[rocedures], -h[eavy], -i[nvocations], -l[ines], -testcoverage,
5340 -z[ero]
5341
5342 =item Miscellaneous tricks
5343
5344 =item CONCLUSION
5345
5346 I<The Road goes ever on and on, down from the door where it began.>
5347
5348 =back
5349
5350 =item AUTHOR
5351
5352 =back
5353
5354 =head2 perlhist - the Perl history records
5355
5356 =over 4
5357
5358 =item DESCRIPTION
5359
5360 =item INTRODUCTION
5361
5362 =item THE KEEPERS OF THE PUMPKIN
5363
5364 =over 4
5365
5366 =item PUMPKIN?
5367
5368 =back
5369
5370 =item THE RECORDS
5371
5372 =over 4
5373
5374 =item SELECTED RELEASE SIZES
5375
5376 =item SELECTED PATCH SIZES
5377
5378 =back
5379
5380 =item THE KEEPERS OF THE RECORDS
5381
5382 =back
5383
5384 =head2 perldelta - what is new for perl v5.8.0
5385
5386 =over 4
5387
5388 =item DESCRIPTION
5389
5390 =item Highlights In 5.8.0
5391
5392 =item Incompatible Changes
5393
5394 =over 4
5395
5396 =item 64-bit platforms and malloc
5397
5398 =item AIX Dynaloading
5399
5400 =item Attributes for C<my> variables now handled at run-time.
5401
5402 =item Socket Extension Dynamic in VMS
5403
5404 =item IEEE-format Floating Point Default on OpenVMS Alpha
5405
5406 =item New Unicode Properties
5407
5408 =item REF(...) Instead Of SCALAR(...)
5409
5410 =item pack/unpack D/F recycled
5411
5412 =item Deprecations
5413
5414 =back
5415
5416 =item Core Enhancements
5417
5418 =over 4
5419
5420 =item PerlIO is Now The Default
5421
5422 =item Safe Signals
5423
5424 =item Unicode Overhaul
5425
5426 =item Understanding of Numbers
5427
5428 =item Miscellaneous Changes
5429
5430 =back
5431
5432 =item Modules and Pragmata
5433
5434 =over 4
5435
5436 =item New Modules and Pragmata
5437
5438 =item Updated And Improved Modules and Pragmata
5439
5440 =back
5441
5442 =item Utility Changes
5443
5444 =item New Documentation
5445
5446 =item Performance Enhancements
5447
5448 =item Installation and Configuration Improvements
5449
5450 =over 4
5451
5452 =item Generic Improvements
5453
5454 =item New Or Improved Platforms
5455
5456 =back
5457
5458 =item Selected Bug Fixes
5459
5460 =over 4
5461
5462 =item Platform Specific Changes and Fixes
5463
5464 =back
5465
5466 =item New or Changed Diagnostics
5467
5468 =item Changed Internals
5469
5470 =item Security Vulnerability Closed
5471
5472 =item New Tests
5473
5474 =item Known Problems
5475
5476 =over 4
5477
5478 =item AIX
5479
5480 =item Amiga Perl Invoking Mystery
5481
5482 =item lib/ftmp-security tests warn 'system possibly insecure'
5483
5484 =item  HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5485
5486 =item Linux With Sfio Fails op/misc Test 48
5487
5488 =item Mac OS X
5489
5490 =item OS/390
5491
5492 =item op/sprintf tests 129 and 130
5493
5494 =item  Failure of Thread tests
5495
5496 =item UNICOS
5497
5498 =item UNICOS and UNICOS/mk
5499
5500 =item UTS
5501
5502 =item VMS
5503
5504 =item Win32
5505
5506 =item Localising a Tied Variable Leaks Memory
5507
5508 =item Localising Tied Arrays and Hashes Is Broken
5509
5510 =item Self-tying of Arrays and Hashes Is Forbidden
5511
5512 =item Building Extensions Can Fail Because Of Largefiles
5513
5514 =item Unicode Support on EBCDIC Still Spotty
5515
5516 =item The Compiler Suite Is Still Experimental
5517
5518 =item The Long Double Support Is Still Experimental
5519
5520 =item Seen In Perl 5.7 But Gone Now
5521
5522 =back
5523
5524 =item Reporting Bugs
5525
5526 =item SEE ALSO
5527
5528 =item HISTORY
5529
5530 =back
5531
5532 =head2 perl572delta - what's new for perl v5.7.2
5533
5534 =over 4
5535
5536 =item DESCRIPTION
5537
5538 =item Security Vulnerability Closed
5539
5540 =item Incompatible Changes
5541
5542 =over 4
5543
5544 =item 64-bit platforms and malloc
5545
5546 =item AIX Dynaloading
5547
5548 =item Socket Extension Dynamic in VMS
5549
5550 =item Different Definition of the Unicode Character Classes \p{In...}
5551
5552 =item Deprecations
5553
5554 =back
5555
5556 =item Core Enhancements
5557
5558 =item Modules and Pragmata
5559
5560 =over 4
5561
5562 =item New Modules and Distributions
5563
5564 =item Updated And Improved Modules and Pragmata
5565
5566 =back
5567
5568 =item Utility Changes
5569
5570 =item New Documentation
5571
5572 =item Installation and Configuration Improvements
5573
5574 =over 4
5575
5576 =item New Or Improved Platforms
5577
5578 =item Generic Improvements
5579
5580 =back
5581
5582 =item Selected Bug Fixes
5583
5584 =over 4
5585
5586 =item Platform Specific Changes and Fixes
5587
5588 =back
5589
5590 =item New or Changed Diagnostics
5591
5592 =item Source Code Enhancements
5593
5594 =over 4
5595
5596 =item MAGIC constants
5597
5598 =item Better commented code
5599
5600 =item Regex pre-/post-compilation items matched up
5601
5602 =item gcc -Wall
5603
5604 =back
5605
5606 =item New Tests
5607
5608 =item Known Problems
5609
5610 =over 4
5611
5612 =item AIX
5613
5614 =item Amiga Perl Invoking Mystery
5615
5616 =item lib/ftmp-security tests warn 'system possibly insecure'
5617
5618 =item Cygwin intermittent failures of lib/Memoize/t/expire_file 11 and 12
5619
5620 =item HP-UX lib/io_multihomed Fails When LP64-Configured
5621
5622 =item  HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5623
5624 =item Linux With Sfio Fails op/misc Test 48
5625
5626 =item OS/390
5627
5628 =item op/sprintf tests 129 and 130
5629
5630 =item  Failure of Thread tests
5631
5632 =item UNICOS
5633
5634 =item UTS
5635
5636 =item VMS
5637
5638 =item Win32
5639
5640 =item Localising a Tied Variable Leaks Memory
5641
5642 =item Self-tying of Arrays and Hashes Is Forbidden
5643
5644 =item Variable Attributes are not Currently Usable for Tieing
5645
5646 =item Building Extensions Can Fail Because Of Largefiles
5647
5648 =item The Compiler Suite Is Still Experimental
5649
5650 =item The Long Double Support is Still Experimental
5651
5652 =back
5653
5654 =item Reporting Bugs
5655
5656 =item SEE ALSO
5657
5658 =item HISTORY
5659
5660 =back
5661
5662 =head2 perl571delta - what's new for perl v5.7.1
5663
5664 =over 4
5665
5666 =item DESCRIPTION
5667
5668 =item Security Vulnerability Closed
5669
5670 =item Incompatible Changes
5671
5672 =item Core Enhancements
5673
5674 =over 4
5675
5676 =item AUTOLOAD Is Now Lvaluable
5677
5678 =item PerlIO is Now The Default
5679
5680 =item Signals Are Now Safe
5681
5682 =back
5683
5684 =item Modules and Pragmata
5685
5686 =over 4
5687
5688 =item New Modules
5689
5690 =item Updated And Improved Modules and Pragmata
5691
5692 =back
5693
5694 =item Performance Enhancements
5695
5696 =item Utility Changes
5697
5698 =item New Documentation
5699
5700 =over 4
5701
5702 =item perlclib
5703
5704 =item perliol
5705
5706 =item README.aix
5707
5708 =item README.bs2000
5709
5710 =item README.macos
5711
5712 =item README.mpeix
5713
5714 =item README.solaris
5715
5716 =item README.vos
5717
5718 =item Porting/repository.pod
5719
5720 =back
5721
5722 =item Installation and Configuration Improvements
5723
5724 =over 4
5725
5726 =item New Or Improved Platforms
5727
5728 =item Generic Improvements
5729
5730 d_cmsghdr, d_fcntl_can_lock, d_fsync, d_getitimer, d_getpagsz, d_msghdr_s,
5731 need_va_copy, d_readv, d_recvmsg, d_sendmsg, sig_size, d_sockatmark,
5732 d_strtoq, d_u32align, d_ualarm, d_usleep
5733
5734 =back
5735
5736 =item Selected Bug Fixes
5737
5738 =over 4
5739
5740 =item Platform Specific Changes and Fixes
5741
5742 =back
5743
5744 =item New or Changed Diagnostics
5745
5746 =item Changed Internals
5747
5748 =item New Tests
5749
5750 =item Known Problems
5751
5752 =over 4
5753
5754 =item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
5755
5756 =item lib/ftmp-security tests warn 'system possibly insecure'
5757
5758 =item lib/io_multihomed Fails In LP64-Configured HP-UX
5759
5760 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5761
5762 =item lib/b test 19
5763
5764 =item Linux With Sfio Fails op/misc Test 48
5765
5766 =item sigaction test 13 in VMS
5767
5768 =item sprintf tests 129 and 130
5769
5770 =item  Failure of Thread tests
5771
5772 =item Localising a Tied Variable Leaks Memory
5773
5774 =item Self-tying of Arrays and Hashes Is Forbidden
5775
5776 =item Building Extensions Can Fail Because Of Largefiles
5777
5778 =item The Compiler Suite Is Still Experimental
5779
5780 =back
5781
5782 =item Reporting Bugs
5783
5784 =item SEE ALSO
5785
5786 =item HISTORY
5787
5788 =back
5789
5790 =head2 perl570delta - what's new for perl v5.7.0
5791
5792 =over 4
5793
5794 =item DESCRIPTION
5795
5796 =item Security Vulnerability Closed
5797
5798 =item Incompatible Changes
5799
5800 =item Core Enhancements
5801
5802 =item Modules and Pragmata
5803
5804 =over 4
5805
5806 =item New Modules
5807
5808 =item Updated And Improved Modules and Pragmata
5809
5810 =back
5811
5812 =item Utility Changes
5813
5814 =item New Documentation
5815
5816 =item Performance Enhancements
5817
5818 =item Installation and Configuration Improvements
5819
5820 =over 4
5821
5822 =item Generic Improvements
5823
5824 =back
5825
5826 =item Selected Bug Fixes
5827
5828 =over 4
5829
5830 =item Platform Specific Changes and Fixes
5831
5832 =back
5833
5834 =item New or Changed Diagnostics
5835
5836 =item Changed Internals
5837
5838 =item Known Problems
5839
5840 =over 4
5841
5842 =item Unicode Support Still Far From Perfect
5843
5844 =item EBCDIC Still A Lost Platform
5845
5846 =item Building Extensions Can Fail Because Of Largefiles
5847
5848 =item ftmp-security tests warn 'system possibly insecure'
5849
5850 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5851
5852 =item Long Doubles Still Don't Work In Solaris
5853
5854 =item Linux With Sfio Fails op/misc Test 48
5855
5856 =item Storable tests fail in some platforms
5857
5858 =item Threads Are Still Experimental
5859
5860 =item The Compiler Suite Is Still Experimental
5861
5862 =back
5863
5864 =item Reporting Bugs
5865
5866 =item SEE ALSO
5867
5868 =item HISTORY
5869
5870 =back
5871
5872 =head2 perl561delta - what's new for perl v5.6.x
5873
5874 =over 4
5875
5876 =item DESCRIPTION
5877
5878 =item Summary of changes between 5.6.0 and 5.6.1
5879
5880 =over 4
5881
5882 =item Security Issues
5883
5884 =item Core bug fixes
5885
5886 C<UNIVERSAL::isa()>, Memory leaks, Numeric conversions, qw(a\\b), caller(),
5887 Bugs in regular expressions, "slurp" mode, Autovivification of symbolic
5888 references to special variables, Lexical warnings, Spurious warnings and
5889 errors, glob(), Tainting, sort(), #line directives, Subroutine prototypes,
5890 map(), Debugger, PERL5OPT, chop(), Unicode support, 64-bit support,
5891 Compiler, Lvalue subroutines, IO::Socket, File::Find, xsubpp, C<no
5892 Module;>, Tests
5893
5894 =item Core features
5895
5896 =item Configuration issues
5897
5898 =item Documentation
5899
5900 =item Bundled modules
5901
5902 B::Concise, File::Temp, Pod::LaTeX, Pod::Text::Overstrike, CGI, CPAN,
5903 Class::Struct, DB_File, Devel::Peek, File::Find, Getopt::Long, IO::Poll,
5904 IPC::Open3, Math::BigFloat, Math::Complex, Net::Ping, Opcode, Pod::Parser,
5905 Pod::Text, SDBM_File, Sys::Syslog, Tie::RefHash, Tie::SubstrHash
5906
5907 =item Platform-specific improvements
5908
5909 NCR MP-RAS, NonStop-UX
5910
5911 =back
5912
5913 =item Core Enhancements
5914
5915 =over 4
5916
5917 =item Interpreter cloning, threads, and concurrency
5918
5919 =item Lexically scoped warning categories
5920
5921 =item Unicode and UTF-8 support
5922
5923 =item Support for interpolating named characters
5924
5925 =item "our" declarations
5926
5927 =item Support for strings represented as a vector of ordinals
5928
5929 =item Improved Perl version numbering system
5930
5931 =item New syntax for declaring subroutine attributes
5932
5933 =item File and directory handles can be autovivified
5934
5935 =item open() with more than two arguments
5936
5937 =item 64-bit support
5938
5939 =item Large file support
5940
5941 =item Long doubles
5942
5943 =item "more bits"
5944
5945 =item Enhanced support for sort() subroutines
5946
5947 =item C<sort $coderef @foo> allowed
5948
5949 =item File globbing implemented internally
5950
5951 =item Support for CHECK blocks
5952
5953 =item POSIX character class syntax [: :] supported
5954
5955 =item Better pseudo-random number generator
5956
5957 =item Improved C<qw//> operator
5958
5959 =item Better worst-case behavior of hashes
5960
5961 =item pack() format 'Z' supported
5962
5963 =item pack() format modifier '!' supported
5964
5965 =item pack() and unpack() support counted strings
5966
5967 =item Comments in pack() templates
5968
5969 =item Weak references
5970
5971 =item Binary numbers supported
5972
5973 =item Lvalue subroutines
5974
5975 =item Some arrows may be omitted in calls through references
5976
5977 =item Boolean assignment operators are legal lvalues
5978
5979 =item exists() is supported on subroutine names
5980
5981 =item exists() and delete() are supported on array elements
5982
5983 =item Pseudo-hashes work better
5984
5985 =item Automatic flushing of output buffers
5986
5987 =item Better diagnostics on meaningless filehandle operations
5988
5989 =item Where possible, buffered data discarded from duped input filehandle
5990
5991 =item eof() has the same old magic as <>
5992
5993 =item binmode() can be used to set :crlf and :raw modes
5994
5995 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
5996
5997 =item system(), backticks and pipe open now reflect exec() failure
5998
5999 =item Improved diagnostics
6000
6001 =item Diagnostics follow STDERR
6002
6003 =item More consistent close-on-exec behavior
6004
6005 =item syswrite() ease-of-use
6006
6007 =item Better syntax checks on parenthesized unary operators
6008
6009 =item Bit operators support full native integer width
6010
6011 =item Improved security features
6012
6013 =item More functional bareword prototype (*)
6014
6015 =item C<require> and C<do> may be overridden
6016
6017 =item $^X variables may now have names longer than one character
6018
6019 =item New variable $^C reflects C<-c> switch
6020
6021 =item New variable $^V contains Perl version as a string
6022
6023 =item Optional Y2K warnings
6024
6025 =item Arrays now always interpolate into double-quoted strings
6026
6027 =back
6028
6029 =item Modules and Pragmata
6030
6031 =over 4
6032
6033 =item Modules
6034
6035 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6036 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6037 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6038 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6039 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6040 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6041 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6042 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6043
6044 =item Pragmata
6045
6046 =back
6047
6048 =item Utility Changes
6049
6050 =over 4
6051
6052 =item dprofpp
6053
6054 =item find2perl
6055
6056 =item h2xs
6057
6058 =item perlcc
6059
6060 =item perldoc
6061
6062 =item The Perl Debugger
6063
6064 =back
6065
6066 =item Improved Documentation
6067
6068 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6069 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6070 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6071 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6072
6073 =item Performance enhancements
6074
6075 =over 4
6076
6077 =item Simple sort() using { $a <=> $b } and the like are optimized
6078
6079 =item Optimized assignments to lexical variables
6080
6081 =item Faster subroutine calls
6082
6083 =item delete(), each(), values() and hash iteration are faster
6084
6085 =back
6086
6087 =item Installation and Configuration Improvements
6088
6089 =over 4
6090
6091 =item -Dusethreads means something different
6092
6093 =item New Configure flags
6094
6095 =item Threadedness and 64-bitness now more daring
6096
6097 =item Long Doubles
6098
6099 =item -Dusemorebits
6100
6101 =item -Duselargefiles
6102
6103 =item installusrbinperl
6104
6105 =item SOCKS support
6106
6107 =item C<-A> flag
6108
6109 =item Enhanced Installation Directories
6110
6111 =item gcc automatically tried if 'cc' does not seem to be working
6112
6113 =back
6114
6115 =item Platform specific changes
6116
6117 =over 4
6118
6119 =item Supported platforms
6120
6121 =item DOS
6122
6123 =item OS390 (OpenEdition MVS)
6124
6125 =item VMS
6126
6127 =item Win32
6128
6129 =back
6130
6131 =item Significant bug fixes
6132
6133 =over 4
6134
6135 =item <HANDLE> on empty files
6136
6137 =item C<eval '...'> improvements
6138
6139 =item All compilation errors are true errors
6140
6141 =item Implicitly closed filehandles are safer
6142
6143 =item Behavior of list slices is more consistent
6144
6145 =item C<(\$)> prototype and C<$foo{a}>
6146
6147 =item C<goto &sub> and AUTOLOAD
6148
6149 =item C<-bareword> allowed under C<use integer>
6150
6151 =item Failures in DESTROY()
6152
6153 =item Locale bugs fixed
6154
6155 =item Memory leaks
6156
6157 =item Spurious subroutine stubs after failed subroutine calls
6158
6159 =item Taint failures under C<-U>
6160
6161 =item END blocks and the C<-c> switch
6162
6163 =item Potential to leak DATA filehandles
6164
6165 =back
6166
6167 =item New or Changed Diagnostics
6168
6169 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6170 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6171 / cannot take a count, / must be followed by a, A or Z, / must be followed
6172 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6173 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6174 passed through, /%s/ should probably be written as "%s", %s() called too
6175 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6176 argument is not a HASH or ARRAY element or slice, %s argument is not a
6177 subroutine name, %s package attribute may clash with future reserved word:
6178 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6179 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6180 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6181 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6182 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6183 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6184 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6185 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6186 weaken a nonreference, Character class [:%s:] unknown, Character class
6187 syntax [%s] belongs inside character classes, Constant is not %s reference,
6188 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6189 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6190 "local" instead of "our"?), Document contains no data, entering effective
6191 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6192 output, flock() on closed filehandle %s, Global symbol "%s" requires
6193 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6194 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6195 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6196 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6197 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6198 separator character %s in attribute list, Invalid separator character %s in
6199 subroutine attribute list, leaving effective %s failed, Lvalue subs
6200 returning %s not implemented yet, Method %s not permitted, Missing
6201 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6202 No %s specified for -%c, No package name allowed for variable %s in "our",
6203 No space allowed after -%c, no UTC offset information; assuming local time
6204 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6205 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6206 around "%s" list, Possible unintended interpolation of %s in string,
6207 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6208 instead, Premature end of script headers, Repeat count in pack overflows,
6209 Repeat count in unpack overflows, realloc() of freed memory ignored,
6210 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6211 zero-length expression, switching effective %s is not implemented, This
6212 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6213 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6214 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6215 escape \\%c passed through, Unterminated attribute parameter in attribute
6216 list, Unterminated attribute list, Unterminated attribute parameter in
6217 subroutine attribute list, Unterminated subroutine attribute list, Value of
6218 CLI symbol "%s" too long, Version number must be a constant number
6219
6220 =item New tests
6221
6222 =item Incompatible Changes
6223
6224 =over 4
6225
6226 =item Perl Source Incompatibilities
6227
6228 CHECK is a new keyword, Treatment of list slices of undef has changed,
6229 Format of $English::PERL_VERSION is different, Literals of the form
6230 C<1.2.3> parse differently, Possibly changed pseudo-random number
6231 generator, Hashing function for hash keys has changed, C<undef> fails on
6232 read only values, Close-on-exec bit may be set on pipe and socket handles,
6233 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6234 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6235 Text of some diagnostic output has changed, C<%@> has been removed,
6236 Parenthesized not() behaves like a list operator, Semantics of bareword
6237 prototype C<(*)> have changed, Semantics of bit operators may have changed
6238 on 64-bit platforms, More builtins taint their results
6239
6240 =item C Source Incompatibilities
6241
6242 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6243
6244 =item Compatible C Source API Changes
6245
6246 C<PATCHLEVEL> is now C<PERL_VERSION>
6247
6248 =item Binary Incompatibilities
6249
6250 =back
6251
6252 =item Known Problems
6253
6254 =over 4
6255
6256 =item Localizing a tied hash element may leak memory
6257
6258 =item Known test failures
6259
6260 , , 
6261
6262 =item EBCDIC platforms not fully supported
6263
6264 =item UNICOS/mk CC failures during Configure run
6265
6266 =item Arrow operator and arrays
6267
6268 =item Experimental features
6269
6270 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6271 pseudo-hash data type, The Compiler suite, Internal implementation of file
6272 globbing, The DB module, The regular expression code constructs:
6273
6274 =back
6275
6276 =item Obsolete Diagnostics
6277
6278 Character class syntax [: :] is reserved for future extensions, Ill-formed
6279 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6280 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6281 to mean "${$}<digit>" is deprecated
6282
6283 =item Reporting Bugs
6284
6285 =item SEE ALSO
6286
6287 =item HISTORY
6288
6289 =back
6290
6291 =head2 perl56delta - what's new for perl v5.6.0
6292
6293 =over 4
6294
6295 =item DESCRIPTION
6296
6297 =item Core Enhancements
6298
6299 =over 4
6300
6301 =item Interpreter cloning, threads, and concurrency
6302
6303 =item Lexically scoped warning categories
6304
6305 =item Unicode and UTF-8 support
6306
6307 =item Support for interpolating named characters
6308
6309 =item "our" declarations
6310
6311 =item Support for strings represented as a vector of ordinals
6312
6313 =item Improved Perl version numbering system
6314
6315 =item New syntax for declaring subroutine attributes
6316
6317 =item File and directory handles can be autovivified
6318
6319 =item open() with more than two arguments
6320
6321 =item 64-bit support
6322
6323 =item Large file support
6324
6325 =item Long doubles
6326
6327 =item "more bits"
6328
6329 =item Enhanced support for sort() subroutines
6330
6331 =item C<sort $coderef @foo> allowed
6332
6333 =item File globbing implemented internally
6334
6335 =item Support for CHECK blocks
6336
6337 =item POSIX character class syntax [: :] supported
6338
6339 =item Better pseudo-random number generator
6340
6341 =item Improved C<qw//> operator
6342
6343 =item Better worst-case behavior of hashes
6344
6345 =item pack() format 'Z' supported
6346
6347 =item pack() format modifier '!' supported
6348
6349 =item pack() and unpack() support counted strings
6350
6351 =item Comments in pack() templates
6352
6353 =item Weak references
6354
6355 =item Binary numbers supported
6356
6357 =item Lvalue subroutines
6358
6359 =item Some arrows may be omitted in calls through references
6360
6361 =item Boolean assignment operators are legal lvalues
6362
6363 =item exists() is supported on subroutine names
6364
6365 =item exists() and delete() are supported on array elements
6366
6367 =item Pseudo-hashes work better
6368
6369 =item Automatic flushing of output buffers
6370
6371 =item Better diagnostics on meaningless filehandle operations
6372
6373 =item Where possible, buffered data discarded from duped input filehandle
6374
6375 =item eof() has the same old magic as <>
6376
6377 =item binmode() can be used to set :crlf and :raw modes
6378
6379 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
6380
6381 =item system(), backticks and pipe open now reflect exec() failure
6382
6383 =item Improved diagnostics
6384
6385 =item Diagnostics follow STDERR
6386
6387 =item More consistent close-on-exec behavior
6388
6389 =item syswrite() ease-of-use
6390
6391 =item Better syntax checks on parenthesized unary operators
6392
6393 =item Bit operators support full native integer width
6394
6395 =item Improved security features
6396
6397 =item More functional bareword prototype (*)
6398
6399 =item C<require> and C<do> may be overridden
6400
6401 =item $^X variables may now have names longer than one character
6402
6403 =item New variable $^C reflects C<-c> switch
6404
6405 =item New variable $^V contains Perl version as a string
6406
6407 =item Optional Y2K warnings
6408
6409 =item Arrays now always interpolate into double-quoted strings
6410
6411 =back
6412
6413 =item Modules and Pragmata
6414
6415 =over 4
6416
6417 =item Modules
6418
6419 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6420 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6421 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6422 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6423 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6424 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6425 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6426 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6427
6428 =item Pragmata
6429
6430 =back
6431
6432 =item Utility Changes
6433
6434 =over 4
6435
6436 =item dprofpp
6437
6438 =item find2perl
6439
6440 =item h2xs
6441
6442 =item perlcc
6443
6444 =item perldoc
6445
6446 =item The Perl Debugger
6447
6448 =back
6449
6450 =item Improved Documentation
6451
6452 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6453 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6454 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6455 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6456
6457 =item Performance enhancements
6458
6459 =over 4
6460
6461 =item Simple sort() using { $a <=> $b } and the like are optimized
6462
6463 =item Optimized assignments to lexical variables
6464
6465 =item Faster subroutine calls
6466
6467 =item delete(), each(), values() and hash iteration are faster
6468
6469 =back
6470
6471 =item Installation and Configuration Improvements
6472
6473 =over 4
6474
6475 =item -Dusethreads means something different
6476
6477 =item New Configure flags
6478
6479 =item Threadedness and 64-bitness now more daring
6480
6481 =item Long Doubles
6482
6483 =item -Dusemorebits
6484
6485 =item -Duselargefiles
6486
6487 =item installusrbinperl
6488
6489 =item SOCKS support
6490
6491 =item C<-A> flag
6492
6493 =item Enhanced Installation Directories
6494
6495 =back
6496
6497 =item Platform specific changes
6498
6499 =over 4
6500
6501 =item Supported platforms
6502
6503 =item DOS
6504
6505 =item OS390 (OpenEdition MVS)
6506
6507 =item VMS
6508
6509 =item Win32
6510
6511 =back
6512
6513 =item Significant bug fixes
6514
6515 =over 4
6516
6517 =item <HANDLE> on empty files
6518
6519 =item C<eval '...'> improvements
6520
6521 =item All compilation errors are true errors
6522
6523 =item Implicitly closed filehandles are safer
6524
6525 =item Behavior of list slices is more consistent
6526
6527 =item C<(\$)> prototype and C<$foo{a}>
6528
6529 =item C<goto &sub> and AUTOLOAD
6530
6531 =item C<-bareword> allowed under C<use integer>
6532
6533 =item Failures in DESTROY()
6534
6535 =item Locale bugs fixed
6536
6537 =item Memory leaks
6538
6539 =item Spurious subroutine stubs after failed subroutine calls
6540
6541 =item Taint failures under C<-U>
6542
6543 =item END blocks and the C<-c> switch
6544
6545 =item Potential to leak DATA filehandles
6546
6547 =back
6548
6549 =item New or Changed Diagnostics
6550
6551 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6552 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6553 / cannot take a count, / must be followed by a, A or Z, / must be followed
6554 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6555 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6556 passed through, /%s/ should probably be written as "%s", %s() called too
6557 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6558 argument is not a HASH or ARRAY element or slice, %s argument is not a
6559 subroutine name, %s package attribute may clash with future reserved word:
6560 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6561 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6562 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6563 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6564 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6565 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6566 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6567 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6568 weaken a nonreference, Character class [:%s:] unknown, Character class
6569 syntax [%s] belongs inside character classes, Constant is not %s reference,
6570 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6571 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6572 "local" instead of "our"?), Document contains no data, entering effective
6573 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6574 output, flock() on closed filehandle %s, Global symbol "%s" requires
6575 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6576 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6577 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6578 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6579 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6580 separator character %s in attribute list, Invalid separator character %s in
6581 subroutine attribute list, leaving effective %s failed, Lvalue subs
6582 returning %s not implemented yet, Method %s not permitted, Missing
6583 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6584 No %s specified for -%c, No package name allowed for variable %s in "our",
6585 No space allowed after -%c, no UTC offset information; assuming local time
6586 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6587 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6588 around "%s" list, Possible unintended interpolation of %s in string,
6589 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6590 instead, Premature end of script headers, Repeat count in pack overflows,
6591 Repeat count in unpack overflows, realloc() of freed memory ignored,
6592 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6593 zero-length expression, switching effective %s is not implemented, This
6594 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6595 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6596 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6597 escape \\%c passed through, Unterminated attribute parameter in attribute
6598 list, Unterminated attribute list, Unterminated attribute parameter in
6599 subroutine attribute list, Unterminated subroutine attribute list, Value of
6600 CLI symbol "%s" too long, Version number must be a constant number
6601
6602 =item New tests
6603
6604 =item Incompatible Changes
6605
6606 =over 4
6607
6608 =item Perl Source Incompatibilities
6609
6610 CHECK is a new keyword, Treatment of list slices of undef has changed,
6611 Format of $English::PERL_VERSION is different, Literals of the form
6612 C<1.2.3> parse differently, Possibly changed pseudo-random number
6613 generator, Hashing function for hash keys has changed, C<undef> fails on
6614 read only values, Close-on-exec bit may be set on pipe and socket handles,
6615 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6616 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6617 Text of some diagnostic output has changed, C<%@> has been removed,
6618 Parenthesized not() behaves like a list operator, Semantics of bareword
6619 prototype C<(*)> have changed, Semantics of bit operators may have changed
6620 on 64-bit platforms, More builtins taint their results
6621
6622 =item C Source Incompatibilities
6623
6624 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6625
6626 =item Compatible C Source API Changes
6627
6628 C<PATCHLEVEL> is now C<PERL_VERSION>
6629
6630 =item Binary Incompatibilities
6631
6632 =back
6633
6634 =item Known Problems
6635
6636 =over 4
6637
6638 =item Thread test failures
6639
6640 =item EBCDIC platforms not supported
6641
6642 =item In 64-bit HP-UX the lib/io_multihomed test may hang
6643
6644 =item NEXTSTEP 3.3 POSIX test failure
6645
6646 =item Tru64 (aka Digital UNIX, aka DEC OSF/1) lib/sdbm test failure with
6647 gcc
6648
6649 =item UNICOS/mk CC failures during Configure run
6650
6651 =item Arrow operator and arrays
6652
6653 =item Experimental features
6654
6655 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6656 pseudo-hash data type, The Compiler suite, Internal implementation of file
6657 globbing, The DB module, The regular expression code constructs:
6658
6659 =back
6660
6661 =item Obsolete Diagnostics
6662
6663 Character class syntax [: :] is reserved for future extensions, Ill-formed
6664 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6665 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6666 to mean "${$}<digit>" is deprecated
6667
6668 =item Reporting Bugs
6669
6670 =item SEE ALSO
6671
6672 =item HISTORY
6673
6674 =back
6675
6676 =head2 perl5005delta - what's new for perl5.005
6677
6678 =over 4
6679
6680 =item DESCRIPTION
6681
6682 =item About the new versioning system
6683
6684 =item Incompatible Changes
6685
6686 =over 4
6687
6688 =item WARNING:  This version is not binary compatible with Perl 5.004.
6689
6690 =item Default installation structure has changed
6691
6692 =item Perl Source Compatibility
6693
6694 =item C Source Compatibility
6695
6696 =item Binary Compatibility
6697
6698 =item Security fixes may affect compatibility
6699
6700 =item Relaxed new mandatory warnings introduced in 5.004
6701
6702 =item Licensing
6703
6704 =back
6705
6706 =item Core Changes
6707
6708 =over 4
6709
6710 =item Threads
6711
6712 =item Compiler
6713
6714 =item Regular Expressions
6715
6716 Many new and improved optimizations, Many bug fixes, New regular expression
6717 constructs, New operator for precompiled regular expressions, Other
6718 improvements, Incompatible changes
6719
6720 =item   Improved malloc()
6721
6722 =item Quicksort is internally implemented
6723
6724 =item Reliable signals
6725
6726 =item Reliable stack pointers
6727
6728 =item More generous treatment of carriage returns
6729
6730 =item Memory leaks
6731
6732 =item Better support for multiple interpreters
6733
6734 =item Behavior of local() on array and hash elements is now well-defined
6735
6736 =item C<%!> is transparently tied to the L<Errno> module
6737
6738 =item Pseudo-hashes are supported
6739
6740 =item C<EXPR foreach EXPR> is supported
6741
6742 =item Keywords can be globally overridden
6743
6744 =item C<$^E> is meaningful on Win32
6745
6746 =item C<foreach (1..1000000)> optimized
6747
6748 =item C<Foo::> can be used as implicitly quoted package name
6749
6750 =item C<exists $Foo::{Bar::}> tests existence of a package
6751
6752 =item Better locale support
6753
6754 =item Experimental support for 64-bit platforms
6755
6756 =item prototype() returns useful results on builtins
6757
6758 =item Extended support for exception handling
6759
6760 =item Re-blessing in DESTROY() supported for chaining DESTROY() methods
6761
6762 =item All C<printf> format conversions are handled internally
6763
6764 =item New C<INIT> keyword
6765
6766 =item New C<lock> keyword
6767
6768 =item New C<qr//> operator
6769
6770 =item C<our> is now a reserved word
6771
6772 =item Tied arrays are now fully supported
6773
6774 =item Tied handles support is better
6775
6776 =item 4th argument to substr
6777
6778 =item Negative LENGTH argument to splice
6779
6780 =item Magic lvalues are now more magical
6781
6782 =item <> now reads in records
6783
6784 =back
6785
6786 =item Supported Platforms
6787
6788 =over 4
6789
6790 =item New Platforms
6791
6792 =item Changes in existing support
6793
6794 =back
6795
6796 =item Modules and Pragmata
6797
6798 =over 4
6799
6800 =item New Modules
6801
6802 B, Data::Dumper, Dumpvalue, Errno, File::Spec, ExtUtils::Installed,
6803 ExtUtils::Packlist, Fatal, IPC::SysV, Test, Tie::Array, Tie::Handle,
6804 Thread, attrs, fields, re
6805
6806 =item Changes in existing modules
6807
6808 Benchmark, Carp, CGI, Fcntl, Math::Complex, Math::Trig, POSIX, DB_File,
6809 MakeMaker, CPAN, Cwd
6810
6811 =back
6812
6813 =item Utility Changes
6814
6815 =item Documentation Changes
6816
6817 =item New Diagnostics
6818
6819 Ambiguous call resolved as CORE::%s(), qualify as such or use &, Bad index
6820 while coercing array into hash, Bareword "%s" refers to nonexistent
6821 package, Can't call method "%s" on an undefined value, Can't check
6822 filesystem of script "%s" for nosuid, Can't coerce array into hash, Can't
6823 goto subroutine from an eval-string, Can't localize pseudo-hash element,
6824 Can't use %%! because Errno.pm is not available, Cannot find an opnumber
6825 for "%s", Character class syntax [. .] is reserved for future extensions,
6826 Character class syntax [: :] is reserved for future extensions, Character
6827 class syntax [= =] is reserved for future extensions, %s: Eval-group in
6828 insecure regular expression, %s: Eval-group not allowed, use re 'eval', %s:
6829 Eval-group not allowed at run time, Explicit blessing to '' (assuming
6830 package main), Illegal hex digit ignored, No such array field, No such
6831 field "%s" in variable %s of type %s, Out of memory during ridiculously
6832 large request, Range iterator outside integer range, Recursive inheritance
6833 detected while looking for method '%s' %s, Reference found where even-sized
6834 list expected, Undefined value assigned to typeglob, Use of reserved word
6835 "%s" is deprecated, perl: warning: Setting locale failed
6836
6837 =item Obsolete Diagnostics
6838
6839 Can't mktemp(), Can't write to temp file for B<-e>: %s, Cannot open
6840 temporary file, regexp too big
6841
6842 =item Configuration Changes
6843
6844 =item BUGS
6845
6846 =item SEE ALSO
6847
6848 =item HISTORY
6849
6850 =back
6851
6852 =head2 perl5004delta - what's new for perl5.004
6853
6854 =over 4
6855
6856 =item DESCRIPTION
6857
6858 =item Supported Environments
6859
6860 =item Core Changes
6861
6862 =over 4
6863
6864 =item List assignment to %ENV works
6865
6866 =item Change to "Can't locate Foo.pm in @INC" error
6867
6868 =item Compilation option: Binary compatibility with 5.003
6869
6870 =item $PERL5OPT environment variable
6871
6872 =item Limitations on B<-M>, B<-m>, and B<-T> options
6873
6874 =item More precise warnings
6875
6876 =item Deprecated: Inherited C<AUTOLOAD> for non-methods
6877
6878 =item Previously deprecated %OVERLOAD is no longer usable
6879
6880 =item Subroutine arguments created only when they're modified
6881
6882 =item Group vector changeable with C<$)>
6883
6884 =item Fixed parsing of $$<digit>, &$<digit>, etc.
6885
6886 =item Fixed localization of $<digit>, $&, etc.
6887
6888 =item No resetting of $. on implicit close
6889
6890 =item C<wantarray> may return undef
6891
6892 =item C<eval EXPR> determines value of EXPR in scalar context
6893
6894 =item Changes to tainting checks
6895
6896 No glob() or <*>, No spawning if tainted $CDPATH, $ENV, $BASH_ENV, No
6897 spawning if tainted $TERM doesn't look like a terminal name
6898
6899 =item New Opcode module and revised Safe module
6900
6901 =item Embedding improvements
6902
6903 =item Internal change: FileHandle class based on IO::* classes
6904
6905 =item Internal change: PerlIO abstraction interface
6906
6907 =item New and changed syntax
6908
6909 $coderef->(PARAMS)
6910
6911 =item New and changed builtin constants
6912
6913 __PACKAGE__
6914
6915 =item New and changed builtin variables
6916
6917 $^E, $^H, $^M
6918
6919 =item New and changed builtin functions
6920
6921 delete on slices, flock, printf and sprintf, keys as an lvalue, my() in
6922 Control Structures, pack() and unpack(), sysseek(), use VERSION, use Module
6923 VERSION LIST, prototype(FUNCTION), srand, $_ as Default, C<m//gc> does not
6924 reset search position on failure, C<m//x> ignores whitespace before ?*+{},
6925 nested C<sub{}> closures work now, formats work right on changing lexicals
6926
6927 =item New builtin methods
6928
6929 isa(CLASS), can(METHOD), VERSION( [NEED] )
6930
6931 =item TIEHANDLE now supported
6932
6933 TIEHANDLE classname, LIST, PRINT this, LIST, PRINTF this, LIST, READ this
6934 LIST, READLINE this, GETC this, DESTROY this
6935
6936 =item Malloc enhancements
6937
6938 -DPERL_EMERGENCY_SBRK, -DPACK_MALLOC, -DTWO_POT_OPTIMIZE
6939
6940 =item Miscellaneous efficiency enhancements
6941
6942 =back
6943
6944 =item Support for More Operating Systems
6945
6946 =over 4
6947
6948 =item Win32
6949
6950 =item Plan 9
6951
6952 =item QNX
6953
6954 =item AmigaOS
6955
6956 =back
6957
6958 =item Pragmata
6959
6960 use autouse MODULE => qw(sub1 sub2 sub3), use blib, use blib 'dir', use
6961 constant NAME => VALUE, use locale, use ops, use vmsish
6962
6963 =item Modules
6964
6965 =over 4
6966
6967 =item Required Updates
6968
6969 =item Installation directories
6970
6971 =item Module information summary
6972
6973 =item Fcntl
6974
6975 =item IO
6976
6977 =item Math::Complex
6978
6979 =item Math::Trig
6980
6981 =item DB_File
6982
6983 =item Net::Ping
6984
6985 =item Object-oriented overrides for builtin operators
6986
6987 =back
6988
6989 =item Utility Changes
6990
6991 =over 4
6992
6993 =item pod2html
6994
6995 Sends converted HTML to standard output
6996
6997 =item xsubpp
6998
6999 C<void> XSUBs now default to returning nothing
7000
7001 =back
7002
7003 =item C Language API Changes
7004
7005 C<gv_fetchmethod> and C<perl_call_sv>, C<perl_eval_pv>, Extended API for
7006 manipulating hashes
7007
7008 =item Documentation Changes
7009
7010 L<perldelta>, L<perlfaq>, L<perllocale>, L<perltoot>, L<perlapio>,
7011 L<perlmodlib>, L<perldebug>, L<perlsec>
7012
7013 =item New Diagnostics
7014
7015 "my" variable %s masks earlier declaration in same scope, %s argument is
7016 not a HASH element or slice, Allocation too large: %lx, Allocation too
7017 large, Applying %s to %s will act on scalar(%s), Attempt to free
7018 nonexistent shared string, Attempt to use reference as lvalue in substr,
7019 Bareword "%s" refers to nonexistent package, Can't redefine active sort
7020 subroutine %s, Can't use bareword ("%s") as %s ref while "strict refs" in
7021 use, Cannot resolve method `%s' overloading `%s' in package `%s', Constant
7022 subroutine %s redefined, Constant subroutine %s undefined, Copy method did
7023 not return a reference, Died, Exiting pseudo-block via %s, Identifier too
7024 long, Illegal character %s (carriage return), Illegal switch in PERL5OPT:
7025 %s, Integer overflow in hex number, Integer overflow in octal number,
7026 internal error: glob failed, Invalid conversion in %s: "%s", Invalid type
7027 in pack: '%s', Invalid type in unpack: '%s', Name "%s::%s" used only once:
7028 possible typo, Null picture in formline, Offset outside string, Out of
7029 memory!, Out of memory during request for %s, panic: frexp, Possible
7030 attempt to put comments in qw() list, Possible attempt to separate words
7031 with commas, Scalar value @%s{%s} better written as $%s{%s}, Stub found
7032 while resolving method `%s' overloading `%s' in %s, Too late for "B<-T>"
7033 option, untie attempted while %d inner references still exist, Unrecognized
7034 character %s, Unsupported function fork, Use of "$$<digit>" to mean
7035 "${$}<digit>" is deprecated, Value of %s can be "0"; test with defined(),
7036 Variable "%s" may be unavailable, Variable "%s" will not stay shared,
7037 Warning: something's wrong, Ill-formed logical name |%s| in prime_env_iter,
7038 Got an error from DosAllocMem, Malformed PERLLIB_PREFIX, PERL_SH_DIR too
7039 long, Process terminated by SIG%s
7040
7041 =item BUGS
7042
7043 =item SEE ALSO
7044
7045 =item HISTORY
7046
7047 =back
7048
7049 =head2 perlaix, README.aix - Perl version 5 on IBM Unix (AIX) systems
7050
7051 =over 4
7052
7053 =item DESCRIPTION
7054
7055 =over 4
7056
7057 =item Compiling Perl 5 on AIX
7058
7059 =item OS level
7060
7061 =item Building Dynamic Extensions on AIX
7062
7063 =item The IBM ANSI C Compiler
7064
7065 =item Using GNU's gcc for building perl
7066
7067 =item Using Large Files with Perl
7068
7069 =item Threaded Perl
7070
7071 =item 64-bit Perl
7072
7073 =item AIX 4.2 and extensions using C++ with statics
7074
7075 =back
7076
7077 =item AUTHOR
7078
7079 =item DATE
7080
7081 =back
7082
7083 =head2 perlapollo, README.apollo - Perl version 5 on Apollo DomainOS
7084
7085 =over 4
7086
7087 =item DESCRIPTION
7088
7089 =item AUTHOR
7090
7091 =back
7092
7093 =head2 perlamiga - Perl under Amiga OS
7094
7095 =over 4
7096
7097 =item SYNOPSIS
7098
7099 =back
7100
7101 =over 4
7102
7103 =item DESCRIPTION
7104
7105 =over 4
7106
7107 =item Prerequisites for Compiling Perl on AmigaOS
7108
7109 B<Unix emulation for AmigaOS: ixemul.library>, B<Version of Amiga OS>
7110
7111 =item Starting Perl programs under AmigaOS
7112
7113 =item Shortcomings of Perl under AmigaOS
7114
7115 =back
7116
7117 =item INSTALLATION
7118
7119 =item Accessing documentation
7120
7121 =over 4
7122
7123 =item Manpages for Perl on AmigaOS
7124
7125 =item Perl HTML Documentation on AmigaOS
7126
7127 =item Perl GNU Info Files on AmigaOS
7128
7129 =item Perl LaTeX Documentation on AmigaOS
7130
7131 =back
7132
7133 =item BUILDING PERL ON AMIGAOS
7134
7135 =over 4
7136
7137 =item Build Prerequisites for Perl on AmigaOS
7138
7139 =item Getting the Perl Source for AmigaOS
7140
7141 =item Making Perl on AmigaOS
7142
7143 =item Testing Perl on AmigaOS
7144
7145 =item Installing the built Perl on AmigaOS
7146
7147 =back
7148
7149 =item AUTHORS
7150
7151 =item SEE ALSO
7152
7153 =back
7154
7155 =head2 perlbeos, README.beos - Perl version 5 on BeOS
7156
7157 =over 4
7158
7159 =item DESCRIPTION
7160
7161 =over 4
7162
7163 =item General Issues with Perl on BeOS
7164
7165 =item BeOS Release-specific Notes
7166
7167 R4 x86, R4 PPC
7168
7169 =item Contact Information
7170
7171 =item Update 2002-03-02
7172
7173 =back
7174
7175 =back
7176
7177 =head2 perlbs2000, README.BS2000 - building and installing Perl for BS2000.
7178
7179 =over 4
7180
7181 =item SYNOPSIS
7182
7183 =item DESCRIPTION
7184
7185 =over 4
7186
7187 =item gzip on BS2000
7188
7189 =item bison on BS2000
7190
7191 =item Unpacking Perl Distribution on BS2000
7192
7193 =item Compiling Perl on BS2000
7194
7195 =item Testing Perl on BS2000
7196
7197 =item Installing Perl on BS2000
7198
7199 =item Using Perl in the Posix-Shell of BS2000
7200
7201 =item Using Perl in "native" BS2000
7202
7203 =item Floating point anomalies on BS2000
7204
7205 =back
7206
7207 =item AUTHORS
7208
7209 =item SEE ALSO
7210
7211 =over 4
7212
7213 =item Mailing list
7214
7215 =back
7216
7217 =item HISTORY
7218
7219 =back
7220
7221 =over 4
7222
7223 =item Name
7224
7225 =item Description
7226
7227 =item Build
7228
7229 =over 4
7230
7231 =item Tools & SDK
7232
7233 =item Make
7234
7235 =back
7236
7237 =item Acknowledgements
7238
7239 =item Author
7240
7241 =back
7242
7243 =head2 perlcygwin, README.cygwin - Perl for Cygwin
7244
7245 =over 4
7246
7247 =item SYNOPSIS
7248
7249 =item PREREQUISITES FOR COMPILING PERL ON CYGWIN
7250
7251 =over 4
7252
7253 =item Cygwin = GNU+Cygnus+Windows (Don't leave UNIX without it)
7254
7255 =item Cygwin Configuration
7256
7257 C<PATH>, I<nroff>, Permissions
7258
7259 =back
7260
7261 =item CONFIGURE PERL ON CYGWIN
7262
7263 =over 4
7264
7265 =item Stripping Perl Binaries on Cygwin
7266
7267 =item Optional Libraries for Perl on Cygwin
7268
7269 C<-lcrypt>, C<-lgdbm> (C<use GDBM_File>), C<-ldb> (C<use DB_File>),
7270 C<-lcygipc> (C<use IPC::SysV>)
7271
7272 =item Configure-time Options for Perl on Cygwin
7273
7274 C<-Uusedl>, C<-Uusemymalloc>, C<-Uuseperlio>, C<-Dusemultiplicity>,
7275 C<-Duse64bitint>, C<-Duselongdouble>, C<-Dusethreads>, C<-Duselargefiles>,
7276 C<-Dmksymlinks>
7277
7278 =item Suspicious Warnings on Cygwin
7279
7280 I<dlsym()>, Win9x and C<d_eofnblk>, Compiler/Preprocessor defines
7281
7282 =back
7283
7284 =item MAKE ON CYGWIN
7285
7286 =over 4
7287
7288 =item Warnings on Cygwin
7289
7290 =item ld2 on Cygwin
7291
7292 =back
7293
7294 =item TEST ON CYGWIN
7295
7296 =over 4
7297
7298 =item File Permissions on Cygwin
7299
7300 =item Script Portability on Cygwin
7301
7302 Pathnames, Text/Binary, F<.exe>, chown(), Miscellaneous
7303
7304 =back
7305
7306 =item INSTALL PERL ON CYGWIN
7307
7308 =item MANIFEST ON CYGWIN
7309
7310 Documentation, Build, Configure, Make, Install, Tests, Compiled Perl
7311 Source, Compiled Module Source, Perl Modules/Scripts
7312
7313 =item BUGS ON CYGWIN
7314
7315 =item AUTHORS
7316
7317 =item HISTORY
7318
7319 =back
7320
7321 =head2 perldgux - Perl under DG/UX.
7322
7323 =over 4
7324
7325 =item SYNOPSIS
7326
7327 =back
7328
7329 =over 4
7330
7331 =item DESCRIPTION
7332
7333 =item BUILDING PERL ON DG/UX
7334
7335 =over 4
7336
7337 =item Non-threaded Perl on DG/UX
7338
7339 =item Threaded Perl on DG/UX
7340
7341 =item Testing Perl on DG/UX
7342
7343 =item Installing the built perl on DG/UX
7344
7345 =back
7346
7347 =item AUTHOR
7348
7349 =item SEE ALSO
7350
7351 =back
7352
7353 =head2 perldos - Perl under DOS, W31, W95.
7354
7355 =over 4
7356
7357 =item SYNOPSIS
7358
7359 =item DESCRIPTION
7360
7361 =over 4
7362
7363 =item Prerequisites for Compiling Perl on DOS
7364
7365 DJGPP, Pthreads
7366
7367 =item Shortcomings of Perl under DOS
7368
7369 =item Building Perl on DOS
7370
7371 =item Testing Perl on DOS
7372
7373 =item Installation of Perl on DOS
7374
7375 =back
7376
7377 =item BUILDING AND INSTALLING MODULES ON DOS
7378
7379 =over 4
7380
7381 =item Building Prerequisites for Perl on DOS
7382
7383 =item Unpacking CPAN Modules on DOS
7384
7385 =item Building Non-XS Modules on DOS
7386
7387 =item Building XS Modules on DOS
7388
7389 =back
7390
7391 =item AUTHOR
7392
7393 =item SEE ALSO
7394
7395 =back
7396
7397 =head2 perlepoc, README.epoc - Perl for EPOC
7398
7399 =over 4
7400
7401 =item SYNOPSIS
7402
7403 =item INTRODUCTION
7404
7405 =item INSTALLING PERL ON EPOC
7406
7407 =item STARTING PERL ON EPOC
7408
7409 =item STOPPING PERL ON EPOC
7410
7411 =item USING PERL ON EPOC
7412
7413 =over 4
7414
7415 =item I/O Redirection on Epoc
7416
7417 =item PATH Names on Epoc
7418
7419 =item Editors on Epoc
7420
7421 =item Features of Perl on Epoc
7422
7423 =item Restrictions of Perl on Epoc
7424
7425 =item Compiling Perl 5 on the EPOC cross compiling environment
7426
7427 =back
7428
7429 =item SUPPORT STATUS OF PERL ON EPOC
7430
7431 =item AUTHOR
7432
7433 =item LAST UPDATE
7434
7435 =back
7436
7437 =head2 perlhpux, README.hpux - Perl version 5 on Hewlett-Packard Unix
7438 (HP-UX) systems
7439
7440 =over 4
7441
7442 =item DESCRIPTION
7443
7444 =over 4
7445
7446 =item Using perl as shipped with HP-UX
7447
7448 =item Compiling Perl 5 on HP-UX
7449
7450 =item PA-RISC
7451
7452 =item PA-RISC 1.0
7453
7454 =item PA-RISC 1.1
7455
7456 =item PA-RISC 2.0
7457
7458 =item Itanium
7459
7460 =item Portability Between PA-RISC Versions
7461
7462 =item Itanium Processor Family and HP-UX
7463
7464 =item Building Dynamic Extensions on HP-UX
7465
7466 =item The HP ANSI C Compiler
7467
7468 =item Using Large Files with Perl on HP-UX
7469
7470 =item Threaded Perl on HP-UX
7471
7472 =item 64-bit Perl on HP-UX
7473
7474 =item GDBM and Threads on HP-UX
7475
7476 =item NFS filesystems and utime(2) on HP-UX
7477
7478 =item perl -P and // and HP-UX
7479
7480 =item HP-UX Kernel Parameters (maxdsiz) for Compiling Perl
7481
7482 =back
7483
7484 =item nss_delete core dump from op/pwent or op/grent
7485
7486 =item AUTHOR
7487
7488 =item DATE
7489
7490 =back
7491
7492 =head2 perlhurd, README.hurd - Perl version 5 on Hurd
7493
7494 =over 4
7495
7496 =item DESCRIPTION
7497
7498 =over 4
7499
7500 =item Known Problems with Perl on Hurd 
7501
7502 =back
7503
7504 =item AUTHOR
7505
7506 =back
7507
7508 =head2 perlmachten, README.machten - Perl version 5 on Power MachTen
7509 systems
7510
7511 =over 4
7512
7513 =item DESCRIPTION
7514
7515 =over 4
7516
7517 =item Compiling Perl 5 on MachTen
7518
7519 =item Failures during C<make test> on MachTen
7520
7521 op/lexassign.t, pragma/warnings.t
7522
7523 =item Building external modules on MachTen
7524
7525 =back
7526
7527 =item AUTHOR
7528
7529 =item DATE
7530
7531 =back
7532
7533 =head2 perlmacos, README.macos - Perl under Mac OS (Classic)
7534
7535 =over 4
7536
7537 =item SYNOPSIS
7538
7539 =item DESCRIPTION
7540
7541 =item AUTHOR
7542
7543 =item DATE
7544
7545 =back
7546
7547 =head2 perlmint, README.mint - Perl version 5 on Atari MiNT
7548
7549 =over 4
7550
7551 =item DESCRIPTION
7552
7553 =item Known problems with Perl on MiNT
7554
7555 =item AUTHOR
7556
7557 =back
7558
7559 =head2 perlmpeix, README.mpeix - Perl/iX for HP e3000 MPE
7560
7561 =over 4
7562
7563 =item SYNOPSIS
7564
7565 =item NOTE
7566
7567 =item Binary distribution from HP
7568
7569 =item What's New in Perl for MPE/iX
7570
7571 =item Welcome to Perl/iX
7572
7573 =item System Requirements for Perl/iX
7574
7575 =item How to Obtain Perl/iX
7576
7577 =item Perl/iX Distribution Contents Highlights
7578
7579 README, INSTALL, LIBSHP3K, PERL, .cpan/, lib/, man/,
7580 public_html/feedback.cgi, src/perl-5.6.0-mpe
7581
7582 =item How to Compile Perl/iX
7583
7584  4,  6
7585
7586 =item Getting Started with Perl/iX
7587
7588 =item MPE/iX Implementation Considerations
7589
7590 =item Known Perl/iX Bugs Under Investigation
7591
7592 =item Perl/iX To-Do List
7593
7594 =item Perl/iX Change History
7595
7596 =item AUTHOR
7597
7598 =item Name
7599
7600 =item Description
7601
7602 =item Build
7603
7604 =over 4
7605
7606 =item Tools & SDK
7607
7608 =item Setup
7609
7610 Buildtype.bat, SetNWBld.bat, MPKBuild.bat
7611
7612 =item Make
7613
7614 =item Interpreter
7615
7616 =item Extensions
7617
7618 =back
7619
7620 =item Install
7621
7622 =item Build new extensions
7623
7624 =item Known Issues
7625
7626 =item Acknowledgements
7627
7628 =item Authors
7629
7630 =item Date
7631
7632 =back
7633
7634 =head2 perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
7635
7636 =over 4
7637
7638 =item SYNOPSIS
7639
7640 =back
7641
7642 =over 4
7643
7644 =item DESCRIPTION
7645
7646 =over 4
7647
7648 =item Target
7649
7650 =item Other OSes
7651
7652 =item Prerequisites
7653
7654 EMX, RSX, HPFS, pdksh
7655
7656 =item Starting Perl programs under OS/2 (and DOS and...)
7657
7658 =item Starting OS/2 (and DOS) programs under Perl
7659
7660 =back
7661
7662 =item Frequently asked questions
7663
7664 =over 4
7665
7666 =item "It does not work"
7667
7668 =item I cannot run external programs
7669
7670 =item I cannot embed perl into my program, or use F<perl.dll> from my
7671 program. 
7672
7673 Is your program EMX-compiled with C<-Zmt -Zcrtdll>?, Did you use
7674 L<ExtUtils::Embed>?
7675
7676 =item C<``> and pipe-C<open> do not work under DOS.
7677
7678 =item Cannot start C<find.exe "pattern" file>
7679
7680 =back
7681
7682 =item INSTALLATION
7683
7684 =over 4
7685
7686 =item Automatic binary installation
7687
7688 C<PERL_BADLANG>, C<PERL_BADFREE>, F<Config.pm>
7689
7690 =item Manual binary installation
7691
7692 Perl VIO and PM executables (dynamically linked), Perl_ VIO executable
7693 (statically linked), Executables for Perl utilities, Main Perl library,
7694 Additional Perl modules, Tools to compile Perl modules, Manpages for Perl
7695 and utilities, Manpages for Perl modules, Source for Perl documentation,
7696 Perl manual in F<.INF> format, Pdksh
7697
7698 =item B<Warning>
7699
7700 =back
7701
7702 =item Accessing documentation
7703
7704 =over 4
7705
7706 =item OS/2 F<.INF> file
7707
7708 =item Plain text
7709
7710 =item Manpages
7711
7712 =item HTML
7713
7714 =item GNU C<info> files
7715
7716 =item F<PDF> files
7717
7718 =item C<LaTeX> docs
7719
7720 =back
7721
7722 =item BUILD
7723
7724 =over 4
7725
7726 =item The short story
7727
7728 =item Prerequisites
7729
7730 =item Getting perl source
7731
7732 =item Application of the patches
7733
7734 =item Hand-editing
7735
7736 =item Making
7737
7738 =item Testing
7739
7740 A lot of C<bad free>, Process terminated by SIGTERM/SIGINT, F<op/fs.t>,
7741 F<op/stat.t>
7742
7743 =item Installing the built perl
7744
7745 =item C<a.out>-style build
7746
7747 =back
7748
7749 =item Build FAQ
7750
7751 =over 4
7752
7753 =item Some C</> became C<\> in pdksh.
7754
7755 =item C<'errno'> - unresolved external
7756
7757 =item Problems with tr or sed
7758
7759 =item Some problem (forget which ;-)
7760
7761 =item Library ... not found
7762
7763 =item Segfault in make
7764
7765 =item op/sprintf test failure
7766
7767 =back
7768
7769 =item Specific (mis)features of OS/2 port
7770
7771 =over 4
7772
7773 =item C<setpriority>, C<getpriority>
7774
7775 =item C<system()>
7776
7777 =item C<extproc> on the first line
7778
7779 =item Additional modules:
7780
7781 =item Prebuilt methods:
7782
7783 C<File::Copy::syscopy>, C<DynaLoader::mod2fname>,  C<Cwd::current_drive()>,
7784  C<Cwd::sys_chdir(name)>,  C<Cwd::change_drive(name)>, 
7785 C<Cwd::sys_is_absolute(name)>,  C<Cwd::sys_is_rooted(name)>, 
7786 C<Cwd::sys_is_relative(name)>,  C<Cwd::sys_cwd(name)>, 
7787 C<Cwd::sys_abspath(name, dir)>,  C<Cwd::extLibpath([type])>, 
7788 C<Cwd::extLibpath_set( path [, type ] )>,
7789 C<OS2::Error(do_harderror,do_exception)>, C<OS2::Errors2Drive(drive)>,
7790 OS2::SysInfo(), OS2::BootDrive(), C<OS2::MorphPM(serve)>,
7791 C<OS2::UnMorphPM(serve)>, C<OS2::Serve_Messages(force)>,
7792 C<OS2::Process_Messages(force [, cnt])>, C<OS2::_control87(new,mask)>,
7793 OS2::get_control87(), C<OS2::set_control87_em(new=MCW_EM,mask=MCW_EM)>
7794
7795 =item Prebuilt variables:
7796
7797 $OS2::emx_rev, $OS2::emx_env, $OS2::os_ver
7798
7799 =item Misfeatures
7800
7801 =item Modifications
7802
7803 C<popen>, C<tmpnam>, C<tmpfile>, C<ctermid>, C<stat>, C<mkdir>, C<rmdir>,
7804 C<flock>
7805
7806 =item Identifying DLLs
7807
7808 =item Centralized management of resources
7809
7810 C<HAB>, C<HMQ>
7811
7812 =back
7813
7814 =item Perl flavors
7815
7816 =over 4
7817
7818 =item F<perl.exe>
7819
7820 =item F<perl_.exe>
7821
7822 =item F<perl__.exe>
7823
7824 =item F<perl___.exe>
7825
7826 =item Why strange names?
7827
7828 =item Why dynamic linking?
7829
7830 =item Why chimera build?
7831
7832 =back
7833
7834 =item ENVIRONMENT
7835
7836 =over 4
7837
7838 =item C<PERLLIB_PREFIX>
7839
7840 =item C<PERL_BADLANG>
7841
7842 =item C<PERL_BADFREE>
7843
7844 =item C<PERL_SH_DIR>
7845
7846 =item C<USE_PERL_FLOCK>
7847
7848 =item C<TMP> or C<TEMP>
7849
7850 =back
7851
7852 =item Evolution
7853
7854 =over 4
7855
7856 =item Priorities
7857
7858 =item DLL name mangling: pre 5.6.2
7859
7860 =item DLL name mangling: 5.6.2 and beyond
7861
7862 Global DLLs, specific DLLs, C<BEGINLIBPATH> and C<ENDLIBPATH>, F<.> from
7863 C<LIBPATH>
7864
7865 =item DLL forwarder generation
7866
7867 =item Threading
7868
7869 =item Calls to external programs
7870
7871 =item Memory allocation
7872
7873 =item Threads
7874
7875 C<COND_WAIT>, F<os2.c>
7876
7877 =back
7878
7879 =item BUGS
7880
7881 =back
7882
7883 =over 4
7884
7885 =item AUTHOR
7886
7887 =item SEE ALSO
7888
7889 =back
7890
7891 =head2 perlos390, README.os390 - building and installing Perl for OS/390
7892 and z/OS
7893
7894 =over 4
7895
7896 =item SYNOPSIS
7897
7898 =item DESCRIPTION
7899
7900 =over 4
7901
7902 =item Tools
7903
7904 =item Unpacking Perl distribution on OS/390
7905
7906 =item Setup and utilities for Perl on OS/390
7907
7908 =item Configure Perl on OS/390
7909
7910 =item Build, Test, Install Perl on OS/390
7911
7912 =item Build Anomalies with Perl on OS/390
7913
7914 =item Testing Anomalies with Perl on OS/390
7915
7916 =item Installation Anomalies with Perl on OS/390
7917
7918 =item Usage Hints for Perl on OS/390
7919
7920 =item Floating Point Anomalies with Perl on OS/390
7921
7922 =item Modules and Extensions for Perl on OS/390
7923
7924 =back
7925
7926 =item AUTHORS
7927
7928 =item SEE ALSO
7929
7930 =over 4
7931
7932 =item Mailing list for Perl on OS/390
7933
7934 =back
7935
7936 =item HISTORY
7937
7938 =back
7939
7940 =head2 perlqnx, README.qnx - Perl version 5 on QNX
7941
7942 =over 4
7943
7944 =item DESCRIPTION
7945
7946 =over 4
7947
7948 =item Required Software for Compiling Perl on QNX4
7949
7950 /bin/sh, ar, nm, cpp, make
7951
7952 =item Outstanding Issues with Perl on QNX4
7953
7954 =item QNX auxiliary files
7955
7956 qnx/ar, qnx/cpp
7957
7958 =item Outstanding issues with perl under QNX6
7959
7960 =back
7961
7962 =item AUTHOR
7963
7964 =back
7965
7966 =head2 perlplan9 - Plan 9-specific documentation for Perl
7967
7968 =over 4
7969
7970 =item DESCRIPTION
7971
7972 =over 4
7973
7974 =item Invoking Perl
7975
7976 =item What's in Plan 9 Perl
7977
7978 =item What's not in Plan 9 Perl
7979
7980 =item Perl5 Functions not currently supported in Plan 9 Perl
7981
7982 =item Signals in Plan 9 Perl
7983
7984 =back
7985
7986 =item COMPILING AND INSTALLING PERL ON PLAN 9
7987
7988 =over 4
7989
7990 =item Installing Perl Documentation on Plan 9
7991
7992 =back
7993
7994 =item BUGS
7995
7996 =item Revision date
7997
7998 =item AUTHOR
7999
8000 =back
8001
8002 =head2 perlsolaris, README.solaris - Perl version 5 on Solaris systems
8003
8004 =over 4
8005
8006 =item DESCRIPTION
8007
8008 =over 4
8009
8010 =item Solaris Version Numbers.
8011
8012 =back
8013
8014 =item RESOURCES
8015
8016 Solaris FAQ, Precompiled Binaries, Solaris Documentation
8017
8018 =item SETTING UP
8019
8020 =over 4
8021
8022 =item File Extraction Problems on Solaris.
8023
8024 =item Compiler and Related Tools on Solaris.
8025
8026 =item Environment for Compiling Perl on Solaris
8027
8028 =back
8029
8030 =item RUN CONFIGURE.
8031
8032 =over 4
8033
8034 =item 64-bit Issues with Perl on Solaris.
8035
8036 =item Threads in Perl on Solaris.
8037
8038 =item Malloc Issues with Perl on Solaris.
8039
8040 =back
8041
8042 =item MAKE PROBLEMS.
8043
8044 Dynamic Loading Problems With GNU as and GNU ld, ld.so.1: ./perl: fatal:
8045 relocation error:, dlopen: stub interception failed, #error "No
8046 DATAMODEL_NATIVE specified", sh: ar: not found
8047
8048 =item MAKE TEST
8049
8050 =over 4
8051
8052 =item op/stat.t test 4 in Solaris
8053
8054 =item nss_delete core dump from op/pwent or op/grent
8055
8056 =back
8057
8058 =item PREBUILT BINARIES OF PERL FOR SOLARIS.
8059
8060 =item RUNTIME ISSUES FOR PERL ON SOLARIS.
8061
8062 =over 4
8063
8064 =item Limits on Numbers of Open Files on Solaris.
8065
8066 =back
8067
8068 =item SOLARIS-SPECIFIC MODULES.
8069
8070 =item SOLARIS-SPECIFIC PROBLEMS WITH MODULES.
8071
8072 =over 4
8073
8074 =item Proc::ProcessTable on Solaris
8075
8076 =item BSD::Resource on Solaris
8077
8078 =item Net::SSLeay on Solaris
8079
8080 =back
8081
8082 =item AUTHOR
8083
8084 =item LAST MODIFIED
8085
8086 =back
8087
8088 =head2 perltru64, README.tru64 - Perl version 5 on Tru64 (formerly known as
8089 Digital UNIX formerly known as DEC OSF/1) systems
8090
8091 =over 4
8092
8093 =item DESCRIPTION
8094
8095 =over 4
8096
8097 =item Compiling Perl 5 on Tru64
8098
8099 =item Using Large Files with Perl on Tru64
8100
8101 =item Threaded Perl on Tru64
8102
8103 =item Long Doubles on Tru64
8104
8105 =item 64-bit Perl on Tru64
8106
8107 =item Warnings about floating-point overflow when compiling Perl on Tru64
8108
8109 =back
8110
8111 =item Testing Perl on Tru64
8112
8113 =item AUTHOR
8114
8115 =back
8116
8117 =head2 perluts - Perl under UTS
8118
8119 =over 4
8120
8121 =item SYNOPSIS
8122
8123 =item DESCRIPTION
8124
8125 =item BUILDING PERL ON UTS
8126
8127 =item Installing the built perl on UTS
8128
8129 =item AUTHOR
8130
8131 =back
8132
8133 =head2 perlvmesa, README.vmesa - building and installing Perl for VM/ESA.
8134
8135 =over 4
8136
8137 =item SYNOPSIS
8138
8139 =item DESCRIPTION
8140
8141 =over 4
8142
8143 =item Unpacking Perl Distribution on VM/ESA
8144
8145 =item Setup Perl and utilities on VM/ESA
8146
8147 =item Configure Perl on VM/ESA
8148
8149 =item Testing Anomalies of Perl on VM/ESA
8150
8151 =item Usage Hints for Perl on VM/ESA
8152
8153 =back
8154
8155 =item AUTHORS
8156
8157 =item SEE ALSO
8158
8159 =over 4
8160
8161 =item Mailing list for Perl on VM/ESA
8162
8163 =back
8164
8165 =back
8166
8167 =head2 perlvms - VMS-specific documentation for Perl
8168
8169 =over 4
8170
8171 =item DESCRIPTION
8172
8173 =item Installation
8174
8175 =item Organization of Perl Images
8176
8177 =over 4
8178
8179 =item Core Images
8180
8181 =item Perl Extensions
8182
8183 =item Installing static extensions
8184
8185 =item Installing dynamic extensions
8186
8187 =back
8188
8189 =item File specifications
8190
8191 =over 4
8192
8193 =item Syntax
8194
8195 =item Wildcard expansion
8196
8197 =item Pipes
8198
8199 =back
8200
8201 =item PERL5LIB and PERLLIB
8202
8203 =item Command line
8204
8205 =over 4
8206
8207 =item I/O redirection and backgrounding
8208
8209 =item Command line switches
8210
8211 -i, -S, -u
8212
8213 =back
8214
8215 =item Perl functions
8216
8217 File tests, backticks, binmode FILEHANDLE, crypt PLAINTEXT, USER, dump,
8218 exec LIST, fork, getpwent, getpwnam, getpwuid, gmtime, kill, qx//, select
8219 (system call), stat EXPR, system LIST, time, times, unlink LIST, utime
8220 LIST, waitpid PID,FLAGS
8221
8222 =item Perl variables
8223
8224 %ENV, CRTL_ENV, CLISYM_[LOCAL], Any other string, $!, $^E, $?, $|
8225
8226 =item Standard modules with VMS-specific differences
8227
8228 =over 4
8229
8230 =item SDBM_File
8231
8232 =back
8233
8234 =item Revision date
8235
8236 =item AUTHOR
8237
8238 =back
8239
8240 =head2 perlvos, README.vos - Perl for Stratus VOS
8241
8242 =over 4
8243
8244 =item SYNOPSIS
8245
8246 =over 4
8247
8248 =item Multiple methods to build perl for VOS
8249
8250 =item Stratus POSIX Support
8251
8252 =back
8253
8254 =item INSTALLING PERL IN VOS
8255
8256 =over 4
8257
8258 =item Compiling Perl 5 on VOS
8259
8260 =item Installing Perl 5 on VOS
8261
8262 =back
8263
8264 =item USING PERL IN VOS
8265
8266 =over 4
8267
8268 =item Unimplemented Features of Perl on VOS
8269
8270 =item Restrictions of Perl on VOS
8271
8272 =back
8273
8274 =item SUPPORT STATUS
8275
8276 =item AUTHOR
8277
8278 =item LAST UPDATE
8279
8280 =back
8281
8282 =head2 perlwin32 - Perl under Win32
8283
8284 =over 4
8285
8286 =item SYNOPSIS
8287
8288 =item DESCRIPTION
8289
8290 =over 4
8291
8292 =item Setting Up Perl on Win32
8293
8294 Make, Command Shell, Borland C++, Microsoft Visual C++, Mingw32 with GCC
8295
8296 =item Building
8297
8298 =item Testing Perl on Win32
8299
8300 =item Installation of Perl on Win32
8301
8302 =item Usage Hints for Perl on Win32
8303
8304 Environment Variables, File Globbing, Using perl from the command line,
8305 Building Extensions, Command-line Wildcard Expansion, Win32 Specific
8306 Extensions, Running Perl Scripts, Miscellaneous Things
8307
8308 =back
8309
8310 =item BUGS AND CAVEATS
8311
8312 =item AUTHORS
8313
8314 Gary Ng E<lt>71564.1743@CompuServe.COME<gt>, Gurusamy Sarathy
8315 E<lt>gsar@activestate.comE<gt>, Nick Ing-Simmons
8316 E<lt>nick@ing-simmons.netE<gt>
8317
8318 =item SEE ALSO
8319
8320 =item HISTORY
8321
8322 =back
8323
8324 =head1 PRAGMA DOCUMENTATION
8325
8326 =head2 attrs - set/get attributes of a subroutine (deprecated)
8327
8328 =over 4
8329
8330 =item SYNOPSIS
8331
8332 =item DESCRIPTION
8333
8334 method, locked
8335
8336 =back
8337
8338 =head2 re - Perl pragma to alter regular expression behaviour
8339
8340 =over 4
8341
8342 =item SYNOPSIS
8343
8344 =item DESCRIPTION
8345
8346 =back
8347
8348 =head2 threadshared::shared, threads::shared - Perl extension for sharing
8349 data structures between threads
8350
8351 =over 4
8352
8353 =item SYNOPSIS
8354
8355 =item DESCRIPTION
8356
8357 =item EXPORT
8358
8359 =item FUNCTIONS
8360
8361 share VARIABLE, lock VARIABLE, unlock VARIABLE, cond_wait VARIABLE,
8362 cond_signal VARIABLE, cond_broadcast VARIABLE
8363
8364 =item NOTES
8365
8366 =item BUGS
8367
8368 =item AUTHOR
8369
8370 =item SEE ALSO
8371
8372 =back
8373
8374 =head2 threads - Perl extension allowing use of interpreter based threads
8375 from perl
8376
8377 =over 4
8378
8379 =item SYNOPSIS
8380
8381 =item DESCRIPTION
8382
8383 $thread = threads->create(function, LIST), $thread->join, $thread->detach,
8384 threads->self, $thread->tid
8385
8386 =item TODO
8387
8388 Fix so the return value is returned when you join, Add join_all, Fix memory
8389 leaks!
8390
8391 =item AUTHOR and COPYRIGHT
8392
8393 =item BUGS
8394
8395 creating a thread from within a thread is unsafe under win32,
8396 PERL_OLD_SIGNALS are not threadsafe, will not be
8397
8398 =item SEE ALSO
8399
8400 =back
8401
8402 =head2 attributes - get/set subroutine or variable attributes
8403
8404 =over 4
8405
8406 =item SYNOPSIS
8407
8408 =item DESCRIPTION
8409
8410 =over 4
8411
8412 =item Built-in Attributes
8413
8414 locked, method, lvalue
8415
8416 =item Available Subroutines
8417
8418 get, reftype
8419
8420 =item Package-specific Attribute Handling
8421
8422 FETCH_I<type>_ATTRIBUTES, MODIFY_I<type>_ATTRIBUTES
8423
8424 =item Syntax of Attribute Lists
8425
8426 =back
8427
8428 =item EXPORTS
8429
8430 =over 4
8431
8432 =item Default exports
8433
8434 =item Available exports
8435
8436 =item Export tags defined
8437
8438 =back
8439
8440 =item EXAMPLES
8441
8442 =item SEE ALSO
8443
8444 =back
8445
8446 =head2 attrs - set/get attributes of a subroutine (deprecated)
8447
8448 =over 4
8449
8450 =item SYNOPSIS
8451
8452 =item DESCRIPTION
8453
8454 method, locked
8455
8456 =back
8457
8458 =head2 autouse - postpone load of modules until a function is used
8459
8460 =over 4
8461
8462 =item SYNOPSIS
8463
8464 =item DESCRIPTION
8465
8466 =item WARNING
8467
8468 =item AUTHOR
8469
8470 =item SEE ALSO
8471
8472 =back
8473
8474 =head2 base - Establish IS-A relationship with base class at compile time
8475
8476 =over 4
8477
8478 =item SYNOPSIS
8479
8480 =item DESCRIPTION
8481
8482 =item HISTORY
8483
8484 =item SEE ALSO
8485
8486 =back
8487
8488 =head2 blib - Use MakeMaker's uninstalled version of a package
8489
8490 =over 4
8491
8492 =item SYNOPSIS
8493
8494 =item DESCRIPTION
8495
8496 =item BUGS
8497
8498 =item AUTHOR
8499
8500 =back
8501
8502 =head2 bytes - Perl pragma to force byte semantics rather than character
8503 semantics
8504
8505 =over 4
8506
8507 =item SYNOPSIS
8508
8509 =item DESCRIPTION
8510
8511 =item SEE ALSO
8512
8513 =back
8514
8515 =head2 charnames - define character names for C<\N{named}> string literal
8516 escapes.
8517
8518 =over 4
8519
8520 =item SYNOPSIS
8521
8522 =item DESCRIPTION
8523
8524 =item CUSTOM TRANSLATORS
8525
8526 =item charnames::viacode(code)
8527
8528 =item charnames::vianame(code)
8529
8530 =item ILLEGAL CHARACTERS
8531
8532 =item BUGS
8533
8534 =back
8535
8536 =head2 constant - Perl pragma to declare constants
8537
8538 =over 4
8539
8540 =item SYNOPSIS
8541
8542 =item DESCRIPTION
8543
8544 =item NOTES
8545
8546 =over 4
8547
8548 =item List constants
8549
8550 =item Defining multiple constants at once
8551
8552 =item Magic constants
8553
8554 =back
8555
8556 =item TECHNICAL NOTES
8557
8558 =item BUGS
8559
8560 =item AUTHOR
8561
8562 =item COPYRIGHT
8563
8564 =back
8565
8566 =head2 diagnostics - Perl compiler pragma to force verbose warning
8567 diagnostics
8568
8569 =over 4
8570
8571 =item SYNOPSIS
8572
8573 =item DESCRIPTION
8574
8575 =over 4
8576
8577 =item The C<diagnostics> Pragma
8578
8579 =item The I<splain> Program
8580
8581 =back
8582
8583 =item EXAMPLES
8584
8585 =item INTERNALS
8586
8587 =item BUGS
8588
8589 =item AUTHOR
8590
8591 =back
8592
8593 =head2 encoding - pragma to control the conversion of legacy data into
8594 Unicode
8595
8596 =over 4
8597
8598 =item SYNOPSIS
8599
8600 =item DESCRIPTION
8601
8602 =item KNOWN PROBLEMS
8603
8604 =item SEE ALSO
8605
8606 =back
8607
8608 =head2 fields - compile-time class fields
8609
8610 =over 4
8611
8612 =item SYNOPSIS
8613
8614 =item DESCRIPTION
8615
8616 new, phash
8617
8618 =item SEE ALSO
8619
8620 =back
8621
8622 =head2 filetest - Perl pragma to control the filetest permission operators
8623
8624 =over 4
8625
8626 =item SYNOPSIS
8627
8628 =item DESCRIPTION
8629
8630 =over 4
8631
8632 =item subpragma access
8633
8634 =back
8635
8636 =back
8637
8638 =head2 if - C<use> a Perl module if a condition holds
8639
8640 =over 4
8641
8642 =item SYNOPSIS
8643
8644 =item DESCRIPTION
8645
8646 =item BUGS
8647
8648 =item AUTHOR
8649
8650 =back
8651
8652 =head2 integer - Perl pragma to use integer arithmetic instead of floating
8653 point
8654
8655 =over 4
8656
8657 =item SYNOPSIS
8658
8659 =item DESCRIPTION
8660
8661 =back
8662
8663 =head2 less - perl pragma to request less of something from the compiler
8664
8665 =over 4
8666
8667 =item SYNOPSIS
8668
8669 =item DESCRIPTION
8670
8671 =back
8672
8673 =head2 lib - manipulate @INC at compile time
8674
8675 =over 4
8676
8677 =item SYNOPSIS
8678
8679 =item DESCRIPTION
8680
8681 =over 4
8682
8683 =item Adding directories to @INC
8684
8685 =item Deleting directories from @INC
8686
8687 =item Restoring original @INC
8688
8689 =back
8690
8691 =item CAVEATS
8692
8693 =item SEE ALSO
8694
8695 =item AUTHOR
8696
8697 =back
8698
8699 =head2 locale - Perl pragma to use and avoid POSIX locales for built-in
8700 operations
8701
8702 =over 4
8703
8704 =item SYNOPSIS
8705
8706 =item DESCRIPTION
8707
8708 =back
8709
8710 =head2 open - perl pragma to set default disciplines for input and output
8711
8712 =over 4
8713
8714 =item SYNOPSIS
8715
8716 =item DESCRIPTION
8717
8718 =item NONPERLIO FUNCTIONALITY
8719
8720 =item IMPLEMENTATION DETAILS
8721
8722 =item SEE ALSO
8723
8724 =back
8725
8726 =head2 ops - Perl pragma to restrict unsafe operations when compiling
8727
8728 =over 4
8729
8730 =item SYNOPSIS  
8731
8732 =item DESCRIPTION
8733
8734 =item SEE ALSO
8735
8736 =back
8737
8738 =head2 overload - Package for overloading perl operations
8739
8740 =over 4
8741
8742 =item SYNOPSIS
8743
8744 =item DESCRIPTION
8745
8746 =over 4
8747
8748 =item Declaration of overloaded functions
8749
8750 =item Calling Conventions for Binary Operations
8751
8752 FALSE, TRUE, C<undef>
8753
8754 =item Calling Conventions for Unary Operations
8755
8756 =item Calling Conventions for Mutators
8757
8758 C<++> and C<-->, C<x=> and other assignment versions
8759
8760 =item Overloadable Operations
8761
8762 I<Arithmetic operations>, I<Comparison operations>, I<Bit operations>,
8763 I<Increment and decrement>, I<Transcendental functions>, I<Boolean, string
8764 and numeric conversion>, I<Iteration>, I<Dereferencing>, I<Special>
8765
8766 =item Inheritance and overloading
8767
8768 Strings as values of C<use overload> directive, Overloading of an operation
8769 is inherited by derived classes
8770
8771 =back
8772
8773 =item SPECIAL SYMBOLS FOR C<use overload>
8774
8775 =over 4
8776
8777 =item Last Resort
8778
8779 =item Fallback
8780
8781 C<undef>, TRUE, defined, but FALSE
8782
8783 =item Copy Constructor
8784
8785 B<Example>
8786
8787 =back
8788
8789 =item MAGIC AUTOGENERATION
8790
8791 I<Assignment forms of arithmetic operations>, I<Conversion operations>,
8792 I<Increment and decrement>, C<abs($a)>, I<Unary minus>, I<Negation>,
8793 I<Concatenation>, I<Comparison operations>, I<Iterator>, I<Dereferencing>,
8794 I<Copy operator>
8795
8796 =item Losing overloading
8797
8798 =item Run-time Overloading
8799
8800 =item Public functions
8801
8802 overload::StrVal(arg), overload::Overloaded(arg), overload::Method(obj,op)
8803
8804 =item Overloading constants
8805
8806 integer, float, binary, q, qr
8807
8808 =item IMPLEMENTATION
8809
8810 =item Metaphor clash
8811
8812 =item Cookbook
8813
8814 =over 4
8815
8816 =item Two-face scalars
8817
8818 =item Two-face references
8819
8820 =item Symbolic calculator
8821
8822 =item I<Really> symbolic calculator
8823
8824 =back
8825
8826 =item AUTHOR
8827
8828 =item DIAGNOSTICS
8829
8830 Odd number of arguments for overload::constant, `%s' is not an overloadable
8831 type, `%s' is not a code reference
8832
8833 =item BUGS
8834
8835 =back
8836
8837 =head2 re - Perl pragma to alter regular expression behaviour
8838
8839 =over 4
8840
8841 =item SYNOPSIS
8842
8843 =item DESCRIPTION
8844
8845 =back
8846
8847 =head2 sigtrap - Perl pragma to enable simple signal handling
8848
8849 =over 4
8850
8851 =item SYNOPSIS
8852
8853 =item DESCRIPTION
8854
8855 =item OPTIONS
8856
8857 =over 4
8858
8859 =item SIGNAL HANDLERS
8860
8861 B<stack-trace>, B<die>, B<handler> I<your-handler>
8862
8863 =item SIGNAL LISTS
8864
8865 B<normal-signals>, B<error-signals>, B<old-interface-signals>
8866
8867 =item OTHER
8868
8869 B<untrapped>, B<any>, I<signal>, I<number>
8870
8871 =back
8872
8873 =item EXAMPLES
8874
8875 =back
8876
8877 =head2 sort - perl pragma to control sort() behaviour
8878
8879 =over 4
8880
8881 =item SYNOPSIS
8882
8883 =item DESCRIPTION
8884
8885 =back
8886
8887 =head2 strict - Perl pragma to restrict unsafe constructs
8888
8889 =over 4
8890
8891 =item SYNOPSIS
8892
8893 =item DESCRIPTION
8894
8895 C<strict refs>, C<strict vars>, C<strict subs>
8896
8897 =back
8898
8899 =head2 subs - Perl pragma to predeclare sub names
8900
8901 =over 4
8902
8903 =item SYNOPSIS
8904
8905 =item DESCRIPTION
8906
8907 =back
8908
8909 =head2 threads - Perl extension allowing use of interpreter based threads
8910 from perl
8911
8912 =over 4
8913
8914 =item SYNOPSIS
8915
8916 =item DESCRIPTION
8917
8918 $thread = threads->create(function, LIST), $thread->join, $thread->detach,
8919 threads->self, $thread->tid
8920
8921 =item TODO
8922
8923 Fix so the return value is returned when you join, Add join_all, Fix memory
8924 leaks!
8925
8926 =item AUTHOR and COPYRIGHT
8927
8928 =item BUGS
8929
8930 creating a thread from within a thread is unsafe under win32,
8931 PERL_OLD_SIGNALS are not threadsafe, will not be
8932
8933 =item SEE ALSO
8934
8935 =back
8936
8937 =head2 threadshared, threads::shared - Perl extension for sharing data
8938 structures between threads
8939
8940 =over 4
8941
8942 =item SYNOPSIS
8943
8944 =item DESCRIPTION
8945
8946 =item EXPORT
8947
8948 =item FUNCTIONS
8949
8950 share VARIABLE, lock VARIABLE, unlock VARIABLE, cond_wait VARIABLE,
8951 cond_signal VARIABLE, cond_broadcast VARIABLE
8952
8953 =item NOTES
8954
8955 =item BUGS
8956
8957 =item AUTHOR
8958
8959 =item SEE ALSO
8960
8961 =back
8962
8963 =head2 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source
8964 code
8965
8966 =over 4
8967
8968 =item SYNOPSIS
8969
8970 =item DESCRIPTION
8971
8972 =over 4
8973
8974 =item Utility functions
8975
8976 $num_octets = utf8::upgrade($string);, utf8::downgrade($string[, CHECK]),
8977 utf8::encode($string), $flag = utf8::decode($string), $flag =
8978 utf8::valid(STRING)
8979
8980 =back
8981
8982 =item SEE ALSO
8983
8984 =back
8985
8986 =head2 vars - Perl pragma to predeclare global variable names (obsolete)
8987
8988 =over 4
8989
8990 =item SYNOPSIS
8991
8992 =item DESCRIPTION
8993
8994 =back
8995
8996 =head2 vmsish - Perl pragma to control VMS-specific language features
8997
8998 =over 4
8999
9000 =item SYNOPSIS
9001
9002 =item DESCRIPTION
9003
9004 C<vmsish status>, C<vmsish exit>, C<vmsish time>, C<vmsish hushed>
9005
9006 =back
9007
9008 =head2 warnings - Perl pragma to control optional warnings
9009
9010 =over 4
9011
9012 =item SYNOPSIS
9013
9014 =item DESCRIPTION
9015
9016 use warnings::register, warnings::enabled(), warnings::enabled($category),
9017 warnings::enabled($object), warnings::warn($message),
9018 warnings::warn($category, $message), warnings::warn($object, $message),
9019 warnings::warnif($message), warnings::warnif($category, $message),
9020 warnings::warnif($object, $message)
9021
9022 =back
9023
9024 =head2 warnings::register - warnings import function
9025
9026 =over 4
9027
9028 =item SYNOPSIS
9029
9030 =item DESCRIPTION
9031
9032 =back
9033
9034 =head1 MODULE DOCUMENTATION
9035
9036 =head2 AnyDBM_File - provide framework for multiple DBMs
9037
9038 =over 4
9039
9040 =item SYNOPSIS
9041
9042 =item DESCRIPTION
9043
9044 =over 4
9045
9046 =item DBM Comparisons
9047
9048 [0], [1], [2], [3]
9049
9050 =back
9051
9052 =item SEE ALSO
9053
9054 =back
9055
9056 =head2 Attribute::Handlers - Simpler definition of attribute handlers
9057
9058 =over 4
9059
9060 =item VERSION
9061
9062 =item SYNOPSIS
9063
9064 =item DESCRIPTION
9065
9066 [0], [1], [2], [3], [4], [5]
9067
9068 =over 4
9069
9070 =item Typed lexicals
9071
9072 =item Type-specific attribute handlers
9073
9074 =item Non-interpretive attribute handlers
9075
9076 =item Phase-specific attribute handlers
9077
9078 =item Attributes as C<tie> interfaces
9079
9080 =back
9081
9082 =item EXAMPLES
9083
9084 =item DIAGNOSTICS
9085
9086 C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
9087 attributes>, C<Declaration of %s attribute in package %s may clash with
9088 future reserved word>, C<Can't have two ATTR specifiers on one subroutine>,
9089 C<Can't autotie a %s>, C<Internal error: %s symbol went missing>, C<Won't
9090 be able to apply END handler>
9091
9092 =item AUTHOR
9093
9094 =item BUGS
9095
9096 =item COPYRIGHT
9097
9098 =back
9099
9100 =head2 AutoLoader - load subroutines only on demand
9101
9102 =over 4
9103
9104 =item SYNOPSIS
9105
9106 =item DESCRIPTION
9107
9108 =over 4
9109
9110 =item Subroutine Stubs
9111
9112 =item Using B<AutoLoader>'s AUTOLOAD Subroutine
9113
9114 =item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
9115
9116 =item Package Lexicals
9117
9118 =item Not Using AutoLoader
9119
9120 =item B<AutoLoader> vs. B<SelfLoader>
9121
9122 =back
9123
9124 =item CAVEATS
9125
9126 =item SEE ALSO
9127
9128 =back
9129
9130 =head2 AutoSplit - split a package for autoloading
9131
9132 =over 4
9133
9134 =item SYNOPSIS
9135
9136 =item DESCRIPTION
9137
9138 $keep, $check, $modtime
9139
9140 =over 4
9141
9142 =item Multiple packages
9143
9144 =back
9145
9146 =item DIAGNOSTICS
9147
9148 =back
9149
9150 =head2 B - The Perl Compiler
9151
9152 =over 4
9153
9154 =item SYNOPSIS
9155
9156 =item DESCRIPTION
9157
9158 =item OVERVIEW OF CLASSES
9159
9160 =over 4
9161
9162 =item SV-RELATED CLASSES
9163
9164 =item B::SV METHODS
9165
9166 REFCNT, FLAGS
9167
9168 =item B::IV METHODS
9169
9170 IV, IVX, UVX, int_value, needs64bits, packiv
9171
9172 =item B::NV METHODS
9173
9174 NV, NVX
9175
9176 =item B::RV METHODS
9177
9178 RV
9179
9180 =item B::PV METHODS
9181
9182 PV, RV, PVX
9183
9184 =item B::PVMG METHODS
9185
9186 MAGIC, SvSTASH
9187
9188 =item B::MAGIC METHODS
9189
9190 MOREMAGIC, precomp, PRIVATE, TYPE, FLAGS, OBJ, PTR, REGEX
9191
9192 =item B::PVLV METHODS
9193
9194 TARGOFF, TARGLEN, TYPE, TARG
9195
9196 =item B::BM METHODS
9197
9198 USEFUL, PREVIOUS, RARE, TABLE
9199
9200 =item B::GV METHODS
9201
9202 is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
9203 LINE, FILE, FILEGV, GvREFCNT, FLAGS
9204
9205 =item B::IO METHODS
9206
9207 LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
9208 BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS, IsSTD
9209
9210 =item B::AV METHODS
9211
9212 FILL, MAX, OFF, ARRAY, AvFLAGS
9213
9214 =item B::CV METHODS
9215
9216 STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, XSUB, XSUBANY,
9217 CvFLAGS, const_sv
9218
9219 =item B::HV METHODS
9220
9221 FILL, MAX, KEYS, RITER, NAME, PMROOT, ARRAY
9222
9223 =item OP-RELATED CLASSES
9224
9225 =item B::OP METHODS
9226
9227 next, sibling, name, ppaddr, desc, targ, type, seq, flags, private
9228
9229 =item B::UNOP METHOD
9230
9231 first
9232
9233 =item B::BINOP METHOD
9234
9235 last
9236
9237 =item B::LOGOP METHOD
9238
9239 other
9240
9241 =item B::LISTOP METHOD
9242
9243 children
9244
9245 =item B::PMOP METHODS
9246
9247 pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, pmdynflags,
9248 pmpermflags, precomp, pmoffet
9249
9250 =item B::SVOP METHOD
9251
9252 sv, gv
9253
9254 =item B::PADOP METHOD
9255
9256 padix
9257
9258 =item B::PVOP METHOD
9259
9260 pv
9261
9262 =item B::LOOP METHODS
9263
9264 redoop, nextop, lastop
9265
9266 =item B::COP METHODS
9267
9268 label, stash, file, cop_seq, arybase, line
9269
9270 =back
9271
9272 =item FUNCTIONS EXPORTED BY C<B>
9273
9274 main_cv, init_av, begin_av, end_av, main_root, main_start, comppadlist,
9275 regex_padav, sv_undef, sv_yes, sv_no, amagic_generation, walkoptree(OP,
9276 METHOD), walkoptree_debug(DEBUG), walksymtable(SYMREF, METHOD, RECURSE,
9277 PREFIX), svref_2object(SV), ppname(OPNUM), hash(STR), cast_I32(I), minus_c,
9278 cstring(STR), perlstring(STR), class(OBJ), threadsv_names
9279
9280 =item AUTHOR
9281
9282 =back
9283
9284 =head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
9285 bytecode
9286
9287 =over 4
9288
9289 =item SYNOPSIS
9290
9291 =item DESCRIPTION
9292
9293 %insn_data, @insn_name, @optype, @specialsv_name
9294
9295 =item AUTHOR
9296
9297 =back
9298
9299 =head2 B::Assembler - Assemble Perl bytecode
9300
9301 =over 4
9302
9303 =item SYNOPSIS
9304
9305 =item DESCRIPTION
9306
9307 =item AUTHORS
9308
9309 =back
9310
9311 =head2 B::Bblock - Walk basic blocks
9312
9313 =over 4
9314
9315 =item SYNOPSIS
9316
9317 =item DESCRIPTION
9318
9319 =over 4
9320
9321 =item Functions
9322
9323 B<find_leaders>
9324
9325 =back
9326
9327 =item AUTHOR
9328
9329 =back
9330
9331 =head2 B::Bytecode - Perl compiler's bytecode backend
9332
9333 =over 4
9334
9335 =item SYNOPSIS
9336
9337 =item DESCRIPTION
9338
9339 =item OPTIONS
9340
9341 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
9342 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
9343 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
9344
9345 =item EXAMPLES
9346
9347 =item BUGS
9348
9349 =item AUTHORS
9350
9351 =back
9352
9353 =head2 B::C - Perl compiler's C backend
9354
9355 =over 4
9356
9357 =item SYNOPSIS
9358
9359 =item DESCRIPTION
9360
9361 =item OPTIONS
9362
9363 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-D>, B<-Do>, B<-Dc>, B<-DA>,
9364 B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fsave-data>, B<-fppaddr>, B<-fwarn-sv>,
9365 B<-fuse-script-name>, B<-fsave-sig-hash>, B<-On>, B<-O0>, B<-O1>, B<-O2>,
9366 B<-llimit>
9367
9368 =item EXAMPLES
9369
9370 =item BUGS
9371
9372 =item AUTHOR
9373
9374 =back
9375
9376 =head2 B::CC - Perl compiler's optimized C translation backend
9377
9378 =over 4
9379
9380 =item SYNOPSIS
9381
9382 =item DESCRIPTION
9383
9384 =item OPTIONS
9385
9386 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-mModulename>, B<-D>, B<-Dr>,
9387 B<-DO>, B<-Ds>, B<-Dp>, B<-Dq>, B<-Dl>, B<-Dt>, B<-f>,
9388 B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
9389
9390 =item EXAMPLES
9391
9392 =item BUGS
9393
9394 =item DIFFERENCES
9395
9396 =over 4
9397
9398 =item Loops
9399
9400 =item Context of ".."
9401
9402 =item Arithmetic
9403
9404 =item Deprecated features
9405
9406 =back
9407
9408 =item AUTHOR
9409
9410 =back
9411
9412 =head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
9413
9414 =over 4
9415
9416 =item SYNOPSIS
9417
9418 =item DESCRIPTION
9419
9420 =item EXAMPLE
9421
9422 =item OPTIONS
9423
9424 B<-basic>, B<-exec>, B<-tree>, B<-compact>, B<-loose>, B<-vt>, B<-ascii>,
9425 B<-main>, B<-base>I<n>, B<-bigendian>, B<-littleendian>, B<-concise>,
9426 B<-terse>, B<-linenoise>, B<-debug>, B<-env>
9427
9428 =item FORMATTING SPECIFICATIONS
9429
9430 B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
9431 B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
9432 B<#>I<var>, B<#>I<var>I<N>, B<~>, B<#addr>, B<#arg>, B<#class>,
9433 B<#classsym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
9434 B<#flags>, B<#flagval>, B<#hyphseq>, B<#label>, B<#lastaddr>, B<#name>,
9435 B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>, B<#private>, B<#privval>,
9436 B<#seq>, B<#seqnum>, B<#sibaddr>, B<#svaddr>, B<#svclass>, B<#svval>,
9437 B<#targ>, B<#targarg>, B<#targarglife>, B<#typenum>
9438
9439 =item ABBREVIATIONS
9440
9441 =over 4
9442
9443 =item OP flags abbreviations
9444
9445 =item OP class abbreviations
9446
9447 =back
9448
9449 =item Using B::Concise outside of the O framework
9450
9451 =item AUTHOR
9452
9453 =back
9454
9455 =head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
9456
9457 =over 4
9458
9459 =item SYNOPSIS
9460
9461 =item DESCRIPTION
9462
9463 =item AUTHOR
9464
9465 =back
9466
9467 =head2 B::Deparse - Perl compiler backend to produce perl code
9468
9469 =over 4
9470
9471 =item SYNOPSIS
9472
9473 =item DESCRIPTION
9474
9475 =item OPTIONS
9476
9477 B<-l>, B<-p>, B<-P>, B<-q>, B<-f>I<FILE>, B<-s>I<LETTERS>, B<C>,
9478 B<i>I<NUMBER>, B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
9479
9480 =item USING B::Deparse AS A MODULE
9481
9482 =over 4
9483
9484 =item Synopsis
9485
9486 =item Description
9487
9488 =item new
9489
9490 =item ambient_pragmas
9491
9492 strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
9493
9494 =item coderef2text
9495
9496 =back
9497
9498 =item BUGS
9499
9500 =item AUTHOR
9501
9502 =back
9503
9504 =head2 B::Disassembler - Disassemble Perl bytecode
9505
9506 =over 4
9507
9508 =item SYNOPSIS
9509
9510 =item DESCRIPTION
9511
9512 =item AUTHOR
9513
9514 =back
9515
9516 =head2 B::Lint - Perl lint
9517
9518 =over 4
9519
9520 =item SYNOPSIS
9521
9522 =item DESCRIPTION
9523
9524 =item OPTIONS AND LINT CHECKS
9525
9526 B<context>, B<implicit-read> and B<implicit-write>, B<dollar-underscore>,
9527 B<private-names>, B<undefined-subs>, B<regexp-variables>, B<all>, B<none>
9528
9529 =item NON LINT-CHECK OPTIONS
9530
9531 B<-u Package>
9532
9533 =item BUGS
9534
9535 =item AUTHOR
9536
9537 =back
9538
9539 =head2 B::O, O - Generic interface to Perl Compiler backends
9540
9541 =over 4
9542
9543 =item SYNOPSIS
9544
9545 =item DESCRIPTION
9546
9547 =item CONVENTIONS
9548
9549 =item IMPLEMENTATION
9550
9551 =item AUTHOR
9552
9553 =back
9554
9555 =head2 B::Showlex - Show lexical variables used in functions or files
9556
9557 =over 4
9558
9559 =item SYNOPSIS
9560
9561 =item DESCRIPTION
9562
9563 =item AUTHOR
9564
9565 =back
9566
9567 =head2 B::Stackobj - Helper module for CC backend
9568
9569 =over 4
9570
9571 =item SYNOPSIS
9572
9573 =item DESCRIPTION
9574
9575 =item AUTHOR
9576
9577 =back
9578
9579 =head2 B::Stash - show what stashes are loaded
9580
9581 =head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
9582
9583 =over 4
9584
9585 =item SYNOPSIS
9586
9587 =item DESCRIPTION
9588
9589 =item AUTHOR
9590
9591 =back
9592
9593 =head2 B::Xref - Generates cross reference reports for Perl programs
9594
9595 =over 4
9596
9597 =item SYNOPSIS
9598
9599 =item DESCRIPTION
9600
9601 =item OPTIONS
9602
9603 C<-oFILENAME>, C<-r>, C<-d>, C<-D[tO]>
9604
9605 =item BUGS
9606
9607 =item AUTHOR
9608
9609 =back
9610
9611 =head2 Bblock, B::Bblock - Walk basic blocks
9612
9613 =over 4
9614
9615 =item SYNOPSIS
9616
9617 =item DESCRIPTION
9618
9619 =over 4
9620
9621 =item Functions
9622
9623 B<find_leaders>
9624
9625 =back
9626
9627 =item AUTHOR
9628
9629 =back
9630
9631 =head2 Benchmark - benchmark running times of Perl code
9632
9633 =over 4
9634
9635 =item SYNOPSIS
9636
9637 =item DESCRIPTION
9638
9639 =over 4
9640
9641 =item Methods
9642
9643 new, debug, iters
9644
9645 =item Standard Exports
9646
9647 timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
9648 timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
9649 TIMEDIFF, [ STYLE, [ FORMAT ] ] )
9650
9651 =item Optional Exports
9652
9653 clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUT, CODEHASHREF, [
9654 STYLE ] ), cmpthese ( RESULTSHASHREF, [ STYLE ] ), countit(TIME, CODE),
9655 disablecache ( ), enablecache ( ), timesum ( T1, T2 )
9656
9657 =back
9658
9659 =item NOTES
9660
9661 =item EXAMPLES
9662
9663 =item INHERITANCE
9664
9665 =item CAVEATS
9666
9667 =item SEE ALSO
9668
9669 =item AUTHORS
9670
9671 =item MODIFICATION HISTORY
9672
9673 =back
9674
9675 =head2 ByteLoader - load byte compiled perl code
9676
9677 =over 4
9678
9679 =item SYNOPSIS
9680
9681 =item DESCRIPTION
9682
9683 =item AUTHOR
9684
9685 =item SEE ALSO
9686
9687 =back
9688
9689 =head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend
9690
9691 =over 4
9692
9693 =item SYNOPSIS
9694
9695 =item DESCRIPTION
9696
9697 =item OPTIONS
9698
9699 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
9700 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
9701 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
9702
9703 =item EXAMPLES
9704
9705 =item BUGS
9706
9707 =item AUTHORS
9708
9709 =back
9710
9711 =head2 CGI - Simple Common Gateway Interface Class
9712
9713 =over 4
9714
9715 =item SYNOPSIS
9716
9717 =item ABSTRACT
9718
9719 =item DESCRIPTION
9720
9721 =over 4
9722
9723 =item PROGRAMMING STYLE
9724
9725 =item CALLING CGI.PM ROUTINES
9726
9727 =item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
9728
9729 =item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
9730
9731 =item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
9732
9733 =item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
9734
9735 =item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
9736
9737 =item SETTING THE VALUE(S) OF A NAMED PARAMETER:
9738
9739 =item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
9740
9741 =item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
9742
9743 =item DELETING A PARAMETER COMPLETELY:
9744
9745 =item DELETING ALL PARAMETERS:
9746
9747 =item DIRECT ACCESS TO THE PARAMETER LIST:
9748
9749 =item FETCHING THE PARAMETER LIST AS A HASH:
9750
9751 =item SAVING THE STATE OF THE SCRIPT TO A FILE:
9752
9753 =item RETRIEVING CGI ERRORS
9754
9755 =item USING THE FUNCTION-ORIENTED INTERFACE
9756
9757 B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:html4>, B<:netscape>, B<:html>,
9758 B<:standard>, B<:all>
9759
9760 =item PRAGMAS
9761
9762 -any, -compile, -nosticky, -no_undef_params, -no_xhtml, -nph,
9763 -newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
9764 -private_tempfiles
9765
9766 =item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
9767
9768 1. start_table() (generates a <table> tag), 2. end_table() (generates a
9769 </table> tag), 3. start_ul() (generates a <ul> tag), 4. end_ul() (generates
9770 a </ul> tag)
9771
9772 =back
9773
9774 =item GENERATING DYNAMIC DOCUMENTS
9775
9776 =over 4
9777
9778 =item CREATING A STANDARD HTTP HEADER:
9779
9780 =item GENERATING A REDIRECTION HEADER
9781
9782 =item CREATING THE HTML DOCUMENT HEADER
9783
9784 B<Parameters:>, 4, 5, 6..
9785
9786 =item ENDING THE HTML DOCUMENT:
9787
9788 =item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
9789
9790 =item OBTAINING THE SCRIPT'S URL
9791
9792 B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
9793 (B<-query_string>), B<-base>
9794
9795 =item MIXING POST AND URL PARAMETERS
9796
9797 =back
9798
9799 =item CREATING STANDARD HTML ELEMENTS:
9800
9801 =over 4
9802
9803 =item PROVIDING ARGUMENTS TO HTML SHORTCUTS
9804
9805 =item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
9806
9807 =item HTML SHORTCUTS AND LIST INTERPOLATION
9808
9809 =item NON-STANDARD HTML SHORTCUTS
9810
9811 =item AUTOESCAPING HTML
9812
9813 $escaped_string = escapeHTML("unescaped string");, $charset =
9814 charset([$charset]);, $flag = autoEscape([$flag]);
9815
9816 =item PRETTY-PRINTING HTML
9817
9818 =back
9819
9820 =item CREATING FILL-OUT FORMS:
9821
9822 =over 4
9823
9824 =item CREATING AN ISINDEX TAG
9825
9826 =item STARTING AND ENDING A FORM
9827
9828 B<application/x-www-form-urlencoded>, B<multipart/form-data>
9829
9830 =item CREATING A TEXT FIELD
9831
9832 B<Parameters>
9833
9834 =item CREATING A BIG TEXT FIELD
9835
9836 =item CREATING A PASSWORD FIELD
9837
9838 =item CREATING A FILE UPLOAD FIELD
9839
9840 B<Parameters>
9841
9842 =item CREATING A POPUP MENU
9843
9844 =item CREATING A SCROLLING LIST
9845
9846 B<Parameters:>
9847
9848 =item CREATING A GROUP OF RELATED CHECKBOXES
9849
9850 B<Parameters:>
9851
9852 =item CREATING A STANDALONE CHECKBOX
9853
9854 B<Parameters:>
9855
9856 =item CREATING A RADIO BUTTON GROUP
9857
9858 B<Parameters:>
9859
9860 =item CREATING A SUBMIT BUTTON 
9861
9862 B<Parameters:>
9863
9864 =item CREATING A RESET BUTTON
9865
9866 =item CREATING A DEFAULT BUTTON
9867
9868 =item CREATING A HIDDEN FIELD
9869
9870 B<Parameters:>
9871
9872 =item CREATING A CLICKABLE IMAGE BUTTON
9873
9874 B<Parameters:>
9875
9876 =item CREATING A JAVASCRIPT ACTION BUTTON
9877
9878 =back
9879
9880 =item HTTP COOKIES
9881
9882 1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
9883 B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
9884
9885 =item WORKING WITH FRAMES
9886
9887 1. Create a <Frameset> document, 2. Specify the destination for the
9888 document in the HTTP header, 3. Specify the destination for the document in
9889 the <form> tag
9890
9891 =item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
9892
9893 =item DEBUGGING
9894
9895 =over 4
9896
9897 =item DUMPING OUT ALL THE NAME/VALUE PAIRS
9898
9899 =back
9900
9901 =item FETCHING ENVIRONMENT VARIABLES
9902
9903 B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
9904 B<path_translated()>, B<remote_host()>, B<script_name()>, B<referer()>,
9905 B<auth_type ()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
9906 B<server_software ()>, B<remote_user ()>, B<user_name ()>,
9907 B<request_method()>, B<content_type()>, B<http()>, B<https()>
9908
9909 =item USING NPH SCRIPTS
9910
9911 In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
9912 parameters
9913
9914 =item Server Push
9915
9916 multipart_init(), multipart_start(), multipart_end(), multipart_final()
9917
9918 =item Avoiding Denial of Service Attacks
9919
9920 B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
9921 basis>, B<2. Globally for all scripts>
9922
9923 =item COMPATIBILITY WITH CGI-LIB.PL
9924
9925 =item AUTHOR INFORMATION
9926
9927 =item CREDITS
9928
9929 Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
9930 (james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
9931 (mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
9932 (jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
9933 (applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
9934 (tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
9935 (tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
9936 MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
9937 (kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
9938 Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
9939 MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
9940 ...and many many more..
9941
9942 =item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
9943
9944 =item BUGS
9945
9946 =item SEE ALSO
9947
9948 =back
9949
9950 =head2 CGI::Apache - Backward compatibility module for CGI.pm
9951
9952 =over 4
9953
9954 =item SYNOPSIS
9955
9956 =item ABSTRACT
9957
9958 =item DESCRIPTION
9959
9960 =item AUTHOR INFORMATION
9961
9962 =item BUGS
9963
9964 =item SEE ALSO
9965
9966 =back
9967
9968 =head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
9969 other) error log
9970
9971 =over 4
9972
9973 =item SYNOPSIS
9974
9975 =item DESCRIPTION
9976
9977 =item REDIRECTING ERROR MESSAGES
9978
9979 =item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
9980
9981 =over 4
9982
9983 =item Changing the default message
9984
9985 =back
9986
9987 =item MAKING WARNINGS APPEAR AS HTML COMMENTS
9988
9989 =item CHANGE LOG
9990
9991 =item AUTHORS
9992
9993 =item SEE ALSO
9994
9995 =back
9996
9997 =head2 CGI::Cookie - Interface to Netscape Cookies
9998
9999 =over 4
10000
10001 =item SYNOPSIS
10002
10003 =item DESCRIPTION
10004
10005 =item USING CGI::Cookie
10006
10007 B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
10008
10009 =over 4
10010
10011 =item Creating New Cookies
10012
10013 =item Sending the Cookie to the Browser
10014
10015 =item Recovering Previous Cookies
10016
10017 =item Manipulating Cookies
10018
10019 B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
10020
10021 =back
10022
10023 =item AUTHOR INFORMATION
10024
10025 =item BUGS
10026
10027 =item SEE ALSO
10028
10029 =back
10030
10031 =head2 CGI::Fast - CGI Interface for Fast CGI
10032
10033 =over 4
10034
10035 =item SYNOPSIS
10036
10037 =item DESCRIPTION
10038
10039 =item OTHER PIECES OF THE PUZZLE
10040
10041 =item WRITING FASTCGI PERL SCRIPTS
10042
10043 =item INSTALLING FASTCGI SCRIPTS
10044
10045 =item USING FASTCGI SCRIPTS AS CGI SCRIPTS
10046
10047 =item EXTERNAL FASTCGI SERVER INVOCATION
10048
10049 FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
10050
10051 =item CAVEATS
10052
10053 =item AUTHOR INFORMATION
10054
10055 =item BUGS
10056
10057 =item SEE ALSO
10058
10059 =back
10060
10061 =head2 CGI::Pretty - module to produce nicely formatted HTML code
10062
10063 =over 4
10064
10065 =item SYNOPSIS
10066
10067 =item DESCRIPTION
10068
10069 =over 4
10070
10071 =item Tags that won't be formatted
10072
10073 =item Customizing the Indenting
10074
10075 =back
10076
10077 =item BUGS
10078
10079 =item AUTHOR
10080
10081 =item SEE ALSO
10082
10083 =back
10084
10085 =head2 CGI::Push - Simple Interface to Server Push
10086
10087 =over 4
10088
10089 =item SYNOPSIS
10090
10091 =item DESCRIPTION
10092
10093 =item USING CGI::Push
10094
10095 -next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
10096
10097 =over 4
10098
10099 =item Heterogeneous Pages
10100
10101 =item Changing the Page Delay on the Fly
10102
10103 =back
10104
10105 =item INSTALLING CGI::Push SCRIPTS
10106
10107 =item AUTHOR INFORMATION
10108
10109 =item BUGS
10110
10111 =item SEE ALSO
10112
10113 =back
10114
10115 =head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
10116
10117 =over 4
10118
10119 =item SYNOPSIS
10120
10121 =item ABSTRACT
10122
10123 =item DESCRIPTION
10124
10125 =item AUTHOR INFORMATION
10126
10127 =item BUGS
10128
10129 =item SEE ALSO
10130
10131 =back
10132
10133 =head2 CGI::Util - Internal utilities used by CGI module
10134
10135 =over 4
10136
10137 =item SYNOPSIS
10138
10139 =item DESCRIPTION
10140
10141 =item AUTHOR INFORMATION
10142
10143 =item SEE ALSO
10144
10145 =back
10146
10147 =head2 CPAN - query, download and build perl modules from CPAN sites
10148
10149 =over 4
10150
10151 =item SYNOPSIS
10152
10153 =item DESCRIPTION
10154
10155 =over 4
10156
10157 =item Interactive Mode
10158
10159 Searching for authors, bundles, distribution files and modules, make, test,
10160 install, clean  modules or distributions, get, readme, look module or
10161 distribution, ls author, Signals
10162
10163 =item CPAN::Shell
10164
10165 =item autobundle
10166
10167 =item recompile
10168
10169 =item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
10170
10171 =item Programmer's interface
10172
10173 expand($type,@things), expandany(@things), Programming Examples
10174
10175 =item Methods in the other Classes
10176
10177 CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
10178 CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
10179 CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
10180 CPAN::Bundle::clean(), CPAN::Bundle::contains(),
10181 CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
10182 CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
10183 CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
10184 CPAN::Bundle::readme(), CPAN::Bundle::test(),
10185 CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
10186 CPAN::Distribution::clean(), CPAN::Distribution::containsmods(),
10187 CPAN::Distribution::cvs_import(), CPAN::Distribution::dir(),
10188 CPAN::Distribution::force($method,@args), CPAN::Distribution::get(),
10189 CPAN::Distribution::install(), CPAN::Distribution::isa_perl(),
10190 CPAN::Distribution::look(), CPAN::Distribution::make(),
10191 CPAN::Distribution::prereq_pm(), CPAN::Distribution::readme(),
10192 CPAN::Distribution::test(), CPAN::Distribution::uptodate(),
10193 CPAN::Index::force_reload(), CPAN::Index::reload(), CPAN::InfoObj::dump(),
10194 CPAN::Module::as_glimpse(), CPAN::Module::as_string(),
10195 CPAN::Module::clean(), CPAN::Module::cpan_file(),
10196 CPAN::Module::cpan_version(), CPAN::Module::cvs_import(),
10197 CPAN::Module::description(), CPAN::Module::force($method,@args),
10198 CPAN::Module::get(), CPAN::Module::inst_file(),
10199 CPAN::Module::inst_version(), CPAN::Module::install(),
10200 CPAN::Module::look(), CPAN::Module::make(),
10201 CPAN::Module::manpage_headline(), CPAN::Module::readme(),
10202 CPAN::Module::test(), CPAN::Module::uptodate(), CPAN::Module::userid()
10203
10204 =item Cache Manager
10205
10206 =item Bundles
10207
10208 =item Prerequisites
10209
10210 =item Finding packages and VERSION
10211
10212 =item Debugging
10213
10214 =item Floppy, Zip, Offline Mode
10215
10216 =back
10217
10218 =item CONFIGURATION
10219
10220 C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
10221 E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
10222 optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
10223 [unshift|push|splice] E<lt>listE<gt>>
10224
10225 =over 4
10226
10227 =item Note on urllist parameter's format
10228
10229 =item urllist parameter has CD-ROM support
10230
10231 =back
10232
10233 =item SECURITY
10234
10235 =item EXPORT
10236
10237 =item POPULATE AN INSTALLATION WITH LOTS OF MODULES
10238
10239 =item WORKING WITH CPAN.pm BEHIND FIREWALLS
10240
10241 =over 4
10242
10243 =item Three basic types of firewalls
10244
10245 http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
10246
10247 =item Configuring lynx or ncftp for going through a firewall
10248
10249 =back
10250
10251 =item FAQ
10252
10253 1), 2), 3), 4), 5), 6), 7), 8), 9), 10)
10254
10255 =item BUGS
10256
10257 =item AUTHOR
10258
10259 =item TRANSLATIONS
10260
10261 =item SEE ALSO
10262
10263 =back
10264
10265 =head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
10266
10267 =over 4
10268
10269 =item SYNOPSIS
10270
10271 =item DESCRIPTION
10272
10273 =back
10274
10275 =head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
10276 module
10277
10278 =over 4
10279
10280 =item SYNOPSIS
10281
10282 =item DESCRIPTION
10283
10284 =item  SEE ALSO
10285
10286 =back
10287
10288 =head2 Carp, carp    - warn of errors (from perspective of caller)
10289
10290 =over 4
10291
10292 =item SYNOPSIS
10293
10294 =item DESCRIPTION
10295
10296 =over 4
10297
10298 =item Forcing a Stack Trace
10299
10300 =back
10301
10302 =item BUGS
10303
10304 =back
10305
10306 =head2 Carp::Heavy, Carp heavy machinery - no user serviceable parts inside
10307
10308 =head2 Class::ISA -- report the search path for a class's ISA tree
10309
10310 =over 4
10311
10312 =item SYNOPSIS
10313
10314 =item DESCRIPTION
10315
10316 =item FUNCTIONS
10317
10318 the function Class::ISA::super_path($CLASS), the function
10319 Class::ISA::self_and_super_path($CLASS), the function
10320 Class::ISA::self_and_super_versions($CLASS)
10321
10322 =item CAUTIONARY NOTES
10323
10324 =item COPYRIGHT
10325
10326 =item AUTHOR
10327
10328 =back
10329
10330 =head2 Class::Struct - declare struct-like datatypes as Perl classes
10331
10332 =over 4
10333
10334 =item SYNOPSIS
10335
10336 =item DESCRIPTION
10337
10338 =over 4
10339
10340 =item The C<struct()> function
10341
10342 =item Class Creation at Compile Time
10343
10344 =item Element Types and Accessor Methods
10345
10346 Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
10347 C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
10348
10349 =item Initializing with C<new>
10350
10351 =back
10352
10353 =item EXAMPLES
10354
10355 Example 1, Example 2, Example 3
10356
10357 =item Author and Modification History
10358
10359 =back
10360
10361 =head2 Config - access Perl configuration information
10362
10363 =over 4
10364
10365 =item SYNOPSIS
10366
10367 =item DESCRIPTION
10368
10369 myconfig(), config_sh(), config_vars(@names)
10370
10371 =item EXAMPLE
10372
10373 =item WARNING
10374
10375 =item GLOSSARY
10376
10377 =over 4
10378
10379 =item _
10380
10381 C<_a>, C<_exe>, C<_o>
10382
10383 =item a
10384
10385 C<afs>, C<afsroot>, C<alignbytes>, C<ansi2knr>, C<aphostname>,
10386 C<api_revision>, C<api_subversion>, C<api_version>, C<api_versionstring>,
10387 C<ar>, C<archlib>, C<archlibexp>, C<archname64>, C<archname>, C<archobjs>,
10388 C<asctime_r_proto>, C<awk>
10389
10390 =item b
10391
10392 C<baserev>, C<bash>, C<bin>, C<bincompat5005>, C<binexp>, C<bison>,
10393 C<byacc>, C<byteorder>
10394
10395 =item c
10396
10397 C<c>, C<castflags>, C<cat>, C<cc>, C<cccdlflags>, C<ccdlflags>, C<ccflags>,
10398 C<ccflags_uselargefiles>, C<ccname>, C<ccsymbols>, C<ccversion>, C<cf_by>,
10399 C<cf_email>, C<cf_time>, C<charsize>, C<chgrp>, C<chmod>, C<chown>,
10400 C<clocktype>, C<comm>, C<compress>, C<contains>, C<cp>, C<cpio>, C<cpp>,
10401 C<cpp_stuff>, C<cppccsymbols>, C<cppflags>, C<cpplast>, C<cppminus>,
10402 C<cpprun>, C<cppstdin>, C<cppsymbols>, C<crypt_r_proto>, C<cryptlib>,
10403 C<csh>, C<ctermid_r_proto>, C<ctime_r_proto>
10404
10405 =item d
10406
10407 C<d__fwalk>, C<d_access>, C<d_accessx>, C<d_alarm>, C<d_archlib>,
10408 C<d_asctime_r>, C<d_atolf>, C<d_atoll>, C<d_attribut>, C<d_bcmp>,
10409 C<d_bcopy>, C<d_bincompat5005>, C<d_bsd>, C<d_bsdgetpgrp>, C<d_bsdsetpgrp>,
10410 C<d_bzero>, C<d_casti32>, C<d_castneg>, C<d_charvspr>, C<d_chown>,
10411 C<d_chroot>, C<d_chsize>, C<d_class>, C<d_closedir>, C<d_cmsghdr_s>,
10412 C<d_const>, C<d_crypt>, C<d_crypt_r>, C<d_csh>, C<d_ctermid_r>,
10413 C<d_ctime_r>, C<d_cuserid>, C<d_dbl_dig>, C<d_dbminitproto>, C<d_difftime>,
10414 C<d_dirfd>, C<d_dirnamlen>, C<d_dlerror>, C<d_dlopen>, C<d_dlsymun>,
10415 C<d_dosuid>, C<d_drand48_r>, C<d_drand48proto>, C<d_dup2>, C<d_eaccess>,
10416 C<d_endgrent>, C<d_endgrent_r>, C<d_endhent>, C<d_endhostent_r>,
10417 C<d_endnent>, C<d_endnetent_r>, C<d_endpent>, C<d_endprotoent_r>,
10418 C<d_endpwent>, C<d_endpwent_r>, C<d_endsent>, C<d_endservent_r>,
10419 C<d_eofnblk>, C<d_eunice>, C<d_fchdir>, C<d_fchmod>, C<d_fchown>,
10420 C<d_fcntl>, C<d_fcntl_can_lock>, C<d_fd_macros>, C<d_fd_set>,
10421 C<d_fds_bits>, C<d_fgetpos>, C<d_finite>, C<d_finitel>, C<d_flexfnam>,
10422 C<d_flock>, C<d_flockproto>, C<d_fork>, C<d_fp_class>, C<d_fpathconf>,
10423 C<d_fpclass>, C<d_fpclassify>, C<d_fpclassl>, C<d_fpos64_t>, C<d_frexpl>,
10424 C<d_fs_data_s>, C<d_fseeko>, C<d_fsetpos>, C<d_fstatfs>, C<d_fstatvfs>,
10425 C<d_fsync>, C<d_ftello>, C<d_ftime>, C<d_Gconvert>, C<d_getcwd>,
10426 C<d_getespwnam>, C<d_getfsstat>, C<d_getgrent>, C<d_getgrent_r>,
10427 C<d_getgrgid_r>, C<d_getgrnam_r>, C<d_getgrps>, C<d_gethbyaddr>,
10428 C<d_gethbyname>, C<d_gethent>, C<d_gethname>, C<d_gethostbyaddr_r>,
10429 C<d_gethostbyname_r>, C<d_gethostent_r>, C<d_gethostprotos>,
10430 C<d_getitimer>, C<d_getlogin>, C<d_getlogin_r>, C<d_getmnt>,
10431 C<d_getmntent>, C<d_getnbyaddr>, C<d_getnbyname>, C<d_getnent>,
10432 C<d_getnetbyaddr_r>, C<d_getnetbyname_r>, C<d_getnetent_r>,
10433 C<d_getnetprotos>, C<d_getpagsz>, C<d_getpbyname>, C<d_getpbynumber>,
10434 C<d_getpent>, C<d_getpgid>, C<d_getpgrp2>, C<d_getpgrp>, C<d_getppid>,
10435 C<d_getprior>, C<d_getprotobyname_r>, C<d_getprotobynumber_r>,
10436 C<d_getprotoent_r>, C<d_getprotoprotos>, C<d_getprpwnam>, C<d_getpwent>,
10437 C<d_getpwent_r>, C<d_getpwnam_r>, C<d_getpwuid_r>, C<d_getsbyname>,
10438 C<d_getsbyport>, C<d_getsent>, C<d_getservbyname_r>, C<d_getservbyport_r>,
10439 C<d_getservent_r>, C<d_getservprotos>, C<d_getspnam>, C<d_getspnam_r>,
10440 C<d_gettimeod>, C<d_gmtime_r>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>,
10441 C<d_htonl>, C<d_index>, C<d_inetaton>, C<d_int64_t>, C<d_isascii>,
10442 C<d_isfinite>, C<d_isinf>, C<d_isnan>, C<d_isnanl>, C<d_killpg>,
10443 C<d_lchown>, C<d_ldbl_dig>, C<d_link>, C<d_localtime_r>, C<d_locconv>,
10444 C<d_lockf>, C<d_longdbl>, C<d_longlong>, C<d_lseekproto>, C<d_lstat>,
10445 C<d_madvise>, C<d_mblen>, C<d_mbstowcs>, C<d_mbtowc>, C<d_memchr>,
10446 C<d_memcmp>, C<d_memcpy>, C<d_memmove>, C<d_memset>, C<d_mkdir>,
10447 C<d_mkdtemp>, C<d_mkfifo>, C<d_mkstemp>, C<d_mkstemps>, C<d_mktime>,
10448 C<d_mmap>, C<d_modfl>, C<d_modfl_pow32_bug>, C<d_mprotect>, C<d_msg>,
10449 C<d_msg_ctrunc>, C<d_msg_dontroute>, C<d_msg_oob>, C<d_msg_peek>,
10450 C<d_msg_proxy>, C<d_msgctl>, C<d_msgget>, C<d_msghdr_s>, C<d_msgrcv>,
10451 C<d_msgsnd>, C<d_msync>, C<d_munmap>, C<d_mymalloc>, C<d_nice>,
10452 C<d_nl_langinfo>, C<d_nv_preserves_uv>
10453
10454 =item n
10455
10456 C<nv_preserves_uv_bits>, C<d_off64_t>, C<d_old_pthread_create_joinable>,
10457 C<d_oldpthreads>, C<d_oldsock>, C<d_open3>, C<d_pathconf>, C<d_pause>,
10458 C<d_perl_otherlibdirs>, C<d_phostname>, C<d_pipe>, C<d_poll>,
10459 C<d_portable>, C<d_PRId64>, C<d_PRIeldbl>, C<d_PRIEUldbl>, C<d_PRIfldbl>,
10460 C<d_PRIFUldbl>, C<d_PRIgldbl>, C<d_PRIGUldbl>, C<d_PRIi64>, C<d_PRIo64>,
10461 C<d_PRIu64>, C<d_PRIx64>, C<d_PRIXU64>, C<d_procselfexe>,
10462 C<d_pthread_atfork>, C<d_pthread_yield>, C<d_pwage>, C<d_pwchange>,
10463 C<d_pwclass>, C<d_pwcomment>, C<d_pwexpire>, C<d_pwgecos>, C<d_pwpasswd>,
10464 C<d_pwquota>, C<d_qgcvt>, C<d_quad>, C<d_random_r>, C<d_readdir64_r>,
10465 C<d_readdir>, C<d_readdir_r>, C<d_readlink>, C<d_readv>, C<d_recvmsg>,
10466 C<d_rename>, C<d_rewinddir>, C<d_rmdir>, C<d_safebcpy>, C<d_safemcpy>,
10467 C<d_sanemcmp>, C<d_sbrkproto>, C<d_sched_yield>, C<d_scm_rights>,
10468 C<d_SCNfldbl>, C<d_seekdir>, C<d_select>, C<d_sem>, C<d_semctl>,
10469 C<d_semctl_semid_ds>, C<d_semctl_semun>, C<d_semget>, C<d_semop>,
10470 C<d_sendmsg>, C<d_setegid>, C<d_seteuid>, C<d_setgrent>, C<d_setgrent_r>,
10471 C<d_setgrps>, C<d_sethent>, C<d_sethostent_r>, C<d_setitimer>,
10472 C<d_setlinebuf>, C<d_setlocale>, C<d_setlocale_r>, C<d_setnent>,
10473 C<d_setnetent_r>, C<d_setpent>, C<d_setpgid>, C<d_setpgrp2>, C<d_setpgrp>,
10474 C<d_setprior>, C<d_setproctitle>, C<d_setprotoent_r>, C<d_setpwent>,
10475 C<d_setpwent_r>, C<d_setregid>, C<d_setresgid>, C<d_setresuid>,
10476 C<d_setreuid>, C<d_setrgid>, C<d_setruid>, C<d_setsent>, C<d_setservent_r>,
10477 C<d_setsid>, C<d_setvbuf>, C<d_sfio>, C<d_shm>, C<d_shmat>,
10478 C<d_shmatprototype>, C<d_shmctl>, C<d_shmdt>, C<d_shmget>, C<d_sigaction>,
10479 C<d_sigprocmask>, C<d_sigsetjmp>, C<d_sockatmark>, C<d_sockatmarkproto>,
10480 C<d_socket>, C<d_socklen_t>, C<d_sockpair>, C<d_socks5_init>, C<d_sqrtl>,
10481 C<d_srand48_r>, C<d_srandom_r>, C<d_sresgproto>, C<d_sresuproto>,
10482 C<d_statblks>, C<d_statfs_f_flags>, C<d_statfs_s>, C<d_statvfs>,
10483 C<d_stdio_cnt_lval>, C<d_stdio_ptr_lval>, C<d_stdio_ptr_lval_nochange_cnt>,
10484 C<d_stdio_ptr_lval_sets_cnt>, C<d_stdio_stream_array>, C<d_stdiobase>,
10485 C<d_stdstdio>, C<d_strchr>, C<d_strcoll>, C<d_strctcpy>, C<d_strerrm>,
10486 C<d_strerror>, C<d_strerror_r>, C<d_strftime>, C<d_strtod>, C<d_strtol>,
10487 C<d_strtold>, C<d_strtoll>, C<d_strtoq>, C<d_strtoul>, C<d_strtoull>,
10488 C<d_strtouq>, C<d_strxfrm>, C<d_suidsafe>, C<d_symlink>, C<d_syscall>,
10489 C<d_syscallproto>, C<d_sysconf>, C<d_sysernlst>, C<d_syserrlst>,
10490 C<d_system>, C<d_tcgetpgrp>, C<d_tcsetpgrp>, C<d_telldir>,
10491 C<d_telldirproto>, C<d_time>, C<d_times>, C<d_tm_tm_gmtoff>,
10492 C<d_tm_tm_zone>, C<d_tmpnam_r>, C<d_truncate>, C<d_ttyname_r>, C<d_tzname>,
10493 C<d_u32align>, C<d_ualarm>, C<d_umask>, C<d_uname>, C<d_union_semun>,
10494 C<d_unordered>, C<d_usleep>, C<d_usleepproto>, C<d_ustat>, C<d_vendorarch>,
10495 C<d_vendorbin>, C<d_vendorlib>, C<d_vfork>, C<d_void_closedir>,
10496 C<d_voidsig>, C<d_voidtty>, C<d_volatile>, C<d_vprintf>, C<d_wait4>,
10497 C<d_waitpid>, C<d_wcstombs>, C<d_wctomb>, C<d_writev>, C<d_xenix>, C<date>,
10498 C<db_hashtype>, C<db_prefixtype>, C<db_version_major>, C<db_version_minor>,
10499 C<db_version_patch>, C<defvoidused>, C<direntrytype>, C<dlext>, C<dlsrc>,
10500 C<doublesize>, C<drand01>, C<drand48_r_proto>, C<dynamic_ext>
10501
10502 =item e
10503
10504 C<eagain>, C<ebcdic>, C<echo>, C<egrep>, C<emacs>, C<endgrent_r_proto>,
10505 C<endhostent_r_proto>, C<endnetent_r_proto>, C<endprotoent_r_proto>,
10506 C<endpwent_r_proto>, C<endservent_r_proto>, C<eunicefix>, C<exe_ext>,
10507 C<expr>, C<extensions>, C<extras>
10508
10509 =item f
10510
10511 C<fflushall>, C<fflushNULL>, C<find>, C<firstmakefile>, C<flex>,
10512 C<fpossize>, C<fpostype>, C<freetype>, C<from>, C<full_ar>, C<full_csh>,
10513 C<full_sed>
10514
10515 =item g
10516
10517 C<gccosandvers>, C<gccversion>, C<getgrent_r_proto>, C<getgrgid_r_proto>,
10518 C<getgrnam_r_proto>, C<gethostbyaddr_r_proto>, C<gethostbyname_r_proto>,
10519 C<gethostent_r_proto>, C<getlogin_r_proto>, C<getnetbyaddr_r_proto>,
10520 C<getnetbyname_r_proto>, C<getnetent_r_proto>, C<getprotobyname_r_proto>,
10521 C<getprotobynumber_r_proto>, C<getprotoent_r_proto>, C<getpwent_r_proto>,
10522 C<getpwnam_r_proto>, C<getpwuid_r_proto>, C<getservbyname_r_proto>,
10523 C<getservbyport_r_proto>, C<getservent_r_proto>, C<getspnam_r_proto>,
10524 C<gidformat>, C<gidsign>, C<gidsize>, C<gidtype>, C<glibpth>, C<gmake>,
10525 C<gmtime_r_proto>, C<grep>, C<groupcat>, C<groupstype>, C<gzip>
10526
10527 =item h
10528
10529 C<h_fcntl>, C<h_sysfile>, C<hint>, C<hostcat>
10530
10531 =item i
10532
10533 C<i16size>, C<i16type>, C<i32size>, C<i32type>, C<i64size>, C<i64type>,
10534 C<i8size>, C<i8type>, C<i_arpainet>, C<i_bsdioctl>, C<i_crypt>, C<i_db>,
10535 C<i_dbm>, C<i_dirent>, C<i_dld>, C<i_dlfcn>, C<i_fcntl>, C<i_float>,
10536 C<i_fp>, C<i_fp_class>, C<i_gdbm>, C<i_grp>, C<i_ieeefp>, C<i_inttypes>,
10537 C<i_langinfo>, C<i_libutil>, C<i_limits>, C<i_locale>, C<i_machcthr>,
10538 C<i_malloc>, C<i_math>, C<i_memory>, C<i_mntent>, C<i_ndbm>, C<i_netdb>,
10539 C<i_neterrno>, C<i_netinettcp>, C<i_niin>, C<i_poll>, C<i_prot>,
10540 C<i_pthread>, C<i_pwd>, C<i_rpcsvcdbm>, C<i_sfio>, C<i_sgtty>, C<i_shadow>,
10541 C<i_socks>, C<i_stdarg>, C<i_stddef>, C<i_stdlib>, C<i_string>,
10542 C<i_sunmath>, C<i_sysaccess>, C<i_sysdir>, C<i_sysfile>, C<i_sysfilio>,
10543 C<i_sysin>, C<i_sysioctl>, C<i_syslog>, C<i_sysmman>, C<i_sysmode>,
10544 C<i_sysmount>, C<i_sysndir>, C<i_sysparam>, C<i_sysresrc>, C<i_syssecrt>,
10545 C<i_sysselct>, C<i_syssockio>, C<i_sysstat>, C<i_sysstatfs>,
10546 C<i_sysstatvfs>, C<i_systime>, C<i_systimek>, C<i_systimes>, C<i_systypes>,
10547 C<i_sysuio>, C<i_sysun>, C<i_sysutsname>, C<i_sysvfs>, C<i_syswait>,
10548 C<i_termio>, C<i_termios>, C<i_time>, C<i_unistd>, C<i_ustat>, C<i_utime>,
10549 C<i_values>, C<i_varargs>, C<i_varhdr>, C<i_vfork>,
10550 C<ignore_versioned_solibs>, C<inc_version_list>, C<inc_version_list_init>,
10551 C<incpath>, C<inews>, C<installarchlib>, C<installbin>, C<installman1dir>,
10552 C<installman3dir>, C<installprefix>, C<installprefixexp>,
10553 C<installprivlib>, C<installscript>, C<installsitearch>, C<installsitebin>,
10554 C<installsitelib>, C<installstyle>, C<installusrbinperl>,
10555 C<installvendorarch>, C<installvendorbin>, C<installvendorlib>, C<intsize>,
10556 C<issymlink>, C<ivdformat>, C<ivsize>, C<ivtype>
10557
10558 =item k
10559
10560 C<known_extensions>, C<ksh>
10561
10562 =item l
10563
10564 C<ld>, C<lddlflags>, C<ldflags>, C<ldflags_uselargefiles>, C<ldlibpthname>,
10565 C<less>, C<lib_ext>, C<libc>, C<libperl>, C<libpth>, C<libs>, C<libsdirs>,
10566 C<libsfiles>, C<libsfound>, C<libspath>, C<libswanted>,
10567 C<libswanted_uselargefiles>, C<line>, C<lint>, C<lkflags>, C<ln>, C<lns>,
10568 C<localtime_r_proto>, C<locincpth>, C<loclibpth>, C<longdblsize>,
10569 C<longlongsize>, C<longsize>, C<lp>, C<lpr>, C<ls>, C<lseeksize>,
10570 C<lseektype>
10571
10572 =item m
10573
10574 C<mail>, C<mailx>, C<make>, C<make_set_make>, C<mallocobj>, C<mallocsrc>,
10575 C<malloctype>, C<man1dir>, C<man1direxp>, C<man1ext>, C<man3dir>,
10576 C<man3direxp>, C<man3ext>
10577
10578 =item M
10579
10580 C<Mcc>, C<mips_type>, C<mkdir>, C<mmaptype>, C<modetype>, C<more>,
10581 C<multiarch>, C<mv>, C<myarchname>, C<mydomain>, C<myhostname>, C<myuname>,
10582 C<n>, C<need_va_copy>, C<netdb_hlen_type>, C<netdb_host_type>,
10583 C<netdb_name_type>, C<netdb_net_type>, C<nm>, C<nm_opt>, C<nm_so_opt>,
10584 C<nonxs_ext>, C<nroff>, C<nveformat>, C<nvEUformat>, C<nvfformat>,
10585 C<nvFUformat>, C<nvgformat>, C<nvGUformat>, C<nvsize>, C<nvtype>
10586
10587 =item o
10588
10589 C<o_nonblock>, C<obj_ext>, C<old_pthread_create_joinable>, C<optimize>,
10590 C<orderlib>, C<osname>, C<osvers>, C<otherlibdirs>
10591
10592 =item p
10593
10594 C<package>, C<pager>, C<passcat>, C<patchlevel>, C<path_sep>, C<perl5>,
10595 C<perl>, C<perl_patchlevel>
10596
10597 =item P
10598
10599 C<PERL_REVISION>, C<PERL_SUBVERSION>, C<PERL_VERSION>, C<perladmin>,
10600 C<perllibs>, C<perlpath>, C<pg>, C<phostname>, C<pidtype>, C<plibpth>,
10601 C<pm_apiversion>, C<pmake>, C<pr>, C<prefix>, C<prefixexp>, C<privlib>,
10602 C<privlibexp>, C<procselfexe>, C<prototype>, C<ptrsize>
10603
10604 =item q
10605
10606 C<quadkind>, C<quadtype>
10607
10608 =item r
10609
10610 C<randbits>, C<randfunc>, C<random_r_proto>, C<randseedtype>, C<ranlib>,
10611 C<rd_nodata>, C<readdir64_r_proto>, C<readdir_r_proto>, C<revision>, C<rm>,
10612 C<rmail>, C<run>, C<runnm>
10613
10614 =item s
10615
10616 C<sched_yield>, C<scriptdir>, C<scriptdirexp>, C<sed>, C<seedfunc>,
10617 C<selectminbits>, C<selecttype>, C<sendmail>, C<setgrent_r_proto>,
10618 C<sethostent_r_proto>, C<setlocale_r_proto>, C<setnetent_r_proto>,
10619 C<setprotoent_r_proto>, C<setpwent_r_proto>, C<setservent_r_proto>, C<sh>,
10620 C<shar>, C<sharpbang>, C<shmattype>, C<shortsize>, C<shrpenv>, C<shsharp>,
10621 C<sig_count>, C<sig_name>, C<sig_name_init>, C<sig_num>, C<sig_num_init>,
10622 C<sig_size>, C<signal_t>, C<sitearch>, C<sitearchexp>, C<sitebin>,
10623 C<sitebinexp>, C<sitelib>, C<sitelib_stem>, C<sitelibexp>, C<siteprefix>,
10624 C<siteprefixexp>, C<sizesize>, C<sizetype>, C<sleep>, C<smail>, C<so>,
10625 C<sockethdr>, C<socketlib>, C<socksizetype>, C<sort>, C<spackage>,
10626 C<spitshell>, C<sPRId64>, C<sPRIeldbl>, C<sPRIEUldbl>, C<sPRIfldbl>,
10627 C<sPRIFUldbl>, C<sPRIgldbl>, C<sPRIGUldbl>, C<sPRIi64>, C<sPRIo64>,
10628 C<sPRIu64>, C<sPRIx64>, C<sPRIXU64>, C<srand48_r_proto>,
10629 C<srandom_r_proto>, C<src>, C<sSCNfldbl>, C<ssizetype>, C<startperl>,
10630 C<startsh>, C<static_ext>, C<stdchar>, C<stdio_base>, C<stdio_bufsiz>,
10631 C<stdio_cnt>, C<stdio_filbuf>, C<stdio_ptr>, C<stdio_stream_array>,
10632 C<strerror_r_proto>, C<strings>, C<submit>, C<subversion>, C<sysman>
10633
10634 =item t
10635
10636 C<tail>, C<tar>, C<targetarch>, C<tbl>, C<tee>, C<test>, C<timeincl>,
10637 C<timetype>, C<tmpnam_r_proto>, C<to>, C<touch>, C<tr>, C<trnl>, C<troff>,
10638 C<ttyname_r_proto>
10639
10640 =item u
10641
10642 C<u16size>, C<u16type>, C<u32size>, C<u32type>, C<u64size>, C<u64type>,
10643 C<u8size>, C<u8type>, C<uidformat>, C<uidsign>, C<uidsize>, C<uidtype>,
10644 C<uname>, C<uniq>, C<uquadtype>, C<use5005threads>, C<use64bitall>,
10645 C<use64bitint>, C<usecrosscompile>, C<usedl>, C<useithreads>,
10646 C<uselargefiles>, C<uselongdouble>, C<usemorebits>, C<usemultiplicity>,
10647 C<usemymalloc>, C<usenm>, C<useopcode>, C<useperlio>, C<useposix>,
10648 C<usereentrant>, C<usesfio>, C<useshrplib>, C<usesocks>, C<usethreads>,
10649 C<usevendorprefix>, C<usevfork>, C<usrinc>, C<uuname>, C<uvoformat>,
10650 C<uvsize>, C<uvtype>, C<uvuformat>, C<uvxformat>, C<uvXUformat>
10651
10652 =item v
10653
10654 C<vendorarch>, C<vendorarchexp>, C<vendorbin>, C<vendorbinexp>,
10655 C<vendorlib>, C<vendorlib_stem>, C<vendorlibexp>, C<vendorprefix>,
10656 C<vendorprefixexp>, C<version>, C<version_patchlevel_string>,
10657 C<versiononly>, C<vi>, C<voidflags>
10658
10659 =item x
10660
10661 C<xlibpth>, C<xs_apiversion>
10662
10663 =item y
10664
10665 C<yacc>, C<yaccflags>
10666
10667 =item z
10668
10669 C<zcat>, C<zip>
10670
10671 =back
10672
10673 =item NOTE
10674
10675 =back
10676
10677 =head2 Cwd - get pathname of current working directory
10678
10679 =over 4
10680
10681 =item SYNOPSIS
10682
10683 =item DESCRIPTION
10684
10685 =over 4
10686
10687 =item getcwd and friends
10688
10689 getcwd, cwd, fastcwd, fastgetcwd
10690
10691 =item abs_path and friends
10692
10693 abs_path, realpath, fast_abs_path
10694
10695 =item $ENV{PWD}
10696
10697 =back
10698
10699 =item NOTES
10700
10701 =item SEE ALSO
10702
10703 =back
10704
10705 =head2 DB - programmatic interface to the Perl debugging API (draft,
10706 subject to
10707 change)
10708
10709 =over 4
10710
10711 =item SYNOPSIS
10712
10713 =item DESCRIPTION
10714
10715 =over 4
10716
10717 =item Global Variables
10718
10719  $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace,  @DB::args, 
10720 @DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
10721 $DB::lineno
10722
10723 =item API Methods
10724
10725 CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
10726 CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
10727
10728 =item Client Callback Methods
10729
10730 CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
10731 CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
10732 CLIENT->output(LIST)
10733
10734 =back
10735
10736 =item BUGS
10737
10738 =item AUTHOR
10739
10740 =back
10741
10742 =head2 DB_File - Perl5 access to Berkeley DB version 1.x
10743
10744 =over 4
10745
10746 =item SYNOPSIS
10747
10748 =item DESCRIPTION
10749
10750 B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
10751
10752 =over 4
10753
10754 =item Using DB_File with Berkeley DB version 2 or greater
10755
10756 =item Interface to Berkeley DB
10757
10758 =item Opening a Berkeley DB Database File
10759
10760 =item Default Parameters
10761
10762 =item In Memory Databases
10763
10764 =back
10765
10766 =item DB_HASH
10767
10768 =over 4
10769
10770 =item A Simple Example
10771
10772 =back
10773
10774 =item DB_BTREE
10775
10776 =over 4
10777
10778 =item Changing the BTREE sort order
10779
10780 =item Handling Duplicate Keys 
10781
10782 =item The get_dup() Method
10783
10784 =item The find_dup() Method
10785
10786 =item The del_dup() Method
10787
10788 =item Matching Partial Keys 
10789
10790 =back
10791
10792 =item DB_RECNO
10793
10794 =over 4
10795
10796 =item The 'bval' Option
10797
10798 =item A Simple Example
10799
10800 =item Extra RECNO Methods
10801
10802 B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
10803 B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
10804 length, elements);>
10805
10806 =item Another Example
10807
10808 =back
10809
10810 =item THE API INTERFACE
10811
10812 B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
10813 $X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
10814 $flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
10815 $value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
10816
10817 =item DBM FILTERS
10818
10819 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
10820 B<filter_fetch_value>
10821
10822 =over 4
10823
10824 =item The Filter
10825
10826 =item An Example -- the NULL termination problem.
10827
10828 =item Another Example -- Key is a C int.
10829
10830 =back
10831
10832 =item HINTS AND TIPS 
10833
10834 =over 4
10835
10836 =item Locking: The Trouble with fd
10837
10838 =item Safe ways to lock a database
10839
10840 B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
10841
10842 =item Sharing Databases With C Applications
10843
10844 =item The untie() Gotcha
10845
10846 =back
10847
10848 =item COMMON QUESTIONS
10849
10850 =over 4
10851
10852 =item Why is there Perl source in my database?
10853
10854 =item How do I store complex data structures with DB_File?
10855
10856 =item What does "Invalid Argument" mean?
10857
10858 =item What does "Bareword 'DB_File' not allowed" mean? 
10859
10860 =back
10861
10862 =item REFERENCES
10863
10864 =item HISTORY
10865
10866 =item BUGS
10867
10868 =item AVAILABILITY
10869
10870 =item COPYRIGHT
10871
10872 =item SEE ALSO
10873
10874 =item AUTHOR
10875
10876 =back
10877
10878 =head2 Data::Dumper - stringified perl data structures, suitable for both
10879 printing and C<eval>
10880
10881 =over 4
10882
10883 =item SYNOPSIS
10884
10885 =item DESCRIPTION
10886
10887 =over 4
10888
10889 =item Methods
10890
10891 I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
10892 I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
10893 I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
10894 I<$OBJ>->Reset
10895
10896 =item Functions
10897
10898 Dumper(I<LIST>)
10899
10900 =item Configuration Variables or Methods
10901
10902 $Data::Dumper::Indent  I<or>  I<$OBJ>->Indent(I<[NEWVAL]>),
10903 $Data::Dumper::Purity  I<or>  I<$OBJ>->Purity(I<[NEWVAL]>),
10904 $Data::Dumper::Pad  I<or>  I<$OBJ>->Pad(I<[NEWVAL]>),
10905 $Data::Dumper::Varname  I<or>  I<$OBJ>->Varname(I<[NEWVAL]>),
10906 $Data::Dumper::Useqq  I<or>  I<$OBJ>->Useqq(I<[NEWVAL]>),
10907 $Data::Dumper::Terse  I<or>  I<$OBJ>->Terse(I<[NEWVAL]>),
10908 $Data::Dumper::Freezer  I<or>  $I<OBJ>->Freezer(I<[NEWVAL]>),
10909 $Data::Dumper::Toaster  I<or>  $I<OBJ>->Toaster(I<[NEWVAL]>),
10910 $Data::Dumper::Deepcopy  I<or>  $I<OBJ>->Deepcopy(I<[NEWVAL]>),
10911 $Data::Dumper::Quotekeys  I<or>  $I<OBJ>->Quotekeys(I<[NEWVAL]>),
10912 $Data::Dumper::Bless  I<or>  $I<OBJ>->Bless(I<[NEWVAL]>),
10913 $Data::Dumper::Maxdepth  I<or>  $I<OBJ>->Maxdepth(I<[NEWVAL]>),
10914 $Data::Dumper::Useperl  I<or>  $I<OBJ>->Useperl(I<[NEWVAL]>),
10915 $Data::Dumper::Sortkeys  I<or>  $I<OBJ>->Sortkeys(I<[NEWVAL]>),
10916 $Data::Dumper::Deparse  I<or>  $I<OBJ>->Deparse(I<[NEWVAL]>)
10917
10918 =item Exports
10919
10920 Dumper
10921
10922 =back
10923
10924 =item EXAMPLES
10925
10926 =item BUGS
10927
10928 =item AUTHOR
10929
10930 =item VERSION
10931
10932 =item SEE ALSO
10933
10934 =back
10935
10936 =head2 Devel::DProf - a Perl code profiler
10937
10938 =over 4
10939
10940 =item SYNOPSIS
10941
10942 =item DESCRIPTION
10943
10944 =item PROFILE FORMAT
10945
10946 =item AUTOLOAD
10947
10948 =item ENVIRONMENT
10949
10950 =item BUGS
10951
10952 =item SEE ALSO
10953
10954 =back
10955
10956 =head2 Devel::PPPort, Perl/Pollution/Portability
10957
10958 =over 4
10959
10960 =item SYNOPSIS
10961
10962 =item DESCRIPTION
10963
10964 =over 4
10965
10966 =item WriteFile
10967
10968 =back
10969
10970 =item ppport.h
10971
10972 =item AUTHOR
10973
10974 =item SEE ALSO
10975
10976 =back
10977
10978 =head2 Devel::Peek - A data debugging tool for the XS programmer
10979
10980 =over 4
10981
10982 =item SYNOPSIS
10983
10984 =item DESCRIPTION
10985
10986 =over 4
10987
10988 =item Runtime debugging
10989
10990 =item Memory footprint debugging
10991
10992 =back
10993
10994 =item EXAMPLES
10995
10996 =over 4
10997
10998 =item A simple scalar string
10999
11000 =item A simple scalar number
11001
11002 =item A simple scalar with an extra reference
11003
11004 =item A reference to a simple scalar
11005
11006 =item A reference to an array
11007
11008 =item A reference to a hash
11009
11010 =item Dumping a large array or hash
11011
11012 =item A reference to an SV which holds a C pointer
11013
11014 =item A reference to a subroutine
11015
11016 =back
11017
11018 =item EXPORTS
11019
11020 =item BUGS
11021
11022 =item AUTHOR
11023
11024 =item SEE ALSO
11025
11026 =back
11027
11028 =head2 Devel::SelfStubber - generate stubs for a SelfLoading module
11029
11030 =over 4
11031
11032 =item SYNOPSIS
11033
11034 =item DESCRIPTION
11035
11036 =back
11037
11038 =head2 Digest:: - Modules that calculate message digests
11039
11040 =over 4
11041
11042 =item SYNOPSIS
11043
11044 =item DESCRIPTION
11045
11046 I<binary>, I<hex>, I<base64>
11047
11048 =item OO INTERFACE
11049
11050 $ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
11051 Digest::XXX->new($arg,...), $ctx->reset, $ctx->add($data,...),
11052 $ctx->addfile($io_handle), $ctx->digest, $ctx->hexdigest, $ctx->b64digest
11053
11054 =item SEE ALSO
11055
11056 =item AUTHOR
11057
11058 =back
11059
11060 =head2 Digest::MD5 - Perl interface to the MD5 Algorithm
11061
11062 =over 4
11063
11064 =item SYNOPSIS
11065
11066 =item DESCRIPTION
11067
11068 =item FUNCTIONS
11069
11070 md5($data,...), md5_hex($data,...), md5_base64($data,...)
11071
11072 =item METHODS
11073
11074 $md5 = Digest::MD5->new, $md5->reset, $md5->add($data,...),
11075 $md5->addfile($io_handle), $md5->digest, $md5->hexdigest, $md5->b64digest
11076
11077 =item EXAMPLES
11078
11079 =item SEE ALSO
11080
11081 =item COPYRIGHT
11082
11083 =item AUTHORS
11084
11085 =back
11086
11087 =head2 DirHandle - supply object methods for directory handles
11088
11089 =over 4
11090
11091 =item SYNOPSIS
11092
11093 =item DESCRIPTION
11094
11095 =item NOTES
11096
11097 =back
11098
11099 =head2 Dumpvalue - provides screen dump of Perl data.
11100
11101 =over 4
11102
11103 =item SYNOPSIS
11104
11105 =item DESCRIPTION
11106
11107 =over 4
11108
11109 =item Creation
11110
11111 C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
11112 C<dumpDBFiles>, C<dumpPackages>, C<dumpReused>, C<tick>, C<quoteHighBit>,
11113 C<printUndef>, C<usageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
11114 stopDbSignal
11115
11116 =item Methods
11117
11118 dumpValue, dumpValues, dumpvars, set_quote, set_unctrl, compactDump,
11119 veryCompact, set, get
11120
11121 =back
11122
11123 =back
11124
11125 =head2 DynaLoader - Dynamically load C libraries into Perl code
11126
11127 =over 4
11128
11129 =item SYNOPSIS
11130
11131 =item DESCRIPTION
11132
11133 @dl_library_path, @dl_resolve_using, @dl_require_symbols, @dl_librefs,
11134 @dl_modules, dl_error(), $dl_debug, dl_findfile(), dl_expandspec(),
11135 dl_load_file(), dl_unload_file(), dl_loadflags(), dl_find_symbol(),
11136 dl_find_symbol_anywhere(), dl_undef_symbols(), dl_install_xsub(),
11137 bootstrap()
11138
11139 =item AUTHOR
11140
11141 =back
11142
11143 =head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
11144 Perl code
11145
11146 =over 4
11147
11148 =item SYNOPSIS
11149
11150 =item DESCRIPTION
11151
11152 =item AUTHOR
11153
11154 =back
11155
11156 =head2 Encode - character encodings
11157
11158 =over 4
11159
11160 =item SYNOPSIS
11161
11162 =item DESCRIPTION
11163
11164 =over 4
11165
11166 =item TERMINOLOGY
11167
11168 =back
11169
11170 =item ENCODINGS
11171
11172 =over 4
11173
11174 =item Characteristics of an Encoding
11175
11176 =item Types of Encodings
11177
11178 Fixed length 8-bit (or less) encodings, Fixed length 16-bit encodings,
11179 Fixed length 32-bit encodings, Multi-byte encodings, "Escape" encodings
11180
11181 =item Specifying Encodings
11182
11183 1. By name, 2. As an object
11184
11185 =item Encoding Names
11186
11187 The MIME name as defined in IETF RFCs, The name in the IANA registry, The
11188 name used by the organization that defined it
11189
11190 =back
11191
11192 =item PERL ENCODING API
11193
11194 =over 4
11195
11196 =item Generic Encoding Interface
11197
11198 =item Handling Malformed Data
11199
11200 Scheme 1, Scheme 2, Other Schemes
11201
11202 =item UTF-8 / utf8
11203
11204 =item Other Encodings of Unicode
11205
11206 =item Listing available encodings
11207
11208 =item Defining Aliases
11209
11210 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
11211 reference, e.g.:
11212
11213 =item Defining Encodings
11214
11215 =back
11216
11217 =item Encoding and IO
11218
11219 =item Encoding How to ...
11220
11221 IO with mixed content (faking iso-2020-*), MIME's Content-Length:, UTF-8
11222 strings in binary data, Perl/Encode wrappers on non-Unicode XS modules
11223
11224 =item Messing with Perl's Internals
11225
11226 is_utf8(STRING [, CHECK])
11227
11228 =item IMPLEMENTATION CLASSES
11229
11230 -E<gt>name, -E<gt>new_sequence, -E<gt>encode($string,$check),
11231 -E<gt>decode($octets,$check)
11232
11233 =over 4
11234
11235 =item Compiled Encodings
11236
11237 .enc, .ucm, .ucm, .c, .xs, ascii and iso-8859-*, IBM-1047 and two other
11238 variants of EBCDIC, symbol and dingbats as used by Tk on X11
11239
11240 =back
11241
11242 =item SEE ALSO
11243
11244 =back
11245
11246 =head2 Encode::Tcl - Tcl encodings
11247
11248 =over 4
11249
11250 =item SYNOPSIS
11251
11252 =item DESCRIPTION
11253
11254 =item SEE ALSO
11255
11256 =back
11257
11258 =head2 Encode::Tcl::Escape - Tcl Escape encodings
11259
11260 =over 4
11261
11262 =item SYNOPSIS
11263
11264 =item DESCRIPTION
11265
11266 =item SEE ALSO
11267
11268 =back
11269
11270 =head2 Encode::Tcl::Table - Tcl Table encodings
11271
11272 =over 4
11273
11274 =item SYNOPSIS
11275
11276 =item DESCRIPTION
11277
11278 =item SEE ALSO
11279
11280 =back
11281
11282 =head2 Encode::lib::Encode::Tcl, Encode::Tcl - Tcl encodings
11283
11284 =over 4
11285
11286 =item SYNOPSIS
11287
11288 =item DESCRIPTION
11289
11290 =item SEE ALSO
11291
11292 =back
11293
11294 =head2 Encode::lib::Encode::Tcl::Escape, Encode::Tcl::Escape - Tcl Escape
11295 encodings
11296
11297 =over 4
11298
11299 =item SYNOPSIS
11300
11301 =item DESCRIPTION
11302
11303 =item SEE ALSO
11304
11305 =back
11306
11307 =head2 Encode::lib::Encode::Tcl::Table, Encode::Tcl::Table - Tcl Table
11308 encodings
11309
11310 =over 4
11311
11312 =item SYNOPSIS
11313
11314 =item DESCRIPTION
11315
11316 =item SEE ALSO
11317
11318 =back
11319
11320 =head2 Encode::lib::EncodeFormat, EncodeFormat - the format of encoding
11321 tables of the Encode extension
11322
11323 =over 4
11324
11325 =item DESCRIPTION
11326
11327 [1]   B<S>, [2]   B<D>, [3]   B<M>, [4]   B<E>
11328
11329 =item KEYWORDS
11330
11331 =item COPYRIGHT
11332
11333 =back
11334
11335 =head2 EncodeFormat - the format of encoding tables of the Encode extension
11336
11337 =over 4
11338
11339 =item DESCRIPTION
11340
11341 [1]   B<S>, [2]   B<D>, [3]   B<M>, [4]   B<E>
11342
11343 =item KEYWORDS
11344
11345 =item COPYRIGHT
11346
11347 =back
11348
11349 =head2 English - use nice English (or awk) names for ugly punctuation
11350 variables
11351
11352 =over 4
11353
11354 =item SYNOPSIS
11355
11356 =item DESCRIPTION
11357
11358 =item PERFORMANCE
11359
11360 =back
11361
11362 =head2 Env - perl module that imports environment variables as scalars or
11363 arrays
11364
11365 =over 4
11366
11367 =item SYNOPSIS
11368
11369 =item DESCRIPTION
11370
11371 =item LIMITATIONS
11372
11373 =item AUTHOR
11374
11375 =back
11376
11377 =head2 Errno - System errno constants
11378
11379 =over 4
11380
11381 =item SYNOPSIS
11382
11383 =item DESCRIPTION
11384
11385 =item CAVEATS
11386
11387 =item AUTHOR
11388
11389 =item COPYRIGHT
11390
11391 =back
11392
11393 =head2 Exporter - Implements default import method for modules
11394
11395 =over 4
11396
11397 =item SYNOPSIS
11398
11399 =item DESCRIPTION
11400
11401 =over 4
11402
11403 =item How to Export
11404
11405 =item Selecting What To Export
11406
11407 =item How to Import
11408
11409 C<use ModuleName;>, C<use ModuleName ();>, C<use ModuleName qw(...);>
11410
11411 =back
11412
11413 =item Advanced features
11414
11415 =over 4
11416
11417 =item Specialised Import Lists
11418
11419 =item Exporting without using Exporter's import method
11420
11421 =item Module Version Checking
11422
11423 =item Managing Unknown Symbols
11424
11425 =item Tag Handling Utility Functions
11426
11427 =item Generating combined tags
11428
11429 =item C<AUTOLOAD>ed Constants
11430
11431 =back
11432
11433 =back
11434
11435 =head2 Exporter::Heavy - Exporter guts
11436
11437 =over 4
11438
11439 =item SYNOPSIS
11440
11441 =item DESCRIPTION
11442
11443 =back
11444
11445 =head2 ExtUtils::Command - utilities to replace common UNIX commands in
11446 Makefiles etc.
11447
11448 =over 4
11449
11450 =item SYNOPSIS
11451
11452 =item DESCRIPTION
11453
11454 =back
11455
11456 cat
11457
11458 eqtime src dst
11459
11460 rm_rf files...
11461
11462 rm_f files...
11463
11464 touch files ..
11465
11466 mv source... destination
11467
11468 cp source... destination
11469
11470 chmod mode files..
11471
11472 mkpath directory..
11473
11474 test_f file
11475
11476 =over 4
11477
11478 =item BUGS
11479
11480 =item SEE ALSO 
11481
11482 =item AUTHOR
11483
11484 =back
11485
11486 =head2 ExtUtils::Constant - generate XS code to import C header constants
11487
11488 =over 4
11489
11490 =item SYNOPSIS
11491
11492 =item DESCRIPTION
11493
11494 =item USAGE
11495
11496 IV, UV, NV, PV, PVN, SV, YES, NO, UNDEF
11497
11498 =item FUNCTIONS
11499
11500 =back
11501
11502 C_stringify NAME
11503
11504 constant_types
11505
11506 memEQ_clause NAME, CHECKED_AT, INDENT
11507
11508 assign INDENT, TYPE, PRE, POST, VALUE..
11509
11510 return_clause
11511
11512 switch_clause INDENT, NAMELEN, ITEMHASH, ITEM..
11513
11514 params WHAT
11515
11516 dump_names
11517
11518 dogfood
11519
11520 C_constant, name, type, value, macro, default, pre, post, def_pre =item
11521 def_post
11522
11523 XS_constant PACKAGE, TYPES, SUBNAME, C_SUBNAME
11524
11525 autoload PACKAGE, VERSION, AUTOLOADER
11526
11527 WriteMakefileSnippet
11528
11529 WriteConstants ATTRIBUTE =E<gt> VALUE [, ...], NAME, DEFAULT_TYPE,
11530 BREAKOUT_AT, NAMES, C_FILE, XS_FILE, SUBNAME, C_SUBNAME
11531
11532 =over 4
11533
11534 =item AUTHOR
11535
11536 =back
11537
11538 =head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
11539
11540 =over 4
11541
11542 =item SYNOPSIS
11543
11544 =item DESCRIPTION
11545
11546 =item @EXPORT
11547
11548 =item FUNCTIONS
11549
11550 xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
11551 ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
11552
11553 =item EXAMPLES
11554
11555 =item SEE ALSO
11556
11557 =item AUTHOR
11558
11559 =back
11560
11561 =head2 ExtUtils::Install - install files from here to there
11562
11563 =over 4
11564
11565 =item SYNOPSIS
11566
11567 =item DESCRIPTION
11568
11569 =back
11570
11571 =head2 ExtUtils::Installed - Inventory management of installed modules
11572
11573 =over 4
11574
11575 =item SYNOPSIS
11576
11577 =item DESCRIPTION
11578
11579 =item USAGE
11580
11581 =item FUNCTIONS
11582
11583 new(), modules(), files(), directories(), directory_tree(), validate(),
11584 packlist(), version()
11585
11586 =item EXAMPLE
11587
11588 =item AUTHOR
11589
11590 =back
11591
11592 =head2 ExtUtils::Liblist - determine libraries to use and how to use them
11593
11594 =over 4
11595
11596 =item SYNOPSIS
11597
11598 =item DESCRIPTION
11599
11600 For static extensions, For dynamic extensions, For dynamic extensions
11601
11602 =over 4
11603
11604 =item EXTRALIBS
11605
11606 =item LDLOADLIBS and LD_RUN_PATH
11607
11608 =item BSLOADLIBS
11609
11610 =back
11611
11612 =item PORTABILITY
11613
11614 =over 4
11615
11616 =item VMS implementation
11617
11618 =item Win32 implementation
11619
11620 =back
11621
11622 =item SEE ALSO
11623
11624 =back
11625
11626 =head2 ExtUtils::MM_BeOS - methods to override UN*X behaviour in
11627 ExtUtils::MakeMaker
11628
11629 =over 4
11630
11631 =item SYNOPSIS
11632
11633 =item DESCRIPTION
11634
11635 =back
11636
11637 perl_archive
11638
11639 =head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
11640 ExtUtils::MakeMaker
11641
11642 =over 4
11643
11644 =item SYNOPSIS
11645
11646 =item DESCRIPTION
11647
11648 canonpath, cflags, manifypods, perl_archive
11649
11650 =back
11651
11652 =head2 ExtUtils::MM_NW5 - methods to override UN*X behaviour in
11653 ExtUtils::MakeMaker
11654
11655 =over 4
11656
11657 =item SYNOPSIS
11658
11659 =item DESCRIPTION
11660
11661 =back
11662
11663 catfile
11664
11665 constants (o)
11666
11667 static_lib (o)
11668
11669 dynamic_bs (o)
11670
11671 dynamic_lib (o)
11672
11673 canonpath
11674
11675 perl_script
11676
11677 pm_to_blib
11678
11679 test_via_harness (o)
11680
11681 tool_autosplit (override)
11682
11683 tools_other (o)
11684
11685 xs_o (o)
11686
11687 top_targets (o)
11688
11689 htmlifypods (o)
11690
11691 manifypods (o)
11692
11693 dist_ci (o)
11694
11695 dist_core (o)
11696
11697 pasthru (o)
11698
11699 =head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
11700 ExtUtils::MakeMaker
11701
11702 =over 4
11703
11704 =item SYNOPSIS
11705
11706 =item DESCRIPTION
11707
11708 =item METHODS
11709
11710 =back
11711
11712 perl_archive_after
11713
11714 =head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
11715
11716 =over 4
11717
11718 =item SYNOPSIS
11719
11720 =item DESCRIPTION
11721
11722 =item METHODS
11723
11724 =over 4
11725
11726 =item Preloaded methods
11727
11728 canonpath
11729
11730 =back
11731
11732 =back
11733
11734 catdir
11735
11736 catfile
11737
11738 curdir
11739
11740 rootdir
11741
11742 updir
11743
11744 =over 4
11745
11746 =item SelfLoaded methods
11747
11748 c_o (o)
11749
11750 =back
11751
11752 cflags (o)
11753
11754 clean (o)
11755
11756 const_cccmd (o)
11757
11758 const_config (o)
11759
11760 const_loadlibs (o)
11761
11762 constants (o)
11763
11764 depend (o)
11765
11766 dir_target (o)
11767
11768 dist (o)
11769
11770 dist_basics (o)
11771
11772 dist_ci (o)
11773
11774 dist_core (o)
11775
11776 dist_dir (o)
11777
11778 dist_test (o)
11779
11780 dlsyms (o)
11781
11782 dynamic (o)
11783
11784 dynamic_bs (o)
11785
11786 dynamic_lib (o)
11787
11788 exescan
11789
11790 extliblist
11791
11792 file_name_is_absolute
11793
11794 find_perl
11795
11796 =over 4
11797
11798 =item Methods to actually produce chunks of text for the Makefile
11799
11800 fixin
11801
11802 =back
11803
11804 force (o)
11805
11806 guess_name
11807
11808 has_link_code
11809
11810 htmlifypods (o)
11811
11812 init_dirscan
11813
11814 init_main
11815
11816 init_others
11817
11818 install (o)
11819
11820 installbin (o)
11821
11822 libscan (o)
11823
11824 linkext (o)
11825
11826 lsdir
11827
11828 macro (o)
11829
11830 makeaperl (o)
11831
11832 makefile (o)
11833
11834 manifypods (o)
11835
11836 maybe_command
11837
11838 maybe_command_in_dirs
11839
11840 needs_linking (o)
11841
11842 nicetext
11843
11844 parse_version
11845
11846 parse_abstract
11847
11848 pasthru (o)
11849
11850 path
11851
11852 perl_script
11853
11854 perldepend (o)
11855
11856 ppd
11857
11858 perm_rw (o)
11859
11860 perm_rwx (o)
11861
11862 pm_to_blib
11863
11864 post_constants (o)
11865
11866 post_initialize (o)
11867
11868 postamble (o)
11869
11870 prefixify
11871
11872 processPL (o)
11873
11874 quote_paren
11875
11876 realclean (o)
11877
11878 replace_manpage_separator
11879
11880 static (o)
11881
11882 static_lib (o)
11883
11884 staticmake (o)
11885
11886 subdir_x (o)
11887
11888 subdirs (o)
11889
11890 test (o)
11891
11892 test_via_harness (o)
11893
11894 test_via_script (o)
11895
11896 tool_autosplit (o)
11897
11898 tools_other (o)
11899
11900 tool_xsubpp (o)
11901
11902 top_targets (o)
11903
11904 writedoc
11905
11906 xs_c (o)
11907
11908 xs_cpp (o)
11909
11910 xs_o (o)
11911
11912 perl_archive
11913
11914 perl_archive_after
11915
11916 export_list
11917
11918 =over 4
11919
11920 =item SEE ALSO
11921
11922 =back
11923
11924 =head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
11925 ExtUtils::MakeMaker
11926
11927 =over 4
11928
11929 =item SYNOPSIS
11930
11931 =item DESCRIPTION
11932
11933 =over 4
11934
11935 =item Methods always loaded
11936
11937 wraplist
11938
11939 =back
11940
11941 =back
11942
11943 rootdir (override)
11944
11945 =over 4
11946
11947 =item SelfLoaded methods
11948
11949 guess_name (override)
11950
11951 =back
11952
11953 find_perl (override)
11954
11955 path (override)
11956
11957 maybe_command (override)
11958
11959 maybe_command_in_dirs (override)
11960
11961 perl_script (override)
11962
11963 file_name_is_absolute (override)
11964
11965 replace_manpage_separator
11966
11967 init_others (override)
11968
11969 constants (override)
11970
11971 cflags (override)
11972
11973 const_cccmd (override)
11974
11975 pm_to_blib (override)
11976
11977 tool_autosplit (override)
11978
11979 tool_sxubpp (override)
11980
11981 xsubpp_version (override)
11982
11983 tools_other (override)
11984
11985 dist (override)
11986
11987 c_o (override)
11988
11989 xs_c (override)
11990
11991 xs_o (override)
11992
11993 top_targets (override)
11994
11995 dlsyms (override)
11996
11997 dynamic_lib (override)
11998
11999 dynamic_bs (override)
12000
12001 static_lib (override)
12002
12003 manifypods (override)
12004
12005 processPL (override)
12006
12007 installbin (override)
12008
12009 subdir_x (override)
12010
12011 clean (override)
12012
12013 realclean (override)
12014
12015 dist_basics (override)
12016
12017 dist_core (override)
12018
12019 dist_dir (override)
12020
12021 dist_test (override)
12022
12023 install (override)
12024
12025 perldepend (override)
12026
12027 makefile (override)
12028
12029 test (override)
12030
12031 test_via_harness (override)
12032
12033 test_via_script (override)
12034
12035 makeaperl (override)
12036
12037 nicetext (override)
12038
12039 =head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
12040 ExtUtils::MakeMaker
12041
12042 =over 4
12043
12044 =item SYNOPSIS
12045
12046 =item DESCRIPTION
12047
12048 =back
12049
12050 catfile
12051
12052 constants (o)
12053
12054 static_lib (o)
12055
12056 dynamic_bs (o)
12057
12058 dynamic_lib (o)
12059
12060 canonpath
12061
12062 perl_script
12063
12064 pm_to_blib
12065
12066 test_via_harness (o)
12067
12068 tool_autosplit (override)
12069
12070 tools_other (o)
12071
12072 xs_o (o)
12073
12074 top_targets (o)
12075
12076 htmlifypods (o)
12077
12078 manifypods (o)
12079
12080 dist_ci (o)
12081
12082 dist_core (o)
12083
12084 pasthru (o)
12085
12086 =head2 ExtUtils::MakeMaker - create an extension Makefile
12087
12088 =over 4
12089
12090 =item SYNOPSIS
12091
12092 =item DESCRIPTION
12093
12094 =over 4
12095
12096 =item How To Write A Makefile.PL
12097
12098 =item Default Makefile Behaviour
12099
12100 =item make test
12101
12102 =item make testdb
12103
12104 =item make install
12105
12106 =item PREFIX and LIB attribute
12107
12108 =item AFS users
12109
12110 =item Static Linking of a new Perl Binary
12111
12112 =item Determination of Perl Library and Installation Locations
12113
12114 =item Which architecture dependent directory?
12115
12116 =item Using Attributes and Parameters
12117
12118 ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CCFLAGS, CONFIG,
12119 CONFIGURE, DEFINE, DIR, DISTNAME, DL_FUNCS, DL_VARS, EXCLUDE_EXT,
12120 EXE_FILES, FIRST_MAKEFILE, FULLPERL, FUNCLIST, H, HTMLLIBPODS,
12121 HTMLSCRIPTPODS, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB, INSTALLBIN,
12122 INSTALLDIRS, INSTALLHTMLPRIVLIBDIR, INSTALLHTMLSCRIPTDIR,
12123 INSTALLHTMLSITELIBDIR, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB,
12124 INSTALLSCRIPT, INSTALLSITEARCH, INSTALLSITELIB, INST_ARCHLIB, INST_BIN,
12125 INST_EXE, INST_HTMLLIBDIR, INST_HTMLSCRIPTDIR, INST_LIB, INST_MAN1DIR,
12126 INST_MAN3DIR, INST_SCRIPT, LDFROM, LIB, LIBPERL_A, LIBS, LINKTYPE,
12127 MAKEAPERL, MAKEFILE, MAN1PODS, MAN3PODS, MAP_TARGET, MYEXTLIB, NAME,
12128 NEEDS_LINKING, NOECHO, NORECURS, NO_VC, OBJECT, OPTIMIZE, PERL, PERL_CORE,
12129 PERLMAINCC, PERL_ARCHLIB, PERL_LIB, PERL_MALLOC_OK, PERLRUN, PERM_RW,
12130 PERM_RWX, PL_FILES, PM, PMLIBDIRS, PM_FILTER, POLLUTE, PPM_INSTALL_EXEC,
12131 PPM_INSTALL_SCRIPT, PREFIX, PREREQ_PM, PREREQ_FATAL, PREREQ_PRINT,
12132 PRINT_PREREQ, SKIP, TEST_LIBS, VERSION, VERSION_FROM, XS, XSOPT,
12133 XSPROTOARG, XS_VERSION
12134
12135 =item Additional lowercase attributes
12136
12137 clean, depend, dist, dynamic_lib, linkext, macro, realclean, test,
12138 tool_autosplit
12139
12140 =item Overriding MakeMaker Methods
12141
12142 =item Hintsfile support
12143
12144 =item Distribution Support
12145
12146    make distcheck,    make skipcheck,    make distclean,    make manifest, 
12147   make distdir,    make tardist,    make dist,    make uutardist,    make
12148 shdist,    make zipdist,    make ci
12149
12150 =item Disabling an extension
12151
12152 =back
12153
12154 =item ENVIRONMENT
12155
12156 PERL_MM_OPT, PERL_MM_USE_DEFAULT
12157
12158 =item SEE ALSO
12159
12160 =item AUTHORS
12161
12162 =back
12163
12164 =head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
12165
12166 =over 4
12167
12168 =item SYNOPSIS
12169
12170 =item DESCRIPTION
12171
12172 =item MANIFEST.SKIP
12173
12174 =item EXPORT_OK
12175
12176 =item GLOBAL VARIABLES
12177
12178 =item DIAGNOSTICS
12179
12180 C<Not in MANIFEST:> I<file>, C<No such file:> I<file>, C<MANIFEST:> I<$!>,
12181 C<Added to MANIFEST:> I<file>
12182
12183 =item ENVIRONMENT
12184
12185 B<PERL_MM_MANIFEST_DEBUG>
12186
12187 =item SEE ALSO
12188
12189 =item AUTHOR
12190
12191 =back
12192
12193 =head2 ExtUtils::Miniperl, writemain - write the C code for perlmain.c
12194
12195 =over 4
12196
12197 =item SYNOPSIS
12198
12199 =item DESCRIPTION
12200
12201 =item SEE ALSO
12202
12203 =back
12204
12205 =head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
12206
12207 =over 4
12208
12209 =item SYNOPSIS
12210
12211 =item DESCRIPTION
12212
12213 =back
12214
12215 =head2 ExtUtils::Mksymlists - write linker options files for dynamic
12216 extension
12217
12218 =over 4
12219
12220 =item SYNOPSIS
12221
12222 =item DESCRIPTION
12223
12224 DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
12225
12226 =item AUTHOR
12227
12228 =item REVISION
12229
12230 =back
12231
12232 =head2 ExtUtils::Packlist - manage .packlist files
12233
12234 =over 4
12235
12236 =item SYNOPSIS
12237
12238 =item DESCRIPTION
12239
12240 =item USAGE
12241
12242 =item FUNCTIONS
12243
12244 new(), read(), write(), validate(), packlist_file()
12245
12246 =item EXAMPLE
12247
12248 =item AUTHOR
12249
12250 =back
12251
12252 =head2 ExtUtils::testlib - add blib/* directories to @INC
12253
12254 =over 4
12255
12256 =item SYNOPSIS
12257
12258 =item DESCRIPTION
12259
12260 =back
12261
12262 =head2 Fatal - replace functions with equivalents which succeed or die
12263
12264 =over 4
12265
12266 =item SYNOPSIS
12267
12268 =item DESCRIPTION
12269
12270 =item AUTHOR
12271
12272 =back
12273
12274 =head2 Fcntl - load the C Fcntl.h defines
12275
12276 =over 4
12277
12278 =item SYNOPSIS
12279
12280 =item DESCRIPTION
12281
12282 =item NOTE
12283
12284 =item EXPORTED SYMBOLS
12285
12286 =back
12287
12288 =head2 File::Basename, fileparse - split a pathname into pieces
12289
12290 =over 4
12291
12292 =item SYNOPSIS
12293
12294 =item DESCRIPTION
12295
12296 fileparse_set_fstype, fileparse
12297
12298 =item EXAMPLES
12299
12300 C<basename>, C<dirname>
12301
12302 =back
12303
12304 =head2 File::CheckTree, validate - run many filetest checks on a tree
12305
12306 =over 4
12307
12308 =item SYNOPSIS
12309
12310 =item DESCRIPTION
12311
12312 =back
12313
12314 =head2 File::Compare - Compare files or filehandles
12315
12316 =over 4
12317
12318 =item SYNOPSIS
12319
12320 =item DESCRIPTION
12321
12322 =item RETURN
12323
12324 =item AUTHOR
12325
12326 =back
12327
12328 =head2 File::Copy - Copy files or filehandles
12329
12330 =over 4
12331
12332 =item SYNOPSIS
12333
12334 =item DESCRIPTION
12335
12336 =over 4
12337
12338 =item Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
12339
12340 rmscopy($from,$to[,$date_flag])
12341
12342 =back
12343
12344 =item RETURN
12345
12346 =item NOTES
12347
12348 =item AUTHOR
12349
12350 =back
12351
12352 =head2 File::DosGlob - DOS like globbing and then some
12353
12354 =over 4
12355
12356 =item SYNOPSIS
12357
12358 =item DESCRIPTION
12359
12360 =item NOTES
12361
12362 =item EXPORTS (by request only)
12363
12364 =item BUGS
12365
12366 =item AUTHOR
12367
12368 =item HISTORY
12369
12370 =item SEE ALSO
12371
12372 =back
12373
12374 =head2 File::Find - Traverse a directory tree.
12375
12376 =over 4
12377
12378 =item SYNOPSIS
12379
12380 =item DESCRIPTION
12381
12382 B<find>, B<finddepth>
12383
12384 =over 4
12385
12386 =item %options
12387
12388 C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
12389 C<follow_fast>, C<follow_skip>, C<dangling_symlinks>, C<no_chdir>,
12390 C<untaint>, C<untaint_pattern>, C<untaint_skip>
12391
12392 =item The wanted function
12393
12394 C<$File::Find::dir> is the current directory name,, C<$_> is the current
12395 filename within that directory, C<$File::Find::name> is the complete
12396 pathname to the file
12397
12398 =back
12399
12400 =item WARNINGS
12401
12402 =item CAVEAT
12403
12404 $dont_use_nlink, symlinks
12405
12406 =item NOTES
12407
12408 =item HISTORY
12409
12410 =back
12411
12412 =head2 File::Glob - Perl extension for BSD glob routine
12413
12414 =over 4
12415
12416 =item SYNOPSIS
12417
12418 =item DESCRIPTION
12419
12420 C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
12421 C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
12422 C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
12423
12424 =item DIAGNOSTICS
12425
12426 C<GLOB_NOSPACE>, C<GLOB_ABEND>
12427
12428 =item NOTES
12429
12430 =item AUTHOR
12431
12432 =back
12433
12434 =head2 File::Path - create or remove directory trees
12435
12436 =over 4
12437
12438 =item SYNOPSIS
12439
12440 =item DESCRIPTION
12441
12442 =item AUTHORS
12443
12444 =back
12445
12446 =head2 File::Spec - portably perform operations on file names
12447
12448 =over 4
12449
12450 =item SYNOPSIS
12451
12452 =item DESCRIPTION
12453
12454 =item METHODS
12455
12456 canonpath, catdir, catfile, curdir, devnull, rootdir, tmpdir, updir,
12457 no_upwards, case_tolerant, file_name_is_absolute, path, join, splitpath,
12458 splitdir, catpath(), abs2rel, rel2abs()
12459
12460 =item SEE ALSO
12461
12462 =item AUTHORS
12463
12464 =back
12465
12466 =head2 File::Spec::Cygwin - methods for Cygwin file specs
12467
12468 =over 4
12469
12470 =item SYNOPSIS
12471
12472 =item DESCRIPTION
12473
12474 =back
12475
12476 =head2 File::Spec::Epoc - methods for Epoc file specs
12477
12478 =over 4
12479
12480 =item SYNOPSIS
12481
12482 =item DESCRIPTION
12483
12484 devnull
12485
12486 =back
12487
12488 tmpdir
12489
12490 path
12491
12492 canonpath()
12493
12494 splitpath
12495
12496 splitdir
12497
12498 catpath
12499
12500 abs2rel
12501
12502 rel2abs()
12503
12504 =over 4
12505
12506 =item SEE ALSO
12507
12508 =back
12509
12510 =head2 File::Spec::Functions - portably perform operations on file names
12511
12512 =over 4
12513
12514 =item SYNOPSIS
12515
12516 =item DESCRIPTION
12517
12518 =over 4
12519
12520 =item Exports
12521
12522 =back
12523
12524 =item SEE ALSO
12525
12526 =back
12527
12528 =head2 File::Spec::Mac - File::Spec for Mac OS (Classic)
12529
12530 =over 4
12531
12532 =item SYNOPSIS
12533
12534 =item DESCRIPTION
12535
12536 =item METHODS
12537
12538 canonpath
12539
12540 =back
12541
12542 catdir()
12543
12544 catfile
12545
12546 curdir
12547
12548 devnull
12549
12550 rootdir
12551
12552 tmpdir
12553
12554 updir
12555
12556 file_name_is_absolute
12557
12558 path
12559
12560 splitpath
12561
12562 splitdir
12563
12564 catpath
12565
12566 abs2rel
12567
12568 rel2abs
12569
12570 =over 4
12571
12572 =item AUTHORS
12573
12574 =item SEE ALSO
12575
12576 =back
12577
12578 canonpath
12579
12580 splitpath
12581
12582 splitdir
12583
12584 catpath
12585
12586 =head2 File::Spec::OS2 - methods for OS/2 file specs
12587
12588 =over 4
12589
12590 =item SYNOPSIS
12591
12592 =item DESCRIPTION
12593
12594 =back
12595
12596 =head2 File::Spec::Unix - File::Spec for Unix, base for other File::Spec
12597 modules
12598
12599 =over 4
12600
12601 =item SYNOPSIS
12602
12603 =item DESCRIPTION
12604
12605 =item METHODS
12606
12607 canonpath()
12608
12609 =back
12610
12611 catdir()
12612
12613 catfile
12614
12615 curdir
12616
12617 devnull
12618
12619 rootdir
12620
12621 tmpdir
12622
12623 updir
12624
12625 no_upwards
12626
12627 case_tolerant
12628
12629 file_name_is_absolute
12630
12631 path
12632
12633 join
12634
12635 splitpath
12636
12637 splitdir
12638
12639 catpath()
12640
12641 abs2rel
12642
12643 rel2abs()
12644
12645 =over 4
12646
12647 =item SEE ALSO
12648
12649 =back
12650
12651 =head2 File::Spec::VMS - methods for VMS file specs
12652
12653 =over 4
12654
12655 =item SYNOPSIS
12656
12657 =item DESCRIPTION
12658
12659 eliminate_macros
12660
12661 =back
12662
12663 fixpath
12664
12665 =over 4
12666
12667 =item Methods always loaded
12668
12669 canonpath (override)
12670
12671 =back
12672
12673 catdir
12674
12675 catfile
12676
12677 curdir (override)
12678
12679 devnull (override)
12680
12681 rootdir (override)
12682
12683 tmpdir (override)
12684
12685 updir (override)
12686
12687 case_tolerant (override)
12688
12689 path (override)
12690
12691 file_name_is_absolute (override)
12692
12693 splitpath (override)
12694
12695 splitdir (override)
12696
12697 catpath (override)
12698
12699 abs2rel (override)
12700
12701 rel2abs (override)
12702
12703 =over 4
12704
12705 =item SEE ALSO
12706
12707 =back
12708
12709 =head2 File::Spec::Win32 - methods for Win32 file specs
12710
12711 =over 4
12712
12713 =item SYNOPSIS
12714
12715 =item DESCRIPTION
12716
12717 devnull
12718
12719 =back
12720
12721 tmpdir
12722
12723 catfile
12724
12725 canonpath
12726
12727 splitpath
12728
12729 splitdir
12730
12731 catpath
12732
12733 =over 4
12734
12735 =item SEE ALSO
12736
12737 =back
12738
12739 =head2 File::Temp - return name and handle of a temporary file safely
12740
12741 =over 4
12742
12743 =item PORTABILITY
12744
12745 =item SYNOPSIS
12746
12747 =item DESCRIPTION
12748
12749 =back
12750
12751 =over 4
12752
12753 =item FUNCTIONS
12754
12755 B<tempfile>
12756
12757 =back
12758
12759 B<tempdir>
12760
12761 =over 4
12762
12763 =item MKTEMP FUNCTIONS
12764
12765 B<mkstemp>
12766
12767 =back
12768
12769 B<mkstemps>
12770
12771 B<mkdtemp>
12772
12773 B<mktemp>
12774
12775 =over 4
12776
12777 =item POSIX FUNCTIONS
12778
12779 B<tmpnam>
12780
12781 =back
12782
12783 B<tmpfile>
12784
12785 =over 4
12786
12787 =item ADDITIONAL FUNCTIONS
12788
12789 B<tempnam>
12790
12791 =back
12792
12793 =over 4
12794
12795 =item UTILITY FUNCTIONS
12796
12797 B<unlink0>
12798
12799 =back
12800
12801 =over 4
12802
12803 =item PACKAGE VARIABLES
12804
12805 B<safe_level>, STANDARD, MEDIUM, HIGH
12806
12807 =back
12808
12809 TopSystemUID
12810
12811 =over 4
12812
12813 =item WARNING
12814
12815 =over 4
12816
12817 =item Temporary files and NFS
12818
12819 =back
12820
12821 =item HISTORY
12822
12823 =item SEE ALSO
12824
12825 =item AUTHOR
12826
12827 =back
12828
12829 =head2 File::stat - by-name interface to Perl's built-in stat() functions
12830
12831 =over 4
12832
12833 =item SYNOPSIS
12834
12835 =item DESCRIPTION
12836
12837 =item NOTE
12838
12839 =item AUTHOR
12840
12841 =back
12842
12843 =head2 FileCache - keep more files open than the system permits
12844
12845 =over 4
12846
12847 =item SYNOPSIS
12848
12849 =item DESCRIPTION
12850
12851 =item BUGS
12852
12853 =back
12854
12855 =head2 FileHandle - supply object methods for filehandles
12856
12857 =over 4
12858
12859 =item SYNOPSIS
12860
12861 =item DESCRIPTION
12862
12863 $fh->print, $fh->printf, $fh->getline, $fh->getlines
12864
12865 =item SEE ALSO
12866
12867 =back
12868
12869 =head2 Filter::Simple - Simplified source filtering
12870
12871 =over 4
12872
12873 =item SYNOPSIS
12874
12875 =item DESCRIPTION
12876
12877 =over 4
12878
12879 =item The Problem
12880
12881 =item A Solution
12882
12883 =item Disabling or changing <no> behaviour
12884
12885 =item All-in-one interface
12886
12887 =item Filtering only specific components of source code
12888
12889 C<"code">, C<"executable">, C<"quotelike">, C<"string">, C<"regex">,
12890 C<"all">
12891
12892 =item Filtering only the code parts of source code
12893
12894 Most source code ceases to be grammatically correct when it is broken up
12895 into the pieces between string literals and regexes. So the C<'code'>
12896 component filter behaves slightly differently from the other partial
12897 filters
12898 described in the previous section.
12899
12900 =item Using Filter::Simple with an explicit C<import> subroutine
12901
12902 =item Using Filter::Simple and Exporter together
12903
12904 =item How it works
12905
12906 =back
12907
12908 =item AUTHOR
12909
12910 =item COPYRIGHT
12911
12912 =back
12913
12914 =head2 Filter::Util::Call - Perl Source Filter Utility Module
12915
12916 =over 4
12917
12918 =item SYNOPSIS
12919
12920 =item DESCRIPTION
12921
12922 =over 4
12923
12924 =item B<use Filter::Util::Call>
12925
12926 =item B<import()>
12927
12928 =item B<filter() and anonymous sub>
12929
12930 B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
12931
12932 =back
12933
12934 =item EXAMPLES
12935
12936 =over 4
12937
12938 =item Example 1: A simple filter.
12939
12940 =item Example 2: Using the context
12941
12942 =item Example 3: Using the context within the filter
12943
12944 =item Example 4: Using filter_del
12945
12946 =back
12947
12948 =item Filter::Simple
12949
12950 =item AUTHOR
12951
12952 =item DATE
12953
12954 =back
12955
12956 =head2 FindBin - Locate directory of original perl script
12957
12958 =over 4
12959
12960 =item SYNOPSIS
12961
12962 =item DESCRIPTION
12963
12964 =item EXPORTABLE VARIABLES
12965
12966 =item KNOWN ISSUES
12967
12968 =item KNOWN BUGS
12969
12970 =item AUTHORS
12971
12972 =item COPYRIGHT
12973
12974 =back
12975
12976 =head2 GDBM_File - Perl5 access to the gdbm library.
12977
12978 =over 4
12979
12980 =item SYNOPSIS
12981
12982 =item DESCRIPTION
12983
12984 =item AVAILABILITY
12985
12986 =item BUGS
12987
12988 =item SEE ALSO
12989
12990 =back
12991
12992 =head2 Getopt::Long - Extended processing of command line options
12993
12994 =over 4
12995
12996 =item SYNOPSIS
12997
12998 =item DESCRIPTION
12999
13000 =item Command Line Options, an Introduction
13001
13002 =item Getting Started with Getopt::Long
13003
13004 =over 4
13005
13006 =item Simple options
13007
13008 =item A little bit less simple options
13009
13010 =item Mixing command line option with other arguments
13011
13012 =item Options with values
13013
13014 =item Options with multiple values
13015
13016 =item Options with hash values
13017
13018 =item User-defined subroutines to handle options
13019
13020 =item Options with multiple names
13021
13022 =item Case and abbreviations
13023
13024 =item Summary of Option Specifications
13025
13026 !, +, s, i, o, f, : I<type> [ I<desttype> ], : I<number> [ I<desttype> ], :
13027 + [ I<desttype> ]
13028
13029 =back
13030
13031 =item Advanced Possibilities
13032
13033 =over 4
13034
13035 =item Object oriented interface
13036
13037 =item Documentation and help texts
13038
13039 =item Storing options in a hash
13040
13041 =item Bundling
13042
13043 =item The lonesome dash
13044
13045 =item Argument callback
13046
13047 =back
13048
13049 =item Configuring Getopt::Long
13050
13051 default, posix_default, auto_abbrev, getopt_compat, gnu_compat, gnu_getopt,
13052 require_order, permute, bundling (default: disabled), bundling_override
13053 (default: disabled), ignore_case  (default: enabled), ignore_case_always
13054 (default: disabled), pass_through (default: disabled), prefix,
13055 prefix_pattern, debug (default: disabled)
13056
13057 =item Return values and Errors
13058
13059 =item Legacy
13060
13061 =over 4
13062
13063 =item Default destinations
13064
13065 =item Alternative option starters
13066
13067 =item Configuration variables
13068
13069 =back
13070
13071 =item Trouble Shooting
13072
13073 =over 4
13074
13075 =item Warning: Ignoring '!' modifier for short option
13076
13077 =item GetOptions does not return a false result when an option is not
13078 supplied
13079
13080 =item GetOptions does not split the command line correctly
13081
13082 =item How do I put a "-?" option into a Getopt::Long?
13083
13084 =back
13085
13086 =item AUTHOR
13087
13088 =item COPYRIGHT AND DISCLAIMER
13089
13090 =back
13091
13092 =head2 Getopt::Std, getopt - Process single-character switches with switch
13093 clustering
13094
13095 =over 4
13096
13097 =item SYNOPSIS
13098
13099 =item DESCRIPTION
13100
13101 =back
13102
13103 =head2 Hash::Util - A selection of general-utility hash subroutines
13104
13105 =over 4
13106
13107 =item SYNOPSIS
13108
13109 =item DESCRIPTION
13110
13111 =over 4
13112
13113 =item Restricted hashes
13114
13115 lock_keys, unlock_keys
13116
13117 =back
13118
13119 =back
13120
13121 lock_value, unlock_value
13122
13123 B<lock_hash>, B<unlock_hash>
13124
13125 =over 4
13126
13127 =item AUTHOR
13128
13129 =item SEE ALSO
13130
13131 =back
13132
13133 =head2 I18N::Collate - compare 8-bit scalar data according to the current
13134 locale
13135
13136 =over 4
13137
13138 =item SYNOPSIS
13139
13140 =item DESCRIPTION
13141
13142 =back
13143
13144 =head2 I18N::LangTags - functions for dealing with RFC3066-style language
13145 tags
13146
13147 =over 4
13148
13149 =item SYNOPSIS
13150
13151 =item DESCRIPTION
13152
13153 =back
13154
13155 the function is_language_tag($lang1)
13156
13157 the function extract_language_tags($whatever)
13158
13159 the function same_language_tag($lang1, $lang2)
13160
13161 the function similarity_language_tag($lang1, $lang2)
13162
13163 the function is_dialect_of($lang1, $lang2)
13164
13165 the function super_languages($lang1)
13166
13167 the function locale2language_tag($locale_identifier)
13168
13169 the function encode_language_tag($lang1)
13170
13171 the function alternate_language_tags($lang1)
13172
13173 the function @langs = panic_languages(@accept_languages)
13174
13175 =over 4
13176
13177 =item ABOUT LOWERCASING
13178
13179 =item ABOUT UNICODE PLAINTEXT LANGUAGE TAGS
13180
13181 =item SEE ALSO
13182
13183 =item COPYRIGHT
13184
13185 =item AUTHOR
13186
13187 =back
13188
13189 =head2 I18N::LangTags::List -- tags and names for human languages
13190
13191 =over 4
13192
13193 =item SYNOPSIS
13194
13195 =item DESCRIPTION
13196
13197 =item ABOUT LANGUAGE TAGS
13198
13199 =item LIST OF LANGUAGES
13200
13201 {ab} : Abkhazian, {ace} : Achinese, {ach} : Acoli, {ada} : Adangme, {aa} :
13202 Afar, {afh} : Afrihili, {af} : Afrikaans, [{afa} : Afro-Asiatic (Other)],
13203 {aka} : Akan, {akk} : Akkadian, {sq} : Albanian, {ale} : Aleut, [{alg} :
13204 Algonquian languages], [{tut} : Altaic (Other)], {am} : Amharic, {i-ami} :
13205 Ami, [{apa} : Apache languages], {ar} : Arabic, {arc} : Aramaic, {arp} :
13206 Arapaho, {arn} : Araucanian, {arw} : Arawak, {hy} : Armenian, [{art} :
13207 Artificial (Other)], {as} : Assamese, [{ath} : Athapascan languages],
13208 [{aus} : Australian languages], [{map} : Austronesian (Other)], {ava} :
13209 Avaric, {ae} : Avestan, {awa} : Awadhi, {ay} : Aymara, {az} : Azerbaijani,
13210 {ban} : Balinese, [{bat} : Baltic (Other)], {bal} : Baluchi, {bam} :
13211 Bambara, [{bai} : Bamileke languages], {bad} : Banda, [{bnt} : Bantu
13212 (Other)], {bas} : Basa, {ba} : Bashkir, {eu} : Basque, {btk} : Batak
13213 (Indonesia), {bej} : Beja, {be} : Belarusian, {bem} : Bemba, {bn} :
13214 Bengali, [{ber} : Berber (Other)], {bho} : Bhojpuri, {bh} : Bihari, {bik} :
13215 Bikol, {bin} : Bini, {bi} : Bislama, {bs} : Bosnian, {bra} : Braj, {br} :
13216 Breton, {bug} : Buginese, {bg} : Bulgarian, {i-bnn} : Bunun, {bua} :
13217 Buriat, {my} : Burmese, {cad} : Caddo, {car} : Carib, {ca} : Catalan,
13218 [{cau} : Caucasian (Other)], {ceb} : Cebuano, [{cel} : Celtic (Other)],
13219 [{cai} : Central American Indian (Other)], {chg} : Chagatai, [{cmc} :
13220 Chamic languages], {ch} : Chamorro, {ce} : Chechen, {chr} : Cherokee, {chy}
13221 : Cheyenne, {chb} : Chibcha, {ny} : Chichewa, {zh} : Chinese, {chn} :
13222 Chinook Jargon, {chp} : Chipewyan, {cho} : Choctaw, {cu} : Church Slavic,
13223 {chk} : Chuukese, {cv} : Chuvash, {cop} : Coptic, {kw} : Cornish, {co} :
13224 Corsican, {cre} : Cree, {mus} : Creek, [{cpe} : English-based Creoles and
13225 pidgins (Other)], [{cpf} : French-based Creoles and pidgins (Other)],
13226 [{cpp} : Portuguese-based Creoles and pidgins (Other)], [{crp} : Creoles
13227 and pidgins (Other)], {hr} : Croatian, [{cus} : Cushitic (Other)], {cs} :
13228 Czech, {dak} : Dakota, {da} : Danish, {day} : Dayak, {i-default} : Default
13229 (Fallthru) Language, {del} : Delaware, {din} : Dinka, {div} : Divehi, {doi}
13230 : Dogri, {dgr} : Dogrib, [{dra} : Dravidian (Other)], {dua} : Duala, {nl} :
13231 Dutch, {dum} : Middle Dutch (ca.1050-1350), {dyu} : Dyula, {dz} : Dzongkha,
13232 {efi} : Efik, {egy} : Ancient Egyptian, {eka} : Ekajuk, {elx} : Elamite,
13233 {en} : English, {enm} : Old English (1100-1500), {ang} : Old English
13234 (ca.450-1100), {eo} : Esperanto, {et} : Estonian, {ewe} : Ewe, {ewo} :
13235 Ewondo, {fan} : Fang, {fat} : Fanti, {fo} : Faroese, {fj} : Fijian, {fi} :
13236 Finnish, [{fiu} : Finno-Ugrian (Other)], {fon} : Fon, {fr} : French, {frm}
13237 : Middle French (ca.1400-1600), {fro} : Old French (842-ca.1400), {fy} :
13238 Frisian, {fur} : Friulian, {ful} : Fulah, {gaa} : Ga, {gd} : Scots Gaelic,
13239 {gl} : Gallegan, {lug} : Ganda, {gay} : Gayo, {gba} : Gbaya, {gez} : Geez,
13240 {ka} : Georgian, {de} : German, {gmh} : Middle High German (ca.1050-1500),
13241 {goh} : Old High German (ca.750-1050), [{gem} : Germanic (Other)], {gil} :
13242 Gilbertese, {gon} : Gondi, {gor} : Gorontalo, {got} : Gothic, {grb} :
13243 Grebo, {grc} : Ancient Greek, {el} : Modern Greek, {gn} : Guarani, {gu} :
13244 Gujarati, {gwi} : Gwich'in, {hai} : Haida, {ha} : Hausa, {haw} : Hawaiian,
13245 {he} : Hebrew, {hz} : Herero, {hil} : Hiligaynon, {him} : Himachali, {hi} :
13246 Hindi, {ho} : Hiri Motu, {hit} : Hittite, {hmn} : Hmong, {hu} : Hungarian,
13247 {hup} : Hupa, {iba} : Iban, {is} : Icelandic, {ibo} : Igbo, {ijo} : Ijo,
13248 {ilo} : Iloko, [{inc} : Indic (Other)], [{ine} : Indo-European (Other)],
13249 {id} : Indonesian, {ia} : Interlingua (International Auxiliary Language
13250 Association), {ie} : Interlingue, {iu} : Inuktitut, {ik} : Inupiaq, [{ira}
13251 : Iranian (Other)], {ga} : Irish, {mga} : Middle Irish (900-1200), {sga} :
13252 Old Irish (to 900), [{iro} : Iroquoian languages], {it} : Italian, {ja} :
13253 Japanese, {jw} : Javanese, {jrb} : Judeo-Arabic, {jpr} : Judeo-Persian,
13254 {kab} : Kabyle, {kac} : Kachin, {kl} : Kalaallisut, {kam} : Kamba, {kn} :
13255 Kannada, {kau} : Kanuri, {kaa} : Kara-Kalpak, {kar} : Karen, {ks} :
13256 Kashmiri, {kaw} : Kawi, {kk} : Kazakh, {kha} : Khasi, {km} : Khmer, [{khi}
13257 : Khoisan (Other)], {kho} : Khotanese, {ki} : Kikuyu, {kmb} : Kimbundu,
13258 {rw} : Kinyarwanda, {ky} : Kirghiz, {i-klingon} : Klingon, {kv} : Komi,
13259 {kon} : Kongo, {kok} : Konkani, {ko} : Korean, {kos} : Kosraean, {kpe} :
13260 Kpelle, {kro} : Kru, {kj} : Kuanyama, {kum} : Kumyk, {ku} : Kurdish, {kru}
13261 : Kurukh, {kut} : Kutenai, {lad} : Ladino, {lah} : Lahnda, {lam} : Lamba,
13262 {lo} : Lao, {la} : Latin, {lv} : Latvian, {lb} : Letzeburgesch, {lez} :
13263 Lezghian, {ln} : Lingala, {lt} : Lithuanian, {nds} : Low German, {loz} :
13264 Lozi, {lub} : Luba-Katanga, {lua} : Luba-Lulua, {lui} : Luiseno, {lun} :
13265 Lunda, {luo} : Luo (Kenya and Tanzania), {lus} : Lushai, {mk} : Macedonian,
13266 {mad} : Madurese, {mag} : Magahi, {mai} : Maithili, {mak} : Makasar, {mg} :
13267 Malagasy, {ms} : Malay, {ml} : Malayalam, {mt} : Maltese, {mnc} : Manchu,
13268 {mdr} : Mandar, {man} : Mandingo, {mni} : Manipuri, [{mno} : Manobo
13269 languages], {gv} : Manx, {mi} : Maori, {mr} : Marathi, {chm} : Mari, {mh} :
13270 Marshall, {mwr} : Marwari, {mas} : Masai, [{myn} : Mayan languages], {men}
13271 : Mende, {mic} : Micmac, {min} : Minangkabau, {i-mingo} : Mingo, [{mis} :
13272 Miscellaneous languages], {moh} : Mohawk, {mo} : Moldavian, [{mkh} :
13273 Mon-Khmer (Other)], {lol} : Mongo, {mn} : Mongolian, {mos} : Mossi, [{mul}
13274 : Multiple languages], [{mun} : Munda languages], {nah} : Nahuatl, {na} :
13275 Nauru, {nv} : Navajo, {nd} : North Ndebele, {nr} : South Ndebele, {ng} :
13276 Ndonga, {ne} : Nepali, {new} : Newari, {nia} : Nias, [{nic} :
13277 Niger-Kordofanian (Other)], [{ssa} : Nilo-Saharan (Other)], {niu} : Niuean,
13278 {non} : Old Norse, [{nai} : North American Indian], {se} : Northern Sami,
13279 {no} : Norwegian, {nb} : Norwegian Bokmal, {nn} : Norwegian Nynorsk, [{nub}
13280 : Nubian languages], {nym} : Nyamwezi, {nyn} : Nyankole, {nyo} : Nyoro,
13281 {nzi} : Nzima, {oc} : Occitan (post 1500), {oji} : Ojibwa, {or} : Oriya,
13282 {om} : Oromo, {osa} : Osage, {os} : Ossetian; Ossetic, [{oto} : Otomian
13283 languages], {pal} : Pahlavi, {i-pwn} : Paiwan, {pau} : Palauan, {pi} :
13284 Pali, {pam} : Pampanga, {pag} : Pangasinan, {pa} : Panjabi, {pap} :
13285 Papiamento, [{paa} : Papuan (Other)], {fa} : Persian, {peo} : Old Persian
13286 (ca.600-400 B.C.), [{phi} : Philippine (Other)], {phn} : Phoenician, {pon}
13287 : Pohnpeian, {pl} : Polish, {pt} : Portuguese, [{pra} : Prakrit languages],
13288 {pro} : Old Provencal (to 1500), {ps} : Pushto, {qu} : Quechua, {rm} :
13289 Raeto-Romance, {raj} : Rajasthani, {rap} : Rapanui, {rar} : Rarotongan,
13290 [{qaa - qtz} : Reserved for local use.], [{roa} : Romance (Other)], {ro} :
13291 Romanian, {rom} : Romany, {rn} : Rundi, {ru} : Russian, [{sal} : Salishan
13292 languages], {sam} : Samaritan Aramaic, [{smi} : Sami languages (Other)],
13293 {sm} : Samoan, {sad} : Sandawe, {sg} : Sango, {sa} : Sanskrit, {sat} :
13294 Santali, {sc} : Sardinian, {sas} : Sasak, {sco} : Scots, {sel} : Selkup,
13295 [{sem} : Semitic (Other)], {sr} : Serbian, {srr} : Serer, {shn} : Shan,
13296 {sn} : Shona, {sid} : Sidamo, {sgn-...} : Sign Languages, {bla} : Siksika,
13297 {sd} : Sindhi, {si} : Sinhalese, [{sit} : Sino-Tibetan (Other)], [{sio} :
13298 Siouan languages], {den} : Slave (Athapascan), [{sla} : Slavic (Other)],
13299 {sk} : Slovak, {sl} : Slovenian, {sog} : Sogdian, {so} : Somali, {son} :
13300 Songhai, {snk} : Soninke, {wen} : Sorbian languages, {nso} : Northern
13301 Sotho, {st} : Southern Sotho, [{sai} : South American Indian (Other)], {es}
13302 : Spanish, {suk} : Sukuma, {sux} : Sumerian, {su} : Sundanese, {sus} :
13303 Susu, {sw} : Swahili, {ss} : Swati, {sv} : Swedish, {syr} : Syriac, {tl} :
13304 Tagalog, {ty} : Tahitian, [{tai} : Tai (Other)], {tg} : Tajik, {tmh} :
13305 Tamashek, {ta} : Tamil, {i-tao} : Tao, {tt} : Tatar, {i-tay} : Tayal, {te}
13306 : Telugu, {ter} : Tereno, {tet} : Tetum, {th} : Thai, {bo} : Tibetan, {tig}
13307 : Tigre, {ti} : Tigrinya, {tem} : Timne, {tiv} : Tiv, {tli} : Tlingit,
13308 {tpi} : Tok Pisin, {tkl} : Tokelau, {tog} : Tonga (Nyasa), {to} : Tonga
13309 (Tonga Islands), {tsi} : Tsimshian, {ts} : Tsonga, {i-tsu} : Tsou, {tn} :
13310 Tswana, {tum} : Tumbuka, {tr} : Turkish, {ota} : Ottoman Turkish
13311 (1500-1928), {tk} : Turkmen, {tvl} : Tuvalu, {tyv} : Tuvinian, {tw} : Twi,
13312 {uga} : Ugaritic, {ug} : Uighur, {uk} : Ukrainian, {umb} : Umbundu, {und} :
13313 Undetermined, {ur} : Urdu, {uz} : Uzbek, {vai} : Vai, {ven} : Venda, {vi} :
13314 Vietnamese, {vo} : Volapuk, {vot} : Votic, [{wak} : Wakashan languages],
13315 {wal} : Walamo, {war} : Waray, {was} : Washo, {cy} : Welsh, {wo} : Wolof,
13316 {x-...} : Unregistered (Semi-Private Use), {xh} : Xhosa, {sah} : Yakut,
13317 {yao} : Yao, {yap} : Yapese, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik
13318 languages], {znd} : Zande, [{zap} : Zapotec], {zen} : Zenaga, {za} :
13319 Zhuang, {zu} : Zulu, {zun} : Zuni
13320
13321 =item SEE ALSO
13322
13323 =item COPYRIGHT AND DISCLAIMER
13324
13325 =item AUTHOR
13326
13327 =back
13328
13329 =head2 I18N::Langinfo - query locale information
13330
13331 =over 4
13332
13333 =item SYNOPSIS
13334
13335 =item DESCRIPTION
13336
13337 =over 4
13338
13339 =item EXPORT
13340
13341 =back
13342
13343 =item SEE ALSO
13344
13345 =item AUTHOR
13346
13347 =item COPYRIGHT AND LICENSE
13348
13349 =back
13350
13351 =head2 IO - load various IO modules
13352
13353 =over 4
13354
13355 =item SYNOPSIS
13356
13357 =item DESCRIPTION
13358
13359 =back
13360
13361 =head2 IO::Dir - supply object methods for directory handles
13362
13363 =over 4
13364
13365 =item SYNOPSIS
13366
13367 =item DESCRIPTION
13368
13369 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
13370 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
13371
13372 =item SEE ALSO
13373
13374 =item AUTHOR
13375
13376 =item COPYRIGHT
13377
13378 =back
13379
13380 =head2 IO::File - supply object methods for filehandles
13381
13382 =over 4
13383
13384 =item SYNOPSIS
13385
13386 =item DESCRIPTION
13387
13388 =item CONSTRUCTOR
13389
13390 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
13391
13392 =item METHODS
13393
13394 open( FILENAME [,MODE [,PERMS]] )
13395
13396 =item SEE ALSO
13397
13398 =item HISTORY
13399
13400 =back
13401
13402 =head2 IO::Handle - supply object methods for I/O handles
13403
13404 =over 4
13405
13406 =item SYNOPSIS
13407
13408 =item DESCRIPTION
13409
13410 =item CONSTRUCTOR
13411
13412 new (), new_from_fd ( FD, MODE )
13413
13414 =item METHODS
13415
13416 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
13417 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
13418 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
13419 $io->blocking ( [ BOOL ] ), $io->untaint
13420
13421 =item NOTE
13422
13423 =item SEE ALSO
13424
13425 =item BUGS
13426
13427 =item HISTORY
13428
13429 =back
13430
13431 =head2 IO::Pipe - supply object methods for pipes
13432
13433 =over 4
13434
13435 =item SYNOPSIS
13436
13437 =item DESCRIPTION
13438
13439 =item CONSTRUCTOR
13440
13441 new ( [READER, WRITER] )
13442
13443 =item METHODS
13444
13445 reader ([ARGS]), writer ([ARGS]), handles ()
13446
13447 =item SEE ALSO
13448
13449 =item AUTHOR
13450
13451 =item COPYRIGHT
13452
13453 =back
13454
13455 =head2 IO::Poll - Object interface to system poll call
13456
13457 =over 4
13458
13459 =item SYNOPSIS
13460
13461 =item DESCRIPTION
13462
13463 =item METHODS
13464
13465 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
13466 IO ), handles( [ EVENT_MASK ] )
13467
13468 =item SEE ALSO
13469
13470 =item AUTHOR
13471
13472 =item COPYRIGHT
13473
13474 =back
13475
13476 =head2 IO::Seekable - supply seek based methods for I/O objects
13477
13478 =over 4
13479
13480 =item SYNOPSIS
13481
13482 =item DESCRIPTION
13483
13484 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
13485 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
13486 $io->tell
13487
13488 =item SEE ALSO
13489
13490 =item HISTORY
13491
13492 =back
13493
13494 =head2 IO::Select - OO interface to the select system call
13495
13496 =over 4
13497
13498 =item SYNOPSIS
13499
13500 =item DESCRIPTION
13501
13502 =item CONSTRUCTOR
13503
13504 new ( [ HANDLES ] )
13505
13506 =item METHODS
13507
13508 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
13509 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
13510 count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] )
13511
13512 =item EXAMPLE
13513
13514 =item AUTHOR
13515
13516 =item COPYRIGHT
13517
13518 =back
13519
13520 =head2 IO::Socket - Object interface to socket communications
13521
13522 =over 4
13523
13524 =item SYNOPSIS
13525
13526 =item DESCRIPTION
13527
13528 =item CONSTRUCTOR
13529
13530 new ( [ARGS] )
13531
13532 =item METHODS
13533
13534 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
13535 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
13536
13537 =item SEE ALSO
13538
13539 =item AUTHOR
13540
13541 =item COPYRIGHT
13542
13543 =back
13544
13545 =head2 IO::Socket::INET - Object interface for AF_INET domain sockets
13546
13547 =over 4
13548
13549 =item SYNOPSIS
13550
13551 =item DESCRIPTION
13552
13553 =item CONSTRUCTOR
13554
13555 new ( [ARGS] )
13556
13557 =over 4
13558
13559 =item METHODS
13560
13561 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
13562 ()
13563
13564 =back
13565
13566 =item SEE ALSO
13567
13568 =item AUTHOR
13569
13570 =item COPYRIGHT
13571
13572 =back
13573
13574 =head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
13575
13576 =over 4
13577
13578 =item SYNOPSIS
13579
13580 =item DESCRIPTION
13581
13582 =item CONSTRUCTOR
13583
13584 new ( [ARGS] )
13585
13586 =item METHODS
13587
13588 hostpath(), peerpath()
13589
13590 =item SEE ALSO
13591
13592 =item AUTHOR
13593
13594 =item COPYRIGHT
13595
13596 =back
13597
13598 =head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
13599 handles
13600
13601 =over 4
13602
13603 =item SYNOPSIS
13604
13605 =item DESCRIPTION
13606
13607 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
13608 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
13609
13610 =item SEE ALSO
13611
13612 =item AUTHOR
13613
13614 =item COPYRIGHT
13615
13616 =back
13617
13618 =head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
13619
13620 =over 4
13621
13622 =item SYNOPSIS
13623
13624 =item DESCRIPTION
13625
13626 =item CONSTRUCTOR
13627
13628 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
13629
13630 =item METHODS
13631
13632 open( FILENAME [,MODE [,PERMS]] )
13633
13634 =item SEE ALSO
13635
13636 =item HISTORY
13637
13638 =back
13639
13640 =head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
13641 handles
13642
13643 =over 4
13644
13645 =item SYNOPSIS
13646
13647 =item DESCRIPTION
13648
13649 =item CONSTRUCTOR
13650
13651 new (), new_from_fd ( FD, MODE )
13652
13653 =item METHODS
13654
13655 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
13656 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
13657 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
13658 $io->blocking ( [ BOOL ] ), $io->untaint
13659
13660 =item NOTE
13661
13662 =item SEE ALSO
13663
13664 =item BUGS
13665
13666 =item HISTORY
13667
13668 =back
13669
13670 =head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
13671
13672 =over 4
13673
13674 =item SYNOPSIS
13675
13676 =item DESCRIPTION
13677
13678 =item CONSTRUCTOR
13679
13680 new ( [READER, WRITER] )
13681
13682 =item METHODS
13683
13684 reader ([ARGS]), writer ([ARGS]), handles ()
13685
13686 =item SEE ALSO
13687
13688 =item AUTHOR
13689
13690 =item COPYRIGHT
13691
13692 =back
13693
13694 =head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
13695
13696 =over 4
13697
13698 =item SYNOPSIS
13699
13700 =item DESCRIPTION
13701
13702 =item METHODS
13703
13704 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
13705 IO ), handles( [ EVENT_MASK ] )
13706
13707 =item SEE ALSO
13708
13709 =item AUTHOR
13710
13711 =item COPYRIGHT
13712
13713 =back
13714
13715 =head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
13716 I/O objects
13717
13718 =over 4
13719
13720 =item SYNOPSIS
13721
13722 =item DESCRIPTION
13723
13724 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
13725 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
13726 $io->tell
13727
13728 =item SEE ALSO
13729
13730 =item HISTORY
13731
13732 =back
13733
13734 =head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
13735 call
13736
13737 =over 4
13738
13739 =item SYNOPSIS
13740
13741 =item DESCRIPTION
13742
13743 =item CONSTRUCTOR
13744
13745 new ( [ HANDLES ] )
13746
13747 =item METHODS
13748
13749 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
13750 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
13751 count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] )
13752
13753 =item EXAMPLE
13754
13755 =item AUTHOR
13756
13757 =item COPYRIGHT
13758
13759 =back
13760
13761 =head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
13762 communications
13763
13764 =over 4
13765
13766 =item SYNOPSIS
13767
13768 =item DESCRIPTION
13769
13770 =item CONSTRUCTOR
13771
13772 new ( [ARGS] )
13773
13774 =item METHODS
13775
13776 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
13777 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
13778
13779 =item SEE ALSO
13780
13781 =item AUTHOR
13782
13783 =item COPYRIGHT
13784
13785 =back
13786
13787 =head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
13788 AF_INET domain sockets
13789
13790 =over 4
13791
13792 =item SYNOPSIS
13793
13794 =item DESCRIPTION
13795
13796 =item CONSTRUCTOR
13797
13798 new ( [ARGS] )
13799
13800 =over 4
13801
13802 =item METHODS
13803
13804 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
13805 ()
13806
13807 =back
13808
13809 =item SEE ALSO
13810
13811 =item AUTHOR
13812
13813 =item COPYRIGHT
13814
13815 =back
13816
13817 =head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
13818 AF_UNIX domain sockets
13819
13820 =over 4
13821
13822 =item SYNOPSIS
13823
13824 =item DESCRIPTION
13825
13826 =item CONSTRUCTOR
13827
13828 new ( [ARGS] )
13829
13830 =item METHODS
13831
13832 hostpath(), peerpath()
13833
13834 =item SEE ALSO
13835
13836 =item AUTHOR
13837
13838 =item COPYRIGHT
13839
13840 =back
13841
13842 =head2 IPC::Msg - SysV Msg IPC object class
13843
13844 =over 4
13845
13846 =item SYNOPSIS
13847
13848 =item DESCRIPTION
13849
13850 =item METHODS
13851
13852 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
13853 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
13854 FLAGS ] ), stat
13855
13856 =item SEE ALSO
13857
13858 =item AUTHOR
13859
13860 =item COPYRIGHT
13861
13862 =back
13863
13864 =head2 IPC::Open2, open2 - open a process for both reading and writing
13865
13866 =over 4
13867
13868 =item SYNOPSIS
13869
13870 =item DESCRIPTION
13871
13872 =item WARNING 
13873
13874 =item SEE ALSO
13875
13876 =back
13877
13878 =head2 IPC::Open3, open3 - open a process for reading, writing, and error
13879 handling
13880
13881 =over 4
13882
13883 =item SYNOPSIS
13884
13885 =item DESCRIPTION
13886
13887 =item WARNING
13888
13889 =back
13890
13891 =head2 IPC::Semaphore - SysV Semaphore IPC object class
13892
13893 =over 4
13894
13895 =item SYNOPSIS
13896
13897 =item DESCRIPTION
13898
13899 =item METHODS
13900
13901 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
13902 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
13903 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
13904 , VALUE ), stat
13905
13906 =item SEE ALSO
13907
13908 =item AUTHOR
13909
13910 =item COPYRIGHT
13911
13912 =back
13913
13914 =head2 IPC::SysV - SysV IPC constants
13915
13916 =over 4
13917
13918 =item SYNOPSIS
13919
13920 =item DESCRIPTION
13921
13922 ftok( PATH, ID )
13923
13924 =item SEE ALSO
13925
13926 =item AUTHORS
13927
13928 =item COPYRIGHT
13929
13930 =back
13931
13932 =head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
13933
13934 =over 4
13935
13936 =item SYNOPSIS
13937
13938 =item DESCRIPTION
13939
13940 =item METHODS
13941
13942 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
13943 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
13944 FLAGS ] ), stat
13945
13946 =item SEE ALSO
13947
13948 =item AUTHOR
13949
13950 =item COPYRIGHT
13951
13952 =back
13953
13954 =head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
13955 class
13956
13957 =over 4
13958
13959 =item SYNOPSIS
13960
13961 =item DESCRIPTION
13962
13963 =item METHODS
13964
13965 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
13966 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
13967 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
13968 , VALUE ), stat
13969
13970 =item SEE ALSO
13971
13972 =item AUTHOR
13973
13974 =item COPYRIGHT
13975
13976 =back
13977
13978 =head2 List::Util - A selection of general-utility list subroutines
13979
13980 =over 4
13981
13982 =item SYNOPSIS
13983
13984 =item DESCRIPTION
13985
13986 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
13987 BLOCK LIST, shuffle LIST, sum LIST
13988
13989 =item KNOWN BUGS
13990
13991 =item SUGGESTED ADDITIONS
13992
13993 =item COPYRIGHT
13994
13995 =back
13996
13997 =head2 List::Utilib::List::Util, List::Util - A selection of
13998 general-utility list subroutines
13999
14000 =over 4
14001
14002 =item SYNOPSIS
14003
14004 =item DESCRIPTION
14005
14006 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
14007 BLOCK LIST, shuffle LIST, sum LIST
14008
14009 =item KNOWN BUGS
14010
14011 =item SUGGESTED ADDITIONS
14012
14013 =item COPYRIGHT
14014
14015 =back
14016
14017 =head2 List::Utilib::Scalar::Util, Scalar::Util - A selection of
14018 general-utility scalar subroutines
14019
14020 =over 4
14021
14022 =item SYNOPSIS
14023
14024 =item DESCRIPTION
14025
14026 blessed EXPR, dualvar NUM, STRING, isweak EXPR, openhandle FH, reftype
14027 EXPR, tainted EXPR, weaken REF
14028
14029 =item KNOWN BUGS
14030
14031 =item COPYRIGHT
14032
14033 =item BLATANT PLUG
14034
14035 =back
14036
14037 =head2 Locale::Constants - constants for Locale codes
14038
14039 =over 4
14040
14041 =item SYNOPSIS
14042
14043 =item DESCRIPTION
14044
14045 =item KNOWN BUGS AND LIMITATIONS
14046
14047 =item SEE ALSO
14048
14049 Locale::Language, Locale::Country, Locale::Script, Locale::Currency
14050
14051 =item AUTHOR
14052
14053 =item COPYRIGHT
14054
14055 =back
14056
14057 =head2 Locale::Country - ISO codes for country identification (ISO 3166)
14058
14059 =over 4
14060
14061 =item SYNOPSIS
14062
14063 =item DESCRIPTION
14064
14065 B<alpha-2>, B<alpha-3>, B<numeric>
14066
14067 =item CONVERSION ROUTINES
14068
14069 code2country( CODE, [ CODESET ] ), country2code( STRING, [ CODESET ] ),
14070 country_code2code( CODE, CODESET, CODESET )
14071
14072 =item QUERY ROUTINES
14073
14074 C<all_country_codes( [ CODESET ] )>, C<all_country_names( [ CODESET ] )>
14075
14076 =item SEMI-PRIVATE ROUTINES
14077
14078 =over 4
14079
14080 =item alias_code
14081
14082 =item rename_country
14083
14084 =back
14085
14086 =item EXAMPLES
14087
14088 =item DOMAIN NAMES
14089
14090 =item KNOWN BUGS AND LIMITATIONS
14091
14092 =item SEE ALSO
14093
14094 Locale::Language, Locale::Script, Locale::Currency, Locale::SubCountry, ISO
14095 3166-1, http://www.iso.org/iso/en/prods-services/iso3166ma/index.html,
14096 http://www.egt.ie/standards/iso3166/iso3166-1-en.html,
14097 http://www.cia.gov/cia/publications/factbook/docs/app-f.html
14098
14099 =item AUTHOR
14100
14101 =item COPYRIGHT
14102
14103 =back
14104
14105 =head2 Locale::Currency - ISO three letter codes for currency
14106 identification (ISO 4217)
14107
14108 =over 4
14109
14110 =item SYNOPSIS
14111
14112 =item DESCRIPTION
14113
14114 XTS, XXX
14115
14116 =item CONVERSION ROUTINES
14117
14118 code2currency(), currency2code()
14119
14120 =item QUERY ROUTINES
14121
14122 C<all_currency_codes()>, C<all_currency_names()>
14123
14124 =item EXAMPLES
14125
14126 =item KNOWN BUGS AND LIMITATIONS
14127
14128 =item SEE ALSO
14129
14130 Locale::Country, Locale::Script, ISO 4217:1995,
14131 http://www.bsi-global.com/iso4217currency
14132
14133 =item AUTHOR
14134
14135 =item COPYRIGHT
14136
14137 =back
14138
14139 =head2 Locale::Language - ISO two letter codes for language identification
14140 (ISO 639)
14141
14142 =over 4
14143
14144 =item SYNOPSIS
14145
14146 =item DESCRIPTION
14147
14148 =item CONVERSION ROUTINES
14149
14150 code2language(), language2code()
14151
14152 =item QUERY ROUTINES
14153
14154 C<all_language_codes()>, C<all_language_names()>
14155
14156 =item EXAMPLES
14157
14158 =item KNOWN BUGS AND LIMITATIONS
14159
14160 =item SEE ALSO
14161
14162 Locale::Country, Locale::Script, Locale::Currency, ISO 639:1988 (E/F),
14163 http://lcweb.loc.gov/standards/iso639-2/langhome.html
14164
14165 =item AUTHOR
14166
14167 =item COPYRIGHT
14168
14169 =back
14170
14171 =head2 Locale::Maketext -- framework for localization
14172
14173 =over 4
14174
14175 =item SYNOPSIS
14176
14177 =item DESCRIPTION
14178
14179 =item QUICK OVERVIEW
14180
14181 =item METHODS
14182
14183 =over 4
14184
14185 =item Construction Methods
14186
14187 =item The "maketext" Method
14188
14189 $lh->fail_with I<or> $lh->fail_with(I<PARAM>), $lh->failure_handler_auto
14190
14191 =item Utility Methods
14192
14193 $language->quant($number, $singular), $language->quant($number, $singular,
14194 $plural), $language->quant($number, $singular, $plural, $negative),
14195 $language->numf($number), $language->sprintf($format, @items),
14196 $language->language_tag(), $language->encoding()
14197
14198 =item Language Handle Attributes and Internals
14199
14200 =back
14201
14202 =item LANGUAGE CLASS HIERARCHIES
14203
14204 =item ENTRIES IN EACH LEXICON
14205
14206 =item BRACKET NOTATION
14207
14208 =item AUTO LEXICONS
14209
14210 =item CONTROLLING LOOKUP FAILURE
14211
14212 =item HOW TO USE MAKETEXT
14213
14214 =item SEE ALSO
14215
14216 =item COPYRIGHT AND DISCLAIMER
14217
14218 =item AUTHOR
14219
14220 =back
14221
14222 =head2 Locale::Maketext::TPJ13 -- article about software localization
14223
14224 =over 4
14225
14226 =item SYNOPSIS
14227
14228 =item DESCRIPTION
14229
14230 =item Localization and Perl: gettext breaks, Maketext fixes
14231
14232 =over 4
14233
14234 =item A Localization Horror Story: It Could Happen To You
14235
14236 =item The Linguistic View
14237
14238 =item Breaking gettext
14239
14240 =item Replacing gettext
14241
14242 =item Buzzwords: Abstraction and Encapsulation
14243
14244 =item Buzzword: Isomorphism
14245
14246 =item Buzzword: Inheritance
14247
14248 =item Buzzword: Concision
14249
14250 =item The Devil in the Details
14251
14252 =item The Proof in the Pudding: Localizing Web Sites
14253
14254 =item References
14255
14256 =back
14257
14258 =back
14259
14260 =head2 Locale::Script - ISO codes for script identification (ISO 15924)
14261
14262 =over 4
14263
14264 =item SYNOPSIS
14265
14266 =item DESCRIPTION
14267
14268 B<alpha-2>, B<alpha-3>, B<numeric>
14269
14270 =over 4
14271
14272 =item SPECIAL CODES
14273
14274 =back
14275
14276 =item CONVERSION ROUTINES
14277
14278 code2script( CODE, [ CODESET ] ), script2code( STRING, [ CODESET ] ),
14279 script_code2code( CODE, CODESET, CODESET )
14280
14281 =item QUERY ROUTINES
14282
14283 C<all_script_codes ( [ CODESET ] )>, C<all_script_names ( [ CODESET ] )>
14284
14285 =item EXAMPLES
14286
14287 =item KNOWN BUGS AND LIMITATIONS
14288
14289 =item SEE ALSO
14290
14291 Locale::Language, Locale::Currency, Locale::Country, ISO 15924,
14292 http://www.evertype.com/standards/iso15924/
14293
14294 =item AUTHOR
14295
14296 =item COPYRIGHT
14297
14298 =back
14299
14300 =head2 MIME::Base64 - Encoding and decoding of base64 strings
14301
14302 =over 4
14303
14304 =item SYNOPSIS
14305
14306 =item DESCRIPTION
14307
14308 encode_base64($str, [$eol]), decode_base64($str)
14309
14310 =item DIAGNOSTICS
14311
14312 Premature end of base64 data, Premature padding of base64 data
14313
14314 =item EXAMPLES
14315
14316 =item COPYRIGHT
14317
14318 =back
14319
14320 =head2 MIME::Base64::QuotedPrint, MIME::QuotedPrint - Encoding and decoding
14321 of quoted-printable strings
14322
14323 =over 4
14324
14325 =item SYNOPSIS
14326
14327 =item DESCRIPTION
14328
14329 encode_qp($str), decode_qp($str);
14330
14331 =item COPYRIGHT
14332
14333 =back
14334
14335 =head2 MIME::QuotedPrint - Encoding and decoding of quoted-printable
14336 strings
14337
14338 =over 4
14339
14340 =item SYNOPSIS
14341
14342 =item DESCRIPTION
14343
14344 encode_qp($str), decode_qp($str);
14345
14346 =item COPYRIGHT
14347
14348 =back
14349
14350 =head2 Math::BigFloat - Arbitrary size floating point math package
14351
14352 =over 4
14353
14354 =item SYNOPSIS
14355
14356 =item DESCRIPTION
14357
14358 =over 4
14359
14360 =item Canonical notation
14361
14362 =item Output
14363
14364 =item C<mantissa()>, C<exponent()> and C<parts()>
14365
14366 =item Accuracy vs. Precision
14367
14368 =item Rounding
14369
14370 ffround ( +$scale ), ffround ( -$scale ), ffround ( 0 ), fround  ( +$scale
14371 ), fround  ( -$scale ) and fround ( 0 )
14372
14373 =back
14374
14375 =item EXAMPLES
14376
14377   # not ready yet
14378
14379 =item Autocreating constants
14380
14381 =item BUGS
14382
14383 =item CAVEAT
14384
14385 stringify, bstr(), bdiv, Modifying and =, bpow
14386
14387 =item LICENSE
14388
14389 =item AUTHORS
14390
14391 =back
14392
14393 =head2 Math::BigInt - Arbitrary size integer math package
14394
14395 =over 4
14396
14397 =item SYNOPSIS
14398
14399 =item DESCRIPTION
14400
14401 Canonical notation, Input, Output
14402
14403 =item METHODS
14404
14405 =over 4
14406
14407 =item accuracy
14408
14409 =item brsft
14410
14411 =item new
14412
14413 =item bnan
14414
14415 =item bzero
14416
14417 =item binf
14418
14419 =item bone
14420
14421 =item is_one() / is_zero() / is_nan() / is_positive() / is_negative() /
14422 is_inf() / is_odd() / is_even() / is_int()
14423
14424         $x->is_zero();                  # true if arg is +0
14425         $x->is_nan();                   # true if arg is NaN
14426         $x->is_one();                   # true if arg is +1
14427         $x->is_one('-');                # true if arg is -1
14428         $x->is_odd();                   # true if odd, false for even
14429         $x->is_even();                  # true if even, false for odd
14430         $x->is_positive();              # true if >= 0
14431         $x->is_negative();              # true if <  0
14432         $x->is_inf();                   # true if +inf
14433         $x->is_inf('-');                # true if -inf (sign is default
14434 '+')
14435         $x->is_int();                   # true if $x is an integer
14436
14437 =item bcmp
14438
14439 =item bacmp
14440
14441 =item sign
14442
14443 =item bcmp
14444
14445 =item bneg
14446
14447 =item babs
14448
14449 =item bnorm
14450
14451 =item bnot
14452
14453 =item binc
14454
14455 =item bdec
14456
14457 =item badd
14458
14459 =item bsub
14460
14461 =item bmul
14462
14463 =item bdiv
14464
14465 =item bmod
14466
14467 =item bpow
14468
14469 =item blsft
14470
14471 =item brsft
14472
14473 =item band
14474
14475 =item bior
14476
14477 =item bxor
14478
14479 =item bnot
14480
14481 =item bsqrt
14482
14483 =item bfac
14484
14485 =item round
14486
14487 =item bround
14488
14489 =item bfround
14490
14491 =item bfloor
14492
14493 =item bceil
14494
14495 =item bgcd
14496
14497 =item blcm
14498
14499 =item exponent
14500
14501 =item mantissa
14502
14503 =item parts
14504
14505 =item copy
14506
14507 =item as_number
14508
14509 =item bsstr
14510
14511 =item as_hex
14512
14513 =item as_bin
14514
14515 =back
14516
14517 =item ACCURACY and PRECISION
14518
14519 =over 4
14520
14521 =item Precision P
14522
14523 =item Accuracy A
14524
14525 =item Fallback F
14526
14527 =item Rounding mode R
14528
14529 'trunc', 'even', 'odd', '+inf', '-inf', 'zero', Precision, Accuracy
14530 (significant digits), Setting/Accessing, Creating numbers, Usage,
14531 Precedence, Overriding globals, Local settings, Rounding, Default values,
14532 Remarks
14533
14534 =back
14535
14536 =item INTERNALS
14537
14538 =over 4
14539
14540 =item MATH LIBRARY
14541
14542 =item SIGN
14543
14544 =item mantissa(), exponent() and parts()
14545
14546 =back
14547
14548 =item EXAMPLES
14549
14550   use Math::BigInt;
14551
14552 =item Autocreating constants
14553
14554 =item PERFORMANCE
14555
14556 =over 4
14557
14558 =item Alternative math libraries
14559
14560 =item SUBCLASSING
14561
14562 =back
14563
14564 =item Subclassing Math::BigInt
14565
14566 =item UPGRADING
14567
14568 =over 4
14569
14570 =item Auto-upgrade
14571
14572 bsqrt(), div(), blog()
14573
14574 =back
14575
14576 =item BUGS
14577
14578 Out of Memory!, Fails to load Calc on Perl prior 5.6.0
14579
14580 =item CAVEATS
14581
14582 stringify, bstr(), bsstr() and 'cmp', int(), length, bdiv, infinity
14583 handling, Modifying and =, bpow, Overloading -$x, Mixing different object
14584 types, bsqrt(), brsft()
14585
14586 =item LICENSE
14587
14588 =item SEE ALSO
14589
14590 =item AUTHORS
14591
14592 =back
14593
14594 =head2 Math::BigInt::Calc - Pure Perl module to support Math::BigInt
14595
14596 =over 4
14597
14598 =item SYNOPSIS
14599
14600 =item DESCRIPTION
14601
14602 =item EXPORT
14603
14604 =item WRAP YOUR OWN
14605
14606 =item LICENSE
14607
14608 This program is free software; you may redistribute it and/or modify it
14609 under
14610 the same terms as Perl itself. 
14611
14612 =item AUTHORS
14613
14614 =item SEE ALSO
14615
14616 =back
14617
14618 =head2 Math::Complex - complex numbers and associated mathematical
14619 functions
14620
14621 =over 4
14622
14623 =item SYNOPSIS
14624
14625 =item DESCRIPTION
14626
14627 =item OPERATIONS
14628
14629 =item CREATION
14630
14631 =item STRINGIFICATION
14632
14633 =over 4
14634
14635 =item CHANGED IN PERL 5.6
14636
14637 =back
14638
14639 =item USAGE
14640
14641 =item ERRORS DUE TO DIVISION BY ZERO OR LOGARITHM OF ZERO
14642
14643 =item ERRORS DUE TO INDIGESTIBLE ARGUMENTS
14644
14645 =item BUGS
14646
14647 =item AUTHORS
14648
14649 =back
14650
14651 =head2 Math::Trig - trigonometric functions
14652
14653 =over 4
14654
14655 =item SYNOPSIS
14656
14657 =item DESCRIPTION
14658
14659 =item TRIGONOMETRIC FUNCTIONS
14660
14661 B<tan>
14662
14663 =over 4
14664
14665 =item ERRORS DUE TO DIVISION BY ZERO
14666
14667 =item SIMPLE (REAL) ARGUMENTS, COMPLEX RESULTS
14668
14669 =back
14670
14671 =item PLANE ANGLE CONVERSIONS
14672
14673 =item RADIAL COORDINATE CONVERSIONS
14674
14675 =over 4
14676
14677 =item COORDINATE SYSTEMS
14678
14679 =item 3-D ANGLE CONVERSIONS
14680
14681 cartesian_to_cylindrical, cartesian_to_spherical, cylindrical_to_cartesian,
14682 cylindrical_to_spherical, spherical_to_cartesian, spherical_to_cylindrical
14683
14684 =back
14685
14686 =item GREAT CIRCLE DISTANCES AND DIRECTIONS
14687
14688 =item EXAMPLES
14689
14690 =over 4
14691
14692 =item CAVEAT FOR GREAT CIRCLE FORMULAS
14693
14694 =back
14695
14696 =item BUGS
14697
14698 =item AUTHORS
14699
14700 =back
14701
14702 =head2 Memoize - Make your functions faster by trading space for time
14703
14704 =over 4
14705
14706 =item SYNOPSIS
14707
14708 =item DESCRIPTION
14709
14710 =item DETAILS
14711
14712 =item OPTIONS
14713
14714 =over 4
14715
14716 =item INSTALL
14717
14718 =item NORMALIZER
14719
14720 =item C<SCALAR_CACHE>, C<LIST_CACHE>
14721
14722 C<MEMORY>, C<HASH>, C<TIE>, C<FAULT>, C<MERGE>
14723
14724 =back
14725
14726 =item OTHER FACILITIES
14727
14728 =over 4
14729
14730 =item C<unmemoize>
14731
14732 =item C<flush_cache>
14733
14734 =back
14735
14736 =item CAVEATS
14737
14738 =item PERSISTENT CACHE SUPPORT
14739
14740 =item EXPIRATION SUPPORT
14741
14742 =item BUGS
14743
14744 =item MAILING LIST
14745
14746 =item AUTHOR
14747
14748 =item COPYRIGHT AND LICENSE
14749
14750 =item THANK YOU
14751
14752 =back
14753
14754 =head2 Memoize::AnyDBM_File - glue to provide EXISTS for AnyDBM_File for
14755 Storable use
14756
14757 =over 4
14758
14759 =item DESCRIPTION
14760
14761 =back
14762
14763 =head2 Memoize::Expire - Plug-in module for automatic expiration of
14764 memoized values
14765
14766 =over 4
14767
14768 =item SYNOPSIS
14769
14770 =item DESCRIPTION
14771
14772 =item INTERFACE
14773
14774  TIEHASH,  EXISTS,  STORE
14775
14776 =item ALTERNATIVES
14777
14778 =item CAVEATS
14779
14780 =item AUTHOR
14781
14782 =item SEE ALSO
14783
14784 =back
14785
14786 =head2 Memoize::ExpireFile - test for Memoize expiration semantics
14787
14788 =over 4
14789
14790 =item DESCRIPTION
14791
14792 =back
14793
14794 =head2 Memoize::ExpireTest - test for Memoize expiration semantics
14795
14796 =over 4
14797
14798 =item DESCRIPTION
14799
14800 =back
14801
14802 =head2 Memoize::NDBM_File - glue to provide EXISTS for NDBM_File for
14803 Storable use
14804
14805 =over 4
14806
14807 =item DESCRIPTION
14808
14809 =back
14810
14811 =head2 Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for
14812 Storable use
14813
14814 =over 4
14815
14816 =item DESCRIPTION
14817
14818 =back
14819
14820 =head2 Memoize::Storable - store Memoized data in Storable database
14821
14822 =over 4
14823
14824 =item DESCRIPTION
14825
14826 =back
14827
14828 =head2 NDBM_File - Tied access to ndbm files
14829
14830 =over 4
14831
14832 =item SYNOPSIS
14833
14834 =item DESCRIPTION
14835
14836 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
14837
14838 =item DIAGNOSTICS
14839
14840 =over 4
14841
14842 =item C<ndbm store returned -1, errno 22, key "..." at ...>
14843
14844 =back
14845
14846 =item BUGS AND WARNINGS
14847
14848 =back
14849
14850 =head2 NEXT - Provide a pseudo-class NEXT that allows method redispatch
14851
14852 =over 4
14853
14854 =item SYNOPSIS
14855
14856 =item DESCRIPTION
14857
14858 =over 4
14859
14860 =item Enforcing redispatch
14861
14862 =item Avoiding repetitions
14863
14864 =back
14865
14866 =item AUTHOR
14867
14868 =item BUGS AND IRRITATIONS
14869
14870 =item COPYRIGHT
14871
14872 =back
14873
14874 =head2 Net::Cmd - Network Command class (as used by FTP, SMTP etc)
14875
14876 =over 4
14877
14878 =item SYNOPSIS
14879
14880 =item DESCRIPTION
14881
14882 =item USER METHODS
14883
14884 debug ( VALUE ), message (), code (), ok (), status (), datasend ( DATA ),
14885 dataend ()
14886
14887 =item CLASS METHODS
14888
14889 debug_print ( DIR, TEXT ), debug_text ( TEXT ), command ( CMD [, ARGS, ...
14890 ]), unsupported (), response (), parse_response ( TEXT ), getline (),
14891 ungetline ( TEXT ), read_until_dot (), tied_fh ()
14892
14893 =item EXPORTS
14894
14895 =item AUTHOR
14896
14897 =item COPYRIGHT
14898
14899 =back
14900
14901 =head2 Net::Config - Local configuration data for libnet
14902
14903 =over 4
14904
14905 =item SYNOPSYS
14906
14907 =item DESCRIPTION
14908
14909 =item METHODS
14910
14911 requires_firewall HOST
14912
14913 =item NetConfig VALUES
14914
14915 nntp_hosts, snpp_hosts, pop3_hosts, smtp_hosts, ph_hosts, daytime_hosts,
14916 time_hosts, inet_domain, ftp_firewall, ftp_firewall_type, ftp_ext_passive,
14917 ftp_int_pasive, local_netmask, test_hosts, test_exists
14918
14919 =back
14920
14921 =head2 Net::Domain - Attempt to evaluate the current host's internet name
14922 and domain
14923
14924 =over 4
14925
14926 =item SYNOPSIS
14927
14928 =item DESCRIPTION
14929
14930 hostfqdn (), hostname (), hostdomain ()
14931
14932 =item AUTHOR
14933
14934 =item COPYRIGHT
14935
14936 =back
14937
14938 =head2 Net::FTP - FTP Client class
14939
14940 =over 4
14941
14942 =item SYNOPSIS
14943
14944 =item DESCRIPTION
14945
14946 =item OVERVIEW
14947
14948 =item CONSTRUCTOR
14949
14950 new (HOST [,OPTIONS])
14951
14952 =item METHODS
14953
14954 login ([LOGIN [,PASSWORD [, ACCOUNT] ] ]), authorize ( [AUTH [, RESP]]),
14955 site (ARGS), type (TYPE [, ARGS]), ascii ([ARGS]) binary([ARGS])
14956 ebcdic([ARGS]) byte([ARGS]), rename ( OLDNAME, NEWNAME ), delete ( FILENAME
14957 ), cwd ( [ DIR ] ), cdup (), pwd (), restart ( WHERE ), rmdir ( DIR ),
14958 mkdir ( DIR [, RECURSE ]), ls ( [ DIR ] ), dir ( [ DIR ] ), get (
14959 REMOTE_FILE [, LOCAL_FILE [, WHERE]] ), put ( LOCAL_FILE [, REMOTE_FILE ]
14960 ), put_unique ( LOCAL_FILE [, REMOTE_FILE ] ), append ( LOCAL_FILE [,
14961 REMOTE_FILE ] ), unique_name (), mdtm ( FILE ), size ( FILE ), supported (
14962 CMD ), hash ( [FILEHANDLE_GLOB_REF],[ BYTES_PER_HASH_MARK] ), nlst ( [ DIR
14963 ] ), list ( [ DIR ] ), retr ( FILE ), stor ( FILE ), stou ( FILE ), appe (
14964 FILE ), port ( [ PORT ] ), pasv (), pasv_xfer ( SRC_FILE, DEST_SERVER [,
14965 DEST_FILE ] ), pasv_xfer_unique ( SRC_FILE, DEST_SERVER [, DEST_FILE ] ),
14966 pasv_wait ( NON_PASV_SERVER ), abort (), quit ()
14967
14968 =over 4
14969
14970 =item Methods for the adventurous
14971
14972 quot (CMD [,ARGS])
14973
14974 =back
14975
14976 =item THE dataconn CLASS
14977
14978 read ( BUFFER, SIZE [, TIMEOUT ] ), write ( BUFFER, SIZE [, TIMEOUT ] ),
14979 bytes_read (), abort (), close ()
14980
14981 =item UNIMPLEMENTED
14982
14983 B<ALLO>, B<SMNT>, B<HELP>, B<MODE>, B<SYST>, B<STAT>, B<STRU>, B<REIN>
14984
14985 =item REPORTING BUGS
14986
14987 =item AUTHOR
14988
14989 =item SEE ALSO
14990
14991 =item USE EXAMPLES
14992
14993 http://www.csh.rit.edu/~adam/Progs/autoftp-2.0.tar.gz
14994
14995 =item CREDITS
14996
14997 =item COPYRIGHT
14998
14999 =back
15000
15001 =head2 Net::NNTP - NNTP Client class
15002
15003 =over 4
15004
15005 =item SYNOPSIS
15006
15007 =item DESCRIPTION
15008
15009 =item CONSTRUCTOR
15010
15011 new ( [ HOST ] [, OPTIONS ])
15012
15013 =item METHODS
15014
15015 article ( [ MSGID|MSGNUM ], [FH] ), body ( [ MSGID|MSGNUM ], [FH] ), head (
15016 [ MSGID|MSGNUM ], [FH] ), articlefh ( [ MSGID|MSGNUM ] ), bodyfh ( [
15017 MSGID|MSGNUM ] ), headfh ( [ MSGID|MSGNUM ] ), nntpstat ( [ MSGID|MSGNUM ]
15018 ), group ( [ GROUP ] ), ihave ( MSGID [, MESSAGE ]), last (), date (),
15019 postok (), authinfo ( USER, PASS ), list (), newgroups ( SINCE [,
15020 DISTRIBUTIONS ]), newnews ( SINCE [, GROUPS [, DISTRIBUTIONS ]]), next (),
15021 post ( [ MESSAGE ] ), postfh (), slave (), quit ()
15022
15023 =over 4
15024
15025 =item Extension methods
15026
15027 newsgroups ( [ PATTERN ] ), distributions (), subscriptions (),
15028 overview_fmt (), active_times (), active ( [ PATTERN ] ), xgtitle ( PATTERN
15029 ), xhdr ( HEADER, MESSAGE-SPEC ), xover ( MESSAGE-SPEC ), xpath (
15030 MESSAGE-ID ), xpat ( HEADER, PATTERN, MESSAGE-SPEC), xrover, listgroup ( [
15031 GROUP ] ), reader
15032
15033 =back
15034
15035 =item UNSUPPORTED
15036
15037 =item DEFINITIONS
15038
15039 MESSAGE-SPEC, PATTERN, Examples, C<[^]-]>, C<*bdc>, C<[0-9a-zA-Z]>, C<a??d>
15040
15041 =item SEE ALSO
15042
15043 =item AUTHOR
15044
15045 =item COPYRIGHT
15046
15047 =back
15048
15049 =head2 Net::POP3 - Post Office Protocol 3 Client class (RFC1939)
15050
15051 =over 4
15052
15053 =item SYNOPSIS
15054
15055 =item DESCRIPTION
15056
15057 =item EXAMPLES
15058
15059 =item CONSTRUCTOR
15060
15061 new ( [ HOST, ] [ OPTIONS ] )
15062
15063 =item METHODS
15064
15065 user ( USER ), pass ( PASS ), login ( [ USER [, PASS ]] ), apop ( [ USER [,
15066 PASS ]] ), top ( MSGNUM [, NUMLINES ] ), list ( [ MSGNUM ] ), get ( MSGNUM
15067 [, FH ] ), getfh ( MSGNUM ), last (), popstat (), ping ( USER ), uidl ( [
15068 MSGNUM ] ), delete ( MSGNUM ), reset (), quit ()
15069
15070 =item NOTES
15071
15072 =item SEE ALSO
15073
15074 =item AUTHOR
15075
15076 =item COPYRIGHT
15077
15078 =back
15079
15080 =head2 Net::Ping - check a remote host for reachability
15081
15082 =over 4
15083
15084 =item SYNOPSIS
15085
15086 =item DESCRIPTION
15087
15088 =over 4
15089
15090 =item Functions
15091
15092 Net::Ping->new([$proto [, $def_timeout [, $bytes]]]);,
15093 $p->bind($local_addr);, $p->ping($host [, $timeout]);, $p->open($host);,
15094 $p->open($host);, $p->close();, pingecho($host [, $timeout]);
15095
15096 =back
15097
15098 =item WARNING
15099
15100 =item NOTES
15101
15102 =item AUTHORS
15103
15104 =item COPYRIGHT
15105
15106 =back
15107
15108 =head2 Net::SMTP - Simple Mail Transfer Protocol Client
15109
15110 =over 4
15111
15112 =item SYNOPSIS
15113
15114 =item DESCRIPTION
15115
15116 =item EXAMPLES
15117
15118 =item CONSTRUCTOR
15119
15120 new Net::SMTP [ HOST, ] [ OPTIONS ]
15121
15122 =item METHODS
15123
15124 banner (), domain (), hello ( DOMAIN ), etrn ( DOMAIN ), auth ( USERNAME,
15125 PASSWORD ), mail ( ADDRESS [, OPTIONS] ), send ( ADDRESS ), send_or_mail (
15126 ADDRESS ), send_and_mail ( ADDRESS ), reset (), recipient ( ADDRESS [,
15127 ADDRESS [ ...]] [, OPTIONS ] ), to ( ADDRESS [, ADDRESS [...]] ), cc (
15128 ADDRESS [, ADDRESS [...]] ), bcc ( ADDRESS [, ADDRESS [...]] ), data ( [
15129 DATA ] ), expand ( ADDRESS ), verify ( ADDRESS ), help ( [ $subject ] ),
15130 quit ()
15131
15132 =item SEE ALSO
15133
15134 =item AUTHOR
15135
15136 =item COPYRIGHT
15137
15138 =back
15139
15140 =head2 Net::Time - time and daytime network client interface
15141
15142 =over 4
15143
15144 =item SYNOPSIS
15145
15146 =item DESCRIPTION
15147
15148 inet_time ( [HOST [, PROTOCOL [, TIMEOUT]]]), inet_daytime ( [HOST [,
15149 PROTOCOL [, TIMEOUT]]])
15150
15151 =item AUTHOR
15152
15153 =item COPYRIGHT
15154
15155 =back
15156
15157 =head2 Net::hostent - by-name interface to Perl's built-in gethost*()
15158 functions
15159
15160 =over 4
15161
15162 =item SYNOPSIS
15163
15164 =item DESCRIPTION
15165
15166 =item EXAMPLES
15167
15168 =item NOTE
15169
15170 =item AUTHOR
15171
15172 =back
15173
15174 =head2 Net::libnetFAQ, libnetFAQ - libnet Frequently Asked Questions
15175
15176 =over 4
15177
15178 =item DESCRIPTION
15179
15180 =over 4
15181
15182 =item Where to get this document
15183
15184 =item How to contribute to this document
15185
15186 =back
15187
15188 =item Author and Copyright Information
15189
15190 =over 4
15191
15192 =item Disclaimer
15193
15194 =back
15195
15196 =item Obtaining and installing libnet
15197
15198 =over 4
15199
15200 =item What is libnet ?
15201
15202 =item Which version of perl do I need ?
15203
15204 =item What other modules do I need ?
15205
15206 =item What machines support libnet ?
15207
15208 =item Where can I get the latest libnet release
15209
15210 =back
15211
15212 =item Using Net::FTP
15213
15214 =over 4
15215
15216 =item How do I download files from an FTP server ?
15217
15218 =item How do I transfer files in binary mode ?
15219
15220 =item How can I get the size of a file on a remote FTP server ?
15221
15222 =item How can I get the modification time of a file on a remote FTP server
15223 ?
15224
15225 =item How can I change the permissions of a file on a remote server ?
15226
15227 =item Can I do a reget operation like the ftp command ?
15228
15229 =item How do I get a directory listing from an FTP server ?
15230
15231 =item Changing directory to "" does not fail ?
15232
15233 =item I am behind a SOCKS firewall, but the Firewall option does not work ?
15234
15235 =item I am behind an FTP proxy firewall, but cannot access machines outside
15236 ?
15237
15238 =item My ftp proxy firewall does not listen on port 21
15239
15240 =item Is it possible to change the file permissions of a file on an FTP
15241 server ?
15242
15243 =item I have seen scripts call a method message, but cannot find it
15244 documented ?
15245
15246 =item Why does Net::FTP not implement mput and mget methods
15247
15248 =back
15249
15250 =item Using Net::SMTP
15251
15252 =over 4
15253
15254 =item Why can't the part of an Email address after the @ be used as the
15255 hostname ?
15256
15257 =item Why does Net::SMTP not do DNS MX lookups ?
15258
15259 =item The verify method always returns true ?
15260
15261 =back
15262
15263 =item Debugging scripts
15264
15265 =over 4
15266
15267 =item How can I debug my scripts that use Net::* modules ?
15268
15269 =back
15270
15271 =item AUTHOR AND COPYRIGHT
15272
15273 =back
15274
15275 =head2 Net::netent - by-name interface to Perl's built-in getnet*()
15276 functions
15277
15278 =over 4
15279
15280 =item SYNOPSIS
15281
15282 =item DESCRIPTION
15283
15284 =item EXAMPLES
15285
15286 =item NOTE
15287
15288 =item AUTHOR
15289
15290 =back
15291
15292 =head2 Net::protoent - by-name interface to Perl's built-in getproto*()
15293 functions
15294
15295 =over 4
15296
15297 =item SYNOPSIS
15298
15299 =item DESCRIPTION
15300
15301 =item NOTE
15302
15303 =item AUTHOR
15304
15305 =back
15306
15307 =head2 Net::servent - by-name interface to Perl's built-in getserv*()
15308 functions
15309
15310 =over 4
15311
15312 =item SYNOPSIS
15313
15314 =item DESCRIPTION
15315
15316 =item EXAMPLES
15317
15318 =item NOTE
15319
15320 =item AUTHOR
15321
15322 =back
15323
15324 =head2 Netrc, Net::Netrc - OO interface to users netrc file
15325
15326 =over 4
15327
15328 =item SYNOPSIS
15329
15330 =item DESCRIPTION
15331
15332 =item THE .netrc FILE
15333
15334 machine name, default, login name, password string, account string, macdef
15335 name
15336
15337 =item CONSTRUCTOR
15338
15339 lookup ( MACHINE [, LOGIN ])
15340
15341 =item METHODS
15342
15343 login (), password (), account (), lpa ()
15344
15345 =item AUTHOR
15346
15347 =item SEE ALSO
15348
15349 =item COPYRIGHT
15350
15351 =back
15352
15353 =head2 O - Generic interface to Perl Compiler backends
15354
15355 =over 4
15356
15357 =item SYNOPSIS
15358
15359 =item DESCRIPTION
15360
15361 =item CONVENTIONS
15362
15363 =item IMPLEMENTATION
15364
15365 =item AUTHOR
15366
15367 =back
15368
15369 =head2 ODBM_File - Tied access to odbm files
15370
15371 =over 4
15372
15373 =item SYNOPSIS
15374
15375 =item DESCRIPTION
15376
15377 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
15378
15379 =item DIAGNOSTICS
15380
15381 =over 4
15382
15383 =item C<odbm store returned -1, errno 22, key "..." at ...>
15384
15385 =back
15386
15387 =item BUGS AND WARNINGS
15388
15389 =back
15390
15391 =head2 Opcode - Disable named opcodes when compiling perl code
15392
15393 =over 4
15394
15395 =item SYNOPSIS
15396
15397 =item DESCRIPTION
15398
15399 =item NOTE
15400
15401 =item WARNING
15402
15403 =item Operator Names and Operator Lists
15404
15405 an operator name (opname), an operator tag name (optag), a negated opname
15406 or optag, an operator set (opset)
15407
15408 =item Opcode Functions
15409
15410 opcodes, opset (OP, ...), opset_to_ops (OPSET), opset_to_hex (OPSET),
15411 full_opset, empty_opset, invert_opset (OPSET), verify_opset (OPSET, ...),
15412 define_optag (OPTAG, OPSET), opmask_add (OPSET), opmask, opdesc (OP, ...),
15413 opdump (PAT)
15414
15415 =item Manipulating Opsets
15416
15417 =item TO DO (maybe)
15418
15419 =back
15420
15421 =over 4
15422
15423 =item Predefined Opcode Tags
15424
15425 :base_core, :base_mem, :base_loop, :base_io, :base_orig, :base_math,
15426 :base_thread, :default, :filesys_read, :sys_db, :browse, :filesys_open,
15427 :filesys_write, :subprocess, :ownprocess, :others, :still_to_be_decided,
15428 :dangerous
15429
15430 =item SEE ALSO
15431
15432 =item AUTHORS
15433
15434 =back
15435
15436 =head2 Opcode::Safe, Safe - Compile and execute code in restricted
15437 compartments
15438
15439 =over 4
15440
15441 =item SYNOPSIS
15442
15443 =item DESCRIPTION
15444
15445 a new namespace, an operator mask
15446
15447 =item WARNING
15448
15449 =over 4
15450
15451 =item RECENT CHANGES
15452
15453 =item Methods in class Safe
15454
15455 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
15456 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
15457 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
15458 root (NAMESPACE), mask (MASK)
15459
15460 =item Some Safety Issues
15461
15462 Memory, CPU, Snooping, Signals, State Changes
15463
15464 =item AUTHOR
15465
15466 =back
15467
15468 =back
15469
15470 =head2 Opcode::ops, ops - Perl pragma to restrict unsafe operations when
15471 compiling
15472
15473 =over 4
15474
15475 =item SYNOPSIS  
15476
15477 =item DESCRIPTION
15478
15479 =item SEE ALSO
15480
15481 =back
15482
15483 =head2 POSIX - Perl interface to IEEE Std 1003.1
15484
15485 =over 4
15486
15487 =item SYNOPSIS
15488
15489 =item DESCRIPTION
15490
15491 =item NOTE
15492
15493 =item CAVEATS 
15494
15495 =item FUNCTIONS
15496
15497 _exit, abort, abs, access, acos, alarm, asctime, asin, assert, atan, atan2,
15498 atexit, atof, atoi, atol, bsearch, calloc, ceil, chdir, chmod, chown,
15499 clearerr, clock, close, closedir, cos, cosh, creat, ctermid, ctime,
15500 cuserid, difftime, div, dup, dup2, errno, execl, execle, execlp, execv,
15501 execve, execvp, exit, exp, fabs, fclose, fcntl, fdopen, feof, ferror,
15502 fflush, fgetc, fgetpos, fgets, fileno, floor, fmod, fopen, fork, fpathconf,
15503 fprintf, fputc, fputs, fread, free, freopen, frexp, fscanf, fseek, fsetpos,
15504 fstat, ftell, fwrite, getc, getchar, getcwd, getegid, getenv, geteuid,
15505 getgid, getgrgid, getgrnam, getgroups, getlogin, getpgrp, getpid, getppid,
15506 getpwnam, getpwuid, gets, getuid, gmtime, isalnum, isalpha, isatty,
15507 iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace, isupper,
15508 isxdigit, kill, labs, ldexp, ldiv, link, localeconv, localtime, log, log10,
15509 longjmp, lseek, malloc, mblen, mbstowcs, mbtowc, memchr, memcmp, memcpy,
15510 memmove, memset, mkdir, mkfifo, mktime, modf, nice, offsetof, open,
15511 opendir, pathconf, pause, perror, pipe, pow, printf, putc, putchar, puts,
15512 qsort, raise, rand, read, readdir, realloc, remove, rename, rewind,
15513 rewinddir, rmdir, scanf, setgid, setjmp, setlocale, setpgid, setsid,
15514 setuid, sigaction, siglongjmp, sigpending, sigprocmask, sigsetjmp,
15515 sigsuspend, sin, sinh, sleep, sprintf, sqrt, srand, sscanf, stat, strcat,
15516 strchr, strcmp, strcoll, strcpy, strcspn, strerror, strftime, strlen,
15517 strncat, strncmp, strncpy, strpbrk, strrchr, strspn, strstr, strtod,
15518 strtok, strtol, strtoul, strxfrm, sysconf, system, tan, tanh, tcdrain,
15519 tcflow, tcflush, tcgetpgrp, tcsendbreak, tcsetpgrp, time, times, tmpfile,
15520 tmpnam, tolower, toupper, ttyname, tzname, tzset, umask, uname, ungetc,
15521 unlink, utime, vfprintf, vprintf, vsprintf, wait, waitpid, wcstombs,
15522 wctomb, write
15523
15524 =item CLASSES
15525
15526 =over 4
15527
15528 =item POSIX::SigAction
15529
15530 new
15531
15532 =item POSIX::SigSet
15533
15534 new, addset, delset, emptyset, fillset, ismember
15535
15536 =item POSIX::Termios
15537
15538 new, getattr, getcc, getcflag, getiflag, getispeed, getlflag, getoflag,
15539 getospeed, setattr, setcc, setcflag, setiflag, setispeed, setlflag,
15540 setoflag, setospeed, Baud rate values, Terminal interface values, c_cc
15541 field values, c_cflag field values, c_iflag field values, c_lflag field
15542 values, c_oflag field values
15543
15544 =back
15545
15546 =item PATHNAME CONSTANTS
15547
15548 Constants
15549
15550 =item POSIX CONSTANTS
15551
15552 Constants
15553
15554 =item SYSTEM CONFIGURATION
15555
15556 Constants
15557
15558 =item ERRNO
15559
15560 Constants
15561
15562 =item FCNTL
15563
15564 Constants
15565
15566 =item FLOAT
15567
15568 Constants
15569
15570 =item LIMITS
15571
15572 Constants
15573
15574 =item LOCALE
15575
15576 Constants
15577
15578 =item MATH
15579
15580 Constants
15581
15582 =item SIGNAL
15583
15584 Constants
15585
15586 =item STAT
15587
15588 Constants, Macros
15589
15590 =item STDLIB
15591
15592 Constants
15593
15594 =item STDIO
15595
15596 Constants
15597
15598 =item TIME
15599
15600 Constants
15601
15602 =item UNISTD
15603
15604 Constants
15605
15606 =item WAIT
15607
15608 Constants, WNOHANG, WUNTRACED, Macros, WIFEXITED, WEXITSTATUS, WIFSIGNALED,
15609 WTERMSIG, WIFSTOPPED, WSTOPSIG
15610
15611 =back
15612
15613 =head2 PerlIO - On demand loader for PerlIO layers and root of PerlIO::*
15614 name space
15615
15616 =over 4
15617
15618 =item SYNOPSIS
15619
15620 =item DESCRIPTION
15621
15622 unix, stdio, perlio, crlf, utf8, raw
15623
15624 =over 4
15625
15626 =item Defaults and how to override them
15627
15628 =back
15629
15630 =item AUTHOR
15631
15632 =item SEE ALSO
15633
15634 =back
15635
15636 =head2 PerlIO::Scalar - support module for in-memory IO.
15637
15638 =over 4
15639
15640 =item SYNOPSIS
15641
15642 =item DESCRIPTION
15643
15644 =back
15645
15646 =head2 PerlIO::Via - Helper class for PerlIO layers implemented in perl
15647
15648 =over 4
15649
15650 =item SYNOPSIS
15651
15652 =item DESCRIPTION
15653
15654 $class->PUSHED([$mode[,$fh]]), $obj->POPPED([$fh]),
15655 $class->OPEN($path,$mode[,$fh]), $class->FDOPEN($fd),
15656 $class->SYSOPEN($path,$imode,$perm,$fh), $obj->FILENO($fh),
15657 $obj->READ($buffer,$len,$fh), $obj->WRITE($buffer,$fh), $obj->FILL($fh),
15658 $obj->CLOSE($fh), $obj->SEEK($posn,$whence,$fh), $obj->TELL($fh),
15659 $obj->UNREAD($buffer,$fh), $obj->FLUSH($fh), $obj->SETLINEBUF($fh),
15660 $obj->CLEARERR($fh), $obj->ERROR($fh), $obj->EOF($fh)
15661
15662 =over 4
15663
15664 =item Example - a Hexadecimal Handle
15665
15666 =back
15667
15668 =back
15669
15670 =head2 Pod::Checker, podchecker() - check pod documents for syntax errors
15671
15672 =over 4
15673
15674 =item SYNOPSIS
15675
15676 =item OPTIONS/ARGUMENTS
15677
15678 =over 4
15679
15680 =item podchecker()
15681
15682 B<-warnings> =E<gt> I<val>
15683
15684 =back
15685
15686 =item DESCRIPTION
15687
15688 =item DIAGNOSTICS
15689
15690 =over 4
15691
15692 =item Errors
15693
15694 empty =headn, =over on line I<N> without closing =back, =item without
15695 previous =over, =back without previous =over, No argument for =begin, =end
15696 without =begin, Nested =begin's, =for without formatter specification,
15697 unresolved internal link I<NAME>, Unknown command "I<CMD>", Unknown
15698 interior-sequence "I<SEQ>", nested commands
15699 I<CMD>E<lt>...I<CMD>E<lt>...E<gt>...E<gt>, garbled entity I<STRING>, Entity
15700 number out of range, malformed link LE<lt>E<gt>, nonempty ZE<lt>E<gt>,
15701 empty XE<lt>E<gt>, Spurious text after =pod / =cut, Spurious character(s)
15702 after =back
15703
15704 =item Warnings
15705
15706 multiple occurence of link target I<name>, line containing nothing but
15707 whitespace in paragraph, file does not start with =head, previous =item has
15708 no contents, preceding non-item paragraph(s), =item type mismatch (I<one>
15709 vs. I<two>), I<N> unescaped C<E<lt>E<gt>> in paragraph, Unknown entity, No
15710 items in =over, No argument for =item, empty section in previous paragraph,
15711 Verbatim paragraph in NAME section
15712
15713 =item Hyperlinks
15714
15715 ignoring leading/trailing whitespace in link, (section) in '$page'
15716 deprecated, alternative text/node '%s' contains non-escaped | or /
15717
15718 =back
15719
15720 =item RETURN VALUE
15721
15722 =item EXAMPLES
15723
15724 =item INTERFACE
15725
15726 =back
15727
15728 C<Pod::Checker-E<gt>new( %options )>
15729
15730 C<$checker-E<gt>poderror( @args )>, C<$checker-E<gt>poderror( {%opts},
15731 @args )>
15732
15733 C<$checker-E<gt>num_errors()>
15734
15735 C<$checker-E<gt>name()>
15736
15737 C<$checker-E<gt>node()>
15738
15739 C<$checker-E<gt>idx()>
15740
15741 C<$checker-E<gt>hyperlink()>
15742
15743 =over 4
15744
15745 =item AUTHOR
15746
15747 =back
15748
15749 =head2 Pod::Find - find POD documents in directory trees
15750
15751 =over 4
15752
15753 =item SYNOPSIS
15754
15755 =item DESCRIPTION
15756
15757 =back
15758
15759 =over 4
15760
15761 =item C<pod_find( { %opts } , @directories )>
15762
15763 C<-verbose =E<gt> 1>, C<-perl =E<gt> 1>, C<-script =E<gt> 1>, C<-inc =E<gt>
15764 1>
15765
15766 =back
15767
15768 =over 4
15769
15770 =item C<simplify_name( $str )>
15771
15772 =back
15773
15774 =over 4
15775
15776 =item C<pod_where( { %opts }, $pod )>
15777
15778 C<-inc =E<gt> 1>, C<-dirs =E<gt> [ $dir1, $dir2, ... ]>, C<-verbose =E<gt>
15779 1>
15780
15781 =back
15782
15783 =over 4
15784
15785 =item C<contains_pod( $file , $verbose )>
15786
15787 =back
15788
15789 =over 4
15790
15791 =item AUTHOR
15792
15793 =item SEE ALSO
15794
15795 =back
15796
15797 =head2 Pod::Html - module to convert pod files to HTML
15798
15799 =over 4
15800
15801 =item SYNOPSIS
15802
15803 =item DESCRIPTION
15804
15805 =item ARGUMENTS
15806
15807 backlink, cachedir, css, flush, header, help, htmldir, htmlroot, index,
15808 infile, libpods, netscape, outfile, podpath, podroot, quiet, recurse,
15809 title, verbose
15810
15811 =item EXAMPLE
15812
15813 =item ENVIRONMENT
15814
15815 =item AUTHOR
15816
15817 =item SEE ALSO
15818
15819 =item COPYRIGHT
15820
15821 =back
15822
15823 =head2 Pod::InputObjects - objects representing POD input paragraphs,
15824 commands, etc.
15825
15826 =over 4
15827
15828 =item SYNOPSIS
15829
15830 =item REQUIRES
15831
15832 =item EXPORTS
15833
15834 =item DESCRIPTION
15835
15836 package B<Pod::InputSource>, package B<Pod::Paragraph>, package
15837 B<Pod::InteriorSequence>, package B<Pod::ParseTree>
15838
15839 =back
15840
15841 =over 4
15842
15843 =item B<Pod::InputSource>
15844
15845 =back
15846
15847 =over 4
15848
15849 =item B<new()>
15850
15851 =back
15852
15853 =over 4
15854
15855 =item B<name()>
15856
15857 =back
15858
15859 =over 4
15860
15861 =item B<handle()>
15862
15863 =back
15864
15865 =over 4
15866
15867 =item B<was_cutting()>
15868
15869 =back
15870
15871 =over 4
15872
15873 =item B<Pod::Paragraph>
15874
15875 =back
15876
15877 =over 4
15878
15879 =item Pod::Paragraph-E<gt>B<new()>
15880
15881 =back
15882
15883 =over 4
15884
15885 =item $pod_para-E<gt>B<cmd_name()>
15886
15887 =back
15888
15889 =over 4
15890
15891 =item $pod_para-E<gt>B<text()>
15892
15893 =back
15894
15895 =over 4
15896
15897 =item $pod_para-E<gt>B<raw_text()>
15898
15899 =back
15900
15901 =over 4
15902
15903 =item $pod_para-E<gt>B<cmd_prefix()>
15904
15905 =back
15906
15907 =over 4
15908
15909 =item $pod_para-E<gt>B<cmd_separator()>
15910
15911 =back
15912
15913 =over 4
15914
15915 =item $pod_para-E<gt>B<parse_tree()>
15916
15917 =back
15918
15919 =over 4
15920
15921 =item $pod_para-E<gt>B<file_line()>
15922
15923 =back
15924
15925 =over 4
15926
15927 =item B<Pod::InteriorSequence>
15928
15929 =back
15930
15931 =over 4
15932
15933 =item Pod::InteriorSequence-E<gt>B<new()>
15934
15935 =back
15936
15937 =over 4
15938
15939 =item $pod_seq-E<gt>B<cmd_name()>
15940
15941 =back
15942
15943 =over 4
15944
15945 =item $pod_seq-E<gt>B<prepend()>
15946
15947 =back
15948
15949 =over 4
15950
15951 =item $pod_seq-E<gt>B<append()>
15952
15953 =back
15954
15955 =over 4
15956
15957 =item $pod_seq-E<gt>B<nested()>
15958
15959 =back
15960
15961 =over 4
15962
15963 =item $pod_seq-E<gt>B<raw_text()>
15964
15965 =back
15966
15967 =over 4
15968
15969 =item $pod_seq-E<gt>B<left_delimiter()>
15970
15971 =back
15972
15973 =over 4
15974
15975 =item $pod_seq-E<gt>B<right_delimiter()>
15976
15977 =back
15978
15979 =over 4
15980
15981 =item $pod_seq-E<gt>B<parse_tree()>
15982
15983 =back
15984
15985 =over 4
15986
15987 =item $pod_seq-E<gt>B<file_line()>
15988
15989 =back
15990
15991 =over 4
15992
15993 =item Pod::InteriorSequence::B<DESTROY()>
15994
15995 =back
15996
15997 =over 4
15998
15999 =item B<Pod::ParseTree>
16000
16001 =back
16002
16003 =over 4
16004
16005 =item Pod::ParseTree-E<gt>B<new()>
16006
16007 =back
16008
16009 =over 4
16010
16011 =item $ptree-E<gt>B<top()>
16012
16013 =back
16014
16015 =over 4
16016
16017 =item $ptree-E<gt>B<children()>
16018
16019 =back
16020
16021 =over 4
16022
16023 =item $ptree-E<gt>B<prepend()>
16024
16025 =back
16026
16027 =over 4
16028
16029 =item $ptree-E<gt>B<append()>
16030
16031 =back
16032
16033 =over 4
16034
16035 =item $ptree-E<gt>B<raw_text()>
16036
16037 =back
16038
16039 =over 4
16040
16041 =item Pod::ParseTree::B<DESTROY()>
16042
16043 =back
16044
16045 =over 4
16046
16047 =item SEE ALSO
16048
16049 =item AUTHOR
16050
16051 =back
16052
16053 =head2 Pod::LaTeX - Convert Pod data to formatted Latex
16054
16055 =over 4
16056
16057 =item SYNOPSIS
16058
16059 =item DESCRIPTION
16060
16061 =back
16062
16063 =over 4
16064
16065 =item OBJECT METHODS
16066
16067 C<initialize>
16068
16069 =back
16070
16071 =over 4
16072
16073 =item Data Accessors
16074
16075 B<AddPreamble>
16076
16077 =back
16078
16079 B<AddPostamble>
16080
16081 B<Head1Level>
16082
16083 B<Label>
16084
16085 B<LevelNoNum>
16086
16087 B<MakeIndex>
16088
16089 B<ReplaceNAMEwithSection>
16090
16091 B<StartWithNewPage>
16092
16093 B<TableOfContents>
16094
16095 B<UniqueLabels>
16096
16097 B<UserPreamble>
16098
16099 B<UserPostamble>
16100
16101 B<Lists>
16102
16103 =over 4
16104
16105 =item Subclassed methods
16106
16107 =back
16108
16109 B<begin_pod>
16110
16111 B<end_pod>
16112
16113 B<command>
16114
16115 B<verbatim>
16116
16117 B<textblock>
16118
16119 B<interior_sequence>
16120
16121 =over 4
16122
16123 =item List Methods
16124
16125 B<begin_list>
16126
16127 =back
16128
16129 B<end_list>
16130
16131 B<add_item>
16132
16133 =over 4
16134
16135 =item Methods for headings
16136
16137 B<head>
16138
16139 =back
16140
16141 =over 4
16142
16143 =item Internal methods
16144
16145 B<_output>
16146
16147 =back
16148
16149 B<_replace_special_chars>
16150
16151 B<_replace_special_chars_late>
16152
16153 B<_create_label>
16154
16155 B<_create_index>
16156
16157 B<_clean_latex_commands>
16158
16159 B<_split_delimited>
16160
16161 =over 4
16162
16163 =item NOTES
16164
16165 =item SEE ALSO
16166
16167 =item AUTHORS
16168
16169 =item COPYRIGHT
16170
16171 =item REVISION
16172
16173 =back
16174
16175 =head2 Pod::Man - Convert POD data to formatted *roff input
16176
16177 =over 4
16178
16179 =item SYNOPSIS
16180
16181 =item DESCRIPTION
16182
16183 center, date, fixed, fixedbold, fixeditalic, fixedbolditalic, name, quotes,
16184 release, section
16185
16186 =item DIAGNOSTICS
16187
16188 roff font should be 1 or 2 chars, not "%s", Invalid link %s, Invalid quote
16189 specification "%s", %s:%d: Unknown command paragraph "%s", %s:%d: Unknown
16190 escape EE<lt>%sE<gt>, %s:%d: Unknown formatting code %s, %s:%d: Unmatched
16191 =back
16192
16193 =item BUGS
16194
16195 =item CAVEATS
16196
16197 =item SEE ALSO
16198
16199 =item AUTHOR
16200
16201 =item COPYRIGHT AND LICENSE
16202
16203 =back
16204
16205 =head2 Pod::ParseLink -- Parse an LE<lt>E<gt> formatting code in POD text
16206
16207 =over 4
16208
16209 =item SYNOPSIS
16210
16211 =item DESCRIPTION
16212
16213 =item AUTHOR
16214
16215 =item COPYRIGHT AND LICENSE
16216
16217 =back
16218
16219 =head2 Pod::ParseUtils - helpers for POD parsing and conversion
16220
16221 =over 4
16222
16223 =item SYNOPSIS
16224
16225 =item DESCRIPTION
16226
16227 =back
16228
16229 =over 4
16230
16231 =item Pod::List
16232
16233 Pod::List-E<gt>new()
16234
16235 =back
16236
16237 $list-E<gt>file()
16238
16239 $list-E<gt>start()
16240
16241 $list-E<gt>indent()
16242
16243 $list-E<gt>type()
16244
16245 $list-E<gt>rx()
16246
16247 $list-E<gt>item()
16248
16249 $list-E<gt>parent()
16250
16251 $list-E<gt>tag()
16252
16253 =over 4
16254
16255 =item Pod::Hyperlink
16256
16257 Pod::Hyperlink-E<gt>new()
16258
16259 =back
16260
16261 $link-E<gt>parse($string)
16262
16263 $link-E<gt>markup($string)
16264
16265 $link-E<gt>text()
16266
16267 $link-E<gt>warning()
16268
16269 $link-E<gt>file(), $link-E<gt>line()
16270
16271 $link-E<gt>page()
16272
16273 $link-E<gt>node()
16274
16275 $link-E<gt>alttext()
16276
16277 $link-E<gt>type()
16278
16279 $link-E<gt>link()
16280
16281 =over 4
16282
16283 =item Pod::Cache
16284
16285 Pod::Cache-E<gt>new()
16286
16287 =back
16288
16289 $cache-E<gt>item()
16290
16291 $cache-E<gt>find_page($name)
16292
16293 =over 4
16294
16295 =item Pod::Cache::Item
16296
16297 Pod::Cache::Item-E<gt>new()
16298
16299 =back
16300
16301 $cacheitem-E<gt>page()
16302
16303 $cacheitem-E<gt>description()
16304
16305 $cacheitem-E<gt>path()
16306
16307 $cacheitem-E<gt>file()
16308
16309 $cacheitem-E<gt>nodes()
16310
16311 $cacheitem-E<gt>find_node($name)
16312
16313 $cacheitem-E<gt>idx()
16314
16315 =over 4
16316
16317 =item AUTHOR
16318
16319 =item SEE ALSO
16320
16321 =back
16322
16323 =head2 Pod::Parser - base class for creating POD filters and translators
16324
16325 =over 4
16326
16327 =item SYNOPSIS
16328
16329 =item REQUIRES
16330
16331 =item EXPORTS
16332
16333 =item DESCRIPTION
16334
16335 =item QUICK OVERVIEW
16336
16337 =item PARSING OPTIONS
16338
16339 B<-want_nonPODs> (default: unset), B<-process_cut_cmd> (default: unset),
16340 B<-warnings> (default: unset)
16341
16342 =back
16343
16344 =over 4
16345
16346 =item RECOMMENDED SUBROUTINE/METHOD OVERRIDES
16347
16348 =back
16349
16350 =over 4
16351
16352 =item B<command()>
16353
16354 C<$cmd>, C<$text>, C<$line_num>, C<$pod_para>
16355
16356 =back
16357
16358 =over 4
16359
16360 =item B<verbatim()>
16361
16362 C<$text>, C<$line_num>, C<$pod_para>
16363
16364 =back
16365
16366 =over 4
16367
16368 =item B<textblock()>
16369
16370 C<$text>, C<$line_num>, C<$pod_para>
16371
16372 =back
16373
16374 =over 4
16375
16376 =item B<interior_sequence()>
16377
16378 =back
16379
16380 =over 4
16381
16382 =item OPTIONAL SUBROUTINE/METHOD OVERRIDES
16383
16384 =back
16385
16386 =over 4
16387
16388 =item B<new()>
16389
16390 =back
16391
16392 =over 4
16393
16394 =item B<initialize()>
16395
16396 =back
16397
16398 =over 4
16399
16400 =item B<begin_pod()>
16401
16402 =back
16403
16404 =over 4
16405
16406 =item B<begin_input()>
16407
16408 =back
16409
16410 =over 4
16411
16412 =item B<end_input()>
16413
16414 =back
16415
16416 =over 4
16417
16418 =item B<end_pod()>
16419
16420 =back
16421
16422 =over 4
16423
16424 =item B<preprocess_line()>
16425
16426 =back
16427
16428 =over 4
16429
16430 =item B<preprocess_paragraph()>
16431
16432 =back
16433
16434 =over 4
16435
16436 =item METHODS FOR PARSING AND PROCESSING
16437
16438 =back
16439
16440 =over 4
16441
16442 =item B<parse_text()>
16443
16444 B<-expand_seq> =E<gt> I<code-ref>|I<method-name>, B<-expand_text> =E<gt>
16445 I<code-ref>|I<method-name>, B<-expand_ptree> =E<gt>
16446 I<code-ref>|I<method-name>
16447
16448 =back
16449
16450 =over 4
16451
16452 =item B<interpolate()>
16453
16454 =back
16455
16456 =over 4
16457
16458 =item B<parse_paragraph()>
16459
16460 =back
16461
16462 =over 4
16463
16464 =item B<parse_from_filehandle()>
16465
16466 =back
16467
16468 =over 4
16469
16470 =item B<parse_from_file()>
16471
16472 =back
16473
16474 =over 4
16475
16476 =item ACCESSOR METHODS
16477
16478 =back
16479
16480 =over 4
16481
16482 =item B<errorsub()>
16483
16484 =back
16485
16486 =over 4
16487
16488 =item B<cutting()>
16489
16490 =back
16491
16492 =over 4
16493
16494 =item B<parseopts()>
16495
16496 =back
16497
16498 =over 4
16499
16500 =item B<output_file()>
16501
16502 =back
16503
16504 =over 4
16505
16506 =item B<output_handle()>
16507
16508 =back
16509
16510 =over 4
16511
16512 =item B<input_file()>
16513
16514 =back
16515
16516 =over 4
16517
16518 =item B<input_handle()>
16519
16520 =back
16521
16522 =over 4
16523
16524 =item B<input_streams()>
16525
16526 =back
16527
16528 =over 4
16529
16530 =item B<top_stream()>
16531
16532 =back
16533
16534 =over 4
16535
16536 =item PRIVATE METHODS AND DATA
16537
16538 =back
16539
16540 =over 4
16541
16542 =item B<_push_input_stream()>
16543
16544 =back
16545
16546 =over 4
16547
16548 =item B<_pop_input_stream()>
16549
16550 =back
16551
16552 =over 4
16553
16554 =item TREE-BASED PARSING
16555
16556 =item SEE ALSO
16557
16558 =item AUTHOR
16559
16560 =back
16561
16562 =head2 Pod::Plainer - Perl extension for converting Pod to old style Pod.
16563
16564 =over 4
16565
16566 =item SYNOPSIS
16567
16568 =item DESCRIPTION
16569
16570 =over 4
16571
16572 =item EXPORT
16573
16574 =back
16575
16576 =item AUTHOR
16577
16578 =item SEE ALSO
16579
16580 =back
16581
16582 =head2 Pod::Select, podselect() - extract selected sections of POD from
16583 input
16584
16585 =over 4
16586
16587 =item SYNOPSIS
16588
16589 =item REQUIRES
16590
16591 =item EXPORTS
16592
16593 =item DESCRIPTION
16594
16595 =item SECTION SPECIFICATIONS
16596
16597 =item RANGE SPECIFICATIONS
16598
16599 =back
16600
16601 =over 4
16602
16603 =item OBJECT METHODS
16604
16605 =back
16606
16607 =over 4
16608
16609 =item B<curr_headings()>
16610
16611 =back
16612
16613 =over 4
16614
16615 =item B<select()>
16616
16617 =back
16618
16619 =over 4
16620
16621 =item B<add_selection()>
16622
16623 =back
16624
16625 =over 4
16626
16627 =item B<clear_selections()>
16628
16629 =back
16630
16631 =over 4
16632
16633 =item B<match_section()>
16634
16635 =back
16636
16637 =over 4
16638
16639 =item B<is_selected()>
16640
16641 =back
16642
16643 =over 4
16644
16645 =item EXPORTED FUNCTIONS
16646
16647 =back
16648
16649 =over 4
16650
16651 =item B<podselect()>
16652
16653 B<-output>, B<-sections>, B<-ranges>
16654
16655 =back
16656
16657 =over 4
16658
16659 =item PRIVATE METHODS AND DATA
16660
16661 =back
16662
16663 =over 4
16664
16665 =item B<_compile_section_spec()>
16666
16667 =back
16668
16669 =over 4
16670
16671 =item $self->{_SECTION_HEADINGS}
16672
16673 =back
16674
16675 =over 4
16676
16677 =item $self->{_SELECTED_SECTIONS}
16678
16679 =back
16680
16681 =over 4
16682
16683 =item SEE ALSO
16684
16685 =item AUTHOR
16686
16687 =back
16688
16689 =head2 Pod::Text - Convert POD data to formatted ASCII text
16690
16691 =over 4
16692
16693 =item SYNOPSIS
16694
16695 =item DESCRIPTION
16696
16697 alt, code, indent, loose, quotes, sentence, width
16698
16699 =item DIAGNOSTICS
16700
16701 Bizarre space in item, Item called without tag, Can't open %s for reading:
16702 %s, Invalid quote specification "%s", %s:%d: Unknown command paragraph: %s,
16703 %s:%d: Unknown escape: %s, %s:%d: Unknown formatting code: %s, %s:%d:
16704 Unmatched =back
16705
16706 =item RESTRICTIONS
16707
16708 =item NOTES
16709
16710 =item SEE ALSO
16711
16712 =item AUTHOR
16713
16714 =item COPYRIGHT AND LICENSE
16715
16716 =back
16717
16718 =head2 Pod::Text::Color - Convert POD data to formatted color ASCII text
16719
16720 =over 4
16721
16722 =item SYNOPSIS
16723
16724 =item DESCRIPTION
16725
16726 =item BUGS
16727
16728 =item SEE ALSO
16729
16730 =item AUTHOR
16731
16732 =item COPYRIGHT AND LICENSE
16733
16734 =back
16735
16736 =head2 Pod::Text::Overstrike - Convert POD data to formatted overstrike
16737 text
16738
16739 =over 4
16740
16741 =item SYNOPSIS
16742
16743 =item DESCRIPTION
16744
16745 =item BUGS
16746
16747 =item SEE ALSO
16748
16749 =item AUTHOR
16750
16751 =item COPYRIGHT AND LICENSE
16752
16753 =back
16754
16755 =head2 Pod::Text::Termcap, Pod::Text::Color - Convert POD data to ASCII
16756 text with format escapes
16757
16758 =over 4
16759
16760 =item SYNOPSIS
16761
16762 =item DESCRIPTION
16763
16764 =item NOTES
16765
16766 =item SEE ALSO
16767
16768 =item AUTHOR
16769
16770 =item COPYRIGHT AND LICENSE
16771
16772 =back
16773
16774 =head2 Pod::Usage, pod2usage() - print a usage message from embedded pod
16775 documentation
16776
16777 =over 4
16778
16779 =item SYNOPSIS
16780
16781 =item ARGUMENTS
16782
16783 C<-message>, C<-msg>, C<-exitval>, C<-verbose>, C<-output>, C<-input>,
16784 C<-pathlist>
16785
16786 =item DESCRIPTION
16787
16788 =item EXAMPLES
16789
16790 =over 4
16791
16792 =item Recommended Use
16793
16794 =back
16795
16796 =item CAVEATS
16797
16798 =item AUTHOR
16799
16800 =item ACKNOWLEDGEMENTS
16801
16802 =back
16803
16804 =head2 Pod::t::basic, basic.pod - Test of various basic POD features in
16805 translators.
16806
16807 =over 4
16808
16809 =item HEADINGS
16810
16811 =item This C<is> a "level 1" heading
16812
16813 =over 4
16814
16815 =item ``Level'' "2 I<heading>
16816
16817 =back
16818
16819 =item This C<is> a "level 1" heading
16820
16821 =over 4
16822
16823 =item ``Level'' 2 I<heading>
16824
16825 =back
16826
16827 =item LINKS
16828
16829 =item OVER AND ITEMS
16830
16831 This  is a test, a, b, a, b, c, d, "foo", B<bar>, C<baz>, Some longer item
16832 text
16833
16834 =item FORMATTING CODES
16835
16836 E<amp>, E<apos>, E<lt>, E<gt>, E<quot>, E<sol>
16837
16838 =item VERBATIM
16839
16840 =item CONCLUSION
16841
16842 =back
16843
16844 =head2 SDBM_File - Tied access to sdbm files
16845
16846 =over 4
16847
16848 =item SYNOPSIS
16849
16850 =item DESCRIPTION
16851
16852 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
16853
16854 =item DIAGNOSTICS
16855
16856 =over 4
16857
16858 =item C<sdbm store returned -1, errno 22, key "..." at ...>
16859
16860 =back
16861
16862 =item BUGS AND WARNINGS
16863
16864 =back
16865
16866 =head2 Safe - Compile and execute code in restricted compartments
16867
16868 =over 4
16869
16870 =item SYNOPSIS
16871
16872 =item DESCRIPTION
16873
16874 a new namespace, an operator mask
16875
16876 =item WARNING
16877
16878 =over 4
16879
16880 =item RECENT CHANGES
16881
16882 =item Methods in class Safe
16883
16884 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
16885 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
16886 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
16887 root (NAMESPACE), mask (MASK)
16888
16889 =item Some Safety Issues
16890
16891 Memory, CPU, Snooping, Signals, State Changes
16892
16893 =item AUTHOR
16894
16895 =back
16896
16897 =back
16898
16899 =head2 Scalar::Util - A selection of general-utility scalar subroutines
16900
16901 =over 4
16902
16903 =item SYNOPSIS
16904
16905 =item DESCRIPTION
16906
16907 blessed EXPR, dualvar NUM, STRING, isweak EXPR, openhandle FH, reftype
16908 EXPR, tainted EXPR, weaken REF
16909
16910 =item KNOWN BUGS
16911
16912 =item COPYRIGHT
16913
16914 =item BLATANT PLUG
16915
16916 =back
16917
16918 =head2 Search::Dict, look - search for key in dictionary file
16919
16920 =over 4
16921
16922 =item SYNOPSIS
16923
16924 =item DESCRIPTION
16925
16926 =back
16927
16928 =head2 SelectSaver - save and restore selected file handle
16929
16930 =over 4
16931
16932 =item SYNOPSIS
16933
16934 =item DESCRIPTION
16935
16936 =back
16937
16938 =head2 SelfLoader - load functions only on demand
16939
16940 =over 4
16941
16942 =item SYNOPSIS
16943
16944 =item DESCRIPTION
16945
16946 =over 4
16947
16948 =item The __DATA__ token
16949
16950 =item SelfLoader autoloading
16951
16952 =item Autoloading and package lexicals
16953
16954 =item SelfLoader and AutoLoader
16955
16956 =item __DATA__, __END__, and the FOOBAR::DATA filehandle.
16957
16958 =item Classes and inherited methods.
16959
16960 =back
16961
16962 =item Multiple packages and fully qualified subroutine names
16963
16964 =back
16965
16966 =head2 Shell - run shell commands transparently within perl
16967
16968 =over 4
16969
16970 =item SYNOPSIS
16971
16972 =item DESCRIPTION
16973
16974 =over 4
16975
16976 =item OBJECT ORIENTED SYNTAX
16977
16978 =back
16979
16980 =item AUTHOR
16981
16982 =back
16983
16984 =head2 Socket, sockaddr_in, sockaddr_un, inet_aton, inet_ntoa - load the C
16985 socket.h defines and structure manipulators 
16986
16987 =over 4
16988
16989 =item SYNOPSIS
16990
16991 =item DESCRIPTION
16992
16993 inet_aton HOSTNAME, inet_ntoa IP_ADDRESS, INADDR_ANY, INADDR_BROADCAST,
16994 INADDR_LOOPBACK, INADDR_NONE, sockaddr_family SOCKADDR, sockaddr_in PORT,
16995 ADDRESS, sockaddr_in SOCKADDR_IN, pack_sockaddr_in PORT, IP_ADDRESS,
16996 unpack_sockaddr_in SOCKADDR_IN, sockaddr_un PATHNAME, sockaddr_un
16997 SOCKADDR_UN, pack_sockaddr_un PATH, unpack_sockaddr_un SOCKADDR_UN
16998
16999 =back
17000
17001 =head2 Storable - persistency for perl data structures
17002
17003 =over 4
17004
17005 =item SYNOPSIS
17006
17007 =item DESCRIPTION
17008
17009 =item MEMORY STORE
17010
17011 =item ADVISORY LOCKING
17012
17013 =item SPEED
17014
17015 =item CANONICAL REPRESENTATION
17016
17017 =item ERROR REPORTING
17018
17019 =item WIZARDS ONLY
17020
17021 =over 4
17022
17023 =item Hooks
17024
17025 C<STORABLE_freeze> I<obj>, I<cloning>, C<STORABLE_thaw> I<obj>, I<cloning>,
17026 I<serialized>, ..
17027
17028 =item Predicates
17029
17030 C<Storable::last_op_in_netorder>, C<Storable::is_storing>,
17031 C<Storable::is_retrieving>
17032
17033 =item Recursion
17034
17035 =item Deep Cloning
17036
17037 =back
17038
17039 =item Storable magic
17040
17041 =item EXAMPLES
17042
17043 =item WARNING
17044
17045 =item BUGS
17046
17047 =item CREDITS
17048
17049 =item TRANSLATIONS
17050
17051 =item AUTHOR
17052
17053 =item SEE ALSO
17054
17055 =back
17056
17057 =head2 Switch - A switch statement for Perl
17058
17059 =over 4
17060
17061 =item VERSION
17062
17063 =item SYNOPSIS
17064
17065 =item BACKGROUND
17066
17067 =item DESCRIPTION
17068
17069 =over 4
17070
17071 =item Allowing fall-through
17072
17073 =item Automating fall-through
17074
17075 =item Alternative syntax
17076
17077 =item Higher-order Operations
17078
17079 =back
17080
17081 =item DEPENDENCIES
17082
17083 =item AUTHOR
17084
17085 =item BUGS
17086
17087 =item LIMITATION
17088
17089 =item COPYRIGHT
17090
17091 =back
17092
17093 =head2 Symbol - manipulate Perl symbols and their names
17094
17095 =over 4
17096
17097 =item SYNOPSIS
17098
17099 =item DESCRIPTION
17100
17101 =back
17102
17103 =head2 Sys::Hostname - Try every conceivable way to get hostname
17104
17105 =over 4
17106
17107 =item SYNOPSIS
17108
17109 =item DESCRIPTION
17110
17111 =item AUTHOR
17112
17113 =back
17114
17115 =head2 Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl
17116 interface to the UNIX syslog(3) calls
17117
17118 =over 4
17119
17120 =item SYNOPSIS
17121
17122 =item DESCRIPTION
17123
17124 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
17125 setlogmask $mask_priority, setlogsock $sock_type (added in 5.004_02),
17126 closelog
17127
17128 =item EXAMPLES
17129
17130 =item SEE ALSO
17131
17132 =item AUTHOR
17133
17134 =back
17135
17136 =head2 Syslog::Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog -
17137 Perl interface to the UNIX syslog(3) calls
17138
17139 =over 4
17140
17141 =item SYNOPSIS
17142
17143 =item DESCRIPTION
17144
17145 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
17146 setlogmask $mask_priority, setlogsock $sock_type (added in 5.004_02),
17147 closelog
17148
17149 =item EXAMPLES
17150
17151 =item SEE ALSO
17152
17153 =item AUTHOR
17154
17155 =back
17156
17157 =head2 Term::ANSIColor - Color screen output using ANSI escape sequences
17158
17159 =over 4
17160
17161 =item SYNOPSIS
17162
17163 =item DESCRIPTION
17164
17165 =item DIAGNOSTICS
17166
17167 Bad escape sequence %s, Bareword "%s" not allowed while "strict subs" in
17168 use, Invalid attribute name %s, Name "%s" used only once: possible typo, No
17169 comma allowed after filehandle, No name for escape sequence %s
17170
17171 =item ENVIRONMENT
17172
17173 ANSI_COLORS_DISABLED
17174
17175 =item RESTRICTIONS
17176
17177 =item NOTES
17178
17179 =item SEE ALSO
17180
17181 =item AUTHORS
17182
17183 =item LICENSE
17184
17185 =back
17186
17187 =head2 Term::Cap - Perl termcap interface
17188
17189 =over 4
17190
17191 =item SYNOPSIS
17192
17193 =item DESCRIPTION
17194
17195 =over 4
17196
17197 =item METHODS
17198
17199 =back
17200
17201 =back
17202
17203 B<Tgetent>, OSPEED, TERM
17204
17205 B<Tpad>, B<$string>, B<$cnt>, B<$FH>
17206
17207 B<Tputs>, B<$cap>, B<$cnt>, B<$FH>
17208
17209 B<Tgoto>, B<$cap>, B<$col>, B<$row>, B<$FH>
17210
17211 B<Trequire>
17212
17213 =over 4
17214
17215 =item EXAMPLES
17216
17217 =item COPYRIGHT AND LICENSE
17218
17219 =item AUTHOR
17220
17221 =item SEE ALSO
17222
17223 =back
17224
17225 =head2 Term::Complete - Perl word completion module
17226
17227 =over 4
17228
17229 =item SYNOPSIS
17230
17231 =item DESCRIPTION
17232
17233 E<lt>tabE<gt>, ^D, ^U, E<lt>delE<gt>, E<lt>bsE<gt>
17234
17235 =item DIAGNOSTICS
17236
17237 =item BUGS
17238
17239 =item AUTHOR
17240
17241 =back
17242
17243 =head2 Term::ReadLine - Perl interface to various C<readline> packages. If
17244 no real package is found, substitutes stubs instead of basic functions.
17245
17246 =over 4
17247
17248 =item SYNOPSIS
17249
17250 =item DESCRIPTION
17251
17252 =item Minimal set of supported functions
17253
17254 C<ReadLine>, C<new>, C<readline>, C<addhistory>, C<IN>, $C<OUT>,
17255 C<MinLine>, C<findConsole>, Attribs, C<Features>
17256
17257 =item Additional supported functions
17258
17259 C<tkRunning>, C<ornaments>, C<newTTY>
17260
17261 =item EXPORTS
17262
17263 =item ENVIRONMENT
17264
17265 =item CAVEATS
17266
17267 =back
17268
17269 =head2 Test - provides a simple framework for writing test scripts
17270
17271 =over 4
17272
17273 =item SYNOPSIS
17274
17275 =item DESCRIPTION
17276
17277 =over 4
17278
17279 =item Functions
17280
17281 B<plan>
17282
17283 =back
17284
17285 =back
17286
17287 B<_to_value>
17288
17289 B<ok>
17290
17291 =over 4
17292
17293 =item TEST TYPES
17294
17295 NORMAL TESTS, SKIPPED TESTS, TODO TESTS
17296
17297 =item ONFAIL
17298
17299 =item BUGS and CAVEATS
17300
17301 =item NOTE
17302
17303 =item SEE ALSO
17304
17305 =item AUTHOR
17306
17307 =back
17308
17309 =head2 Test::Builder - Backend for building test libraries
17310
17311 =over 4
17312
17313 =item SYNOPSIS
17314
17315 =item DESCRIPTION
17316
17317 =over 4
17318
17319 =item Construction
17320
17321 B<new>
17322
17323 =back
17324
17325 =back
17326
17327 =over 4
17328
17329 =item Setting up tests
17330
17331 B<exported_to>
17332
17333 =back
17334
17335 B<plan>
17336
17337 B<expected_tests>
17338
17339 B<no_plan>
17340
17341 B<skip_all>
17342
17343 =over 4
17344
17345 =item Running tests
17346
17347 B<ok>
17348
17349 =back
17350
17351 B<is_eq>, B<is_num>
17352
17353 B<isnt_eq>, B<isnt_num>
17354
17355 B<like>, B<unlike>
17356
17357 B<cmp_ok>
17358
17359 B<BAILOUT>
17360
17361 B<skip>
17362
17363 B<todo_skip>
17364
17365 B<skip_rest>
17366
17367 =over 4
17368
17369 =item Test style
17370
17371 B<level>
17372
17373 =back
17374
17375 B<use_numbers>
17376
17377 B<no_header>, B<no_ending>
17378
17379 =over 4
17380
17381 =item Output
17382
17383 B<diag>
17384
17385 =back
17386
17387 B<_print>
17388
17389 B<output>, B<failure_output>, B<todo_output>
17390
17391 =over 4
17392
17393 =item Test Status and Info
17394
17395 B<current_test>
17396
17397 =back
17398
17399 B<summary>
17400
17401 B<details>  I<UNIMPLEMENTED>, B<todo>
17402
17403 B<caller>
17404
17405 B<_sanity_check>
17406
17407 B<_whoa>
17408
17409 B<_my_exit>
17410
17411 =over 4
17412
17413 =item EXAMPLES
17414
17415 =item SEE ALSO
17416
17417 =item AUTHORS
17418
17419 =item COPYRIGHT
17420
17421 =back
17422
17423 =head2 Test::Harness - run perl standard test scripts with statistics
17424
17425 =over 4
17426
17427 =item SYNOPSIS
17428
17429 =item DESCRIPTION
17430
17431 =over 4
17432
17433 =item The test script output
17434
17435 B<'1..M'>, B<'ok', 'not ok'.  Ok?>, B<test numbers>, B<test names>,
17436 B<Skipping tests>, B<Todo tests>, B<Bail out!>, B<Comments>, B<Anything
17437 else>
17438
17439 =item Taint mode
17440
17441 =item Configuration variables.
17442
17443 B<$Test::Harness::verbose>, B<$Test::Harness::switches>
17444
17445 =item Failure
17446
17447 B<Failed Test>, B<Stat>, B<Wstat>, B<Total>, B<Fail>, B<Failed>, B<List of
17448 Failed>
17449
17450 =item Functions
17451
17452 B<runtests>
17453
17454 =back
17455
17456 =back
17457
17458 B<_all_ok>
17459
17460 B<_globdir>
17461
17462 B<_run_all_tests>
17463
17464 B<_mk_leader>
17465
17466 B<_leader_width>
17467
17468 =over 4
17469
17470 =item EXPORT
17471
17472 =item DIAGNOSTICS
17473
17474 C<All tests successful.\nFiles=%d,  Tests=%d, %s>, C<FAILED tests
17475 %s\n\tFailed %d/%d tests, %.2f%% okay.>, C<Test returned status %d (wstat
17476 %d)>, C<Failed 1 test, %.2f%% okay. %s>, C<Failed %d/%d tests, %.2f%% okay.
17477 %s>, C<FAILED--Further testing stopped%s>
17478
17479 =item ENVIRONMENT
17480
17481 C<HARNESS_IGNORE_EXITCODE>, C<HARNESS_NOTTY>, C<HARNESS_COMPILE_TEST>,
17482 C<HARNESS_FILELEAK_IN_DIR>, C<HARNESS_PERL_SWITCHES>, C<HARNESS_COLUMNS>,
17483 C<HARNESS_ACTIVE>
17484
17485 =item EXAMPLE
17486
17487 =item SEE ALSO
17488
17489 =item AUTHORS
17490
17491 =item TODO
17492
17493 =item BUGS
17494
17495 =back
17496
17497 =head2 Test::Harness::Assert - simple assert
17498
17499 =over 4
17500
17501 =item SYNOPSIS
17502
17503 =item DESCRIPTION
17504
17505 =over 4
17506
17507 =item Functions
17508
17509 B<assert>
17510
17511 =back
17512
17513 =back
17514
17515 =over 4
17516
17517 =item AUTHOR
17518
17519 =item SEE ALSO
17520
17521 =back
17522
17523 =head2 Test::Harness::Iterator - Internal Test::Harness Iterator
17524
17525 =over 4
17526
17527 =item SYNOPSIS
17528
17529 =item DESCRIPTION
17530
17531 =back
17532
17533 =head2 Test::Harness::Straps - detailed analysis of test results
17534
17535 =over 4
17536
17537 =item SYNOPSIS
17538
17539 =item DESCRIPTION
17540
17541 =over 4
17542
17543 =item Construction
17544
17545 B<new>
17546
17547 =back
17548
17549 =back
17550
17551 B<_init>
17552
17553 =over 4
17554
17555 =item Analysis
17556
17557 B<analyze>
17558
17559 =back
17560
17561 B<analyze_fh>
17562
17563 B<analyze_file>
17564
17565 B<_switches>
17566
17567 B<_INC2PERL5LIB>
17568
17569 B<_filtered_INC>
17570
17571 B<_restore_PERL5LIB>
17572
17573 =over 4
17574
17575 =item Parsing
17576
17577 B<_is_comment>
17578
17579 =back
17580
17581 B<_is_header>
17582
17583 B<_is_test>
17584
17585 B<_is_bail_out>
17586
17587 B<_reset_file_state>
17588
17589 =over 4
17590
17591 =item Results
17592
17593 B<_detailize>
17594
17595 =back
17596
17597 =over 4
17598
17599 =item EXAMPLES
17600
17601 =item AUTHOR
17602
17603 =item SEE ALSO
17604
17605 =back
17606
17607 =head2 Test::More - yet another framework for writing test scripts
17608
17609 =over 4
17610
17611 =item SYNOPSIS
17612
17613 =item DESCRIPTION
17614
17615 =over 4
17616
17617 =item I love it when a plan comes together
17618
17619 =back
17620
17621 =back
17622
17623 =over 4
17624
17625 =item Test names
17626
17627 =item I'm ok, you're not ok.
17628
17629 B<ok>
17630
17631 =back
17632
17633 B<is>, B<isnt>
17634
17635 B<like>
17636
17637 B<unlike>
17638
17639 B<cmp_ok>
17640
17641 B<can_ok>
17642
17643 B<isa_ok>
17644
17645 B<pass>, B<fail>
17646
17647 =over 4
17648
17649 =item Diagnostics
17650
17651 B<diag>
17652
17653 =back
17654
17655 =over 4
17656
17657 =item Module tests
17658
17659 B<use_ok>
17660
17661 =back
17662
17663 B<require_ok>
17664
17665 =over 4
17666
17667 =item Conditional tests
17668
17669 B<SKIP: BLOCK>
17670
17671 =back
17672
17673 B<TODO: BLOCK>, B<todo_skip>
17674
17675 =over 4
17676
17677 =item Comparison functions
17678
17679 B<is_deeply>
17680
17681 =back
17682
17683 B<eq_array>
17684
17685 B<eq_hash>
17686
17687 B<eq_set>
17688
17689 =over 4
17690
17691 =item Extending and Embedding Test::More
17692
17693 B<builder>
17694
17695 =back
17696
17697 =over 4
17698
17699 =item NOTES
17700
17701 =item BUGS and CAVEATS
17702
17703 Making your own ok(), The eq_* family has some caveats, Test::Harness
17704 upgrades
17705
17706 =item HISTORY
17707
17708 =item SEE ALSO
17709
17710 =item AUTHORS
17711
17712 =item COPYRIGHT
17713
17714 =back
17715
17716 =head2 Test::Simple - Basic utilities for writing tests.
17717
17718 =over 4
17719
17720 =item SYNOPSIS
17721
17722 =item DESCRIPTION
17723
17724 B<ok>
17725
17726 =back
17727
17728 =over 4
17729
17730 =item EXAMPLE
17731
17732 =item CAVEATS
17733
17734 =item NOTES
17735
17736 =item HISTORY
17737
17738 =item SEE ALSO
17739
17740 L<Test::More>, L<Test>, L<Test::Unit>, L<Test::Inline>, L<SelfTest>,
17741 L<Test::Harness>
17742
17743 =item AUTHORS
17744
17745 =item COPYRIGHT
17746
17747 =back
17748
17749 =head2 Test::Tutorial - A tutorial about writing really basic tests
17750
17751 =over 4
17752
17753 =item DESCRIPTION
17754
17755 =over 4
17756
17757 =item Nuts and bolts of testing.
17758
17759 =item Where to start?
17760
17761 =item Names
17762
17763 =item Test the manual
17764
17765 =item Sometimes the tests are wrong
17766
17767 =item Testing lots of values
17768
17769 =item Informative names
17770
17771 =item Skipping tests
17772
17773 =item Todo tests
17774
17775 =item Testing with taint mode.
17776
17777 =back
17778
17779 =item FOOTNOTES
17780
17781 =item AUTHORS
17782
17783 =item COPYRIGHT
17784
17785 =back
17786
17787 =head2 Text::Abbrev, abbrev - create an abbreviation table from a list
17788
17789 =over 4
17790
17791 =item SYNOPSIS
17792
17793 =item DESCRIPTION
17794
17795 =item EXAMPLE
17796
17797 =back
17798
17799 =head2 Text::Balanced - Extract delimited text sequences from strings.
17800
17801 =over 4
17802
17803 =item SYNOPSIS
17804
17805 =item DESCRIPTION
17806
17807 =over 4
17808
17809 =item General behaviour in list contexts
17810
17811 [0], [1], [2]
17812
17813 =item General behaviour in scalar and void contexts
17814
17815 =item A note about prefixes
17816
17817 =item C<extract_delimited>
17818
17819 =item C<extract_bracketed>
17820
17821 =item C<extract_tagged>
17822
17823 C<reject =E<gt> $listref>, C<ignore =E<gt> $listref>, C<fail =E<gt> $str>,
17824 [0], [1], [2], [3], [4], [5]
17825
17826 =item C<gen_extract_tagged>
17827
17828 =item C<extract_quotelike>
17829
17830 [0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10]
17831
17832 =item C<extract_quotelike> and "here documents"
17833
17834 [0], [1], [2], [3], [4], [5], [6], [7..10]
17835
17836 =item C<extract_codeblock>
17837
17838 =item C<extract_multiple>
17839
17840 =item C<gen_delimited_pat>
17841
17842 =back
17843
17844 =item DIAGNOSTICS
17845
17846  C<Did not find a suitable bracket: "%s">,  C<Did not find prefix: /%s/>, 
17847 C<Did not find opening bracket after prefix: "%s">,  C<No quotelike
17848 operator found after prefix: "%s">,  C<Unmatched closing bracket: "%c">, 
17849 C<Unmatched opening bracket(s): "%s">, C<Unmatched embedded quote (%s)>,
17850 C<Did not find closing delimiter to match '%s'>,  C<Mismatched closing
17851 bracket: expected "%c" but found "%s">,  C<No block delimiter found after
17852 quotelike "%s">, C<Did not find leading dereferencer>, C<Bad identifier
17853 after dereferencer>, C<Did not find expected opening bracket at %s>,
17854 C<Improperly nested codeblock at %s>,  C<Missing second block for quotelike
17855 "%s">, C<No match found for opening bracket>, C<Did not find opening tag:
17856 /%s/>, C<Unable to construct closing tag to match: /%s/>, C<Found invalid
17857 nested tag: %s>, C<Found unbalanced nested tag: %s>, C<Did not find closing
17858 tag>
17859
17860 =item AUTHOR
17861
17862 =item BUGS AND IRRITATIONS
17863
17864 =item COPYRIGHT
17865
17866 =back
17867
17868 =head2 Text::ParseWords - parse text into an array of tokens or array of
17869 arrays
17870
17871 =over 4
17872
17873 =item SYNOPSIS
17874
17875 =item DESCRIPTION
17876
17877 =item EXAMPLES
17878
17879 =item AUTHORS
17880
17881 =back
17882
17883 =head2 Text::Soundex - Implementation of the Soundex Algorithm as Described
17884 by Knuth
17885
17886 =over 4
17887
17888 =item SYNOPSIS
17889
17890 =item DESCRIPTION
17891
17892 =item EXAMPLES
17893
17894 =item LIMITATIONS
17895
17896 =item AUTHOR
17897
17898 =back
17899
17900 =head2 Text::Tabs -- expand and unexpand tabs per the unix expand(1) and
17901 unexpand(1)
17902
17903 =over 4
17904
17905 =item SYNOPSIS
17906
17907 =item DESCRIPTION
17908
17909 =item BUGS
17910
17911 =item AUTHOR
17912
17913 =back
17914
17915 =head2 Text::Wrap - line wrapping to form simple paragraphs
17916
17917 =over 4
17918
17919 =item SYNOPSIS 
17920
17921 =item DESCRIPTION
17922
17923 =item OVERRIDES
17924
17925 =item EXAMPLE
17926
17927 =item AUTHOR
17928
17929 =back
17930
17931 =head2 Thread - manipulate threads in Perl
17932
17933 =over 4
17934
17935 =item CAVEAT
17936
17937 =item SYNOPSIS
17938
17939 =item DESCRIPTION
17940
17941 =item FUNCTIONS
17942
17943 $thread = Thread->new(\&start_sub), $thread = Thread->new(\&start_sub,
17944 LIST), lock VARIABLE, async BLOCK;, Thread->self, cond_wait VARIABLE,
17945 cond_signal VARIABLE, cond_broadcast VARIABLE, yield
17946
17947 =item METHODS
17948
17949 join, eval, detach, equal, tid, flags, done
17950
17951 =item LIMITATIONS
17952
17953 =item SEE ALSO
17954
17955 =back
17956
17957 =head2 Thread::Queue - thread-safe queues
17958
17959 =over 4
17960
17961 =item SYNOPSIS
17962
17963 =item DESCRIPTION
17964
17965 =item FUNCTIONS AND METHODS
17966
17967 new, enqueue LIST, dequeue, dequeue_nb, pending
17968
17969 =item SEE ALSO
17970
17971 =back
17972
17973 =head2 Thread::Semaphore - thread-safe semaphores
17974
17975 =over 4
17976
17977 =item SYNOPSIS
17978
17979 =item DESCRIPTION
17980
17981 =item FUNCTIONS AND METHODS
17982
17983 new, new NUMBER, down, down NUMBER, up, up NUMBER
17984
17985 =back
17986
17987 =head2 Thread::Signal - Start a thread which runs signal handlers reliably
17988
17989 =over 4
17990
17991 =item SYNOPSIS
17992
17993 =item DESCRIPTION
17994
17995 =item BUGS
17996
17997 =back
17998
17999 =head2 Thread::Specific - thread-specific keys
18000
18001 =over 4
18002
18003 =item SYNOPSIS
18004
18005 =item DESCRIPTION
18006
18007 =back
18008
18009 =head2 Tie::Array - base class for tied arrays
18010
18011 =over 4
18012
18013 =item SYNOPSIS
18014
18015 =item DESCRIPTION
18016
18017 TIEARRAY classname, LIST, STORE this, index, value, FETCH this, index,
18018 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
18019 key, DELETE this, key, CLEAR this, DESTROY this, PUSH this, LIST, POP this,
18020 SHIFT this, UNSHIFT this, LIST, SPLICE this, offset, length, LIST
18021
18022 =item CAVEATS
18023
18024 =item AUTHOR
18025
18026 =back
18027
18028 =head2 Tie::File - Access the lines of a disk file via a Perl array
18029
18030 =over 4
18031
18032 =item SYNOPSIS
18033
18034 =item DESCRIPTION
18035
18036 =over 4
18037
18038 =item C<recsep>
18039
18040 =item C<autochomp>
18041
18042 =item C<mode>
18043
18044 =item C<memory>
18045
18046 =item C<dw_size>
18047
18048 =item Option Format
18049
18050 =back
18051
18052 =item Public Methods
18053
18054 =over 4
18055
18056 =item C<flock>
18057
18058 =item C<autochomp>
18059
18060 =item C<defer>, C<flush>, and C<discard>
18061
18062 =back
18063
18064 =item Tying to an already-opened filehandle
18065
18066 =item Deferred Writing
18067
18068 =item CAVEATS
18069
18070 You might be tempted to think that deferred writing is like transactions,
18071 with C<flush> as C<commit> and C<discard> as C<rollback>, but it isn't, so
18072 don't
18073
18074 =item SUBCLASSING
18075
18076 =item WHAT ABOUT C<DB_File>?
18077
18078 =item AUTHOR
18079
18080 =item LICENSE
18081
18082 =item WARRANTY
18083
18084 =item THANKS
18085
18086 =item TODO
18087
18088 =back
18089
18090 =head2 Tie::Handle, Tie::StdHandle  - base class definitions for tied
18091 handles
18092
18093 =over 4
18094
18095 =item SYNOPSIS
18096
18097 =item DESCRIPTION
18098
18099 TIEHANDLE classname, LIST, WRITE this, scalar, length, offset, PRINT this,
18100 LIST, PRINTF this, format, LIST, READ this, scalar, length, offset,
18101 READLINE this, GETC this, CLOSE this, OPEN this, filename, BINMODE this,
18102 EOF this, TELL this, SEEK this, offset, whence, DESTROY this
18103
18104 =item MORE INFORMATION
18105
18106 =item COMPATIBILITY
18107
18108 =back
18109
18110 =head2 Tie::Hash, Tie::StdHash, Tie::ExtraHash - base class definitions for
18111 tied hashes
18112
18113 =over 4
18114
18115 =item SYNOPSIS
18116
18117 =item DESCRIPTION
18118
18119 TIEHASH classname, LIST, STORE this, key, value, FETCH this, key, FIRSTKEY
18120 this, NEXTKEY this, lastkey, EXISTS this, key, DELETE this, key, CLEAR this
18121
18122 =item Inheriting from B<Tie::StdHash>
18123
18124 =item Inheriting from B<Tie::ExtraHash>
18125
18126 =item C<UNTIE> and C<DESTROY>
18127
18128 =item MORE INFORMATION
18129
18130 =back
18131
18132 =head2 Tie::Memoize - add data to hash when needed
18133
18134 =over 4
18135
18136 =item SYNOPSIS
18137
18138 =item DESCRIPTION
18139
18140 =item Inheriting from B<Tie::Memoize>
18141
18142 =item EXAMPLE
18143
18144 =item BUGS
18145
18146 =item AUTHOR
18147
18148 =back
18149
18150 =head2 Tie::RefHash - use references as hash keys
18151
18152 =over 4
18153
18154 =item SYNOPSIS
18155
18156 =item DESCRIPTION
18157
18158 =item EXAMPLE
18159
18160 =item AUTHOR
18161
18162 =item VERSION
18163
18164 =item SEE ALSO
18165
18166 =back
18167
18168 =head2 Tie::Scalar, Tie::StdScalar - base class definitions for tied
18169 scalars
18170
18171 =over 4
18172
18173 =item SYNOPSIS
18174
18175 =item DESCRIPTION
18176
18177 TIESCALAR classname, LIST, FETCH this, STORE this, value, DESTROY this
18178
18179 =item MORE INFORMATION
18180
18181 =back
18182
18183 =head2 Tie::SubstrHash - Fixed-table-size, fixed-key-length hashing
18184
18185 =over 4
18186
18187 =item SYNOPSIS
18188
18189 =item DESCRIPTION
18190
18191 =item CAVEATS
18192
18193 =back
18194
18195 =head2 Time::HiRes - High resolution alarm, sleep, gettimeofday, interval
18196 timers
18197
18198 =over 4
18199
18200 =item SYNOPSIS
18201
18202 =item DESCRIPTION
18203
18204 gettimeofday (), usleep ( $useconds ), ualarm ( $useconds [,
18205 $interval_useconds ] ), tv_interval, time (), sleep ( $floating_seconds ),
18206 alarm ( $floating_seconds [, $interval_floating_seconds ] ), setitimer,
18207 getitimer ( $which )
18208
18209 =item EXAMPLES
18210
18211 =item C API
18212
18213 =item CAVEATS
18214
18215 =item AUTHORS
18216
18217 =item REVISION
18218
18219 =item COPYRIGHT
18220
18221 =back
18222
18223 =head2 Time::Local - efficiently compute time from local and GMT time
18224
18225 =over 4
18226
18227 =item SYNOPSIS
18228
18229 =item DESCRIPTION
18230
18231 =item IMPLEMENTATION
18232
18233 =item BUGS
18234
18235 =back
18236
18237 =head2 Time::gmtime - by-name interface to Perl's built-in gmtime()
18238 function
18239
18240 =over 4
18241
18242 =item SYNOPSIS
18243
18244 =item DESCRIPTION
18245
18246 =item NOTE
18247
18248 =item AUTHOR
18249
18250 =back
18251
18252 =head2 Time::localtime - by-name interface to Perl's built-in localtime()
18253 function
18254
18255 =over 4
18256
18257 =item SYNOPSIS
18258
18259 =item DESCRIPTION
18260
18261 =item NOTE
18262
18263 =item AUTHOR
18264
18265 =back
18266
18267 =head2 Time::tm - internal object used by Time::gmtime and Time::localtime
18268
18269 =over 4
18270
18271 =item SYNOPSIS
18272
18273 =item DESCRIPTION
18274
18275 =item AUTHOR
18276
18277 =back
18278
18279 =head2 UNIVERSAL - base class for ALL classes (blessed references)
18280
18281 =over 4
18282
18283 =item SYNOPSIS
18284
18285 =item DESCRIPTION
18286
18287 $obj->isa( TYPE ), CLASS->isa( TYPE ), isa( VAL, TYPE ), $obj->can( METHOD
18288 ), CLASS->can( METHOD ), can( VAL, METHOD ), VERSION ( [ REQUIRE ] )
18289
18290 =back
18291
18292 =head2 Unicode::Collate - use UCA (Unicode Collation Algorithm)
18293
18294 =over 4
18295
18296 =item SYNOPSIS
18297
18298 =item DESCRIPTION
18299
18300 =over 4
18301
18302 =item Constructor and Tailoring
18303
18304 alternate, backwards, entry, ignoreName, ignoreChar, level, normalization,
18305 overrideCJK, overrideHangul, preprocess, rearrange, table, undefName,
18306 undefChar, katakana_before_hiragana, upper_before_lower
18307
18308 =item Other methods
18309
18310 C<@sorted = $Collator-E<gt>sort(@not_sorted)>, C<$result =
18311 $Collator-E<gt>cmp($a, $b)>, C<$result = $Collator-E<gt>eq($a, $b)>,
18312 C<$result = $Collator-E<gt>ne($a, $b)>, C<$result = $Collator-E<gt>lt($a,
18313 $b)>, C<$result = $Collator-E<gt>le($a, $b)>, C<$result =
18314 $Collator-E<gt>gt($a, $b)>, C<$result = $Collator-E<gt>ge($a, $b)>,
18315 C<$sortKey = $Collator-E<gt>getSortKey($string)>, C<$position =
18316 $Collator-E<gt>index($string, $substring)>, C<($position, $length) =
18317 $Collator-E<gt>index($string, $substring)>
18318
18319 =item EXPORT
18320
18321 =item TODO
18322
18323 =item CAVEAT
18324
18325 =back
18326
18327 =item AUTHOR
18328
18329 =item SEE ALSO
18330
18331 Unicode Collation Algorithm - Unicode TR #10, L<Unicode::Normalize>
18332
18333 =back
18334
18335 =head2 Unicode::Normalize - normalized forms of Unicode text
18336
18337 =over 4
18338
18339 =item SYNOPSIS
18340
18341 =item DESCRIPTION
18342
18343 =over 4
18344
18345 =item Normalization Forms
18346
18347 C<$NFD_string = NFD($string)>, C<$NFC_string = NFC($string)>,
18348 C<$NFKD_string = NFKD($string)>, C<$NFKC_string = NFKC($string)>,
18349 C<$normalized_string = normalize($form_name, $string)>
18350
18351 =item Decomposition and Composition
18352
18353 C<$decomposed_string = decompose($string)>, C<$decomposed_string =
18354 decompose($string, $useCompatMapping)>, C<$reordered_string  =
18355 reorder($string)>, C<$composed_string   = compose($string)>
18356
18357 =item Quick Check
18358
18359 C<$result = checkNFD($string)>, C<$result = checkNFC($string)>, C<$result =
18360 checkNFKD($string)>, C<$result = checkNFKC($string)>, C<$result =
18361 check($form_name, $string)>
18362
18363 =item Character Data
18364
18365 C<$canonical_decomposed = getCanon($codepoint)>,
18366 C<$compatibility_decomposed = getCompat($codepoint)>,
18367 C<$codepoint_composite = getComposite($codepoint_here, $codepoint_next)>,
18368 C<$combining_class = getCombinClass($codepoint)>, C<$is_exclusion =
18369 isExclusion($codepoint)>, C<$is_singleton = isSingleton($codepoint)>,
18370 C<$is_non_startar_decomposition = isNonStDecomp($codepoint)>,
18371 C<$may_be_composed_with_prev_char = isComp2nd($codepoint)>
18372
18373 =item EXPORT
18374
18375 =back
18376
18377 =item AUTHOR
18378
18379 =item SEE ALSO
18380
18381 http://www.unicode.org/unicode/reports/tr15/,
18382 http://www.unicode.org/Public/UNIDATA/DerivedNormalizationProperties.txt
18383
18384 =back
18385
18386 =head2 Unicode::UCD - Unicode character database
18387
18388 =over 4
18389
18390 =item SYNOPSIS
18391
18392 =item DESCRIPTION
18393
18394 =back
18395
18396 =over 4
18397
18398 =item charinfo
18399
18400 =back
18401
18402 =over 4
18403
18404 =item charblock
18405
18406 =back
18407
18408 =over 4
18409
18410 =item charscript
18411
18412 =back
18413
18414 =over 4
18415
18416 =item charblocks
18417
18418 =back
18419
18420 =over 4
18421
18422 =item charscripts
18423
18424 =back
18425
18426 =over 4
18427
18428 =item Blocks versus Scripts
18429
18430 =item Matching Scripts and Blocks
18431
18432 =item Code Point Arguments
18433
18434 =item charinrange
18435
18436 =back
18437
18438 =over 4
18439
18440 =item compexcl
18441
18442 =back
18443
18444 =over 4
18445
18446 =item casefold
18447
18448 =back
18449
18450 =over 4
18451
18452 =item casespec
18453
18454 =back
18455
18456 =over 4
18457
18458 =item Unicode::UCD::UnicodeVersion
18459
18460 =back
18461
18462 =over 4
18463
18464 =item Implementation Note
18465
18466 =back
18467
18468 =over 4
18469
18470 =item BUGS
18471
18472 =item AUTHOR
18473
18474 =back
18475
18476 =head2 User::grent - by-name interface to Perl's built-in getgr*()
18477 functions
18478
18479 =over 4
18480
18481 =item SYNOPSIS
18482
18483 =item DESCRIPTION
18484
18485 =item NOTE
18486
18487 =item AUTHOR
18488
18489 =back
18490
18491 =head2 User::pwent - by-name interface to Perl's built-in getpw*()
18492 functions
18493
18494 =over 4
18495
18496 =item SYNOPSIS
18497
18498 =item DESCRIPTION
18499
18500 =over 4
18501
18502 =item System Specifics
18503
18504 =back
18505
18506 =item NOTE
18507
18508 =item AUTHOR
18509
18510 =item HISTORY
18511
18512 March 18th, 2000
18513
18514 =back
18515
18516 =head2 Win32 - Interfaces to some Win32 API Functions
18517
18518 =over 4
18519
18520 =item DESCRIPTION
18521
18522 =over 4
18523
18524 =item Alphabetical Listing of Win32 Functions
18525
18526 Win32::AbortSystemShutdown(MACHINE), Win32::BuildNumber(),
18527 Win32::CopyFile(FROM, TO, OVERWRITE), Win32::DomainName(),
18528 Win32::ExpandEnvironmentStrings(STRING), Win32::FormatMessage(ERRORCODE),
18529 Win32::FsType(), Win32::FreeLibrary(HANDLE), Win32::GetArchName(),
18530 Win32::GetChipName(), Win32::GetCwd(), Win32::GetFullPathName(FILENAME),
18531 Win32::GetLastError(), Win32::GetLongPathName(PATHNAME),
18532 Win32::GetNextAvailDrive(), Win32::GetOSVersion(),
18533 Win32::GetShortPathName(PATHNAME), Win32::GetProcAddress(INSTANCE,
18534 PROCNAME), Win32::GetTickCount(), Win32::InitiateSystemShutdown,
18535 Win32::IsWinNT(), Win32::IsWin95(), Win32::LoadLibrary(LIBNAME),
18536 Win32::LoginName(), Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID,
18537 SIDTYPE), Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE),
18538 Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]]), Win32::NodeName(),
18539 Win32::RegisterServer(LIBRARYNAME), Win32::SetChildShowWindow(SHOWWINDOW),
18540 Win32::SetCwd(NEWDIRECTORY), Win32::SetLastError(ERROR),
18541 Win32::Sleep(TIME), Win32::Spawn(COMMAND, ARGS, PID),
18542 Win32::UnregisterServer(LIBRARYNAME)
18543
18544 =back
18545
18546 =back
18547
18548 =head2 XS::Typemap - module to test the XS typemaps distributed with perl
18549
18550 =over 4
18551
18552 =item SYNOPSIS
18553
18554 =item DESCRIPTION
18555
18556 =back
18557
18558 =over 4
18559
18560 =item NOTES
18561
18562 =item AUTHOR
18563
18564 =back
18565
18566 =head2 XSLoader - Dynamically load C libraries into Perl code
18567
18568 =over 4
18569
18570 =item SYNOPSIS
18571
18572 =item DESCRIPTION
18573
18574 =item AUTHOR
18575
18576 =back
18577
18578 =head1 AUXILIARY DOCUMENTATION
18579
18580 Here should be listed all the extra programs' documentation, but they
18581 don't all have manual pages yet:
18582
18583 =over 4
18584
18585 =item a2p
18586
18587 =item s2p
18588
18589 =item find2perl
18590
18591 =item h2ph
18592
18593 =item c2ph
18594
18595 =item h2xs
18596
18597 =item xsubpp
18598
18599 =item pod2man
18600
18601 =item wrapsuid
18602
18603 =back
18604
18605 =head1 AUTHOR
18606
18607 Larry Wall <F<larry@wall.org>>, with the help of oodles
18608 of other folks.
18609