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