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