d_nv_preserves_uv_bits
[p5sagit/p5-mst-13.2.git] / pod / perltoc.pod
1
2 =head1 NAME
3
4 perltoc - perl documentation table of contents
5
6 =head1 DESCRIPTION
7
8 This page provides a brief table of contents for the rest of the Perl
9 documentation set.  It is meant to be scanned quickly or grepped
10 through to locate the proper section you're looking for.
11
12 =head1 BASIC DOCUMENTATION
13
14 =head2 perl - Practical Extraction and Report Language
15
16 =over 4
17
18 =item SYNOPSIS
19
20 =over 4
21
22 =item Overview
23
24 =item Tutorials
25
26 =item Reference Manual
27
28 =item Internals and C Language Interface
29
30 =item Miscellaneous
31
32 =item Platform-Specific
33
34 =back
35
36 =item DESCRIPTION
37
38 =item AVAILABILITY
39
40 =item ENVIRONMENT
41
42 =item AUTHOR
43
44 =item FILES
45
46 =item SEE ALSO
47
48 =item DIAGNOSTICS
49
50 =item BUGS
51
52 =item NOTES
53
54 =back
55
56 =head2 perlintro -- a brief introduction and overview of Perl
57
58 =over 4
59
60 =item DESCRIPTION
61
62 =over 4
63
64 =item What is Perl?
65
66 =item Running Perl programs
67
68 =item Basic syntax overview
69
70 =item Perl variable types
71
72 Scalars, Arrays, Hashes
73
74 =item Variable scoping
75
76 =item Conditional and looping constructs
77
78 if, while, for, foreach
79
80 =item Builtin operators and functions
81
82 Arithmetic, Numeric comparison, String comparison, Boolean logic,
83 Miscellaneous
84
85 =item Files and I/O
86
87 =item Regular expressions
88
89 Simple matching, Simple substitution, More complex regular expressions,
90 Parentheses for capturing, Other regexp features
91
92 =item Writing subroutines
93
94 =item OO Perl
95
96 =item Using Perl modules
97
98 =back
99
100 =item AUTHOR
101
102 =back
103
104 =head2 perlfaq - frequently asked questions about Perl ($Date: 2002/03/11
105 21:32:23 $)
106
107 =over 4
108
109 =item DESCRIPTION
110
111 =over 4
112
113 =item perlfaq: Structural overview of the FAQ.
114
115 =item L<perlfaq1>: General Questions About Perl
116
117 =item L<perlfaq2>: Obtaining and Learning about Perl
118
119 =item L<perlfaq3>: Programming Tools
120
121 =item L<perlfaq4>: Data Manipulation
122
123 =item L<perlfaq5>: Files and Formats
124
125 =item L<perlfaq6>: Regular Expressions
126
127 =item L<perlfaq7>: General Perl Language Issues
128
129 =item L<perlfaq8>: System Interaction
130
131 =item L<perlfaq9>: Networking
132
133 =back
134
135 =item About the perlfaq documents
136
137 =over 4
138
139 =item Where to get the perlfaq
140
141 =item How to contribute to the perlfaq
142
143 =item What will happen if you mail your Perl programming problems to the
144 authors
145
146 =back
147
148 =item Credits
149
150 =item Author and Copyright Information
151
152 =over 4
153
154 =item Bundled Distributions
155
156 =item Disclaimer
157
158 =back
159
160 =item Changes
161
162 1/November/2000, 23/May/99, 13/April/99, 7/January/99, 22/June/98,
163 24/April/97, 23/April/97, 25/March/97, 18/March/97, 17/March/97 Version,
164 Initial Release: 11/March/97
165
166 =back
167
168 =head2 perlbook - Perl book information
169
170 =over 4
171
172 =item DESCRIPTION
173
174 =back
175
176 =head2 perlsyn - Perl syntax
177
178 =over 4
179
180 =item DESCRIPTION
181
182 =over 4
183
184 =item Declarations
185
186 =item Simple statements
187
188 =item Compound statements
189
190 =item Loop Control
191
192 =item For Loops
193
194 =item Foreach Loops
195
196 =item Basic BLOCKs and Switch Statements
197
198 =item Goto
199
200 =item PODs: Embedded Documentation
201
202 =item Plain Old Comments (Not!)
203
204 =back
205
206 =back
207
208 =head2 perldata - Perl data types
209
210 =over 4
211
212 =item DESCRIPTION
213
214 =over 4
215
216 =item Variable names
217
218 =item Context
219
220 =item Scalar values
221
222 =item Scalar value constructors
223
224 =item List value constructors
225
226 =item Slices
227
228 =item Typeglobs and Filehandles
229
230 =back
231
232 =item SEE ALSO
233
234 =back
235
236 =head2 perlop - Perl operators and precedence
237
238 =over 4
239
240 =item SYNOPSIS
241
242 =item DESCRIPTION
243
244 =over 4
245
246 =item Terms and List Operators (Leftward)
247
248 =item The Arrow Operator
249
250 =item Auto-increment and Auto-decrement
251
252 =item Exponentiation
253
254 =item Symbolic Unary Operators
255
256 =item Binding Operators
257
258 =item Multiplicative Operators
259
260 =item Additive Operators
261
262 =item Shift Operators
263
264 =item Named Unary Operators
265
266 =item Relational Operators
267
268 =item Equality Operators
269
270 =item Bitwise And
271
272 =item Bitwise Or and Exclusive Or
273
274 =item C-style Logical And
275
276 =item C-style Logical Or
277
278 =item Range Operators
279
280 =item Conditional Operator
281
282 =item Assignment Operators
283
284 =item Comma Operator
285
286 =item List Operators (Rightward)
287
288 =item Logical Not
289
290 =item Logical And
291
292 =item Logical or and Exclusive Or
293
294 =item C Operators Missing From Perl
295
296 unary &, unary *, (TYPE)
297
298 =item Quote and Quote-like Operators
299
300 =item Regexp Quote-Like Operators
301
302 ?PATTERN?, m/PATTERN/cgimosx, /PATTERN/cgimosx, q/STRING/, C<'STRING'>,
303 qq/STRING/, "STRING", qr/STRING/imosx, qx/STRING/, `STRING`, qw/STRING/,
304 s/PATTERN/REPLACEMENT/egimosx, tr/SEARCHLIST/REPLACEMENTLIST/cds,
305 y/SEARCHLIST/REPLACEMENTLIST/cds, <<EOF
306
307 =item Gory details of parsing quoted constructs
308
309 Finding the end, Removal of backslashes before delimiters, Interpolation,
310 C<<<'EOF'>, C<m''>, C<s'''>, C<tr///>, C<y///>, C<''>, C<q//>, C<"">,
311 C<``>, C<qq//>, C<qx//>, C<< <file*glob> >>, C<?RE?>, C</RE/>, C<m/RE/>,
312 C<s/RE/foo/>,, Interpolation of regular expressions, Optimization of
313 regular expressions
314
315 =item I/O Operators
316
317 =item Constant Folding
318
319 =item Bitwise String Operators
320
321 =item Integer Arithmetic
322
323 =item Floating-point Arithmetic
324
325 =item Bigger Numbers
326
327 =back
328
329 =back
330
331 =head2 perlsub - Perl subroutines
332
333 =over 4
334
335 =item SYNOPSIS
336
337 =item DESCRIPTION
338
339 =over 4
340
341 =item Private Variables via my()
342
343 =item Persistent Private Variables
344
345 =item Temporary Values via local()
346
347 =item Lvalue subroutines
348
349 =item Passing Symbol Table Entries (typeglobs)
350
351 =item When to Still Use local()
352
353 =item Pass by Reference
354
355 =item Prototypes
356
357 =item Constant Functions
358
359 =item Overriding Built-in Functions
360
361 =item Autoloading
362
363 =item Subroutine Attributes
364
365 =back
366
367 =item SEE ALSO
368
369 =back
370
371 =head2 perlfunc - Perl builtin functions
372
373 =over 4
374
375 =item DESCRIPTION
376
377 =over 4
378
379 =item Perl Functions by Category
380
381 Functions for SCALARs or strings, Regular expressions and pattern matching,
382 Numeric functions, Functions for real @ARRAYs, Functions for list data,
383 Functions for real %HASHes, Input and output functions, Functions for fixed
384 length data or records, Functions for filehandles, files, or directories,
385 Keywords related to the control flow of your perl program, Keywords related
386 to scoping, Miscellaneous functions, Functions for processes and process
387 groups, Keywords related to perl modules, Keywords related to classes and
388 object-orientedness, Low-level socket functions, System V interprocess
389 communication functions, Fetching user and group info, Fetching network
390 info, Time-related functions, Functions new in perl5, Functions obsoleted
391 in perl5
392
393 =item Portability
394
395 =item Alphabetical Listing of Perl Functions
396
397 I<-X> FILEHANDLE, I<-X> EXPR, I<-X>, abs VALUE, abs, accept
398 NEWSOCKET,GENERICSOCKET, alarm SECONDS, alarm, atan2 Y,X, bind SOCKET,NAME,
399 binmode FILEHANDLE, DISCIPLINE, binmode FILEHANDLE, bless REF,CLASSNAME,
400 bless REF, caller EXPR, caller, chdir EXPR, chmod LIST, chomp VARIABLE,
401 chomp( LIST ), chomp, chop VARIABLE, chop( LIST ), chop, chown LIST, chr
402 NUMBER, chr, chroot FILENAME, chroot, close FILEHANDLE, close, closedir
403 DIRHANDLE, connect SOCKET,NAME, continue BLOCK, cos EXPR, cos, crypt
404 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MASK, defined EXPR,
405 defined, delete EXPR, die LIST, do BLOCK, do SUBROUTINE(LIST), do EXPR,
406 dump LABEL, dump, each HASH, eof FILEHANDLE, eof (), eof, eval EXPR, eval
407 BLOCK, exec LIST, exec PROGRAM LIST, exists EXPR, exit EXPR, exp EXPR, exp,
408 fcntl FILEHANDLE,FUNCTION,SCALAR, fileno FILEHANDLE, flock
409 FILEHANDLE,OPERATION, fork, format, formline PICTURE,LIST, getc FILEHANDLE,
410 getc, getlogin, getpeername SOCKET, getpgrp PID, getppid, getpriority
411 WHICH,WHO, getpwnam NAME, getgrnam NAME, gethostbyname NAME, getnetbyname
412 NAME, getprotobyname NAME, getpwuid UID, getgrgid GID, getservbyname
413 NAME,PROTO, gethostbyaddr ADDR,ADDRTYPE, getnetbyaddr ADDR,ADDRTYPE,
414 getprotobynumber NUMBER, getservbyport PORT,PROTO, getpwent, getgrent,
415 gethostent, getnetent, getprotoent, getservent, setpwent, setgrent,
416 sethostent STAYOPEN, setnetent STAYOPEN, setprotoent STAYOPEN, setservent
417 STAYOPEN, endpwent, endgrent, endhostent, endnetent, endprotoent,
418 endservent, getsockname SOCKET, getsockopt SOCKET,LEVEL,OPTNAME, glob EXPR,
419 glob, gmtime EXPR, goto LABEL, goto EXPR, goto &NAME, grep BLOCK LIST, grep
420 EXPR,LIST, hex EXPR, hex, import, index STR,SUBSTR,POSITION, index
421 STR,SUBSTR, int EXPR, int, ioctl FILEHANDLE,FUNCTION,SCALAR, join
422 EXPR,LIST, keys HASH, kill SIGNAL, LIST, last LABEL, last, lc EXPR, lc,
423 lcfirst EXPR, lcfirst, length EXPR, length, link OLDFILE,NEWFILE, listen
424 SOCKET,QUEUESIZE, local EXPR, localtime EXPR, lock THING, log EXPR, log,
425 lstat EXPR, lstat, m//, map BLOCK LIST, map EXPR,LIST, mkdir FILENAME,MASK,
426 mkdir FILENAME, msgctl ID,CMD,ARG, msgget KEY,FLAGS, msgrcv
427 ID,VAR,SIZE,TYPE,FLAGS, msgsnd ID,MSG,FLAGS, my EXPR, my EXPR : ATTRIBUTES,
428 next LABEL, next, no Module LIST, oct EXPR, oct, open FILEHANDLE,EXPR, open
429 FILEHANDLE,MODE,EXPR, open FILEHANDLE,MODE,EXPR,LIST, open
430 FILEHANDLE,MODE,REFERENCE, open FILEHANDLE, opendir DIRHANDLE,EXPR, ord
431 EXPR, ord, our EXPR, our EXPR : ATTRIBUTES, pack TEMPLATE,LIST, package
432 NAMESPACE, package, pipe READHANDLE,WRITEHANDLE, pop ARRAY, pop, pos
433 SCALAR, pos, print FILEHANDLE LIST, print LIST, print, printf FILEHANDLE
434 FORMAT, LIST, printf FORMAT, LIST, prototype FUNCTION, push ARRAY,LIST,
435 q/STRING/, qq/STRING/, qr/STRING/, qx/STRING/, qw/STRING/, quotemeta EXPR,
436 quotemeta, rand EXPR, rand, read FILEHANDLE,SCALAR,LENGTH,OFFSET, read
437 FILEHANDLE,SCALAR,LENGTH, readdir DIRHANDLE, readline EXPR, readlink EXPR,
438 readlink, readpipe EXPR, recv SOCKET,SCALAR,LENGTH,FLAGS, redo LABEL, redo,
439 ref EXPR, ref, rename OLDNAME,NEWNAME, require VERSION, require EXPR,
440 require, reset EXPR, reset, return EXPR, return, reverse LIST, rewinddir
441 DIRHANDLE, rindex STR,SUBSTR,POSITION, rindex STR,SUBSTR, rmdir FILENAME,
442 rmdir, s///, scalar EXPR, seek FILEHANDLE,POSITION,WHENCE, seekdir
443 DIRHANDLE,POS, select FILEHANDLE, select, select RBITS,WBITS,EBITS,TIMEOUT,
444 semctl ID,SEMNUM,CMD,ARG, semget KEY,NSEMS,FLAGS, semop KEY,OPSTRING, send
445 SOCKET,MSG,FLAGS,TO, send SOCKET,MSG,FLAGS, setpgrp PID,PGRP, setpriority
446 WHICH,WHO,PRIORITY, setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL, shift ARRAY,
447 shift, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS, shmread ID,VAR,POS,SIZE,
448 shmwrite ID,STRING,POS,SIZE, shutdown SOCKET,HOW, sin EXPR, sin, sleep
449 EXPR, sleep, sockatmark SOCKET, socket SOCKET,DOMAIN,TYPE,PROTOCOL,
450 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, sort SUBNAME LIST, sort
451 BLOCK LIST, sort LIST, splice ARRAY,OFFSET,LENGTH,LIST, splice
452 ARRAY,OFFSET,LENGTH, splice ARRAY,OFFSET, splice ARRAY, split
453 /PATTERN/,EXPR,LIMIT, split /PATTERN/,EXPR, split /PATTERN/, split, sprintf
454 FORMAT, LIST, sqrt EXPR, sqrt, srand EXPR, srand, stat FILEHANDLE, stat
455 EXPR, stat, study SCALAR, study, sub BLOCK, sub NAME, sub NAME BLOCK,
456 substr EXPR,OFFSET,LENGTH,REPLACEMENT, substr EXPR,OFFSET,LENGTH, substr
457 EXPR,OFFSET, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
458 FILEHANDLE,FILENAME,MODE, sysopen FILEHANDLE,FILENAME,MODE,PERMS, sysread
459 FILEHANDLE,SCALAR,LENGTH,OFFSET, sysread FILEHANDLE,SCALAR,LENGTH, sysseek
460 FILEHANDLE,POSITION,WHENCE, system LIST, system PROGRAM LIST, syswrite
461 FILEHANDLE,SCALAR,LENGTH,OFFSET, syswrite FILEHANDLE,SCALAR,LENGTH,
462 syswrite FILEHANDLE,SCALAR, tell FILEHANDLE, tell, telldir DIRHANDLE, tie
463 VARIABLE,CLASSNAME,LIST, tied VARIABLE, time, times, tr///, truncate
464 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, uc EXPR, uc, ucfirst EXPR,
465 ucfirst, umask EXPR, umask, undef EXPR, undef, unlink LIST, unlink, unpack
466 TEMPLATE,EXPR, untie VARIABLE, unshift ARRAY,LIST, use Module VERSION LIST,
467 use Module VERSION, use Module LIST, use Module, use VERSION, utime LIST,
468 values HASH, vec EXPR,OFFSET,BITS, wait, waitpid PID,FLAGS, wantarray, warn
469 LIST, write FILEHANDLE, write EXPR, write, y///
470
471 =back
472
473 =back
474
475 =head2 perlreftut - Mark's very short tutorial about references
476
477 =over 4
478
479 =item DESCRIPTION
480
481 =item Who Needs Complicated Data Structures?
482
483 =item The Solution
484
485 =item Syntax
486
487 =over 4
488
489 =item Making References
490
491 =item Using References
492
493 =back
494
495 =item An Example
496
497 =item Arrow Rule
498
499 =item Solution
500
501 =item The Rest
502
503 =item Summary
504
505 =item Credits
506
507 =over 4
508
509 =item Distribution Conditions
510
511 =back
512
513 =back
514
515 =head2 perldsc - Perl Data Structures Cookbook
516
517 =over 4
518
519 =item DESCRIPTION
520
521 arrays of arrays, hashes of arrays, arrays of hashes, hashes of hashes,
522 more elaborate constructs
523
524 =item REFERENCES
525
526 =item COMMON MISTAKES
527
528 =item CAVEAT ON PRECEDENCE
529
530 =item WHY YOU SHOULD ALWAYS C<use strict>
531
532 =item DEBUGGING
533
534 =item CODE EXAMPLES
535
536 =item ARRAYS OF ARRAYS
537
538 =over 4
539
540 =item Declaration of an ARRAY OF ARRAYS
541
542 =item Generation of an ARRAY OF ARRAYS
543
544 =item Access and Printing of an ARRAY OF ARRAYS
545
546 =back
547
548 =item HASHES OF ARRAYS
549
550 =over 4
551
552 =item Declaration of a HASH OF ARRAYS
553
554 =item Generation of a HASH OF ARRAYS
555
556 =item Access and Printing of a HASH OF ARRAYS
557
558 =back
559
560 =item ARRAYS OF HASHES
561
562 =over 4
563
564 =item Declaration of an ARRAY OF HASHES
565
566 =item Generation of an ARRAY OF HASHES
567
568 =item Access and Printing of an ARRAY OF HASHES
569
570 =back
571
572 =item HASHES OF HASHES
573
574 =over 4
575
576 =item Declaration of a HASH OF HASHES
577
578 =item Generation of a HASH OF HASHES
579
580 =item Access and Printing of a HASH OF HASHES
581
582 =back
583
584 =item MORE ELABORATE RECORDS
585
586 =over 4
587
588 =item Declaration of MORE ELABORATE RECORDS
589
590 =item Declaration of a HASH OF COMPLEX RECORDS
591
592 =item Generation of a HASH OF COMPLEX RECORDS
593
594 =back
595
596 =item Database Ties
597
598 =item SEE ALSO
599
600 =item AUTHOR
601
602 =back
603
604 =head2 perlrequick - Perl regular expressions quick start
605
606 =over 4
607
608 =item DESCRIPTION
609
610 =item The Guide
611
612 =over 4
613
614 =item Simple word matching
615
616 =item Using character classes
617
618 =item Matching this or that
619
620 =item Grouping things and hierarchical matching
621
622 =item Extracting matches
623
624 =item Matching repetitions
625
626 =item More matching
627
628 =item Search and replace
629
630 =item The split operator
631
632 =back
633
634 =item BUGS
635
636 =item SEE ALSO
637
638 =item AUTHOR AND COPYRIGHT
639
640 =over 4
641
642 =item Acknowledgments
643
644 =back
645
646 =back
647
648 =head2 perlpod - the Plain Old Documentation format
649
650 =over 4
651
652 =item DESCRIPTION
653
654 =over 4
655
656 =item Ordinary Paragraph
657
658 =item Verbatim Paragraph
659
660 =item Command Paragraph
661
662 C<=head1 I<Heading Text>>, C<=head2 I<Heading Text>>, C<=head3 I<Heading
663 Text>>, C<=head4 I<Heading Text>>, C<=over I<indentlevel>>, C<=item
664 I<stuff...>>, C<=back>, C<=cut>, C<=pod>, C<=begin I<formatname>>, C<=end
665 I<formatname>>, C<=for I<formatname> I<text...>>
666
667 =item Formatting Codes
668
669 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
670 C<CE<lt>codeE<gt>> -- code text, C<LE<lt>nameE<gt>> -- a hyperlink,
671 C<EE<lt>escapeE<gt>> -- a character escape, C<FE<lt>filenameE<gt>> -- used
672 for filenames, C<SE<lt>textE<gt>> -- text contains non-breaking spaces,
673 C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a null
674 (zero-effect) formatting code
675
676 =item The Intent
677
678 =item Embedding Pods in Perl Modules
679
680 =item Hints for Writing Pod
681
682 =back
683
684 =item SEE ALSO
685
686 =item AUTHOR
687
688 =back
689
690 =head2 perlpodspec - Plain Old Documentation: format specification and
691 notes
692
693 =over 4
694
695 =item DESCRIPTION
696
697 =item Pod Definitions
698
699 =item Pod Commands
700
701 "=head1", "=head2", "=head3", "=head4", "=pod", "=cut", "=over", "=item",
702 "=back", "=begin formatname", "=end formatname", "=for formatname text..."
703
704 =item Pod Formatting Codes
705
706 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
707 C<CE<lt>codeE<gt>> -- code text, C<FE<lt>filenameE<gt>> -- style for
708 filenames, C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a
709 null (zero-effect) formatting code, C<LE<lt>nameE<gt>> -- a hyperlink,
710 C<EE<lt>escapeE<gt>> -- a character escape, C<SE<lt>textE<gt>> -- text
711 contains non-breaking spaces
712
713 =item Notes on Implementing Pod Processors
714
715 =item About LE<lt>...E<gt> Codes
716
717 First:, Second:, Third:, Fourth:, Fifth:, Sixth:
718
719 =item About =over...=back Regions
720
721 =item About Data Paragraphs and "=begin/=end" Regions
722
723 =item SEE ALSO
724
725 =item AUTHOR
726
727 =back
728
729 =head2 perlstyle - Perl style guide
730
731 =over 4
732
733 =item DESCRIPTION
734
735 =back
736
737 =head2 perltrap - Perl traps for the unwary
738
739 =over 4
740
741 =item DESCRIPTION
742
743 =over 4
744
745 =item Awk Traps
746
747 =item C Traps
748
749 =item Sed Traps
750
751 =item Shell Traps
752
753 =item Perl Traps
754
755 =item Perl4 to Perl5 Traps
756
757 Discontinuance, Deprecation, and BugFix traps, Parsing Traps, Numerical
758 Traps, General data type traps, Context Traps - scalar, list contexts,
759 Precedence Traps, General Regular Expression Traps using s///, etc,
760 Subroutine, Signal, Sorting Traps, OS Traps, DBM Traps, Unclassified Traps
761
762 =item Discontinuance, Deprecation, and BugFix traps
763
764 Discontinuance, Deprecation, BugFix, Discontinuance, Discontinuance,
765 Discontinuance, BugFix, Discontinuance, Discontinuance, BugFix,
766 Discontinuance, Deprecation, Discontinuance, Discontinuance
767
768 =item Parsing Traps
769
770 Parsing, Parsing, Parsing, Parsing, Parsing
771
772 =item Numerical Traps
773
774 Numerical, Numerical, Numerical, Bitwise string ops
775
776 =item General data type traps
777
778 (Arrays), (Arrays), (Hashes), (Globs), (Globs), (Scalar String),
779 (Constants), (Scalars), (Variable Suicide)
780
781 =item Context Traps - scalar, list contexts
782
783 (list context), (scalar context), (scalar context), (list, builtin)
784
785 =item Precedence Traps
786
787 Precedence, Precedence, Precedence, Precedence, Precedence, Precedence,
788 Precedence
789
790 =item General Regular Expression Traps using s///, etc.
791
792 Regular Expression, Regular Expression, Regular Expression, Regular
793 Expression, Regular Expression, Regular Expression, Regular Expression,
794 Regular Expression
795
796 =item Subroutine, Signal, Sorting Traps
797
798 (Signals), (Sort Subroutine), warn() won't let you specify a filehandle
799
800 =item OS Traps
801
802 (SysV), (SysV)
803
804 =item Interpolation Traps
805
806 Interpolation, Interpolation, Interpolation, Interpolation, Interpolation,
807 Interpolation, Interpolation, Interpolation, Interpolation
808
809 =item DBM Traps
810
811 DBM, DBM
812
813 =item Unclassified Traps
814
815 C<require>/C<do> trap using returned value, C<split> on empty string with
816 LIMIT specified
817
818 =back
819
820 =back
821
822 =head2 perlrun - how to execute the Perl interpreter
823
824 =over 4
825
826 =item SYNOPSIS
827
828 =item DESCRIPTION
829
830 =over 4
831
832 =item #! and quoting on non-Unix systems
833
834 OS/2, MS-DOS, Win95/NT, Macintosh, VMS
835
836 =item Location of Perl
837
838 =item Command Switches
839
840 B<-0>[I<digits>], B<-a>, B<-C>, B<-c>, B<-d>, B<-d:>I<foo[=bar,baz]>,
841 B<-D>I<letters>, B<-D>I<number>, B<-e> I<commandline>, B<-F>I<pattern>,
842 B<-h>, B<-i>[I<extension>], B<-I>I<directory>, B<-l>[I<octnum>],
843 B<-m>[B<->]I<module>, B<-M>[B<->]I<module>, B<-M>[B<->]I<'module ...'>,
844 B<-[mM]>[B<->]I<module=arg[,arg]...>, B<-n>, B<-p>, B<-P>, B<-s>, B<-S>,
845 B<-t>, B<-T>, B<-u>, B<-U>, B<-v>, B<-V>, B<-V:>I<name>, B<-w>, B<-W>,
846 B<-X>, B<-x> I<directory>
847
848 =back
849
850 =item ENVIRONMENT
851
852 HOME, LOGDIR, PATH, PERL5LIB, PERL5OPT, PERLLIB, PERL5DB, PERL5SHELL
853 (specific to the Win32 port), PERL_DEBUG_MSTATS, PERL_DESTRUCT_LEVEL,
854 PERL_ENCODING, PERL_ROOT (specific to the VMS port), SYS$LOGIN (specific to
855 the VMS port)
856
857 =item DESCRIPTION
858
859 accept() on closed socket %s, Allocation too large: %lx, '!' allowed only
860 after types %s, Ambiguous call resolved as CORE::%s(), qualify as such or
861 use &, Ambiguous range in transliteration operator, Ambiguous use of %s
862 resolved as %s, '|' and '<' may not both be specified on command line, '|'
863 and '>' may not both be specified on command line, Applying %s to %s will
864 act on scalar(%s), Args must match #! line, Arg too short for msgsnd, %s
865 argument is not a HASH or ARRAY element, %s argument is not a HASH or ARRAY
866 element or slice, %s argument is not a subroutine name, Argument "%s" isn't
867 numeric%s, Array @%s missing the @ in argument %d of %s(), assertion
868 botched: %s, Assertion failed: file "%s", Assignment to both a list and a
869 scalar, Attempt to access disallowed key '%s' in a fixed hash, Attempt to
870 clear a fixed hash, Attempt to delete readonly key '%s' from a fixed hash,
871 Attempt to delete disallowed key '%s' from a fixed hash, Attempt to bless
872 into a reference, Attempt to free non-arena SV: 0x%lx, Attempt to free
873 nonexistent shared string, Attempt to free temp prematurely, Attempt to
874 free unreferenced glob pointers, Attempt to free unreferenced scalar,
875 Attempt to join self, Attempt to pack pointer to temporary value, Attempt
876 to use reference as lvalue in substr, Bad arg length for %s, is %d, should
877 be %s, Bad evalled substitution pattern, Bad filehandle: %s, Bad free()
878 ignored, Bad hash, Bad index while coercing array into hash, Badly placed
879 ()'s, Bad name after %s::, Bad realloc() ignored, Bad symbol for array, Bad
880 symbol for filehandle, Bad symbol for hash, Bareword found in conditional,
881 Bareword "%s" not allowed while "strict subs" in use, Bareword "%s" refers
882 to nonexistent package, BEGIN failed--compilation aborted, BEGIN not safe
883 after errors--compilation aborted, \1 better written as $1, Binary number >
884 0b11111111111111111111111111111111 non-portable, bind() on closed socket
885 %s, binmode() on closed filehandle %s, Bit vector size > 32 non-portable,
886 Bizarre copy of %s in %s, B<-P> not allowed for setuid/setgid script,
887 Buffer overflow in prime_env_iter: %s, Callback called exit, %s() called
888 too early to check prototype, / cannot take a count, Can't bless
889 non-reference value, Can't call method "%s" in empty package "%s", Can't
890 call method "%s" on an undefined value, Can't call method "%s" on unblessed
891 reference, Can't call method "%s" without a package or object reference,
892 Can't chdir to %s, Can't check filesystem of script "%s" for nosuid, Can't
893 coerce array into hash, Can't coerce %s to integer in %s, Can't coerce %s
894 to number in %s, Can't coerce %s to string in %s, Can't create pipe
895 mailbox, Can't declare class for non-scalar %s in "%s", Can't declare %s in
896 "%s", Can't do inplace edit: %s is not a regular file, Can't do inplace
897 edit on %s: %s, Can't do inplace edit without backup, Can't do inplace
898 edit: %s would not be unique, Can't do {n,m} with n > m in regex; marked by
899 <-- HERE in m/%s/, Can't do setegid!, Can't do seteuid!, Can't do setuid,
900 Can't do waitpid with flags, Can't emulate -%s on #! line, Can't exec "%s":
901 %s, Can't exec %s, Can't execute %s, Can't find an opnumber for "%s", Can't
902 find %s character property "%s", Can't find label %s, Can't find %s on
903 PATH, Can't find %s on PATH, '.' not in PATH, Can't find string terminator
904 %s anywhere before EOF, Can't find %s property definition %s, Can't fork,
905 Can't get filespec - stale stat buffer?, Can't get pipe mailbox device
906 name, Can't get SYSGEN parameter value for MAXBUF, Can't "goto" into the
907 middle of a foreach loop, Can't "goto" out of a pseudo block, Can't goto
908 subroutine from an eval-string, Can't goto subroutine outside a subroutine,
909 Can't ignore signal CHLD, forcing to default, Can't "last" outside a loop
910 block, Can't localize lexical variable %s, Can't localize pseudo-hash
911 element, Can't localize through a reference, Can't locate file %s, Can't
912 locate auto/%s.al in @INC, Can't locate object method "%s" via package
913 "%s", (perhaps you forgot to load "%s"?), Can't locate package %s for
914 @%s::ISA, Can't make list assignment to \%ENV on this system, Can't modify
915 %s in %s, Can't modify nonexistent substring, Can't modify non-lvalue
916 subroutine call, Can't msgrcv to read-only var, Can't "next" outside a loop
917 block, Can't open %s: %s, Can't open bidirectional pipe, Can't open error
918 file %s as stderr, Can't open input file %s as stdin, Can't open output
919 file %s as stdout, Can't open output pipe (name: %s), Can't open perl
920 script%s: %s, Can't read CRTL environ, Can't redefine active sort
921 subroutine %s, Can't "redo" outside a loop block, Can't remove %s: %s,
922 skipping file, Can't rename %s to %s: %s, skipping file, Can't reopen input
923 pipe (name: %s) in binary mode, Can't resolve method `%s' overloading `%s'
924 in package `%s', Can't reswap uid and euid, Can't return %s from lvalue
925 subroutine, Can't return %s to lvalue scalar context, Can't return outside
926 a subroutine, Can't stat script "%s", Can't swap uid and euid, Can't take
927 log of %g, Can't take sqrt of %g, Can't undef active subroutine, Can't
928 unshift, Can't upgrade that kind of scalar, Can't upgrade to undef, Can't
929 use an undefined value as %s reference, Can't use anonymous symbol table
930 for method lookup, Can't use bareword ("%s") as %s ref while "strict refs"
931 in use, Can't use %! because Errno.pm is not available, Can't use %s for
932 loop variable, Can't use global %s in "my", Can't use "my %s" in sort
933 comparison, Can't use %s ref as %s ref, Can't use string ("%s") as %s ref
934 while "strict refs" in use, Can't use subscript on %s, Can't use \%c to
935 mean $%c in expression, Can't weaken a nonreference, Can't x= to read-only
936 value, Character in "C" format wrapped, Character in "c" format wrapped,
937 close() on unopened filehandle %s, %s: Command not found, Compilation
938 failed in require, Complex regular subexpression recursion limit (%d)
939 exceeded, connect() on closed socket %s, Constant(%s)%s: %s, Constant is
940 not %s reference, Constant subroutine %s redefined, Constant subroutine %s
941 undefined, Copy method did not return a reference, CORE::%s is not a
942 keyword, corrupted regexp pointers, corrupted regexp program, Corrupt
943 malloc ptr 0x%lx at 0x%lx, C<-p> destination: %s, C<-T> and C<-B> not
944 implemented on filehandles, Deep recursion on subroutine "%s",
945 defined(@array) is deprecated, defined(%hash) is deprecated, %s defines
946 neither package nor VERSION--version check failed, Delimiter for here
947 document is too long, Did not produce a valid header, %s did not return a
948 true value, (Did you mean &%s instead?), (Did you mean "local" instead of
949 "our"?), (Did you mean $ or @ instead of %?), Died, Document contains no
950 data, %s does not define %s::VERSION--version check failed, Don't know how
951 to handle magic of type '%s', do_study: out of memory, (Do you need to
952 predeclare %s?), dump() better written as CORE::dump(), Duplicate free()
953 ignored, elseif should be elsif, Empty %s, entering effective %s failed,
954 Error converting file specification %s, %s: Eval-group in insecure regular
955 expression, %s: Eval-group not allowed at run time, %s: Eval-group not
956 allowed, use re 'eval', Excessively long <> operator, exec? I'm not *that*
957 kind of operating system, Execution of %s aborted due to compilation
958 errors, Exiting eval via %s, Exiting format via %s, Exiting pseudo-block
959 via %s, Exiting subroutine via %s, Exiting substitution via %s, Explicit
960 blessing to '' (assuming package main), %s: Expression syntax, %s
961 failed--call queue aborted, False [] range "%s" in regex; marked by <--
962 HERE in m/%s/, Fatal VMS error at %s, line %d, fcntl is not implemented,
963 Filehandle %s opened only for input, Filehandle %s opened only for output,
964 Final $ should be \$ or $name, Final @ should be \@ or @name, flock() on
965 closed filehandle %s, Quantifier follows nothing in regex;, Format not
966 terminated, Format %s redefined, Found = in conditional, should be ==, %s
967 found where operator expected, gdbm store returned %d, errno %d, key "%s",
968 gethostent not implemented, get%sname() on closed socket %s, getpwnam
969 returned invalid UIC %#o for user "%s", getsockopt() on closed socket %s,
970 Global symbol "%s" requires explicit package name, glob failed (%s), Glob
971 not terminated, Got an error from DosAllocMem, goto must have label,
972 %s-group starts with a count, %s had compilation errors, Had to create %s
973 unexpectedly, Hash %%s missing the % in argument %d of %s(), %s has too
974 many errors, Hexadecimal number > 0xffffffff non-portable, Identifier too
975 long, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
976 character %s (carriage return), Illegal character in prototype for %s : %s,
977 Illegal division by zero, Illegal hexadecimal digit %s ignored, Illegal
978 modulus zero, Illegal number of bits in vec, Illegal octal digit %s,
979 Illegal octal digit %s ignored, Illegal switch in PERL5OPT: %s, Ill-formed
980 CRTL environ value "%s", Ill-formed message in prime_env_iter: |%s|, (in
981 cleanup) %s, In EBCDIC the v-string components cannot exceed 2147483647,
982 Insecure dependency in %s, Insecure directory in %s, Insecure $ENV{%s}
983 while running %s, Integer overflow in %s number, Internal disaster in
984 regex; marked by <-- HERE in m/%s/, Internal inconsistency in tracking
985 vforks, Internal urp in regex; marked by <-- HERE in m/%s/, %s (...)
986 interpreted as function, Invalid %s attribute: %s, Invalid %s attributes:
987 %s, Invalid conversion in %s: "%s", Invalid [] range "%s" in regex; marked
988 by <-- HERE in m/%s/, Invalid [] range "%s" in transliteration operator,
989 Invalid separator character %s in attribute list, Invalid type in pack:
990 '%s', Invalid type in unpack: '%s', ioctl is not implemented, ioctl() on
991 unopened %s, IO::Socket::atmark not implemented on this architecture, `%s'
992 is not a code reference, `%s' is not an overloadable type, junk on end of
993 regexp, Label not found for "last %s", Label not found for "next %s", Label
994 not found for "redo %s", leaving effective %s failed, listen() on closed
995 socket %s, lstat() on filehandle %s, Lvalue subs returning %s not
996 implemented yet, Lookbehind longer than %d not implemented in regex;,
997 Malformed PERLLIB_PREFIX, Malformed prototype for %s: %s, Malformed UTF-8
998 character (%s), Malformed UTF-16 surrogate, %s matches null string many
999 times in regex;, "%s" may clash with future reserved word, % may only be
1000 used in unpack, Method for operation %s not found in package %s during
1001 blessing, Method %s not permitted, Might be a runaway multi-line %s string
1002 starting on line %d, Misplaced _ in number, Missing %sbrace%s on \N{},
1003 Missing comma after first argument to %s function, Missing command in piped
1004 open, Missing name in "my sub", Missing $ on loop variable, (Missing
1005 operator before %s?), Missing right brace on %s, Missing right curly or
1006 square bracket, (Missing semicolon on previous line?), Modification of a
1007 read-only value attempted, Modification of non-creatable array value
1008 attempted, %s, Modification of non-creatable hash value attempted, %s,
1009 Module name must be constant, Module name required with -%c option, More
1010 than one argument to open, msg%s not implemented, Multidimensional syntax
1011 %s not supported, / must be followed by a*, A* or Z*, / must be followed by
1012 a, A or Z, / must follow a numeric type, "my sub" not yet implemented, "my"
1013 variable %s can't be in a package, Name "%s::%s" used only once: possible
1014 typo, Negative length, Negative offset to vec in lvalue context, Nested
1015 quantifiers in regex; marked by <-- HERE in m/%s/, %s never introduced, No
1016 %s allowed while running setuid, No B<-e> allowed in setuid scripts, No
1017 comma allowed after %s, No command into which to pipe on command line, No
1018 DB::DB routine defined, No dbm on this machine, No DBsub routine, No error
1019 file after 2> or 2>> on command line, No input file after < on command
1020 line, No #! line, "no" not allowed in expression, No output file after > on
1021 command line, No output file after > or >> on command line, No package name
1022 allowed for variable %s in "our", No Perl script found in input, No
1023 setregid available, No setreuid available, No space allowed after -%c, No
1024 %s specified for -%c, No such class %s, No such pipe open, No such
1025 pseudo-hash field "%s", No such pseudo-hash field "%s" in variable %s of
1026 type %s, No such signal: SIG%s, Not a CODE reference, Not a format
1027 reference, Not a GLOB reference, Not a HASH reference, Not an ARRAY
1028 reference, Not a perl script, Not a SCALAR reference, Not a subroutine
1029 reference, Not a subroutine reference in overload table, Not enough
1030 arguments for %s, Not enough format arguments, %s: not found, %s not
1031 allowed in length fields, no UTC offset information; assuming local time is
1032 UTC, Null filename used, NULL OP IN RUN, Null picture in formline, Null
1033 realloc, NULL regexp argument, NULL regexp parameter, Number too long,
1034 Octal number in vector unsupported, Octal number > 037777777777
1035 non-portable, Odd number of arguments for overload::constant, Odd number of
1036 elements in anonymous hash, Odd number of elements in hash assignment,
1037 Offset outside string, -%s on unopened filehandle %s, %s() on unopened %s,
1038 oops: oopsAV, oops: oopsHV, Operation `%s': no method found, %s, Operator
1039 or semicolon missing before %s, "our" variable %s redeclared, Out of
1040 memory!, Out of memory during "large" request for %s, Out of memory during
1041 request for %s, Out of memory during ridiculously large request, Out of
1042 memory for yacc stack, @ outside of string, %s package attribute may clash
1043 with future reserved word: %s, page overflow, panic: %s, panic: ck_grep,
1044 panic: ck_split, panic: corrupt saved stack index, panic: del_backref,
1045 panic: die %s, panic: pp_match%s, panic: do_subst, panic: do_trans_%s,
1046 panic: frexp, panic: goto, panic: INTERPCASEMOD, panic: INTERPCONCAT,
1047 panic: kid popen errno read, panic: last, panic: leave_scope clearsv,
1048 panic: leave_scope inconsistency, panic: magic_killbackrefs, panic: malloc,
1049 panic: mapstart, panic: null array, panic: pad_alloc, panic: pad_free
1050 curpad, panic: pad_free po, panic: pad_reset curpad, panic: pad_sv po,
1051 panic: pad_swipe curpad, panic: pad_swipe po, panic: pp_iter, panic:
1052 pp_split, panic: realloc, panic: restartop, panic: return, panic: scan_num,
1053 panic: sv_insert, panic: top_env, panic: yylex, panic: utf16_to_utf8: odd
1054 bytelen, Parentheses missing around "%s" list, Perl %s required--this is
1055 only version %s, stopped, PERL_SH_DIR too long, perl: warning: Setting
1056 locale failed, perlio: argument list not closed for layer "%s", perlio:
1057 invalid separator character %s in attribute list, perlio: unknown layer
1058 "%s", Permission denied, pid %x not a child, P must have an explicit size,
1059 POSIX syntax [%s] belongs inside character classes in regex;, POSIX syntax
1060 [. .] is reserved for future extensions in regex;, POSIX syntax [= =] is
1061 reserved for future extensions in regex;, POSIX class [:%s:] unknown in
1062 regex;, POSIX getpgrp can't take an argument, Possible attempt to put
1063 comments in qw() list, Possible attempt to separate words with commas,
1064 Possible memory corruption: %s overflowed 3rd argument, Possible unintended
1065 interpolation of %s in string, Possible Y2K bug: %s, pragma "attrs" is
1066 deprecated, use "sub NAME : ATTRS" instead, Precedence problem: open %s
1067 should be open(%s), Premature end of script headers, printf() on closed
1068 filehandle %s, print() on closed filehandle %s, Process terminated by
1069 SIG%s, Prototype mismatch: %s vs %s, Prototype not terminated, Quantifier
1070 in {,} bigger than %d in regex;, Quantifier unexpected on zero-length
1071 expression;, Range iterator outside integer range, readline() on closed
1072 filehandle %s, Reallocation too large: %lx, realloc() of freed memory
1073 ignored, Recompile perl with B<-D>DEBUGGING to use B<-D> switch, Recursive
1074 inheritance detected in package '%s', Recursive inheritance detected while
1075 looking for method %s, Reference found where even-sized list expected,
1076 Reference is already weak, Reference miscount in sv_replace(), Reference to
1077 nonexistent group in regex;, regexp memory corruption, Regexp out of space,
1078 Repeat count in pack overflows, Repeat count in unpack overflows, Reversed
1079 %s= operator, Runaway format, Scalar value @%s[%s] better written as
1080 $%s[%s], Scalar value @%s{%s} better written as $%s{%s}, Scalars leaked:
1081 %d, Script is not setuid/setgid in suidperl, Search pattern not terminated,
1082 %sseek() on unopened filehandle, select not implemented, Self-ties of
1083 arrays and hashes are not supported, Semicolon seems to be missing,
1084 semi-panic: attempt to dup freed string, sem%s not implemented, send() on
1085 closed socket %s, Sequence (? incomplete in regex; marked by <-- HERE in
1086 m/%s/, Sequence (?{...}) not terminated or not {}-balanced in regex;,
1087 Sequence (?%s...) not implemented in regex;, Sequence (?%s...) not
1088 recognized in regex;, Sequence (?#... not terminated in regex;, 500 Server
1089 error, Server error, setegid() not implemented, seteuid() not implemented,
1090 setpgrp can't take arguments, setrgid() not implemented, setruid() not
1091 implemented, setsockopt() on closed socket %s, Setuid/gid script is
1092 writable by world, shm%s not implemented, <> should be quotes, /%s/ should
1093 probably be written as "%s", shutdown() on closed socket %s, SIG%s handler
1094 "%s" not defined, sort is now a reserved word, Sort subroutine didn't
1095 return a numeric value, Sort subroutine didn't return single value,
1096 splice() offset past end of array, Split loop, Statement unlikely to be
1097 reached, stat() on unopened filehandle %s, Stub found while resolving
1098 method `%s' overloading %s, Subroutine %s redefined, Substitution loop,
1099 Substitution pattern not terminated, Substitution replacement not
1100 terminated, substr outside of string, suidperl is no longer needed since
1101 %s, Switch (?(condition)... contains too many branches in regex;, Switch
1102 condition not recognized in regex;, switching effective %s is not
1103 implemented, syntax error, syntax error at line %d: `%s' unexpected, syntax
1104 error in file %s at line %d, next 2 tokens "%s", %s syntax OK, System V %s
1105 is not implemented on this machine, syswrite() on closed filehandle %s,
1106 Target of goto is too deeply nested, tell() on unopened filehandle, That
1107 use of $[ is unsupported, The crypt() function is unimplemented due to
1108 excessive paranoia, The %s function is unimplemented, The stat preceding %s
1109 wasn't an lstat, This Perl can't reset CRTL environ elements (%s), This
1110 Perl can't set CRTL environ elements (%s=%s), times not implemented, Too
1111 few args to syscall, Too late for "B<-T>" option, Too late for "-%s"
1112 option, Too late to run %s block, Too many args to syscall, Too many
1113 arguments for %s, Too many )'s, Too many ('s, Trailing \ in regex m/%s/,
1114 Transliteration pattern not terminated, Transliteration replacement not
1115 terminated, truncate not implemented, Type of arg %d to %s must be %s (not
1116 %s), umask not implemented, Unable to create sub named "%s", Unbalanced
1117 context: %d more PUSHes than POPs, Unbalanced saves: %d more saves than
1118 restores, Unbalanced scopes: %d more ENTERs than LEAVEs, Unbalanced tmps:
1119 %d more allocs than frees, Undefined format "%s" called, Undefined sort
1120 subroutine "%s" called, Undefined subroutine &%s called, Undefined
1121 subroutine called, Undefined subroutine in sort, Undefined top format "%s"
1122 called, Undefined value assigned to typeglob, %s: Undefined variable,
1123 unexec of %s into %s failed!, Unicode character %s is illegal, Unknown
1124 BYTEORDER, Unknown "re" subpragma '%s' (known ones are: %s), Unknown switch
1125 condition (?(%.2s in regex;, Unknown open() mode '%s', Unknown process %x
1126 sent message to prime_env_iter: %s, Unknown warnings category '%s',
1127 unmatched [ in regex; marked by <-- HERE in m/%s/, unmatched ( in regex;
1128 marked by <-- HERE in m/%s/, Unmatched right %s bracket, Unquoted string
1129 "%s" may clash with future reserved word, Unrecognized character %s, /%s/:
1130 Unrecognized escape \\%c in character class passed through, Unrecognized
1131 escape \\%c passed through in regex;, Unrecognized escape \\%c passed
1132 through, Unrecognized signal name "%s", Unrecognized switch: -%s  (-h will
1133 show valid options), Unsuccessful %s on filename containing newline,
1134 Unsupported directory function "%s" called, Unsupported function %s,
1135 Unsupported function fork, Unsupported script encoding, Unsupported socket
1136 function "%s" called, Unterminated attribute list, Unterminated attribute
1137 parameter in attribute list, Unterminated compressed integer, Unterminated
1138 <> operator, untie attempted while %d inner references still exist, Useless
1139 (?%s) - use /%s modifier in regex;, Useless (?-%s) - don't use /%s modifier
1140 in regex;, Useless use of %s in void context, Useless use of "re" pragma,
1141 Useless use of sort in scalar context, Useless use of %s with no values,
1142 "use" not allowed in expression, Use of bare << to mean <<"" is deprecated,
1143 Use of *glob{FILEHANDLE} is deprecated, Use of chdir('') or chdir(undef) as
1144 chdir() deprecated, Use of implicit split to @_ is deprecated, Use of
1145 inherited AUTOLOAD for non-method %s() is deprecated, Use of -l on
1146 filehandle %s, Use of "package" with no arguments is deprecated, Use of %s
1147 in printf format not supported, Use of $* is deprecated, Use of %s is
1148 deprecated, Use of $# is deprecated, Use of reference "%s" as array index,
1149 Use of reserved word "%s" is deprecated, Use of tainted arguments in %s is
1150 deprecated, Use of uninitialized value%s, Using a hash as a reference is
1151 deprecated, Using an array as a reference is deprecated, UTF-16 surrogate
1152 %s, Value of %s can be "0"; test with defined(), Value of CLI symbol "%s"
1153 too long, Variable "%s" is not imported%s, "%s" variable %s masks earlier
1154 declaration in same %s, Variable "%s" may be unavailable, Variable syntax,
1155 Variable "%s" will not stay shared, Variable length lookbehind not
1156 implemented in regex;, Version number must be a constant number, v-string
1157 in use/require is non-portable, Warning: something's wrong, Warning: unable
1158 to close filehandle %s properly, Warning: Use of "%s" without parentheses
1159 is ambiguous, Wide character in %s, write() on closed filehandle %s, X
1160 outside of string, x outside of string, Xsub "%s" called in sort, Xsub
1161 called in sort, YOU HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET!, You
1162 need to quote "%s"
1163
1164 =back
1165
1166 =head2 perllexwarn - Perl Lexical Warnings
1167
1168 =over 4
1169
1170 =item DESCRIPTION
1171
1172 =over 4
1173
1174 =item Default Warnings and Optional Warnings
1175
1176 =item What's wrong with B<-w> and C<$^W>
1177
1178 =item Controlling Warnings from the Command Line
1179
1180 B<-w>, B<-W>, B<-X>
1181
1182 =item Backward Compatibility
1183
1184 =item Category Hierarchy
1185
1186 =item Fatal Warnings
1187
1188 =item Reporting Warnings from a Module
1189
1190 =back
1191
1192 =item TODO
1193
1194 =item SEE ALSO
1195
1196 =item AUTHOR
1197
1198 =back
1199
1200 =head2 perldebtut - Perl debugging tutorial
1201
1202 =over 4
1203
1204 =item DESCRIPTION
1205
1206 =item use strict
1207
1208 =item Looking at data and -w and v
1209
1210 =item help
1211
1212 =item Stepping through code
1213
1214 =item Placeholder for a, w, t, T
1215
1216 =item REGULAR EXPRESSIONS
1217
1218 =item OUTPUT TIPS
1219
1220 =item CGI
1221
1222 =item GUIs
1223
1224 =item SUMMARY
1225
1226 =item SEE ALSO
1227
1228 =item AUTHOR
1229
1230 =item CONTRIBUTORS
1231
1232 =back
1233
1234 =head2 perldebug - Perl debugging
1235
1236 =over 4
1237
1238 =item DESCRIPTION
1239
1240 =item The Perl Debugger
1241
1242 =over 4
1243
1244 =item Debugger Commands
1245
1246 h, h [command], h h, p expr, x [maxdepth] expr, V [pkg [vars]], X [vars],
1247 T, s [expr], n [expr], r, <CR>, c [line|sub], l, l min+incr, l min-max, l
1248 line, l subname, -, v [line], f filename, /pattern/, ?pattern?, L [abw], S
1249 [[!]regex], t, t expr, b, b [line] [condition], b subname [condition], b
1250 postpone subname [condition], b load filename, b compile subname, B line, B
1251 *, a [line] command, A line, A *, w expr, W expr, W *, o, o booloption ..,
1252 o anyoption? .., o option=value .., < ?, < [ command ], << command, > ?, >
1253 command, >> command, { ?, { [ command ], {{ command, ! number, ! -number, !
1254 pattern, !! cmd, @ file, H -number, q or ^D, R, |dbcmd, ||dbcmd, command, m
1255 expr, M, man [manpage]
1256
1257 =item Configurable Options
1258
1259 C<recallCommand>, C<ShellBang>, C<pager>, C<tkRunning>, C<signalLevel>,
1260 C<warnLevel>, C<dieLevel>, C<AutoTrace>, C<LineInfo>, C<inhibit_exit>,
1261 C<PrintRet>, C<ornaments>, C<frame>, C<maxTraceLen>, C<windowSize>,
1262 C<arrayDepth>, C<hashDepth>, C<dumpDepth>, C<compactDump>, C<veryCompact>,
1263 C<globPrint>, C<DumpDBFiles>, C<DumpPackages>, C<DumpReused>, C<quote>,
1264 C<HighBit>, C<undefPrint>, C<UsageOnly>, C<TTY>, C<noTTY>, C<ReadLine>,
1265 C<NonStop>
1266
1267 =item Debugger input/output
1268
1269 Prompt, Multiline commands, Stack backtrace, Line Listing Format, Frame
1270 listing
1271
1272 =item Debugging compile-time statements
1273
1274 =item Debugger Customization
1275
1276 =item Readline Support
1277
1278 =item Editor Support for Debugging
1279
1280 =item The Perl Profiler
1281
1282 =back
1283
1284 =item Debugging regular expressions
1285
1286 =item Debugging memory usage
1287
1288 =item SEE ALSO
1289
1290 =item BUGS
1291
1292 =back
1293
1294 =head2 perlvar - Perl predefined variables
1295
1296 =over 4
1297
1298 =item DESCRIPTION
1299
1300 =over 4
1301
1302 =item Predefined Names
1303
1304 $ARG, $_, $a, $b, $<I<digits>>, $MATCH, $&, $PREMATCH, $`, $POSTMATCH, $',
1305 $LAST_PAREN_MATCH, $+, $^N, @LAST_MATCH_END, @+, $MULTILINE_MATCHING, $*,
1306 HANDLE->input_line_number(EXPR), $INPUT_LINE_NUMBER, $NR, $,
1307 IO::Handle->input_record_separator(EXPR), $INPUT_RECORD_SEPARATOR, $RS, $/,
1308 HANDLE->autoflush(EXPR), $OUTPUT_AUTOFLUSH, $|,
1309 IO::Handle->output_field_separator EXPR, $OUTPUT_FIELD_SEPARATOR, $OFS, $,,
1310 IO::Handle->output_record_separator EXPR, $OUTPUT_RECORD_SEPARATOR, $ORS,
1311 $\, $LIST_SEPARATOR, $", $SUBSCRIPT_SEPARATOR, $SUBSEP, $;, $OFMT, $#,
1312 HANDLE->format_page_number(EXPR), $FORMAT_PAGE_NUMBER, $%,
1313 HANDLE->format_lines_per_page(EXPR), $FORMAT_LINES_PER_PAGE, $=,
1314 HANDLE->format_lines_left(EXPR), $FORMAT_LINES_LEFT, $-, @LAST_MATCH_START,
1315 @-, C<$`> is the same as C<substr($var, 0, $-[0])>, C<$&> is the same as
1316 C<substr($var, $-[0], $+[0] - $-[0])>, C<$'> is the same as C<substr($var,
1317 $+[0])>, C<$1> is the same as C<substr($var, $-[1], $+[1] - $-[1])>, C<$2>
1318 is the same as C<substr($var, $-[2], $+[2] - $-[2])>, C<$3> is the same as
1319 C<substr $var, $-[3], $+[3] - $-[3])>, HANDLE->format_name(EXPR),
1320 $FORMAT_NAME, $~, HANDLE->format_top_name(EXPR), $FORMAT_TOP_NAME, $^,
1321 IO::Handle->format_line_break_characters EXPR,
1322 $FORMAT_LINE_BREAK_CHARACTERS, $:, IO::Handle->format_formfeed EXPR,
1323 $FORMAT_FORMFEED, $^L, $ACCUMULATOR, $^A, $CHILD_ERROR, $?, ${^ENCODING},
1324 $OS_ERROR, $ERRNO, $!, $EXTENDED_OS_ERROR, $^E, $EVAL_ERROR, $@,
1325 $PROCESS_ID, $PID, $$, $REAL_USER_ID, $UID, $<, $EFFECTIVE_USER_ID, $EUID,
1326 $>, $REAL_GROUP_ID, $GID, $(, $EFFECTIVE_GROUP_ID, $EGID, $),
1327 $PROGRAM_NAME, $0, $[, $], $COMPILING, $^C, $DEBUGGING, $^D,
1328 $SYSTEM_FD_MAX, $^F, $^H, %^H, $INPLACE_EDIT, $^I, $^M, $OSNAME, $^O,
1329 ${^OPEN}, $PERLDB, $^P, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
1330 0x100, 0x200, $LAST_REGEXP_CODE_RESULT, $^R, $EXCEPTIONS_BEING_CAUGHT, $^S,
1331 $BASETIME, $^T, ${^TAINT}, $PERL_VERSION, $^V, $WARNING, $^W,
1332 ${^WARNING_BITS}, ${^WIDE_SYSTEM_CALLS}, $EXECUTABLE_NAME, $^X, ARGV,
1333 $ARGV, @ARGV, @F, @INC, @_, %INC, %ENV, $ENV{expr}, %SIG, $SIG{expr}
1334
1335 =item Error Indicators
1336
1337 =item Technical Note on the Syntax of Variable Names
1338
1339 =back
1340
1341 =item BUGS
1342
1343 =back
1344
1345 =head2 perllol - Manipulating Arrays of Arrays in Perl
1346
1347 =over 4
1348
1349 =item DESCRIPTION
1350
1351 =over 4
1352
1353 =item Declaration and Access of Arrays of Arrays
1354
1355 =item Growing Your Own
1356
1357 =item Access and Printing
1358
1359 =item Slices
1360
1361 =back
1362
1363 =item SEE ALSO
1364
1365 =item AUTHOR
1366
1367 =back
1368
1369 =head2 perlopentut - tutorial on opening things in Perl
1370
1371 =over 4
1372
1373 =item DESCRIPTION
1374
1375 =item Open E<agrave> la shell
1376
1377 =over 4
1378
1379 =item Simple Opens
1380
1381 =item Pipe Opens
1382
1383 =item The Minus File
1384
1385 =item Mixing Reads and Writes
1386
1387 =item Filters 
1388
1389 =back
1390
1391 =item Open E<agrave> la C
1392
1393 =over 4
1394
1395 =item Permissions E<agrave> la mode
1396
1397 =back
1398
1399 =item Obscure Open Tricks
1400
1401 =over 4
1402
1403 =item Re-Opening Files (dups)
1404
1405 =item Dispelling the Dweomer
1406
1407 =item Paths as Opens
1408
1409 =item Single Argument Open
1410
1411 =item Playing with STDIN and STDOUT
1412
1413 =back
1414
1415 =item Other I/O Issues
1416
1417 =over 4
1418
1419 =item Opening Non-File Files
1420
1421 =item Binary Files
1422
1423 =item File Locking
1424
1425 =back
1426
1427 =item SEE ALSO 
1428
1429 =item AUTHOR and COPYRIGHT
1430
1431 =item HISTORY
1432
1433 =back
1434
1435 =head2 perlpacktut - tutorial on C<pack> and C<unpack>
1436
1437 =over 4
1438
1439 =item DESCRIPTION
1440
1441 =item The Basic Principle
1442
1443 =item Packing Text
1444
1445 =item Packing Numbers
1446
1447 =over 4
1448
1449 =item Integers
1450
1451 =item Unpacking a Stack Frame
1452
1453 =item How to Eat an Egg on a Net
1454
1455 =item Floating point Numbers
1456
1457 =back
1458
1459 =item Exotic Templates
1460
1461 =over 4
1462
1463 =item Bit Strings
1464
1465 =item Uuencoding
1466
1467 =item Doing Sums
1468
1469 =item  Unicode
1470
1471 =item Another Portable Binary Encoding
1472
1473 =back
1474
1475 =item Lengths and Widths
1476
1477 =over 4
1478
1479 =item String Lengths
1480
1481 =item Dynamic Templates
1482
1483 =back
1484
1485 =item Packing and Unpacking C Structures
1486
1487 =over 4
1488
1489 =item The Alignment Pit
1490
1491 =item Alignment, Take 2
1492
1493 =item Alignment, Take 3
1494
1495 =item Pointers for How to Use Them
1496
1497 =back
1498
1499 =item Pack Recipes
1500
1501 =item Funnies Section
1502
1503 =item Authors
1504
1505 =back
1506
1507 =head2 perlretut - Perl regular expressions tutorial
1508
1509 =over 4
1510
1511 =item DESCRIPTION
1512
1513 =item Part 1: The basics
1514
1515 =over 4
1516
1517 =item Simple word matching
1518
1519 =item Using character classes
1520
1521 =item Matching this or that
1522
1523 =item Grouping things and hierarchical matching
1524
1525 =item Extracting matches
1526
1527 =item Matching repetitions
1528
1529 =item Building a regexp
1530
1531 =item Using regular expressions in Perl
1532
1533 =back
1534
1535 =item Part 2: Power tools
1536
1537 =over 4
1538
1539 =item More on characters, strings, and character classes
1540
1541 =item Compiling and saving regular expressions
1542
1543 =item Embedding comments and modifiers in a regular expression
1544
1545 =item Non-capturing groupings
1546
1547 =item Looking ahead and looking behind
1548
1549 =item Using independent subexpressions to prevent backtracking
1550
1551 =item Conditional expressions
1552
1553 =item A bit of magic: executing Perl code in a regular expression
1554
1555 =item Pragmas and debugging
1556
1557 =back
1558
1559 =item BUGS
1560
1561 =item SEE ALSO
1562
1563 =item AUTHOR AND COPYRIGHT
1564
1565 =over 4
1566
1567 =item Acknowledgments
1568
1569 =back
1570
1571 =back
1572
1573 =head2 perlre - Perl regular expressions
1574
1575 =over 4
1576
1577 =item DESCRIPTION
1578
1579 i, m, s, x
1580
1581 =over 4
1582
1583 =item Regular Expressions
1584
1585 [1], [2], [3], cntrl, graph, print, punct, xdigit
1586
1587 =item Extended Patterns
1588
1589 C<(?#text)>, C<(?imsx-imsx)>, C<(?:pattern)>, C<(?imsx-imsx:pattern)>,
1590 C<(?=pattern)>, C<(?!pattern)>, C<(?<=pattern)>, C<(?<!pattern)>, C<(?{
1591 code })>, C<(??{ code })>, C<< (?>pattern) >>,
1592 C<(?(condition)yes-pattern|no-pattern)>, C<(?(condition)yes-pattern)>
1593
1594 =item Backtracking
1595
1596 =item Version 8 Regular Expressions
1597
1598 =item Warning on \1 vs $1
1599
1600 =item Repeated patterns matching zero-length substring
1601
1602 =item Combining pieces together
1603
1604 C<ST>, C<S|T>, C<S{REPEAT_COUNT}>, C<S{min,max}>, C<S{min,max}?>, C<S?>,
1605 C<S*>, C<S+>, C<S??>, C<S*?>, C<S+?>, C<< (?>S) >>, C<(?=S)>, C<(?<=S)>,
1606 C<(?!S)>, C<(?<!S)>, C<(??{ EXPR })>,
1607 C<(?(condition)yes-pattern|no-pattern)>
1608
1609 =item Creating custom RE engines
1610
1611 =back
1612
1613 =item BUGS
1614
1615 =item SEE ALSO
1616
1617 =back
1618
1619 =head2 perlref - Perl references and nested data structures
1620
1621 =over 4
1622
1623 =item NOTE
1624
1625 =item DESCRIPTION
1626
1627 =over 4
1628
1629 =item Making References
1630
1631 =item Using References
1632
1633 =item Symbolic references
1634
1635 =item Not-so-symbolic references
1636
1637 =item Pseudo-hashes: Using an array as a hash
1638
1639 =item Function Templates
1640
1641 =back
1642
1643 =item WARNING
1644
1645 =item SEE ALSO
1646
1647 =back
1648
1649 =head2 perlform - Perl formats
1650
1651 =over 4
1652
1653 =item DESCRIPTION
1654
1655 =over 4
1656
1657 =item Format Variables
1658
1659 =back
1660
1661 =item NOTES
1662
1663 =over 4
1664
1665 =item Footers
1666
1667 =item Accessing Formatting Internals
1668
1669 =back
1670
1671 =item WARNINGS
1672
1673 =back
1674
1675 =head2 perlboot - Beginner's Object-Oriented Tutorial
1676
1677 =over 4
1678
1679 =item DESCRIPTION
1680
1681 =over 4
1682
1683 =item If we could talk to the animals...
1684
1685 =item Introducing the method invocation arrow
1686
1687 =item Invoking a barnyard
1688
1689 =item The extra parameter of method invocation
1690
1691 =item Calling a second method to simplify things
1692
1693 =item Inheriting the windpipes
1694
1695 =item A few notes about @ISA
1696
1697 =item Overriding the methods
1698
1699 =item Starting the search from a different place
1700
1701 =item The SUPER way of doing things
1702
1703 =item Where we're at so far...
1704
1705 =item A horse is a horse, of course of course -- or is it?
1706
1707 =item Invoking an instance method
1708
1709 =item Accessing the instance data
1710
1711 =item How to build a horse
1712
1713 =item Inheriting the constructor
1714
1715 =item Making a method work with either classes or instances
1716
1717 =item Adding parameters to a method
1718
1719 =item More interesting instances
1720
1721 =item A horse of a different color
1722
1723 =item Summary
1724
1725 =back
1726
1727 =item SEE ALSO
1728
1729 =item COPYRIGHT
1730
1731 =back
1732
1733 =head2 perltoot - Tom's object-oriented tutorial for perl
1734
1735 =over 4
1736
1737 =item DESCRIPTION
1738
1739 =item Creating a Class
1740
1741 =over 4
1742
1743 =item Object Representation
1744
1745 =item Class Interface
1746
1747 =item Constructors and Instance Methods
1748
1749 =item Planning for the Future: Better Constructors
1750
1751 =item Destructors
1752
1753 =item Other Object Methods
1754
1755 =back
1756
1757 =item Class Data
1758
1759 =over 4
1760
1761 =item Accessing Class Data
1762
1763 =item Debugging Methods
1764
1765 =item Class Destructors
1766
1767 =item Documenting the Interface
1768
1769 =back
1770
1771 =item Aggregation
1772
1773 =item Inheritance
1774
1775 =over 4
1776
1777 =item Overridden Methods
1778
1779 =item Multiple Inheritance
1780
1781 =item UNIVERSAL: The Root of All Objects
1782
1783 =back
1784
1785 =item Alternate Object Representations
1786
1787 =over 4
1788
1789 =item Arrays as Objects
1790
1791 =item Closures as Objects
1792
1793 =back
1794
1795 =item AUTOLOAD: Proxy Methods
1796
1797 =over 4
1798
1799 =item Autoloaded Data Methods
1800
1801 =item Inherited Autoloaded Data Methods
1802
1803 =back
1804
1805 =item Metaclassical Tools
1806
1807 =over 4
1808
1809 =item Class::Struct
1810
1811 =item Data Members as Variables
1812
1813 =back
1814
1815 =item NOTES
1816
1817 =over 4
1818
1819 =item Object Terminology
1820
1821 =back
1822
1823 =item SEE ALSO
1824
1825 =item AUTHOR AND COPYRIGHT
1826
1827 =item COPYRIGHT
1828
1829 =over 4
1830
1831 =item Acknowledgments
1832
1833 =back
1834
1835 =back
1836
1837 =head2 perltooc - Tom's OO Tutorial for Class Data in Perl
1838
1839 =over 4
1840
1841 =item DESCRIPTION
1842
1843 =item Class Data in a Can
1844
1845 =item Class Data as Package Variables
1846
1847 =over 4
1848
1849 =item Putting All Your Eggs in One Basket
1850
1851 =item Inheritance Concerns
1852
1853 =item The Eponymous Meta-Object
1854
1855 =item Indirect References to Class Data
1856
1857 =item Monadic Classes
1858
1859 =item Translucent Attributes
1860
1861 =back
1862
1863 =item Class Data as Lexical Variables
1864
1865 =over 4
1866
1867 =item Privacy and Responsibility 
1868
1869 =item File-Scoped Lexicals
1870
1871 =item More Inheritance Concerns
1872
1873 =item Locking the Door and Throwing Away the Key
1874
1875 =item Translucency Revisited
1876
1877 =back
1878
1879 =item NOTES
1880
1881 =item SEE ALSO
1882
1883 =item AUTHOR AND COPYRIGHT
1884
1885 =item ACKNOWLEDGEMENTS
1886
1887 =item HISTORY
1888
1889 =back
1890
1891 =head2 perlobj - Perl objects
1892
1893 =over 4
1894
1895 =item DESCRIPTION
1896
1897 =over 4
1898
1899 =item An Object is Simply a Reference
1900
1901 =item A Class is Simply a Package
1902
1903 =item A Method is Simply a Subroutine
1904
1905 =item Method Invocation
1906
1907 =item Indirect Object Syntax
1908
1909 =item Default UNIVERSAL methods
1910
1911 isa(CLASS), can(METHOD), VERSION( [NEED] )
1912
1913 =item Destructors
1914
1915 =item Summary
1916
1917 =item Two-Phased Garbage Collection
1918
1919 =back
1920
1921 =item SEE ALSO
1922
1923 =back
1924
1925 =head2 perlbot - Bag'o Object Tricks (the BOT)
1926
1927 =over 4
1928
1929 =item DESCRIPTION
1930
1931 =item OO SCALING TIPS
1932
1933 =item INSTANCE VARIABLES
1934
1935 =item SCALAR INSTANCE VARIABLES
1936
1937 =item INSTANCE VARIABLE INHERITANCE
1938
1939 =item OBJECT RELATIONSHIPS
1940
1941 =item OVERRIDING SUPERCLASS METHODS
1942
1943 =item USING RELATIONSHIP WITH SDBM
1944
1945 =item THINKING OF CODE REUSE
1946
1947 =item CLASS CONTEXT AND THE OBJECT
1948
1949 =item INHERITING A CONSTRUCTOR
1950
1951 =item DELEGATION
1952
1953 =back
1954
1955 =head2 perltie - how to hide an object class in a simple variable
1956
1957 =over 4
1958
1959 =item SYNOPSIS
1960
1961 =item DESCRIPTION
1962
1963 =over 4
1964
1965 =item Tying Scalars
1966
1967 TIESCALAR classname, LIST, FETCH this, STORE this, value, UNTIE this,
1968 DESTROY this
1969
1970 =item Tying Arrays
1971
1972 TIEARRAY classname, LIST, FETCH this, index, STORE this, index, value,
1973 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
1974 key, DELETE this, key, CLEAR this, PUSH this, LIST, POP this, SHIFT this,
1975 UNSHIFT this, LIST, SPLICE this, offset, length, LIST, UNTIE this, DESTROY
1976 this
1977
1978 =item Tying Hashes
1979
1980 USER, HOME, CLOBBER, LIST, TIEHASH classname, LIST, FETCH this, key, STORE
1981 this, key, value, DELETE this, key, CLEAR this, EXISTS this, key, FIRSTKEY
1982 this, NEXTKEY this, lastkey, UNTIE this, DESTROY this
1983
1984 =item Tying FileHandles
1985
1986 TIEHANDLE classname, LIST, WRITE this, LIST, PRINT this, LIST, PRINTF this,
1987 LIST, READ this, LIST, READLINE this, GETC this, CLOSE this, UNTIE this,
1988 DESTROY this
1989
1990 =item UNTIE this
1991
1992 =item The C<untie> Gotcha
1993
1994 =back
1995
1996 =item SEE ALSO
1997
1998 =item BUGS
1999
2000 =item AUTHOR
2001
2002 =back
2003
2004 =head2 perlipc - Perl interprocess communication (signals, fifos, pipes,
2005 safe subprocesses, sockets, and semaphores)
2006
2007 =over 4
2008
2009 =item DESCRIPTION
2010
2011 =item Signals
2012
2013 =item Named Pipes
2014
2015 =over 4
2016
2017 =item WARNING
2018
2019 =back
2020
2021 =item Using open() for IPC
2022
2023 =over 4
2024
2025 =item Filehandles
2026
2027 =item Background Processes
2028
2029 =item Complete Dissociation of Child from Parent
2030
2031 =item Safe Pipe Opens
2032
2033 =item Bidirectional Communication with Another Process
2034
2035 =item Bidirectional Communication with Yourself
2036
2037 =back
2038
2039 =item Sockets: Client/Server Communication
2040
2041 =over 4
2042
2043 =item Internet Line Terminators
2044
2045 =item Internet TCP Clients and Servers
2046
2047 =item Unix-Domain TCP Clients and Servers
2048
2049 =back
2050
2051 =item TCP Clients with IO::Socket
2052
2053 =over 4
2054
2055 =item A Simple Client
2056
2057 C<Proto>, C<PeerAddr>, C<PeerPort>
2058
2059 =item A Webget Client
2060
2061 =item Interactive Client with IO::Socket
2062
2063 =back
2064
2065 =item TCP Servers with IO::Socket
2066
2067 Proto, LocalPort, Listen, Reuse
2068
2069 =item UDP: Message Passing
2070
2071 =item SysV IPC
2072
2073 =item NOTES
2074
2075 =item BUGS
2076
2077 =item AUTHOR
2078
2079 =item SEE ALSO
2080
2081 =back
2082
2083 =head2 perlfork - Perl's fork() emulation (EXPERIMENTAL, subject to change)
2084
2085 =over 4
2086
2087 =item SYNOPSIS
2088
2089 =item DESCRIPTION
2090
2091 =over 4
2092
2093 =item Behavior of other Perl features in forked pseudo-processes
2094
2095 $$ or $PROCESS_ID, %ENV, chdir() and all other builtins that accept
2096 filenames, wait() and waitpid(), kill(), exec(), exit(), Open handles to
2097 files, directories and network sockets
2098
2099 =item Resource limits
2100
2101 =item Killing the parent process
2102
2103 =item Lifetime of the parent process and pseudo-processes
2104
2105 =item CAVEATS AND LIMITATIONS
2106
2107 BEGIN blocks, Open filehandles, Forking pipe open() not yet implemented,
2108 Global state maintained by XSUBs, Interpreter embedded in larger
2109 application, Thread-safety of extensions
2110
2111 =back
2112
2113 =item BUGS
2114
2115 =item AUTHOR
2116
2117 =item SEE ALSO
2118
2119 =back
2120
2121 =head2 perlnumber - semantics of numbers and numeric operations in Perl
2122
2123 =over 4
2124
2125 =item SYNOPSIS
2126
2127 =item DESCRIPTION
2128
2129 =item Storing numbers
2130
2131 =item Numeric operators and numeric conversions
2132
2133 =item Flavors of Perl numeric operations
2134
2135 Arithmetic operators except, C<no integer>, Arithmetic operators except,
2136 C<use integer>, Bitwise operators, C<no integer>, Bitwise operators, C<use
2137 integer>, Operators which expect an integer, Operators which expect a
2138 string
2139
2140 =item AUTHOR
2141
2142 =item SEE ALSO
2143
2144 =back
2145
2146 =head2 perlthrtut - tutorial on threads in Perl
2147
2148 =over 4
2149
2150 =item DESCRIPTION
2151
2152 =back
2153
2154 =head2 perlothrtut - old tutorial on threads in Perl
2155
2156 =over 4
2157
2158 =item DESCRIPTION
2159
2160 =item What Is A Thread Anyway?
2161
2162 =item Threaded Program Models
2163
2164 =over 4
2165
2166 =item Boss/Worker
2167
2168 =item Work Crew
2169
2170 =item Pipeline
2171
2172 =back
2173
2174 =item Native threads
2175
2176 =item What kind of threads are perl threads?
2177
2178 =item Threadsafe Modules
2179
2180 =item Thread Basics
2181
2182 =over 4
2183
2184 =item Basic Thread Support
2185
2186 =item Creating Threads
2187
2188 =item Giving up control
2189
2190 =item Waiting For A Thread To Exit
2191
2192 =item Errors In Threads
2193
2194 =item Ignoring A Thread
2195
2196 =back
2197
2198 =item Threads And Data
2199
2200 =over 4
2201
2202 =item Shared And Unshared Data
2203
2204 =item Thread Pitfall: Races
2205
2206 =item Controlling access: lock()
2207
2208 =item Thread Pitfall: Deadlocks
2209
2210 =item Queues: Passing Data Around
2211
2212 =back
2213
2214 =item Threads And Code
2215
2216 =over 4
2217
2218 =item Semaphores: Synchronizing Data Access
2219
2220 Basic semaphores, Advanced Semaphores
2221
2222 =item Attributes: Restricting Access To Subroutines
2223
2224 =item Subroutine Locks
2225
2226 =item Methods
2227
2228 =item Locking A Subroutine
2229
2230 =back
2231
2232 =item General Thread Utility Routines
2233
2234 =over 4
2235
2236 =item What Thread Am I In?
2237
2238 =item Thread IDs
2239
2240 =item Are These Threads The Same?
2241
2242 =item What Threads Are Running?
2243
2244 =back
2245
2246 =item A Complete Example
2247
2248 =item Conclusion
2249
2250 =item Bibliography
2251
2252 =over 4
2253
2254 =item Introductory Texts
2255
2256 =item OS-Related References
2257
2258 =item Other References
2259
2260 =back
2261
2262 =item Acknowledgements
2263
2264 =item AUTHOR
2265
2266 =item Copyrights
2267
2268 =back
2269
2270 =head2 perlport - Writing portable Perl
2271
2272 =over 4
2273
2274 =item DESCRIPTION
2275
2276 Not all Perl programs have to be portable, Nearly all of Perl already I<is>
2277 portable
2278
2279 =item ISSUES
2280
2281 =over 4
2282
2283 =item Newlines
2284
2285 =item Numbers endianness and Width
2286
2287 =item Files and Filesystems
2288
2289 =item System Interaction
2290
2291 =item Interprocess Communication (IPC)
2292
2293 =item External Subroutines (XS)
2294
2295 =item Standard Modules
2296
2297 =item Time and Date
2298
2299 =item Character sets and character encoding
2300
2301 =item Internationalisation
2302
2303 =item System Resources
2304
2305 =item Security
2306
2307 =item Style
2308
2309 =back
2310
2311 =item CPAN Testers
2312
2313 Mailing list: cpan-testers@perl.org, Testing results:
2314 http://testers.cpan.org/
2315
2316 =item PLATFORMS
2317
2318 =over 4
2319
2320 =item Unix
2321
2322 =item DOS and Derivatives
2323
2324 =item S<Mac OS>
2325
2326 =item VMS
2327
2328 =item VOS
2329
2330 =item EBCDIC Platforms
2331
2332 =item Acorn RISC OS
2333
2334 =item Other perls
2335
2336 =back
2337
2338 =item FUNCTION IMPLEMENTATIONS
2339
2340 =over 4
2341
2342 =item Alphabetical Listing of Perl Functions
2343
2344 -I<X> FILEHANDLE, -I<X> EXPR, -I<X>, alarm SECONDS, alarm, binmode
2345 FILEHANDLE, chmod LIST, chown LIST, chroot FILENAME, chroot, crypt
2346 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MODE, dump LABEL, exec
2347 LIST, exit EXPR, exit, fcntl FILEHANDLE,FUNCTION,SCALAR, flock
2348 FILEHANDLE,OPERATION, fork, getlogin, getpgrp PID, getppid, getpriority
2349 WHICH,WHO, getpwnam NAME, getgrnam NAME, getnetbyname NAME, getpwuid UID,
2350 getgrgid GID, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
2351 getservbyport PORT,PROTO, getpwent, getgrent, gethostent, getnetent,
2352 getprotoent, getservent, setpwent, setgrent, sethostent STAYOPEN, setnetent
2353 STAYOPEN, setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent,
2354 endhostent, endnetent, endprotoent, endservent, getsockopt
2355 SOCKET,LEVEL,OPTNAME, glob EXPR, glob, ioctl FILEHANDLE,FUNCTION,SCALAR,
2356 kill SIGNAL, LIST, link OLDFILE,NEWFILE, lstat FILEHANDLE, lstat EXPR,
2357 lstat, msgctl ID,CMD,ARG, msgget KEY,FLAGS, msgsnd ID,MSG,FLAGS, msgrcv
2358 ID,VAR,SIZE,TYPE,FLAGS, open FILEHANDLE,EXPR, open FILEHANDLE, pipe
2359 READHANDLE,WRITEHANDLE, readlink EXPR, readlink, select
2360 RBITS,WBITS,EBITS,TIMEOUT, semctl ID,SEMNUM,CMD,ARG, semget
2361 KEY,NSEMS,FLAGS, semop KEY,OPSTRING, setgrent, setpgrp PID,PGRP,
2362 setpriority WHICH,WHO,PRIORITY, setpwent, setsockopt
2363 SOCKET,LEVEL,OPTNAME,OPTVAL, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS,
2364 shmread ID,VAR,POS,SIZE, shmwrite ID,STRING,POS,SIZE, sockatmark SOCKET,
2365 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, stat FILEHANDLE, stat
2366 EXPR, stat, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
2367 FILEHANDLE,FILENAME,MODE,PERMS, system LIST, times, truncate
2368 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, umask EXPR, umask, utime LIST,
2369 wait, waitpid PID,FLAGS
2370
2371 =back
2372
2373 =item CHANGES
2374
2375 v1.48, 02 February 2001, v1.47, 22 March 2000, v1.46, 12 February 2000,
2376 v1.45, 20 December 1999, v1.44, 19 July 1999, v1.43, 24 May 1999, v1.42, 22
2377 May 1999, v1.41, 19 May 1999, v1.40, 11 April 1999, v1.39, 11 February
2378 1999, v1.38, 31 December 1998, v1.37, 19 December 1998, v1.36, 9 September
2379 1998, v1.35, 13 August 1998, v1.33, 06 August 1998, v1.32, 05 August 1998,
2380 v1.30, 03 August 1998, v1.23, 10 July 1998
2381
2382 =item Supported Platforms
2383
2384 =item SEE ALSO
2385
2386 =item AUTHORS / CONTRIBUTORS
2387
2388 =back
2389
2390 =head2 perllocale - Perl locale handling (internationalization and
2391 localization)
2392
2393 =over 4
2394
2395 =item DESCRIPTION
2396
2397 =item PREPARING TO USE LOCALES
2398
2399 =item USING LOCALES
2400
2401 =over 4
2402
2403 =item The use locale pragma
2404
2405 =item The setlocale function
2406
2407 =item Finding locales
2408
2409 =item LOCALE PROBLEMS
2410
2411 =item Temporarily fixing locale problems
2412
2413 =item Permanently fixing locale problems
2414
2415 =item Permanently fixing your system's locale configuration
2416
2417 =item Fixing system locale configuration
2418
2419 =item The localeconv function
2420
2421 =item I18N::Langinfo
2422
2423 =back
2424
2425 =item LOCALE CATEGORIES
2426
2427 =over 4
2428
2429 =item Category LC_COLLATE: Collation
2430
2431 =item Category LC_CTYPE: Character Types
2432
2433 =item Category LC_NUMERIC: Numeric Formatting
2434
2435 =item Category LC_MONETARY: Formatting of monetary amounts
2436
2437 =item LC_TIME
2438
2439 =item Other categories
2440
2441 =back
2442
2443 =item SECURITY
2444
2445 =item ENVIRONMENT
2446
2447 PERL_BADLANG, LC_ALL, LANGUAGE, LC_CTYPE, LC_COLLATE, LC_MONETARY,
2448 LC_NUMERIC, LC_TIME, LANG
2449
2450 =item NOTES
2451
2452 =over 4
2453
2454 =item Backward compatibility
2455
2456 =item I18N:Collate obsolete
2457
2458 =item Sort speed and memory use impacts
2459
2460 =item write() and LC_NUMERIC
2461
2462 =item Freely available locale definitions
2463
2464 =item I18n and l10n
2465
2466 =item An imperfect standard
2467
2468 =back
2469
2470 =item BUGS
2471
2472 =over 4
2473
2474 =item Broken systems
2475
2476 =back
2477
2478 =item SEE ALSO
2479
2480 =item HISTORY
2481
2482 =back
2483
2484 =head2 perluniintro - Perl Unicode introduction
2485
2486 =over 4
2487
2488 =item DESCRIPTION
2489
2490 =over 4
2491
2492 =item Unicode
2493
2494 =item Perl's Unicode Support
2495
2496 =item Perl's Unicode Model
2497
2498 =item Creating Unicode
2499
2500 =item Handling Unicode
2501
2502 =item Legacy Encodings
2503
2504 =item Unicode I/O
2505
2506 =item Displaying Unicode As Text
2507
2508 =item Special Cases
2509
2510 =item Advanced Topics
2511
2512 =item Miscellaneous
2513
2514 =item Questions With Answers
2515
2516 , , , , , , 
2517
2518 =item Hexadecimal Notation
2519
2520 =item Further Resources
2521
2522 =back
2523
2524 =item UNICODE IN OLDER PERLS
2525
2526 =item SEE ALSO
2527
2528 =item ACKNOWLEDGEMENTS
2529
2530 =item AUTHOR, COPYRIGHT, AND LICENSE
2531
2532 =back
2533
2534 =head2 perlunicode - Unicode support in Perl
2535
2536 =over 4
2537
2538 =item DESCRIPTION
2539
2540 =over 4
2541
2542 =item Important Caveats
2543
2544 Input and Output Disciplines, Regular Expressions, C<use utf8> still needed
2545 to enable UTF-8/UTF-EBCDIC in scripts
2546
2547 =item Byte and Character semantics
2548
2549 =item Effects of character semantics
2550
2551 =item Scripts
2552
2553 =item Blocks
2554
2555 =item Character encodings for input and output
2556
2557 =item Unicode Regular Expression Support Level
2558
2559 =item Unicode Encodings
2560
2561 =item Security Implications of Malformed UTF-8
2562
2563 =item Unicode in Perl on EBCDIC
2564
2565 =item Using Unicode in XS
2566
2567 =back
2568
2569 =item BUGS
2570
2571 =back
2572
2573 =head2 perlebcdic - Considerations for running Perl on EBCDIC platforms
2574
2575 =over 4
2576
2577 =item DESCRIPTION
2578
2579 =item COMMON CHARACTER CODE SETS
2580
2581 =over 4
2582
2583 =item ASCII
2584
2585 =item ISO 8859
2586
2587 =item Latin 1 (ISO 8859-1)
2588
2589 =item EBCDIC
2590
2591 =item 13 variant characters
2592
2593 =item 0037
2594
2595 =item 1047
2596
2597 =item POSIX-BC
2598
2599 =item Unicode and UTF
2600
2601 =item Using Encode
2602
2603 =back
2604
2605 =item SINGLE OCTET TABLES
2606
2607 recipe 0, recipe 1, recipe 2, recipe 3, recipe 4, recipe 5, recipe 6
2608
2609 =item IDENTIFYING CHARACTER CODE SETS
2610
2611 =item CONVERSIONS
2612
2613 =over 4
2614
2615 =item tr///
2616
2617 =item iconv
2618
2619 =item C RTL
2620
2621 =back
2622
2623 =item OPERATOR DIFFERENCES
2624
2625 =item FUNCTION DIFFERENCES
2626
2627 chr(), ord(), pack(), print(), printf(), sort(), sprintf(), unpack()
2628
2629 =item REGULAR EXPRESSION DIFFERENCES
2630
2631 =item SOCKETS
2632
2633 =item SORTING
2634
2635 =over 4
2636
2637 =item Ignore ASCII vs. EBCDIC sort differences.
2638
2639 =item MONO CASE then sort data.
2640
2641 =item Convert, sort data, then re convert.
2642
2643 =item Perform sorting on one type of machine only.
2644
2645 =back
2646
2647 =item TRANSFORMATION FORMATS
2648
2649 =over 4
2650
2651 =item URL decoding and encoding
2652
2653 =item uu encoding and decoding
2654
2655 =item Quoted-Printable encoding and decoding
2656
2657 =item Caesarian ciphers
2658
2659 =back
2660
2661 =item Hashing order and checksums
2662
2663 =item I18N AND L10N
2664
2665 =item MULTI OCTET CHARACTER SETS
2666
2667 =item OS ISSUES
2668
2669 =over 4
2670
2671 =item OS/400 
2672
2673 IFS access
2674
2675 =item OS/390, z/OS
2676
2677 chcp, dataset access, OS/390, z/OS iconv, locales
2678
2679 =item VM/ESA?
2680
2681 =item POSIX-BC?
2682
2683 =back
2684
2685 =item BUGS
2686
2687 =item SEE ALSO
2688
2689 =item REFERENCES
2690
2691 =item HISTORY
2692
2693 =item AUTHOR
2694
2695 =back
2696
2697 =head2 perlsec - Perl security
2698
2699 =over 4
2700
2701 =item DESCRIPTION
2702
2703 =over 4
2704
2705 =item Laundering and Detecting Tainted Data
2706
2707 =item Switches On the "#!" Line
2708
2709 =item Cleaning Up Your Path
2710
2711 =item Security Bugs
2712
2713 =item Protecting Your Programs
2714
2715 =back
2716
2717 =item SEE ALSO
2718
2719 =back
2720
2721 =head2 perlmod - Perl modules (packages and symbol tables)
2722
2723 =over 4
2724
2725 =item DESCRIPTION
2726
2727 =over 4
2728
2729 =item Packages
2730
2731 =item Symbol Tables
2732
2733 =item Package Constructors and Destructors
2734
2735 =item Perl Classes
2736
2737 =item Perl Modules
2738
2739 =item Making your module threadsafe
2740
2741 =back
2742
2743 =item SEE ALSO
2744
2745 =back
2746
2747 =head2 perlmodinstall - Installing CPAN Modules
2748
2749 =over 4
2750
2751 =item DESCRIPTION
2752
2753 =over 4
2754
2755 =item PREAMBLE
2756
2757 B<DECOMPRESS> the file, B<UNPACK> the file into a directory, B<BUILD> the
2758 module (sometimes unnecessary), B<INSTALL> the module
2759
2760 =back
2761
2762 =item PORTABILITY
2763
2764 =item HEY
2765
2766 =item AUTHOR
2767
2768 =item COPYRIGHT
2769
2770 =back
2771
2772 =head2 perlmodlib - constructing new Perl modules and finding existing ones
2773
2774 =over 4
2775
2776 =item DESCRIPTION
2777
2778 =item THE PERL MODULE LIBRARY
2779
2780 =over 4
2781
2782 =item Pragmatic Modules
2783
2784 attributes, autouse, base, blib, bytes, charnames, constant, diagnostics,
2785 encoding, fields, filetest, integer, less, locale, open, overload, sigtrap,
2786 sort, strict, subs, utf8, vars, vmsish, warnings, warnings::register
2787
2788 =item Standard Modules
2789
2790 AnyDBM_File, Attribute::Handlers, AutoLoader, AutoSplit, Benchmark, CGI,
2791 CGI::Apache, CGI::Carp, CGI::Cookie, CGI::Fast, CGI::Pretty, CGI::Push,
2792 CGI::Switch, CGI::Util, CPAN, CPAN::FirstTime, CPAN::Nox, Carp,
2793 Carp::Heavy, Class::ISA, Class::Struct, Cwd, DB, Devel::SelfStubber,
2794 Digest, DirHandle, Dumpvalue, English, Env, Exporter, Exporter::Heavy,
2795 ExtUtils::Command, ExtUtils::Constant, ExtUtils::Embed, ExtUtils::Install,
2796 ExtUtils::Installed, ExtUtils::Liblist, ExtUtils::MM_Cygwin,
2797 ExtUtils::MM_NW5, ExtUtils::MM_OS2, ExtUtils::MM_Unix, ExtUtils::MM_VMS,
2798 ExtUtils::MM_Win32, ExtUtils::MakeMaker, ExtUtils::Manifest,
2799 ExtUtils::Mkbootstrap, ExtUtils::Mksymlists, ExtUtils::Packlist,
2800 ExtUtils::testlib, Fatal, File::Basename, File::CheckTree, File::Compare,
2801 File::Copy, File::DosGlob, File::Find, File::Path, File::Spec,
2802 File::Spec::Cygwin, File::Spec::Epoc, File::Spec::Functions,
2803 File::Spec::Mac, File::Spec::OS2, File::Spec::Unix, File::Spec::VMS,
2804 File::Spec::Win32, File::Temp, File::stat, FileCache, FileHandle,
2805 Filter::Simple, FindBin, Getopt::Long, Getopt::Std, I18N::Collate,
2806 I18N::LangTags, I18N::LangTags::List, IPC::Open2, IPC::Open3,
2807 Locale::Constants, Locale::Country, Locale::Currency, Locale::Language,
2808 Locale::Maketext, Locale::Maketext::TPJ13, Math::BigFloat, Math::BigInt,
2809 Math::BigInt::Calc, Math::Complex, Math::Trig, Memoize,
2810 Memoize::AnyDBM_File, Memoize::Expire, Memoize::ExpireFile,
2811 Memoize::ExpireTest, Memoize::NDBM_File, Memoize::SDBM_File,
2812 Memoize::Storable, NEXT, Net::Cmd, Net::Config, Net::Domain, Net::FTP,
2813 Net::NNTP, Net::Netrc, Net::POP3, Net::Ping, Net::SMTP, Net::Time,
2814 Net::hostent, Net::libnetFAQ, Net::netent, Net::protoent, Net::servent,
2815 PerlIO, Pod::Checker, Pod::Find, Pod::Functions, Pod::Html,
2816 Pod::InputObjects, Pod::LaTeX, Pod::Man, Pod::ParseLink, Pod::ParseUtils,
2817 Pod::Parser, Pod::Plainer, Pod::Select, Pod::Text, Pod::Text::Color,
2818 Pod::Text::Overstrike, Pod::Text::Termcap, Pod::Usage, Pod::t::basic,
2819 Search::Dict, SelectSaver, SelfLoader, Shell, Switch, Symbol,
2820 Term::ANSIColor, Term::Cap, Term::Complete, Term::ReadLine, Test,
2821 Test::Builder, Test::Harness, Test::More, Test::Simple, Test::Tutorial,
2822 Text::Abbrev, Text::Balanced, Text::ParseWords, Text::Soundex, Text::Tabs,
2823 Text::Wrap, Thread, Tie::Array, Tie::Handle, Tie::Hash, Tie::RefHash,
2824 Tie::Scalar, Tie::SubstrHash, Time::Local, Time::gmtime, Time::localtime,
2825 Time::tm, UNIVERSAL, Unicode::Collate, Unicode::UCD, User::grent,
2826 User::pwent, Win32
2827
2828 =item Extension Modules
2829
2830 =back
2831
2832 =item CPAN
2833
2834 =over 4
2835
2836 =item Africa
2837
2838 =item Asia
2839
2840 =item Central America
2841
2842 =item Europe
2843
2844 =item North America
2845
2846 =item Oceania
2847
2848 =item South America
2849
2850 =back
2851
2852 =item Modules: Creation, Use, and Abuse
2853
2854 =over 4
2855
2856 =item Guidelines for Module Creation
2857
2858 =item Guidelines for Converting Perl 4 Library Scripts into Modules
2859
2860 =item Guidelines for Reusing Application Code
2861
2862 =back
2863
2864 =item NOTE
2865
2866 =back
2867
2868 =head2 perlmodstyle - Perl module style guide
2869
2870 =over 4
2871
2872 =item INTRODUCTION
2873
2874 =item QUICK CHECKLIST
2875
2876 =over 4
2877
2878 =item Before you start
2879
2880 =item The API
2881
2882 =item Stability
2883
2884 =item Documentation
2885
2886 =item Release considerations
2887
2888 =back
2889
2890 =item BEFORE YOU START WRITING A MODULE
2891
2892 =over 4
2893
2894 =item Has it been done before?
2895
2896 =item Do one thing and do it well
2897
2898 =item What's in a name?
2899
2900 =back
2901
2902 =item DESIGNING AND WRITING YOUR MODULE
2903
2904 =over 4
2905
2906 =item To OO or not to OO?
2907
2908 =item Designing your API
2909
2910 Write simple routines to do simple things, Separate functionality from
2911 output, Provide sensible shortcuts and defaults, Naming conventions,
2912 Parameter passing
2913
2914 =item Strictness and warnings
2915
2916 =item Backwards compatibility
2917
2918 =item Error handling and messages
2919
2920 =back
2921
2922 =item DOCUMENTING YOUR MODULE
2923
2924 =over 4
2925
2926 =item POD
2927
2928 =item README, INSTALL, release notes, changelogs
2929
2930 =back
2931
2932 =item RELEASE CONSIDERATIONS
2933
2934 =over 4
2935
2936 =item Version numbering
2937
2938 =item Pre-requisites
2939
2940 =item Testing
2941
2942 =item Packaging
2943
2944 =item Licensing
2945
2946 =back
2947
2948 =item COMMON PITFALLS
2949
2950 =over 4
2951
2952 =item Reinventing the wheel
2953
2954 =item Trying to do too much
2955
2956 =item Inappropriate documentation
2957
2958 =back
2959
2960 =item SEE ALSO
2961
2962 L<perlstyle>, L<perlnewmod>, L<perlpod>, L<podchecker>, Testing tools,
2963 http://pause.perl.org/, Any good book on software engineering
2964
2965 =item AUTHOR
2966
2967 =back
2968
2969 =head2 perlnewmod - preparing a new module for distribution
2970
2971 =over 4
2972
2973 =item DESCRIPTION
2974
2975 =over 4
2976
2977 =item Warning
2978
2979 =item What should I make into a module?
2980
2981 =item Step-by-step: Preparing the ground
2982
2983 Look around, Check it's new, Discuss the need, Choose a name, Check again
2984
2985 =item Step-by-step: Making the module
2986
2987 Start with F<h2xs>, Use L<strict|strict> and L<warnings|warnings>, Use
2988 L<Carp|Carp>, Use L<Exporter|Exporter> - wisely!, Use L<plain old
2989 documentation|perlpod>, Write tests, Write the README
2990
2991 =item Step-by-step: Distributing your module
2992
2993 Get a CPAN user ID, C<perl Makefile.PL; make test; make dist>, Upload the
2994 tarball, Announce to the modules list, Announce to clpa, Fix bugs!
2995
2996 =back
2997
2998 =item AUTHOR
2999
3000 =item SEE ALSO
3001
3002 =back
3003
3004 =head2 perlfaq1 - General Questions About Perl ($Revision: 1.7 $, $Date:
3005 2002/02/21 14:49:15 $)
3006
3007 =over 4
3008
3009 =item DESCRIPTION
3010
3011 =over 4
3012
3013 =item What is Perl?
3014
3015 =item Who supports Perl?  Who develops it?  Why is it free?
3016
3017 =item Which version of Perl should I use?
3018
3019 =item What are perl4 and perl5?
3020
3021 =item What is perl6?
3022
3023 =item How stable is Perl?
3024
3025 =item Is Perl difficult to learn?
3026
3027 =item How does Perl compare with other languages like Java, Python, REXX,
3028 Scheme, or Tcl?
3029
3030 =item Can I do [task] in Perl?
3031
3032 =item When shouldn't I program in Perl?
3033
3034 =item What's the difference between "perl" and "Perl"?
3035
3036 =item Is it a Perl program or a Perl script?
3037
3038 =item What is a JAPH?
3039
3040 =item Where can I get a list of Larry Wall witticisms?
3041
3042 =item How can I convince my sysadmin/supervisor/employees to use version
3043 5/5.6.1/Perl instead of some other language?
3044
3045 =back
3046
3047 =item AUTHOR AND COPYRIGHT
3048
3049 =back
3050
3051 =head2 perlfaq2 - Obtaining and Learning about Perl ($Revision: 1.9 $,
3052 $Date: 2002/03/09 21:01:13 $)
3053
3054 =over 4
3055
3056 =item DESCRIPTION
3057
3058 =over 4
3059
3060 =item What machines support Perl?  Where do I get it?
3061
3062 =item How can I get a binary version of Perl?
3063
3064 =item I don't have a C compiler on my system.  How can I compile perl?
3065
3066 =item I copied the Perl binary from one machine to another, but scripts
3067 don't work.
3068
3069 =item I grabbed the sources and tried to compile but gdbm/dynamic
3070 loading/malloc/linking/... failed.  How do I make it work?
3071
3072 =item What modules and extensions are available for Perl?  What is CPAN? 
3073 What does CPAN/src/... mean?
3074
3075 =item Is there an ISO or ANSI certified version of Perl?
3076
3077 =item Where can I get information on Perl?
3078
3079 =item What are the Perl newsgroups on Usenet?  Where do I post questions?
3080
3081 =item Where should I post source code?
3082
3083 =item Perl Books
3084
3085 References, Tutorials, Task-Oriented, Special Topics
3086
3087 =item Perl in Magazines
3088
3089 =item Perl on the Net: FTP and WWW Access
3090
3091 =item What mailing lists are there for Perl?
3092
3093 =item Archives of comp.lang.perl.misc
3094
3095 =item Where can I buy a commercial version of Perl?
3096
3097 =item Where do I send bug reports?
3098
3099 =item What is perl.com? Perl Mongers? pm.org? perl.org? cpan.org?
3100
3101 =back
3102
3103 =item AUTHOR AND COPYRIGHT
3104
3105 =back
3106
3107 =head2 perlfaq3 - Programming Tools ($Revision: 1.15 $, $Date: 2002/02/11
3108 19:29:52 $)
3109
3110 =over 4
3111
3112 =item DESCRIPTION
3113
3114 =over 4
3115
3116 =item How do I do (anything)?
3117
3118 =item How can I use Perl interactively?
3119
3120 =item Is there a Perl shell?
3121
3122 =item How do I debug my Perl programs?
3123
3124 =item How do I profile my Perl programs?
3125
3126 =item How do I cross-reference my Perl programs?
3127
3128 =item Is there a pretty-printer (formatter) for Perl?
3129
3130 =item Is there a ctags for Perl?
3131
3132 =item Is there an IDE or Windows Perl Editor?
3133
3134 Komodo, The Object System, Open Perl IDE, PerlBuilder, visiPerl+,
3135 CodeMagicCD, GNU Emacs, MicroEMACS, XEmacs, Elvis, Vile, Vim, Codewright,
3136 MultiEdit, SlickEdit, Bash, Ksh, Tcsh, Zsh, BBEdit and BBEdit Lite, Alpha
3137
3138 =item Where can I get Perl macros for vi?
3139
3140 =item Where can I get perl-mode for emacs?
3141
3142 =item How can I use curses with Perl?
3143
3144 =item How can I use X or Tk with Perl?
3145
3146 =item How can I generate simple menus without using CGI or Tk?
3147
3148 =item How can I make my Perl program run faster?
3149
3150 =item How can I make my Perl program take less memory?
3151
3152 Don't slurp!, Use map and grep selectively, Avoid unnecessary quotes and
3153 stringification, Pass by reference, Tie large variables to disk
3154
3155 =item Is it unsafe to return a pointer to local data?
3156
3157 =item How can I free an array or hash so my program shrinks?
3158
3159 =item How can I make my CGI script more efficient?
3160
3161 =item How can I hide the source for my Perl program?
3162
3163 =item How can I compile my Perl program into byte code or C?
3164
3165 =item How can I compile Perl into Java?
3166
3167 =item How can I get C<#!perl> to work on [MS-DOS,NT,...]?
3168
3169 =item Can I write useful Perl programs on the command line?
3170
3171 =item Why don't Perl one-liners work on my DOS/Mac/VMS system?
3172
3173 =item Where can I learn about CGI or Web programming in Perl?
3174
3175 =item Where can I learn about object-oriented Perl programming?
3176
3177 =item Where can I learn about linking C with Perl? [h2xs, xsubpp]
3178
3179 =item I've read perlembed, perlguts, etc., but I can't embed perl in
3180 my C program; what am I doing wrong?
3181
3182 =item When I tried to run my script, I got this message. What does it mean?
3183
3184 =item What's MakeMaker?
3185
3186 =back
3187
3188 =item AUTHOR AND COPYRIGHT
3189
3190 =back
3191
3192 =head2 perlfaq4 - Data Manipulation ($Revision: 1.19 $, $Date: 2002/03/11
3193 22:15:19 $)
3194
3195 =over 4
3196
3197 =item DESCRIPTION
3198
3199 =item Data: Numbers
3200
3201 =over 4
3202
3203 =item Why am I getting long decimals (eg, 19.9499999999999) instead of the
3204 numbers I should be getting (eg, 19.95)?
3205
3206 =item Why isn't my octal data interpreted correctly?
3207
3208 =item Does Perl have a round() function?  What about ceil() and floor()? 
3209 Trig functions?
3210
3211 =item How do I convert between numeric representations?
3212
3213 B<How do I convert Hexadecimal into decimal:>, B<How do I convert from
3214 decimal to hexadecimal:>, B<How do I convert from octal to decimal:>, B<How
3215 do I convert from decimal to octal:>, B<How do I convert from binary to
3216 decimal:>, B<How do I convert from decimal to binary:>
3217
3218 =item Why doesn't & work the way I want it to?
3219
3220 =item How do I multiply matrices?
3221
3222 =item How do I perform an operation on a series of integers?
3223
3224 =item How can I output Roman numerals?
3225
3226 =item Why aren't my random numbers random?
3227
3228 =item How do I get a random number between X and Y?
3229
3230 =back
3231
3232 =item Data: Dates
3233
3234 =over 4
3235
3236 =item How do I find the week-of-the-year/day-of-the-year?
3237
3238 =item How do I find the current century or millennium?
3239
3240 =item How can I compare two dates and find the difference?
3241
3242 =item How can I take a string and turn it into epoch seconds?
3243
3244 =item How can I find the Julian Day?
3245
3246 =item How do I find yesterday's date?
3247
3248 =item Does Perl have a Year 2000 problem?  Is Perl Y2K compliant?
3249
3250 =back
3251
3252 =item Data: Strings
3253
3254 =over 4
3255
3256 =item How do I validate input?
3257
3258 =item How do I unescape a string?
3259
3260 =item How do I remove consecutive pairs of characters?
3261
3262 =item How do I expand function calls in a string?
3263
3264 =item How do I find matching/nesting anything?
3265
3266 =item How do I reverse a string?
3267
3268 =item How do I expand tabs in a string?
3269
3270 =item How do I reformat a paragraph?
3271
3272 =item How can I access/change the first N letters of a string?
3273
3274 =item How do I change the Nth occurrence of something?
3275
3276 =item How can I count the number of occurrences of a substring within a
3277 string?
3278
3279 =item How do I capitalize all the words on one line?
3280
3281 =item How can I split a [character] delimited string except when inside
3282 [character]? (Comma-separated files)
3283
3284 =item How do I strip blank space from the beginning/end of a string?
3285
3286 =item How do I pad a string with blanks or pad a number with zeroes?
3287
3288 =item How do I extract selected columns from a string?
3289
3290 =item How do I find the soundex value of a string?
3291
3292 =item How can I expand variables in text strings?
3293
3294 =item What's wrong with always quoting "$vars"?
3295
3296 =item Why don't my <<HERE documents work?
3297
3298 1. There must be no space after the << part, 2. There (probably) should be
3299 a semicolon at the end, 3. You can't (easily) have any space in front of
3300 the tag
3301
3302 =back
3303
3304 =item Data: Arrays
3305
3306 =over 4
3307
3308 =item What is the difference between a list and an array?
3309
3310 =item What is the difference between $array[1] and @array[1]?
3311
3312 =item How can I remove duplicate elements from a list or array?
3313
3314 a), b), c), d), e)
3315
3316 =item How can I tell whether a certain element is contained in a list or
3317 array?
3318
3319 =item How do I compute the difference of two arrays?  How do I compute the
3320 intersection of two arrays?
3321
3322 =item How do I test whether two arrays or hashes are equal?
3323
3324 =item How do I find the first array element for which a condition is true?
3325
3326 =item How do I handle linked lists?
3327
3328 =item How do I handle circular lists?
3329
3330 =item How do I shuffle an array randomly?
3331
3332 =item How do I process/modify each element of an array?
3333
3334 =item How do I select a random element from an array?
3335
3336 =item How do I permute N elements of a list?
3337
3338 =item How do I sort an array by (anything)?
3339
3340 =item How do I manipulate arrays of bits?
3341
3342 =item Why does defined() return true on empty arrays and hashes?
3343
3344 =back
3345
3346 =item Data: Hashes (Associative Arrays)
3347
3348 =over 4
3349
3350 =item How do I process an entire hash?
3351
3352 =item What happens if I add or remove keys from a hash while iterating over
3353 it?
3354
3355 =item How do I look up a hash element by value?
3356
3357 =item How can I know how many entries are in a hash?
3358
3359 =item How do I sort a hash (optionally by value instead of key)?
3360
3361 =item How can I always keep my hash sorted?
3362
3363 =item What's the difference between "delete" and "undef" with hashes?
3364
3365 =item Why don't my tied hashes make the defined/exists distinction?
3366
3367 =item How do I reset an each() operation part-way through?
3368
3369 =item How can I get the unique keys from two hashes?
3370
3371 =item How can I store a multidimensional array in a DBM file?
3372
3373 =item How can I make my hash remember the order I put elements into it?
3374
3375 =item Why does passing a subroutine an undefined element in a hash create
3376 it?
3377
3378 =item How can I make the Perl equivalent of a C structure/C++ class/hash or
3379 array of hashes or arrays?
3380
3381 =item How can I use a reference as a hash key?
3382
3383 =back
3384
3385 =item Data: Misc
3386
3387 =over 4
3388
3389 =item How do I handle binary data correctly?
3390
3391 =item How do I determine whether a scalar is a number/whole/integer/float?
3392
3393 =item How do I keep persistent data across program calls?
3394
3395 =item How do I print out or copy a recursive data structure?
3396
3397 =item How do I define methods for every class/object?
3398
3399 =item How do I verify a credit card checksum?
3400
3401 =item How do I pack arrays of doubles or floats for XS code?
3402
3403 =back
3404
3405 =item AUTHOR AND COPYRIGHT
3406
3407 =back
3408
3409 =head2 perlfaq5 - Files and Formats ($Revision: 1.12 $, $Date: 2002/03/11
3410 22:25:25 $)
3411
3412 =over 4
3413
3414 =item DESCRIPTION
3415
3416 =over 4
3417
3418 =item How do I flush/unbuffer an output filehandle?  Why must I do this?
3419
3420 =item How do I change one line in a file/delete a line in a file/insert a
3421 line in the middle of a file/append to the beginning of a file?
3422
3423 =item How do I count the number of lines in a file?
3424
3425 =item How do I make a temporary file name?
3426
3427 =item How can I manipulate fixed-record-length files?
3428
3429 =item How can I make a filehandle local to a subroutine?  How do I pass
3430 filehandles between subroutines?  How do I make an array of filehandles?
3431
3432 =item How can I use a filehandle indirectly?
3433
3434 =item How can I set up a footer format to be used with write()?
3435
3436 =item How can I write() into a string?
3437
3438 =item How can I output my numbers with commas added?
3439
3440 =item How can I translate tildes (~) in a filename?
3441
3442 =item How come when I open a file read-write it wipes it out?
3443
3444 =item Why do I sometimes get an "Argument list too long" when I use <*>?
3445
3446 =item Is there a leak/bug in glob()?
3447
3448 =item How can I open a file with a leading ">" or trailing blanks?
3449
3450 =item How can I reliably rename a file?
3451
3452 =item How can I lock a file?
3453
3454 =item Why can't I just open(FH, ">file.lock")?
3455
3456 =item I still don't get locking.  I just want to increment the number in
3457 the file.  How can I do this?
3458
3459 =item All I want to do is append a small amount of text to the end of a
3460 file.  Do I still have to use locking?
3461
3462 =item How do I randomly update a binary file?
3463
3464 =item How do I get a file's timestamp in perl?
3465
3466 =item How do I set a file's timestamp in perl?
3467
3468 =item How do I print to more than one file at once?
3469
3470 =item How can I read in an entire file all at once?
3471
3472 =item How can I read in a file by paragraphs?
3473
3474 =item How can I read a single character from a file?  From the keyboard?
3475
3476 =item How can I tell whether there's a character waiting on a filehandle?
3477
3478 =item How do I do a C<tail -f> in perl?
3479
3480 =item How do I dup() a filehandle in Perl?
3481
3482 =item How do I close a file descriptor by number?
3483
3484 =item Why can't I use "C:\temp\foo" in DOS paths?  Why doesn't
3485 `C:\temp\foo.exe` work?
3486
3487 =item Why doesn't glob("*.*") get all the files?
3488
3489 =item Why does Perl let me delete read-only files?  Why does C<-i> clobber
3490 protected files?  Isn't this a bug in Perl?
3491
3492 =item How do I select a random line from a file?
3493
3494 =item Why do I get weird spaces when I print an array of lines?
3495
3496 =back
3497
3498 =item AUTHOR AND COPYRIGHT
3499
3500 =back
3501
3502 =head2 perlfaq6 - Regular Expressions ($Revision: 1.8 $, $Date: 2002/01/31
3503 04:27:55 $)
3504
3505 =over 4
3506
3507 =item DESCRIPTION
3508
3509 =over 4
3510
3511 =item How can I hope to use regular expressions without creating illegible
3512 and unmaintainable code?
3513
3514 Comments Outside the Regex, Comments Inside the Regex, Different Delimiters
3515
3516 =item I'm having trouble matching over more than one line.  What's wrong?
3517
3518 =item How can I pull out lines between two patterns that are themselves on
3519 different lines?
3520
3521 =item I put a regular expression into $/ but it didn't work. What's wrong?
3522
3523 =item How do I substitute case insensitively on the LHS while preserving
3524 case on the RHS?
3525
3526 =item How can I make C<\w> match national character sets?
3527
3528 =item How can I match a locale-smart version of C</[a-zA-Z]/>?
3529
3530 =item How can I quote a variable to use in a regex?
3531
3532 =item What is C</o> really for?
3533
3534 =item How do I use a regular expression to strip C style comments from a
3535 file?
3536
3537 =item Can I use Perl regular expressions to match balanced text?
3538
3539 =item What does it mean that regexes are greedy?  How can I get around it?
3540
3541 =item How do I process each word on each line?
3542
3543 =item How can I print out a word-frequency or line-frequency summary?
3544
3545 =item How can I do approximate matching?
3546
3547 =item How do I efficiently match many regular expressions at once?
3548
3549 =item Why don't word-boundary searches with C<\b> work for me?
3550
3551 =item Why does using $&, $`, or $' slow my program down?
3552
3553 =item What good is C<\G> in a regular expression?
3554
3555 =item Are Perl regexes DFAs or NFAs?  Are they POSIX compliant?
3556
3557 =item What's wrong with using grep or map in a void context?
3558
3559 =item How can I match strings with multibyte characters?
3560
3561 =item How do I match a pattern that is supplied by the user?
3562
3563 =back
3564
3565 =item AUTHOR AND COPYRIGHT
3566
3567 =back
3568
3569 =head2 perlfaq7 - General Perl Language Issues ($Revision: 1.7 $, $Date:
3570 2002/01/31 04:27:55 $)
3571
3572 =over 4
3573
3574 =item DESCRIPTION
3575
3576 =over 4
3577
3578 =item Can I get a BNF/yacc/RE for the Perl language?
3579
3580 =item What are all these $@%&* punctuation signs, and how do I know when to
3581 use them?
3582
3583 =item Do I always/never have to quote my strings or use semicolons and
3584 commas?
3585
3586 =item How do I skip some return values?
3587
3588 =item How do I temporarily block warnings?
3589
3590 =item What's an extension?
3591
3592 =item Why do Perl operators have different precedence than C operators?
3593
3594 =item How do I declare/create a structure?
3595
3596 =item How do I create a module?
3597
3598 =item How do I create a class?
3599
3600 =item How can I tell if a variable is tainted?
3601
3602 =item What's a closure?
3603
3604 =item What is variable suicide and how can I prevent it?
3605
3606 =item How can I pass/return a {Function, FileHandle, Array, Hash, Method,
3607 Regex}?
3608
3609 Passing Variables and Functions, Passing Filehandles, Passing Regexes,
3610 Passing Methods
3611
3612 =item How do I create a static variable?
3613
3614 =item What's the difference between dynamic and lexical (static) scoping? 
3615 Between local() and my()?
3616
3617 =item How can I access a dynamic variable while a similarly named lexical
3618 is in scope?
3619
3620 =item What's the difference between deep and shallow binding?
3621
3622 =item Why doesn't "my($foo) = <FILE>;" work right?
3623
3624 =item How do I redefine a builtin function, operator, or method?
3625
3626 =item What's the difference between calling a function as &foo and foo()?
3627
3628 =item How do I create a switch or case statement?
3629
3630 =item How can I catch accesses to undefined variables/functions/methods?
3631
3632 =item Why can't a method included in this same file be found?
3633
3634 =item How can I find out my current package?
3635
3636 =item How can I comment out a large block of perl code?
3637
3638 =item How do I clear a package?
3639
3640 =item How can I use a variable as a variable name?
3641
3642 =back
3643
3644 =item AUTHOR AND COPYRIGHT
3645
3646 =back
3647
3648 =head2 perlfaq8 - System Interaction ($Revision: 1.6 $, $Date: 2002/01/28
3649 04:17:27 $)
3650
3651 =over 4
3652
3653 =item DESCRIPTION
3654
3655 =over 4
3656
3657 =item How do I find out which operating system I'm running under?
3658
3659 =item How come exec() doesn't return?
3660
3661 =item How do I do fancy stuff with the keyboard/screen/mouse?
3662
3663 Keyboard, Screen, Mouse
3664
3665 =item How do I print something out in color?
3666
3667 =item How do I read just one key without waiting for a return key?
3668
3669 =item How do I check whether input is ready on the keyboard?
3670
3671 =item How do I clear the screen?
3672
3673 =item How do I get the screen size?
3674
3675 =item How do I ask the user for a password?
3676
3677 =item How do I read and write the serial port?
3678
3679 lockfiles, open mode, end of line, flushing output, non-blocking input
3680
3681 =item How do I decode encrypted password files?
3682
3683 =item How do I start a process in the background?
3684
3685 STDIN, STDOUT, and STDERR are shared, Signals, Zombies
3686
3687 =item How do I trap control characters/signals?
3688
3689 =item How do I modify the shadow password file on a Unix system?
3690
3691 =item How do I set the time and date?
3692
3693 =item How can I sleep() or alarm() for under a second?
3694
3695 =item How can I measure time under a second?
3696
3697 =item How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
3698
3699 =item Why doesn't my sockets program work under System V (Solaris)?  What
3700 does the error message "Protocol not supported" mean?
3701
3702 =item How can I call my system's unique C functions from Perl?
3703
3704 =item Where do I get the include files to do ioctl() or syscall()?
3705
3706 =item Why do setuid perl scripts complain about kernel problems?
3707
3708 =item How can I open a pipe both to and from a command?
3709
3710 =item Why can't I get the output of a command with system()?
3711
3712 =item How can I capture STDERR from an external command?
3713
3714 =item Why doesn't open() return an error when a pipe open fails?
3715
3716 =item What's wrong with using backticks in a void context?
3717
3718 =item How can I call backticks without shell processing?
3719
3720 =item Why can't my script read from STDIN after I gave it EOF (^D on Unix,
3721 ^Z on MS-DOS)?
3722
3723 =item How can I convert my shell script to perl?
3724
3725 =item Can I use perl to run a telnet or ftp session?
3726
3727 =item How can I write expect in Perl?
3728
3729 =item Is there a way to hide perl's command line from programs such as
3730 "ps"?
3731
3732 =item I {changed directory, modified my environment} in a perl script.  How
3733 come the change disappeared when I exited the script?  How do I get my
3734 changes to be visible?
3735
3736 Unix
3737
3738 =item How do I close a process's filehandle without waiting for it to
3739 complete?
3740
3741 =item How do I fork a daemon process?
3742
3743 =item How do I find out if I'm running interactively or not?
3744
3745 =item How do I timeout a slow event?
3746
3747 =item How do I set CPU limits?
3748
3749 =item How do I avoid zombies on a Unix system?
3750
3751 =item How do I use an SQL database?
3752
3753 =item How do I make a system() exit on control-C?
3754
3755 =item How do I open a file without blocking?
3756
3757 =item How do I install a module from CPAN?
3758
3759 =item What's the difference between require and use?
3760
3761 =item How do I keep my own module/library directory?
3762
3763 =item How do I add the directory my program lives in to the module/library
3764 search path?
3765
3766 =item How do I add a directory to my include path at runtime?
3767
3768 =item What is socket.ph and where do I get it?
3769
3770 =back
3771
3772 =item AUTHOR AND COPYRIGHT
3773
3774 =back
3775
3776 =head2 perlfaq9 - Networking ($Revision: 1.7 $, $Date: 2002/01/28 04:17:27
3777 $)
3778
3779 =over 4
3780
3781 =item DESCRIPTION
3782
3783 =over 4
3784
3785 =item What is the correct form of response from a CGI script?
3786
3787 =item My CGI script runs from the command line but not the browser.  (500
3788 Server Error)
3789
3790 =item How can I get better error messages from a CGI program?
3791
3792 =item How do I remove HTML from a string?
3793
3794 =item How do I extract URLs?
3795
3796 =item How do I download a file from the user's machine?  How do I open a
3797 file on another machine?
3798
3799 =item How do I make a pop-up menu in HTML?
3800
3801 =item How do I fetch an HTML file?
3802
3803 =item How do I automate an HTML form submission?
3804
3805 =item How do I decode or create those %-encodings on the web?
3806
3807 =item How do I redirect to another page?
3808
3809 =item How do I put a password on my web pages?
3810
3811 =item How do I edit my .htpasswd and .htgroup files with Perl?
3812
3813 =item How do I make sure users can't enter values into a form that cause my
3814 CGI script to do bad things?
3815
3816 =item How do I parse a mail header?
3817
3818 =item How do I decode a CGI form?
3819
3820 =item How do I check a valid mail address?
3821
3822 =item How do I decode a MIME/BASE64 string?
3823
3824 =item How do I return the user's mail address?
3825
3826 =item How do I send mail?
3827
3828 =item How do I use MIME to make an attachment to a mail message?
3829
3830 =item How do I read mail?
3831
3832 =item How do I find out my hostname/domainname/IP address?
3833
3834 =item How do I fetch a news article or the active newsgroups?
3835
3836 =item How do I fetch/put an FTP file?
3837
3838 =item How can I do RPC in Perl?
3839
3840 =back
3841
3842 =item AUTHOR AND COPYRIGHT
3843
3844 =back
3845
3846 =head2 perlcompile - Introduction to the Perl Compiler-Translator 
3847
3848 =over 4
3849
3850 =item DESCRIPTION
3851
3852 =over 4
3853
3854 =item Layout
3855
3856 B::Bytecode, B::C, B::CC, B::Lint, B::Deparse, B::Xref
3857
3858 =back
3859
3860 =item Using The Back Ends
3861
3862 =over 4
3863
3864 =item The Cross Referencing Back End
3865
3866 i, &, s, r
3867
3868 =item The Decompiling Back End
3869
3870 =item The Lint Back End
3871
3872 =item The Simple C Back End
3873
3874 =item The Bytecode Back End
3875
3876 =item The Optimized C Back End
3877
3878 B, O, B::Asmdata, B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC,
3879 B::Debug, B::Deparse, B::Disassembler, B::Lint, B::Showlex, B::Stackobj,
3880 B::Stash, B::Terse, B::Xref
3881
3882 =back
3883
3884 =item KNOWN PROBLEMS
3885
3886 =item AUTHOR
3887
3888 =back
3889
3890 =head2 perlembed - how to embed perl in your C program
3891
3892 =over 4
3893
3894 =item DESCRIPTION
3895
3896 =over 4
3897
3898 =item PREAMBLE
3899
3900 B<Use C from Perl?>, B<Use a Unix program from Perl?>, B<Use Perl from
3901 Perl?>, B<Use C from C?>, B<Use Perl from C?>
3902
3903 =item ROADMAP
3904
3905 =item Compiling your C program
3906
3907 =item Adding a Perl interpreter to your C program
3908
3909 =item Calling a Perl subroutine from your C program
3910
3911 =item Evaluating a Perl statement from your C program
3912
3913 =item Performing Perl pattern matches and substitutions from your C program
3914
3915 =item Fiddling with the Perl stack from your C program
3916
3917 =item Maintaining a persistent interpreter
3918
3919 =item Execution of END blocks
3920
3921 =item Maintaining multiple interpreter instances
3922
3923 =item Using Perl modules, which themselves use C libraries, from your C
3924 program
3925
3926 =back
3927
3928 =item Embedding Perl under Win32
3929
3930 =item MORAL
3931
3932 =item AUTHOR
3933
3934 =item COPYRIGHT
3935
3936 =back
3937
3938 =head2 perldebguts - Guts of Perl debugging 
3939
3940 =over 4
3941
3942 =item DESCRIPTION
3943
3944 =item Debugger Internals
3945
3946 =over 4
3947
3948 =item Writing Your Own Debugger
3949
3950 =back
3951
3952 =item Frame Listing Output Examples
3953
3954 =item Debugging regular expressions
3955
3956 =over 4
3957
3958 =item Compile-time output
3959
3960 C<anchored> I<STRING> C<at> I<POS>, C<floating> I<STRING> C<at>
3961 I<POS1..POS2>, C<matching floating/anchored>, C<minlen>, C<stclass>
3962 I<TYPE>, C<noscan>, C<isall>, C<GPOS>, C<plus>, C<implicit>, C<with eval>,
3963 C<anchored(TYPE)>
3964
3965 =item Types of nodes
3966
3967 =item Run-time output
3968
3969 =back
3970
3971 =item Debugging Perl memory usage
3972
3973 =over 4
3974
3975 =item Using C<$ENV{PERL_DEBUG_MSTATS}>
3976
3977 C<buckets SMALLEST(APPROX)..GREATEST(APPROX)>, Free/Used, C<Total sbrk():
3978 SBRKed/SBRKs:CONTINUOUS>, C<pad: 0>, C<heads: 2192>, C<chain: 0>, C<tail:
3979 6144>
3980
3981 =item Example of using B<-DL> switch
3982
3983 C<717>, C<002>, C<054>, C<602>, C<702>, C<704>
3984
3985 =item B<-DL> details
3986
3987 C<!!!>, C<!!>, C<!>
3988
3989 =item Limitations of B<-DL> statistics
3990
3991 =back
3992
3993 =item SEE ALSO
3994
3995 =back
3996
3997 =head2 perlxstut, perlXStut - Tutorial for writing XSUBs
3998
3999 =over 4
4000
4001 =item DESCRIPTION
4002
4003 =item SPECIAL NOTES
4004
4005 =over 4
4006
4007 =item make
4008
4009 =item Version caveat
4010
4011 =item Dynamic Loading versus Static Loading
4012
4013 =back
4014
4015 =item TUTORIAL
4016
4017 =over 4
4018
4019 =item EXAMPLE 1
4020
4021 =item EXAMPLE 2
4022
4023 =item What has gone on?
4024
4025 =item Writing good test scripts
4026
4027 =item EXAMPLE 3
4028
4029 =item What's new here?
4030
4031 =item Input and Output Parameters
4032
4033 =item The XSUBPP Program
4034
4035 =item The TYPEMAP file
4036
4037 =item Warning about Output Arguments
4038
4039 =item EXAMPLE 4
4040
4041 =item What has happened here?
4042
4043 =item Anatomy of .xs file
4044
4045 =item Getting the fat out of XSUBs
4046
4047 =item More about XSUB arguments
4048
4049 =item The Argument Stack
4050
4051 =item Extending your Extension
4052
4053 =item Documenting your Extension
4054
4055 =item Installing your Extension
4056
4057 =item EXAMPLE 5
4058
4059 =item New Things in this Example
4060
4061 =item EXAMPLE 6
4062
4063 =item New Things in this Example
4064
4065 =item EXAMPLE 7 (Coming Soon)
4066
4067 =item EXAMPLE 8 (Coming Soon)
4068
4069 =item EXAMPLE 9 (Coming Soon)
4070
4071 =item Troubleshooting these Examples
4072
4073 =back
4074
4075 =item See also
4076
4077 =item Author
4078
4079 =over 4
4080
4081 =item Last Changed
4082
4083 =back
4084
4085 =back
4086
4087 =head2 perlxs - XS language reference manual
4088
4089 =over 4
4090
4091 =item DESCRIPTION
4092
4093 =over 4
4094
4095 =item Introduction
4096
4097 =item On The Road
4098
4099 =item The Anatomy of an XSUB
4100
4101 =item The Argument Stack
4102
4103 =item The RETVAL Variable
4104
4105 =item The MODULE Keyword
4106
4107 =item The PACKAGE Keyword
4108
4109 =item The PREFIX Keyword
4110
4111 =item The OUTPUT: Keyword
4112
4113 =item The NO_OUTPUT Keyword
4114
4115 =item The CODE: Keyword
4116
4117 =item The INIT: Keyword
4118
4119 =item The NO_INIT Keyword
4120
4121 =item Initializing Function Parameters
4122
4123 =item Default Parameter Values
4124
4125 =item The PREINIT: Keyword
4126
4127 =item The SCOPE: Keyword
4128
4129 =item The INPUT: Keyword
4130
4131 =item The IN/OUTLIST/IN_OUTLIST/OUT/IN_OUT Keywords
4132
4133 =item The C<length(NAME)> Keyword
4134
4135 =item Variable-length Parameter Lists
4136
4137 =item The C_ARGS: Keyword
4138
4139 =item The PPCODE: Keyword
4140
4141 =item Returning Undef And Empty Lists
4142
4143 =item The REQUIRE: Keyword
4144
4145 =item The CLEANUP: Keyword
4146
4147 =item The POSTCALL: Keyword
4148
4149 =item The BOOT: Keyword
4150
4151 =item The VERSIONCHECK: Keyword
4152
4153 =item The PROTOTYPES: Keyword
4154
4155 =item The PROTOTYPE: Keyword
4156
4157 =item The ALIAS: Keyword
4158
4159 =item The OVERLOAD: Keyword
4160
4161 =item The INTERFACE: Keyword
4162
4163 =item The INTERFACE_MACRO: Keyword
4164
4165 =item The INCLUDE: Keyword
4166
4167 =item The CASE: Keyword
4168
4169 =item The & Unary Operator
4170
4171 =item Inserting POD, Comments and C Preprocessor Directives
4172
4173 =item Using XS With C++
4174
4175 =item Interface Strategy
4176
4177 =item Perl Objects And C Structures
4178
4179 =item The Typemap
4180
4181 =item Safely Storing Static Data in XS
4182
4183 MY_CXT_KEY, typedef my_cxt_t, START_MY_CXT, MY_CXT_INIT, dMY_CXT, MY_CXT
4184
4185 =back
4186
4187 =item EXAMPLES
4188
4189 =item XS VERSION
4190
4191 =item AUTHOR
4192
4193 =back
4194
4195 =head2 perlclib - Internal replacements for standard C library functions
4196
4197 =over 4
4198
4199 =item DESCRIPTION
4200
4201 =over 4
4202
4203 =item Conventions
4204
4205 C<t>, C<p>, C<n>, C<s>
4206
4207 =item File Operations
4208
4209 =item File Input and Output
4210
4211 =item File Positioning
4212
4213 =item Memory Management and String Handling
4214
4215 =item Character Class Tests
4216
4217 =item F<stdlib.h> functions
4218
4219 =item Miscellaneous functions
4220
4221 =back
4222
4223 =item SEE ALSO
4224
4225 =back
4226
4227 =head2 perlguts - Introduction to the Perl API
4228
4229 =over 4
4230
4231 =item DESCRIPTION
4232
4233 =item Variables
4234
4235 =over 4
4236
4237 =item Datatypes
4238
4239 =item What is an "IV"?
4240
4241 =item Working with SVs
4242
4243 =item Offsets
4244
4245 =item What's Really Stored in an SV?
4246
4247 =item Working with AVs
4248
4249 =item Working with HVs
4250
4251 =item Hash API Extensions
4252
4253 =item References
4254
4255 =item Blessed References and Class Objects
4256
4257 =item Creating New Variables
4258
4259 =item Reference Counts and Mortality
4260
4261 =item Stashes and Globs
4262
4263 =item Double-Typed SVs
4264
4265 =item Magic Variables
4266
4267 =item Assigning Magic
4268
4269 =item Magic Virtual Tables
4270
4271 =item Finding Magic
4272
4273 =item Understanding the Magic of Tied Hashes and Arrays
4274
4275 =item Localizing changes
4276
4277 C<SAVEINT(int i)>, C<SAVEIV(IV i)>, C<SAVEI32(I32 i)>, C<SAVELONG(long i)>,
4278 C<SAVESPTR(s)>, C<SAVEPPTR(p)>, C<SAVEFREESV(SV *sv)>, C<SAVEMORTALIZESV(SV
4279 *sv)>, C<SAVEFREEOP(OP *op)>, C<SAVEFREEPV(p)>, C<SAVECLEARSV(SV *sv)>,
4280 C<SAVEDELETE(HV *hv, char *key, I32 length)>,
4281 C<SAVEDESTRUCTOR(DESTRUCTORFUNC_NOCONTEXT_t f, void *p)>,
4282 C<SAVEDESTRUCTOR_X(DESTRUCTORFUNC_t f, void *p)>, C<SAVESTACK_POS()>, C<SV*
4283 save_scalar(GV *gv)>, C<AV* save_ary(GV *gv)>, C<HV* save_hash(GV *gv)>,
4284 C<void save_item(SV *item)>, C<void save_list(SV **sarg, I32 maxsarg)>,
4285 C<SV* save_svref(SV **sptr)>, C<void save_aptr(AV **aptr)>, C<void
4286 save_hptr(HV **hptr)>
4287
4288 =back
4289
4290 =item Subroutines
4291
4292 =over 4
4293
4294 =item XSUBs and the Argument Stack
4295
4296 =item Calling Perl Routines from within C Programs
4297
4298 =item Memory Allocation
4299
4300 =item PerlIO
4301
4302 =item Putting a C value on Perl stack
4303
4304 =item Scratchpads
4305
4306 =item Scratchpads and recursion
4307
4308 =back
4309
4310 =item Compiled code
4311
4312 =over 4
4313
4314 =item Code tree
4315
4316 =item Examining the tree
4317
4318 =item Compile pass 1: check routines
4319
4320 =item Compile pass 1a: constant folding
4321
4322 =item Compile pass 2: context propagation
4323
4324 =item Compile pass 3: peephole optimization
4325
4326 =item Pluggable runops
4327
4328 =back
4329
4330 =item Examining internal data structures with the C<dump> functions
4331
4332 =item How multiple interpreters and concurrency are supported
4333
4334 =over 4
4335
4336 =item Background and PERL_IMPLICIT_CONTEXT
4337
4338 =item So what happened to dTHR?
4339
4340 =item How do I use all this in extensions?
4341
4342 =item Should I do anything special if I call perl from multiple threads?
4343
4344 =item Future Plans and PERL_IMPLICIT_SYS
4345
4346 =back
4347
4348 =item Internal Functions
4349
4350 A, p, d, s, n, r, f, M, o, j, x
4351
4352 =over 4
4353
4354 =item Formatted Printing of IVs, UVs, and NVs
4355
4356 =item Pointer-To-Integer and Integer-To-Pointer
4357
4358 =item Source Documentation
4359
4360 =back
4361
4362 =item Unicode Support
4363
4364 =over 4
4365
4366 =item What B<is> Unicode, anyway?
4367
4368 =item How can I recognise a UTF8 string?
4369
4370 =item How does UTF8 represent Unicode characters?
4371
4372 =item How does Perl store UTF8 strings?
4373
4374 =item How do I convert a string to UTF8?
4375
4376 =item Is there anything else I need to know?
4377
4378 =back
4379
4380 =item Custom Operators
4381
4382 =item AUTHORS
4383
4384 =item SEE ALSO
4385
4386 =back
4387
4388 =head2 perlcall - Perl calling conventions from C
4389
4390 =over 4
4391
4392 =item DESCRIPTION
4393
4394 An Error Handler, An Event Driven Program
4395
4396 =item THE CALL_ FUNCTIONS
4397
4398 call_sv, call_pv, call_method, call_argv
4399
4400 =item FLAG VALUES
4401
4402 =over 4
4403
4404 =item  G_VOID
4405
4406 =item  G_SCALAR
4407
4408 =item G_ARRAY
4409
4410 =item G_DISCARD
4411
4412 =item G_NOARGS
4413
4414 =item G_EVAL
4415
4416 =item G_KEEPERR
4417
4418 =item Determining the Context
4419
4420 =back
4421
4422 =item KNOWN PROBLEMS
4423
4424 =item EXAMPLES
4425
4426 =over 4
4427
4428 =item No Parameters, Nothing returned
4429
4430 =item Passing Parameters
4431
4432 =item Returning a Scalar
4433
4434 =item Returning a list of values
4435
4436 =item Returning a list in a scalar context
4437
4438 =item Returning Data from Perl via the parameter list
4439
4440 =item Using G_EVAL
4441
4442 =item Using G_KEEPERR
4443
4444 =item Using call_sv
4445
4446 =item Using call_argv
4447
4448 =item Using call_method
4449
4450 =item Using GIMME_V
4451
4452 =item Using Perl to dispose of temporaries
4453
4454 =item Strategies for storing Callback Context Information
4455
4456 1. Ignore the problem - Allow only 1 callback, 2. Create a sequence of
4457 callbacks - hard wired limit, 3. Use a parameter to map to the Perl
4458 callback
4459
4460 =item Alternate Stack Manipulation
4461
4462 =item Creating and calling an anonymous subroutine in C
4463
4464 =back
4465
4466 =item SEE ALSO
4467
4468 =item AUTHOR
4469
4470 =item DATE
4471
4472 =back
4473
4474 =head2 perlutil - utilities packaged with the Perl distribution
4475
4476 =over 4
4477
4478 =item DESCRIPTION
4479
4480 =over 4
4481
4482 =item DOCUMENTATION
4483
4484 L<perldoc|perldoc>, L<pod2man|pod2man> and L<pod2text|pod2text>,
4485 L<pod2html|pod2html> and L<pod2latex|pod2latex>, L<pod2usage|pod2usage>,
4486 L<podselect|podselect>, L<podchecker|podchecker>, L<splain|splain>,
4487 L<roffitall|roffitall>
4488
4489 =item CONVERTORS
4490
4491 L<a2p|a2p>, L<s2p|s2p>, L<find2perl|find2perl>
4492
4493 =item Administration
4494
4495 L<libnetcfg|libnetcfg>
4496
4497 =item Development
4498
4499 L<perlbug|perlbug>, L<h2ph|h2ph>, L<c2ph|c2ph> and L<pstruct|pstruct>,
4500 L<h2xs|h2xs>, L<dprofpp|dprofpp>, L<perlcc|perlcc>
4501
4502 =item SEE ALSO
4503
4504 =back
4505
4506 =back
4507
4508 =head2 perlfilter - Source Filters
4509
4510 =over 4
4511
4512 =item DESCRIPTION
4513
4514 =item CONCEPTS
4515
4516 =item USING FILTERS
4517
4518 =item WRITING A SOURCE FILTER
4519
4520 =item WRITING A SOURCE FILTER IN C
4521
4522 B<Decryption Filters>
4523
4524 =item CREATING A SOURCE FILTER AS A SEPARATE EXECUTABLE
4525
4526 =item WRITING A SOURCE FILTER IN PERL
4527
4528 =item USING CONTEXT: THE DEBUG FILTER
4529
4530 =item CONCLUSION
4531
4532 =item REQUIREMENTS
4533
4534 =item AUTHOR
4535
4536 =item Copyrights
4537
4538 =back
4539
4540 =head2 perldbmfilter - Perl DBM Filters
4541
4542 =over 4
4543
4544 =item SYNOPSIS
4545
4546 =item DESCRIPTION
4547
4548 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
4549 B<filter_fetch_value>
4550
4551 =over 4
4552
4553 =item The Filter
4554
4555 =item An Example -- the NULL termination problem.
4556
4557 =item Another Example -- Key is a C int.
4558
4559 =back
4560
4561 =item SEE ALSO
4562
4563 =item AUTHOR
4564
4565 =back
4566
4567 =head2 perlapi - autogenerated documentation for the perl public API
4568
4569 =over 4
4570
4571 =item DESCRIPTION
4572
4573 =item "Gimme" Values
4574
4575 GIMME, GIMME_V, G_ARRAY, G_DISCARD, G_EVAL, G_NOARGS, G_SCALAR, G_VOID
4576
4577 =item Array Manipulation Functions
4578
4579 AvFILL, av_clear, av_delete, av_exists, av_extend, av_fetch, av_fill,
4580 av_len, av_make, av_pop, av_push, av_shift, av_store, av_undef, av_unshift,
4581 get_av, newAV, Nullav, sortsv
4582
4583 =item Callback Functions
4584
4585 call_argv, call_method, call_pv, call_sv, ENTER, eval_pv, eval_sv,
4586 FREETMPS, LEAVE, SAVETMPS
4587
4588 =item Character classes
4589
4590 isALNUM, isALPHA, isDIGIT, isLOWER, isSPACE, isUPPER, toLOWER, toUPPER
4591
4592 =item Cloning an interpreter
4593
4594 perl_clone
4595
4596 =item CV Manipulation Functions
4597
4598 CvSTASH, get_cv, Nullcv
4599
4600 =item Embedding Functions
4601
4602 load_module, perl_alloc, perl_construct, perl_destruct, perl_free,
4603 perl_parse, perl_run, require_pv
4604
4605 =item Functions in file pp_pack.c
4606
4607 pack_cat, unpack_str
4608
4609 =item Global Variables
4610
4611 PL_modglobal, PL_na, PL_sv_no, PL_sv_undef, PL_sv_yes
4612
4613 =item GV Functions
4614
4615 GvSV, gv_fetchmeth, gv_fetchmethod, gv_fetchmethod_autoload,
4616 gv_fetchmeth_autoload, gv_stashpv, gv_stashsv
4617
4618 =item Handy Values
4619
4620 HEf_SVKEY, Nullch, Nullsv
4621
4622 =item Hash Manipulation Functions
4623
4624 get_hv, HeHASH, HeKEY, HeKLEN, HePV, HeSVKEY, HeSVKEY_force, HeSVKEY_set,
4625 HeVAL, HvNAME, hv_clear, hv_delete, hv_delete_ent, hv_exists,
4626 hv_exists_ent, hv_fetch, hv_fetch_ent, hv_iterinit, hv_iterkey,
4627 hv_iterkeysv, hv_iternext, hv_iternextsv, hv_iterval, hv_magic, hv_store,
4628 hv_store_ent, hv_undef, newHV, Nullhv
4629
4630 =item Magical Functions
4631
4632 mg_clear, mg_copy, mg_find, mg_free, mg_get, mg_length, mg_magical, mg_set,
4633 SvGETMAGIC, SvLOCK, SvSETMAGIC, SvSetMagicSV, SvSetMagicSV_nosteal,
4634 SvSetSV, SvSetSV_nosteal, SvSHARE
4635
4636 =item Memory Management
4637
4638 Copy, Move, New, Newc, NEWSV, Newz, Renew, Renewc, Safefree, savepv,
4639 savepvn, savesharedpv, StructCopy, Zero
4640
4641 =item Miscellaneous Functions
4642
4643 fbm_compile, fbm_instr, form, getcwd_sv, strEQ, strGE, strGT, strLE, strLT,
4644 strNE, strnEQ, strnNE
4645
4646 =item Numeric functions
4647
4648 grok_bin, grok_hex, grok_number, grok_numeric_radix, grok_oct, scan_bin,
4649 scan_hex, scan_oct
4650
4651 =item Optree Manipulation Functions
4652
4653 cv_const_sv, newCONSTSUB, newXS
4654
4655 =item Stack Manipulation Macros
4656
4657 dMARK, dORIGMARK, dSP, EXTEND, MARK, ORIGMARK, POPi, POPl, POPn, POPp,
4658 POPpbytex, POPpx, POPs, PUSHi, PUSHMARK, PUSHn, PUSHp, PUSHs, PUSHu,
4659 PUTBACK, SP, SPAGAIN, XPUSHi, XPUSHn, XPUSHp, XPUSHs, XPUSHu, XSRETURN,
4660 XSRETURN_IV, XSRETURN_NO, XSRETURN_NV, XSRETURN_PV, XSRETURN_UNDEF,
4661 XSRETURN_YES, XST_mIV, XST_mNO, XST_mNV, XST_mPV, XST_mUNDEF, XST_mYES
4662
4663 =item SV Flags
4664
4665 svtype, SVt_IV, SVt_NV, SVt_PV, SVt_PVAV, SVt_PVCV, SVt_PVHV, SVt_PVMG
4666
4667 =item SV Manipulation Functions
4668
4669 get_sv, looks_like_number, memcmp_byte_utf8, newRV_inc, newRV_noinc, newSV,
4670 newSViv, newSVnv, newSVpv, newSVpvf, newSVpvn, newSVpvn_share, newSVrv,
4671 newSVsv, newSVuv, new_vstring, SvCUR, SvCUR_set, SvEND, SvGROW, SvIOK,
4672 SvIOKp, SvIOK_notUV, SvIOK_off, SvIOK_on, SvIOK_only, SvIOK_only_UV,
4673 SvIOK_UV, SvIV, SvIVx, SvIVX, SvLEN, SvNIOK, SvNIOKp, SvNIOK_off, SvNOK,
4674 SvNOKp, SvNOK_off, SvNOK_on, SvNOK_only, SvNV, SvNVx, SvNVX, SvOK, SvOOK,
4675 SvPOK, SvPOKp, SvPOK_off, SvPOK_on, SvPOK_only, SvPOK_only_UTF8, SvPV,
4676 SvPVbyte, SvPVbytex, SvPVbytex_force, SvPVbyte_force, SvPVbyte_nolen,
4677 SvPVutf8, SvPVutf8x, SvPVutf8x_force, SvPVutf8_force, SvPVutf8_nolen,
4678 SvPVx, SvPVX, SvPV_force, SvPV_force_nomg, SvPV_nolen, SvREFCNT,
4679 SvREFCNT_dec, SvREFCNT_inc, SvROK, SvROK_off, SvROK_on, SvRV, SvSTASH,
4680 SvTAINT, SvTAINTED, SvTAINTED_off, SvTAINTED_on, SvTRUE, SvTYPE, SvUNLOCK,
4681 SvUOK, SvUPGRADE, SvUTF8, SvUTF8_off, SvUTF8_on, SvUV, SvUVx, SvUVX,
4682 sv_2bool, sv_2cv, sv_2io, sv_2iv, sv_2mortal, sv_2nv, sv_2pvbyte,
4683 sv_2pvbyte_nolen, sv_2pvutf8, sv_2pvutf8_nolen, sv_2pv_flags, sv_2pv_nolen,
4684 sv_2uv, sv_backoff, sv_bless, sv_catpv, sv_catpvf, sv_catpvf_mg, sv_catpvn,
4685 sv_catpvn_flags, sv_catpvn_mg, sv_catpv_mg, sv_catsv, sv_catsv_flags,
4686 sv_catsv_mg, sv_chop, sv_clear, sv_cmp, sv_cmp_locale, sv_collxfrm,
4687 sv_copypv, sv_dec, sv_derived_from, sv_eq, sv_force_normal,
4688 sv_force_normal_flags, sv_free, sv_gets, sv_grow, sv_inc, sv_insert,
4689 sv_isa, sv_isobject, sv_iv, sv_len, sv_len_utf8, sv_magic, sv_magicext,
4690 sv_mortalcopy, sv_newmortal, sv_newref, sv_nolocking, sv_nosharing,
4691 sv_nounlocking, sv_nv, sv_pos_b2u, sv_pos_u2b, sv_pv, sv_pvbyte,
4692 sv_pvbyten, sv_pvbyten_force, sv_pvn, sv_pvn_force, sv_pvn_force_flags,
4693 sv_pvutf8, sv_pvutf8n, sv_pvutf8n_force, sv_reftype, sv_replace,
4694 sv_report_used, sv_reset, sv_rvweaken, sv_setiv, sv_setiv_mg, sv_setnv,
4695 sv_setnv_mg, sv_setpv, sv_setpvf, sv_setpvf_mg, sv_setpviv, sv_setpviv_mg,
4696 sv_setpvn, sv_setpvn_mg, sv_setpv_mg, sv_setref_iv, sv_setref_nv,
4697 sv_setref_pv, sv_setref_pvn, sv_setref_uv, sv_setsv, sv_setsv_flags,
4698 sv_setsv_mg, sv_setuv, sv_setuv_mg, sv_taint, sv_tainted, sv_true,
4699 sv_unmagic, sv_unref, sv_unref_flags, sv_untaint, sv_upgrade, sv_usepvn,
4700 sv_usepvn_mg, sv_utf8_decode, sv_utf8_downgrade, sv_utf8_encode,
4701 sv_utf8_upgrade, sv_utf8_upgrade_flags, sv_uv, sv_vcatpvfn, sv_vsetpvfn
4702
4703 =item Unicode Support
4704
4705 bytes_from_utf8, bytes_to_utf8, ibcmp_utf8, is_utf8_char, is_utf8_string,
4706 pv_uni_display, sv_recode_to_utf8, sv_uni_display, to_utf8_case,
4707 to_utf8_fold, to_utf8_lower, to_utf8_title, to_utf8_upper, utf8n_to_uvchr,
4708 utf8n_to_uvuni, utf8_distance, utf8_hop, utf8_length, utf8_to_bytes,
4709 utf8_to_uvchr, utf8_to_uvuni, uvchr_to_utf8, uvuni_to_utf8_flags
4710
4711 =item Variables created by C<xsubpp> and C<xsubpp> internal functions
4712
4713 ax, CLASS, dAX, dITEMS, dXSARGS, dXSI32, items, ix, newXSproto, RETVAL, ST,
4714 THIS, XS, XSRETURN_EMPTY, XS_VERSION, XS_VERSION_BOOTCHECK
4715
4716 =item Warning and Dieing
4717
4718 croak, warn
4719
4720 =item AUTHORS
4721
4722 =item SEE ALSO
4723
4724 =back
4725
4726 =head2 perlintern - autogenerated documentation of purely B<internal>
4727                  Perl functions
4728
4729 =over 4
4730
4731 =item DESCRIPTION
4732
4733 =item Global Variables
4734
4735 PL_DBsingle, PL_DBsub, PL_DBtrace, PL_dowarn, PL_last_in_gv, PL_ofs_sv,
4736 PL_rs
4737
4738 =item GV Functions
4739
4740 is_gv_magical
4741
4742 =item IO Functions
4743
4744 start_glob
4745
4746 =item Pad Data Structures
4747
4748 CvPADLIST
4749
4750 =item Stack Manipulation Macros
4751
4752 djSP, LVRET
4753
4754 =item SV Manipulation Functions
4755
4756 report_uninit, sv_add_arena, sv_clean_all, sv_clean_objs, sv_free_arenas
4757
4758 =item AUTHORS
4759
4760 =item SEE ALSO
4761
4762 =back
4763
4764 =head2 perliol - C API for Perl's implementation of IO in Layers.
4765
4766 =over 4
4767
4768 =item SYNOPSIS
4769
4770 =item DESCRIPTION
4771
4772 =over 4
4773
4774 =item History and Background
4775
4776 =item Layers vs Disciplines
4777
4778 =item Data Structures
4779
4780 =item Functions and Attributes
4781
4782 =item Per-instance Data
4783
4784 =item Layers in action.
4785
4786 =item Per-instance flag bits
4787
4788 PERLIO_F_EOF, PERLIO_F_CANWRITE,  PERLIO_F_CANREAD, PERLIO_F_ERROR,
4789 PERLIO_F_TRUNCATE, PERLIO_F_APPEND, PERLIO_F_CRLF, PERLIO_F_UTF8,
4790 PERLIO_F_UNBUF, PERLIO_F_WRBUF, PERLIO_F_RDBUF, PERLIO_F_LINEBUF,
4791 PERLIO_F_TEMP, PERLIO_F_OPEN, PERLIO_F_FASTGETS
4792
4793 =item Methods in Detail
4794
4795 name, size, kind, PERLIO_K_BUFFERED, PERLIO_K_CANCRLF, PERLIO_K_FASTGETS,
4796 PERLIO_K_MULTIARG, PERLIO_K_RAW, Pushed, Popped, Open, Getarg, Fileno, Dup,
4797 Read, Write, Seek, Tell, Close, Flush, Fill, Eof, Error,  Clearerr,
4798 Setlinebuf, Get_base, Get_bufsiz, Get_ptr, Get_cnt, Set_ptrcnt
4799
4800 =item Core Layers
4801
4802 "unix", "perlio", "stdio", "crlf", "mmap", "pending", "raw", "utf8"
4803
4804 =item Extension Layers
4805
4806 ":encoding", ":Scalar", ":Object" or ":Perl"
4807
4808 =back
4809
4810 =item TODO
4811
4812 =back
4813
4814 =head2 perlapio - perl's IO abstraction interface.
4815
4816 =over 4
4817
4818 =item SYNOPSIS
4819
4820 =item DESCRIPTION
4821
4822 1. USE_STDIO, 2. USE_SFIO, 3. USE_PERLIO, B<PerlIO_stdin()>,
4823 B<PerlIO_stdout()>, B<PerlIO_stderr()>, B<PerlIO_open(path, mode)>,
4824 B<PerlIO_fdopen(fd,mode)>, B<PerlIO_reopen(path,mode,f)>,
4825 B<PerlIO_printf(f,fmt,...)>, B<PerlIO_vprintf(f,fmt,a)>,
4826 B<PerlIO_stdoutf(fmt,...)>, B<PerlIO_read(f,buf,count)>,
4827 B<PerlIO_write(f,buf,count)>, B<PerlIO_close(f)>, B<PerlIO_puts(f,s)>,
4828 B<PerlIO_putc(f,c)>, B<PerlIO_ungetc(f,c)>, B<PerlIO_getc(f)>,
4829 B<PerlIO_eof(f)>, B<PerlIO_error(f)>, B<PerlIO_fileno(f)>,
4830 B<PerlIO_clearerr(f)>, B<PerlIO_flush(f)>, B<PerlIO_seek(f,offset,whence)>,
4831 B<PerlIO_tell(f)>, B<PerlIO_getpos(f,p)>, B<PerlIO_setpos(f,p)>,
4832 B<PerlIO_rewind(f)>, B<PerlIO_tmpfile()>, B<PerlIO_setlinebuf(f)>
4833
4834 =over 4
4835
4836 =item Co-existence with stdio
4837
4838 B<PerlIO_importFILE(f,flags)>, B<PerlIO_exportFILE(f,flags)>,
4839 B<PerlIO_findFILE(f)>, B<PerlIO_releaseFILE(p,f)>
4840
4841 =item "Fast gets" Functions
4842
4843 B<PerlIO_fast_gets(f)>, B<PerlIO_has_cntptr(f)>, B<PerlIO_get_cnt(f)>,
4844 B<PerlIO_get_ptr(f)>, B<PerlIO_set_ptrcnt(f,p,c)>, B<PerlIO_canset_cnt(f)>,
4845 B<PerlIO_set_cnt(f,c)>, B<PerlIO_has_base(f)>, B<PerlIO_get_base(f)>,
4846 B<PerlIO_get_bufsiz(f)>
4847
4848 =item Other Functions
4849
4850 PerlIO_apply_layers(f,mode,layers), PerlIO_binmode(f,ptype,imode,layers),
4851 'E<lt>' read, 'E<gt>' write, '+' read/write, PerlIO_debug(fmt,...)
4852
4853 =back
4854
4855 =back
4856
4857 =head2 perltodo - Perl TO-DO List
4858
4859 =over 4
4860
4861 =item DESCRIPTION
4862
4863 =item To do during 5.6.x
4864
4865 =over 4
4866
4867 =item Support for I/O disciplines
4868
4869 =item Autoload bytes.pm
4870
4871 =item Make "\u{XXXX}" et al work
4872
4873 =item Create a char *sv_pvprintify(sv, STRLEN *lenp, UV flags)
4874
4875 =item Overloadable regex assertions
4876
4877 =item Unicode
4878
4879 =item use Thread for iThreads
4880
4881 =item make perl_clone optionally clone ops
4882
4883 =item Work out exit/die semantics for threads
4884
4885 =item Typed lexicals for compiler
4886
4887 =item Compiler workarounds for Win32
4888
4889 =item AUTOLOADing in the compiler
4890
4891 =item Fixing comppadlist when compiling
4892
4893 =item Cleaning up exported namespace
4894
4895 =item Complete signal handling
4896
4897 =item Out-of-source builds
4898
4899 =item POSIX realtime support
4900
4901 =item UNIX98 support
4902
4903 =item IPv6 Support
4904
4905 =item Long double conversion
4906
4907 =item Locales
4908
4909 =item Thread-safe regexes
4910
4911 =item Arithmetic on non-Arabic numerals
4912
4913 =item POSIX Unicode character classes
4914
4915 =item Factoring out common suffices/prefices in regexps (trie optimization)
4916
4917 =item Security audit shipped utilities
4918
4919 =item Sort out the uid-setting mess
4920
4921 =item DLL Versioning
4922
4923 =item Introduce @( and @)
4924
4925 =item Floating point handling
4926
4927 =item IV/UV preservation
4928
4929 =item Replace pod2html with something using Pod::Parser
4930
4931 =item Automate module testing on CPAN
4932
4933 =item sendmsg and recvmsg
4934
4935 =item Rewrite perlre documentation
4936
4937 =item Convert example code to IO::Handle filehandles
4938
4939 =item Document Win32 choices
4940
4941 =item Check new modules
4942
4943 =item Make roffitall find pods and libs itself
4944
4945 =back
4946
4947 =item To do at some point
4948
4949 =over 4
4950
4951 =item Remove regular expression recursion
4952
4953 =item Memory leaks after failed eval
4954
4955 =item bitfields in pack
4956
4957 =item Cross compilation
4958
4959 =item Perl preprocessor / macros
4960
4961 =item Perl lexer in Perl
4962
4963 =item Using POSIX calls internally
4964
4965 =item -i rename file when changed
4966
4967 =item All ARGV input should act like E<lt>E<gt>
4968
4969 =item Support for rerunning debugger
4970
4971 =item Test Suite for the Debugger
4972
4973 =item my sub foo { }
4974
4975 =item One-pass global destruction
4976
4977 =item Rewrite regexp parser
4978
4979 =item Cache recently used regexps
4980
4981 =item Re-entrant functions
4982
4983 =item Cross-compilation support
4984
4985 =item Bit-shifting bitvectors
4986
4987 =item debugger pragma
4988
4989 =item use less pragma
4990
4991 =item switch structures
4992
4993 =item Cache eval tree
4994
4995 =item rcatmaybe
4996
4997 =item Shrink opcode tables
4998
4999 =item Optimize away @_
5000
5001 =item Prototypes versus indirect objects
5002
5003 =item Install HTML
5004
5005 =item Prototype method calls
5006
5007 =item Return context prototype declarations
5008
5009 =item magic_setisa
5010
5011 =item Garbage collection
5012
5013 =item IO tutorial
5014
5015 =item Rewrite perldoc
5016
5017 =item Install .3p manpages
5018
5019 =item Unicode tutorial
5020
5021 =item Update POSIX.pm for 1003.1-2
5022
5023 =item Retargetable installation
5024
5025 =item POSIX emulation on non-POSIX systems
5026
5027 =item Rename Win32 headers
5028
5029 =item Finish off lvalue functions
5030
5031 =item Update sprintf documentation
5032
5033 =item Use fchown/fchmod internally
5034
5035 =item Make v-strings overloaded objects
5036
5037 =item Allow restricted hash assignment
5038
5039 =back
5040
5041 =item Vague ideas
5042
5043 =over 4
5044
5045 =item ref() in list context
5046
5047 =item Make tr/// return histogram of characters in list context
5048
5049 =item Compile to real threaded code
5050
5051 =item Structured types
5052
5053 =item Modifiable $1 et al.
5054
5055 =item Procedural interfaces for IO::*, etc.
5056
5057 =item RPC modules
5058
5059 =item Attach/detach debugger from running program
5060
5061 =item GUI::Native
5062
5063 =item foreach(reverse ...)
5064
5065 =item Constant function cache
5066
5067 =item Approximate regular expression matching
5068
5069 =back
5070
5071 =item Ongoing
5072
5073 =over 4
5074
5075 =item Update guts documentation
5076
5077 =item Add more tests
5078
5079 =item Update auxiliary tools
5080
5081 =back
5082
5083 =item Recently done things
5084
5085 =over 4
5086
5087 =item Alternative RE syntax module
5088
5089 =item Safe signal handling
5090
5091 =item Tie Modules
5092
5093 =item gettimeofday
5094
5095 =item setitimer and getimiter
5096
5097 =item Testing __DIE__ hook
5098
5099 =item CPP equivalent in Perl
5100
5101 =item Explicit switch statements
5102
5103 =item autocroak
5104
5105 =item UTF/EBCDIC
5106
5107 =item UTF Regexes
5108
5109 =item perlcc to produce executable
5110
5111 =item END blocks saved in compiled output
5112
5113 =item Secure temporary file module
5114
5115 =item Integrate Time::HiRes
5116
5117 =item Turn Cwd into XS
5118
5119 =item Mmap for input
5120
5121 =item Byte to/from UTF8 and UTF8 to/from local conversion
5122
5123 =item Add sockatmark support
5124
5125 =item Mailing list archives
5126
5127 =item Bug tracking
5128
5129 =item Integrate MacPerl
5130
5131 =item Web "nerve center" for Perl
5132
5133 =item Regular expression tutorial
5134
5135 =item Debugging Tutorial
5136
5137 =item Integrate new modules
5138
5139 =item Integrate profiler
5140
5141 =item Y2K error detection
5142
5143 =item Regular expression debugger
5144
5145 =item POD checker
5146
5147 =item "Dynamic" lexicals
5148
5149 =item Cache precompiled modules
5150
5151 =back
5152
5153 =item Deprecated Wishes
5154
5155 =over 4
5156
5157 =item Loop control on do{}
5158
5159 =item Lexically scoped typeglobs
5160
5161 =item format BOTTOM
5162
5163 =item report HANDLE
5164
5165 =item Generalised want()/caller())
5166
5167 =item Named prototypes
5168
5169 =item Built-in globbing
5170
5171 =item Regression tests for suidperl
5172
5173 =item Cached hash values
5174
5175 =item Add compression modules
5176
5177 =item Reorganise documentation into tutorials/references
5178
5179 =item Remove distinction between functions and operators
5180
5181 =item Make XS easier to use
5182
5183 =item Make embedding easier to use
5184
5185 =item man for perl
5186
5187 =item my $Package::variable
5188
5189 =item "or" tests defined, not truth
5190
5191 =item "class"-based lexicals
5192
5193 =item byteperl
5194
5195 =item Lazy evaluation / tail recursion removal
5196
5197 =item Make "use utf8" the default
5198
5199 =item Unicode collation and normalization
5200
5201 =item Create debugging macros
5202
5203 =item truncate to the people
5204
5205 =item pack/unpack tutorial
5206
5207 =back
5208
5209 =back
5210
5211 =head2 perlhack - How to hack at the Perl internals
5212
5213 =over 4
5214
5215 =item DESCRIPTION
5216
5217 Does concept match the general goals of Perl?, Where is the
5218 implementation?, Backwards compatibility, Could it be a module instead?, Is
5219 the feature generic enough?, Does it potentially introduce new bugs?, Does
5220 it preclude other desirable features?, Is the implementation robust?, Is
5221 the implementation generic enough to be portable?, Is the implementation
5222 tested?, Is there enough documentation?, Is there another way to do it?,
5223 Does it create too much work?, Patches speak louder than words
5224
5225 =over 4
5226
5227 =item Keeping in sync
5228
5229 rsync'ing the source tree, Using rsync over the LAN, Using pushing over the
5230 NFS, rsync'ing the patches
5231
5232 =item Why rsync the source tree
5233
5234 It's easier to rsync the source tree, It's more recent, It's more reliable
5235
5236 =item Why rsync the patches
5237
5238 It's easier to rsync the patches, It's a good reference, Finding a start
5239 point, Finding how to fix a bug, Finding the source of misbehaviour
5240
5241 =item Perlbug remote interface
5242
5243 1 http://bugs.perl.org, 2 bugdb@perl.org, 3
5244 commands_and_bugdids@bugs.perl.org, notes, patches, tests
5245
5246 =item Submitting patches
5247
5248 L<perlguts>, L<perlxstut> and L<perlxs>, L<perlapi>,
5249 F<Porting/pumpkin.pod>, The perl5-porters FAQ
5250
5251 =item Finding Your Way Around
5252
5253 Core modules, Tests, Documentation, Configure, Interpreter
5254
5255 =item Elements of the interpreter
5256
5257 Startup, Parsing, Optimization, Running
5258
5259 =item Internal Variable Types
5260
5261 =item Op Trees
5262
5263 =item Stacks
5264
5265 Argument stack, Mark stack, Save stack
5266
5267 =item Millions of Macros
5268
5269 =item Poking at Perl
5270
5271 =item Using a source-level debugger
5272
5273 run [args], break function_name, break source.c:xxx, step, next, continue,
5274 finish, 'enter', print
5275
5276 =item Dumping Perl Data Structures
5277
5278 =item Patching
5279
5280 =item Patching a core module
5281
5282 =item Adding a new function to the core
5283
5284 =item Writing a test
5285
5286 F<t/base/>, F<t/cmd/>, F<t/comp/>, F<t/io/>, F<t/lib/>, F<t/op/>,
5287 F<t/pod/>, F<t/run/>, t/base t/comp, t/cmd t/run t/io t/op, t/lib ext lib
5288
5289 =back
5290
5291 =item EXTERNAL TOOLS FOR DEBUGGING PERL
5292
5293 =over 4
5294
5295 =item Rational Software's Purify
5296
5297 =item Purify on Unix
5298
5299 -Accflags=-DPURIFY, -Doptimize='-g', -Uusemymalloc, -Dusemultiplicity
5300
5301 =item Purify on NT
5302
5303 DEFINES, USE_MULTI = define, #PERL_MALLOC = define, CFG = Debug
5304
5305 =item Compaq's/Digital's Third Degree
5306
5307 =item PERL_DESTRUCT_LEVEL
5308
5309 =item Profiling
5310
5311 =item Gprof Profiling
5312
5313 -a, -b, -e routine, -f routine, -s, -z
5314
5315 =item GCC gcov Profiling
5316
5317 =item Pixie Profiling
5318
5319 -h, -l, -p[rocedures], -h[eavy], -i[nvocations], -l[ines], -testcoverage,
5320 -z[ero]
5321
5322 =item CONCLUSION
5323
5324 I<The Road goes ever on and on, down from the door where it began.>
5325
5326 =back
5327
5328 =item AUTHOR
5329
5330 =back
5331
5332 =head2 perlhist - the Perl history records
5333
5334 =over 4
5335
5336 =item DESCRIPTION
5337
5338 =item INTRODUCTION
5339
5340 =item THE KEEPERS OF THE PUMPKIN
5341
5342 =over 4
5343
5344 =item PUMPKIN?
5345
5346 =back
5347
5348 =item THE RECORDS
5349
5350 =over 4
5351
5352 =item SELECTED RELEASE SIZES
5353
5354 =item SELECTED PATCH SIZES
5355
5356 =back
5357
5358 =item THE KEEPERS OF THE RECORDS
5359
5360 =back
5361
5362 =head2 perldelta - what is new for perl v5.8.0
5363
5364 =over 4
5365
5366 =item DESCRIPTION
5367
5368 =item Highlights In 5.8.0
5369
5370 =item Incompatible Changes
5371
5372 =over 4
5373
5374 =item 64-bit platforms and malloc
5375
5376 =item AIX Dynaloading
5377
5378 =item Attributes for C<my> variables now handled at run-time.
5379
5380 =item Socket Extension Dynamic in VMS
5381
5382 =item IEEE-format Floating Point Default on OpenVMS Alpha
5383
5384 =item New Unicode Properties
5385
5386 =item REF(...) Instead Of SCALAR(...)
5387
5388 =item pack/unpack D/F recycled
5389
5390 =item Deprecations
5391
5392 =back
5393
5394 =item Core Enhancements
5395
5396 =over 4
5397
5398 =item PerlIO is Now The Default
5399
5400 =item Safe Signals
5401
5402 =item Unicode Overhaul
5403
5404 =item Understanding of Numbers
5405
5406 =item Miscellaneous Changes
5407
5408 =back
5409
5410 =item Modules and Pragmata
5411
5412 =over 4
5413
5414 =item New Modules and Pragmata
5415
5416 =item Updated And Improved Modules and Pragmata
5417
5418 =back
5419
5420 =item Utility Changes
5421
5422 =item New Documentation
5423
5424 =item Performance Enhancements
5425
5426 =item Installation and Configuration Improvements
5427
5428 =over 4
5429
5430 =item Generic Improvements
5431
5432 =item New Or Improved Platforms
5433
5434 =back
5435
5436 =item Selected Bug Fixes
5437
5438 =over 4
5439
5440 =item Platform Specific Changes and Fixes
5441
5442 =back
5443
5444 =item New or Changed Diagnostics
5445
5446 =item Changed Internals
5447
5448 =item Security Vulnerability Closed
5449
5450 =item New Tests
5451
5452 =item Known Problems
5453
5454 =over 4
5455
5456 =item AIX
5457
5458 =item Amiga Perl Invoking Mystery
5459
5460 =item lib/ftmp-security tests warn 'system possibly insecure'
5461
5462 =item  HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5463
5464 =item Linux With Sfio Fails op/misc Test 48
5465
5466 =item Mac OS X
5467
5468 =item OS/390
5469
5470 =item op/sprintf tests 129 and 130
5471
5472 =item  Failure of Thread tests
5473
5474 =item UNICOS
5475
5476 =item UNICOS and UNICOS/mk
5477
5478 =item UTS
5479
5480 =item VMS
5481
5482 =item Win32
5483
5484 =item Localising a Tied Variable Leaks Memory
5485
5486 =item Localising Tied Arrays and Hashes Is Broken
5487
5488 =item Self-tying of Arrays and Hashes Is Forbidden
5489
5490 =item Building Extensions Can Fail Because Of Largefiles
5491
5492 =item Unicode Support on EBCDIC Still Spotty
5493
5494 =item The Compiler Suite Is Still Experimental
5495
5496 =item The Long Double Support Is Still Experimental
5497
5498 =item Seen In Perl 5.7 But Gone Now
5499
5500 =back
5501
5502 =item Reporting Bugs
5503
5504 =item SEE ALSO
5505
5506 =item HISTORY
5507
5508 =back
5509
5510 =head2 perl572delta - what's new for perl v5.7.2
5511
5512 =over 4
5513
5514 =item DESCRIPTION
5515
5516 =item Security Vulnerability Closed
5517
5518 =item Incompatible Changes
5519
5520 =over 4
5521
5522 =item 64-bit platforms and malloc
5523
5524 =item AIX Dynaloading
5525
5526 =item Socket Extension Dynamic in VMS
5527
5528 =item Different Definition of the Unicode Character Classes \p{In...}
5529
5530 =item Deprecations
5531
5532 =back
5533
5534 =item Core Enhancements
5535
5536 =item Modules and Pragmata
5537
5538 =over 4
5539
5540 =item New Modules and Distributions
5541
5542 =item Updated And Improved Modules and Pragmata
5543
5544 =back
5545
5546 =item Utility Changes
5547
5548 =item New Documentation
5549
5550 =item Installation and Configuration Improvements
5551
5552 =over 4
5553
5554 =item New Or Improved Platforms
5555
5556 =item Generic Improvements
5557
5558 =back
5559
5560 =item Selected Bug Fixes
5561
5562 =over 4
5563
5564 =item Platform Specific Changes and Fixes
5565
5566 =back
5567
5568 =item New or Changed Diagnostics
5569
5570 =item Source Code Enhancements
5571
5572 =over 4
5573
5574 =item MAGIC constants
5575
5576 =item Better commented code
5577
5578 =item Regex pre-/post-compilation items matched up
5579
5580 =item gcc -Wall
5581
5582 =back
5583
5584 =item New Tests
5585
5586 =item Known Problems
5587
5588 =over 4
5589
5590 =item AIX
5591
5592 =item Amiga Perl Invoking Mystery
5593
5594 =item lib/ftmp-security tests warn 'system possibly insecure'
5595
5596 =item Cygwin intermittent failures of lib/Memoize/t/expire_file 11 and 12
5597
5598 =item HP-UX lib/io_multihomed Fails When LP64-Configured
5599
5600 =item  HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5601
5602 =item Linux With Sfio Fails op/misc Test 48
5603
5604 =item OS/390
5605
5606 =item op/sprintf tests 129 and 130
5607
5608 =item  Failure of Thread tests
5609
5610 =item UNICOS
5611
5612 =item UTS
5613
5614 =item VMS
5615
5616 =item Win32
5617
5618 =item Localising a Tied Variable Leaks Memory
5619
5620 =item Self-tying of Arrays and Hashes Is Forbidden
5621
5622 =item Variable Attributes are not Currently Usable for Tieing
5623
5624 =item Building Extensions Can Fail Because Of Largefiles
5625
5626 =item The Compiler Suite Is Still Experimental
5627
5628 =item The Long Double Support is Still Experimental
5629
5630 =back
5631
5632 =item Reporting Bugs
5633
5634 =item SEE ALSO
5635
5636 =item HISTORY
5637
5638 =back
5639
5640 =head2 perl571delta - what's new for perl v5.7.1
5641
5642 =over 4
5643
5644 =item DESCRIPTION
5645
5646 =item Security Vulnerability Closed
5647
5648 =item Incompatible Changes
5649
5650 =item Core Enhancements
5651
5652 =over 4
5653
5654 =item AUTOLOAD Is Now Lvaluable
5655
5656 =item PerlIO is Now The Default
5657
5658 =item Signals Are Now Safe
5659
5660 =back
5661
5662 =item Modules and Pragmata
5663
5664 =over 4
5665
5666 =item New Modules
5667
5668 =item Updated And Improved Modules and Pragmata
5669
5670 =back
5671
5672 =item Performance Enhancements
5673
5674 =item Utility Changes
5675
5676 =item New Documentation
5677
5678 =over 4
5679
5680 =item perlclib
5681
5682 =item perliol
5683
5684 =item README.aix
5685
5686 =item README.bs2000
5687
5688 =item README.macos
5689
5690 =item README.mpeix
5691
5692 =item README.solaris
5693
5694 =item README.vos
5695
5696 =item Porting/repository.pod
5697
5698 =back
5699
5700 =item Installation and Configuration Improvements
5701
5702 =over 4
5703
5704 =item New Or Improved Platforms
5705
5706 =item Generic Improvements
5707
5708 d_cmsghdr, d_fcntl_can_lock, d_fsync, d_getitimer, d_getpagsz, d_msghdr_s,
5709 need_va_copy, d_readv, d_recvmsg, d_sendmsg, sig_size, d_sockatmark,
5710 d_strtoq, d_u32align, d_ualarm, d_usleep
5711
5712 =back
5713
5714 =item Selected Bug Fixes
5715
5716 =over 4
5717
5718 =item Platform Specific Changes and Fixes
5719
5720 =back
5721
5722 =item New or Changed Diagnostics
5723
5724 =item Changed Internals
5725
5726 =item New Tests
5727
5728 =item Known Problems
5729
5730 =over 4
5731
5732 =item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
5733
5734 =item lib/ftmp-security tests warn 'system possibly insecure'
5735
5736 =item lib/io_multihomed Fails In LP64-Configured HP-UX
5737
5738 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5739
5740 =item lib/b test 19
5741
5742 =item Linux With Sfio Fails op/misc Test 48
5743
5744 =item sigaction test 13 in VMS
5745
5746 =item sprintf tests 129 and 130
5747
5748 =item  Failure of Thread tests
5749
5750 =item Localising a Tied Variable Leaks Memory
5751
5752 =item Self-tying of Arrays and Hashes Is Forbidden
5753
5754 =item Building Extensions Can Fail Because Of Largefiles
5755
5756 =item The Compiler Suite Is Still Experimental
5757
5758 =back
5759
5760 =item Reporting Bugs
5761
5762 =item SEE ALSO
5763
5764 =item HISTORY
5765
5766 =back
5767
5768 =head2 perl570delta - what's new for perl v5.7.0
5769
5770 =over 4
5771
5772 =item DESCRIPTION
5773
5774 =item Security Vulnerability Closed
5775
5776 =item Incompatible Changes
5777
5778 =item Core Enhancements
5779
5780 =item Modules and Pragmata
5781
5782 =over 4
5783
5784 =item New Modules
5785
5786 =item Updated And Improved Modules and Pragmata
5787
5788 =back
5789
5790 =item Utility Changes
5791
5792 =item New Documentation
5793
5794 =item Performance Enhancements
5795
5796 =item Installation and Configuration Improvements
5797
5798 =over 4
5799
5800 =item Generic Improvements
5801
5802 =back
5803
5804 =item Selected Bug Fixes
5805
5806 =over 4
5807
5808 =item Platform Specific Changes and Fixes
5809
5810 =back
5811
5812 =item New or Changed Diagnostics
5813
5814 =item Changed Internals
5815
5816 =item Known Problems
5817
5818 =over 4
5819
5820 =item Unicode Support Still Far From Perfect
5821
5822 =item EBCDIC Still A Lost Platform
5823
5824 =item Building Extensions Can Fail Because Of Largefiles
5825
5826 =item ftmp-security tests warn 'system possibly insecure'
5827
5828 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5829
5830 =item Long Doubles Still Don't Work In Solaris
5831
5832 =item Linux With Sfio Fails op/misc Test 48
5833
5834 =item Storable tests fail in some platforms
5835
5836 =item Threads Are Still Experimental
5837
5838 =item The Compiler Suite Is Still Experimental
5839
5840 =back
5841
5842 =item Reporting Bugs
5843
5844 =item SEE ALSO
5845
5846 =item HISTORY
5847
5848 =back
5849
5850 =head2 perl561delta - what's new for perl v5.6.x
5851
5852 =over 4
5853
5854 =item DESCRIPTION
5855
5856 =item Summary of changes between 5.6.0 and 5.6.1
5857
5858 =over 4
5859
5860 =item Security Issues
5861
5862 =item Core bug fixes
5863
5864 C<UNIVERSAL::isa()>, Memory leaks, Numeric conversions, qw(a\\b), caller(),
5865 Bugs in regular expressions, "slurp" mode, Autovivification of symbolic
5866 references to special variables, Lexical warnings, Spurious warnings and
5867 errors, glob(), Tainting, sort(), #line directives, Subroutine prototypes,
5868 map(), Debugger, PERL5OPT, chop(), Unicode support, 64-bit support,
5869 Compiler, Lvalue subroutines, IO::Socket, File::Find, xsubpp, C<no
5870 Module;>, Tests
5871
5872 =item Core features
5873
5874 =item Configuration issues
5875
5876 =item Documentation
5877
5878 =item Bundled modules
5879
5880 B::Concise, File::Temp, Pod::LaTeX, Pod::Text::Overstrike, CGI, CPAN,
5881 Class::Struct, DB_File, Devel::Peek, File::Find, Getopt::Long, IO::Poll,
5882 IPC::Open3, Math::BigFloat, Math::Complex, Net::Ping, Opcode, Pod::Parser,
5883 Pod::Text, SDBM_File, Sys::Syslog, Tie::RefHash, Tie::SubstrHash
5884
5885 =item Platform-specific improvements
5886
5887 NCR MP-RAS, NonStop-UX
5888
5889 =back
5890
5891 =item Core Enhancements
5892
5893 =over 4
5894
5895 =item Interpreter cloning, threads, and concurrency
5896
5897 =item Lexically scoped warning categories
5898
5899 =item Unicode and UTF-8 support
5900
5901 =item Support for interpolating named characters
5902
5903 =item "our" declarations
5904
5905 =item Support for strings represented as a vector of ordinals
5906
5907 =item Improved Perl version numbering system
5908
5909 =item New syntax for declaring subroutine attributes
5910
5911 =item File and directory handles can be autovivified
5912
5913 =item open() with more than two arguments
5914
5915 =item 64-bit support
5916
5917 =item Large file support
5918
5919 =item Long doubles
5920
5921 =item "more bits"
5922
5923 =item Enhanced support for sort() subroutines
5924
5925 =item C<sort $coderef @foo> allowed
5926
5927 =item File globbing implemented internally
5928
5929 =item Support for CHECK blocks
5930
5931 =item POSIX character class syntax [: :] supported
5932
5933 =item Better pseudo-random number generator
5934
5935 =item Improved C<qw//> operator
5936
5937 =item Better worst-case behavior of hashes
5938
5939 =item pack() format 'Z' supported
5940
5941 =item pack() format modifier '!' supported
5942
5943 =item pack() and unpack() support counted strings
5944
5945 =item Comments in pack() templates
5946
5947 =item Weak references
5948
5949 =item Binary numbers supported
5950
5951 =item Lvalue subroutines
5952
5953 =item Some arrows may be omitted in calls through references
5954
5955 =item Boolean assignment operators are legal lvalues
5956
5957 =item exists() is supported on subroutine names
5958
5959 =item exists() and delete() are supported on array elements
5960
5961 =item Pseudo-hashes work better
5962
5963 =item Automatic flushing of output buffers
5964
5965 =item Better diagnostics on meaningless filehandle operations
5966
5967 =item Where possible, buffered data discarded from duped input filehandle
5968
5969 =item eof() has the same old magic as <>
5970
5971 =item binmode() can be used to set :crlf and :raw modes
5972
5973 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
5974
5975 =item system(), backticks and pipe open now reflect exec() failure
5976
5977 =item Improved diagnostics
5978
5979 =item Diagnostics follow STDERR
5980
5981 =item More consistent close-on-exec behavior
5982
5983 =item syswrite() ease-of-use
5984
5985 =item Better syntax checks on parenthesized unary operators
5986
5987 =item Bit operators support full native integer width
5988
5989 =item Improved security features
5990
5991 =item More functional bareword prototype (*)
5992
5993 =item C<require> and C<do> may be overridden
5994
5995 =item $^X variables may now have names longer than one character
5996
5997 =item New variable $^C reflects C<-c> switch
5998
5999 =item New variable $^V contains Perl version as a string
6000
6001 =item Optional Y2K warnings
6002
6003 =item Arrays now always interpolate into double-quoted strings
6004
6005 =back
6006
6007 =item Modules and Pragmata
6008
6009 =over 4
6010
6011 =item Modules
6012
6013 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6014 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6015 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6016 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6017 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6018 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6019 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6020 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6021
6022 =item Pragmata
6023
6024 =back
6025
6026 =item Utility Changes
6027
6028 =over 4
6029
6030 =item dprofpp
6031
6032 =item find2perl
6033
6034 =item h2xs
6035
6036 =item perlcc
6037
6038 =item perldoc
6039
6040 =item The Perl Debugger
6041
6042 =back
6043
6044 =item Improved Documentation
6045
6046 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6047 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6048 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6049 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6050
6051 =item Performance enhancements
6052
6053 =over 4
6054
6055 =item Simple sort() using { $a <=> $b } and the like are optimized
6056
6057 =item Optimized assignments to lexical variables
6058
6059 =item Faster subroutine calls
6060
6061 =item delete(), each(), values() and hash iteration are faster
6062
6063 =back
6064
6065 =item Installation and Configuration Improvements
6066
6067 =over 4
6068
6069 =item -Dusethreads means something different
6070
6071 =item New Configure flags
6072
6073 =item Threadedness and 64-bitness now more daring
6074
6075 =item Long Doubles
6076
6077 =item -Dusemorebits
6078
6079 =item -Duselargefiles
6080
6081 =item installusrbinperl
6082
6083 =item SOCKS support
6084
6085 =item C<-A> flag
6086
6087 =item Enhanced Installation Directories
6088
6089 =item gcc automatically tried if 'cc' does not seem to be working
6090
6091 =back
6092
6093 =item Platform specific changes
6094
6095 =over 4
6096
6097 =item Supported platforms
6098
6099 =item DOS
6100
6101 =item OS390 (OpenEdition MVS)
6102
6103 =item VMS
6104
6105 =item Win32
6106
6107 =back
6108
6109 =item Significant bug fixes
6110
6111 =over 4
6112
6113 =item <HANDLE> on empty files
6114
6115 =item C<eval '...'> improvements
6116
6117 =item All compilation errors are true errors
6118
6119 =item Implicitly closed filehandles are safer
6120
6121 =item Behavior of list slices is more consistent
6122
6123 =item C<(\$)> prototype and C<$foo{a}>
6124
6125 =item C<goto &sub> and AUTOLOAD
6126
6127 =item C<-bareword> allowed under C<use integer>
6128
6129 =item Failures in DESTROY()
6130
6131 =item Locale bugs fixed
6132
6133 =item Memory leaks
6134
6135 =item Spurious subroutine stubs after failed subroutine calls
6136
6137 =item Taint failures under C<-U>
6138
6139 =item END blocks and the C<-c> switch
6140
6141 =item Potential to leak DATA filehandles
6142
6143 =back
6144
6145 =item New or Changed Diagnostics
6146
6147 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6148 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6149 / cannot take a count, / must be followed by a, A or Z, / must be followed
6150 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6151 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6152 passed through, /%s/ should probably be written as "%s", %s() called too
6153 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6154 argument is not a HASH or ARRAY element or slice, %s argument is not a
6155 subroutine name, %s package attribute may clash with future reserved word:
6156 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6157 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6158 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6159 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6160 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6161 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6162 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6163 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6164 weaken a nonreference, Character class [:%s:] unknown, Character class
6165 syntax [%s] belongs inside character classes, Constant is not %s reference,
6166 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6167 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6168 "local" instead of "our"?), Document contains no data, entering effective
6169 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6170 output, flock() on closed filehandle %s, Global symbol "%s" requires
6171 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6172 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6173 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6174 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6175 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6176 separator character %s in attribute list, Invalid separator character %s in
6177 subroutine attribute list, leaving effective %s failed, Lvalue subs
6178 returning %s not implemented yet, Method %s not permitted, Missing
6179 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6180 No %s specified for -%c, No package name allowed for variable %s in "our",
6181 No space allowed after -%c, no UTC offset information; assuming local time
6182 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6183 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6184 around "%s" list, Possible unintended interpolation of %s in string,
6185 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6186 instead, Premature end of script headers, Repeat count in pack overflows,
6187 Repeat count in unpack overflows, realloc() of freed memory ignored,
6188 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6189 zero-length expression, switching effective %s is not implemented, This
6190 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6191 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6192 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6193 escape \\%c passed through, Unterminated attribute parameter in attribute
6194 list, Unterminated attribute list, Unterminated attribute parameter in
6195 subroutine attribute list, Unterminated subroutine attribute list, Value of
6196 CLI symbol "%s" too long, Version number must be a constant number
6197
6198 =item New tests
6199
6200 =item Incompatible Changes
6201
6202 =over 4
6203
6204 =item Perl Source Incompatibilities
6205
6206 CHECK is a new keyword, Treatment of list slices of undef has changed,
6207 Format of $English::PERL_VERSION is different, Literals of the form
6208 C<1.2.3> parse differently, Possibly changed pseudo-random number
6209 generator, Hashing function for hash keys has changed, C<undef> fails on
6210 read only values, Close-on-exec bit may be set on pipe and socket handles,
6211 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6212 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6213 Text of some diagnostic output has changed, C<%@> has been removed,
6214 Parenthesized not() behaves like a list operator, Semantics of bareword
6215 prototype C<(*)> have changed, Semantics of bit operators may have changed
6216 on 64-bit platforms, More builtins taint their results
6217
6218 =item C Source Incompatibilities
6219
6220 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6221
6222 =item Compatible C Source API Changes
6223
6224 C<PATCHLEVEL> is now C<PERL_VERSION>
6225
6226 =item Binary Incompatibilities
6227
6228 =back
6229
6230 =item Known Problems
6231
6232 =over 4
6233
6234 =item Localizing a tied hash element may leak memory
6235
6236 =item Known test failures
6237
6238 , , 
6239
6240 =item EBCDIC platforms not fully supported
6241
6242 =item UNICOS/mk CC failures during Configure run
6243
6244 =item Arrow operator and arrays
6245
6246 =item Experimental features
6247
6248 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6249 pseudo-hash data type, The Compiler suite, Internal implementation of file
6250 globbing, The DB module, The regular expression code constructs:
6251
6252 =back
6253
6254 =item Obsolete Diagnostics
6255
6256 Character class syntax [: :] is reserved for future extensions, Ill-formed
6257 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6258 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6259 to mean "${$}<digit>" is deprecated
6260
6261 =item Reporting Bugs
6262
6263 =item SEE ALSO
6264
6265 =item HISTORY
6266
6267 =back
6268
6269 =head2 perl56delta - what's new for perl v5.6.0
6270
6271 =over 4
6272
6273 =item DESCRIPTION
6274
6275 =item Core Enhancements
6276
6277 =over 4
6278
6279 =item Interpreter cloning, threads, and concurrency
6280
6281 =item Lexically scoped warning categories
6282
6283 =item Unicode and UTF-8 support
6284
6285 =item Support for interpolating named characters
6286
6287 =item "our" declarations
6288
6289 =item Support for strings represented as a vector of ordinals
6290
6291 =item Improved Perl version numbering system
6292
6293 =item New syntax for declaring subroutine attributes
6294
6295 =item File and directory handles can be autovivified
6296
6297 =item open() with more than two arguments
6298
6299 =item 64-bit support
6300
6301 =item Large file support
6302
6303 =item Long doubles
6304
6305 =item "more bits"
6306
6307 =item Enhanced support for sort() subroutines
6308
6309 =item C<sort $coderef @foo> allowed
6310
6311 =item File globbing implemented internally
6312
6313 =item Support for CHECK blocks
6314
6315 =item POSIX character class syntax [: :] supported
6316
6317 =item Better pseudo-random number generator
6318
6319 =item Improved C<qw//> operator
6320
6321 =item Better worst-case behavior of hashes
6322
6323 =item pack() format 'Z' supported
6324
6325 =item pack() format modifier '!' supported
6326
6327 =item pack() and unpack() support counted strings
6328
6329 =item Comments in pack() templates
6330
6331 =item Weak references
6332
6333 =item Binary numbers supported
6334
6335 =item Lvalue subroutines
6336
6337 =item Some arrows may be omitted in calls through references
6338
6339 =item Boolean assignment operators are legal lvalues
6340
6341 =item exists() is supported on subroutine names
6342
6343 =item exists() and delete() are supported on array elements
6344
6345 =item Pseudo-hashes work better
6346
6347 =item Automatic flushing of output buffers
6348
6349 =item Better diagnostics on meaningless filehandle operations
6350
6351 =item Where possible, buffered data discarded from duped input filehandle
6352
6353 =item eof() has the same old magic as <>
6354
6355 =item binmode() can be used to set :crlf and :raw modes
6356
6357 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
6358
6359 =item system(), backticks and pipe open now reflect exec() failure
6360
6361 =item Improved diagnostics
6362
6363 =item Diagnostics follow STDERR
6364
6365 =item More consistent close-on-exec behavior
6366
6367 =item syswrite() ease-of-use
6368
6369 =item Better syntax checks on parenthesized unary operators
6370
6371 =item Bit operators support full native integer width
6372
6373 =item Improved security features
6374
6375 =item More functional bareword prototype (*)
6376
6377 =item C<require> and C<do> may be overridden
6378
6379 =item $^X variables may now have names longer than one character
6380
6381 =item New variable $^C reflects C<-c> switch
6382
6383 =item New variable $^V contains Perl version as a string
6384
6385 =item Optional Y2K warnings
6386
6387 =item Arrays now always interpolate into double-quoted strings
6388
6389 =back
6390
6391 =item Modules and Pragmata
6392
6393 =over 4
6394
6395 =item Modules
6396
6397 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6398 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6399 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6400 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6401 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6402 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6403 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6404 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6405
6406 =item Pragmata
6407
6408 =back
6409
6410 =item Utility Changes
6411
6412 =over 4
6413
6414 =item dprofpp
6415
6416 =item find2perl
6417
6418 =item h2xs
6419
6420 =item perlcc
6421
6422 =item perldoc
6423
6424 =item The Perl Debugger
6425
6426 =back
6427
6428 =item Improved Documentation
6429
6430 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6431 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6432 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6433 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6434
6435 =item Performance enhancements
6436
6437 =over 4
6438
6439 =item Simple sort() using { $a <=> $b } and the like are optimized
6440
6441 =item Optimized assignments to lexical variables
6442
6443 =item Faster subroutine calls
6444
6445 =item delete(), each(), values() and hash iteration are faster
6446
6447 =back
6448
6449 =item Installation and Configuration Improvements
6450
6451 =over 4
6452
6453 =item -Dusethreads means something different
6454
6455 =item New Configure flags
6456
6457 =item Threadedness and 64-bitness now more daring
6458
6459 =item Long Doubles
6460
6461 =item -Dusemorebits
6462
6463 =item -Duselargefiles
6464
6465 =item installusrbinperl
6466
6467 =item SOCKS support
6468
6469 =item C<-A> flag
6470
6471 =item Enhanced Installation Directories
6472
6473 =back
6474
6475 =item Platform specific changes
6476
6477 =over 4
6478
6479 =item Supported platforms
6480
6481 =item DOS
6482
6483 =item OS390 (OpenEdition MVS)
6484
6485 =item VMS
6486
6487 =item Win32
6488
6489 =back
6490
6491 =item Significant bug fixes
6492
6493 =over 4
6494
6495 =item <HANDLE> on empty files
6496
6497 =item C<eval '...'> improvements
6498
6499 =item All compilation errors are true errors
6500
6501 =item Implicitly closed filehandles are safer
6502
6503 =item Behavior of list slices is more consistent
6504
6505 =item C<(\$)> prototype and C<$foo{a}>
6506
6507 =item C<goto &sub> and AUTOLOAD
6508
6509 =item C<-bareword> allowed under C<use integer>
6510
6511 =item Failures in DESTROY()
6512
6513 =item Locale bugs fixed
6514
6515 =item Memory leaks
6516
6517 =item Spurious subroutine stubs after failed subroutine calls
6518
6519 =item Taint failures under C<-U>
6520
6521 =item END blocks and the C<-c> switch
6522
6523 =item Potential to leak DATA filehandles
6524
6525 =back
6526
6527 =item New or Changed Diagnostics
6528
6529 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6530 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6531 / cannot take a count, / must be followed by a, A or Z, / must be followed
6532 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6533 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6534 passed through, /%s/ should probably be written as "%s", %s() called too
6535 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6536 argument is not a HASH or ARRAY element or slice, %s argument is not a
6537 subroutine name, %s package attribute may clash with future reserved word:
6538 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6539 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6540 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6541 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6542 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6543 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6544 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6545 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6546 weaken a nonreference, Character class [:%s:] unknown, Character class
6547 syntax [%s] belongs inside character classes, Constant is not %s reference,
6548 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6549 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6550 "local" instead of "our"?), Document contains no data, entering effective
6551 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6552 output, flock() on closed filehandle %s, Global symbol "%s" requires
6553 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6554 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6555 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6556 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6557 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6558 separator character %s in attribute list, Invalid separator character %s in
6559 subroutine attribute list, leaving effective %s failed, Lvalue subs
6560 returning %s not implemented yet, Method %s not permitted, Missing
6561 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6562 No %s specified for -%c, No package name allowed for variable %s in "our",
6563 No space allowed after -%c, no UTC offset information; assuming local time
6564 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6565 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6566 around "%s" list, Possible unintended interpolation of %s in string,
6567 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6568 instead, Premature end of script headers, Repeat count in pack overflows,
6569 Repeat count in unpack overflows, realloc() of freed memory ignored,
6570 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6571 zero-length expression, switching effective %s is not implemented, This
6572 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6573 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6574 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6575 escape \\%c passed through, Unterminated attribute parameter in attribute
6576 list, Unterminated attribute list, Unterminated attribute parameter in
6577 subroutine attribute list, Unterminated subroutine attribute list, Value of
6578 CLI symbol "%s" too long, Version number must be a constant number
6579
6580 =item New tests
6581
6582 =item Incompatible Changes
6583
6584 =over 4
6585
6586 =item Perl Source Incompatibilities
6587
6588 CHECK is a new keyword, Treatment of list slices of undef has changed,
6589 Format of $English::PERL_VERSION is different, Literals of the form
6590 C<1.2.3> parse differently, Possibly changed pseudo-random number
6591 generator, Hashing function for hash keys has changed, C<undef> fails on
6592 read only values, Close-on-exec bit may be set on pipe and socket handles,
6593 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6594 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6595 Text of some diagnostic output has changed, C<%@> has been removed,
6596 Parenthesized not() behaves like a list operator, Semantics of bareword
6597 prototype C<(*)> have changed, Semantics of bit operators may have changed
6598 on 64-bit platforms, More builtins taint their results
6599
6600 =item C Source Incompatibilities
6601
6602 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6603
6604 =item Compatible C Source API Changes
6605
6606 C<PATCHLEVEL> is now C<PERL_VERSION>
6607
6608 =item Binary Incompatibilities
6609
6610 =back
6611
6612 =item Known Problems
6613
6614 =over 4
6615
6616 =item Thread test failures
6617
6618 =item EBCDIC platforms not supported
6619
6620 =item In 64-bit HP-UX the lib/io_multihomed test may hang
6621
6622 =item NEXTSTEP 3.3 POSIX test failure
6623
6624 =item Tru64 (aka Digital UNIX, aka DEC OSF/1) lib/sdbm test failure with
6625 gcc
6626
6627 =item UNICOS/mk CC failures during Configure run
6628
6629 =item Arrow operator and arrays
6630
6631 =item Experimental features
6632
6633 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6634 pseudo-hash data type, The Compiler suite, Internal implementation of file
6635 globbing, The DB module, The regular expression code constructs:
6636
6637 =back
6638
6639 =item Obsolete Diagnostics
6640
6641 Character class syntax [: :] is reserved for future extensions, Ill-formed
6642 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6643 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6644 to mean "${$}<digit>" is deprecated
6645
6646 =item Reporting Bugs
6647
6648 =item SEE ALSO
6649
6650 =item HISTORY
6651
6652 =back
6653
6654 =head2 perl5005delta - what's new for perl5.005
6655
6656 =over 4
6657
6658 =item DESCRIPTION
6659
6660 =item About the new versioning system
6661
6662 =item Incompatible Changes
6663
6664 =over 4
6665
6666 =item WARNING:  This version is not binary compatible with Perl 5.004.
6667
6668 =item Default installation structure has changed
6669
6670 =item Perl Source Compatibility
6671
6672 =item C Source Compatibility
6673
6674 =item Binary Compatibility
6675
6676 =item Security fixes may affect compatibility
6677
6678 =item Relaxed new mandatory warnings introduced in 5.004
6679
6680 =item Licensing
6681
6682 =back
6683
6684 =item Core Changes
6685
6686 =over 4
6687
6688 =item Threads
6689
6690 =item Compiler
6691
6692 =item Regular Expressions
6693
6694 Many new and improved optimizations, Many bug fixes, New regular expression
6695 constructs, New operator for precompiled regular expressions, Other
6696 improvements, Incompatible changes
6697
6698 =item   Improved malloc()
6699
6700 =item Quicksort is internally implemented
6701
6702 =item Reliable signals
6703
6704 =item Reliable stack pointers
6705
6706 =item More generous treatment of carriage returns
6707
6708 =item Memory leaks
6709
6710 =item Better support for multiple interpreters
6711
6712 =item Behavior of local() on array and hash elements is now well-defined
6713
6714 =item C<%!> is transparently tied to the L<Errno> module
6715
6716 =item Pseudo-hashes are supported
6717
6718 =item C<EXPR foreach EXPR> is supported
6719
6720 =item Keywords can be globally overridden
6721
6722 =item C<$^E> is meaningful on Win32
6723
6724 =item C<foreach (1..1000000)> optimized
6725
6726 =item C<Foo::> can be used as implicitly quoted package name
6727
6728 =item C<exists $Foo::{Bar::}> tests existence of a package
6729
6730 =item Better locale support
6731
6732 =item Experimental support for 64-bit platforms
6733
6734 =item prototype() returns useful results on builtins
6735
6736 =item Extended support for exception handling
6737
6738 =item Re-blessing in DESTROY() supported for chaining DESTROY() methods
6739
6740 =item All C<printf> format conversions are handled internally
6741
6742 =item New C<INIT> keyword
6743
6744 =item New C<lock> keyword
6745
6746 =item New C<qr//> operator
6747
6748 =item C<our> is now a reserved word
6749
6750 =item Tied arrays are now fully supported
6751
6752 =item Tied handles support is better
6753
6754 =item 4th argument to substr
6755
6756 =item Negative LENGTH argument to splice
6757
6758 =item Magic lvalues are now more magical
6759
6760 =item <> now reads in records
6761
6762 =back
6763
6764 =item Supported Platforms
6765
6766 =over 4
6767
6768 =item New Platforms
6769
6770 =item Changes in existing support
6771
6772 =back
6773
6774 =item Modules and Pragmata
6775
6776 =over 4
6777
6778 =item New Modules
6779
6780 B, Data::Dumper, Dumpvalue, Errno, File::Spec, ExtUtils::Installed,
6781 ExtUtils::Packlist, Fatal, IPC::SysV, Test, Tie::Array, Tie::Handle,
6782 Thread, attrs, fields, re
6783
6784 =item Changes in existing modules
6785
6786 Benchmark, Carp, CGI, Fcntl, Math::Complex, Math::Trig, POSIX, DB_File,
6787 MakeMaker, CPAN, Cwd
6788
6789 =back
6790
6791 =item Utility Changes
6792
6793 =item Documentation Changes
6794
6795 =item New Diagnostics
6796
6797 Ambiguous call resolved as CORE::%s(), qualify as such or use &, Bad index
6798 while coercing array into hash, Bareword "%s" refers to nonexistent
6799 package, Can't call method "%s" on an undefined value, Can't check
6800 filesystem of script "%s" for nosuid, Can't coerce array into hash, Can't
6801 goto subroutine from an eval-string, Can't localize pseudo-hash element,
6802 Can't use %%! because Errno.pm is not available, Cannot find an opnumber
6803 for "%s", Character class syntax [. .] is reserved for future extensions,
6804 Character class syntax [: :] is reserved for future extensions, Character
6805 class syntax [= =] is reserved for future extensions, %s: Eval-group in
6806 insecure regular expression, %s: Eval-group not allowed, use re 'eval', %s:
6807 Eval-group not allowed at run time, Explicit blessing to '' (assuming
6808 package main), Illegal hex digit ignored, No such array field, No such
6809 field "%s" in variable %s of type %s, Out of memory during ridiculously
6810 large request, Range iterator outside integer range, Recursive inheritance
6811 detected while looking for method '%s' %s, Reference found where even-sized
6812 list expected, Undefined value assigned to typeglob, Use of reserved word
6813 "%s" is deprecated, perl: warning: Setting locale failed
6814
6815 =item Obsolete Diagnostics
6816
6817 Can't mktemp(), Can't write to temp file for B<-e>: %s, Cannot open
6818 temporary file, regexp too big
6819
6820 =item Configuration Changes
6821
6822 =item BUGS
6823
6824 =item SEE ALSO
6825
6826 =item HISTORY
6827
6828 =back
6829
6830 =head2 perl5004delta - what's new for perl5.004
6831
6832 =over 4
6833
6834 =item DESCRIPTION
6835
6836 =item Supported Environments
6837
6838 =item Core Changes
6839
6840 =over 4
6841
6842 =item List assignment to %ENV works
6843
6844 =item Change to "Can't locate Foo.pm in @INC" error
6845
6846 =item Compilation option: Binary compatibility with 5.003
6847
6848 =item $PERL5OPT environment variable
6849
6850 =item Limitations on B<-M>, B<-m>, and B<-T> options
6851
6852 =item More precise warnings
6853
6854 =item Deprecated: Inherited C<AUTOLOAD> for non-methods
6855
6856 =item Previously deprecated %OVERLOAD is no longer usable
6857
6858 =item Subroutine arguments created only when they're modified
6859
6860 =item Group vector changeable with C<$)>
6861
6862 =item Fixed parsing of $$<digit>, &$<digit>, etc.
6863
6864 =item Fixed localization of $<digit>, $&, etc.
6865
6866 =item No resetting of $. on implicit close
6867
6868 =item C<wantarray> may return undef
6869
6870 =item C<eval EXPR> determines value of EXPR in scalar context
6871
6872 =item Changes to tainting checks
6873
6874 No glob() or <*>, No spawning if tainted $CDPATH, $ENV, $BASH_ENV, No
6875 spawning if tainted $TERM doesn't look like a terminal name
6876
6877 =item New Opcode module and revised Safe module
6878
6879 =item Embedding improvements
6880
6881 =item Internal change: FileHandle class based on IO::* classes
6882
6883 =item Internal change: PerlIO abstraction interface
6884
6885 =item New and changed syntax
6886
6887 $coderef->(PARAMS)
6888
6889 =item New and changed builtin constants
6890
6891 __PACKAGE__
6892
6893 =item New and changed builtin variables
6894
6895 $^E, $^H, $^M
6896
6897 =item New and changed builtin functions
6898
6899 delete on slices, flock, printf and sprintf, keys as an lvalue, my() in
6900 Control Structures, pack() and unpack(), sysseek(), use VERSION, use Module
6901 VERSION LIST, prototype(FUNCTION), srand, $_ as Default, C<m//gc> does not
6902 reset search position on failure, C<m//x> ignores whitespace before ?*+{},
6903 nested C<sub{}> closures work now, formats work right on changing lexicals
6904
6905 =item New builtin methods
6906
6907 isa(CLASS), can(METHOD), VERSION( [NEED] )
6908
6909 =item TIEHANDLE now supported
6910
6911 TIEHANDLE classname, LIST, PRINT this, LIST, PRINTF this, LIST, READ this
6912 LIST, READLINE this, GETC this, DESTROY this
6913
6914 =item Malloc enhancements
6915
6916 -DPERL_EMERGENCY_SBRK, -DPACK_MALLOC, -DTWO_POT_OPTIMIZE
6917
6918 =item Miscellaneous efficiency enhancements
6919
6920 =back
6921
6922 =item Support for More Operating Systems
6923
6924 =over 4
6925
6926 =item Win32
6927
6928 =item Plan 9
6929
6930 =item QNX
6931
6932 =item AmigaOS
6933
6934 =back
6935
6936 =item Pragmata
6937
6938 use autouse MODULE => qw(sub1 sub2 sub3), use blib, use blib 'dir', use
6939 constant NAME => VALUE, use locale, use ops, use vmsish
6940
6941 =item Modules
6942
6943 =over 4
6944
6945 =item Required Updates
6946
6947 =item Installation directories
6948
6949 =item Module information summary
6950
6951 =item Fcntl
6952
6953 =item IO
6954
6955 =item Math::Complex
6956
6957 =item Math::Trig
6958
6959 =item DB_File
6960
6961 =item Net::Ping
6962
6963 =item Object-oriented overrides for builtin operators
6964
6965 =back
6966
6967 =item Utility Changes
6968
6969 =over 4
6970
6971 =item pod2html
6972
6973 Sends converted HTML to standard output
6974
6975 =item xsubpp
6976
6977 C<void> XSUBs now default to returning nothing
6978
6979 =back
6980
6981 =item C Language API Changes
6982
6983 C<gv_fetchmethod> and C<perl_call_sv>, C<perl_eval_pv>, Extended API for
6984 manipulating hashes
6985
6986 =item Documentation Changes
6987
6988 L<perldelta>, L<perlfaq>, L<perllocale>, L<perltoot>, L<perlapio>,
6989 L<perlmodlib>, L<perldebug>, L<perlsec>
6990
6991 =item New Diagnostics
6992
6993 "my" variable %s masks earlier declaration in same scope, %s argument is
6994 not a HASH element or slice, Allocation too large: %lx, Allocation too
6995 large, Applying %s to %s will act on scalar(%s), Attempt to free
6996 nonexistent shared string, Attempt to use reference as lvalue in substr,
6997 Bareword "%s" refers to nonexistent package, Can't redefine active sort
6998 subroutine %s, Can't use bareword ("%s") as %s ref while "strict refs" in
6999 use, Cannot resolve method `%s' overloading `%s' in package `%s', Constant
7000 subroutine %s redefined, Constant subroutine %s undefined, Copy method did
7001 not return a reference, Died, Exiting pseudo-block via %s, Identifier too
7002 long, Illegal character %s (carriage return), Illegal switch in PERL5OPT:
7003 %s, Integer overflow in hex number, Integer overflow in octal number,
7004 internal error: glob failed, Invalid conversion in %s: "%s", Invalid type
7005 in pack: '%s', Invalid type in unpack: '%s', Name "%s::%s" used only once:
7006 possible typo, Null picture in formline, Offset outside string, Out of
7007 memory!, Out of memory during request for %s, panic: frexp, Possible
7008 attempt to put comments in qw() list, Possible attempt to separate words
7009 with commas, Scalar value @%s{%s} better written as $%s{%s}, Stub found
7010 while resolving method `%s' overloading `%s' in %s, Too late for "B<-T>"
7011 option, untie attempted while %d inner references still exist, Unrecognized
7012 character %s, Unsupported function fork, Use of "$$<digit>" to mean
7013 "${$}<digit>" is deprecated, Value of %s can be "0"; test with defined(),
7014 Variable "%s" may be unavailable, Variable "%s" will not stay shared,
7015 Warning: something's wrong, Ill-formed logical name |%s| in prime_env_iter,
7016 Got an error from DosAllocMem, Malformed PERLLIB_PREFIX, PERL_SH_DIR too
7017 long, Process terminated by SIG%s
7018
7019 =item BUGS
7020
7021 =item SEE ALSO
7022
7023 =item HISTORY
7024
7025 =back
7026
7027 =head2 perlaix, README.aix - Perl version 5 on IBM Unix (AIX) systems
7028
7029 =over 4
7030
7031 =item DESCRIPTION
7032
7033 =over 4
7034
7035 =item Compiling Perl 5 on AIX
7036
7037 =item OS level
7038
7039 =item Building Dynamic Extensions on AIX
7040
7041 =item The IBM ANSI C Compiler
7042
7043 =item Using GNU's gcc for building perl
7044
7045 =item Using Large Files with Perl
7046
7047 =item Threaded Perl
7048
7049 =item 64-bit Perl
7050
7051 =item AIX 4.2 and extensions using C++ with statics
7052
7053 =back
7054
7055 =item AUTHOR
7056
7057 =item DATE
7058
7059 =back
7060
7061 =head2 perlapollo, README.apollo - Perl version 5 on Apollo DomainOS
7062
7063 =over 4
7064
7065 =item DESCRIPTION
7066
7067 =item AUTHOR
7068
7069 =back
7070
7071 =head2 perlamiga - Perl under Amiga OS
7072
7073 =over 4
7074
7075 =item SYNOPSIS
7076
7077 =back
7078
7079 =over 4
7080
7081 =item DESCRIPTION
7082
7083 =over 4
7084
7085 =item Prerequisites for Compiling Perl on AmigaOS
7086
7087 B<Unix emulation for AmigaOS: ixemul.library>, B<Version of Amiga OS>
7088
7089 =item Starting Perl programs under AmigaOS
7090
7091 =item Shortcomings of Perl under AmigaOS
7092
7093 =back
7094
7095 =item INSTALLATION
7096
7097 =item Accessing documentation
7098
7099 =over 4
7100
7101 =item Manpages for Perl on AmigaOS
7102
7103 =item Perl HTML Documentation on AmigaOS
7104
7105 =item Perl GNU Info Files on AmigaOS
7106
7107 =item Perl LaTeX Documentation on AmigaOS
7108
7109 =back
7110
7111 =item BUILDING PERL ON AMIGAOS
7112
7113 =over 4
7114
7115 =item Build Prerequisites for Perl on AmigaOS
7116
7117 =item Getting the Perl Source for AmigaOS
7118
7119 =item Making Perl on AmigaOS
7120
7121 =item Testing Perl on AmigaOS
7122
7123 =item Installing the built Perl on AmigaOS
7124
7125 =back
7126
7127 =item AUTHORS
7128
7129 =item SEE ALSO
7130
7131 =back
7132
7133 =head2 perlbeos, README.beos - Perl version 5 on BeOS
7134
7135 =over 4
7136
7137 =item DESCRIPTION
7138
7139 =over 4
7140
7141 =item General Issues with Perl on BeOS
7142
7143 =item BeOS Release-specific Notes
7144
7145 R4 x86, R4 PPC
7146
7147 =item Contact Information
7148
7149 =item Update 2002-03-02
7150
7151 =back
7152
7153 =back
7154
7155 =head2 perlbs2000, README.BS2000 - building and installing Perl for BS2000.
7156
7157 =over 4
7158
7159 =item SYNOPSIS
7160
7161 =item DESCRIPTION
7162
7163 =over 4
7164
7165 =item gzip on BS2000
7166
7167 =item bison on BS2000
7168
7169 =item Unpacking Perl Distribution on BS2000
7170
7171 =item Compiling Perl on BS2000
7172
7173 =item Testing Perl on BS2000
7174
7175 =item Installing Perl on BS2000
7176
7177 =item Using Perl in the Posix-Shell of BS2000
7178
7179 =item Using Perl in "native" BS2000
7180
7181 =item Floating point anomalies on BS2000
7182
7183 =back
7184
7185 =item AUTHORS
7186
7187 =item SEE ALSO
7188
7189 =over 4
7190
7191 =item Mailing list
7192
7193 =back
7194
7195 =item HISTORY
7196
7197 =back
7198
7199 =over 4
7200
7201 =item Name
7202
7203 =item Description
7204
7205 =item Build
7206
7207 =over 4
7208
7209 =item Tools & SDK
7210
7211 =item Make
7212
7213 =back
7214
7215 =item Acknowledgements
7216
7217 =item Author
7218
7219 =back
7220
7221 =head2 perlcygwin, README.cygwin - Perl for Cygwin
7222
7223 =over 4
7224
7225 =item SYNOPSIS
7226
7227 =item PREREQUISITES FOR COMPILING PERL ON CYGWIN
7228
7229 =over 4
7230
7231 =item Cygwin = GNU+Cygnus+Windows (Don't leave UNIX without it)
7232
7233 =item Cygwin Configuration
7234
7235 C<PATH>, I<nroff>, Permissions
7236
7237 =back
7238
7239 =item CONFIGURE PERL ON CYGWIN
7240
7241 =over 4
7242
7243 =item Stripping Perl Binaries on Cygwin
7244
7245 =item Optional Libraries for Perl on Cygwin
7246
7247 C<-lcrypt>, C<-lgdbm> (C<use GDBM_File>), C<-ldb> (C<use DB_File>),
7248 C<-lcygipc> (C<use IPC::SysV>)
7249
7250 =item Configure-time Options for Perl on Cygwin
7251
7252 C<-Uusedl>, C<-Uusemymalloc>, C<-Uuseperlio>, C<-Dusemultiplicity>,
7253 C<-Duse64bitint>, C<-Duselongdouble>, C<-Dusethreads>, C<-Duselargefiles>,
7254 C<-Dmksymlinks>
7255
7256 =item Suspicious Warnings on Cygwin
7257
7258 I<dlsym()>, Win9x and C<d_eofnblk>, Compiler/Preprocessor defines
7259
7260 =back
7261
7262 =item MAKE ON CYGWIN
7263
7264 =over 4
7265
7266 =item Warnings on Cygwin
7267
7268 =item ld2 on Cygwin
7269
7270 =back
7271
7272 =item TEST ON CYGWIN
7273
7274 =over 4
7275
7276 =item File Permissions on Cygwin
7277
7278 =item Script Portability on Cygwin
7279
7280 Pathnames, Text/Binary, F<.exe>, chown(), Miscellaneous
7281
7282 =back
7283
7284 =item INSTALL PERL ON CYGWIN
7285
7286 =item MANIFEST ON CYGWIN
7287
7288 Documentation, Build, Configure, Make, Install, Tests, Compiled Perl
7289 Source, Compiled Module Source, Perl Modules/Scripts
7290
7291 =item BUGS ON CYGWIN
7292
7293 =item AUTHORS
7294
7295 =item HISTORY
7296
7297 =back
7298
7299 =head2 perldgux - Perl under DG/UX.
7300
7301 =over 4
7302
7303 =item SYNOPSIS
7304
7305 =back
7306
7307 =over 4
7308
7309 =item DESCRIPTION
7310
7311 =item BUILDING PERL ON DG/UX
7312
7313 =over 4
7314
7315 =item Non-threaded Perl on DG/UX
7316
7317 =item Threaded Perl on DG/UX
7318
7319 =item Testing Perl on DG/UX
7320
7321 =item Installing the built perl on DG/UX
7322
7323 =back
7324
7325 =item AUTHOR
7326
7327 =item SEE ALSO
7328
7329 =back
7330
7331 =head2 perldos - Perl under DOS, W31, W95.
7332
7333 =over 4
7334
7335 =item SYNOPSIS
7336
7337 =item DESCRIPTION
7338
7339 =over 4
7340
7341 =item Prerequisites for Compiling Perl on DOS
7342
7343 DJGPP, Pthreads
7344
7345 =item Shortcomings of Perl under DOS
7346
7347 =item Building Perl on DOS
7348
7349 =item Testing Perl on DOS
7350
7351 =item Installation of Perl on DOS
7352
7353 =back
7354
7355 =item BUILDING AND INSTALLING MODULES ON DOS
7356
7357 =over 4
7358
7359 =item Building Prerequisites for Perl on DOS
7360
7361 =item Unpacking CPAN Modules on DOS
7362
7363 =item Building Non-XS Modules on DOS
7364
7365 =item Building XS Modules on DOS
7366
7367 =back
7368
7369 =item AUTHOR
7370
7371 =item SEE ALSO
7372
7373 =back
7374
7375 =head2 perlepoc, README.epoc - Perl for EPOC
7376
7377 =over 4
7378
7379 =item SYNOPSIS
7380
7381 =item INTRODUCTION
7382
7383 =item INSTALLING PERL ON EPOC
7384
7385 =item STARTING PERL ON EPOC
7386
7387 =item STOPPING PERL ON EPOC
7388
7389 =item USING PERL ON EPOC
7390
7391 =over 4
7392
7393 =item I/O Redirection on Epoc
7394
7395 =item PATH Names on Epoc
7396
7397 =item Editors on Epoc
7398
7399 =item Features of Perl on Epoc
7400
7401 =item Restrictions of Perl on Epoc
7402
7403 =item Compiling Perl 5 on the EPOC cross compiling environment
7404
7405 =back
7406
7407 =item SUPPORT STATUS OF PERL ON EPOC
7408
7409 =item AUTHOR
7410
7411 =item LAST UPDATE
7412
7413 =back
7414
7415 =head2 perlhpux, README.hpux - Perl version 5 on Hewlett-Packard Unix
7416 (HP-UX) systems
7417
7418 =over 4
7419
7420 =item DESCRIPTION
7421
7422 =over 4
7423
7424 =item Using perl as shipped with HP-UX
7425
7426 =item Compiling Perl 5 on HP-UX
7427
7428 =item PA-RISC
7429
7430 =item PA-RISC 1.0
7431
7432 =item PA-RISC 1.1
7433
7434 =item PA-RISC 2.0
7435
7436 =item Itanium
7437
7438 =item Portability Between PA-RISC Versions
7439
7440 =item Itanium Processor Family and HP-UX
7441
7442 =item Building Dynamic Extensions on HP-UX
7443
7444 =item The HP ANSI C Compiler
7445
7446 =item Using Large Files with Perl on HP-UX
7447
7448 =item Threaded Perl on HP-UX
7449
7450 =item 64-bit Perl on HP-UX
7451
7452 =item GDBM and Threads on HP-UX
7453
7454 =item NFS filesystems and utime(2) on HP-UX
7455
7456 =item perl -P and // and HP-UX
7457
7458 =item HP-UX Kernel Parameters (maxdsiz) for Compiling Perl
7459
7460 =back
7461
7462 =item nss_delete core dump from op/pwent or op/grent
7463
7464 =item AUTHOR
7465
7466 =item DATE
7467
7468 =back
7469
7470 =head2 perlhurd, README.hurd - Perl version 5 on Hurd
7471
7472 =over 4
7473
7474 =item DESCRIPTION
7475
7476 =over 4
7477
7478 =item Known Problems with Perl on Hurd 
7479
7480 =back
7481
7482 =item AUTHOR
7483
7484 =back
7485
7486 =head2 perlmachten, README.machten - Perl version 5 on Power MachTen
7487 systems
7488
7489 =over 4
7490
7491 =item DESCRIPTION
7492
7493 =over 4
7494
7495 =item Compiling Perl 5 on MachTen
7496
7497 =item Failures during C<make test> on MachTen
7498
7499 op/lexassign.t, pragma/warnings.t
7500
7501 =item Building external modules on MachTen
7502
7503 =back
7504
7505 =item AUTHOR
7506
7507 =item DATE
7508
7509 =back
7510
7511 =head2 perlmacos, README.macos - Perl under Mac OS (Classic)
7512
7513 =over 4
7514
7515 =item SYNOPSIS
7516
7517 =item DESCRIPTION
7518
7519 =item AUTHOR
7520
7521 =item DATE
7522
7523 =back
7524
7525 =head2 perlmint, README.mint - Perl version 5 on Atari MiNT
7526
7527 =over 4
7528
7529 =item DESCRIPTION
7530
7531 =item Known problems with Perl on MiNT
7532
7533 =item AUTHOR
7534
7535 =back
7536
7537 =head2 perlmpeix, README.mpeix - Perl/iX for HP e3000 MPE
7538
7539 =over 4
7540
7541 =item SYNOPSIS
7542
7543 =item NOTE
7544
7545 =item Binary distribution from HP
7546
7547 =item What's New in Perl for MPE/iX
7548
7549 =item Welcome to Perl/iX
7550
7551 =item System Requirements for Perl/iX
7552
7553 =item How to Obtain Perl/iX
7554
7555 =item Perl/iX Distribution Contents Highlights
7556
7557 README, INSTALL, LIBSHP3K, PERL, .cpan/, lib/, man/,
7558 public_html/feedback.cgi, src/perl-5.6.0-mpe
7559
7560 =item How to Compile Perl/iX
7561
7562  4,  6
7563
7564 =item Getting Started with Perl/iX
7565
7566 =item MPE/iX Implementation Considerations
7567
7568 =item Known Perl/iX Bugs Under Investigation
7569
7570 =item Perl/iX To-Do List
7571
7572 =item Perl/iX Change History
7573
7574 =item AUTHOR
7575
7576 =item Name
7577
7578 =item Description
7579
7580 =item Build
7581
7582 =over 4
7583
7584 =item Tools & SDK
7585
7586 =item Setup
7587
7588 Buildtype.bat, SetNWBld.bat, MPKBuild.bat
7589
7590 =item Make
7591
7592 =item Interpreter
7593
7594 =item Extensions
7595
7596 =back
7597
7598 =item Install
7599
7600 =item Build new extensions
7601
7602 =item Known Issues
7603
7604 =item Acknowledgements
7605
7606 =item Authors
7607
7608 =item Date
7609
7610 =back
7611
7612 =head2 perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
7613
7614 =over 4
7615
7616 =item SYNOPSIS
7617
7618 =back
7619
7620 =over 4
7621
7622 =item DESCRIPTION
7623
7624 =over 4
7625
7626 =item Target
7627
7628 =item Other OSes
7629
7630 =item Prerequisites
7631
7632 EMX, RSX, HPFS, pdksh
7633
7634 =item Starting Perl programs under OS/2 (and DOS and...)
7635
7636 =item Starting OS/2 (and DOS) programs under Perl
7637
7638 =back
7639
7640 =item Frequently asked questions
7641
7642 =over 4
7643
7644 =item "It does not work"
7645
7646 =item I cannot run external programs
7647
7648 =item I cannot embed perl into my program, or use F<perl.dll> from my
7649 program. 
7650
7651 Is your program EMX-compiled with C<-Zmt -Zcrtdll>?, Did you use
7652 L<ExtUtils::Embed>?
7653
7654 =item C<``> and pipe-C<open> do not work under DOS.
7655
7656 =item Cannot start C<find.exe "pattern" file>
7657
7658 =back
7659
7660 =item INSTALLATION
7661
7662 =over 4
7663
7664 =item Automatic binary installation
7665
7666 C<PERL_BADLANG>, C<PERL_BADFREE>, F<Config.pm>
7667
7668 =item Manual binary installation
7669
7670 Perl VIO and PM executables (dynamically linked), Perl_ VIO executable
7671 (statically linked), Executables for Perl utilities, Main Perl library,
7672 Additional Perl modules, Tools to compile Perl modules, Manpages for Perl
7673 and utilities, Manpages for Perl modules, Source for Perl documentation,
7674 Perl manual in F<.INF> format, Pdksh
7675
7676 =item B<Warning>
7677
7678 =back
7679
7680 =item Accessing documentation
7681
7682 =over 4
7683
7684 =item OS/2 F<.INF> file
7685
7686 =item Plain text
7687
7688 =item Manpages
7689
7690 =item HTML
7691
7692 =item GNU C<info> files
7693
7694 =item F<PDF> files
7695
7696 =item C<LaTeX> docs
7697
7698 =back
7699
7700 =item BUILD
7701
7702 =over 4
7703
7704 =item The short story
7705
7706 =item Prerequisites
7707
7708 =item Getting perl source
7709
7710 =item Application of the patches
7711
7712 =item Hand-editing
7713
7714 =item Making
7715
7716 =item Testing
7717
7718 A lot of C<bad free>, Process terminated by SIGTERM/SIGINT, F<op/fs.t>,
7719 F<op/stat.t>
7720
7721 =item Installing the built perl
7722
7723 =item C<a.out>-style build
7724
7725 =back
7726
7727 =item Build FAQ
7728
7729 =over 4
7730
7731 =item Some C</> became C<\> in pdksh.
7732
7733 =item C<'errno'> - unresolved external
7734
7735 =item Problems with tr or sed
7736
7737 =item Some problem (forget which ;-)
7738
7739 =item Library ... not found
7740
7741 =item Segfault in make
7742
7743 =item op/sprintf test failure
7744
7745 =back
7746
7747 =item Specific (mis)features of OS/2 port
7748
7749 =over 4
7750
7751 =item C<setpriority>, C<getpriority>
7752
7753 =item C<system()>
7754
7755 =item C<extproc> on the first line
7756
7757 =item Additional modules:
7758
7759 =item Prebuilt methods:
7760
7761 C<File::Copy::syscopy>, C<DynaLoader::mod2fname>,  C<Cwd::current_drive()>,
7762  C<Cwd::sys_chdir(name)>,  C<Cwd::change_drive(name)>, 
7763 C<Cwd::sys_is_absolute(name)>,  C<Cwd::sys_is_rooted(name)>, 
7764 C<Cwd::sys_is_relative(name)>,  C<Cwd::sys_cwd(name)>, 
7765 C<Cwd::sys_abspath(name, dir)>,  C<Cwd::extLibpath([type])>, 
7766 C<Cwd::extLibpath_set( path [, type ] )>,
7767 C<OS2::Error(do_harderror,do_exception)>, C<OS2::Errors2Drive(drive)>,
7768 OS2::SysInfo(), OS2::BootDrive(), C<OS2::MorphPM(serve)>,
7769 C<OS2::UnMorphPM(serve)>, C<OS2::Serve_Messages(force)>,
7770 C<OS2::Process_Messages(force [, cnt])>, C<OS2::_control87(new,mask)>,
7771 OS2::get_control87(), C<OS2::set_control87_em(new=MCW_EM,mask=MCW_EM)>
7772
7773 =item Prebuilt variables:
7774
7775 $OS2::emx_rev, $OS2::emx_env, $OS2::os_ver
7776
7777 =item Misfeatures
7778
7779 =item Modifications
7780
7781 C<popen>, C<tmpnam>, C<tmpfile>, C<ctermid>, C<stat>, C<mkdir>, C<rmdir>,
7782 C<flock>
7783
7784 =item Identifying DLLs
7785
7786 =item Centralized management of resources
7787
7788 C<HAB>, C<HMQ>
7789
7790 =back
7791
7792 =item Perl flavors
7793
7794 =over 4
7795
7796 =item F<perl.exe>
7797
7798 =item F<perl_.exe>
7799
7800 =item F<perl__.exe>
7801
7802 =item F<perl___.exe>
7803
7804 =item Why strange names?
7805
7806 =item Why dynamic linking?
7807
7808 =item Why chimera build?
7809
7810 =back
7811
7812 =item ENVIRONMENT
7813
7814 =over 4
7815
7816 =item C<PERLLIB_PREFIX>
7817
7818 =item C<PERL_BADLANG>
7819
7820 =item C<PERL_BADFREE>
7821
7822 =item C<PERL_SH_DIR>
7823
7824 =item C<USE_PERL_FLOCK>
7825
7826 =item C<TMP> or C<TEMP>
7827
7828 =back
7829
7830 =item Evolution
7831
7832 =over 4
7833
7834 =item Priorities
7835
7836 =item DLL name mangling: pre 5.6.2
7837
7838 =item DLL name mangling: 5.6.2 and beyond
7839
7840 Global DLLs, specific DLLs, C<BEGINLIBPATH> and C<ENDLIBPATH>, F<.> from
7841 C<LIBPATH>
7842
7843 =item DLL forwarder generation
7844
7845 =item Threading
7846
7847 =item Calls to external programs
7848
7849 =item Memory allocation
7850
7851 =item Threads
7852
7853 C<COND_WAIT>, F<os2.c>
7854
7855 =back
7856
7857 =item BUGS
7858
7859 =back
7860
7861 =over 4
7862
7863 =item AUTHOR
7864
7865 =item SEE ALSO
7866
7867 =back
7868
7869 =head2 perlos390, README.os390 - building and installing Perl for OS/390
7870 and z/OS
7871
7872 =over 4
7873
7874 =item SYNOPSIS
7875
7876 =item DESCRIPTION
7877
7878 =over 4
7879
7880 =item Tools
7881
7882 =item Unpacking Perl distribution on OS/390
7883
7884 =item Setup and utilities for Perl on OS/390
7885
7886 =item Configure Perl on OS/390
7887
7888 =item Build, Test, Install Perl on OS/390
7889
7890 =item Build Anomalies with Perl on OS/390
7891
7892 =item Testing Anomalies with Perl on OS/390
7893
7894 =item Installation Anomalies with Perl on OS/390
7895
7896 =item Usage Hints for Perl on OS/390
7897
7898 =item Floating Point Anomalies with Perl on OS/390
7899
7900 =item Modules and Extensions for Perl on OS/390
7901
7902 =back
7903
7904 =item AUTHORS
7905
7906 =item SEE ALSO
7907
7908 =over 4
7909
7910 =item Mailing list for Perl on OS/390
7911
7912 =back
7913
7914 =item HISTORY
7915
7916 =back
7917
7918 =head2 perlqnx, README.qnx - Perl version 5 on QNX
7919
7920 =over 4
7921
7922 =item DESCRIPTION
7923
7924 =over 4
7925
7926 =item Required Software for Compiling Perl on QNX4
7927
7928 /bin/sh, ar, nm, cpp, make
7929
7930 =item Outstanding Issues with Perl on QNX4
7931
7932 =item QNX auxiliary files
7933
7934 qnx/ar, qnx/cpp
7935
7936 =item Outstanding issues with perl under QNX6
7937
7938 =back
7939
7940 =item AUTHOR
7941
7942 =back
7943
7944 =head2 perlplan9 - Plan 9-specific documentation for Perl
7945
7946 =over 4
7947
7948 =item DESCRIPTION
7949
7950 =over 4
7951
7952 =item Invoking Perl
7953
7954 =item What's in Plan 9 Perl
7955
7956 =item What's not in Plan 9 Perl
7957
7958 =item Perl5 Functions not currently supported in Plan 9 Perl
7959
7960 =item Signals in Plan 9 Perl
7961
7962 =back
7963
7964 =item COMPILING AND INSTALLING PERL ON PLAN 9
7965
7966 =over 4
7967
7968 =item Installing Perl Documentation on Plan 9
7969
7970 =back
7971
7972 =item BUGS
7973
7974 =item Revision date
7975
7976 =item AUTHOR
7977
7978 =back
7979
7980 =head2 perlsolaris, README.solaris - Perl version 5 on Solaris systems
7981
7982 =over 4
7983
7984 =item DESCRIPTION
7985
7986 =over 4
7987
7988 =item Solaris Version Numbers.
7989
7990 =back
7991
7992 =item RESOURCES
7993
7994 Solaris FAQ, Precompiled Binaries, Solaris Documentation
7995
7996 =item SETTING UP
7997
7998 =over 4
7999
8000 =item File Extraction Problems on Solaris.
8001
8002 =item Compiler and Related Tools on Solaris.
8003
8004 =item Environment for Compiling Perl on Solaris
8005
8006 =back
8007
8008 =item RUN CONFIGURE.
8009
8010 =over 4
8011
8012 =item 64-bit Issues with Perl on Solaris.
8013
8014 =item Threads in Perl on Solaris.
8015
8016 =item Malloc Issues with Perl on Solaris.
8017
8018 =back
8019
8020 =item MAKE PROBLEMS.
8021
8022 Dynamic Loading Problems With GNU as and GNU ld, ld.so.1: ./perl: fatal:
8023 relocation error:, dlopen: stub interception failed, #error "No
8024 DATAMODEL_NATIVE specified", sh: ar: not found
8025
8026 =item MAKE TEST
8027
8028 =over 4
8029
8030 =item op/stat.t test 4 in Solaris
8031
8032 =item nss_delete core dump from op/pwent or op/grent
8033
8034 =back
8035
8036 =item PREBUILT BINARIES OF PERL FOR SOLARIS.
8037
8038 =item RUNTIME ISSUES FOR PERL ON SOLARIS.
8039
8040 =over 4
8041
8042 =item Limits on Numbers of Open Files on Solaris.
8043
8044 =back
8045
8046 =item SOLARIS-SPECIFIC MODULES.
8047
8048 =item SOLARIS-SPECIFIC PROBLEMS WITH MODULES.
8049
8050 =over 4
8051
8052 =item Proc::ProcessTable on Solaris
8053
8054 =item BSD::Resource on Solaris
8055
8056 =item Net::SSLeay on Solaris
8057
8058 =back
8059
8060 =item AUTHOR
8061
8062 =item LAST MODIFIED
8063
8064 =back
8065
8066 =head2 perltru64, README.tru64 - Perl version 5 on Tru64 (formerly known as
8067 Digital UNIX formerly known as DEC OSF/1) systems
8068
8069 =over 4
8070
8071 =item DESCRIPTION
8072
8073 =over 4
8074
8075 =item Compiling Perl 5 on Tru64
8076
8077 =item Using Large Files with Perl on Tru64
8078
8079 =item Threaded Perl on Tru64
8080
8081 =item Long Doubles on Tru64
8082
8083 =item 64-bit Perl on Tru64
8084
8085 =item Warnings about floating-point overflow when compiling Perl on Tru64
8086
8087 =back
8088
8089 =item Testing Perl on Tru64
8090
8091 =item AUTHOR
8092
8093 =back
8094
8095 =head2 perluts - Perl under UTS
8096
8097 =over 4
8098
8099 =item SYNOPSIS
8100
8101 =item DESCRIPTION
8102
8103 =item BUILDING PERL ON UTS
8104
8105 =item Installing the built perl on UTS
8106
8107 =item AUTHOR
8108
8109 =back
8110
8111 =head2 perlvmesa, README.vmesa - building and installing Perl for VM/ESA.
8112
8113 =over 4
8114
8115 =item SYNOPSIS
8116
8117 =item DESCRIPTION
8118
8119 =over 4
8120
8121 =item Unpacking Perl Distribution on VM/ESA
8122
8123 =item Setup Perl and utilities on VM/ESA
8124
8125 =item Configure Perl on VM/ESA
8126
8127 =item Testing Anomalies of Perl on VM/ESA
8128
8129 =item Usage Hints for Perl on VM/ESA
8130
8131 =back
8132
8133 =item AUTHORS
8134
8135 =item SEE ALSO
8136
8137 =over 4
8138
8139 =item Mailing list for Perl on VM/ESA
8140
8141 =back
8142
8143 =back
8144
8145 =head2 perlvms - VMS-specific documentation for Perl
8146
8147 =over 4
8148
8149 =item DESCRIPTION
8150
8151 =item Installation
8152
8153 =item Organization of Perl Images
8154
8155 =over 4
8156
8157 =item Core Images
8158
8159 =item Perl Extensions
8160
8161 =item Installing static extensions
8162
8163 =item Installing dynamic extensions
8164
8165 =back
8166
8167 =item File specifications
8168
8169 =over 4
8170
8171 =item Syntax
8172
8173 =item Wildcard expansion
8174
8175 =item Pipes
8176
8177 =back
8178
8179 =item PERL5LIB and PERLLIB
8180
8181 =item Command line
8182
8183 =over 4
8184
8185 =item I/O redirection and backgrounding
8186
8187 =item Command line switches
8188
8189 -i, -S, -u
8190
8191 =back
8192
8193 =item Perl functions
8194
8195 File tests, backticks, binmode FILEHANDLE, crypt PLAINTEXT, USER, dump,
8196 exec LIST, fork, getpwent, getpwnam, getpwuid, gmtime, kill, qx//, select
8197 (system call), stat EXPR, system LIST, time, times, unlink LIST, utime
8198 LIST, waitpid PID,FLAGS
8199
8200 =item Perl variables
8201
8202 %ENV, CRTL_ENV, CLISYM_[LOCAL], Any other string, $!, $^E, $?, $|
8203
8204 =item Standard modules with VMS-specific differences
8205
8206 =over 4
8207
8208 =item SDBM_File
8209
8210 =back
8211
8212 =item Revision date
8213
8214 =item AUTHOR
8215
8216 =back
8217
8218 =head2 perlvos, README.vos - Perl for Stratus VOS
8219
8220 =over 4
8221
8222 =item SYNOPSIS
8223
8224 =over 4
8225
8226 =item Multiple methods to build perl for VOS
8227
8228 =item Stratus POSIX Support
8229
8230 =back
8231
8232 =item INSTALLING PERL IN VOS
8233
8234 =over 4
8235
8236 =item Compiling Perl 5 on VOS
8237
8238 =item Installing Perl 5 on VOS
8239
8240 =back
8241
8242 =item USING PERL IN VOS
8243
8244 =over 4
8245
8246 =item Unimplemented Features of Perl on VOS
8247
8248 =item Restrictions of Perl on VOS
8249
8250 =back
8251
8252 =item SUPPORT STATUS
8253
8254 =item AUTHOR
8255
8256 =item LAST UPDATE
8257
8258 =back
8259
8260 =head2 perlwin32 - Perl under Win32
8261
8262 =over 4
8263
8264 =item SYNOPSIS
8265
8266 =item DESCRIPTION
8267
8268 =over 4
8269
8270 =item Setting Up Perl on Win32
8271
8272 Make, Command Shell, Borland C++, Microsoft Visual C++, Mingw32 with GCC
8273
8274 =item Building
8275
8276 =item Testing Perl on Win32
8277
8278 =item Installation of Perl on Win32
8279
8280 =item Usage Hints for Perl on Win32
8281
8282 Environment Variables, File Globbing, Using perl from the command line,
8283 Building Extensions, Command-line Wildcard Expansion, Win32 Specific
8284 Extensions, Running Perl Scripts, Miscellaneous Things
8285
8286 =back
8287
8288 =item BUGS AND CAVEATS
8289
8290 =item AUTHORS
8291
8292 Gary Ng E<lt>71564.1743@CompuServe.COME<gt>, Gurusamy Sarathy
8293 E<lt>gsar@activestate.comE<gt>, Nick Ing-Simmons
8294 E<lt>nick@ing-simmons.netE<gt>
8295
8296 =item SEE ALSO
8297
8298 =item HISTORY
8299
8300 =back
8301
8302 =head1 PRAGMA DOCUMENTATION
8303
8304 =head2 attrs - set/get attributes of a subroutine (deprecated)
8305
8306 =over 4
8307
8308 =item SYNOPSIS
8309
8310 =item DESCRIPTION
8311
8312 method, locked
8313
8314 =back
8315
8316 =head2 re - Perl pragma to alter regular expression behaviour
8317
8318 =over 4
8319
8320 =item SYNOPSIS
8321
8322 =item DESCRIPTION
8323
8324 =back
8325
8326 =head2 threadshared::shared, threads::shared - Perl extension for sharing
8327 data structures between threads
8328
8329 =over 4
8330
8331 =item SYNOPSIS
8332
8333 =item DESCRIPTION
8334
8335 =item EXPORT
8336
8337 =item FUNCTIONS
8338
8339 share VARIABLE, lock VARIABLE, unlock VARIABLE, cond_wait VARIABLE,
8340 cond_signal VARIABLE, cond_broadcast VARIABLE
8341
8342 =item NOTES
8343
8344 =item BUGS
8345
8346 =item AUTHOR
8347
8348 =item SEE ALSO
8349
8350 =back
8351
8352 =head2 threads - Perl extension allowing use of interpreter based threads
8353 from perl
8354
8355 =over 4
8356
8357 =item SYNOPSIS
8358
8359 =item DESCRIPTION
8360
8361 $thread = threads->create(function, LIST), $thread->join, $thread->detach,
8362 threads->self, $thread->tid
8363
8364 =item TODO
8365
8366 Fix so the return value is returned when you join, Add join_all, Fix memory
8367 leaks!
8368
8369 =item AUTHOR and COPYRIGHT
8370
8371 =item BUGS
8372
8373 creating a thread from within a thread is unsafe under win32,
8374 PERL_OLD_SIGNALS are not threadsafe, will not be
8375
8376 =item SEE ALSO
8377
8378 =back
8379
8380 =head2 attributes - get/set subroutine or variable attributes
8381
8382 =over 4
8383
8384 =item SYNOPSIS
8385
8386 =item DESCRIPTION
8387
8388 =over 4
8389
8390 =item Built-in Attributes
8391
8392 locked, method, lvalue
8393
8394 =item Available Subroutines
8395
8396 get, reftype
8397
8398 =item Package-specific Attribute Handling
8399
8400 FETCH_I<type>_ATTRIBUTES, MODIFY_I<type>_ATTRIBUTES
8401
8402 =item Syntax of Attribute Lists
8403
8404 =back
8405
8406 =item EXPORTS
8407
8408 =over 4
8409
8410 =item Default exports
8411
8412 =item Available exports
8413
8414 =item Export tags defined
8415
8416 =back
8417
8418 =item EXAMPLES
8419
8420 =item SEE ALSO
8421
8422 =back
8423
8424 =head2 attrs - set/get attributes of a subroutine (deprecated)
8425
8426 =over 4
8427
8428 =item SYNOPSIS
8429
8430 =item DESCRIPTION
8431
8432 method, locked
8433
8434 =back
8435
8436 =head2 autouse - postpone load of modules until a function is used
8437
8438 =over 4
8439
8440 =item SYNOPSIS
8441
8442 =item DESCRIPTION
8443
8444 =item WARNING
8445
8446 =item AUTHOR
8447
8448 =item SEE ALSO
8449
8450 =back
8451
8452 =head2 base - Establish IS-A relationship with base class at compile time
8453
8454 =over 4
8455
8456 =item SYNOPSIS
8457
8458 =item DESCRIPTION
8459
8460 =item HISTORY
8461
8462 =item SEE ALSO
8463
8464 =back
8465
8466 =head2 blib - Use MakeMaker's uninstalled version of a package
8467
8468 =over 4
8469
8470 =item SYNOPSIS
8471
8472 =item DESCRIPTION
8473
8474 =item BUGS
8475
8476 =item AUTHOR
8477
8478 =back
8479
8480 =head2 bytes - Perl pragma to force byte semantics rather than character
8481 semantics
8482
8483 =over 4
8484
8485 =item SYNOPSIS
8486
8487 =item DESCRIPTION
8488
8489 =item SEE ALSO
8490
8491 =back
8492
8493 =head2 charnames - define character names for C<\N{named}> string literal
8494 escapes.
8495
8496 =over 4
8497
8498 =item SYNOPSIS
8499
8500 =item DESCRIPTION
8501
8502 =item CUSTOM TRANSLATORS
8503
8504 =item charnames::viacode(code)
8505
8506 =item charnames::vianame(code)
8507
8508 =item ILLEGAL CHARACTERS
8509
8510 =item BUGS
8511
8512 =back
8513
8514 =head2 constant - Perl pragma to declare constants
8515
8516 =over 4
8517
8518 =item SYNOPSIS
8519
8520 =item DESCRIPTION
8521
8522 =item NOTES
8523
8524 =over 4
8525
8526 =item List constants
8527
8528 =item Defining multiple constants at once
8529
8530 =item Magic constants
8531
8532 =back
8533
8534 =item TECHNICAL NOTES
8535
8536 =item BUGS
8537
8538 =item AUTHOR
8539
8540 =item COPYRIGHT
8541
8542 =back
8543
8544 =head2 diagnostics - Perl compiler pragma to force verbose warning
8545 diagnostics
8546
8547 =over 4
8548
8549 =item SYNOPSIS
8550
8551 =item DESCRIPTION
8552
8553 =over 4
8554
8555 =item The C<diagnostics> Pragma
8556
8557 =item The I<splain> Program
8558
8559 =back
8560
8561 =item EXAMPLES
8562
8563 =item INTERNALS
8564
8565 =item BUGS
8566
8567 =item AUTHOR
8568
8569 =back
8570
8571 =head2 encoding - pragma to control the conversion of legacy data into
8572 Unicode
8573
8574 =over 4
8575
8576 =item SYNOPSIS
8577
8578 =item DESCRIPTION
8579
8580 =item KNOWN PROBLEMS
8581
8582 =item SEE ALSO
8583
8584 =back
8585
8586 =head2 fields - compile-time class fields
8587
8588 =over 4
8589
8590 =item SYNOPSIS
8591
8592 =item DESCRIPTION
8593
8594 new, phash
8595
8596 =item SEE ALSO
8597
8598 =back
8599
8600 =head2 filetest - Perl pragma to control the filetest permission operators
8601
8602 =over 4
8603
8604 =item SYNOPSIS
8605
8606 =item DESCRIPTION
8607
8608 =over 4
8609
8610 =item subpragma access
8611
8612 =back
8613
8614 =back
8615
8616 =head2 if - C<use> a Perl module if a condition holds
8617
8618 =over 4
8619
8620 =item SYNOPSIS
8621
8622 =item DESCRIPTION
8623
8624 =item BUGS
8625
8626 =item AUTHOR
8627
8628 =back
8629
8630 =head2 integer - Perl pragma to use integer arithmetic instead of floating
8631 point
8632
8633 =over 4
8634
8635 =item SYNOPSIS
8636
8637 =item DESCRIPTION
8638
8639 =back
8640
8641 =head2 less - perl pragma to request less of something from the compiler
8642
8643 =over 4
8644
8645 =item SYNOPSIS
8646
8647 =item DESCRIPTION
8648
8649 =back
8650
8651 =head2 lib - manipulate @INC at compile time
8652
8653 =over 4
8654
8655 =item SYNOPSIS
8656
8657 =item DESCRIPTION
8658
8659 =over 4
8660
8661 =item Adding directories to @INC
8662
8663 =item Deleting directories from @INC
8664
8665 =item Restoring original @INC
8666
8667 =back
8668
8669 =item CAVEATS
8670
8671 =item SEE ALSO
8672
8673 =item AUTHOR
8674
8675 =back
8676
8677 =head2 locale - Perl pragma to use and avoid POSIX locales for built-in
8678 operations
8679
8680 =over 4
8681
8682 =item SYNOPSIS
8683
8684 =item DESCRIPTION
8685
8686 =back
8687
8688 =head2 open - perl pragma to set default disciplines for input and output
8689
8690 =over 4
8691
8692 =item SYNOPSIS
8693
8694 =item DESCRIPTION
8695
8696 =item NONPERLIO FUNCTIONALITY
8697
8698 =item IMPLEMENTATION DETAILS
8699
8700 =item SEE ALSO
8701
8702 =back
8703
8704 =head2 ops - Perl pragma to restrict unsafe operations when compiling
8705
8706 =over 4
8707
8708 =item SYNOPSIS  
8709
8710 =item DESCRIPTION
8711
8712 =item SEE ALSO
8713
8714 =back
8715
8716 =head2 overload - Package for overloading perl operations
8717
8718 =over 4
8719
8720 =item SYNOPSIS
8721
8722 =item DESCRIPTION
8723
8724 =over 4
8725
8726 =item Declaration of overloaded functions
8727
8728 =item Calling Conventions for Binary Operations
8729
8730 FALSE, TRUE, C<undef>
8731
8732 =item Calling Conventions for Unary Operations
8733
8734 =item Calling Conventions for Mutators
8735
8736 C<++> and C<-->, C<x=> and other assignment versions
8737
8738 =item Overloadable Operations
8739
8740 I<Arithmetic operations>, I<Comparison operations>, I<Bit operations>,
8741 I<Increment and decrement>, I<Transcendental functions>, I<Boolean, string
8742 and numeric conversion>, I<Iteration>, I<Dereferencing>, I<Special>
8743
8744 =item Inheritance and overloading
8745
8746 Strings as values of C<use overload> directive, Overloading of an operation
8747 is inherited by derived classes
8748
8749 =back
8750
8751 =item SPECIAL SYMBOLS FOR C<use overload>
8752
8753 =over 4
8754
8755 =item Last Resort
8756
8757 =item Fallback
8758
8759 C<undef>, TRUE, defined, but FALSE
8760
8761 =item Copy Constructor
8762
8763 B<Example>
8764
8765 =back
8766
8767 =item MAGIC AUTOGENERATION
8768
8769 I<Assignment forms of arithmetic operations>, I<Conversion operations>,
8770 I<Increment and decrement>, C<abs($a)>, I<Unary minus>, I<Negation>,
8771 I<Concatenation>, I<Comparison operations>, I<Iterator>, I<Dereferencing>,
8772 I<Copy operator>
8773
8774 =item Losing overloading
8775
8776 =item Run-time Overloading
8777
8778 =item Public functions
8779
8780 overload::StrVal(arg), overload::Overloaded(arg), overload::Method(obj,op)
8781
8782 =item Overloading constants
8783
8784 integer, float, binary, q, qr
8785
8786 =item IMPLEMENTATION
8787
8788 =item Metaphor clash
8789
8790 =item Cookbook
8791
8792 =over 4
8793
8794 =item Two-face scalars
8795
8796 =item Two-face references
8797
8798 =item Symbolic calculator
8799
8800 =item I<Really> symbolic calculator
8801
8802 =back
8803
8804 =item AUTHOR
8805
8806 =item DIAGNOSTICS
8807
8808 Odd number of arguments for overload::constant, `%s' is not an overloadable
8809 type, `%s' is not a code reference
8810
8811 =item BUGS
8812
8813 =back
8814
8815 =head2 re - Perl pragma to alter regular expression behaviour
8816
8817 =over 4
8818
8819 =item SYNOPSIS
8820
8821 =item DESCRIPTION
8822
8823 =back
8824
8825 =head2 sigtrap - Perl pragma to enable simple signal handling
8826
8827 =over 4
8828
8829 =item SYNOPSIS
8830
8831 =item DESCRIPTION
8832
8833 =item OPTIONS
8834
8835 =over 4
8836
8837 =item SIGNAL HANDLERS
8838
8839 B<stack-trace>, B<die>, B<handler> I<your-handler>
8840
8841 =item SIGNAL LISTS
8842
8843 B<normal-signals>, B<error-signals>, B<old-interface-signals>
8844
8845 =item OTHER
8846
8847 B<untrapped>, B<any>, I<signal>, I<number>
8848
8849 =back
8850
8851 =item EXAMPLES
8852
8853 =back
8854
8855 =head2 sort - perl pragma to control sort() behaviour
8856
8857 =over 4
8858
8859 =item SYNOPSIS
8860
8861 =item DESCRIPTION
8862
8863 =back
8864
8865 =head2 strict - Perl pragma to restrict unsafe constructs
8866
8867 =over 4
8868
8869 =item SYNOPSIS
8870
8871 =item DESCRIPTION
8872
8873 C<strict refs>, C<strict vars>, C<strict subs>
8874
8875 =back
8876
8877 =head2 subs - Perl pragma to predeclare sub names
8878
8879 =over 4
8880
8881 =item SYNOPSIS
8882
8883 =item DESCRIPTION
8884
8885 =back
8886
8887 =head2 threads - Perl extension allowing use of interpreter based threads
8888 from perl
8889
8890 =over 4
8891
8892 =item SYNOPSIS
8893
8894 =item DESCRIPTION
8895
8896 $thread = threads->create(function, LIST), $thread->join, $thread->detach,
8897 threads->self, $thread->tid
8898
8899 =item TODO
8900
8901 Fix so the return value is returned when you join, Add join_all, Fix memory
8902 leaks!
8903
8904 =item AUTHOR and COPYRIGHT
8905
8906 =item BUGS
8907
8908 creating a thread from within a thread is unsafe under win32,
8909 PERL_OLD_SIGNALS are not threadsafe, will not be
8910
8911 =item SEE ALSO
8912
8913 =back
8914
8915 =head2 threadshared, threads::shared - Perl extension for sharing data
8916 structures between threads
8917
8918 =over 4
8919
8920 =item SYNOPSIS
8921
8922 =item DESCRIPTION
8923
8924 =item EXPORT
8925
8926 =item FUNCTIONS
8927
8928 share VARIABLE, lock VARIABLE, unlock VARIABLE, cond_wait VARIABLE,
8929 cond_signal VARIABLE, cond_broadcast VARIABLE
8930
8931 =item NOTES
8932
8933 =item BUGS
8934
8935 =item AUTHOR
8936
8937 =item SEE ALSO
8938
8939 =back
8940
8941 =head2 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source
8942 code
8943
8944 =over 4
8945
8946 =item SYNOPSIS
8947
8948 =item DESCRIPTION
8949
8950 =over 4
8951
8952 =item Utility functions
8953
8954 $num_octets = utf8::upgrade($string);, utf8::downgrade($string[, CHECK]),
8955 utf8::encode($string), $flag = utf8::decode($string)
8956
8957 =back
8958
8959 =item SEE ALSO
8960
8961 =back
8962
8963 =head2 vars - Perl pragma to predeclare global variable names (obsolete)
8964
8965 =over 4
8966
8967 =item SYNOPSIS
8968
8969 =item DESCRIPTION
8970
8971 =back
8972
8973 =head2 vmsish - Perl pragma to control VMS-specific language features
8974
8975 =over 4
8976
8977 =item SYNOPSIS
8978
8979 =item DESCRIPTION
8980
8981 C<vmsish status>, C<vmsish exit>, C<vmsish time>, C<vmsish hushed>
8982
8983 =back
8984
8985 =head2 warnings - Perl pragma to control optional warnings
8986
8987 =over 4
8988
8989 =item SYNOPSIS
8990
8991 =item DESCRIPTION
8992
8993 use warnings::register, warnings::enabled(), warnings::enabled($category),
8994 warnings::enabled($object), warnings::warn($message),
8995 warnings::warn($category, $message), warnings::warn($object, $message),
8996 warnings::warnif($message), warnings::warnif($category, $message),
8997 warnings::warnif($object, $message)
8998
8999 =back
9000
9001 =head2 warnings::register - warnings import function
9002
9003 =over 4
9004
9005 =item SYNOPSIS
9006
9007 =item DESCRIPTION
9008
9009 =back
9010
9011 =head1 MODULE DOCUMENTATION
9012
9013 =head2 AnyDBM_File - provide framework for multiple DBMs
9014
9015 =over 4
9016
9017 =item SYNOPSIS
9018
9019 =item DESCRIPTION
9020
9021 =over 4
9022
9023 =item DBM Comparisons
9024
9025 [0], [1], [2], [3]
9026
9027 =back
9028
9029 =item SEE ALSO
9030
9031 =back
9032
9033 =head2 Attribute::Handlers - Simpler definition of attribute handlers
9034
9035 =over 4
9036
9037 =item VERSION
9038
9039 =item SYNOPSIS
9040
9041 =item DESCRIPTION
9042
9043 [0], [1], [2], [3], [4], [5]
9044
9045 =over 4
9046
9047 =item Typed lexicals
9048
9049 =item Type-specific attribute handlers
9050
9051 =item Non-interpretive attribute handlers
9052
9053 =item Phase-specific attribute handlers
9054
9055 =item Attributes as C<tie> interfaces
9056
9057 =back
9058
9059 =item EXAMPLES
9060
9061 =item DIAGNOSTICS
9062
9063 C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
9064 attributes>, C<Declaration of %s attribute in package %s may clash with
9065 future reserved word>, C<Can't have two ATTR specifiers on one subroutine>,
9066 C<Can't autotie a %s>, C<Internal error: %s symbol went missing>, C<Won't
9067 be able to apply END handler>
9068
9069 =item AUTHOR
9070
9071 =item BUGS
9072
9073 =item COPYRIGHT
9074
9075 =back
9076
9077 =head2 AutoLoader - load subroutines only on demand
9078
9079 =over 4
9080
9081 =item SYNOPSIS
9082
9083 =item DESCRIPTION
9084
9085 =over 4
9086
9087 =item Subroutine Stubs
9088
9089 =item Using B<AutoLoader>'s AUTOLOAD Subroutine
9090
9091 =item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
9092
9093 =item Package Lexicals
9094
9095 =item Not Using AutoLoader
9096
9097 =item B<AutoLoader> vs. B<SelfLoader>
9098
9099 =back
9100
9101 =item CAVEATS
9102
9103 =item SEE ALSO
9104
9105 =back
9106
9107 =head2 AutoSplit - split a package for autoloading
9108
9109 =over 4
9110
9111 =item SYNOPSIS
9112
9113 =item DESCRIPTION
9114
9115 $keep, $check, $modtime
9116
9117 =over 4
9118
9119 =item Multiple packages
9120
9121 =back
9122
9123 =item DIAGNOSTICS
9124
9125 =back
9126
9127 =head2 B - The Perl Compiler
9128
9129 =over 4
9130
9131 =item SYNOPSIS
9132
9133 =item DESCRIPTION
9134
9135 =item OVERVIEW OF CLASSES
9136
9137 =over 4
9138
9139 =item SV-RELATED CLASSES
9140
9141 =item B::SV METHODS
9142
9143 REFCNT, FLAGS
9144
9145 =item B::IV METHODS
9146
9147 IV, IVX, UVX, int_value, needs64bits, packiv
9148
9149 =item B::NV METHODS
9150
9151 NV, NVX
9152
9153 =item B::RV METHODS
9154
9155 RV
9156
9157 =item B::PV METHODS
9158
9159 PV, RV, PVX
9160
9161 =item B::PVMG METHODS
9162
9163 MAGIC, SvSTASH
9164
9165 =item B::MAGIC METHODS
9166
9167 MOREMAGIC, precomp, PRIVATE, TYPE, FLAGS, OBJ, PTR, REGEX
9168
9169 =item B::PVLV METHODS
9170
9171 TARGOFF, TARGLEN, TYPE, TARG
9172
9173 =item B::BM METHODS
9174
9175 USEFUL, PREVIOUS, RARE, TABLE
9176
9177 =item B::GV METHODS
9178
9179 is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
9180 LINE, FILE, FILEGV, GvREFCNT, FLAGS
9181
9182 =item B::IO METHODS
9183
9184 LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
9185 BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS, IsSTD
9186
9187 =item B::AV METHODS
9188
9189 FILL, MAX, OFF, ARRAY, AvFLAGS
9190
9191 =item B::CV METHODS
9192
9193 STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, XSUB, XSUBANY,
9194 CvFLAGS, const_sv
9195
9196 =item B::HV METHODS
9197
9198 FILL, MAX, KEYS, RITER, NAME, PMROOT, ARRAY
9199
9200 =item OP-RELATED CLASSES
9201
9202 =item B::OP METHODS
9203
9204 next, sibling, name, ppaddr, desc, targ, type, seq, flags, private
9205
9206 =item B::UNOP METHOD
9207
9208 first
9209
9210 =item B::BINOP METHOD
9211
9212 last
9213
9214 =item B::LOGOP METHOD
9215
9216 other
9217
9218 =item B::LISTOP METHOD
9219
9220 children
9221
9222 =item B::PMOP METHODS
9223
9224 pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, pmdynflags,
9225 pmpermflags, precomp, pmoffet
9226
9227 =item B::SVOP METHOD
9228
9229 sv, gv
9230
9231 =item B::PADOP METHOD
9232
9233 padix
9234
9235 =item B::PVOP METHOD
9236
9237 pv
9238
9239 =item B::LOOP METHODS
9240
9241 redoop, nextop, lastop
9242
9243 =item B::COP METHODS
9244
9245 label, stash, file, cop_seq, arybase, line
9246
9247 =back
9248
9249 =item FUNCTIONS EXPORTED BY C<B>
9250
9251 main_cv, init_av, begin_av, end_av, main_root, main_start, comppadlist,
9252 regex_padav, sv_undef, sv_yes, sv_no, amagic_generation, walkoptree(OP,
9253 METHOD), walkoptree_debug(DEBUG), walksymtable(SYMREF, METHOD, RECURSE,
9254 PREFIX), svref_2object(SV), ppname(OPNUM), hash(STR), cast_I32(I), minus_c,
9255 cstring(STR), class(OBJ), threadsv_names
9256
9257 =item AUTHOR
9258
9259 =back
9260
9261 =head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
9262 bytecode
9263
9264 =over 4
9265
9266 =item SYNOPSIS
9267
9268 =item DESCRIPTION
9269
9270 %insn_data, @insn_name, @optype, @specialsv_name
9271
9272 =item AUTHOR
9273
9274 =back
9275
9276 =head2 B::Assembler - Assemble Perl bytecode
9277
9278 =over 4
9279
9280 =item SYNOPSIS
9281
9282 =item DESCRIPTION
9283
9284 =item AUTHORS
9285
9286 =back
9287
9288 =head2 B::Bblock - Walk basic blocks
9289
9290 =over 4
9291
9292 =item SYNOPSIS
9293
9294 =item DESCRIPTION
9295
9296 =over 4
9297
9298 =item Functions
9299
9300 B<find_leaders>
9301
9302 =back
9303
9304 =item AUTHOR
9305
9306 =back
9307
9308 =head2 B::Bytecode - Perl compiler's bytecode backend
9309
9310 =over 4
9311
9312 =item SYNOPSIS
9313
9314 =item DESCRIPTION
9315
9316 =item OPTIONS
9317
9318 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
9319 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
9320 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
9321
9322 =item EXAMPLES
9323
9324 =item BUGS
9325
9326 =item AUTHORS
9327
9328 =back
9329
9330 =head2 B::C - Perl compiler's C backend
9331
9332 =over 4
9333
9334 =item SYNOPSIS
9335
9336 =item DESCRIPTION
9337
9338 =item OPTIONS
9339
9340 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-D>, B<-Do>, B<-Dc>, B<-DA>,
9341 B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fsave-data>, B<-fppaddr>, B<-fwarn-sv>,
9342 B<-fuse-script-name>, B<-fsave-sig-hash>, B<-On>, B<-O0>, B<-O1>, B<-O2>,
9343 B<-llimit>
9344
9345 =item EXAMPLES
9346
9347 =item BUGS
9348
9349 =item AUTHOR
9350
9351 =back
9352
9353 =head2 B::CC - Perl compiler's optimized C translation backend
9354
9355 =over 4
9356
9357 =item SYNOPSIS
9358
9359 =item DESCRIPTION
9360
9361 =item OPTIONS
9362
9363 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-mModulename>, B<-D>, B<-Dr>,
9364 B<-DO>, B<-Ds>, B<-Dp>, B<-Dq>, B<-Dl>, B<-Dt>, B<-f>,
9365 B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
9366
9367 =item EXAMPLES
9368
9369 =item BUGS
9370
9371 =item DIFFERENCES
9372
9373 =over 4
9374
9375 =item Loops
9376
9377 =item Context of ".."
9378
9379 =item Arithmetic
9380
9381 =item Deprecated features
9382
9383 =back
9384
9385 =item AUTHOR
9386
9387 =back
9388
9389 =head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
9390
9391 =over 4
9392
9393 =item SYNOPSIS
9394
9395 =item DESCRIPTION
9396
9397 =item EXAMPLE
9398
9399 =item OPTIONS
9400
9401 B<-basic>, B<-exec>, B<-tree>, B<-compact>, B<-loose>, B<-vt>, B<-ascii>,
9402 B<-main>, B<-base>I<n>, B<-bigendian>, B<-littleendian>, B<-concise>,
9403 B<-terse>, B<-linenoise>, B<-debug>, B<-env>
9404
9405 =item FORMATTING SPECIFICATIONS
9406
9407 B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
9408 B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
9409 B<#>I<var>, B<#>I<var>I<N>, B<~>, B<#addr>, B<#arg>, B<#class>,
9410 B<#classsym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
9411 B<#flags>, B<#flagval>, B<#hyphseq>, B<#label>, B<#lastaddr>, B<#name>,
9412 B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>, B<#private>, B<#privval>,
9413 B<#seq>, B<#seqnum>, B<#sibaddr>, B<#svaddr>, B<#svclass>, B<#svval>,
9414 B<#targ>, B<#targarg>, B<#targarglife>, B<#typenum>
9415
9416 =item ABBREVIATIONS
9417
9418 =over 4
9419
9420 =item OP flags abbreviations
9421
9422 =item OP class abbreviations
9423
9424 =back
9425
9426 =item Using B::Concise outside of the O framework
9427
9428 =item AUTHOR
9429
9430 =back
9431
9432 =head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
9433
9434 =over 4
9435
9436 =item SYNOPSIS
9437
9438 =item DESCRIPTION
9439
9440 =item AUTHOR
9441
9442 =back
9443
9444 =head2 B::Deparse - Perl compiler backend to produce perl code
9445
9446 =over 4
9447
9448 =item SYNOPSIS
9449
9450 =item DESCRIPTION
9451
9452 =item OPTIONS
9453
9454 B<-l>, B<-p>, B<-P>, B<-q>, B<-f>I<FILE>, B<-s>I<LETTERS>, B<C>,
9455 B<i>I<NUMBER>, B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
9456
9457 =item USING B::Deparse AS A MODULE
9458
9459 =over 4
9460
9461 =item Synopsis
9462
9463 =item Description
9464
9465 =item new
9466
9467 =item ambient_pragmas
9468
9469 strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
9470
9471 =item coderef2text
9472
9473 =back
9474
9475 =item BUGS
9476
9477 =item AUTHOR
9478
9479 =back
9480
9481 =head2 B::Disassembler - Disassemble Perl bytecode
9482
9483 =over 4
9484
9485 =item SYNOPSIS
9486
9487 =item DESCRIPTION
9488
9489 =item AUTHOR
9490
9491 =back
9492
9493 =head2 B::Lint - Perl lint
9494
9495 =over 4
9496
9497 =item SYNOPSIS
9498
9499 =item DESCRIPTION
9500
9501 =item OPTIONS AND LINT CHECKS
9502
9503 B<context>, B<implicit-read> and B<implicit-write>, B<dollar-underscore>,
9504 B<private-names>, B<undefined-subs>, B<regexp-variables>, B<all>, B<none>
9505
9506 =item NON LINT-CHECK OPTIONS
9507
9508 B<-u Package>
9509
9510 =item BUGS
9511
9512 =item AUTHOR
9513
9514 =back
9515
9516 =head2 B::O, O - Generic interface to Perl Compiler backends
9517
9518 =over 4
9519
9520 =item SYNOPSIS
9521
9522 =item DESCRIPTION
9523
9524 =item CONVENTIONS
9525
9526 =item IMPLEMENTATION
9527
9528 =item AUTHOR
9529
9530 =back
9531
9532 =head2 B::Showlex - Show lexical variables used in functions or files
9533
9534 =over 4
9535
9536 =item SYNOPSIS
9537
9538 =item DESCRIPTION
9539
9540 =item AUTHOR
9541
9542 =back
9543
9544 =head2 B::Stackobj - Helper module for CC backend
9545
9546 =over 4
9547
9548 =item SYNOPSIS
9549
9550 =item DESCRIPTION
9551
9552 =item AUTHOR
9553
9554 =back
9555
9556 =head2 B::Stash - show what stashes are loaded
9557
9558 =head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
9559
9560 =over 4
9561
9562 =item SYNOPSIS
9563
9564 =item DESCRIPTION
9565
9566 =item AUTHOR
9567
9568 =back
9569
9570 =head2 B::Xref - Generates cross reference reports for Perl programs
9571
9572 =over 4
9573
9574 =item SYNOPSIS
9575
9576 =item DESCRIPTION
9577
9578 =item OPTIONS
9579
9580 C<-oFILENAME>, C<-r>, C<-D[tO]>
9581
9582 =item BUGS
9583
9584 =item AUTHOR
9585
9586 =back
9587
9588 =head2 Bblock, B::Bblock - Walk basic blocks
9589
9590 =over 4
9591
9592 =item SYNOPSIS
9593
9594 =item DESCRIPTION
9595
9596 =over 4
9597
9598 =item Functions
9599
9600 B<find_leaders>
9601
9602 =back
9603
9604 =item AUTHOR
9605
9606 =back
9607
9608 =head2 Benchmark - benchmark running times of Perl code
9609
9610 =over 4
9611
9612 =item SYNOPSIS
9613
9614 =item DESCRIPTION
9615
9616 =over 4
9617
9618 =item Methods
9619
9620 new, debug, iters
9621
9622 =item Standard Exports
9623
9624 timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
9625 timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
9626 TIMEDIFF, [ STYLE, [ FORMAT ] ] )
9627
9628 =item Optional Exports
9629
9630 clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUT, CODEHASHREF, [
9631 STYLE ] ), cmpthese ( RESULTSHASHREF, [ STYLE ] ), countit(TIME, CODE),
9632 disablecache ( ), enablecache ( ), timesum ( T1, T2 )
9633
9634 =back
9635
9636 =item NOTES
9637
9638 =item EXAMPLES
9639
9640 =item INHERITANCE
9641
9642 =item CAVEATS
9643
9644 =item SEE ALSO
9645
9646 =item AUTHORS
9647
9648 =item MODIFICATION HISTORY
9649
9650 =back
9651
9652 =head2 ByteLoader - load byte compiled perl code
9653
9654 =over 4
9655
9656 =item SYNOPSIS
9657
9658 =item DESCRIPTION
9659
9660 =item AUTHOR
9661
9662 =item SEE ALSO
9663
9664 =back
9665
9666 =head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend
9667
9668 =over 4
9669
9670 =item SYNOPSIS
9671
9672 =item DESCRIPTION
9673
9674 =item OPTIONS
9675
9676 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
9677 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
9678 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
9679
9680 =item EXAMPLES
9681
9682 =item BUGS
9683
9684 =item AUTHORS
9685
9686 =back
9687
9688 =head2 CGI - Simple Common Gateway Interface Class
9689
9690 =over 4
9691
9692 =item SYNOPSIS
9693
9694 =item ABSTRACT
9695
9696 =item DESCRIPTION
9697
9698 =over 4
9699
9700 =item PROGRAMMING STYLE
9701
9702 =item CALLING CGI.PM ROUTINES
9703
9704 =item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
9705
9706 =item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
9707
9708 =item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
9709
9710 =item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
9711
9712 =item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
9713
9714 =item SETTING THE VALUE(S) OF A NAMED PARAMETER:
9715
9716 =item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
9717
9718 =item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
9719
9720 =item DELETING A PARAMETER COMPLETELY:
9721
9722 =item DELETING ALL PARAMETERS:
9723
9724 =item DIRECT ACCESS TO THE PARAMETER LIST:
9725
9726 =item FETCHING THE PARAMETER LIST AS A HASH:
9727
9728 =item SAVING THE STATE OF THE SCRIPT TO A FILE:
9729
9730 =item RETRIEVING CGI ERRORS
9731
9732 =item USING THE FUNCTION-ORIENTED INTERFACE
9733
9734 B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:html4>, B<:netscape>, B<:html>,
9735 B<:standard>, B<:all>
9736
9737 =item PRAGMAS
9738
9739 -any, -compile, -nosticky, -no_undef_params, -no_xhtml, -nph,
9740 -newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
9741 -private_tempfiles
9742
9743 =item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
9744
9745 1. start_table() (generates a <table> tag), 2. end_table() (generates a
9746 </table> tag), 3. start_ul() (generates a <ul> tag), 4. end_ul() (generates
9747 a </ul> tag)
9748
9749 =back
9750
9751 =item GENERATING DYNAMIC DOCUMENTS
9752
9753 =over 4
9754
9755 =item CREATING A STANDARD HTTP HEADER:
9756
9757 =item GENERATING A REDIRECTION HEADER
9758
9759 =item CREATING THE HTML DOCUMENT HEADER
9760
9761 B<Parameters:>, 4, 5, 6..
9762
9763 =item ENDING THE HTML DOCUMENT:
9764
9765 =item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
9766
9767 =item OBTAINING THE SCRIPT'S URL
9768
9769 B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
9770 (B<-query_string>), B<-base>
9771
9772 =item MIXING POST AND URL PARAMETERS
9773
9774 =back
9775
9776 =item CREATING STANDARD HTML ELEMENTS:
9777
9778 =over 4
9779
9780 =item PROVIDING ARGUMENTS TO HTML SHORTCUTS
9781
9782 =item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
9783
9784 =item HTML SHORTCUTS AND LIST INTERPOLATION
9785
9786 =item NON-STANDARD HTML SHORTCUTS
9787
9788 =item AUTOESCAPING HTML
9789
9790 $escaped_string = escapeHTML("unescaped string");, $charset =
9791 charset([$charset]);, $flag = autoEscape([$flag]);
9792
9793 =item PRETTY-PRINTING HTML
9794
9795 =back
9796
9797 =item CREATING FILL-OUT FORMS:
9798
9799 =over 4
9800
9801 =item CREATING AN ISINDEX TAG
9802
9803 =item STARTING AND ENDING A FORM
9804
9805 B<application/x-www-form-urlencoded>, B<multipart/form-data>
9806
9807 =item CREATING A TEXT FIELD
9808
9809 B<Parameters>
9810
9811 =item CREATING A BIG TEXT FIELD
9812
9813 =item CREATING A PASSWORD FIELD
9814
9815 =item CREATING A FILE UPLOAD FIELD
9816
9817 B<Parameters>
9818
9819 =item CREATING A POPUP MENU
9820
9821 =item CREATING A SCROLLING LIST
9822
9823 B<Parameters:>
9824
9825 =item CREATING A GROUP OF RELATED CHECKBOXES
9826
9827 B<Parameters:>
9828
9829 =item CREATING A STANDALONE CHECKBOX
9830
9831 B<Parameters:>
9832
9833 =item CREATING A RADIO BUTTON GROUP
9834
9835 B<Parameters:>
9836
9837 =item CREATING A SUBMIT BUTTON 
9838
9839 B<Parameters:>
9840
9841 =item CREATING A RESET BUTTON
9842
9843 =item CREATING A DEFAULT BUTTON
9844
9845 =item CREATING A HIDDEN FIELD
9846
9847 B<Parameters:>
9848
9849 =item CREATING A CLICKABLE IMAGE BUTTON
9850
9851 B<Parameters:>
9852
9853 =item CREATING A JAVASCRIPT ACTION BUTTON
9854
9855 =back
9856
9857 =item HTTP COOKIES
9858
9859 1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
9860 B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
9861
9862 =item WORKING WITH FRAMES
9863
9864 1. Create a <Frameset> document, 2. Specify the destination for the
9865 document in the HTTP header, 3. Specify the destination for the document in
9866 the <form> tag
9867
9868 =item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
9869
9870 =item DEBUGGING
9871
9872 =over 4
9873
9874 =item DUMPING OUT ALL THE NAME/VALUE PAIRS
9875
9876 =back
9877
9878 =item FETCHING ENVIRONMENT VARIABLES
9879
9880 B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
9881 B<path_translated()>, B<remote_host()>, B<script_name()>, B<referer()>,
9882 B<auth_type ()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
9883 B<server_software ()>, B<remote_user ()>, B<user_name ()>,
9884 B<request_method()>, B<content_type()>, B<http()>, B<https()>
9885
9886 =item USING NPH SCRIPTS
9887
9888 In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
9889 parameters
9890
9891 =item Server Push
9892
9893 multipart_init(), multipart_start(), multipart_end(), multipart_final()
9894
9895 =item Avoiding Denial of Service Attacks
9896
9897 B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
9898 basis>, B<2. Globally for all scripts>
9899
9900 =item COMPATIBILITY WITH CGI-LIB.PL
9901
9902 =item AUTHOR INFORMATION
9903
9904 =item CREDITS
9905
9906 Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
9907 (james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
9908 (mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
9909 (jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
9910 (applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
9911 (tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
9912 (tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
9913 MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
9914 (kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
9915 Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
9916 MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
9917 ...and many many more..
9918
9919 =item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
9920
9921 =item BUGS
9922
9923 =item SEE ALSO
9924
9925 =back
9926
9927 =head2 CGI::Apache - Backward compatibility module for CGI.pm
9928
9929 =over 4
9930
9931 =item SYNOPSIS
9932
9933 =item ABSTRACT
9934
9935 =item DESCRIPTION
9936
9937 =item AUTHOR INFORMATION
9938
9939 =item BUGS
9940
9941 =item SEE ALSO
9942
9943 =back
9944
9945 =head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
9946 other) error log
9947
9948 =over 4
9949
9950 =item SYNOPSIS
9951
9952 =item DESCRIPTION
9953
9954 =item REDIRECTING ERROR MESSAGES
9955
9956 =item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
9957
9958 =over 4
9959
9960 =item Changing the default message
9961
9962 =back
9963
9964 =item MAKING WARNINGS APPEAR AS HTML COMMENTS
9965
9966 =item CHANGE LOG
9967
9968 =item AUTHORS
9969
9970 =item SEE ALSO
9971
9972 =back
9973
9974 =head2 CGI::Cookie - Interface to Netscape Cookies
9975
9976 =over 4
9977
9978 =item SYNOPSIS
9979
9980 =item DESCRIPTION
9981
9982 =item USING CGI::Cookie
9983
9984 B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
9985
9986 =over 4
9987
9988 =item Creating New Cookies
9989
9990 =item Sending the Cookie to the Browser
9991
9992 =item Recovering Previous Cookies
9993
9994 =item Manipulating Cookies
9995
9996 B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
9997
9998 =back
9999
10000 =item AUTHOR INFORMATION
10001
10002 =item BUGS
10003
10004 =item SEE ALSO
10005
10006 =back
10007
10008 =head2 CGI::Fast - CGI Interface for Fast CGI
10009
10010 =over 4
10011
10012 =item SYNOPSIS
10013
10014 =item DESCRIPTION
10015
10016 =item OTHER PIECES OF THE PUZZLE
10017
10018 =item WRITING FASTCGI PERL SCRIPTS
10019
10020 =item INSTALLING FASTCGI SCRIPTS
10021
10022 =item USING FASTCGI SCRIPTS AS CGI SCRIPTS
10023
10024 =item EXTERNAL FASTCGI SERVER INVOCATION
10025
10026 FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
10027
10028 =item CAVEATS
10029
10030 =item AUTHOR INFORMATION
10031
10032 =item BUGS
10033
10034 =item SEE ALSO
10035
10036 =back
10037
10038 =head2 CGI::Pretty - module to produce nicely formatted HTML code
10039
10040 =over 4
10041
10042 =item SYNOPSIS
10043
10044 =item DESCRIPTION
10045
10046 =over 4
10047
10048 =item Tags that won't be formatted
10049
10050 =item Customizing the Indenting
10051
10052 =back
10053
10054 =item BUGS
10055
10056 =item AUTHOR
10057
10058 =item SEE ALSO
10059
10060 =back
10061
10062 =head2 CGI::Push - Simple Interface to Server Push
10063
10064 =over 4
10065
10066 =item SYNOPSIS
10067
10068 =item DESCRIPTION
10069
10070 =item USING CGI::Push
10071
10072 -next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
10073
10074 =over 4
10075
10076 =item Heterogeneous Pages
10077
10078 =item Changing the Page Delay on the Fly
10079
10080 =back
10081
10082 =item INSTALLING CGI::Push SCRIPTS
10083
10084 =item AUTHOR INFORMATION
10085
10086 =item BUGS
10087
10088 =item SEE ALSO
10089
10090 =back
10091
10092 =head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
10093
10094 =over 4
10095
10096 =item SYNOPSIS
10097
10098 =item ABSTRACT
10099
10100 =item DESCRIPTION
10101
10102 =item AUTHOR INFORMATION
10103
10104 =item BUGS
10105
10106 =item SEE ALSO
10107
10108 =back
10109
10110 =head2 CGI::Util - Internal utilities used by CGI module
10111
10112 =over 4
10113
10114 =item SYNOPSIS
10115
10116 =item DESCRIPTION
10117
10118 =item AUTHOR INFORMATION
10119
10120 =item SEE ALSO
10121
10122 =back
10123
10124 =head2 CPAN - query, download and build perl modules from CPAN sites
10125
10126 =over 4
10127
10128 =item SYNOPSIS
10129
10130 =item DESCRIPTION
10131
10132 =over 4
10133
10134 =item Interactive Mode
10135
10136 Searching for authors, bundles, distribution files and modules, make, test,
10137 install, clean  modules or distributions, get, readme, look module or
10138 distribution, ls author, Signals
10139
10140 =item CPAN::Shell
10141
10142 =item autobundle
10143
10144 =item recompile
10145
10146 =item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
10147
10148 =item Programmer's interface
10149
10150 expand($type,@things), expandany(@things), Programming Examples
10151
10152 =item Methods in the other Classes
10153
10154 CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
10155 CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
10156 CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
10157 CPAN::Bundle::clean(), CPAN::Bundle::contains(),
10158 CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
10159 CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
10160 CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
10161 CPAN::Bundle::readme(), CPAN::Bundle::test(),
10162 CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
10163 CPAN::Distribution::clean(), CPAN::Distribution::containsmods(),
10164 CPAN::Distribution::cvs_import(), CPAN::Distribution::dir(),
10165 CPAN::Distribution::force($method,@args), CPAN::Distribution::get(),
10166 CPAN::Distribution::install(), CPAN::Distribution::isa_perl(),
10167 CPAN::Distribution::look(), CPAN::Distribution::make(),
10168 CPAN::Distribution::prereq_pm(), CPAN::Distribution::readme(),
10169 CPAN::Distribution::test(), CPAN::Distribution::uptodate(),
10170 CPAN::Index::force_reload(), CPAN::Index::reload(), CPAN::InfoObj::dump(),
10171 CPAN::Module::as_glimpse(), CPAN::Module::as_string(),
10172 CPAN::Module::clean(), CPAN::Module::cpan_file(),
10173 CPAN::Module::cpan_version(), CPAN::Module::cvs_import(),
10174 CPAN::Module::description(), CPAN::Module::force($method,@args),
10175 CPAN::Module::get(), CPAN::Module::inst_file(),
10176 CPAN::Module::inst_version(), CPAN::Module::install(),
10177 CPAN::Module::look(), CPAN::Module::make(),
10178 CPAN::Module::manpage_headline(), CPAN::Module::readme(),
10179 CPAN::Module::test(), CPAN::Module::uptodate(), CPAN::Module::userid()
10180
10181 =item Cache Manager
10182
10183 =item Bundles
10184
10185 =item Prerequisites
10186
10187 =item Finding packages and VERSION
10188
10189 =item Debugging
10190
10191 =item Floppy, Zip, Offline Mode
10192
10193 =back
10194
10195 =item CONFIGURATION
10196
10197 C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
10198 E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
10199 optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
10200 [unshift|push|splice] E<lt>listE<gt>>
10201
10202 =over 4
10203
10204 =item Note on urllist parameter's format
10205
10206 =item urllist parameter has CD-ROM support
10207
10208 =back
10209
10210 =item SECURITY
10211
10212 =item EXPORT
10213
10214 =item POPULATE AN INSTALLATION WITH LOTS OF MODULES
10215
10216 =item WORKING WITH CPAN.pm BEHIND FIREWALLS
10217
10218 =over 4
10219
10220 =item Three basic types of firewalls
10221
10222 http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
10223
10224 =item Configuring lynx or ncftp for going through a firewall
10225
10226 =back
10227
10228 =item FAQ
10229
10230 1), 2), 3), 4), 5), 6), 7), 8), 9), 10)
10231
10232 =item BUGS
10233
10234 =item AUTHOR
10235
10236 =item TRANSLATIONS
10237
10238 =item SEE ALSO
10239
10240 =back
10241
10242 =head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
10243
10244 =over 4
10245
10246 =item SYNOPSIS
10247
10248 =item DESCRIPTION
10249
10250 =back
10251
10252 =head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
10253 module
10254
10255 =over 4
10256
10257 =item SYNOPSIS
10258
10259 =item DESCRIPTION
10260
10261 =item  SEE ALSO
10262
10263 =back
10264
10265 =head2 Carp, carp    - warn of errors (from perspective of caller)
10266
10267 =over 4
10268
10269 =item SYNOPSIS
10270
10271 =item DESCRIPTION
10272
10273 =over 4
10274
10275 =item Forcing a Stack Trace
10276
10277 =back
10278
10279 =item BUGS
10280
10281 =back
10282
10283 =head2 Carp::Heavy, Carp heavy machinery - no user serviceable parts inside
10284
10285 =head2 Class::ISA -- report the search path for a class's ISA tree
10286
10287 =over 4
10288
10289 =item SYNOPSIS
10290
10291 =item DESCRIPTION
10292
10293 =item FUNCTIONS
10294
10295 the function Class::ISA::super_path($CLASS), the function
10296 Class::ISA::self_and_super_path($CLASS), the function
10297 Class::ISA::self_and_super_versions($CLASS)
10298
10299 =item CAUTIONARY NOTES
10300
10301 =item COPYRIGHT
10302
10303 =item AUTHOR
10304
10305 =back
10306
10307 =head2 Class::Struct - declare struct-like datatypes as Perl classes
10308
10309 =over 4
10310
10311 =item SYNOPSIS
10312
10313 =item DESCRIPTION
10314
10315 =over 4
10316
10317 =item The C<struct()> function
10318
10319 =item Class Creation at Compile Time
10320
10321 =item Element Types and Accessor Methods
10322
10323 Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
10324 C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
10325
10326 =item Initializing with C<new>
10327
10328 =back
10329
10330 =item EXAMPLES
10331
10332 Example 1, Example 2, Example 3
10333
10334 =item Author and Modification History
10335
10336 =back
10337
10338 =head2 Config - access Perl configuration information
10339
10340 =over 4
10341
10342 =item SYNOPSIS
10343
10344 =item DESCRIPTION
10345
10346 myconfig(), config_sh(), config_vars(@names)
10347
10348 =item EXAMPLE
10349
10350 =item WARNING
10351
10352 =item GLOSSARY
10353
10354 =over 4
10355
10356 =item _
10357
10358 C<_a>, C<_exe>, C<_o>
10359
10360 =item a
10361
10362 C<afs>, C<afsroot>, C<alignbytes>, C<ansi2knr>, C<aphostname>,
10363 C<api_revision>, C<api_subversion>, C<api_version>, C<api_versionstring>,
10364 C<ar>, C<archlib>, C<archlibexp>, C<archname64>, C<archname>, C<archobjs>,
10365 C<awk>
10366
10367 =item b
10368
10369 C<baserev>, C<bash>, C<bin>, C<bincompat5005>, C<binexp>, C<bison>,
10370 C<byacc>, C<byteorder>
10371
10372 =item c
10373
10374 C<c>, C<castflags>, C<cat>, C<cc>, C<cccdlflags>, C<ccdlflags>, C<ccflags>,
10375 C<ccflags_uselargefiles>, C<ccname>, C<ccsymbols>, C<ccversion>, C<cf_by>,
10376 C<cf_email>, C<cf_time>, C<charsize>, C<chgrp>, C<chmod>, C<chown>,
10377 C<clocktype>, C<comm>, C<compress>, C<contains>, C<cp>, C<cpio>, C<cpp>,
10378 C<cpp_stuff>, C<cppccsymbols>, C<cppflags>, C<cpplast>, C<cppminus>,
10379 C<cpprun>, C<cppstdin>, C<cppsymbols>, C<cryptlib>, C<csh>
10380
10381 =item d
10382
10383 C<d__fwalk>, C<d_access>, C<d_accessx>, C<d_alarm>, C<d_archlib>,
10384 C<d_atolf>, C<d_atoll>, C<d_attribut>, C<d_bcmp>, C<d_bcopy>,
10385 C<d_bincompat5005>, C<d_bsd>, C<d_bsdgetpgrp>, C<d_bsdsetpgrp>, C<d_bzero>,
10386 C<d_casti32>, C<d_castneg>, C<d_charvspr>, C<d_chown>, C<d_chroot>,
10387 C<d_chsize>, C<d_class>, C<d_closedir>, C<d_cmsghdr_s>, C<d_const>,
10388 C<d_crypt>, C<d_csh>, C<d_cuserid>, C<d_dbl_dig>, C<d_dbminitproto>,
10389 C<d_difftime>, C<d_dirfd>, C<d_dirnamlen>, C<d_dlerror>, C<d_dlopen>,
10390 C<d_dlsymun>, C<d_dosuid>, C<d_drand48proto>, C<d_dup2>, C<d_eaccess>,
10391 C<d_endgrent>, C<d_endhent>, C<d_endnent>, C<d_endpent>, C<d_endpwent>,
10392 C<d_endsent>, C<d_eofnblk>, C<d_eunice>, C<d_fchdir>, C<d_fchmod>,
10393 C<d_fchown>, C<d_fcntl>, C<d_fcntl_can_lock>, C<d_fd_macros>, C<d_fd_set>,
10394 C<d_fds_bits>, C<d_fgetpos>, C<d_finite>, C<d_finitel>, C<d_flexfnam>,
10395 C<d_flock>, C<d_flockproto>, C<d_fork>, C<d_fp_class>, C<d_fpathconf>,
10396 C<d_fpclass>, C<d_fpclassify>, C<d_fpclassl>, C<d_fpos64_t>, C<d_frexpl>,
10397 C<d_fs_data_s>, C<d_fseeko>, C<d_fsetpos>, C<d_fstatfs>, C<d_fstatvfs>,
10398 C<d_fsync>, C<d_ftello>, C<d_ftime>, C<d_Gconvert>, C<d_getcwd>,
10399 C<d_getespwnam>, C<d_getfsstat>, C<d_getgrent>, C<d_getgrps>,
10400 C<d_gethbyaddr>, C<d_gethbyname>, C<d_gethent>, C<d_gethname>,
10401 C<d_gethostprotos>, C<d_getitimer>, C<d_getlogin>, C<d_getmnt>,
10402 C<d_getmntent>, C<d_getnbyaddr>, C<d_getnbyname>, C<d_getnent>,
10403 C<d_getnetprotos>, C<d_getpagsz>, C<d_getpbyname>, C<d_getpbynumber>,
10404 C<d_getpent>, C<d_getpgid>, C<d_getpgrp2>, C<d_getpgrp>, C<d_getppid>,
10405 C<d_getprior>, C<d_getprotoprotos>, C<d_getprpwnam>, C<d_getpwent>,
10406 C<d_getsbyname>, C<d_getsbyport>, C<d_getsent>, C<d_getservprotos>,
10407 C<d_getspnam>, C<d_gettimeod>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>,
10408 C<d_htonl>, C<d_index>, C<d_inetaton>, C<d_int64_t>, C<d_isascii>,
10409 C<d_isfinite>, C<d_isinf>, C<d_isnan>, C<d_isnanl>, C<d_killpg>,
10410 C<d_lchown>, C<d_ldbl_dig>, C<d_link>, C<d_locconv>, C<d_lockf>,
10411 C<d_longdbl>, C<d_longlong>, C<d_lseekproto>, C<d_lstat>, C<d_madvise>,
10412 C<d_mblen>, C<d_mbstowcs>, C<d_mbtowc>, C<d_memchr>, C<d_memcmp>,
10413 C<d_memcpy>, C<d_memmove>, C<d_memset>, C<d_mkdir>, C<d_mkdtemp>,
10414 C<d_mkfifo>, C<d_mkstemp>, C<d_mkstemps>, C<d_mktime>, C<d_mmap>,
10415 C<d_modfl>, C<d_modfl_pow32_bug>, C<d_mprotect>, C<d_msg>, C<d_msg_ctrunc>,
10416 C<d_msg_dontroute>, C<d_msg_oob>, C<d_msg_peek>, C<d_msg_proxy>,
10417 C<d_msgctl>, C<d_msgget>, C<d_msghdr_s>, C<d_msgrcv>, C<d_msgsnd>,
10418 C<d_msync>, C<d_munmap>, C<d_mymalloc>, C<d_nice>, C<d_nl_langinfo>,
10419 C<d_nv_preserves_uv>, C<nv_preserves_uv_bits>, C<d_off64_t>,
10420 C<d_old_pthread_create_joinable>, C<d_oldpthreads>, C<d_oldsock>,
10421 C<d_open3>, C<d_pathconf>, C<d_pause>, C<d_perl_otherlibdirs>,
10422 C<d_phostname>, C<d_pipe>, C<d_poll>, C<d_portable>, C<d_PRId64>,
10423 C<d_PRIeldbl>, C<d_PRIEUldbl>, C<d_PRIfldbl>, C<d_PRIFUldbl>,
10424 C<d_PRIgldbl>, C<d_PRIGUldbl>, C<d_PRIi64>, C<d_PRIo64>, C<d_PRIu64>,
10425 C<d_PRIx64>, C<d_PRIXU64>, C<d_procselfexe>, C<d_pthread_atfork>,
10426 C<d_pthread_yield>, C<d_pwage>, C<d_pwchange>, C<d_pwclass>,
10427 C<d_pwcomment>, C<d_pwexpire>, C<d_pwgecos>, C<d_pwpasswd>, C<d_pwquota>,
10428 C<d_qgcvt>, C<d_quad>, C<d_readdir>, C<d_readlink>, C<d_readv>,
10429 C<d_recvmsg>, C<d_rename>, C<d_rewinddir>, C<d_rmdir>, C<d_safebcpy>,
10430 C<d_safemcpy>, C<d_sanemcmp>, C<d_sbrkproto>, C<d_sched_yield>,
10431 C<d_scm_rights>, C<d_SCNfldbl>, C<d_seekdir>, C<d_select>, C<d_sem>,
10432 C<d_semctl>, C<d_semctl_semid_ds>, C<d_semctl_semun>, C<d_semget>,
10433 C<d_semop>, C<d_sendmsg>, C<d_setegid>, C<d_seteuid>, C<d_setgrent>,
10434 C<d_setgrps>, C<d_sethent>, C<d_setitimer>, C<d_setlinebuf>,
10435 C<d_setlocale>, C<d_setnent>, C<d_setpent>, C<d_setpgid>, C<d_setpgrp2>,
10436 C<d_setpgrp>, C<d_setprior>, C<d_setproctitle>, C<d_setpwent>,
10437 C<d_setregid>, C<d_setresgid>, C<d_setresuid>, C<d_setreuid>, C<d_setrgid>,
10438 C<d_setruid>, C<d_setsent>, C<d_setsid>, C<d_setvbuf>, C<d_sfio>, C<d_shm>,
10439 C<d_shmat>, C<d_shmatprototype>, C<d_shmctl>, C<d_shmdt>, C<d_shmget>,
10440 C<d_sigaction>, C<d_sigprocmask>, C<d_sigsetjmp>, C<d_sockatmark>,
10441 C<d_sockatmarkproto>, C<d_socket>, C<d_socklen_t>, C<d_sockpair>,
10442 C<d_socks5_init>, C<d_sqrtl>, C<d_sresgproto>, C<d_sresuproto>,
10443 C<d_statblks>, C<d_statfs_f_flags>, C<d_statfs_s>, C<d_statvfs>,
10444 C<d_stdio_cnt_lval>, C<d_stdio_ptr_lval>, C<d_stdio_ptr_lval_nochange_cnt>,
10445 C<d_stdio_ptr_lval_sets_cnt>, C<d_stdio_stream_array>, C<d_stdiobase>,
10446 C<d_stdstdio>, C<d_strchr>, C<d_strcoll>, C<d_strctcpy>, C<d_strerrm>,
10447 C<d_strerror>, C<d_strftime>, C<d_strtod>, C<d_strtol>, C<d_strtold>,
10448 C<d_strtoll>, C<d_strtoq>, C<d_strtoul>, C<d_strtoull>, C<d_strtouq>,
10449 C<d_strxfrm>, C<d_suidsafe>, C<d_symlink>, C<d_syscall>, C<d_syscallproto>,
10450 C<d_sysconf>, C<d_sysernlst>, C<d_syserrlst>, C<d_system>, C<d_tcgetpgrp>,
10451 C<d_tcsetpgrp>, C<d_telldir>, C<d_telldirproto>, C<d_time>, C<d_times>,
10452 C<d_tm_tm_gmtoff>, C<d_tm_tm_zone>, C<d_truncate>, C<d_tzname>,
10453 C<d_u32align>, C<d_ualarm>, C<d_umask>, C<d_uname>, C<d_union_semun>,
10454 C<d_unordered>, C<d_usleep>, C<d_usleepproto>, C<d_ustat>, C<d_vendorarch>,
10455 C<d_vendorbin>, C<d_vendorlib>, C<d_vfork>, C<d_void_closedir>,
10456 C<d_voidsig>, C<d_voidtty>, C<d_volatile>, C<d_vprintf>, C<d_wait4>,
10457 C<d_waitpid>, C<d_wcstombs>, C<d_wctomb>, C<d_writev>, C<d_xenix>, C<date>,
10458 C<db_hashtype>, C<db_prefixtype>, C<db_version_major>, C<db_version_minor>,
10459 C<db_version_patch>, C<defvoidused>, C<direntrytype>, C<dlext>, C<dlsrc>,
10460 C<doublesize>, C<drand01>, C<dynamic_ext>
10461
10462 =item e
10463
10464 C<eagain>, C<ebcdic>, C<echo>, C<egrep>, C<emacs>, C<eunicefix>,
10465 C<exe_ext>, C<expr>, C<extensions>, C<extras>
10466
10467 =item f
10468
10469 C<fflushall>, C<fflushNULL>, C<find>, C<firstmakefile>, C<flex>,
10470 C<fpossize>, C<fpostype>, C<freetype>, C<from>, C<full_ar>, C<full_csh>,
10471 C<full_sed>
10472
10473 =item g
10474
10475 C<gccosandvers>, C<gccversion>, C<gidformat>, C<gidsign>, C<gidsize>,
10476 C<gidtype>, C<glibpth>, C<gmake>, C<grep>, C<groupcat>, C<groupstype>,
10477 C<gzip>
10478
10479 =item h
10480
10481 C<h_fcntl>, C<h_sysfile>, C<hint>, C<hostcat>
10482
10483 =item i
10484
10485 C<i16size>, C<i16type>, C<i32size>, C<i32type>, C<i64size>, C<i64type>,
10486 C<i8size>, C<i8type>, C<i_arpainet>, C<i_bsdioctl>, C<i_db>, C<i_dbm>,
10487 C<i_dirent>, C<i_dld>, C<i_dlfcn>, C<i_fcntl>, C<i_float>, C<i_fp>,
10488 C<i_fp_class>, C<i_gdbm>, C<i_grp>, C<i_ieeefp>, C<i_inttypes>,
10489 C<i_langinfo>, C<i_libutil>, C<i_limits>, C<i_locale>, C<i_machcthr>,
10490 C<i_malloc>, C<i_math>, C<i_memory>, C<i_mntent>, C<i_ndbm>, C<i_netdb>,
10491 C<i_neterrno>, C<i_netinettcp>, C<i_niin>, C<i_poll>, C<i_prot>,
10492 C<i_pthread>, C<i_pwd>, C<i_rpcsvcdbm>, C<i_sfio>, C<i_sgtty>, C<i_shadow>,
10493 C<i_socks>, C<i_stdarg>, C<i_stddef>, C<i_stdlib>, C<i_string>,
10494 C<i_sunmath>, C<i_sysaccess>, C<i_sysdir>, C<i_sysfile>, C<i_sysfilio>,
10495 C<i_sysin>, C<i_sysioctl>, C<i_syslog>, C<i_sysmman>, C<i_sysmode>,
10496 C<i_sysmount>, C<i_sysndir>, C<i_sysparam>, C<i_sysresrc>, C<i_syssecrt>,
10497 C<i_sysselct>, C<i_syssockio>, C<i_sysstat>, C<i_sysstatfs>,
10498 C<i_sysstatvfs>, C<i_systime>, C<i_systimek>, C<i_systimes>, C<i_systypes>,
10499 C<i_sysuio>, C<i_sysun>, C<i_sysutsname>, C<i_sysvfs>, C<i_syswait>,
10500 C<i_termio>, C<i_termios>, C<i_time>, C<i_unistd>, C<i_ustat>, C<i_utime>,
10501 C<i_values>, C<i_varargs>, C<i_varhdr>, C<i_vfork>,
10502 C<ignore_versioned_solibs>, C<inc_version_list>, C<inc_version_list_init>,
10503 C<incpath>, C<inews>, C<installarchlib>, C<installbin>, C<installman1dir>,
10504 C<installman3dir>, C<installprefix>, C<installprefixexp>,
10505 C<installprivlib>, C<installscript>, C<installsitearch>, C<installsitebin>,
10506 C<installsitelib>, C<installstyle>, C<installusrbinperl>,
10507 C<installvendorarch>, C<installvendorbin>, C<installvendorlib>, C<intsize>,
10508 C<issymlink>, C<ivdformat>, C<ivsize>, C<ivtype>
10509
10510 =item k
10511
10512 C<known_extensions>, C<ksh>
10513
10514 =item l
10515
10516 C<ld>, C<lddlflags>, C<ldflags>, C<ldflags_uselargefiles>, C<ldlibpthname>,
10517 C<less>, C<lib_ext>, C<libc>, C<libperl>, C<libpth>, C<libs>, C<libsdirs>,
10518 C<libsfiles>, C<libsfound>, C<libspath>, C<libswanted>,
10519 C<libswanted_uselargefiles>, C<line>, C<lint>, C<lkflags>, C<ln>, C<lns>,
10520 C<locincpth>, C<loclibpth>, C<longdblsize>, C<longlongsize>, C<longsize>,
10521 C<lp>, C<lpr>, C<ls>, C<lseeksize>, C<lseektype>
10522
10523 =item m
10524
10525 C<mail>, C<mailx>, C<make>, C<make_set_make>, C<mallocobj>, C<mallocsrc>,
10526 C<malloctype>, C<man1dir>, C<man1direxp>, C<man1ext>, C<man3dir>,
10527 C<man3direxp>, C<man3ext>
10528
10529 =item M
10530
10531 C<Mcc>, C<mips_type>, C<mkdir>, C<mmaptype>, C<modetype>, C<more>,
10532 C<multiarch>, C<mv>, C<myarchname>, C<mydomain>, C<myhostname>, C<myuname>
10533
10534 =item n
10535
10536 C<n>, C<need_va_copy>, C<netdb_hlen_type>, C<netdb_host_type>,
10537 C<netdb_name_type>, C<netdb_net_type>, C<nm>, C<nm_opt>, C<nm_so_opt>,
10538 C<nonxs_ext>, C<nroff>, C<nveformat>, C<nvEUformat>, C<nvfformat>,
10539 C<nvFUformat>, C<nvgformat>, C<nvGUformat>, C<nvsize>, C<nvtype>
10540
10541 =item o
10542
10543 C<o_nonblock>, C<obj_ext>, C<old_pthread_create_joinable>, C<optimize>,
10544 C<orderlib>, C<osname>, C<osvers>, C<otherlibdirs>
10545
10546 =item p
10547
10548 C<package>, C<pager>, C<passcat>, C<patchlevel>, C<path_sep>, C<perl5>,
10549 C<perl>, C<perl_patchlevel>
10550
10551 =item P
10552
10553 C<PERL_REVISION>, C<PERL_SUBVERSION>, C<PERL_VERSION>, C<perladmin>,
10554 C<perllibs>, C<perlpath>, C<pg>, C<phostname>, C<pidtype>, C<plibpth>,
10555 C<pm_apiversion>, C<pmake>, C<pr>, C<prefix>, C<prefixexp>, C<privlib>,
10556 C<privlibexp>, C<procselfexe>, C<prototype>, C<ptrsize>
10557
10558 =item q
10559
10560 C<quadkind>, C<quadtype>
10561
10562 =item r
10563
10564 C<randbits>, C<randfunc>, C<randseedtype>, C<ranlib>, C<rd_nodata>,
10565 C<revision>, C<rm>, C<rmail>, C<run>, C<runnm>
10566
10567 =item s
10568
10569 C<sched_yield>, C<scriptdir>, C<scriptdirexp>, C<sed>, C<seedfunc>,
10570 C<selectminbits>, C<selecttype>, C<sendmail>, C<sh>, C<shar>, C<sharpbang>,
10571 C<shmattype>, C<shortsize>, C<shrpenv>, C<shsharp>, C<sig_count>,
10572 C<sig_name>, C<sig_name_init>, C<sig_num>, C<sig_num_init>, C<sig_size>,
10573 C<signal_t>, C<sitearch>, C<sitearchexp>, C<sitebin>, C<sitebinexp>,
10574 C<sitelib>, C<sitelib_stem>, C<sitelibexp>, C<siteprefix>,
10575 C<siteprefixexp>, C<sizesize>, C<sizetype>, C<sleep>, C<smail>, C<so>,
10576 C<sockethdr>, C<socketlib>, C<socksizetype>, C<sort>, C<spackage>,
10577 C<spitshell>, C<sPRId64>, C<sPRIeldbl>, C<sPRIEUldbl>, C<sPRIfldbl>,
10578 C<sPRIFUldbl>, C<sPRIgldbl>, C<sPRIGUldbl>, C<sPRIi64>, C<sPRIo64>,
10579 C<sPRIu64>, C<sPRIx64>, C<sPRIXU64>, C<src>, C<sSCNfldbl>, C<ssizetype>,
10580 C<startperl>, C<startsh>, C<static_ext>, C<stdchar>, C<stdio_base>,
10581 C<stdio_bufsiz>, C<stdio_cnt>, C<stdio_filbuf>, C<stdio_ptr>,
10582 C<stdio_stream_array>, C<strings>, C<submit>, C<subversion>, C<sysman>
10583
10584 =item t
10585
10586 C<tail>, C<tar>, C<targetarch>, C<tbl>, C<tee>, C<test>, C<timeincl>,
10587 C<timetype>, C<to>, C<touch>, C<tr>, C<trnl>, C<troff>
10588
10589 =item u
10590
10591 C<u16size>, C<u16type>, C<u32size>, C<u32type>, C<u64size>, C<u64type>,
10592 C<u8size>, C<u8type>, C<uidformat>, C<uidsign>, C<uidsize>, C<uidtype>,
10593 C<uname>, C<uniq>, C<uquadtype>, C<use5005threads>, C<use64bitall>,
10594 C<use64bitint>, C<usecrosscompile>, C<usedl>, C<useithreads>,
10595 C<uselargefiles>, C<uselongdouble>, C<usemorebits>, C<usemultiplicity>,
10596 C<usemymalloc>, C<usenm>, C<useopcode>, C<useperlio>, C<useposix>,
10597 C<usereentrant>, C<usesfio>, C<useshrplib>, C<usesocks>, C<usethreads>,
10598 C<usevendorprefix>, C<usevfork>, C<usrinc>, C<uuname>, C<uvoformat>,
10599 C<uvsize>, C<uvtype>, C<uvuformat>, C<uvxformat>, C<uvXUformat>
10600
10601 =item v
10602
10603 C<vendorarch>, C<vendorarchexp>, C<vendorbin>, C<vendorbinexp>,
10604 C<vendorlib>, C<vendorlib_stem>, C<vendorlibexp>, C<vendorprefix>,
10605 C<vendorprefixexp>, C<version>, C<version_patchlevel_string>,
10606 C<versiononly>, C<vi>, C<voidflags>
10607
10608 =item x
10609
10610 C<xlibpth>, C<xs_apiversion>
10611
10612 =item y
10613
10614 C<yacc>, C<yaccflags>
10615
10616 =item z
10617
10618 C<zcat>, C<zip>
10619
10620 =back
10621
10622 =item NOTE
10623
10624 =back
10625
10626 =head2 Cwd - get pathname of current working directory
10627
10628 =over 4
10629
10630 =item SYNOPSIS
10631
10632 =item DESCRIPTION
10633
10634 =over 4
10635
10636 =item getcwd and friends
10637
10638 getcwd, cwd, fastcwd, fastgetcwd
10639
10640 =item abs_path and friends
10641
10642 abs_path, realpath, fast_abs_path
10643
10644 =item $ENV{PWD}
10645
10646 =back
10647
10648 =item NOTES
10649
10650 =item SEE ALSO
10651
10652 =back
10653
10654 =head2 DB - programmatic interface to the Perl debugging API (draft,
10655 subject to
10656 change)
10657
10658 =over 4
10659
10660 =item SYNOPSIS
10661
10662 =item DESCRIPTION
10663
10664 =over 4
10665
10666 =item Global Variables
10667
10668  $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace,  @DB::args, 
10669 @DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
10670 $DB::lineno
10671
10672 =item API Methods
10673
10674 CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
10675 CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
10676
10677 =item Client Callback Methods
10678
10679 CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
10680 CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
10681 CLIENT->output(LIST)
10682
10683 =back
10684
10685 =item BUGS
10686
10687 =item AUTHOR
10688
10689 =back
10690
10691 =head2 DB_File - Perl5 access to Berkeley DB version 1.x
10692
10693 =over 4
10694
10695 =item SYNOPSIS
10696
10697 =item DESCRIPTION
10698
10699 B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
10700
10701 =over 4
10702
10703 =item Using DB_File with Berkeley DB version 2 or greater
10704
10705 =item Interface to Berkeley DB
10706
10707 =item Opening a Berkeley DB Database File
10708
10709 =item Default Parameters
10710
10711 =item In Memory Databases
10712
10713 =back
10714
10715 =item DB_HASH
10716
10717 =over 4
10718
10719 =item A Simple Example
10720
10721 =back
10722
10723 =item DB_BTREE
10724
10725 =over 4
10726
10727 =item Changing the BTREE sort order
10728
10729 =item Handling Duplicate Keys 
10730
10731 =item The get_dup() Method
10732
10733 =item The find_dup() Method
10734
10735 =item The del_dup() Method
10736
10737 =item Matching Partial Keys 
10738
10739 =back
10740
10741 =item DB_RECNO
10742
10743 =over 4
10744
10745 =item The 'bval' Option
10746
10747 =item A Simple Example
10748
10749 =item Extra RECNO Methods
10750
10751 B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
10752 B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
10753 length, elements);>
10754
10755 =item Another Example
10756
10757 =back
10758
10759 =item THE API INTERFACE
10760
10761 B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
10762 $X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
10763 $flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
10764 $value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
10765
10766 =item DBM FILTERS
10767
10768 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
10769 B<filter_fetch_value>
10770
10771 =over 4
10772
10773 =item The Filter
10774
10775 =item An Example -- the NULL termination problem.
10776
10777 =item Another Example -- Key is a C int.
10778
10779 =back
10780
10781 =item HINTS AND TIPS 
10782
10783 =over 4
10784
10785 =item Locking: The Trouble with fd
10786
10787 =item Safe ways to lock a database
10788
10789 B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
10790
10791 =item Sharing Databases With C Applications
10792
10793 =item The untie() Gotcha
10794
10795 =back
10796
10797 =item COMMON QUESTIONS
10798
10799 =over 4
10800
10801 =item Why is there Perl source in my database?
10802
10803 =item How do I store complex data structures with DB_File?
10804
10805 =item What does "Invalid Argument" mean?
10806
10807 =item What does "Bareword 'DB_File' not allowed" mean? 
10808
10809 =back
10810
10811 =item REFERENCES
10812
10813 =item HISTORY
10814
10815 =item BUGS
10816
10817 =item AVAILABILITY
10818
10819 =item COPYRIGHT
10820
10821 =item SEE ALSO
10822
10823 =item AUTHOR
10824
10825 =back
10826
10827 =head2 Data::Dumper - stringified perl data structures, suitable for both
10828 printing and C<eval>
10829
10830 =over 4
10831
10832 =item SYNOPSIS
10833
10834 =item DESCRIPTION
10835
10836 =over 4
10837
10838 =item Methods
10839
10840 I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
10841 I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
10842 I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
10843 I<$OBJ>->Reset
10844
10845 =item Functions
10846
10847 Dumper(I<LIST>)
10848
10849 =item Configuration Variables or Methods
10850
10851 $Data::Dumper::Indent  I<or>  I<$OBJ>->Indent(I<[NEWVAL]>),
10852 $Data::Dumper::Purity  I<or>  I<$OBJ>->Purity(I<[NEWVAL]>),
10853 $Data::Dumper::Pad  I<or>  I<$OBJ>->Pad(I<[NEWVAL]>),
10854 $Data::Dumper::Varname  I<or>  I<$OBJ>->Varname(I<[NEWVAL]>),
10855 $Data::Dumper::Useqq  I<or>  I<$OBJ>->Useqq(I<[NEWVAL]>),
10856 $Data::Dumper::Terse  I<or>  I<$OBJ>->Terse(I<[NEWVAL]>),
10857 $Data::Dumper::Freezer  I<or>  $I<OBJ>->Freezer(I<[NEWVAL]>),
10858 $Data::Dumper::Toaster  I<or>  $I<OBJ>->Toaster(I<[NEWVAL]>),
10859 $Data::Dumper::Deepcopy  I<or>  $I<OBJ>->Deepcopy(I<[NEWVAL]>),
10860 $Data::Dumper::Quotekeys  I<or>  $I<OBJ>->Quotekeys(I<[NEWVAL]>),
10861 $Data::Dumper::Bless  I<or>  $I<OBJ>->Bless(I<[NEWVAL]>),
10862 $Data::Dumper::Maxdepth  I<or>  $I<OBJ>->Maxdepth(I<[NEWVAL]>),
10863 $Data::Dumper::Useperl  I<or>  $I<OBJ>->Useperl(I<[NEWVAL]>),
10864 $Data::Dumper::Sortkeys  I<or>  $I<OBJ>->Sortkeys(I<[NEWVAL]>),
10865 $Data::Dumper::Deparse  I<or>  $I<OBJ>->Deparse(I<[NEWVAL]>)
10866
10867 =item Exports
10868
10869 Dumper
10870
10871 =back
10872
10873 =item EXAMPLES
10874
10875 =item BUGS
10876
10877 =item AUTHOR
10878
10879 =item VERSION
10880
10881 =item SEE ALSO
10882
10883 =back
10884
10885 =head2 Devel::DProf - a Perl code profiler
10886
10887 =over 4
10888
10889 =item SYNOPSIS
10890
10891 =item DESCRIPTION
10892
10893 =item PROFILE FORMAT
10894
10895 =item AUTOLOAD
10896
10897 =item ENVIRONMENT
10898
10899 =item BUGS
10900
10901 =item SEE ALSO
10902
10903 =back
10904
10905 =head2 Devel::PPPort, Perl/Pollution/Portability
10906
10907 =over 4
10908
10909 =item SYNOPSIS
10910
10911 =item DESCRIPTION
10912
10913 =over 4
10914
10915 =item WriteFile
10916
10917 =back
10918
10919 =item ppport.h
10920
10921 =item AUTHOR
10922
10923 =item SEE ALSO
10924
10925 =back
10926
10927 =head2 Devel::Peek - A data debugging tool for the XS programmer
10928
10929 =over 4
10930
10931 =item SYNOPSIS
10932
10933 =item DESCRIPTION
10934
10935 =over 4
10936
10937 =item Runtime debugging
10938
10939 =item Memory footprint debugging
10940
10941 =back
10942
10943 =item EXAMPLES
10944
10945 =over 4
10946
10947 =item A simple scalar string
10948
10949 =item A simple scalar number
10950
10951 =item A simple scalar with an extra reference
10952
10953 =item A reference to a simple scalar
10954
10955 =item A reference to an array
10956
10957 =item A reference to a hash
10958
10959 =item Dumping a large array or hash
10960
10961 =item A reference to an SV which holds a C pointer
10962
10963 =item A reference to a subroutine
10964
10965 =back
10966
10967 =item EXPORTS
10968
10969 =item BUGS
10970
10971 =item AUTHOR
10972
10973 =item SEE ALSO
10974
10975 =back
10976
10977 =head2 Devel::SelfStubber - generate stubs for a SelfLoading module
10978
10979 =over 4
10980
10981 =item SYNOPSIS
10982
10983 =item DESCRIPTION
10984
10985 =back
10986
10987 =head2 Digest:: - Modules that calculate message digests
10988
10989 =over 4
10990
10991 =item SYNOPSIS
10992
10993 =item DESCRIPTION
10994
10995 I<binary>, I<hex>, I<base64>
10996
10997 =item OO INTERFACE
10998
10999 $ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
11000 Digest::XXX->new($arg,...), $ctx->reset, $ctx->add($data,...),
11001 $ctx->addfile($io_handle), $ctx->digest, $ctx->hexdigest, $ctx->b64digest
11002
11003 =item SEE ALSO
11004
11005 =item AUTHOR
11006
11007 =back
11008
11009 =head2 Digest::MD5 - Perl interface to the MD5 Algorithm
11010
11011 =over 4
11012
11013 =item SYNOPSIS
11014
11015 =item DESCRIPTION
11016
11017 =item FUNCTIONS
11018
11019 md5($data,...), md5_hex($data,...), md5_base64($data,...)
11020
11021 =item METHODS
11022
11023 $md5 = Digest::MD5->new, $md5->reset, $md5->add($data,...),
11024 $md5->addfile($io_handle), $md5->digest, $md5->hexdigest, $md5->b64digest
11025
11026 =item EXAMPLES
11027
11028 =item SEE ALSO
11029
11030 =item COPYRIGHT
11031
11032 =item AUTHORS
11033
11034 =back
11035
11036 =head2 DirHandle - supply object methods for directory handles
11037
11038 =over 4
11039
11040 =item SYNOPSIS
11041
11042 =item DESCRIPTION
11043
11044 =item NOTES
11045
11046 =back
11047
11048 =head2 Dumpvalue - provides screen dump of Perl data.
11049
11050 =over 4
11051
11052 =item SYNOPSIS
11053
11054 =item DESCRIPTION
11055
11056 =over 4
11057
11058 =item Creation
11059
11060 C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
11061 C<dumpDBFiles>, C<dumpPackages>, C<dumpReused>, C<tick>, C<quoteHighBit>,
11062 C<printUndef>, C<usageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
11063 stopDbSignal
11064
11065 =item Methods
11066
11067 dumpValue, dumpValues, dumpvars, set_quote, set_unctrl, compactDump,
11068 veryCompact, set, get
11069
11070 =back
11071
11072 =back
11073
11074 =head2 DynaLoader - Dynamically load C libraries into Perl code
11075
11076 =over 4
11077
11078 =item SYNOPSIS
11079
11080 =item DESCRIPTION
11081
11082 @dl_library_path, @dl_resolve_using, @dl_require_symbols, @dl_librefs,
11083 @dl_modules, dl_error(), $dl_debug, dl_findfile(), dl_expandspec(),
11084 dl_load_file(), dl_unload_file(), dl_loadflags(), dl_find_symbol(),
11085 dl_find_symbol_anywhere(), dl_undef_symbols(), dl_install_xsub(),
11086 bootstrap()
11087
11088 =item AUTHOR
11089
11090 =back
11091
11092 =head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
11093 Perl code
11094
11095 =over 4
11096
11097 =item SYNOPSIS
11098
11099 =item DESCRIPTION
11100
11101 =item AUTHOR
11102
11103 =back
11104
11105 =head2 Encode - character encodings
11106
11107 =over 4
11108
11109 =item SYNOPSIS
11110
11111 =item DESCRIPTION
11112
11113 =over 4
11114
11115 =item TERMINOLOGY
11116
11117 =back
11118
11119 =item ENCODINGS
11120
11121 =over 4
11122
11123 =item Characteristics of an Encoding
11124
11125 =item Types of Encodings
11126
11127 Fixed length 8-bit (or less) encodings, Fixed length 16-bit encodings,
11128 Fixed length 32-bit encodings, Multi-byte encodings, "Escape" encodings
11129
11130 =item Specifying Encodings
11131
11132 1. By name, 2. As an object
11133
11134 =item Encoding Names
11135
11136 The MIME name as defined in IETF RFCs, The name in the IANA registry, The
11137 name used by the organization that defined it
11138
11139 =back
11140
11141 =item PERL ENCODING API
11142
11143 =over 4
11144
11145 =item Generic Encoding Interface
11146
11147 =item Handling Malformed Data
11148
11149 Scheme 1, Scheme 2, Other Schemes
11150
11151 =item UTF-8 / utf8
11152
11153 =item Other Encodings of Unicode
11154
11155 =item Listing available encodings
11156
11157 =item Defining Aliases
11158
11159 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
11160 reference, e.g.:
11161
11162 =item Defining Encodings
11163
11164 =back
11165
11166 =item Encoding and IO
11167
11168 =item Encoding How to ...
11169
11170 IO with mixed content (faking iso-2020-*), MIME's Content-Length:, UTF-8
11171 strings in binary data, Perl/Encode wrappers on non-Unicode XS modules
11172
11173 =item Messing with Perl's Internals
11174
11175 is_utf8(STRING [, CHECK]), valid_utf8(STRING)
11176
11177 =item IMPLEMENTATION CLASSES
11178
11179 -E<gt>name, -E<gt>new_sequence, -E<gt>encode($string,$check),
11180 -E<gt>decode($octets,$check)
11181
11182 =over 4
11183
11184 =item Compiled Encodings
11185
11186 .enc, .ucm, .ucm, .c, .xs, ascii and iso-8859-*, IBM-1047 and two other
11187 variants of EBCDIC, symbol and dingbats as used by Tk on X11
11188
11189 =back
11190
11191 =item SEE ALSO
11192
11193 =back
11194
11195 =head2 Encode::Tcl - Tcl encodings
11196
11197 =over 4
11198
11199 =item SYNOPSIS
11200
11201 =item DESCRIPTION
11202
11203 =item SEE ALSO
11204
11205 =back
11206
11207 =head2 Encode::Tcl::Escape - Tcl Escape encodings
11208
11209 =over 4
11210
11211 =item SYNOPSIS
11212
11213 =item DESCRIPTION
11214
11215 =item SEE ALSO
11216
11217 =back
11218
11219 =head2 Encode::Tcl::Extended - Tcl EUC encodings
11220
11221 =over 4
11222
11223 =item SYNOPSIS
11224
11225 =item DESCRIPTION
11226
11227 =item SEE ALSO
11228
11229 =back
11230
11231 =head2 Encode::Tcl::Table - Tcl Table encodings
11232
11233 =over 4
11234
11235 =item SYNOPSIS
11236
11237 =item DESCRIPTION
11238
11239 =item SEE ALSO
11240
11241 =back
11242
11243 =head2 Encode::lib::Encode::Tcl, Encode::Tcl - Tcl encodings
11244
11245 =over 4
11246
11247 =item SYNOPSIS
11248
11249 =item DESCRIPTION
11250
11251 =item SEE ALSO
11252
11253 =back
11254
11255 =head2 Encode::lib::Encode::Tcl::Escape, Encode::Tcl::Escape - Tcl Escape
11256 encodings
11257
11258 =over 4
11259
11260 =item SYNOPSIS
11261
11262 =item DESCRIPTION
11263
11264 =item SEE ALSO
11265
11266 =back
11267
11268 =head2 Encode::lib::Encode::Tcl::Extended, Encode::Tcl::Extended - Tcl EUC
11269 encodings
11270
11271 =over 4
11272
11273 =item SYNOPSIS
11274
11275 =item DESCRIPTION
11276
11277 =item SEE ALSO
11278
11279 =back
11280
11281 =head2 Encode::lib::Encode::Tcl::Table, Encode::Tcl::Table - Tcl Table
11282 encodings
11283
11284 =over 4
11285
11286 =item SYNOPSIS
11287
11288 =item DESCRIPTION
11289
11290 =item SEE ALSO
11291
11292 =back
11293
11294 =head2 Encode::lib::EncodeFormat, EncodeFormat - the format of encoding
11295 tables of the Encode extension
11296
11297 =over 4
11298
11299 =item DESCRIPTION
11300
11301 [1]   B<S>, [2]   B<D>, [3]   B<M>, [4]   B<E>
11302
11303 =item KEYWORDS
11304
11305 =item COPYRIGHT
11306
11307 =back
11308
11309 =head2 EncodeFormat - the format of encoding tables of the Encode extension
11310
11311 =over 4
11312
11313 =item DESCRIPTION
11314
11315 [1]   B<S>, [2]   B<D>, [3]   B<M>, [4]   B<E>
11316
11317 =item KEYWORDS
11318
11319 =item COPYRIGHT
11320
11321 =back
11322
11323 =head2 English - use nice English (or awk) names for ugly punctuation
11324 variables
11325
11326 =over 4
11327
11328 =item SYNOPSIS
11329
11330 =item DESCRIPTION
11331
11332 =item PERFORMANCE
11333
11334 =back
11335
11336 =head2 Env - perl module that imports environment variables as scalars or
11337 arrays
11338
11339 =over 4
11340
11341 =item SYNOPSIS
11342
11343 =item DESCRIPTION
11344
11345 =item LIMITATIONS
11346
11347 =item AUTHOR
11348
11349 =back
11350
11351 =head2 Errno - System errno constants
11352
11353 =over 4
11354
11355 =item SYNOPSIS
11356
11357 =item DESCRIPTION
11358
11359 =item CAVEATS
11360
11361 =item AUTHOR
11362
11363 =item COPYRIGHT
11364
11365 =back
11366
11367 =head2 Exporter - Implements default import method for modules
11368
11369 =over 4
11370
11371 =item SYNOPSIS
11372
11373 =item DESCRIPTION
11374
11375 =over 4
11376
11377 =item How to Export
11378
11379 =item Selecting What To Export
11380
11381 =item How to Import
11382
11383 C<use ModuleName;>, C<use ModuleName ();>, C<use ModuleName qw(...);>
11384
11385 =back
11386
11387 =item Advanced features
11388
11389 =over 4
11390
11391 =item Specialised Import Lists
11392
11393 =item Exporting without using Exporter's import method
11394
11395 =item Module Version Checking
11396
11397 =item Managing Unknown Symbols
11398
11399 =item Tag Handling Utility Functions
11400
11401 =item Generating combined tags
11402
11403 =item C<AUTOLOAD>ed Constants
11404
11405 =back
11406
11407 =back
11408
11409 =head2 Exporter::Heavy - Exporter guts
11410
11411 =over 4
11412
11413 =item SYNOPSIS
11414
11415 =item DESCRIPTION
11416
11417 =back
11418
11419 =head2 ExtUtils::Command - utilities to replace common UNIX commands in
11420 Makefiles etc.
11421
11422 =over 4
11423
11424 =item SYNOPSIS
11425
11426 =item DESCRIPTION
11427
11428 =back
11429
11430 cat
11431
11432 eqtime src dst
11433
11434 rm_rf files...
11435
11436 rm_f files...
11437
11438 touch files ..
11439
11440 mv source... destination
11441
11442 cp source... destination
11443
11444 chmod mode files..
11445
11446 mkpath directory..
11447
11448 test_f file
11449
11450 =over 4
11451
11452 =item BUGS
11453
11454 =item SEE ALSO 
11455
11456 =item AUTHOR
11457
11458 =back
11459
11460 =head2 ExtUtils::Constant - generate XS code to import C header constants
11461
11462 =over 4
11463
11464 =item SYNOPSIS
11465
11466 =item DESCRIPTION
11467
11468 =item USAGE
11469
11470 IV, UV, NV, PV, PVN, SV, YES, NO, UNDEF
11471
11472 =item FUNCTIONS
11473
11474 =back
11475
11476 C_stringify NAME
11477
11478 constant_types
11479
11480 memEQ_clause NAME, CHECKED_AT, INDENT
11481
11482 assign INDENT, TYPE, PRE, POST, VALUE..
11483
11484 return_clause
11485
11486 switch_clause INDENT, NAMELEN, ITEMHASH, ITEM..
11487
11488 params WHAT
11489
11490 dump_names
11491
11492 dogfood
11493
11494 C_constant, name, type, value, macro, default, pre, post, def_pre =item
11495 def_post
11496
11497 XS_constant PACKAGE, TYPES, SUBNAME, C_SUBNAME
11498
11499 autoload PACKAGE, VERSION, AUTOLOADER
11500
11501 WriteMakefileSnippet
11502
11503 WriteConstants ATTRIBUTE =E<gt> VALUE [, ...], NAME, DEFAULT_TYPE,
11504 BREAKOUT_AT, NAMES, C_FILE, XS_FILE, SUBNAME, C_SUBNAME
11505
11506 =over 4
11507
11508 =item AUTHOR
11509
11510 =back
11511
11512 =head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
11513
11514 =over 4
11515
11516 =item SYNOPSIS
11517
11518 =item DESCRIPTION
11519
11520 =item @EXPORT
11521
11522 =item FUNCTIONS
11523
11524 xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
11525 ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
11526
11527 =item EXAMPLES
11528
11529 =item SEE ALSO
11530
11531 =item AUTHOR
11532
11533 =back
11534
11535 =head2 ExtUtils::Install - install files from here to there
11536
11537 =over 4
11538
11539 =item SYNOPSIS
11540
11541 =item DESCRIPTION
11542
11543 =back
11544
11545 =head2 ExtUtils::Installed - Inventory management of installed modules
11546
11547 =over 4
11548
11549 =item SYNOPSIS
11550
11551 =item DESCRIPTION
11552
11553 =item USAGE
11554
11555 =item FUNCTIONS
11556
11557 new(), modules(), files(), directories(), directory_tree(), validate(),
11558 packlist(), version()
11559
11560 =item EXAMPLE
11561
11562 =item AUTHOR
11563
11564 =back
11565
11566 =head2 ExtUtils::Liblist - determine libraries to use and how to use them
11567
11568 =over 4
11569
11570 =item SYNOPSIS
11571
11572 =item DESCRIPTION
11573
11574 For static extensions, For dynamic extensions, For dynamic extensions
11575
11576 =over 4
11577
11578 =item EXTRALIBS
11579
11580 =item LDLOADLIBS and LD_RUN_PATH
11581
11582 =item BSLOADLIBS
11583
11584 =back
11585
11586 =item PORTABILITY
11587
11588 =over 4
11589
11590 =item VMS implementation
11591
11592 =item Win32 implementation
11593
11594 =back
11595
11596 =item SEE ALSO
11597
11598 =back
11599
11600 =head2 ExtUtils::MM_BeOS - methods to override UN*X behaviour in
11601 ExtUtils::MakeMaker
11602
11603 =over 4
11604
11605 =item SYNOPSIS
11606
11607 =item DESCRIPTION
11608
11609 =back
11610
11611 perl_archive
11612
11613 =head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
11614 ExtUtils::MakeMaker
11615
11616 =over 4
11617
11618 =item SYNOPSIS
11619
11620 =item DESCRIPTION
11621
11622 canonpath, cflags, manifypods, perl_archive
11623
11624 =back
11625
11626 =head2 ExtUtils::MM_NW5 - methods to override UN*X behaviour in
11627 ExtUtils::MakeMaker
11628
11629 =over 4
11630
11631 =item SYNOPSIS
11632
11633 =item DESCRIPTION
11634
11635 =back
11636
11637 catfile
11638
11639 constants (o)
11640
11641 static_lib (o)
11642
11643 dynamic_bs (o)
11644
11645 dynamic_lib (o)
11646
11647 canonpath
11648
11649 perl_script
11650
11651 pm_to_blib
11652
11653 test_via_harness (o)
11654
11655 tool_autosplit (override)
11656
11657 tools_other (o)
11658
11659 xs_o (o)
11660
11661 top_targets (o)
11662
11663 htmlifypods (o)
11664
11665 manifypods (o)
11666
11667 dist_ci (o)
11668
11669 dist_core (o)
11670
11671 pasthru (o)
11672
11673 =head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
11674 ExtUtils::MakeMaker
11675
11676 =over 4
11677
11678 =item SYNOPSIS
11679
11680 =item DESCRIPTION
11681
11682 =item METHODS
11683
11684 =back
11685
11686 perl_archive_after
11687
11688 =head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
11689
11690 =over 4
11691
11692 =item SYNOPSIS
11693
11694 =item DESCRIPTION
11695
11696 =item METHODS
11697
11698 =over 4
11699
11700 =item Preloaded methods
11701
11702 canonpath
11703
11704 =back
11705
11706 =back
11707
11708 catdir
11709
11710 catfile
11711
11712 curdir
11713
11714 rootdir
11715
11716 updir
11717
11718 =over 4
11719
11720 =item SelfLoaded methods
11721
11722 c_o (o)
11723
11724 =back
11725
11726 cflags (o)
11727
11728 clean (o)
11729
11730 const_cccmd (o)
11731
11732 const_config (o)
11733
11734 const_loadlibs (o)
11735
11736 constants (o)
11737
11738 depend (o)
11739
11740 dir_target (o)
11741
11742 dist (o)
11743
11744 dist_basics (o)
11745
11746 dist_ci (o)
11747
11748 dist_core (o)
11749
11750 dist_dir (o)
11751
11752 dist_test (o)
11753
11754 dlsyms (o)
11755
11756 dynamic (o)
11757
11758 dynamic_bs (o)
11759
11760 dynamic_lib (o)
11761
11762 exescan
11763
11764 extliblist
11765
11766 file_name_is_absolute
11767
11768 find_perl
11769
11770 =over 4
11771
11772 =item Methods to actually produce chunks of text for the Makefile
11773
11774 fixin
11775
11776 =back
11777
11778 force (o)
11779
11780 guess_name
11781
11782 has_link_code
11783
11784 htmlifypods (o)
11785
11786 init_dirscan
11787
11788 init_main
11789
11790 init_others
11791
11792 install (o)
11793
11794 installbin (o)
11795
11796 libscan (o)
11797
11798 linkext (o)
11799
11800 lsdir
11801
11802 macro (o)
11803
11804 makeaperl (o)
11805
11806 makefile (o)
11807
11808 manifypods (o)
11809
11810 maybe_command
11811
11812 maybe_command_in_dirs
11813
11814 needs_linking (o)
11815
11816 nicetext
11817
11818 parse_version
11819
11820 parse_abstract
11821
11822 pasthru (o)
11823
11824 path
11825
11826 perl_script
11827
11828 perldepend (o)
11829
11830 ppd
11831
11832 perm_rw (o)
11833
11834 perm_rwx (o)
11835
11836 pm_to_blib
11837
11838 post_constants (o)
11839
11840 post_initialize (o)
11841
11842 postamble (o)
11843
11844 prefixify
11845
11846 processPL (o)
11847
11848 quote_paren
11849
11850 realclean (o)
11851
11852 replace_manpage_separator
11853
11854 static (o)
11855
11856 static_lib (o)
11857
11858 staticmake (o)
11859
11860 subdir_x (o)
11861
11862 subdirs (o)
11863
11864 test (o)
11865
11866 test_via_harness (o)
11867
11868 test_via_script (o)
11869
11870 tool_autosplit (o)
11871
11872 tools_other (o)
11873
11874 tool_xsubpp (o)
11875
11876 top_targets (o)
11877
11878 writedoc
11879
11880 xs_c (o)
11881
11882 xs_cpp (o)
11883
11884 xs_o (o)
11885
11886 perl_archive
11887
11888 perl_archive_after
11889
11890 export_list
11891
11892 =over 4
11893
11894 =item SEE ALSO
11895
11896 =back
11897
11898 =head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
11899 ExtUtils::MakeMaker
11900
11901 =over 4
11902
11903 =item SYNOPSIS
11904
11905 =item DESCRIPTION
11906
11907 =over 4
11908
11909 =item Methods always loaded
11910
11911 wraplist
11912
11913 =back
11914
11915 =back
11916
11917 rootdir (override)
11918
11919 =over 4
11920
11921 =item SelfLoaded methods
11922
11923 guess_name (override)
11924
11925 =back
11926
11927 find_perl (override)
11928
11929 path (override)
11930
11931 maybe_command (override)
11932
11933 maybe_command_in_dirs (override)
11934
11935 perl_script (override)
11936
11937 file_name_is_absolute (override)
11938
11939 replace_manpage_separator
11940
11941 init_others (override)
11942
11943 constants (override)
11944
11945 cflags (override)
11946
11947 const_cccmd (override)
11948
11949 pm_to_blib (override)
11950
11951 tool_autosplit (override)
11952
11953 tool_sxubpp (override)
11954
11955 xsubpp_version (override)
11956
11957 tools_other (override)
11958
11959 dist (override)
11960
11961 c_o (override)
11962
11963 xs_c (override)
11964
11965 xs_o (override)
11966
11967 top_targets (override)
11968
11969 dlsyms (override)
11970
11971 dynamic_lib (override)
11972
11973 dynamic_bs (override)
11974
11975 static_lib (override)
11976
11977 manifypods (override)
11978
11979 processPL (override)
11980
11981 installbin (override)
11982
11983 subdir_x (override)
11984
11985 clean (override)
11986
11987 realclean (override)
11988
11989 dist_basics (override)
11990
11991 dist_core (override)
11992
11993 dist_dir (override)
11994
11995 dist_test (override)
11996
11997 install (override)
11998
11999 perldepend (override)
12000
12001 makefile (override)
12002
12003 test (override)
12004
12005 test_via_harness (override)
12006
12007 test_via_script (override)
12008
12009 makeaperl (override)
12010
12011 nicetext (override)
12012
12013 =head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
12014 ExtUtils::MakeMaker
12015
12016 =over 4
12017
12018 =item SYNOPSIS
12019
12020 =item DESCRIPTION
12021
12022 =back
12023
12024 catfile
12025
12026 constants (o)
12027
12028 static_lib (o)
12029
12030 dynamic_bs (o)
12031
12032 dynamic_lib (o)
12033
12034 canonpath
12035
12036 perl_script
12037
12038 pm_to_blib
12039
12040 test_via_harness (o)
12041
12042 tool_autosplit (override)
12043
12044 tools_other (o)
12045
12046 xs_o (o)
12047
12048 top_targets (o)
12049
12050 htmlifypods (o)
12051
12052 manifypods (o)
12053
12054 dist_ci (o)
12055
12056 dist_core (o)
12057
12058 pasthru (o)
12059
12060 =head2 ExtUtils::MakeMaker - create an extension Makefile
12061
12062 =over 4
12063
12064 =item SYNOPSIS
12065
12066 =item DESCRIPTION
12067
12068 =over 4
12069
12070 =item How To Write A Makefile.PL
12071
12072 =item Default Makefile Behaviour
12073
12074 =item make test
12075
12076 =item make testdb
12077
12078 =item make install
12079
12080 =item PREFIX and LIB attribute
12081
12082 =item AFS users
12083
12084 =item Static Linking of a new Perl Binary
12085
12086 =item Determination of Perl Library and Installation Locations
12087
12088 =item Which architecture dependent directory?
12089
12090 =item Using Attributes and Parameters
12091
12092 ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CCFLAGS, CONFIG,
12093 CONFIGURE, DEFINE, DIR, DISTNAME, DL_FUNCS, DL_VARS, EXCLUDE_EXT,
12094 EXE_FILES, FIRST_MAKEFILE, FULLPERL, FUNCLIST, H, HTMLLIBPODS,
12095 HTMLSCRIPTPODS, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB, INSTALLBIN,
12096 INSTALLDIRS, INSTALLHTMLPRIVLIBDIR, INSTALLHTMLSCRIPTDIR,
12097 INSTALLHTMLSITELIBDIR, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB,
12098 INSTALLSCRIPT, INSTALLSITEARCH, INSTALLSITELIB, INST_ARCHLIB, INST_BIN,
12099 INST_EXE, INST_HTMLLIBDIR, INST_HTMLSCRIPTDIR, INST_LIB, INST_MAN1DIR,
12100 INST_MAN3DIR, INST_SCRIPT, LDFROM, LIB, LIBPERL_A, LIBS, LINKTYPE,
12101 MAKEAPERL, MAKEFILE, MAN1PODS, MAN3PODS, MAP_TARGET, MYEXTLIB, NAME,
12102 NEEDS_LINKING, NOECHO, NORECURS, NO_VC, OBJECT, OPTIMIZE, PERL, PERL_CORE,
12103 PERLMAINCC, PERL_ARCHLIB, PERL_LIB, PERL_MALLOC_OK, PERLRUN, PERM_RW,
12104 PERM_RWX, PL_FILES, PM, PMLIBDIRS, PM_FILTER, POLLUTE, PPM_INSTALL_EXEC,
12105 PPM_INSTALL_SCRIPT, PREFIX, PREREQ_PM, PREREQ_FATAL, PREREQ_PRINT,
12106 PRINT_PREREQ, SKIP, TEST_LIBS, VERSION, VERSION_FROM, XS, XSOPT,
12107 XSPROTOARG, XS_VERSION
12108
12109 =item Additional lowercase attributes
12110
12111 clean, depend, dist, dynamic_lib, linkext, macro, realclean, test,
12112 tool_autosplit
12113
12114 =item Overriding MakeMaker Methods
12115
12116 =item Hintsfile support
12117
12118 =item Distribution Support
12119
12120    make distcheck,    make skipcheck,    make distclean,    make manifest, 
12121   make distdir,    make tardist,    make dist,    make uutardist,    make
12122 shdist,    make zipdist,    make ci
12123
12124 =item Disabling an extension
12125
12126 =back
12127
12128 =item ENVIRONMENT
12129
12130 PERL_MM_OPT, PERL_MM_USE_DEFAULT
12131
12132 =item SEE ALSO
12133
12134 =item AUTHORS
12135
12136 =back
12137
12138 =head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
12139
12140 =over 4
12141
12142 =item SYNOPSIS
12143
12144 =item DESCRIPTION
12145
12146 =item MANIFEST.SKIP
12147
12148 =item EXPORT_OK
12149
12150 =item GLOBAL VARIABLES
12151
12152 =item DIAGNOSTICS
12153
12154 C<Not in MANIFEST:> I<file>, C<No such file:> I<file>, C<MANIFEST:> I<$!>,
12155 C<Added to MANIFEST:> I<file>
12156
12157 =item ENVIRONMENT
12158
12159 B<PERL_MM_MANIFEST_DEBUG>
12160
12161 =item SEE ALSO
12162
12163 =item AUTHOR
12164
12165 =back
12166
12167 =head2 ExtUtils::Miniperl, writemain - write the C code for perlmain.c
12168
12169 =over 4
12170
12171 =item SYNOPSIS
12172
12173 =item DESCRIPTION
12174
12175 =item SEE ALSO
12176
12177 =back
12178
12179 =head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
12180
12181 =over 4
12182
12183 =item SYNOPSIS
12184
12185 =item DESCRIPTION
12186
12187 =back
12188
12189 =head2 ExtUtils::Mksymlists - write linker options files for dynamic
12190 extension
12191
12192 =over 4
12193
12194 =item SYNOPSIS
12195
12196 =item DESCRIPTION
12197
12198 DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
12199
12200 =item AUTHOR
12201
12202 =item REVISION
12203
12204 =back
12205
12206 =head2 ExtUtils::Packlist - manage .packlist files
12207
12208 =over 4
12209
12210 =item SYNOPSIS
12211
12212 =item DESCRIPTION
12213
12214 =item USAGE
12215
12216 =item FUNCTIONS
12217
12218 new(), read(), write(), validate(), packlist_file()
12219
12220 =item EXAMPLE
12221
12222 =item AUTHOR
12223
12224 =back
12225
12226 =head2 ExtUtils::testlib - add blib/* directories to @INC
12227
12228 =over 4
12229
12230 =item SYNOPSIS
12231
12232 =item DESCRIPTION
12233
12234 =back
12235
12236 =head2 Fatal - replace functions with equivalents which succeed or die
12237
12238 =over 4
12239
12240 =item SYNOPSIS
12241
12242 =item DESCRIPTION
12243
12244 =item AUTHOR
12245
12246 =back
12247
12248 =head2 Fcntl - load the C Fcntl.h defines
12249
12250 =over 4
12251
12252 =item SYNOPSIS
12253
12254 =item DESCRIPTION
12255
12256 =item NOTE
12257
12258 =item EXPORTED SYMBOLS
12259
12260 =back
12261
12262 =head2 File::Basename, fileparse - split a pathname into pieces
12263
12264 =over 4
12265
12266 =item SYNOPSIS
12267
12268 =item DESCRIPTION
12269
12270 fileparse_set_fstype, fileparse
12271
12272 =item EXAMPLES
12273
12274 C<basename>, C<dirname>
12275
12276 =back
12277
12278 =head2 File::CheckTree, validate - run many filetest checks on a tree
12279
12280 =over 4
12281
12282 =item SYNOPSIS
12283
12284 =item DESCRIPTION
12285
12286 =back
12287
12288 =head2 File::Compare - Compare files or filehandles
12289
12290 =over 4
12291
12292 =item SYNOPSIS
12293
12294 =item DESCRIPTION
12295
12296 =item RETURN
12297
12298 =item AUTHOR
12299
12300 =back
12301
12302 =head2 File::Copy - Copy files or filehandles
12303
12304 =over 4
12305
12306 =item SYNOPSIS
12307
12308 =item DESCRIPTION
12309
12310 =over 4
12311
12312 =item Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
12313
12314 rmscopy($from,$to[,$date_flag])
12315
12316 =back
12317
12318 =item RETURN
12319
12320 =item NOTES
12321
12322 =item AUTHOR
12323
12324 =back
12325
12326 =head2 File::DosGlob - DOS like globbing and then some
12327
12328 =over 4
12329
12330 =item SYNOPSIS
12331
12332 =item DESCRIPTION
12333
12334 =item NOTES
12335
12336 =item EXPORTS (by request only)
12337
12338 =item BUGS
12339
12340 =item AUTHOR
12341
12342 =item HISTORY
12343
12344 =item SEE ALSO
12345
12346 =back
12347
12348 =head2 File::Find - Traverse a directory tree.
12349
12350 =over 4
12351
12352 =item SYNOPSIS
12353
12354 =item DESCRIPTION
12355
12356 B<find>, B<finddepth>
12357
12358 =over 4
12359
12360 =item %options
12361
12362 C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
12363 C<follow_fast>, C<follow_skip>, C<dangling_symlinks>, C<no_chdir>,
12364 C<untaint>, C<untaint_pattern>, C<untaint_skip>
12365
12366 =item The wanted function
12367
12368 C<$File::Find::dir> is the current directory name,, C<$_> is the current
12369 filename within that directory, C<$File::Find::name> is the complete
12370 pathname to the file
12371
12372 =back
12373
12374 =item WARNINGS
12375
12376 =item CAVEAT
12377
12378 $dont_use_nlink, symlinks
12379
12380 =item NOTES
12381
12382 =item HISTORY
12383
12384 =back
12385
12386 =head2 File::Glob - Perl extension for BSD glob routine
12387
12388 =over 4
12389
12390 =item SYNOPSIS
12391
12392 =item DESCRIPTION
12393
12394 C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
12395 C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
12396 C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
12397
12398 =item DIAGNOSTICS
12399
12400 C<GLOB_NOSPACE>, C<GLOB_ABEND>
12401
12402 =item NOTES
12403
12404 =item AUTHOR
12405
12406 =back
12407
12408 =head2 File::Path - create or remove directory trees
12409
12410 =over 4
12411
12412 =item SYNOPSIS
12413
12414 =item DESCRIPTION
12415
12416 =item AUTHORS
12417
12418 =back
12419
12420 =head2 File::Spec - portably perform operations on file names
12421
12422 =over 4
12423
12424 =item SYNOPSIS
12425
12426 =item DESCRIPTION
12427
12428 =item METHODS
12429
12430 canonpath, catdir, catfile, curdir, devnull, rootdir, tmpdir, updir,
12431 no_upwards, case_tolerant, file_name_is_absolute, path, join, splitpath,
12432 splitdir, catpath(), abs2rel, rel2abs()
12433
12434 =item SEE ALSO
12435
12436 =item AUTHORS
12437
12438 =back
12439
12440 =head2 File::Spec::Cygwin - methods for Cygwin file specs
12441
12442 =over 4
12443
12444 =item SYNOPSIS
12445
12446 =item DESCRIPTION
12447
12448 =back
12449
12450 =head2 File::Spec::Epoc - methods for Epoc file specs
12451
12452 =over 4
12453
12454 =item SYNOPSIS
12455
12456 =item DESCRIPTION
12457
12458 devnull
12459
12460 =back
12461
12462 tmpdir
12463
12464 path
12465
12466 canonpath()
12467
12468 splitpath
12469
12470 splitdir
12471
12472 catpath
12473
12474 abs2rel
12475
12476 rel2abs()
12477
12478 =over 4
12479
12480 =item SEE ALSO
12481
12482 =back
12483
12484 =head2 File::Spec::Functions - portably perform operations on file names
12485
12486 =over 4
12487
12488 =item SYNOPSIS
12489
12490 =item DESCRIPTION
12491
12492 =over 4
12493
12494 =item Exports
12495
12496 =back
12497
12498 =item SEE ALSO
12499
12500 =back
12501
12502 =head2 File::Spec::Mac - File::Spec for Mac OS (Classic)
12503
12504 =over 4
12505
12506 =item SYNOPSIS
12507
12508 =item DESCRIPTION
12509
12510 =item METHODS
12511
12512 canonpath
12513
12514 =back
12515
12516 catdir()
12517
12518 catfile
12519
12520 curdir
12521
12522 devnull
12523
12524 rootdir
12525
12526 tmpdir
12527
12528 updir
12529
12530 file_name_is_absolute
12531
12532 path
12533
12534 splitpath
12535
12536 splitdir
12537
12538 catpath
12539
12540 abs2rel
12541
12542 rel2abs
12543
12544 =over 4
12545
12546 =item AUTHORS
12547
12548 =item SEE ALSO
12549
12550 =back
12551
12552 canonpath
12553
12554 splitpath
12555
12556 splitdir
12557
12558 catpath
12559
12560 =head2 File::Spec::OS2 - methods for OS/2 file specs
12561
12562 =over 4
12563
12564 =item SYNOPSIS
12565
12566 =item DESCRIPTION
12567
12568 =back
12569
12570 =head2 File::Spec::Unix - File::Spec for Unix, base for other File::Spec
12571 modules
12572
12573 =over 4
12574
12575 =item SYNOPSIS
12576
12577 =item DESCRIPTION
12578
12579 =item METHODS
12580
12581 canonpath()
12582
12583 =back
12584
12585 catdir()
12586
12587 catfile
12588
12589 curdir
12590
12591 devnull
12592
12593 rootdir
12594
12595 tmpdir
12596
12597 updir
12598
12599 no_upwards
12600
12601 case_tolerant
12602
12603 file_name_is_absolute
12604
12605 path
12606
12607 join
12608
12609 splitpath
12610
12611 splitdir
12612
12613 catpath()
12614
12615 abs2rel
12616
12617 rel2abs()
12618
12619 =over 4
12620
12621 =item SEE ALSO
12622
12623 =back
12624
12625 =head2 File::Spec::VMS - methods for VMS file specs
12626
12627 =over 4
12628
12629 =item SYNOPSIS
12630
12631 =item DESCRIPTION
12632
12633 eliminate_macros
12634
12635 =back
12636
12637 fixpath
12638
12639 =over 4
12640
12641 =item Methods always loaded
12642
12643 canonpath (override)
12644
12645 =back
12646
12647 catdir
12648
12649 catfile
12650
12651 curdir (override)
12652
12653 devnull (override)
12654
12655 rootdir (override)
12656
12657 tmpdir (override)
12658
12659 updir (override)
12660
12661 case_tolerant (override)
12662
12663 path (override)
12664
12665 file_name_is_absolute (override)
12666
12667 splitpath (override)
12668
12669 splitdir (override)
12670
12671 catpath (override)
12672
12673 abs2rel (override)
12674
12675 rel2abs (override)
12676
12677 =over 4
12678
12679 =item SEE ALSO
12680
12681 =back
12682
12683 =head2 File::Spec::Win32 - methods for Win32 file specs
12684
12685 =over 4
12686
12687 =item SYNOPSIS
12688
12689 =item DESCRIPTION
12690
12691 devnull
12692
12693 =back
12694
12695 tmpdir
12696
12697 catfile
12698
12699 canonpath
12700
12701 splitpath
12702
12703 splitdir
12704
12705 catpath
12706
12707 =over 4
12708
12709 =item SEE ALSO
12710
12711 =back
12712
12713 =head2 File::Temp - return name and handle of a temporary file safely
12714
12715 =over 4
12716
12717 =item PORTABILITY
12718
12719 =item SYNOPSIS
12720
12721 =item DESCRIPTION
12722
12723 =back
12724
12725 =over 4
12726
12727 =item FUNCTIONS
12728
12729 B<tempfile>
12730
12731 =back
12732
12733 B<tempdir>
12734
12735 =over 4
12736
12737 =item MKTEMP FUNCTIONS
12738
12739 B<mkstemp>
12740
12741 =back
12742
12743 B<mkstemps>
12744
12745 B<mkdtemp>
12746
12747 B<mktemp>
12748
12749 =over 4
12750
12751 =item POSIX FUNCTIONS
12752
12753 B<tmpnam>
12754
12755 =back
12756
12757 B<tmpfile>
12758
12759 =over 4
12760
12761 =item ADDITIONAL FUNCTIONS
12762
12763 B<tempnam>
12764
12765 =back
12766
12767 =over 4
12768
12769 =item UTILITY FUNCTIONS
12770
12771 B<unlink0>
12772
12773 =back
12774
12775 =over 4
12776
12777 =item PACKAGE VARIABLES
12778
12779 B<safe_level>, STANDARD, MEDIUM, HIGH
12780
12781 =back
12782
12783 TopSystemUID
12784
12785 =over 4
12786
12787 =item WARNING
12788
12789 =over 4
12790
12791 =item Temporary files and NFS
12792
12793 =back
12794
12795 =item HISTORY
12796
12797 =item SEE ALSO
12798
12799 =item AUTHOR
12800
12801 =back
12802
12803 =head2 File::stat - by-name interface to Perl's built-in stat() functions
12804
12805 =over 4
12806
12807 =item SYNOPSIS
12808
12809 =item DESCRIPTION
12810
12811 =item NOTE
12812
12813 =item AUTHOR
12814
12815 =back
12816
12817 =head2 FileCache - keep more files open than the system permits
12818
12819 =over 4
12820
12821 =item SYNOPSIS
12822
12823 =item DESCRIPTION
12824
12825 =item BUGS
12826
12827 =back
12828
12829 =head2 FileHandle - supply object methods for filehandles
12830
12831 =over 4
12832
12833 =item SYNOPSIS
12834
12835 =item DESCRIPTION
12836
12837 $fh->print, $fh->printf, $fh->getline, $fh->getlines
12838
12839 =item SEE ALSO
12840
12841 =back
12842
12843 =head2 Filter::Simple - Simplified source filtering
12844
12845 =over 4
12846
12847 =item SYNOPSIS
12848
12849 =item DESCRIPTION
12850
12851 =over 4
12852
12853 =item The Problem
12854
12855 =item A Solution
12856
12857 =item Disabling or changing <no> behaviour
12858
12859 =item All-in-one interface
12860
12861 =item Filtering only specific components of source code
12862
12863 C<"code">, C<"executable">, C<"quotelike">, C<"string">, C<"regex">,
12864 C<"all">
12865
12866 =item Filtering only the code parts of source code
12867
12868 Most source code ceases to be grammatically correct when it is broken up
12869 into the pieces between string literals and regexes. So the C<'code'>
12870 component filter behaves slightly differently from the other partial
12871 filters
12872 described in the previous section.
12873
12874 =item Using Filter::Simple with an explicit C<import> subroutine
12875
12876 =item Using Filter::Simple and Exporter together
12877
12878 =item How it works
12879
12880 =back
12881
12882 =item AUTHOR
12883
12884 =item COPYRIGHT
12885
12886 =back
12887
12888 =head2 Filter::Util::Call - Perl Source Filter Utility Module
12889
12890 =over 4
12891
12892 =item SYNOPSIS
12893
12894 =item DESCRIPTION
12895
12896 =over 4
12897
12898 =item B<use Filter::Util::Call>
12899
12900 =item B<import()>
12901
12902 =item B<filter() and anonymous sub>
12903
12904 B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
12905
12906 =back
12907
12908 =item EXAMPLES
12909
12910 =over 4
12911
12912 =item Example 1: A simple filter.
12913
12914 =item Example 2: Using the context
12915
12916 =item Example 3: Using the context within the filter
12917
12918 =item Example 4: Using filter_del
12919
12920 =back
12921
12922 =item Filter::Simple
12923
12924 =item AUTHOR
12925
12926 =item DATE
12927
12928 =back
12929
12930 =head2 FindBin - Locate directory of original perl script
12931
12932 =over 4
12933
12934 =item SYNOPSIS
12935
12936 =item DESCRIPTION
12937
12938 =item EXPORTABLE VARIABLES
12939
12940 =item KNOWN ISSUES
12941
12942 =item KNOWN BUGS
12943
12944 =item AUTHORS
12945
12946 =item COPYRIGHT
12947
12948 =back
12949
12950 =head2 GDBM_File - Perl5 access to the gdbm library.
12951
12952 =over 4
12953
12954 =item SYNOPSIS
12955
12956 =item DESCRIPTION
12957
12958 =item AVAILABILITY
12959
12960 =item BUGS
12961
12962 =item SEE ALSO
12963
12964 =back
12965
12966 =head2 Getopt::Long - Extended processing of command line options
12967
12968 =over 4
12969
12970 =item SYNOPSIS
12971
12972 =item DESCRIPTION
12973
12974 =item Command Line Options, an Introduction
12975
12976 =item Getting Started with Getopt::Long
12977
12978 =over 4
12979
12980 =item Simple options
12981
12982 =item A little bit less simple options
12983
12984 =item Mixing command line option with other arguments
12985
12986 =item Options with values
12987
12988 =item Options with multiple values
12989
12990 =item Options with hash values
12991
12992 =item User-defined subroutines to handle options
12993
12994 =item Options with multiple names
12995
12996 =item Case and abbreviations
12997
12998 =item Summary of Option Specifications
12999
13000 !, +, s, i, o, f, : I<type> [ I<desttype> ], : I<number> [ I<desttype> ], :
13001 + [ I<desttype> ]
13002
13003 =back
13004
13005 =item Advanced Possibilities
13006
13007 =over 4
13008
13009 =item Object oriented interface
13010
13011 =item Documentation and help texts
13012
13013 =item Storing options in a hash
13014
13015 =item Bundling
13016
13017 =item The lonesome dash
13018
13019 =item Argument callback
13020
13021 =back
13022
13023 =item Configuring Getopt::Long
13024
13025 default, posix_default, auto_abbrev, getopt_compat, gnu_compat, gnu_getopt,
13026 require_order, permute, bundling (default: disabled), bundling_override
13027 (default: disabled), ignore_case  (default: enabled), ignore_case_always
13028 (default: disabled), pass_through (default: disabled), prefix,
13029 prefix_pattern, debug (default: disabled)
13030
13031 =item Return values and Errors
13032
13033 =item Legacy
13034
13035 =over 4
13036
13037 =item Default destinations
13038
13039 =item Alternative option starters
13040
13041 =item Configuration variables
13042
13043 =back
13044
13045 =item Trouble Shooting
13046
13047 =over 4
13048
13049 =item Warning: Ignoring '!' modifier for short option
13050
13051 =item GetOptions does not return a false result when an option is not
13052 supplied
13053
13054 =item GetOptions does not split the command line correctly
13055
13056 =item How do I put a "-?" option into a Getopt::Long?
13057
13058 =back
13059
13060 =item AUTHOR
13061
13062 =item COPYRIGHT AND DISCLAIMER
13063
13064 =back
13065
13066 =head2 Getopt::Std, getopt - Process single-character switches with switch
13067 clustering
13068
13069 =over 4
13070
13071 =item SYNOPSIS
13072
13073 =item DESCRIPTION
13074
13075 =back
13076
13077 =head2 Hash::Util - A selection of general-utility hash subroutines
13078
13079 =over 4
13080
13081 =item SYNOPSIS
13082
13083 =item DESCRIPTION
13084
13085 =over 4
13086
13087 =item Restricted hashes
13088
13089 lock_keys, unlock_keys
13090
13091 =back
13092
13093 =back
13094
13095 lock_value, unlock_value
13096
13097 B<lock_hash>, B<unlock_hash>
13098
13099 =over 4
13100
13101 =item AUTHOR
13102
13103 =item SEE ALSO
13104
13105 =back
13106
13107 =head2 I18N::Collate - compare 8-bit scalar data according to the current
13108 locale
13109
13110 =over 4
13111
13112 =item SYNOPSIS
13113
13114 =item DESCRIPTION
13115
13116 =back
13117
13118 =head2 I18N::LangTags - functions for dealing with RFC3066-style language
13119 tags
13120
13121 =over 4
13122
13123 =item SYNOPSIS
13124
13125 =item DESCRIPTION
13126
13127 =back
13128
13129 the function is_language_tag($lang1)
13130
13131 the function extract_language_tags($whatever)
13132
13133 the function same_language_tag($lang1, $lang2)
13134
13135 the function similarity_language_tag($lang1, $lang2)
13136
13137 the function is_dialect_of($lang1, $lang2)
13138
13139 the function super_languages($lang1)
13140
13141 the function locale2language_tag($locale_identifier)
13142
13143 the function encode_language_tag($lang1)
13144
13145 the function alternate_language_tags($lang1)
13146
13147 the function @langs = panic_languages(@accept_languages)
13148
13149 =over 4
13150
13151 =item ABOUT LOWERCASING
13152
13153 =item ABOUT UNICODE PLAINTEXT LANGUAGE TAGS
13154
13155 =item SEE ALSO
13156
13157 =item COPYRIGHT
13158
13159 =item AUTHOR
13160
13161 =back
13162
13163 =head2 I18N::LangTags::List -- tags and names for human languages
13164
13165 =over 4
13166
13167 =item SYNOPSIS
13168
13169 =item DESCRIPTION
13170
13171 =item ABOUT LANGUAGE TAGS
13172
13173 =item LIST OF LANGUAGES
13174
13175 {ab} : Abkhazian, {ace} : Achinese, {ach} : Acoli, {ada} : Adangme, {aa} :
13176 Afar, {afh} : Afrihili, {af} : Afrikaans, [{afa} : Afro-Asiatic (Other)],
13177 {aka} : Akan, {akk} : Akkadian, {sq} : Albanian, {ale} : Aleut, [{alg} :
13178 Algonquian languages], [{tut} : Altaic (Other)], {am} : Amharic, {i-ami} :
13179 Ami, [{apa} : Apache languages], {ar} : Arabic, {arc} : Aramaic, {arp} :
13180 Arapaho, {arn} : Araucanian, {arw} : Arawak, {hy} : Armenian, [{art} :
13181 Artificial (Other)], {as} : Assamese, [{ath} : Athapascan languages],
13182 [{aus} : Australian languages], [{map} : Austronesian (Other)], {ava} :
13183 Avaric, {ae} : Avestan, {awa} : Awadhi, {ay} : Aymara, {az} : Azerbaijani,
13184 {ban} : Balinese, [{bat} : Baltic (Other)], {bal} : Baluchi, {bam} :
13185 Bambara, [{bai} : Bamileke languages], {bad} : Banda, [{bnt} : Bantu
13186 (Other)], {bas} : Basa, {ba} : Bashkir, {eu} : Basque, {btk} : Batak
13187 (Indonesia), {bej} : Beja, {be} : Belarusian, {bem} : Bemba, {bn} :
13188 Bengali, [{ber} : Berber (Other)], {bho} : Bhojpuri, {bh} : Bihari, {bik} :
13189 Bikol, {bin} : Bini, {bi} : Bislama, {bs} : Bosnian, {bra} : Braj, {br} :
13190 Breton, {bug} : Buginese, {bg} : Bulgarian, {i-bnn} : Bunun, {bua} :
13191 Buriat, {my} : Burmese, {cad} : Caddo, {car} : Carib, {ca} : Catalan,
13192 [{cau} : Caucasian (Other)], {ceb} : Cebuano, [{cel} : Celtic (Other)],
13193 [{cai} : Central American Indian (Other)], {chg} : Chagatai, [{cmc} :
13194 Chamic languages], {ch} : Chamorro, {ce} : Chechen, {chr} : Cherokee, {chy}
13195 : Cheyenne, {chb} : Chibcha, {ny} : Chichewa, {zh} : Chinese, {chn} :
13196 Chinook Jargon, {chp} : Chipewyan, {cho} : Choctaw, {cu} : Church Slavic,
13197 {chk} : Chuukese, {cv} : Chuvash, {cop} : Coptic, {kw} : Cornish, {co} :
13198 Corsican, {cre} : Cree, {mus} : Creek, [{cpe} : English-based Creoles and
13199 pidgins (Other)], [{cpf} : French-based Creoles and pidgins (Other)],
13200 [{cpp} : Portuguese-based Creoles and pidgins (Other)], [{crp} : Creoles
13201 and pidgins (Other)], {hr} : Croatian, [{cus} : Cushitic (Other)], {cs} :
13202 Czech, {dak} : Dakota, {da} : Danish, {day} : Dayak, {i-default} : Default
13203 (Fallthru) Language, {del} : Delaware, {din} : Dinka, {div} : Divehi, {doi}
13204 : Dogri, {dgr} : Dogrib, [{dra} : Dravidian (Other)], {dua} : Duala, {nl} :
13205 Dutch, {dum} : Middle Dutch (ca.1050-1350), {dyu} : Dyula, {dz} : Dzongkha,
13206 {efi} : Efik, {egy} : Ancient Egyptian, {eka} : Ekajuk, {elx} : Elamite,
13207 {en} : English, {enm} : Old English (1100-1500), {ang} : Old English
13208 (ca.450-1100), {eo} : Esperanto, {et} : Estonian, {ewe} : Ewe, {ewo} :
13209 Ewondo, {fan} : Fang, {fat} : Fanti, {fo} : Faroese, {fj} : Fijian, {fi} :
13210 Finnish, [{fiu} : Finno-Ugrian (Other)], {fon} : Fon, {fr} : French, {frm}
13211 : Middle French (ca.1400-1600), {fro} : Old French (842-ca.1400), {fy} :
13212 Frisian, {fur} : Friulian, {ful} : Fulah, {gaa} : Ga, {gd} : Scots Gaelic,
13213 {gl} : Gallegan, {lug} : Ganda, {gay} : Gayo, {gba} : Gbaya, {gez} : Geez,
13214 {ka} : Georgian, {de} : German, {gmh} : Middle High German (ca.1050-1500),
13215 {goh} : Old High German (ca.750-1050), [{gem} : Germanic (Other)], {gil} :
13216 Gilbertese, {gon} : Gondi, {gor} : Gorontalo, {got} : Gothic, {grb} :
13217 Grebo, {grc} : Ancient Greek, {el} : Modern Greek, {gn} : Guarani, {gu} :
13218 Gujarati, {gwi} : Gwich'in, {hai} : Haida, {ha} : Hausa, {haw} : Hawaiian,
13219 {he} : Hebrew, {hz} : Herero, {hil} : Hiligaynon, {him} : Himachali, {hi} :
13220 Hindi, {ho} : Hiri Motu, {hit} : Hittite, {hmn} : Hmong, {hu} : Hungarian,
13221 {hup} : Hupa, {iba} : Iban, {is} : Icelandic, {ibo} : Igbo, {ijo} : Ijo,
13222 {ilo} : Iloko, [{inc} : Indic (Other)], [{ine} : Indo-European (Other)],
13223 {id} : Indonesian, {ia} : Interlingua (International Auxiliary Language
13224 Association), {ie} : Interlingue, {iu} : Inuktitut, {ik} : Inupiaq, [{ira}
13225 : Iranian (Other)], {ga} : Irish, {mga} : Middle Irish (900-1200), {sga} :
13226 Old Irish (to 900), [{iro} : Iroquoian languages], {it} : Italian, {ja} :
13227 Japanese, {jw} : Javanese, {jrb} : Judeo-Arabic, {jpr} : Judeo-Persian,
13228 {kab} : Kabyle, {kac} : Kachin, {kl} : Kalaallisut, {kam} : Kamba, {kn} :
13229 Kannada, {kau} : Kanuri, {kaa} : Kara-Kalpak, {kar} : Karen, {ks} :
13230 Kashmiri, {kaw} : Kawi, {kk} : Kazakh, {kha} : Khasi, {km} : Khmer, [{khi}
13231 : Khoisan (Other)], {kho} : Khotanese, {ki} : Kikuyu, {kmb} : Kimbundu,
13232 {rw} : Kinyarwanda, {ky} : Kirghiz, {i-klingon} : Klingon, {kv} : Komi,
13233 {kon} : Kongo, {kok} : Konkani, {ko} : Korean, {kos} : Kosraean, {kpe} :
13234 Kpelle, {kro} : Kru, {kj} : Kuanyama, {kum} : Kumyk, {ku} : Kurdish, {kru}
13235 : Kurukh, {kut} : Kutenai, {lad} : Ladino, {lah} : Lahnda, {lam} : Lamba,
13236 {lo} : Lao, {la} : Latin, {lv} : Latvian, {lb} : Letzeburgesch, {lez} :
13237 Lezghian, {ln} : Lingala, {lt} : Lithuanian, {nds} : Low German, {loz} :
13238 Lozi, {lub} : Luba-Katanga, {lua} : Luba-Lulua, {lui} : Luiseno, {lun} :
13239 Lunda, {luo} : Luo (Kenya and Tanzania), {lus} : Lushai, {mk} : Macedonian,
13240 {mad} : Madurese, {mag} : Magahi, {mai} : Maithili, {mak} : Makasar, {mg} :
13241 Malagasy, {ms} : Malay, {ml} : Malayalam, {mt} : Maltese, {mnc} : Manchu,
13242 {mdr} : Mandar, {man} : Mandingo, {mni} : Manipuri, [{mno} : Manobo
13243 languages], {gv} : Manx, {mi} : Maori, {mr} : Marathi, {chm} : Mari, {mh} :
13244 Marshall, {mwr} : Marwari, {mas} : Masai, [{myn} : Mayan languages], {men}
13245 : Mende, {mic} : Micmac, {min} : Minangkabau, {i-mingo} : Mingo, [{mis} :
13246 Miscellaneous languages], {moh} : Mohawk, {mo} : Moldavian, [{mkh} :
13247 Mon-Khmer (Other)], {lol} : Mongo, {mn} : Mongolian, {mos} : Mossi, [{mul}
13248 : Multiple languages], [{mun} : Munda languages], {nah} : Nahuatl, {na} :
13249 Nauru, {nv} : Navajo, {nd} : North Ndebele, {nr} : South Ndebele, {ng} :
13250 Ndonga, {ne} : Nepali, {new} : Newari, {nia} : Nias, [{nic} :
13251 Niger-Kordofanian (Other)], [{ssa} : Nilo-Saharan (Other)], {niu} : Niuean,
13252 {non} : Old Norse, [{nai} : North American Indian], {se} : Northern Sami,
13253 {no} : Norwegian, {nb} : Norwegian Bokmal, {nn} : Norwegian Nynorsk, [{nub}
13254 : Nubian languages], {nym} : Nyamwezi, {nyn} : Nyankole, {nyo} : Nyoro,
13255 {nzi} : Nzima, {oc} : Occitan (post 1500), {oji} : Ojibwa, {or} : Oriya,
13256 {om} : Oromo, {osa} : Osage, {os} : Ossetian; Ossetic, [{oto} : Otomian
13257 languages], {pal} : Pahlavi, {i-pwn} : Paiwan, {pau} : Palauan, {pi} :
13258 Pali, {pam} : Pampanga, {pag} : Pangasinan, {pa} : Panjabi, {pap} :
13259 Papiamento, [{paa} : Papuan (Other)], {fa} : Persian, {peo} : Old Persian
13260 (ca.600-400 B.C.), [{phi} : Philippine (Other)], {phn} : Phoenician, {pon}
13261 : Pohnpeian, {pl} : Polish, {pt} : Portuguese, [{pra} : Prakrit languages],
13262 {pro} : Old Provencal (to 1500), {ps} : Pushto, {qu} : Quechua, {rm} :
13263 Raeto-Romance, {raj} : Rajasthani, {rap} : Rapanui, {rar} : Rarotongan,
13264 [{qaa - qtz} : Reserved for local use.], [{roa} : Romance (Other)], {ro} :
13265 Romanian, {rom} : Romany, {rn} : Rundi, {ru} : Russian, [{sal} : Salishan
13266 languages], {sam} : Samaritan Aramaic, [{smi} : Sami languages (Other)],
13267 {sm} : Samoan, {sad} : Sandawe, {sg} : Sango, {sa} : Sanskrit, {sat} :
13268 Santali, {sc} : Sardinian, {sas} : Sasak, {sco} : Scots, {sel} : Selkup,
13269 [{sem} : Semitic (Other)], {sr} : Serbian, {srr} : Serer, {shn} : Shan,
13270 {sn} : Shona, {sid} : Sidamo, {sgn-...} : Sign Languages, {bla} : Siksika,
13271 {sd} : Sindhi, {si} : Sinhalese, [{sit} : Sino-Tibetan (Other)], [{sio} :
13272 Siouan languages], {den} : Slave (Athapascan), [{sla} : Slavic (Other)],
13273 {sk} : Slovak, {sl} : Slovenian, {sog} : Sogdian, {so} : Somali, {son} :
13274 Songhai, {snk} : Soninke, {wen} : Sorbian languages, {nso} : Northern
13275 Sotho, {st} : Southern Sotho, [{sai} : South American Indian (Other)], {es}
13276 : Spanish, {suk} : Sukuma, {sux} : Sumerian, {su} : Sundanese, {sus} :
13277 Susu, {sw} : Swahili, {ss} : Swati, {sv} : Swedish, {syr} : Syriac, {tl} :
13278 Tagalog, {ty} : Tahitian, [{tai} : Tai (Other)], {tg} : Tajik, {tmh} :
13279 Tamashek, {ta} : Tamil, {i-tao} : Tao, {tt} : Tatar, {i-tay} : Tayal, {te}
13280 : Telugu, {ter} : Tereno, {tet} : Tetum, {th} : Thai, {bo} : Tibetan, {tig}
13281 : Tigre, {ti} : Tigrinya, {tem} : Timne, {tiv} : Tiv, {tli} : Tlingit,
13282 {tpi} : Tok Pisin, {tkl} : Tokelau, {tog} : Tonga (Nyasa), {to} : Tonga
13283 (Tonga Islands), {tsi} : Tsimshian, {ts} : Tsonga, {i-tsu} : Tsou, {tn} :
13284 Tswana, {tum} : Tumbuka, {tr} : Turkish, {ota} : Ottoman Turkish
13285 (1500-1928), {tk} : Turkmen, {tvl} : Tuvalu, {tyv} : Tuvinian, {tw} : Twi,
13286 {uga} : Ugaritic, {ug} : Uighur, {uk} : Ukrainian, {umb} : Umbundu, {und} :
13287 Undetermined, {ur} : Urdu, {uz} : Uzbek, {vai} : Vai, {ven} : Venda, {vi} :
13288 Vietnamese, {vo} : Volapuk, {vot} : Votic, [{wak} : Wakashan languages],
13289 {wal} : Walamo, {war} : Waray, {was} : Washo, {cy} : Welsh, {wo} : Wolof,
13290 {x-...} : Unregistered (Semi-Private Use), {xh} : Xhosa, {sah} : Yakut,
13291 {yao} : Yao, {yap} : Yapese, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik
13292 languages], {znd} : Zande, [{zap} : Zapotec], {zen} : Zenaga, {za} :
13293 Zhuang, {zu} : Zulu, {zun} : Zuni
13294
13295 =item SEE ALSO
13296
13297 =item COPYRIGHT AND DISCLAIMER
13298
13299 =item AUTHOR
13300
13301 =back
13302
13303 =head2 I18N::Langinfo - query locale information
13304
13305 =over 4
13306
13307 =item SYNOPSIS
13308
13309 =item DESCRIPTION
13310
13311 =over 4
13312
13313 =item EXPORT
13314
13315 =back
13316
13317 =item SEE ALSO
13318
13319 =item AUTHOR
13320
13321 =item COPYRIGHT AND LICENSE
13322
13323 =back
13324
13325 =head2 IO - load various IO modules
13326
13327 =over 4
13328
13329 =item SYNOPSIS
13330
13331 =item DESCRIPTION
13332
13333 =back
13334
13335 =head2 IO::Dir - supply object methods for directory handles
13336
13337 =over 4
13338
13339 =item SYNOPSIS
13340
13341 =item DESCRIPTION
13342
13343 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
13344 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
13345
13346 =item SEE ALSO
13347
13348 =item AUTHOR
13349
13350 =item COPYRIGHT
13351
13352 =back
13353
13354 =head2 IO::File - supply object methods for filehandles
13355
13356 =over 4
13357
13358 =item SYNOPSIS
13359
13360 =item DESCRIPTION
13361
13362 =item CONSTRUCTOR
13363
13364 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
13365
13366 =item METHODS
13367
13368 open( FILENAME [,MODE [,PERMS]] )
13369
13370 =item SEE ALSO
13371
13372 =item HISTORY
13373
13374 =back
13375
13376 =head2 IO::Handle - supply object methods for I/O handles
13377
13378 =over 4
13379
13380 =item SYNOPSIS
13381
13382 =item DESCRIPTION
13383
13384 =item CONSTRUCTOR
13385
13386 new (), new_from_fd ( FD, MODE )
13387
13388 =item METHODS
13389
13390 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
13391 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
13392 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
13393 $io->blocking ( [ BOOL ] ), $io->untaint
13394
13395 =item NOTE
13396
13397 =item SEE ALSO
13398
13399 =item BUGS
13400
13401 =item HISTORY
13402
13403 =back
13404
13405 =head2 IO::Pipe - supply object methods for pipes
13406
13407 =over 4
13408
13409 =item SYNOPSIS
13410
13411 =item DESCRIPTION
13412
13413 =item CONSTRUCTOR
13414
13415 new ( [READER, WRITER] )
13416
13417 =item METHODS
13418
13419 reader ([ARGS]), writer ([ARGS]), handles ()
13420
13421 =item SEE ALSO
13422
13423 =item AUTHOR
13424
13425 =item COPYRIGHT
13426
13427 =back
13428
13429 =head2 IO::Poll - Object interface to system poll call
13430
13431 =over 4
13432
13433 =item SYNOPSIS
13434
13435 =item DESCRIPTION
13436
13437 =item METHODS
13438
13439 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
13440 IO ), handles( [ EVENT_MASK ] )
13441
13442 =item SEE ALSO
13443
13444 =item AUTHOR
13445
13446 =item COPYRIGHT
13447
13448 =back
13449
13450 =head2 IO::Seekable - supply seek based methods for I/O objects
13451
13452 =over 4
13453
13454 =item SYNOPSIS
13455
13456 =item DESCRIPTION
13457
13458 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
13459 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
13460 $io->tell
13461
13462 =item SEE ALSO
13463
13464 =item HISTORY
13465
13466 =back
13467
13468 =head2 IO::Select - OO interface to the select system call
13469
13470 =over 4
13471
13472 =item SYNOPSIS
13473
13474 =item DESCRIPTION
13475
13476 =item CONSTRUCTOR
13477
13478 new ( [ HANDLES ] )
13479
13480 =item METHODS
13481
13482 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
13483 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
13484 count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] )
13485
13486 =item EXAMPLE
13487
13488 =item AUTHOR
13489
13490 =item COPYRIGHT
13491
13492 =back
13493
13494 =head2 IO::Socket - Object interface to socket communications
13495
13496 =over 4
13497
13498 =item SYNOPSIS
13499
13500 =item DESCRIPTION
13501
13502 =item CONSTRUCTOR
13503
13504 new ( [ARGS] )
13505
13506 =item METHODS
13507
13508 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
13509 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
13510
13511 =item SEE ALSO
13512
13513 =item AUTHOR
13514
13515 =item COPYRIGHT
13516
13517 =back
13518
13519 =head2 IO::Socket::INET - Object interface for AF_INET domain sockets
13520
13521 =over 4
13522
13523 =item SYNOPSIS
13524
13525 =item DESCRIPTION
13526
13527 =item CONSTRUCTOR
13528
13529 new ( [ARGS] )
13530
13531 =over 4
13532
13533 =item METHODS
13534
13535 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
13536 ()
13537
13538 =back
13539
13540 =item SEE ALSO
13541
13542 =item AUTHOR
13543
13544 =item COPYRIGHT
13545
13546 =back
13547
13548 =head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
13549
13550 =over 4
13551
13552 =item SYNOPSIS
13553
13554 =item DESCRIPTION
13555
13556 =item CONSTRUCTOR
13557
13558 new ( [ARGS] )
13559
13560 =item METHODS
13561
13562 hostpath(), peerpath()
13563
13564 =item SEE ALSO
13565
13566 =item AUTHOR
13567
13568 =item COPYRIGHT
13569
13570 =back
13571
13572 =head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
13573 handles
13574
13575 =over 4
13576
13577 =item SYNOPSIS
13578
13579 =item DESCRIPTION
13580
13581 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
13582 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
13583
13584 =item SEE ALSO
13585
13586 =item AUTHOR
13587
13588 =item COPYRIGHT
13589
13590 =back
13591
13592 =head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
13593
13594 =over 4
13595
13596 =item SYNOPSIS
13597
13598 =item DESCRIPTION
13599
13600 =item CONSTRUCTOR
13601
13602 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
13603
13604 =item METHODS
13605
13606 open( FILENAME [,MODE [,PERMS]] )
13607
13608 =item SEE ALSO
13609
13610 =item HISTORY
13611
13612 =back
13613
13614 =head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
13615 handles
13616
13617 =over 4
13618
13619 =item SYNOPSIS
13620
13621 =item DESCRIPTION
13622
13623 =item CONSTRUCTOR
13624
13625 new (), new_from_fd ( FD, MODE )
13626
13627 =item METHODS
13628
13629 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
13630 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
13631 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
13632 $io->blocking ( [ BOOL ] ), $io->untaint
13633
13634 =item NOTE
13635
13636 =item SEE ALSO
13637
13638 =item BUGS
13639
13640 =item HISTORY
13641
13642 =back
13643
13644 =head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
13645
13646 =over 4
13647
13648 =item SYNOPSIS
13649
13650 =item DESCRIPTION
13651
13652 =item CONSTRUCTOR
13653
13654 new ( [READER, WRITER] )
13655
13656 =item METHODS
13657
13658 reader ([ARGS]), writer ([ARGS]), handles ()
13659
13660 =item SEE ALSO
13661
13662 =item AUTHOR
13663
13664 =item COPYRIGHT
13665
13666 =back
13667
13668 =head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
13669
13670 =over 4
13671
13672 =item SYNOPSIS
13673
13674 =item DESCRIPTION
13675
13676 =item METHODS
13677
13678 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
13679 IO ), handles( [ EVENT_MASK ] )
13680
13681 =item SEE ALSO
13682
13683 =item AUTHOR
13684
13685 =item COPYRIGHT
13686
13687 =back
13688
13689 =head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
13690 I/O objects
13691
13692 =over 4
13693
13694 =item SYNOPSIS
13695
13696 =item DESCRIPTION
13697
13698 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
13699 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
13700 $io->tell
13701
13702 =item SEE ALSO
13703
13704 =item HISTORY
13705
13706 =back
13707
13708 =head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
13709 call
13710
13711 =over 4
13712
13713 =item SYNOPSIS
13714
13715 =item DESCRIPTION
13716
13717 =item CONSTRUCTOR
13718
13719 new ( [ HANDLES ] )
13720
13721 =item METHODS
13722
13723 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
13724 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
13725 count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] )
13726
13727 =item EXAMPLE
13728
13729 =item AUTHOR
13730
13731 =item COPYRIGHT
13732
13733 =back
13734
13735 =head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
13736 communications
13737
13738 =over 4
13739
13740 =item SYNOPSIS
13741
13742 =item DESCRIPTION
13743
13744 =item CONSTRUCTOR
13745
13746 new ( [ARGS] )
13747
13748 =item METHODS
13749
13750 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
13751 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
13752
13753 =item SEE ALSO
13754
13755 =item AUTHOR
13756
13757 =item COPYRIGHT
13758
13759 =back
13760
13761 =head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
13762 AF_INET domain sockets
13763
13764 =over 4
13765
13766 =item SYNOPSIS
13767
13768 =item DESCRIPTION
13769
13770 =item CONSTRUCTOR
13771
13772 new ( [ARGS] )
13773
13774 =over 4
13775
13776 =item METHODS
13777
13778 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
13779 ()
13780
13781 =back
13782
13783 =item SEE ALSO
13784
13785 =item AUTHOR
13786
13787 =item COPYRIGHT
13788
13789 =back
13790
13791 =head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
13792 AF_UNIX domain sockets
13793
13794 =over 4
13795
13796 =item SYNOPSIS
13797
13798 =item DESCRIPTION
13799
13800 =item CONSTRUCTOR
13801
13802 new ( [ARGS] )
13803
13804 =item METHODS
13805
13806 hostpath(), peerpath()
13807
13808 =item SEE ALSO
13809
13810 =item AUTHOR
13811
13812 =item COPYRIGHT
13813
13814 =back
13815
13816 =head2 IPC::Msg - SysV Msg IPC object class
13817
13818 =over 4
13819
13820 =item SYNOPSIS
13821
13822 =item DESCRIPTION
13823
13824 =item METHODS
13825
13826 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
13827 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
13828 FLAGS ] ), stat
13829
13830 =item SEE ALSO
13831
13832 =item AUTHOR
13833
13834 =item COPYRIGHT
13835
13836 =back
13837
13838 =head2 IPC::Open2, open2 - open a process for both reading and writing
13839
13840 =over 4
13841
13842 =item SYNOPSIS
13843
13844 =item DESCRIPTION
13845
13846 =item WARNING 
13847
13848 =item SEE ALSO
13849
13850 =back
13851
13852 =head2 IPC::Open3, open3 - open a process for reading, writing, and error
13853 handling
13854
13855 =over 4
13856
13857 =item SYNOPSIS
13858
13859 =item DESCRIPTION
13860
13861 =item WARNING
13862
13863 =back
13864
13865 =head2 IPC::Semaphore - SysV Semaphore IPC object class
13866
13867 =over 4
13868
13869 =item SYNOPSIS
13870
13871 =item DESCRIPTION
13872
13873 =item METHODS
13874
13875 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
13876 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
13877 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
13878 , VALUE ), stat
13879
13880 =item SEE ALSO
13881
13882 =item AUTHOR
13883
13884 =item COPYRIGHT
13885
13886 =back
13887
13888 =head2 IPC::SysV - SysV IPC constants
13889
13890 =over 4
13891
13892 =item SYNOPSIS
13893
13894 =item DESCRIPTION
13895
13896 ftok( PATH, ID )
13897
13898 =item SEE ALSO
13899
13900 =item AUTHORS
13901
13902 =item COPYRIGHT
13903
13904 =back
13905
13906 =head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
13907
13908 =over 4
13909
13910 =item SYNOPSIS
13911
13912 =item DESCRIPTION
13913
13914 =item METHODS
13915
13916 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
13917 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
13918 FLAGS ] ), stat
13919
13920 =item SEE ALSO
13921
13922 =item AUTHOR
13923
13924 =item COPYRIGHT
13925
13926 =back
13927
13928 =head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
13929 class
13930
13931 =over 4
13932
13933 =item SYNOPSIS
13934
13935 =item DESCRIPTION
13936
13937 =item METHODS
13938
13939 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
13940 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
13941 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
13942 , VALUE ), stat
13943
13944 =item SEE ALSO
13945
13946 =item AUTHOR
13947
13948 =item COPYRIGHT
13949
13950 =back
13951
13952 =head2 List::Util - A selection of general-utility list subroutines
13953
13954 =over 4
13955
13956 =item SYNOPSIS
13957
13958 =item DESCRIPTION
13959
13960 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
13961 BLOCK LIST, shuffle LIST, sum LIST
13962
13963 =item KNOWN BUGS
13964
13965 =item SUGGESTED ADDITIONS
13966
13967 =item COPYRIGHT
13968
13969 =back
13970
13971 =head2 List::Utilib::List::Util, List::Util - A selection of
13972 general-utility list subroutines
13973
13974 =over 4
13975
13976 =item SYNOPSIS
13977
13978 =item DESCRIPTION
13979
13980 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
13981 BLOCK LIST, shuffle LIST, sum LIST
13982
13983 =item KNOWN BUGS
13984
13985 =item SUGGESTED ADDITIONS
13986
13987 =item COPYRIGHT
13988
13989 =back
13990
13991 =head2 List::Utilib::Scalar::Util, Scalar::Util - A selection of
13992 general-utility scalar subroutines
13993
13994 =over 4
13995
13996 =item SYNOPSIS
13997
13998 =item DESCRIPTION
13999
14000 blessed EXPR, dualvar NUM, STRING, isweak EXPR, readonly SCALAR, reftype
14001 EXPR, tainted EXPR, weaken REF
14002
14003 =item KNOWN BUGS
14004
14005 =item COPYRIGHT
14006
14007 =item BLATANT PLUG
14008
14009 =back
14010
14011 =head2 Locale::Constants - constants for Locale codes
14012
14013 =over 4
14014
14015 =item SYNOPSIS
14016
14017 =item DESCRIPTION
14018
14019 =item KNOWN BUGS AND LIMITATIONS
14020
14021 =item SEE ALSO
14022
14023 Locale::Language, Locale::Country, Locale::Script, Locale::Currency
14024
14025 =item AUTHOR
14026
14027 =item COPYRIGHT
14028
14029 =back
14030
14031 =head2 Locale::Country - ISO codes for country identification (ISO 3166)
14032
14033 =over 4
14034
14035 =item SYNOPSIS
14036
14037 =item DESCRIPTION
14038
14039 B<alpha-2>, B<alpha-3>, B<numeric>
14040
14041 =item CONVERSION ROUTINES
14042
14043 code2country( CODE, [ CODESET ] ), country2code( STRING, [ CODESET ] ),
14044 country_code2code( CODE, CODESET, CODESET )
14045
14046 =item QUERY ROUTINES
14047
14048 C<all_country_codes( [ CODESET ] )>, C<all_country_names( [ CODESET ] )>
14049
14050 =item SEMI-PRIVATE ROUTINES
14051
14052 =over 4
14053
14054 =item alias_code
14055
14056 =item rename_country
14057
14058 =back
14059
14060 =item EXAMPLES
14061
14062 =item DOMAIN NAMES
14063
14064 =item KNOWN BUGS AND LIMITATIONS
14065
14066 =item SEE ALSO
14067
14068 Locale::Language, Locale::Script, Locale::Currency, Locale::SubCountry, ISO
14069 3166-1, http://www.iso.org/iso/en/prods-services/iso3166ma/index.html,
14070 http://www.egt.ie/standards/iso3166/iso3166-1-en.html,
14071 http://www.cia.gov/cia/publications/factbook/docs/app-f.html
14072
14073 =item AUTHOR
14074
14075 =item COPYRIGHT
14076
14077 =back
14078
14079 =head2 Locale::Currency - ISO three letter codes for currency
14080 identification (ISO 4217)
14081
14082 =over 4
14083
14084 =item SYNOPSIS
14085
14086 =item DESCRIPTION
14087
14088 XTS, XXX
14089
14090 =item CONVERSION ROUTINES
14091
14092 code2currency(), currency2code()
14093
14094 =item QUERY ROUTINES
14095
14096 C<all_currency_codes()>, C<all_currency_names()>
14097
14098 =item EXAMPLES
14099
14100 =item KNOWN BUGS AND LIMITATIONS
14101
14102 =item SEE ALSO
14103
14104 Locale::Country, Locale::Script, ISO 4217:1995,
14105 http://www.bsi-global.com/iso4217currency
14106
14107 =item AUTHOR
14108
14109 =item COPYRIGHT
14110
14111 =back
14112
14113 =head2 Locale::Language - ISO two letter codes for language identification
14114 (ISO 639)
14115
14116 =over 4
14117
14118 =item SYNOPSIS
14119
14120 =item DESCRIPTION
14121
14122 =item CONVERSION ROUTINES
14123
14124 code2language(), language2code()
14125
14126 =item QUERY ROUTINES
14127
14128 C<all_language_codes()>, C<all_language_names()>
14129
14130 =item EXAMPLES
14131
14132 =item KNOWN BUGS AND LIMITATIONS
14133
14134 =item SEE ALSO
14135
14136 Locale::Country, Locale::Script, Locale::Currency, ISO 639:1988 (E/F),
14137 http://lcweb.loc.gov/standards/iso639-2/langhome.html
14138
14139 =item AUTHOR
14140
14141 =item COPYRIGHT
14142
14143 =back
14144
14145 =head2 Locale::Maketext -- framework for localization
14146
14147 =over 4
14148
14149 =item SYNOPSIS
14150
14151 =item DESCRIPTION
14152
14153 =item QUICK OVERVIEW
14154
14155 =item METHODS
14156
14157 =over 4
14158
14159 =item Construction Methods
14160
14161 =item The "maketext" Method
14162
14163 $lh->fail_with I<or> $lh->fail_with(I<PARAM>), $lh->failure_handler_auto
14164
14165 =item Utility Methods
14166
14167 $language->quant($number, $singular), $language->quant($number, $singular,
14168 $plural), $language->quant($number, $singular, $plural, $negative),
14169 $language->numf($number), $language->sprintf($format, @items),
14170 $language->language_tag(), $language->encoding()
14171
14172 =item Language Handle Attributes and Internals
14173
14174 =back
14175
14176 =item LANGUAGE CLASS HIERARCHIES
14177
14178 =item ENTRIES IN EACH LEXICON
14179
14180 =item BRACKET NOTATION
14181
14182 =item AUTO LEXICONS
14183
14184 =item CONTROLLING LOOKUP FAILURE
14185
14186 =item HOW TO USE MAKETEXT
14187
14188 =item SEE ALSO
14189
14190 =item COPYRIGHT AND DISCLAIMER
14191
14192 =item AUTHOR
14193
14194 =back
14195
14196 =head2 Locale::Maketext::TPJ13 -- article about software localization
14197
14198 =over 4
14199
14200 =item SYNOPSIS
14201
14202 =item DESCRIPTION
14203
14204 =item Localization and Perl: gettext breaks, Maketext fixes
14205
14206 =over 4
14207
14208 =item A Localization Horror Story: It Could Happen To You
14209
14210 =item The Linguistic View
14211
14212 =item Breaking gettext
14213
14214 =item Replacing gettext
14215
14216 =item Buzzwords: Abstraction and Encapsulation
14217
14218 =item Buzzword: Isomorphism
14219
14220 =item Buzzword: Inheritance
14221
14222 =item Buzzword: Concision
14223
14224 =item The Devil in the Details
14225
14226 =item The Proof in the Pudding: Localizing Web Sites
14227
14228 =item References
14229
14230 =back
14231
14232 =back
14233
14234 =head2 Locale::Script - ISO codes for script identification (ISO 15924)
14235
14236 =over 4
14237
14238 =item SYNOPSIS
14239
14240 =item DESCRIPTION
14241
14242 B<alpha-2>, B<alpha-3>, B<numeric>
14243
14244 =over 4
14245
14246 =item SPECIAL CODES
14247
14248 =back
14249
14250 =item CONVERSION ROUTINES
14251
14252 code2script( CODE, [ CODESET ] ), script2code( STRING, [ CODESET ] ),
14253 script_code2code( CODE, CODESET, CODESET )
14254
14255 =item QUERY ROUTINES
14256
14257 C<all_script_codes ( [ CODESET ] )>, C<all_script_names ( [ CODESET ] )>
14258
14259 =item EXAMPLES
14260
14261 =item KNOWN BUGS AND LIMITATIONS
14262
14263 =item SEE ALSO
14264
14265 Locale::Language, Locale::Currency, Locale::Country, ISO 15924,
14266 http://www.evertype.com/standards/iso15924/
14267
14268 =item AUTHOR
14269
14270 =item COPYRIGHT
14271
14272 =back
14273
14274 =head2 MIME::Base64 - Encoding and decoding of base64 strings
14275
14276 =over 4
14277
14278 =item SYNOPSIS
14279
14280 =item DESCRIPTION
14281
14282 encode_base64($str, [$eol]), decode_base64($str)
14283
14284 =item DIAGNOSTICS
14285
14286 Premature end of base64 data, Premature padding of base64 data
14287
14288 =item EXAMPLES
14289
14290 =item COPYRIGHT
14291
14292 =back
14293
14294 =head2 MIME::Base64::QuotedPrint, MIME::QuotedPrint - Encoding and decoding
14295 of quoted-printable strings
14296
14297 =over 4
14298
14299 =item SYNOPSIS
14300
14301 =item DESCRIPTION
14302
14303 encode_qp($str), decode_qp($str);
14304
14305 =item COPYRIGHT
14306
14307 =back
14308
14309 =head2 MIME::QuotedPrint - Encoding and decoding of quoted-printable
14310 strings
14311
14312 =over 4
14313
14314 =item SYNOPSIS
14315
14316 =item DESCRIPTION
14317
14318 encode_qp($str), decode_qp($str);
14319
14320 =item COPYRIGHT
14321
14322 =back
14323
14324 =head2 Math::BigFloat - Arbitrary size floating point math package
14325
14326 =over 4
14327
14328 =item SYNOPSIS
14329
14330 =item DESCRIPTION
14331
14332 =over 4
14333
14334 =item Canonical notation
14335
14336 =item Output
14337
14338 =item C<mantissa()>, C<exponent()> and C<parts()>
14339
14340 =item Accuracy vs. Precision
14341
14342 =item Rounding
14343
14344 ffround ( +$scale ), ffround ( -$scale ), ffround ( 0 ), fround  ( +$scale
14345 ), fround  ( -$scale ) and fround ( 0 )
14346
14347 =back
14348
14349 =item EXAMPLES
14350
14351   # not ready yet
14352
14353 =item Autocreating constants
14354
14355 =item BUGS
14356
14357 =item CAVEAT
14358
14359 stringify, bstr(), bdiv, Modifying and =, bpow
14360
14361 =item LICENSE
14362
14363 =item AUTHORS
14364
14365 =back
14366
14367 =head2 Math::BigInt - Arbitrary size integer math package
14368
14369 =over 4
14370
14371 =item SYNOPSIS
14372
14373 =item DESCRIPTION
14374
14375 Canonical notation, Input, Output
14376
14377 =item METHODS
14378
14379 =over 4
14380
14381 =item accuracy
14382
14383 =item brsft
14384
14385 =item new
14386
14387 =item bnan
14388
14389 =item bzero
14390
14391 =item binf
14392
14393 =item bone
14394
14395 =item is_one() / is_zero() / is_nan() / is_positive() / is_negative() /
14396 is_inf() / is_odd() / is_even() / is_int()
14397
14398         $x->is_zero();                  # true if arg is +0
14399         $x->is_nan();                   # true if arg is NaN
14400         $x->is_one();                   # true if arg is +1
14401         $x->is_one('-');                # true if arg is -1
14402         $x->is_odd();                   # true if odd, false for even
14403         $x->is_even();                  # true if even, false for odd
14404         $x->is_positive();              # true if >= 0
14405         $x->is_negative();              # true if <  0
14406         $x->is_inf();                   # true if +inf
14407         $x->is_inf('-');                # true if -inf (sign is default
14408 '+')
14409         $x->is_int();                   # true if $x is an integer
14410
14411 =item bcmp
14412
14413 =item bacmp
14414
14415 =item sign
14416
14417 =item bcmp
14418
14419 =item bneg
14420
14421 =item babs
14422
14423 =item bnorm
14424
14425 =item bnot
14426
14427 =item binc
14428
14429 =item bdec
14430
14431 =item badd
14432
14433 =item bsub
14434
14435 =item bmul
14436
14437 =item bdiv
14438
14439 =item bmod
14440
14441 =item bpow
14442
14443 =item blsft
14444
14445 =item brsft
14446
14447 =item band
14448
14449 =item bior
14450
14451 =item bxor
14452
14453 =item bnot
14454
14455 =item bsqrt
14456
14457 =item bfac
14458
14459 =item round
14460
14461 =item bround
14462
14463 =item bfround
14464
14465 =item bfloor
14466
14467 =item bceil
14468
14469 =item bgcd
14470
14471 =item blcm
14472
14473 =item exponent
14474
14475 =item mantissa
14476
14477 =item parts
14478
14479 =item copy
14480
14481 =item as_number
14482
14483 =item bsstr
14484
14485 =item as_hex
14486
14487 =item as_bin
14488
14489 =back
14490
14491 =item ACCURACY and PRECISION
14492
14493 =over 4
14494
14495 =item Precision P
14496
14497 =item Accuracy A
14498
14499 =item Fallback F
14500
14501 =item Rounding mode R
14502
14503 'trunc', 'even', 'odd', '+inf', '-inf', 'zero', Precision, Accuracy
14504 (significant digits), Setting/Accessing, Creating numbers, Usage,
14505 Precedence, Overriding globals, Local settings, Rounding, Default values,
14506 Remarks
14507
14508 =back
14509
14510 =item INTERNALS
14511
14512 =over 4
14513
14514 =item MATH LIBRARY
14515
14516 =item SIGN
14517
14518 =item mantissa(), exponent() and parts()
14519
14520 =back
14521
14522 =item EXAMPLES
14523
14524   use Math::BigInt;
14525
14526 =item Autocreating constants
14527
14528 =item PERFORMANCE
14529
14530 =over 4
14531
14532 =item Alternative math libraries
14533
14534 =item SUBCLASSING
14535
14536 =back
14537
14538 =item Subclassing Math::BigInt
14539
14540 =item UPGRADING
14541
14542 =over 4
14543
14544 =item Auto-upgrade
14545
14546 bsqrt(), div(), blog()
14547
14548 =back
14549
14550 =item BUGS
14551
14552 Out of Memory!, Fails to load Calc on Perl prior 5.6.0
14553
14554 =item CAVEATS
14555
14556 stringify, bstr(), bsstr() and 'cmp', int(), length, bdiv, infinity
14557 handling, Modifying and =, bpow, Overloading -$x, Mixing different object
14558 types, bsqrt(), brsft()
14559
14560 =item LICENSE
14561
14562 =item SEE ALSO
14563
14564 =item AUTHORS
14565
14566 =back
14567
14568 =head2 Math::BigInt::Calc - Pure Perl module to support Math::BigInt
14569
14570 =over 4
14571
14572 =item SYNOPSIS
14573
14574 =item DESCRIPTION
14575
14576 =item EXPORT
14577
14578 =item WRAP YOUR OWN
14579
14580 =item LICENSE
14581
14582 This program is free software; you may redistribute it and/or modify it
14583 under
14584 the same terms as Perl itself. 
14585
14586 =item AUTHORS
14587
14588 =item SEE ALSO
14589
14590 =back
14591
14592 =head2 Math::Complex - complex numbers and associated mathematical
14593 functions
14594
14595 =over 4
14596
14597 =item SYNOPSIS
14598
14599 =item DESCRIPTION
14600
14601 =item OPERATIONS
14602
14603 =item CREATION
14604
14605 =item STRINGIFICATION
14606
14607 =over 4
14608
14609 =item CHANGED IN PERL 5.6
14610
14611 =back
14612
14613 =item USAGE
14614
14615 =item ERRORS DUE TO DIVISION BY ZERO OR LOGARITHM OF ZERO
14616
14617 =item ERRORS DUE TO INDIGESTIBLE ARGUMENTS
14618
14619 =item BUGS
14620
14621 =item AUTHORS
14622
14623 =back
14624
14625 =head2 Math::Trig - trigonometric functions
14626
14627 =over 4
14628
14629 =item SYNOPSIS
14630
14631 =item DESCRIPTION
14632
14633 =item TRIGONOMETRIC FUNCTIONS
14634
14635 B<tan>
14636
14637 =over 4
14638
14639 =item ERRORS DUE TO DIVISION BY ZERO
14640
14641 =item SIMPLE (REAL) ARGUMENTS, COMPLEX RESULTS
14642
14643 =back
14644
14645 =item PLANE ANGLE CONVERSIONS
14646
14647 =item RADIAL COORDINATE CONVERSIONS
14648
14649 =over 4
14650
14651 =item COORDINATE SYSTEMS
14652
14653 =item 3-D ANGLE CONVERSIONS
14654
14655 cartesian_to_cylindrical, cartesian_to_spherical, cylindrical_to_cartesian,
14656 cylindrical_to_spherical, spherical_to_cartesian, spherical_to_cylindrical
14657
14658 =back
14659
14660 =item GREAT CIRCLE DISTANCES AND DIRECTIONS
14661
14662 =item EXAMPLES
14663
14664 =over 4
14665
14666 =item CAVEAT FOR GREAT CIRCLE FORMULAS
14667
14668 =back
14669
14670 =item BUGS
14671
14672 =item AUTHORS
14673
14674 =back
14675
14676 =head2 Memoize - Make your functions faster by trading space for time
14677
14678 =over 4
14679
14680 =item SYNOPSIS
14681
14682 =item DESCRIPTION
14683
14684 =item DETAILS
14685
14686 =item OPTIONS
14687
14688 =over 4
14689
14690 =item INSTALL
14691
14692 =item NORMALIZER
14693
14694 =item C<SCALAR_CACHE>, C<LIST_CACHE>
14695
14696 C<MEMORY>, C<HASH>, C<TIE>, C<FAULT>, C<MERGE>
14697
14698 =back
14699
14700 =item OTHER FACILITIES
14701
14702 =over 4
14703
14704 =item C<unmemoize>
14705
14706 =item C<flush_cache>
14707
14708 =back
14709
14710 =item CAVEATS
14711
14712 =item PERSISTENT CACHE SUPPORT
14713
14714 =item EXPIRATION SUPPORT
14715
14716 =item BUGS
14717
14718 =item MAILING LIST
14719
14720 =item AUTHOR
14721
14722 =item COPYRIGHT AND LICENSE
14723
14724 =item THANK YOU
14725
14726 =back
14727
14728 =head2 Memoize::AnyDBM_File - glue to provide EXISTS for AnyDBM_File for
14729 Storable use
14730
14731 =over 4
14732
14733 =item DESCRIPTION
14734
14735 =back
14736
14737 =head2 Memoize::Expire - Plug-in module for automatic expiration of
14738 memoized values
14739
14740 =over 4
14741
14742 =item SYNOPSIS
14743
14744 =item DESCRIPTION
14745
14746 =item INTERFACE
14747
14748  TIEHASH,  EXISTS,  STORE
14749
14750 =item ALTERNATIVES
14751
14752 =item CAVEATS
14753
14754 =item AUTHOR
14755
14756 =item SEE ALSO
14757
14758 =back
14759
14760 =head2 Memoize::ExpireFile - test for Memoize expiration semantics
14761
14762 =over 4
14763
14764 =item DESCRIPTION
14765
14766 =back
14767
14768 =head2 Memoize::ExpireTest - test for Memoize expiration semantics
14769
14770 =over 4
14771
14772 =item DESCRIPTION
14773
14774 =back
14775
14776 =head2 Memoize::NDBM_File - glue to provide EXISTS for NDBM_File for
14777 Storable use
14778
14779 =over 4
14780
14781 =item DESCRIPTION
14782
14783 =back
14784
14785 =head2 Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for
14786 Storable use
14787
14788 =over 4
14789
14790 =item DESCRIPTION
14791
14792 =back
14793
14794 =head2 Memoize::Storable - store Memoized data in Storable database
14795
14796 =over 4
14797
14798 =item DESCRIPTION
14799
14800 =back
14801
14802 =head2 NDBM_File - Tied access to ndbm files
14803
14804 =over 4
14805
14806 =item SYNOPSIS
14807
14808 =item DESCRIPTION
14809
14810 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
14811
14812 =item DIAGNOSTICS
14813
14814 =over 4
14815
14816 =item C<ndbm store returned -1, errno 22, key "..." at ...>
14817
14818 =back
14819
14820 =item BUGS AND WARNINGS
14821
14822 =back
14823
14824 =head2 NEXT - Provide a pseudo-class NEXT that allows method redispatch
14825
14826 =over 4
14827
14828 =item SYNOPSIS
14829
14830 =item DESCRIPTION
14831
14832 =over 4
14833
14834 =item Enforcing redispatch
14835
14836 =item Avoiding repetitions
14837
14838 =back
14839
14840 =item AUTHOR
14841
14842 =item BUGS AND IRRITATIONS
14843
14844 =item COPYRIGHT
14845
14846 =back
14847
14848 =head2 Net::Cmd - Network Command class (as used by FTP, SMTP etc)
14849
14850 =over 4
14851
14852 =item SYNOPSIS
14853
14854 =item DESCRIPTION
14855
14856 =item USER METHODS
14857
14858 debug ( VALUE ), message (), code (), ok (), status (), datasend ( DATA ),
14859 dataend ()
14860
14861 =item CLASS METHODS
14862
14863 debug_print ( DIR, TEXT ), debug_text ( TEXT ), command ( CMD [, ARGS, ...
14864 ]), unsupported (), response (), parse_response ( TEXT ), getline (),
14865 ungetline ( TEXT ), read_until_dot (), tied_fh ()
14866
14867 =item EXPORTS
14868
14869 =item AUTHOR
14870
14871 =item COPYRIGHT
14872
14873 =back
14874
14875 =head2 Net::Config - Local configuration data for libnet
14876
14877 =over 4
14878
14879 =item SYNOPSYS
14880
14881 =item DESCRIPTION
14882
14883 =item METHODS
14884
14885 requires_firewall HOST
14886
14887 =item NetConfig VALUES
14888
14889 nntp_hosts, snpp_hosts, pop3_hosts, smtp_hosts, ph_hosts, daytime_hosts,
14890 time_hosts, inet_domain, ftp_firewall, ftp_firewall_type, ftp_ext_passive,
14891 ftp_int_pasive, local_netmask, test_hosts, test_exists
14892
14893 =back
14894
14895 =head2 Net::Domain - Attempt to evaluate the current host's internet name
14896 and domain
14897
14898 =over 4
14899
14900 =item SYNOPSIS
14901
14902 =item DESCRIPTION
14903
14904 hostfqdn (), hostname (), hostdomain ()
14905
14906 =item AUTHOR
14907
14908 =item COPYRIGHT
14909
14910 =back
14911
14912 =head2 Net::FTP - FTP Client class
14913
14914 =over 4
14915
14916 =item SYNOPSIS
14917
14918 =item DESCRIPTION
14919
14920 =item OVERVIEW
14921
14922 =item CONSTRUCTOR
14923
14924 new (HOST [,OPTIONS])
14925
14926 =item METHODS
14927
14928 login ([LOGIN [,PASSWORD [, ACCOUNT] ] ]), authorize ( [AUTH [, RESP]]),
14929 site (ARGS), type (TYPE [, ARGS]), ascii ([ARGS]) binary([ARGS])
14930 ebcdic([ARGS]) byte([ARGS]), rename ( OLDNAME, NEWNAME ), delete ( FILENAME
14931 ), cwd ( [ DIR ] ), cdup (), pwd (), restart ( WHERE ), rmdir ( DIR ),
14932 mkdir ( DIR [, RECURSE ]), ls ( [ DIR ] ), dir ( [ DIR ] ), get (
14933 REMOTE_FILE [, LOCAL_FILE [, WHERE]] ), put ( LOCAL_FILE [, REMOTE_FILE ]
14934 ), put_unique ( LOCAL_FILE [, REMOTE_FILE ] ), append ( LOCAL_FILE [,
14935 REMOTE_FILE ] ), unique_name (), mdtm ( FILE ), size ( FILE ), supported (
14936 CMD ), hash ( [FILEHANDLE_GLOB_REF],[ BYTES_PER_HASH_MARK] ), nlst ( [ DIR
14937 ] ), list ( [ DIR ] ), retr ( FILE ), stor ( FILE ), stou ( FILE ), appe (
14938 FILE ), port ( [ PORT ] ), pasv (), pasv_xfer ( SRC_FILE, DEST_SERVER [,
14939 DEST_FILE ] ), pasv_xfer_unique ( SRC_FILE, DEST_SERVER [, DEST_FILE ] ),
14940 pasv_wait ( NON_PASV_SERVER ), abort (), quit ()
14941
14942 =over 4
14943
14944 =item Methods for the adventurous
14945
14946 quot (CMD [,ARGS])
14947
14948 =back
14949
14950 =item THE dataconn CLASS
14951
14952 read ( BUFFER, SIZE [, TIMEOUT ] ), write ( BUFFER, SIZE [, TIMEOUT ] ),
14953 bytes_read (), abort (), close ()
14954
14955 =item UNIMPLEMENTED
14956
14957 B<ALLO>, B<SMNT>, B<HELP>, B<MODE>, B<SYST>, B<STAT>, B<STRU>, B<REIN>
14958
14959 =item REPORTING BUGS
14960
14961 =item AUTHOR
14962
14963 =item SEE ALSO
14964
14965 =item USE EXAMPLES
14966
14967 http://www.csh.rit.edu/~adam/Progs/autoftp-2.0.tar.gz
14968
14969 =item CREDITS
14970
14971 =item COPYRIGHT
14972
14973 =back
14974
14975 =head2 Net::NNTP - NNTP Client class
14976
14977 =over 4
14978
14979 =item SYNOPSIS
14980
14981 =item DESCRIPTION
14982
14983 =item CONSTRUCTOR
14984
14985 new ( [ HOST ] [, OPTIONS ])
14986
14987 =item METHODS
14988
14989 article ( [ MSGID|MSGNUM ], [FH] ), body ( [ MSGID|MSGNUM ], [FH] ), head (
14990 [ MSGID|MSGNUM ], [FH] ), articlefh ( [ MSGID|MSGNUM ] ), bodyfh ( [
14991 MSGID|MSGNUM ] ), headfh ( [ MSGID|MSGNUM ] ), nntpstat ( [ MSGID|MSGNUM ]
14992 ), group ( [ GROUP ] ), ihave ( MSGID [, MESSAGE ]), last (), date (),
14993 postok (), authinfo ( USER, PASS ), list (), newgroups ( SINCE [,
14994 DISTRIBUTIONS ]), newnews ( SINCE [, GROUPS [, DISTRIBUTIONS ]]), next (),
14995 post ( [ MESSAGE ] ), postfh (), slave (), quit ()
14996
14997 =over 4
14998
14999 =item Extension methods
15000
15001 newsgroups ( [ PATTERN ] ), distributions (), subscriptions (),
15002 overview_fmt (), active_times (), active ( [ PATTERN ] ), xgtitle ( PATTERN
15003 ), xhdr ( HEADER, MESSAGE-SPEC ), xover ( MESSAGE-SPEC ), xpath (
15004 MESSAGE-ID ), xpat ( HEADER, PATTERN, MESSAGE-SPEC), xrover, listgroup ( [
15005 GROUP ] ), reader
15006
15007 =back
15008
15009 =item UNSUPPORTED
15010
15011 =item DEFINITIONS
15012
15013 MESSAGE-SPEC, PATTERN, Examples, C<[^]-]>, C<*bdc>, C<[0-9a-zA-Z]>, C<a??d>
15014
15015 =item SEE ALSO
15016
15017 =item AUTHOR
15018
15019 =item COPYRIGHT
15020
15021 =back
15022
15023 =head2 Net::POP3 - Post Office Protocol 3 Client class (RFC1939)
15024
15025 =over 4
15026
15027 =item SYNOPSIS
15028
15029 =item DESCRIPTION
15030
15031 =item EXAMPLES
15032
15033 =item CONSTRUCTOR
15034
15035 new ( [ HOST, ] [ OPTIONS ] )
15036
15037 =item METHODS
15038
15039 user ( USER ), pass ( PASS ), login ( [ USER [, PASS ]] ), apop ( [ USER [,
15040 PASS ]] ), top ( MSGNUM [, NUMLINES ] ), list ( [ MSGNUM ] ), get ( MSGNUM
15041 [, FH ] ), getfh ( MSGNUM ), last (), popstat (), ping ( USER ), uidl ( [
15042 MSGNUM ] ), delete ( MSGNUM ), reset (), quit ()
15043
15044 =item NOTES
15045
15046 =item SEE ALSO
15047
15048 =item AUTHOR
15049
15050 =item COPYRIGHT
15051
15052 =back
15053
15054 =head2 Net::Ping - check a remote host for reachability
15055
15056 =over 4
15057
15058 =item SYNOPSIS
15059
15060 =item DESCRIPTION
15061
15062 =over 4
15063
15064 =item Functions
15065
15066 Net::Ping->new([$proto [, $def_timeout [, $bytes]]]);,
15067 $p->bind($local_addr);, $p->ping($host [, $timeout]);, $p->open($host);,
15068 $p->open($host);, $p->close();, pingecho($host [, $timeout]);
15069
15070 =back
15071
15072 =item WARNING
15073
15074 =item NOTES
15075
15076 =item AUTHORS
15077
15078 =item COPYRIGHT
15079
15080 =back
15081
15082 =head2 Net::SMTP - Simple Mail Transfer Protocol Client
15083
15084 =over 4
15085
15086 =item SYNOPSIS
15087
15088 =item DESCRIPTION
15089
15090 =item EXAMPLES
15091
15092 =item CONSTRUCTOR
15093
15094 new Net::SMTP [ HOST, ] [ OPTIONS ]
15095
15096 =item METHODS
15097
15098 banner (), domain (), hello ( DOMAIN ), etrn ( DOMAIN ), auth ( USERNAME,
15099 PASSWORD ), mail ( ADDRESS [, OPTIONS] ), send ( ADDRESS ), send_or_mail (
15100 ADDRESS ), send_and_mail ( ADDRESS ), reset (), recipient ( ADDRESS [,
15101 ADDRESS [ ...]] [, OPTIONS ] ), to ( ADDRESS [, ADDRESS [...]] ), cc (
15102 ADDRESS [, ADDRESS [...]] ), bcc ( ADDRESS [, ADDRESS [...]] ), data ( [
15103 DATA ] ), expand ( ADDRESS ), verify ( ADDRESS ), help ( [ $subject ] ),
15104 quit ()
15105
15106 =item SEE ALSO
15107
15108 =item AUTHOR
15109
15110 =item COPYRIGHT
15111
15112 =back
15113
15114 =head2 Net::Time - time and daytime network client interface
15115
15116 =over 4
15117
15118 =item SYNOPSIS
15119
15120 =item DESCRIPTION
15121
15122 inet_time ( [HOST [, PROTOCOL [, TIMEOUT]]]), inet_daytime ( [HOST [,
15123 PROTOCOL [, TIMEOUT]]])
15124
15125 =item AUTHOR
15126
15127 =item COPYRIGHT
15128
15129 =back
15130
15131 =head2 Net::hostent - by-name interface to Perl's built-in gethost*()
15132 functions
15133
15134 =over 4
15135
15136 =item SYNOPSIS
15137
15138 =item DESCRIPTION
15139
15140 =item EXAMPLES
15141
15142 =item NOTE
15143
15144 =item AUTHOR
15145
15146 =back
15147
15148 =head2 Net::libnetFAQ, libnetFAQ - libnet Frequently Asked Questions
15149
15150 =over 4
15151
15152 =item DESCRIPTION
15153
15154 =over 4
15155
15156 =item Where to get this document
15157
15158 =item How to contribute to this document
15159
15160 =back
15161
15162 =item Author and Copyright Information
15163
15164 =over 4
15165
15166 =item Disclaimer
15167
15168 =back
15169
15170 =item Obtaining and installing libnet
15171
15172 =over 4
15173
15174 =item What is libnet ?
15175
15176 =item Which version of perl do I need ?
15177
15178 =item What other modules do I need ?
15179
15180 =item What machines support libnet ?
15181
15182 =item Where can I get the latest libnet release
15183
15184 =back
15185
15186 =item Using Net::FTP
15187
15188 =over 4
15189
15190 =item How do I download files from an FTP server ?
15191
15192 =item How do I transfer files in binary mode ?
15193
15194 =item How can I get the size of a file on a remote FTP server ?
15195
15196 =item How can I get the modification time of a file on a remote FTP server
15197 ?
15198
15199 =item How can I change the permissions of a file on a remote server ?
15200
15201 =item Can I do a reget operation like the ftp command ?
15202
15203 =item How do I get a directory listing from an FTP server ?
15204
15205 =item Changing directory to "" does not fail ?
15206
15207 =item I am behind a SOCKS firewall, but the Firewall option does not work ?
15208
15209 =item I am behind an FTP proxy firewall, but cannot access machines outside
15210 ?
15211
15212 =item My ftp proxy firewall does not listen on port 21
15213
15214 =item Is it possible to change the file permissions of a file on an FTP
15215 server ?
15216
15217 =item I have seen scripts call a method message, but cannot find it
15218 documented ?
15219
15220 =item Why does Net::FTP not implement mput and mget methods
15221
15222 =back
15223
15224 =item Using Net::SMTP
15225
15226 =over 4
15227
15228 =item Why can't the part of an Email address after the @ be used as the
15229 hostname ?
15230
15231 =item Why does Net::SMTP not do DNS MX lookups ?
15232
15233 =item The verify method always returns true ?
15234
15235 =back
15236
15237 =item Debugging scripts
15238
15239 =over 4
15240
15241 =item How can I debug my scripts that use Net::* modules ?
15242
15243 =back
15244
15245 =item AUTHOR AND COPYRIGHT
15246
15247 =back
15248
15249 =head2 Net::netent - by-name interface to Perl's built-in getnet*()
15250 functions
15251
15252 =over 4
15253
15254 =item SYNOPSIS
15255
15256 =item DESCRIPTION
15257
15258 =item EXAMPLES
15259
15260 =item NOTE
15261
15262 =item AUTHOR
15263
15264 =back
15265
15266 =head2 Net::protoent - by-name interface to Perl's built-in getproto*()
15267 functions
15268
15269 =over 4
15270
15271 =item SYNOPSIS
15272
15273 =item DESCRIPTION
15274
15275 =item NOTE
15276
15277 =item AUTHOR
15278
15279 =back
15280
15281 =head2 Net::servent - by-name interface to Perl's built-in getserv*()
15282 functions
15283
15284 =over 4
15285
15286 =item SYNOPSIS
15287
15288 =item DESCRIPTION
15289
15290 =item EXAMPLES
15291
15292 =item NOTE
15293
15294 =item AUTHOR
15295
15296 =back
15297
15298 =head2 Netrc, Net::Netrc - OO interface to users netrc file
15299
15300 =over 4
15301
15302 =item SYNOPSIS
15303
15304 =item DESCRIPTION
15305
15306 =item THE .netrc FILE
15307
15308 machine name, default, login name, password string, account string, macdef
15309 name
15310
15311 =item CONSTRUCTOR
15312
15313 lookup ( MACHINE [, LOGIN ])
15314
15315 =item METHODS
15316
15317 login (), password (), account (), lpa ()
15318
15319 =item AUTHOR
15320
15321 =item SEE ALSO
15322
15323 =item COPYRIGHT
15324
15325 =back
15326
15327 =head2 O - Generic interface to Perl Compiler backends
15328
15329 =over 4
15330
15331 =item SYNOPSIS
15332
15333 =item DESCRIPTION
15334
15335 =item CONVENTIONS
15336
15337 =item IMPLEMENTATION
15338
15339 =item AUTHOR
15340
15341 =back
15342
15343 =head2 ODBM_File - Tied access to odbm files
15344
15345 =over 4
15346
15347 =item SYNOPSIS
15348
15349 =item DESCRIPTION
15350
15351 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
15352
15353 =item DIAGNOSTICS
15354
15355 =over 4
15356
15357 =item C<odbm store returned -1, errno 22, key "..." at ...>
15358
15359 =back
15360
15361 =item BUGS AND WARNINGS
15362
15363 =back
15364
15365 =head2 Opcode - Disable named opcodes when compiling perl code
15366
15367 =over 4
15368
15369 =item SYNOPSIS
15370
15371 =item DESCRIPTION
15372
15373 =item NOTE
15374
15375 =item WARNING
15376
15377 =item Operator Names and Operator Lists
15378
15379 an operator name (opname), an operator tag name (optag), a negated opname
15380 or optag, an operator set (opset)
15381
15382 =item Opcode Functions
15383
15384 opcodes, opset (OP, ...), opset_to_ops (OPSET), opset_to_hex (OPSET),
15385 full_opset, empty_opset, invert_opset (OPSET), verify_opset (OPSET, ...),
15386 define_optag (OPTAG, OPSET), opmask_add (OPSET), opmask, opdesc (OP, ...),
15387 opdump (PAT)
15388
15389 =item Manipulating Opsets
15390
15391 =item TO DO (maybe)
15392
15393 =back
15394
15395 =over 4
15396
15397 =item Predefined Opcode Tags
15398
15399 :base_core, :base_mem, :base_loop, :base_io, :base_orig, :base_math,
15400 :base_thread, :default, :filesys_read, :sys_db, :browse, :filesys_open,
15401 :filesys_write, :subprocess, :ownprocess, :others, :still_to_be_decided,
15402 :dangerous
15403
15404 =item SEE ALSO
15405
15406 =item AUTHORS
15407
15408 =back
15409
15410 =head2 Opcode::Safe, Safe - Compile and execute code in restricted
15411 compartments
15412
15413 =over 4
15414
15415 =item SYNOPSIS
15416
15417 =item DESCRIPTION
15418
15419 a new namespace, an operator mask
15420
15421 =item WARNING
15422
15423 =over 4
15424
15425 =item RECENT CHANGES
15426
15427 =item Methods in class Safe
15428
15429 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
15430 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
15431 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
15432 root (NAMESPACE), mask (MASK)
15433
15434 =item Some Safety Issues
15435
15436 Memory, CPU, Snooping, Signals, State Changes
15437
15438 =item AUTHOR
15439
15440 =back
15441
15442 =back
15443
15444 =head2 Opcode::ops, ops - Perl pragma to restrict unsafe operations when
15445 compiling
15446
15447 =over 4
15448
15449 =item SYNOPSIS  
15450
15451 =item DESCRIPTION
15452
15453 =item SEE ALSO
15454
15455 =back
15456
15457 =head2 POSIX - Perl interface to IEEE Std 1003.1
15458
15459 =over 4
15460
15461 =item SYNOPSIS
15462
15463 =item DESCRIPTION
15464
15465 =item NOTE
15466
15467 =item CAVEATS 
15468
15469 =item FUNCTIONS
15470
15471 _exit, abort, abs, access, acos, alarm, asctime, asin, assert, atan, atan2,
15472 atexit, atof, atoi, atol, bsearch, calloc, ceil, chdir, chmod, chown,
15473 clearerr, clock, close, closedir, cos, cosh, creat, ctermid, ctime,
15474 cuserid, difftime, div, dup, dup2, errno, execl, execle, execlp, execv,
15475 execve, execvp, exit, exp, fabs, fclose, fcntl, fdopen, feof, ferror,
15476 fflush, fgetc, fgetpos, fgets, fileno, floor, fmod, fopen, fork, fpathconf,
15477 fprintf, fputc, fputs, fread, free, freopen, frexp, fscanf, fseek, fsetpos,
15478 fstat, ftell, fwrite, getc, getchar, getcwd, getegid, getenv, geteuid,
15479 getgid, getgrgid, getgrnam, getgroups, getlogin, getpgrp, getpid, getppid,
15480 getpwnam, getpwuid, gets, getuid, gmtime, isalnum, isalpha, isatty,
15481 iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace, isupper,
15482 isxdigit, kill, labs, ldexp, ldiv, link, localeconv, localtime, log, log10,
15483 longjmp, lseek, malloc, mblen, mbstowcs, mbtowc, memchr, memcmp, memcpy,
15484 memmove, memset, mkdir, mkfifo, mktime, modf, nice, offsetof, open,
15485 opendir, pathconf, pause, perror, pipe, pow, printf, putc, putchar, puts,
15486 qsort, raise, rand, read, readdir, realloc, remove, rename, rewind,
15487 rewinddir, rmdir, scanf, setgid, setjmp, setlocale, setpgid, setsid,
15488 setuid, sigaction, siglongjmp, sigpending, sigprocmask, sigsetjmp,
15489 sigsuspend, sin, sinh, sleep, sprintf, sqrt, srand, sscanf, stat, strcat,
15490 strchr, strcmp, strcoll, strcpy, strcspn, strerror, strftime, strlen,
15491 strncat, strncmp, strncpy, strpbrk, strrchr, strspn, strstr, strtod,
15492 strtok, strtol, strtoul, strxfrm, sysconf, system, tan, tanh, tcdrain,
15493 tcflow, tcflush, tcgetpgrp, tcsendbreak, tcsetpgrp, time, times, tmpfile,
15494 tmpnam, tolower, toupper, ttyname, tzname, tzset, umask, uname, ungetc,
15495 unlink, utime, vfprintf, vprintf, vsprintf, wait, waitpid, wcstombs,
15496 wctomb, write
15497
15498 =item CLASSES
15499
15500 =over 4
15501
15502 =item POSIX::SigAction
15503
15504 new
15505
15506 =item POSIX::SigSet
15507
15508 new, addset, delset, emptyset, fillset, ismember
15509
15510 =item POSIX::Termios
15511
15512 new, getattr, getcc, getcflag, getiflag, getispeed, getlflag, getoflag,
15513 getospeed, setattr, setcc, setcflag, setiflag, setispeed, setlflag,
15514 setoflag, setospeed, Baud rate values, Terminal interface values, c_cc
15515 field values, c_cflag field values, c_iflag field values, c_lflag field
15516 values, c_oflag field values
15517
15518 =back
15519
15520 =item PATHNAME CONSTANTS
15521
15522 Constants
15523
15524 =item POSIX CONSTANTS
15525
15526 Constants
15527
15528 =item SYSTEM CONFIGURATION
15529
15530 Constants
15531
15532 =item ERRNO
15533
15534 Constants
15535
15536 =item FCNTL
15537
15538 Constants
15539
15540 =item FLOAT
15541
15542 Constants
15543
15544 =item LIMITS
15545
15546 Constants
15547
15548 =item LOCALE
15549
15550 Constants
15551
15552 =item MATH
15553
15554 Constants
15555
15556 =item SIGNAL
15557
15558 Constants
15559
15560 =item STAT
15561
15562 Constants, Macros
15563
15564 =item STDLIB
15565
15566 Constants
15567
15568 =item STDIO
15569
15570 Constants
15571
15572 =item TIME
15573
15574 Constants
15575
15576 =item UNISTD
15577
15578 Constants
15579
15580 =item WAIT
15581
15582 Constants, WNOHANG, WUNTRACED, Macros, WIFEXITED, WEXITSTATUS, WIFSIGNALED,
15583 WTERMSIG, WIFSTOPPED, WSTOPSIG
15584
15585 =back
15586
15587 =head2 PerlIO - On demand loader for PerlIO layers and root of PerlIO::*
15588 name space
15589
15590 =over 4
15591
15592 =item SYNOPSIS
15593
15594 =item DESCRIPTION
15595
15596 unix, stdio, perlio, crlf, utf8, raw
15597
15598 =over 4
15599
15600 =item Defaults and how to override them
15601
15602 =back
15603
15604 =item AUTHOR
15605
15606 =item SEE ALSO
15607
15608 =back
15609
15610 =head2 PerlIO::Scalar - support module for in-memory IO.
15611
15612 =over 4
15613
15614 =item SYNOPSIS
15615
15616 =item DESCRIPTION
15617
15618 =back
15619
15620 =head2 PerlIO::Via - Helper class for PerlIO layers implemented in perl
15621
15622 =over 4
15623
15624 =item SYNOPSIS
15625
15626 =item DESCRIPTION
15627
15628 $class->PUSHED([$mode[,$fh]]), $obj->POPPED([$fh]),
15629 $class->OPEN($path,$mode[,$fh]), $class->FDOPEN($fd),
15630 $class->SYSOPEN($path,$imode,$perm,$fh), $obj->FILENO($fh),
15631 $obj->READ($buffer,$len,$fh), $obj->WRITE($buffer,$fh), $obj->FILL($fh),
15632 $obj->CLOSE($fh), $obj->SEEK($posn,$whence,$fh), $obj->TELL($fh),
15633 $obj->UNREAD($buffer,$fh), $obj->FLUSH($fh), $obj->SETLINEBUF($fh),
15634 $obj->CLEARERR($fh), $obj->ERROR($fh), $obj->EOF($fh)
15635
15636 =over 4
15637
15638 =item Example - a Hexadecimal Handle
15639
15640 =back
15641
15642 =back
15643
15644 =head2 Pod::Checker, podchecker() - check pod documents for syntax errors
15645
15646 =over 4
15647
15648 =item SYNOPSIS
15649
15650 =item OPTIONS/ARGUMENTS
15651
15652 =over 4
15653
15654 =item podchecker()
15655
15656 B<-warnings> =E<gt> I<val>
15657
15658 =back
15659
15660 =item DESCRIPTION
15661
15662 =item DIAGNOSTICS
15663
15664 =over 4
15665
15666 =item Errors
15667
15668 empty =headn, =over on line I<N> without closing =back, =item without
15669 previous =over, =back without previous =over, No argument for =begin, =end
15670 without =begin, Nested =begin's, =for without formatter specification,
15671 unresolved internal link I<NAME>, Unknown command "I<CMD>", Unknown
15672 interior-sequence "I<SEQ>", nested commands
15673 I<CMD>E<lt>...I<CMD>E<lt>...E<gt>...E<gt>, garbled entity I<STRING>, Entity
15674 number out of range, malformed link LE<lt>E<gt>, nonempty ZE<lt>E<gt>,
15675 empty XE<lt>E<gt>, Spurious text after =pod / =cut, Spurious character(s)
15676 after =back
15677
15678 =item Warnings
15679
15680 multiple occurence of link target I<name>, line containing nothing but
15681 whitespace in paragraph, file does not start with =head, previous =item has
15682 no contents, preceding non-item paragraph(s), =item type mismatch (I<one>
15683 vs. I<two>), I<N> unescaped C<E<lt>E<gt>> in paragraph, Unknown entity, No
15684 items in =over, No argument for =item, empty section in previous paragraph,
15685 Verbatim paragraph in NAME section
15686
15687 =item Hyperlinks
15688
15689 ignoring leading/trailing whitespace in link, (section) in '$page'
15690 deprecated, alternative text/node '%s' contains non-escaped | or /
15691
15692 =back
15693
15694 =item RETURN VALUE
15695
15696 =item EXAMPLES
15697
15698 =item INTERFACE
15699
15700 =back
15701
15702 C<Pod::Checker-E<gt>new( %options )>
15703
15704 C<$checker-E<gt>poderror( @args )>, C<$checker-E<gt>poderror( {%opts},
15705 @args )>
15706
15707 C<$checker-E<gt>num_errors()>
15708
15709 C<$checker-E<gt>name()>
15710
15711 C<$checker-E<gt>node()>
15712
15713 C<$checker-E<gt>idx()>
15714
15715 C<$checker-E<gt>hyperlink()>
15716
15717 =over 4
15718
15719 =item AUTHOR
15720
15721 =back
15722
15723 =head2 Pod::Find - find POD documents in directory trees
15724
15725 =over 4
15726
15727 =item SYNOPSIS
15728
15729 =item DESCRIPTION
15730
15731 =back
15732
15733 =over 4
15734
15735 =item C<pod_find( { %opts } , @directories )>
15736
15737 C<-verbose =E<gt> 1>, C<-perl =E<gt> 1>, C<-script =E<gt> 1>, C<-inc =E<gt>
15738 1>
15739
15740 =back
15741
15742 =over 4
15743
15744 =item C<simplify_name( $str )>
15745
15746 =back
15747
15748 =over 4
15749
15750 =item C<pod_where( { %opts }, $pod )>
15751
15752 C<-inc =E<gt> 1>, C<-dirs =E<gt> [ $dir1, $dir2, ... ]>, C<-verbose =E<gt>
15753 1>
15754
15755 =back
15756
15757 =over 4
15758
15759 =item C<contains_pod( $file , $verbose )>
15760
15761 =back
15762
15763 =over 4
15764
15765 =item AUTHOR
15766
15767 =item SEE ALSO
15768
15769 =back
15770
15771 =head2 Pod::Html - module to convert pod files to HTML
15772
15773 =over 4
15774
15775 =item SYNOPSIS
15776
15777 =item DESCRIPTION
15778
15779 =item ARGUMENTS
15780
15781 backlink, cachedir, css, flush, header, help, htmldir, htmlroot, index,
15782 infile, libpods, netscape, outfile, podpath, podroot, quiet, recurse,
15783 title, verbose
15784
15785 =item EXAMPLE
15786
15787 =item ENVIRONMENT
15788
15789 =item AUTHOR
15790
15791 =item SEE ALSO
15792
15793 =item COPYRIGHT
15794
15795 =back
15796
15797 =head2 Pod::InputObjects - objects representing POD input paragraphs,
15798 commands, etc.
15799
15800 =over 4
15801
15802 =item SYNOPSIS
15803
15804 =item REQUIRES
15805
15806 =item EXPORTS
15807
15808 =item DESCRIPTION
15809
15810 package B<Pod::InputSource>, package B<Pod::Paragraph>, package
15811 B<Pod::InteriorSequence>, package B<Pod::ParseTree>
15812
15813 =back
15814
15815 =over 4
15816
15817 =item B<Pod::InputSource>
15818
15819 =back
15820
15821 =over 4
15822
15823 =item B<new()>
15824
15825 =back
15826
15827 =over 4
15828
15829 =item B<name()>
15830
15831 =back
15832
15833 =over 4
15834
15835 =item B<handle()>
15836
15837 =back
15838
15839 =over 4
15840
15841 =item B<was_cutting()>
15842
15843 =back
15844
15845 =over 4
15846
15847 =item B<Pod::Paragraph>
15848
15849 =back
15850
15851 =over 4
15852
15853 =item Pod::Paragraph-E<gt>B<new()>
15854
15855 =back
15856
15857 =over 4
15858
15859 =item $pod_para-E<gt>B<cmd_name()>
15860
15861 =back
15862
15863 =over 4
15864
15865 =item $pod_para-E<gt>B<text()>
15866
15867 =back
15868
15869 =over 4
15870
15871 =item $pod_para-E<gt>B<raw_text()>
15872
15873 =back
15874
15875 =over 4
15876
15877 =item $pod_para-E<gt>B<cmd_prefix()>
15878
15879 =back
15880
15881 =over 4
15882
15883 =item $pod_para-E<gt>B<cmd_separator()>
15884
15885 =back
15886
15887 =over 4
15888
15889 =item $pod_para-E<gt>B<parse_tree()>
15890
15891 =back
15892
15893 =over 4
15894
15895 =item $pod_para-E<gt>B<file_line()>
15896
15897 =back
15898
15899 =over 4
15900
15901 =item B<Pod::InteriorSequence>
15902
15903 =back
15904
15905 =over 4
15906
15907 =item Pod::InteriorSequence-E<gt>B<new()>
15908
15909 =back
15910
15911 =over 4
15912
15913 =item $pod_seq-E<gt>B<cmd_name()>
15914
15915 =back
15916
15917 =over 4
15918
15919 =item $pod_seq-E<gt>B<prepend()>
15920
15921 =back
15922
15923 =over 4
15924
15925 =item $pod_seq-E<gt>B<append()>
15926
15927 =back
15928
15929 =over 4
15930
15931 =item $pod_seq-E<gt>B<nested()>
15932
15933 =back
15934
15935 =over 4
15936
15937 =item $pod_seq-E<gt>B<raw_text()>
15938
15939 =back
15940
15941 =over 4
15942
15943 =item $pod_seq-E<gt>B<left_delimiter()>
15944
15945 =back
15946
15947 =over 4
15948
15949 =item $pod_seq-E<gt>B<right_delimiter()>
15950
15951 =back
15952
15953 =over 4
15954
15955 =item $pod_seq-E<gt>B<parse_tree()>
15956
15957 =back
15958
15959 =over 4
15960
15961 =item $pod_seq-E<gt>B<file_line()>
15962
15963 =back
15964
15965 =over 4
15966
15967 =item Pod::InteriorSequence::B<DESTROY()>
15968
15969 =back
15970
15971 =over 4
15972
15973 =item B<Pod::ParseTree>
15974
15975 =back
15976
15977 =over 4
15978
15979 =item Pod::ParseTree-E<gt>B<new()>
15980
15981 =back
15982
15983 =over 4
15984
15985 =item $ptree-E<gt>B<top()>
15986
15987 =back
15988
15989 =over 4
15990
15991 =item $ptree-E<gt>B<children()>
15992
15993 =back
15994
15995 =over 4
15996
15997 =item $ptree-E<gt>B<prepend()>
15998
15999 =back
16000
16001 =over 4
16002
16003 =item $ptree-E<gt>B<append()>
16004
16005 =back
16006
16007 =over 4
16008
16009 =item $ptree-E<gt>B<raw_text()>
16010
16011 =back
16012
16013 =over 4
16014
16015 =item Pod::ParseTree::B<DESTROY()>
16016
16017 =back
16018
16019 =over 4
16020
16021 =item SEE ALSO
16022
16023 =item AUTHOR
16024
16025 =back
16026
16027 =head2 Pod::LaTeX - Convert Pod data to formatted Latex
16028
16029 =over 4
16030
16031 =item SYNOPSIS
16032
16033 =item DESCRIPTION
16034
16035 =back
16036
16037 =over 4
16038
16039 =item OBJECT METHODS
16040
16041 C<initialize>
16042
16043 =back
16044
16045 =over 4
16046
16047 =item Data Accessors
16048
16049 B<AddPreamble>
16050
16051 =back
16052
16053 B<AddPostamble>
16054
16055 B<Head1Level>
16056
16057 B<Label>
16058
16059 B<LevelNoNum>
16060
16061 B<MakeIndex>
16062
16063 B<ReplaceNAMEwithSection>
16064
16065 B<StartWithNewPage>
16066
16067 B<TableOfContents>
16068
16069 B<UniqueLabels>
16070
16071 B<UserPreamble>
16072
16073 B<UserPostamble>
16074
16075 B<Lists>
16076
16077 =over 4
16078
16079 =item Subclassed methods
16080
16081 =back
16082
16083 B<begin_pod>
16084
16085 B<end_pod>
16086
16087 B<command>
16088
16089 B<verbatim>
16090
16091 B<textblock>
16092
16093 B<interior_sequence>
16094
16095 =over 4
16096
16097 =item List Methods
16098
16099 B<begin_list>
16100
16101 =back
16102
16103 B<end_list>
16104
16105 B<add_item>
16106
16107 =over 4
16108
16109 =item Methods for headings
16110
16111 B<head>
16112
16113 =back
16114
16115 =over 4
16116
16117 =item Internal methods
16118
16119 B<_output>
16120
16121 =back
16122
16123 B<_replace_special_chars>
16124
16125 B<_replace_special_chars_late>
16126
16127 B<_create_label>
16128
16129 B<_create_index>
16130
16131 B<_clean_latex_commands>
16132
16133 B<_split_delimited>
16134
16135 =over 4
16136
16137 =item NOTES
16138
16139 =item SEE ALSO
16140
16141 =item AUTHORS
16142
16143 =item COPYRIGHT
16144
16145 =item REVISION
16146
16147 =back
16148
16149 =head2 Pod::Man - Convert POD data to formatted *roff input
16150
16151 =over 4
16152
16153 =item SYNOPSIS
16154
16155 =item DESCRIPTION
16156
16157 center, date, fixed, fixedbold, fixeditalic, fixedbolditalic, name, quotes,
16158 release, section
16159
16160 =item DIAGNOSTICS
16161
16162 roff font should be 1 or 2 chars, not "%s", Invalid link %s, Invalid quote
16163 specification "%s", %s:%d: Unknown command paragraph "%s", %s:%d: Unknown
16164 escape EE<lt>%sE<gt>, %s:%d: Unknown formatting code %s, %s:%d: Unmatched
16165 =back
16166
16167 =item BUGS
16168
16169 =item CAVEATS
16170
16171 =item SEE ALSO
16172
16173 =item AUTHOR
16174
16175 =item COPYRIGHT AND LICENSE
16176
16177 =back
16178
16179 =head2 Pod::ParseLink -- Parse an LE<lt>E<gt> formatting code in POD text
16180
16181 =over 4
16182
16183 =item SYNOPSIS
16184
16185 =item DESCRIPTION
16186
16187 =item AUTHOR
16188
16189 =item COPYRIGHT AND LICENSE
16190
16191 =back
16192
16193 =head2 Pod::ParseUtils - helpers for POD parsing and conversion
16194
16195 =over 4
16196
16197 =item SYNOPSIS
16198
16199 =item DESCRIPTION
16200
16201 =back
16202
16203 =over 4
16204
16205 =item Pod::List
16206
16207 Pod::List-E<gt>new()
16208
16209 =back
16210
16211 $list-E<gt>file()
16212
16213 $list-E<gt>start()
16214
16215 $list-E<gt>indent()
16216
16217 $list-E<gt>type()
16218
16219 $list-E<gt>rx()
16220
16221 $list-E<gt>item()
16222
16223 $list-E<gt>parent()
16224
16225 $list-E<gt>tag()
16226
16227 =over 4
16228
16229 =item Pod::Hyperlink
16230
16231 Pod::Hyperlink-E<gt>new()
16232
16233 =back
16234
16235 $link-E<gt>parse($string)
16236
16237 $link-E<gt>markup($string)
16238
16239 $link-E<gt>text()
16240
16241 $link-E<gt>warning()
16242
16243 $link-E<gt>file(), $link-E<gt>line()
16244
16245 $link-E<gt>page()
16246
16247 $link-E<gt>node()
16248
16249 $link-E<gt>alttext()
16250
16251 $link-E<gt>type()
16252
16253 $link-E<gt>link()
16254
16255 =over 4
16256
16257 =item Pod::Cache
16258
16259 Pod::Cache-E<gt>new()
16260
16261 =back
16262
16263 $cache-E<gt>item()
16264
16265 $cache-E<gt>find_page($name)
16266
16267 =over 4
16268
16269 =item Pod::Cache::Item
16270
16271 Pod::Cache::Item-E<gt>new()
16272
16273 =back
16274
16275 $cacheitem-E<gt>page()
16276
16277 $cacheitem-E<gt>description()
16278
16279 $cacheitem-E<gt>path()
16280
16281 $cacheitem-E<gt>file()
16282
16283 $cacheitem-E<gt>nodes()
16284
16285 $cacheitem-E<gt>find_node($name)
16286
16287 $cacheitem-E<gt>idx()
16288
16289 =over 4
16290
16291 =item AUTHOR
16292
16293 =item SEE ALSO
16294
16295 =back
16296
16297 =head2 Pod::Parser - base class for creating POD filters and translators
16298
16299 =over 4
16300
16301 =item SYNOPSIS
16302
16303 =item REQUIRES
16304
16305 =item EXPORTS
16306
16307 =item DESCRIPTION
16308
16309 =item QUICK OVERVIEW
16310
16311 =item PARSING OPTIONS
16312
16313 B<-want_nonPODs> (default: unset), B<-process_cut_cmd> (default: unset),
16314 B<-warnings> (default: unset)
16315
16316 =back
16317
16318 =over 4
16319
16320 =item RECOMMENDED SUBROUTINE/METHOD OVERRIDES
16321
16322 =back
16323
16324 =over 4
16325
16326 =item B<command()>
16327
16328 C<$cmd>, C<$text>, C<$line_num>, C<$pod_para>
16329
16330 =back
16331
16332 =over 4
16333
16334 =item B<verbatim()>
16335
16336 C<$text>, C<$line_num>, C<$pod_para>
16337
16338 =back
16339
16340 =over 4
16341
16342 =item B<textblock()>
16343
16344 C<$text>, C<$line_num>, C<$pod_para>
16345
16346 =back
16347
16348 =over 4
16349
16350 =item B<interior_sequence()>
16351
16352 =back
16353
16354 =over 4
16355
16356 =item OPTIONAL SUBROUTINE/METHOD OVERRIDES
16357
16358 =back
16359
16360 =over 4
16361
16362 =item B<new()>
16363
16364 =back
16365
16366 =over 4
16367
16368 =item B<initialize()>
16369
16370 =back
16371
16372 =over 4
16373
16374 =item B<begin_pod()>
16375
16376 =back
16377
16378 =over 4
16379
16380 =item B<begin_input()>
16381
16382 =back
16383
16384 =over 4
16385
16386 =item B<end_input()>
16387
16388 =back
16389
16390 =over 4
16391
16392 =item B<end_pod()>
16393
16394 =back
16395
16396 =over 4
16397
16398 =item B<preprocess_line()>
16399
16400 =back
16401
16402 =over 4
16403
16404 =item B<preprocess_paragraph()>
16405
16406 =back
16407
16408 =over 4
16409
16410 =item METHODS FOR PARSING AND PROCESSING
16411
16412 =back
16413
16414 =over 4
16415
16416 =item B<parse_text()>
16417
16418 B<-expand_seq> =E<gt> I<code-ref>|I<method-name>, B<-expand_text> =E<gt>
16419 I<code-ref>|I<method-name>, B<-expand_ptree> =E<gt>
16420 I<code-ref>|I<method-name>
16421
16422 =back
16423
16424 =over 4
16425
16426 =item B<interpolate()>
16427
16428 =back
16429
16430 =over 4
16431
16432 =item B<parse_paragraph()>
16433
16434 =back
16435
16436 =over 4
16437
16438 =item B<parse_from_filehandle()>
16439
16440 =back
16441
16442 =over 4
16443
16444 =item B<parse_from_file()>
16445
16446 =back
16447
16448 =over 4
16449
16450 =item ACCESSOR METHODS
16451
16452 =back
16453
16454 =over 4
16455
16456 =item B<errorsub()>
16457
16458 =back
16459
16460 =over 4
16461
16462 =item B<cutting()>
16463
16464 =back
16465
16466 =over 4
16467
16468 =item B<parseopts()>
16469
16470 =back
16471
16472 =over 4
16473
16474 =item B<output_file()>
16475
16476 =back
16477
16478 =over 4
16479
16480 =item B<output_handle()>
16481
16482 =back
16483
16484 =over 4
16485
16486 =item B<input_file()>
16487
16488 =back
16489
16490 =over 4
16491
16492 =item B<input_handle()>
16493
16494 =back
16495
16496 =over 4
16497
16498 =item B<input_streams()>
16499
16500 =back
16501
16502 =over 4
16503
16504 =item B<top_stream()>
16505
16506 =back
16507
16508 =over 4
16509
16510 =item PRIVATE METHODS AND DATA
16511
16512 =back
16513
16514 =over 4
16515
16516 =item B<_push_input_stream()>
16517
16518 =back
16519
16520 =over 4
16521
16522 =item B<_pop_input_stream()>
16523
16524 =back
16525
16526 =over 4
16527
16528 =item TREE-BASED PARSING
16529
16530 =item SEE ALSO
16531
16532 =item AUTHOR
16533
16534 =back
16535
16536 =head2 Pod::Plainer - Perl extension for converting Pod to old style Pod.
16537
16538 =over 4
16539
16540 =item SYNOPSIS
16541
16542 =item DESCRIPTION
16543
16544 =over 4
16545
16546 =item EXPORT
16547
16548 =back
16549
16550 =item AUTHOR
16551
16552 =item SEE ALSO
16553
16554 =back
16555
16556 =head2 Pod::Select, podselect() - extract selected sections of POD from
16557 input
16558
16559 =over 4
16560
16561 =item SYNOPSIS
16562
16563 =item REQUIRES
16564
16565 =item EXPORTS
16566
16567 =item DESCRIPTION
16568
16569 =item SECTION SPECIFICATIONS
16570
16571 =item RANGE SPECIFICATIONS
16572
16573 =back
16574
16575 =over 4
16576
16577 =item OBJECT METHODS
16578
16579 =back
16580
16581 =over 4
16582
16583 =item B<curr_headings()>
16584
16585 =back
16586
16587 =over 4
16588
16589 =item B<select()>
16590
16591 =back
16592
16593 =over 4
16594
16595 =item B<add_selection()>
16596
16597 =back
16598
16599 =over 4
16600
16601 =item B<clear_selections()>
16602
16603 =back
16604
16605 =over 4
16606
16607 =item B<match_section()>
16608
16609 =back
16610
16611 =over 4
16612
16613 =item B<is_selected()>
16614
16615 =back
16616
16617 =over 4
16618
16619 =item EXPORTED FUNCTIONS
16620
16621 =back
16622
16623 =over 4
16624
16625 =item B<podselect()>
16626
16627 B<-output>, B<-sections>, B<-ranges>
16628
16629 =back
16630
16631 =over 4
16632
16633 =item PRIVATE METHODS AND DATA
16634
16635 =back
16636
16637 =over 4
16638
16639 =item B<_compile_section_spec()>
16640
16641 =back
16642
16643 =over 4
16644
16645 =item $self->{_SECTION_HEADINGS}
16646
16647 =back
16648
16649 =over 4
16650
16651 =item $self->{_SELECTED_SECTIONS}
16652
16653 =back
16654
16655 =over 4
16656
16657 =item SEE ALSO
16658
16659 =item AUTHOR
16660
16661 =back
16662
16663 =head2 Pod::Text - Convert POD data to formatted ASCII text
16664
16665 =over 4
16666
16667 =item SYNOPSIS
16668
16669 =item DESCRIPTION
16670
16671 alt, code, indent, loose, quotes, sentence, width
16672
16673 =item DIAGNOSTICS
16674
16675 Bizarre space in item, Item called without tag, Can't open %s for reading:
16676 %s, Invalid quote specification "%s", %s:%d: Unknown command paragraph: %s,
16677 %s:%d: Unknown escape: %s, %s:%d: Unknown formatting code: %s, %s:%d:
16678 Unmatched =back
16679
16680 =item RESTRICTIONS
16681
16682 =item NOTES
16683
16684 =item SEE ALSO
16685
16686 =item AUTHOR
16687
16688 =item COPYRIGHT AND LICENSE
16689
16690 =back
16691
16692 =head2 Pod::Text::Color - Convert POD data to formatted color ASCII text
16693
16694 =over 4
16695
16696 =item SYNOPSIS
16697
16698 =item DESCRIPTION
16699
16700 =item BUGS
16701
16702 =item SEE ALSO
16703
16704 =item AUTHOR
16705
16706 =item COPYRIGHT AND LICENSE
16707
16708 =back
16709
16710 =head2 Pod::Text::Overstrike - Convert POD data to formatted overstrike
16711 text
16712
16713 =over 4
16714
16715 =item SYNOPSIS
16716
16717 =item DESCRIPTION
16718
16719 =item BUGS
16720
16721 =item SEE ALSO
16722
16723 =item AUTHOR
16724
16725 =item COPYRIGHT AND LICENSE
16726
16727 =back
16728
16729 =head2 Pod::Text::Termcap, Pod::Text::Color - Convert POD data to ASCII
16730 text with format escapes
16731
16732 =over 4
16733
16734 =item SYNOPSIS
16735
16736 =item DESCRIPTION
16737
16738 =item NOTES
16739
16740 =item SEE ALSO
16741
16742 =item AUTHOR
16743
16744 =item COPYRIGHT AND LICENSE
16745
16746 =back
16747
16748 =head2 Pod::Usage, pod2usage() - print a usage message from embedded pod
16749 documentation
16750
16751 =over 4
16752
16753 =item SYNOPSIS
16754
16755 =item ARGUMENTS
16756
16757 C<-message>, C<-msg>, C<-exitval>, C<-verbose>, C<-output>, C<-input>,
16758 C<-pathlist>
16759
16760 =item DESCRIPTION
16761
16762 =item EXAMPLES
16763
16764 =over 4
16765
16766 =item Recommended Use
16767
16768 =back
16769
16770 =item CAVEATS
16771
16772 =item AUTHOR
16773
16774 =item ACKNOWLEDGEMENTS
16775
16776 =back
16777
16778 =head2 Pod::t::basic, basic.pod - Test of various basic POD features in
16779 translators.
16780
16781 =over 4
16782
16783 =item HEADINGS
16784
16785 =item This C<is> a "level 1" heading
16786
16787 =over 4
16788
16789 =item ``Level'' "2 I<heading>
16790
16791 =back
16792
16793 =item This C<is> a "level 1" heading
16794
16795 =over 4
16796
16797 =item ``Level'' 2 I<heading>
16798
16799 =back
16800
16801 =item LINKS
16802
16803 =item OVER AND ITEMS
16804
16805 This  is a test, a, b, a, b, c, d, "foo", B<bar>, C<baz>, Some longer item
16806 text
16807
16808 =item FORMATTING CODES
16809
16810 E<amp>, E<apos>, E<lt>, E<gt>, E<quot>, E<sol>
16811
16812 =item VERBATIM
16813
16814 =item CONCLUSION
16815
16816 =back
16817
16818 =head2 SDBM_File - Tied access to sdbm files
16819
16820 =over 4
16821
16822 =item SYNOPSIS
16823
16824 =item DESCRIPTION
16825
16826 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
16827
16828 =item DIAGNOSTICS
16829
16830 =over 4
16831
16832 =item C<sdbm store returned -1, errno 22, key "..." at ...>
16833
16834 =back
16835
16836 =item BUGS AND WARNINGS
16837
16838 =back
16839
16840 =head2 Safe - Compile and execute code in restricted compartments
16841
16842 =over 4
16843
16844 =item SYNOPSIS
16845
16846 =item DESCRIPTION
16847
16848 a new namespace, an operator mask
16849
16850 =item WARNING
16851
16852 =over 4
16853
16854 =item RECENT CHANGES
16855
16856 =item Methods in class Safe
16857
16858 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
16859 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
16860 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
16861 root (NAMESPACE), mask (MASK)
16862
16863 =item Some Safety Issues
16864
16865 Memory, CPU, Snooping, Signals, State Changes
16866
16867 =item AUTHOR
16868
16869 =back
16870
16871 =back
16872
16873 =head2 Scalar::Util - A selection of general-utility scalar subroutines
16874
16875 =over 4
16876
16877 =item SYNOPSIS
16878
16879 =item DESCRIPTION
16880
16881 blessed EXPR, dualvar NUM, STRING, isweak EXPR, readonly SCALAR, reftype
16882 EXPR, tainted EXPR, weaken REF
16883
16884 =item KNOWN BUGS
16885
16886 =item COPYRIGHT
16887
16888 =item BLATANT PLUG
16889
16890 =back
16891
16892 =head2 Search::Dict, look - search for key in dictionary file
16893
16894 =over 4
16895
16896 =item SYNOPSIS
16897
16898 =item DESCRIPTION
16899
16900 =back
16901
16902 =head2 SelectSaver - save and restore selected file handle
16903
16904 =over 4
16905
16906 =item SYNOPSIS
16907
16908 =item DESCRIPTION
16909
16910 =back
16911
16912 =head2 SelfLoader - load functions only on demand
16913
16914 =over 4
16915
16916 =item SYNOPSIS
16917
16918 =item DESCRIPTION
16919
16920 =over 4
16921
16922 =item The __DATA__ token
16923
16924 =item SelfLoader autoloading
16925
16926 =item Autoloading and package lexicals
16927
16928 =item SelfLoader and AutoLoader
16929
16930 =item __DATA__, __END__, and the FOOBAR::DATA filehandle.
16931
16932 =item Classes and inherited methods.
16933
16934 =back
16935
16936 =item Multiple packages and fully qualified subroutine names
16937
16938 =back
16939
16940 =head2 Shell - run shell commands transparently within perl
16941
16942 =over 4
16943
16944 =item SYNOPSIS
16945
16946 =item DESCRIPTION
16947
16948 =over 4
16949
16950 =item OBJECT ORIENTED SYNTAX
16951
16952 =back
16953
16954 =item AUTHOR
16955
16956 =back
16957
16958 =head2 Socket, sockaddr_in, sockaddr_un, inet_aton, inet_ntoa - load the C
16959 socket.h defines and structure manipulators 
16960
16961 =over 4
16962
16963 =item SYNOPSIS
16964
16965 =item DESCRIPTION
16966
16967 inet_aton HOSTNAME, inet_ntoa IP_ADDRESS, INADDR_ANY, INADDR_BROADCAST,
16968 INADDR_LOOPBACK, INADDR_NONE, sockaddr_family SOCKADDR, sockaddr_in PORT,
16969 ADDRESS, sockaddr_in SOCKADDR_IN, pack_sockaddr_in PORT, IP_ADDRESS,
16970 unpack_sockaddr_in SOCKADDR_IN, sockaddr_un PATHNAME, sockaddr_un
16971 SOCKADDR_UN, pack_sockaddr_un PATH, unpack_sockaddr_un SOCKADDR_UN
16972
16973 =back
16974
16975 =head2 Storable - persistency for perl data structures
16976
16977 =over 4
16978
16979 =item SYNOPSIS
16980
16981 =item DESCRIPTION
16982
16983 =item MEMORY STORE
16984
16985 =item ADVISORY LOCKING
16986
16987 =item SPEED
16988
16989 =item CANONICAL REPRESENTATION
16990
16991 =item ERROR REPORTING
16992
16993 =item WIZARDS ONLY
16994
16995 =over 4
16996
16997 =item Hooks
16998
16999 C<STORABLE_freeze> I<obj>, I<cloning>, C<STORABLE_thaw> I<obj>, I<cloning>,
17000 I<serialized>, ..
17001
17002 =item Predicates
17003
17004 C<Storable::last_op_in_netorder>, C<Storable::is_storing>,
17005 C<Storable::is_retrieving>
17006
17007 =item Recursion
17008
17009 =item Deep Cloning
17010
17011 =back
17012
17013 =item Storable magic
17014
17015 =item EXAMPLES
17016
17017 =item WARNING
17018
17019 =item BUGS
17020
17021 =item CREDITS
17022
17023 =item TRANSLATIONS
17024
17025 =item AUTHOR
17026
17027 =item SEE ALSO
17028
17029 =back
17030
17031 =head2 Switch - A switch statement for Perl
17032
17033 =over 4
17034
17035 =item VERSION
17036
17037 =item SYNOPSIS
17038
17039 =item BACKGROUND
17040
17041 =item DESCRIPTION
17042
17043 =over 4
17044
17045 =item Allowing fall-through
17046
17047 =item Automating fall-through
17048
17049 =item Alternative syntax
17050
17051 =item Higher-order Operations
17052
17053 =back
17054
17055 =item DEPENDENCIES
17056
17057 =item AUTHOR
17058
17059 =item BUGS
17060
17061 =item LIMITATION
17062
17063 =item COPYRIGHT
17064
17065 =back
17066
17067 =head2 Symbol - manipulate Perl symbols and their names
17068
17069 =over 4
17070
17071 =item SYNOPSIS
17072
17073 =item DESCRIPTION
17074
17075 =back
17076
17077 =head2 Sys::Hostname - Try every conceivable way to get hostname
17078
17079 =over 4
17080
17081 =item SYNOPSIS
17082
17083 =item DESCRIPTION
17084
17085 =item AUTHOR
17086
17087 =back
17088
17089 =head2 Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl
17090 interface to the UNIX syslog(3) calls
17091
17092 =over 4
17093
17094 =item SYNOPSIS
17095
17096 =item DESCRIPTION
17097
17098 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
17099 setlogmask $mask_priority, setlogsock $sock_type (added in 5.004_02),
17100 closelog
17101
17102 =item EXAMPLES
17103
17104 =item SEE ALSO
17105
17106 =item AUTHOR
17107
17108 =back
17109
17110 =head2 Syslog::Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog -
17111 Perl interface to the UNIX syslog(3) calls
17112
17113 =over 4
17114
17115 =item SYNOPSIS
17116
17117 =item DESCRIPTION
17118
17119 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
17120 setlogmask $mask_priority, setlogsock $sock_type (added in 5.004_02),
17121 closelog
17122
17123 =item EXAMPLES
17124
17125 =item SEE ALSO
17126
17127 =item AUTHOR
17128
17129 =back
17130
17131 =head2 Term::ANSIColor - Color screen output using ANSI escape sequences
17132
17133 =over 4
17134
17135 =item SYNOPSIS
17136
17137 =item DESCRIPTION
17138
17139 =item DIAGNOSTICS
17140
17141 Bad escape sequence %s, Bareword "%s" not allowed while "strict subs" in
17142 use, Invalid attribute name %s, Name "%s" used only once: possible typo, No
17143 comma allowed after filehandle, No name for escape sequence %s
17144
17145 =item ENVIRONMENT
17146
17147 ANSI_COLORS_DISABLED
17148
17149 =item RESTRICTIONS
17150
17151 =item NOTES
17152
17153 =item SEE ALSO
17154
17155 =item AUTHORS
17156
17157 =item LICENSE
17158
17159 =back
17160
17161 =head2 Term::Cap - Perl termcap interface
17162
17163 =over 4
17164
17165 =item SYNOPSIS
17166
17167 =item DESCRIPTION
17168
17169 =over 4
17170
17171 =item METHODS
17172
17173 =back
17174
17175 =back
17176
17177 B<Tgetent>, OSPEED, TERM
17178
17179 B<Tpad>, B<$string>, B<$cnt>, B<$FH>
17180
17181 B<Tputs>, B<$cap>, B<$cnt>, B<$FH>
17182
17183 B<Tgoto>, B<$cap>, B<$col>, B<$row>, B<$FH>
17184
17185 B<Trequire>
17186
17187 =over 4
17188
17189 =item EXAMPLES
17190
17191 =item COPYRIGHT AND LICENSE
17192
17193 =item AUTHOR
17194
17195 =item SEE ALSO
17196
17197 =back
17198
17199 =head2 Term::Complete - Perl word completion module
17200
17201 =over 4
17202
17203 =item SYNOPSIS
17204
17205 =item DESCRIPTION
17206
17207 E<lt>tabE<gt>, ^D, ^U, E<lt>delE<gt>, E<lt>bsE<gt>
17208
17209 =item DIAGNOSTICS
17210
17211 =item BUGS
17212
17213 =item AUTHOR
17214
17215 =back
17216
17217 =head2 Term::ReadLine - Perl interface to various C<readline> packages. If
17218 no real package is found, substitutes stubs instead of basic functions.
17219
17220 =over 4
17221
17222 =item SYNOPSIS
17223
17224 =item DESCRIPTION
17225
17226 =item Minimal set of supported functions
17227
17228 C<ReadLine>, C<new>, C<readline>, C<addhistory>, C<IN>, $C<OUT>,
17229 C<MinLine>, C<findConsole>, Attribs, C<Features>
17230
17231 =item Additional supported functions
17232
17233 C<tkRunning>, C<ornaments>, C<newTTY>
17234
17235 =item EXPORTS
17236
17237 =item ENVIRONMENT
17238
17239 =item CAVEATS
17240
17241 =back
17242
17243 =head2 Test - provides a simple framework for writing test scripts
17244
17245 =over 4
17246
17247 =item SYNOPSIS
17248
17249 =item DESCRIPTION
17250
17251 =over 4
17252
17253 =item Functions
17254
17255 B<plan>
17256
17257 =back
17258
17259 =back
17260
17261 B<_to_value>
17262
17263 B<ok>
17264
17265 =over 4
17266
17267 =item TEST TYPES
17268
17269 NORMAL TESTS, SKIPPED TESTS, TODO TESTS
17270
17271 =item ONFAIL
17272
17273 =item BUGS and CAVEATS
17274
17275 =item NOTE
17276
17277 =item SEE ALSO
17278
17279 =item AUTHOR
17280
17281 =back
17282
17283 =head2 Test::Builder - Backend for building test libraries
17284
17285 =over 4
17286
17287 =item SYNOPSIS
17288
17289 =item DESCRIPTION
17290
17291 =over 4
17292
17293 =item Construction
17294
17295 B<new>
17296
17297 =back
17298
17299 =back
17300
17301 =over 4
17302
17303 =item Setting up tests
17304
17305 B<exported_to>
17306
17307 =back
17308
17309 B<plan>
17310
17311 B<expected_tests>
17312
17313 B<no_plan>
17314
17315 B<skip_all>
17316
17317 =over 4
17318
17319 =item Running tests
17320
17321 B<ok>
17322
17323 =back
17324
17325 B<is_eq>, B<is_num>
17326
17327 B<isnt_eq>, B<isnt_num>
17328
17329 B<like>, B<unlike>
17330
17331 B<cmp_ok>
17332
17333 B<BAILOUT>
17334
17335 B<skip>
17336
17337 B<todo_skip>
17338
17339 B<skip_rest>
17340
17341 =over 4
17342
17343 =item Test style
17344
17345 B<level>
17346
17347 =back
17348
17349 B<use_numbers>
17350
17351 B<no_header>, B<no_ending>
17352
17353 =over 4
17354
17355 =item Output
17356
17357 B<diag>
17358
17359 =back
17360
17361 B<_print>
17362
17363 B<output>, B<failure_output>, B<todo_output>
17364
17365 =over 4
17366
17367 =item Test Status and Info
17368
17369 B<current_test>
17370
17371 =back
17372
17373 B<summary>
17374
17375 B<details>  I<UNIMPLEMENTED>, B<todo>
17376
17377 B<caller>
17378
17379 B<_sanity_check>
17380
17381 B<_whoa>
17382
17383 B<_my_exit>
17384
17385 =over 4
17386
17387 =item EXAMPLES
17388
17389 =item SEE ALSO
17390
17391 =item AUTHORS
17392
17393 =item COPYRIGHT
17394
17395 =back
17396
17397 =head2 Test::Harness - run perl standard test scripts with statistics
17398
17399 =over 4
17400
17401 =item SYNOPSIS
17402
17403 =item DESCRIPTION
17404
17405 =over 4
17406
17407 =item The test script output
17408
17409 B<'1..M'>, B<'ok', 'not ok'.  Ok?>, B<test numbers>, B<test names>,
17410 B<Skipping tests>, B<Todo tests>, B<Bail out!>, B<Comments>, B<Anything
17411 else>
17412
17413 =item Taint mode
17414
17415 =item Configuration variables.
17416
17417 B<$Test::Harness::verbose>, B<$Test::Harness::switches>
17418
17419 =item Failure
17420
17421 B<Failed Test>, B<Stat>, B<Wstat>, B<Total>, B<Fail>, B<Failed>, B<List of
17422 Failed>
17423
17424 =item Functions
17425
17426 B<runtests>
17427
17428 =back
17429
17430 =back
17431
17432 B<_all_ok>
17433
17434 B<_globdir>
17435
17436 B<_run_all_tests>
17437
17438 B<_mk_leader>
17439
17440 B<_leader_width>
17441
17442 =over 4
17443
17444 =item EXPORT
17445
17446 =item DIAGNOSTICS
17447
17448 C<All tests successful.\nFiles=%d,  Tests=%d, %s>, C<FAILED tests
17449 %s\n\tFailed %d/%d tests, %.2f%% okay.>, C<Test returned status %d (wstat
17450 %d)>, C<Failed 1 test, %.2f%% okay. %s>, C<Failed %d/%d tests, %.2f%% okay.
17451 %s>, C<FAILED--Further testing stopped%s>
17452
17453 =item ENVIRONMENT
17454
17455 C<HARNESS_IGNORE_EXITCODE>, C<HARNESS_NOTTY>, C<HARNESS_COMPILE_TEST>,
17456 C<HARNESS_FILELEAK_IN_DIR>, C<HARNESS_PERL_SWITCHES>, C<HARNESS_COLUMNS>,
17457 C<HARNESS_ACTIVE>
17458
17459 =item EXAMPLE
17460
17461 =item SEE ALSO
17462
17463 =item AUTHORS
17464
17465 =item TODO
17466
17467 =item BUGS
17468
17469 =back
17470
17471 =head2 Test::Harness::Assert - simple assert
17472
17473 =over 4
17474
17475 =item SYNOPSIS
17476
17477 =item DESCRIPTION
17478
17479 =over 4
17480
17481 =item Functions
17482
17483 B<assert>
17484
17485 =back
17486
17487 =back
17488
17489 =over 4
17490
17491 =item AUTHOR
17492
17493 =item SEE ALSO
17494
17495 =back
17496
17497 =head2 Test::Harness::Iterator - Internal Test::Harness Iterator
17498
17499 =over 4
17500
17501 =item SYNOPSIS
17502
17503 =item DESCRIPTION
17504
17505 =back
17506
17507 =head2 Test::Harness::Straps - detailed analysis of test results
17508
17509 =over 4
17510
17511 =item SYNOPSIS
17512
17513 =item DESCRIPTION
17514
17515 =over 4
17516
17517 =item Construction
17518
17519 B<new>
17520
17521 =back
17522
17523 =back
17524
17525 B<_init>
17526
17527 =over 4
17528
17529 =item Analysis
17530
17531 B<analyze>
17532
17533 =back
17534
17535 B<analyze_fh>
17536
17537 B<analyze_file>
17538
17539 B<_switches>
17540
17541 B<_INC2PERL5LIB>
17542
17543 B<_filtered_INC>
17544
17545 B<_restore_PERL5LIB>
17546
17547 =over 4
17548
17549 =item Parsing
17550
17551 B<_is_comment>
17552
17553 =back
17554
17555 B<_is_header>
17556
17557 B<_is_test>
17558
17559 B<_is_bail_out>
17560
17561 B<_reset_file_state>
17562
17563 =over 4
17564
17565 =item Results
17566
17567 B<_detailize>
17568
17569 =back
17570
17571 =over 4
17572
17573 =item EXAMPLES
17574
17575 =item AUTHOR
17576
17577 =item SEE ALSO
17578
17579 =back
17580
17581 =head2 Test::More - yet another framework for writing test scripts
17582
17583 =over 4
17584
17585 =item SYNOPSIS
17586
17587 =item DESCRIPTION
17588
17589 =over 4
17590
17591 =item I love it when a plan comes together
17592
17593 =back
17594
17595 =back
17596
17597 =over 4
17598
17599 =item Test names
17600
17601 =item I'm ok, you're not ok.
17602
17603 B<ok>
17604
17605 =back
17606
17607 B<is>, B<isnt>
17608
17609 B<like>
17610
17611 B<unlike>
17612
17613 B<cmp_ok>
17614
17615 B<can_ok>
17616
17617 B<isa_ok>
17618
17619 B<pass>, B<fail>
17620
17621 =over 4
17622
17623 =item Diagnostics
17624
17625 B<diag>
17626
17627 =back
17628
17629 =over 4
17630
17631 =item Module tests
17632
17633 B<use_ok>
17634
17635 =back
17636
17637 B<require_ok>
17638
17639 =over 4
17640
17641 =item Conditional tests
17642
17643 B<SKIP: BLOCK>
17644
17645 =back
17646
17647 B<TODO: BLOCK>, B<todo_skip>
17648
17649 =over 4
17650
17651 =item Comparison functions
17652
17653 B<is_deeply>
17654
17655 =back
17656
17657 B<eq_array>
17658
17659 B<eq_hash>
17660
17661 B<eq_set>
17662
17663 =over 4
17664
17665 =item Extending and Embedding Test::More
17666
17667 B<builder>
17668
17669 =back
17670
17671 =over 4
17672
17673 =item NOTES
17674
17675 =item BUGS and CAVEATS
17676
17677 Making your own ok(), The eq_* family has some caveats, Test::Harness
17678 upgrades
17679
17680 =item HISTORY
17681
17682 =item SEE ALSO
17683
17684 =item AUTHORS
17685
17686 =item COPYRIGHT
17687
17688 =back
17689
17690 =head2 Test::Simple - Basic utilities for writing tests.
17691
17692 =over 4
17693
17694 =item SYNOPSIS
17695
17696 =item DESCRIPTION
17697
17698 B<ok>
17699
17700 =back
17701
17702 =over 4
17703
17704 =item EXAMPLE
17705
17706 =item CAVEATS
17707
17708 =item NOTES
17709
17710 =item HISTORY
17711
17712 =item SEE ALSO
17713
17714 L<Test::More>, L<Test>, L<Test::Unit>, L<Test::Inline>, L<SelfTest>,
17715 L<Test::Harness>
17716
17717 =item AUTHORS
17718
17719 =item COPYRIGHT
17720
17721 =back
17722
17723 =head2 Test::Tutorial - A tutorial about writing really basic tests
17724
17725 =over 4
17726
17727 =item DESCRIPTION
17728
17729 =over 4
17730
17731 =item Nuts and bolts of testing.
17732
17733 =item Where to start?
17734
17735 =item Names
17736
17737 =item Test the manual
17738
17739 =item Sometimes the tests are wrong
17740
17741 =item Testing lots of values
17742
17743 =item Informative names
17744
17745 =item Skipping tests
17746
17747 =item Todo tests
17748
17749 =item Testing with taint mode.
17750
17751 =back
17752
17753 =item FOOTNOTES
17754
17755 =item AUTHORS
17756
17757 =item COPYRIGHT
17758
17759 =back
17760
17761 =head2 Text::Abbrev, abbrev - create an abbreviation table from a list
17762
17763 =over 4
17764
17765 =item SYNOPSIS
17766
17767 =item DESCRIPTION
17768
17769 =item EXAMPLE
17770
17771 =back
17772
17773 =head2 Text::Balanced - Extract delimited text sequences from strings.
17774
17775 =over 4
17776
17777 =item SYNOPSIS
17778
17779 =item DESCRIPTION
17780
17781 =over 4
17782
17783 =item General behaviour in list contexts
17784
17785 [0], [1], [2]
17786
17787 =item General behaviour in scalar and void contexts
17788
17789 =item A note about prefixes
17790
17791 =item C<extract_delimited>
17792
17793 =item C<extract_bracketed>
17794
17795 =item C<extract_tagged>
17796
17797 C<reject =E<gt> $listref>, C<ignore =E<gt> $listref>, C<fail =E<gt> $str>,
17798 [0], [1], [2], [3], [4], [5]
17799
17800 =item C<gen_extract_tagged>
17801
17802 =item C<extract_quotelike>
17803
17804 [0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10]
17805
17806 =item C<extract_quotelike> and "here documents"
17807
17808 [0], [1], [2], [3], [4], [5], [6], [7..10]
17809
17810 =item C<extract_codeblock>
17811
17812 =item C<extract_multiple>
17813
17814 =item C<gen_delimited_pat>
17815
17816 =back
17817
17818 =item DIAGNOSTICS
17819
17820  C<Did not find a suitable bracket: "%s">,  C<Did not find prefix: /%s/>, 
17821 C<Did not find opening bracket after prefix: "%s">,  C<No quotelike
17822 operator found after prefix: "%s">,  C<Unmatched closing bracket: "%c">, 
17823 C<Unmatched opening bracket(s): "%s">, C<Unmatched embedded quote (%s)>,
17824 C<Did not find closing delimiter to match '%s'>,  C<Mismatched closing
17825 bracket: expected "%c" but found "%s">,  C<No block delimiter found after
17826 quotelike "%s">, C<Did not find leading dereferencer>, C<Bad identifier
17827 after dereferencer>, C<Did not find expected opening bracket at %s>,
17828 C<Improperly nested codeblock at %s>,  C<Missing second block for quotelike
17829 "%s">, C<No match found for opening bracket>, C<Did not find opening tag:
17830 /%s/>, C<Unable to construct closing tag to match: /%s/>, C<Found invalid
17831 nested tag: %s>, C<Found unbalanced nested tag: %s>, C<Did not find closing
17832 tag>
17833
17834 =item AUTHOR
17835
17836 =item BUGS AND IRRITATIONS
17837
17838 =item COPYRIGHT
17839
17840 =back
17841
17842 =head2 Text::ParseWords - parse text into an array of tokens or array of
17843 arrays
17844
17845 =over 4
17846
17847 =item SYNOPSIS
17848
17849 =item DESCRIPTION
17850
17851 =item EXAMPLES
17852
17853 =item AUTHORS
17854
17855 =back
17856
17857 =head2 Text::Soundex - Implementation of the Soundex Algorithm as Described
17858 by Knuth
17859
17860 =over 4
17861
17862 =item SYNOPSIS
17863
17864 =item DESCRIPTION
17865
17866 =item EXAMPLES
17867
17868 =item LIMITATIONS
17869
17870 =item AUTHOR
17871
17872 =back
17873
17874 =head2 Text::Tabs -- expand and unexpand tabs per the unix expand(1) and
17875 unexpand(1)
17876
17877 =over 4
17878
17879 =item SYNOPSIS
17880
17881 =item DESCRIPTION
17882
17883 =item BUGS
17884
17885 =item AUTHOR
17886
17887 =back
17888
17889 =head2 Text::Wrap - line wrapping to form simple paragraphs
17890
17891 =over 4
17892
17893 =item SYNOPSIS 
17894
17895 =item DESCRIPTION
17896
17897 =item OVERRIDES
17898
17899 =item EXAMPLE
17900
17901 =item AUTHOR
17902
17903 =back
17904
17905 =head2 Thread - manipulate threads in Perl
17906
17907 =over 4
17908
17909 =item CAVEAT
17910
17911 =item SYNOPSIS
17912
17913 =item DESCRIPTION
17914
17915 =item FUNCTIONS
17916
17917 $thread = Thread->new(\&start_sub), $thread = Thread->new(\&start_sub,
17918 LIST), lock VARIABLE, async BLOCK;, Thread->self, cond_wait VARIABLE,
17919 cond_signal VARIABLE, cond_broadcast VARIABLE, yield
17920
17921 =item METHODS
17922
17923 join, eval, detach, equal, tid, flags, done
17924
17925 =item LIMITATIONS
17926
17927 =item SEE ALSO
17928
17929 =back
17930
17931 =head2 Thread::Queue - thread-safe queues
17932
17933 =over 4
17934
17935 =item SYNOPSIS
17936
17937 =item DESCRIPTION
17938
17939 =item FUNCTIONS AND METHODS
17940
17941 new, enqueue LIST, dequeue, dequeue_nb, pending
17942
17943 =item SEE ALSO
17944
17945 =back
17946
17947 =head2 Thread::Semaphore - thread-safe semaphores
17948
17949 =over 4
17950
17951 =item SYNOPSIS
17952
17953 =item DESCRIPTION
17954
17955 =item FUNCTIONS AND METHODS
17956
17957 new, new NUMBER, down, down NUMBER, up, up NUMBER
17958
17959 =back
17960
17961 =head2 Thread::Signal - Start a thread which runs signal handlers reliably
17962
17963 =over 4
17964
17965 =item SYNOPSIS
17966
17967 =item DESCRIPTION
17968
17969 =item BUGS
17970
17971 =back
17972
17973 =head2 Thread::Specific - thread-specific keys
17974
17975 =over 4
17976
17977 =item SYNOPSIS
17978
17979 =item DESCRIPTION
17980
17981 =back
17982
17983 =head2 Tie::Array - base class for tied arrays
17984
17985 =over 4
17986
17987 =item SYNOPSIS
17988
17989 =item DESCRIPTION
17990
17991 TIEARRAY classname, LIST, STORE this, index, value, FETCH this, index,
17992 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
17993 key, DELETE this, key, CLEAR this, DESTROY this, PUSH this, LIST, POP this,
17994 SHIFT this, UNSHIFT this, LIST, SPLICE this, offset, length, LIST
17995
17996 =item CAVEATS
17997
17998 =item AUTHOR
17999
18000 =back
18001
18002 =head2 Tie::File - Access the lines of a disk file via a Perl array
18003
18004 =over 4
18005
18006 =item SYNOPSIS
18007
18008 =item DESCRIPTION
18009
18010 =over 4
18011
18012 =item C<recsep>
18013
18014 =item C<mode>
18015
18016 =item C<cachesize>
18017
18018 =item Option Format
18019
18020 =back
18021
18022 =item Public Methods
18023
18024 =over 4
18025
18026 =item C<flock>
18027
18028 =item Tying to an already-opened filehandle
18029
18030 =back
18031
18032 =item CAVEATS
18033
18034 =over 4
18035
18036 =item Efficiency Note
18037
18038 =item Efficiency Note 2
18039
18040 =item Efficiency Note 3
18041
18042 =back
18043
18044 =item CAVEATS
18045
18046 =item AUTHOR
18047
18048 =item LICENSE
18049
18050 =item WARRANTY
18051
18052 =item THANKS
18053
18054 =item TODO
18055
18056 =back
18057
18058 =head2 Tie::Handle, Tie::StdHandle  - base class definitions for tied
18059 handles
18060
18061 =over 4
18062
18063 =item SYNOPSIS
18064
18065 =item DESCRIPTION
18066
18067 TIEHANDLE classname, LIST, WRITE this, scalar, length, offset, PRINT this,
18068 LIST, PRINTF this, format, LIST, READ this, scalar, length, offset,
18069 READLINE this, GETC this, CLOSE this, OPEN this, filename, BINMODE this,
18070 EOF this, TELL this, SEEK this, offset, whence, DESTROY this
18071
18072 =item MORE INFORMATION
18073
18074 =item COMPATIBILITY
18075
18076 =back
18077
18078 =head2 Tie::Hash, Tie::StdHash, Tie::ExtraHash - base class definitions for
18079 tied hashes
18080
18081 =over 4
18082
18083 =item SYNOPSIS
18084
18085 =item DESCRIPTION
18086
18087 TIEHASH classname, LIST, STORE this, key, value, FETCH this, key, FIRSTKEY
18088 this, NEXTKEY this, lastkey, EXISTS this, key, DELETE this, key, CLEAR this
18089
18090 =item Inheriting from B<Tie::StdHash>
18091
18092 =item Inheriting from B<Tie::ExtraHash>
18093
18094 =item C<UNTIE> and C<DESTROY>
18095
18096 =item MORE INFORMATION
18097
18098 =back
18099
18100 =head2 Tie::Memoize - add data to hash when needed
18101
18102 =over 4
18103
18104 =item SYNOPSIS
18105
18106 =item DESCRIPTION
18107
18108 =item Inheriting from B<Tie::Memoize>
18109
18110 =item EXAMPLE
18111
18112 =item BUGS
18113
18114 =item AUTHOR
18115
18116 =back
18117
18118 =head2 Tie::RefHash - use references as hash keys
18119
18120 =over 4
18121
18122 =item SYNOPSIS
18123
18124 =item DESCRIPTION
18125
18126 =item EXAMPLE
18127
18128 =item AUTHOR
18129
18130 =item VERSION
18131
18132 =item SEE ALSO
18133
18134 =back
18135
18136 =head2 Tie::Scalar, Tie::StdScalar - base class definitions for tied
18137 scalars
18138
18139 =over 4
18140
18141 =item SYNOPSIS
18142
18143 =item DESCRIPTION
18144
18145 TIESCALAR classname, LIST, FETCH this, STORE this, value, DESTROY this
18146
18147 =item MORE INFORMATION
18148
18149 =back
18150
18151 =head2 Tie::SubstrHash - Fixed-table-size, fixed-key-length hashing
18152
18153 =over 4
18154
18155 =item SYNOPSIS
18156
18157 =item DESCRIPTION
18158
18159 =item CAVEATS
18160
18161 =back
18162
18163 =head2 Time::HiRes - High resolution alarm, sleep, gettimeofday, interval
18164 timers
18165
18166 =over 4
18167
18168 =item SYNOPSIS
18169
18170 =item DESCRIPTION
18171
18172 gettimeofday (), usleep ( $useconds ), ualarm ( $useconds [,
18173 $interval_useconds ] ), tv_interval, time (), sleep ( $floating_seconds ),
18174 alarm ( $floating_seconds [, $interval_floating_seconds ] ), setitimer,
18175 getitimer ( $which )
18176
18177 =item EXAMPLES
18178
18179 =item C API
18180
18181 =item CAVEATS
18182
18183 =item AUTHORS
18184
18185 =item REVISION
18186
18187 =item COPYRIGHT
18188
18189 =back
18190
18191 =head2 Time::Local - efficiently compute time from local and GMT time
18192
18193 =over 4
18194
18195 =item SYNOPSIS
18196
18197 =item DESCRIPTION
18198
18199 =item IMPLEMENTATION
18200
18201 =item BUGS
18202
18203 =back
18204
18205 =head2 Time::gmtime - by-name interface to Perl's built-in gmtime()
18206 function
18207
18208 =over 4
18209
18210 =item SYNOPSIS
18211
18212 =item DESCRIPTION
18213
18214 =item NOTE
18215
18216 =item AUTHOR
18217
18218 =back
18219
18220 =head2 Time::localtime - by-name interface to Perl's built-in localtime()
18221 function
18222
18223 =over 4
18224
18225 =item SYNOPSIS
18226
18227 =item DESCRIPTION
18228
18229 =item NOTE
18230
18231 =item AUTHOR
18232
18233 =back
18234
18235 =head2 Time::tm - internal object used by Time::gmtime and Time::localtime
18236
18237 =over 4
18238
18239 =item SYNOPSIS
18240
18241 =item DESCRIPTION
18242
18243 =item AUTHOR
18244
18245 =back
18246
18247 =head2 UNIVERSAL - base class for ALL classes (blessed references)
18248
18249 =over 4
18250
18251 =item SYNOPSIS
18252
18253 =item DESCRIPTION
18254
18255 $obj->isa( TYPE ), CLASS->isa( TYPE ), isa( VAL, TYPE ), $obj->can( METHOD
18256 ), CLASS->can( METHOD ), can( VAL, METHOD ), VERSION ( [ REQUIRE ] )
18257
18258 =back
18259
18260 =head2 Unicode::Collate - use UCA (Unicode Collation Algorithm)
18261
18262 =over 4
18263
18264 =item SYNOPSIS
18265
18266 =item DESCRIPTION
18267
18268 =over 4
18269
18270 =item Constructor and Tailoring
18271
18272 alternate, backwards, entry, ignoreName, ignoreChar, level, normalization,
18273 overrideCJK, overrideHangul, preprocess, rearrange, table, undefName,
18274 undefChar, katakana_before_hiragana, upper_before_lower
18275
18276 =item Other methods
18277
18278 C<@sorted = $Collator-E<gt>sort(@not_sorted)>, C<$result =
18279 $Collator-E<gt>cmp($a, $b)>, C<$result = $Collator-E<gt>eq($a, $b)>,
18280 C<$result = $Collator-E<gt>ne($a, $b)>, C<$result = $Collator-E<gt>lt($a,
18281 $b)>, C<$result = $Collator-E<gt>le($a, $b)>, C<$result =
18282 $Collator-E<gt>gt($a, $b)>, C<$result = $Collator-E<gt>ge($a, $b)>,
18283 C<$sortKey = $Collator-E<gt>getSortKey($string)>, C<$position =
18284 $Collator-E<gt>index($string, $substring)>, C<($position, $length) =
18285 $Collator-E<gt>index($string, $substring)>
18286
18287 =item EXPORT
18288
18289 =item TODO
18290
18291 =item CAVEAT
18292
18293 =back
18294
18295 =item AUTHOR
18296
18297 =item SEE ALSO
18298
18299 Unicode Collation Algorithm - Unicode TR #10, L<Unicode::Normalize>
18300
18301 =back
18302
18303 =head2 Unicode::Normalize - normalized forms of Unicode text
18304
18305 =over 4
18306
18307 =item SYNOPSIS
18308
18309 =item DESCRIPTION
18310
18311 =over 4
18312
18313 =item Normalization Forms
18314
18315 C<$string_NFD = NFD($raw_string)>, C<$string_NFC = NFC($raw_string)>,
18316 C<$string_NFKD = NFKD($raw_string)>, C<$string_NFKC = NFKC($raw_string)>,
18317 C<$normalized_string = normalize($form_name, $raw_string)>
18318
18319 =item Character Data
18320
18321 C<$canonical_decomposed = getCanon($codepoint)>,
18322 C<$compatibility_decomposed = getCompat($codepoint)>, C<$uv_composite =
18323 getComposite($uv_here, $uv_next)>, C<$combining_class =
18324 getCombinClass($codepoint)>, C<$is_exclusion = isExclusion($codepoint)>
18325
18326 =item EXPORT
18327
18328 =item TODO
18329
18330 =back
18331
18332 =item AUTHOR
18333
18334 =item SEE ALSO
18335
18336 http://www.unicode.org/unicode/reports/tr15/
18337
18338 =back
18339
18340 =head2 Unicode::UCD - Unicode character database
18341
18342 =over 4
18343
18344 =item SYNOPSIS
18345
18346 =item DESCRIPTION
18347
18348 =back
18349
18350 =over 4
18351
18352 =item charinfo
18353
18354 =back
18355
18356 =over 4
18357
18358 =item charblock
18359
18360 =back
18361
18362 =over 4
18363
18364 =item charscript
18365
18366 =back
18367
18368 =over 4
18369
18370 =item charblocks
18371
18372 =back
18373
18374 =over 4
18375
18376 =item charscripts
18377
18378 =back
18379
18380 =over 4
18381
18382 =item Blocks versus Scripts
18383
18384 =item Matching Scripts and Blocks
18385
18386 =item Code Point Arguments
18387
18388 =item charinrange
18389
18390 =back
18391
18392 =over 4
18393
18394 =item compexcl
18395
18396 =back
18397
18398 =over 4
18399
18400 =item casefold
18401
18402 =back
18403
18404 =over 4
18405
18406 =item casespec
18407
18408 =back
18409
18410 =over 4
18411
18412 =item Unicode::UCD::UnicodeVersion
18413
18414 =back
18415
18416 =over 4
18417
18418 =item Implementation Note
18419
18420 =back
18421
18422 =over 4
18423
18424 =item BUGS
18425
18426 =item AUTHOR
18427
18428 =back
18429
18430 =head2 User::grent - by-name interface to Perl's built-in getgr*()
18431 functions
18432
18433 =over 4
18434
18435 =item SYNOPSIS
18436
18437 =item DESCRIPTION
18438
18439 =item NOTE
18440
18441 =item AUTHOR
18442
18443 =back
18444
18445 =head2 User::pwent - by-name interface to Perl's built-in getpw*()
18446 functions
18447
18448 =over 4
18449
18450 =item SYNOPSIS
18451
18452 =item DESCRIPTION
18453
18454 =over 4
18455
18456 =item System Specifics
18457
18458 =back
18459
18460 =item NOTE
18461
18462 =item AUTHOR
18463
18464 =item HISTORY
18465
18466 March 18th, 2000
18467
18468 =back
18469
18470 =head2 Win32 - Interfaces to some Win32 API Functions
18471
18472 =over 4
18473
18474 =item DESCRIPTION
18475
18476 =over 4
18477
18478 =item Alphabetical Listing of Win32 Functions
18479
18480 Win32::AbortSystemShutdown(MACHINE), Win32::BuildNumber(),
18481 Win32::CopyFile(FROM, TO, OVERWRITE), Win32::DomainName(),
18482 Win32::ExpandEnvironmentStrings(STRING), Win32::FormatMessage(ERRORCODE),
18483 Win32::FsType(), Win32::FreeLibrary(HANDLE), Win32::GetArchName(),
18484 Win32::GetChipName(), Win32::GetCwd(), Win32::GetFullPathName(FILENAME),
18485 Win32::GetLastError(), Win32::GetLongPathName(PATHNAME),
18486 Win32::GetNextAvailDrive(), Win32::GetOSVersion(),
18487 Win32::GetShortPathName(PATHNAME), Win32::GetProcAddress(INSTANCE,
18488 PROCNAME), Win32::GetTickCount(), Win32::InitiateSystemShutdown,
18489 Win32::IsWinNT(), Win32::IsWin95(), Win32::LoadLibrary(LIBNAME),
18490 Win32::LoginName(), Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID,
18491 SIDTYPE), Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE),
18492 Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]]), Win32::NodeName(),
18493 Win32::RegisterServer(LIBRARYNAME), Win32::SetChildShowWindow(SHOWWINDOW),
18494 Win32::SetCwd(NEWDIRECTORY), Win32::SetLastError(ERROR),
18495 Win32::Sleep(TIME), Win32::Spawn(COMMAND, ARGS, PID),
18496 Win32::UnregisterServer(LIBRARYNAME)
18497
18498 =back
18499
18500 =back
18501
18502 =head2 XS::Typemap - module to test the XS typemaps distributed with perl
18503
18504 =over 4
18505
18506 =item SYNOPSIS
18507
18508 =item DESCRIPTION
18509
18510 =back
18511
18512 =over 4
18513
18514 =item NOTES
18515
18516 =item AUTHOR
18517
18518 =back
18519
18520 =head2 XSLoader - Dynamically load C libraries into Perl code
18521
18522 =over 4
18523
18524 =item SYNOPSIS
18525
18526 =item DESCRIPTION
18527
18528 =item AUTHOR
18529
18530 =back
18531
18532 =head1 AUXILIARY DOCUMENTATION
18533
18534 Here should be listed all the extra programs' documentation, but they
18535 don't all have manual pages yet:
18536
18537 =over 4
18538
18539 =item a2p
18540
18541 =item s2p
18542
18543 =item find2perl
18544
18545 =item h2ph
18546
18547 =item c2ph
18548
18549 =item h2xs
18550
18551 =item xsubpp
18552
18553 =item pod2man
18554
18555 =item wrapsuid
18556
18557 =back
18558
18559 =head1 AUTHOR
18560
18561 Larry Wall <F<larry@wall.org>>, with the help of oodles
18562 of other folks.
18563