Add emulation layer for Thread/Semaphore and Thread/Queue
[p5sagit/p5-mst-13.2.git] / pod / perltoc.pod
1
2 =head1 NAME
3
4 perltoc - perl documentation table of contents
5
6 =head1 DESCRIPTION
7
8 This page provides a brief table of contents for the rest of the Perl
9 documentation set.  It is meant to be scanned quickly or grepped
10 through to locate the proper section you're looking for.
11
12 =head1 BASIC DOCUMENTATION
13
14 =head2 perl - Practical Extraction and Report Language
15
16 =over 4
17
18 =item SYNOPSIS
19
20 =over 4
21
22 =item Overview
23
24 =item Tutorials
25
26 =item Reference Manual
27
28 =item Internals and C Language Interface
29
30 =item Miscellaneous
31
32 =item Language-Specific
33
34 =item Platform-Specific
35
36 =back
37
38 =item DESCRIPTION
39
40 =item AVAILABILITY
41
42 =item ENVIRONMENT
43
44 =item AUTHOR
45
46 =item FILES
47
48 =item SEE ALSO
49
50 =item DIAGNOSTICS
51
52 =item BUGS
53
54 =item NOTES
55
56 =back
57
58 =head2 perlintro -- a brief introduction and overview of Perl
59
60 =over 4
61
62 =item DESCRIPTION
63
64 =over 4
65
66 =item What is Perl?
67
68 =item Running Perl programs
69
70 =item Basic syntax overview
71
72 =item Perl variable types
73
74 Scalars, Arrays, Hashes
75
76 =item Variable scoping
77
78 =item Conditional and looping constructs
79
80 if, while, for, foreach
81
82 =item Builtin operators and functions
83
84 Arithmetic, Numeric comparison, String comparison, Boolean logic,
85 Miscellaneous
86
87 =item Files and I/O
88
89 =item Regular expressions
90
91 Simple matching, Simple substitution, More complex regular expressions,
92 Parentheses for capturing, Other regexp features
93
94 =item Writing subroutines
95
96 =item OO Perl
97
98 =item Using Perl modules
99
100 =back
101
102 =item AUTHOR
103
104 =back
105
106 =head2 perlfaq - frequently asked questions about Perl ($Date: 2002/03/11
107 21:32:23 $)
108
109 =over 4
110
111 =item DESCRIPTION
112
113 =over 4
114
115 =item perlfaq: Structural overview of the FAQ.
116
117 =item L<perlfaq1>: General Questions About Perl
118
119 =item L<perlfaq2>: Obtaining and Learning about Perl
120
121 =item L<perlfaq3>: Programming Tools
122
123 =item L<perlfaq4>: Data Manipulation
124
125 =item L<perlfaq5>: Files and Formats
126
127 =item L<perlfaq6>: Regular Expressions
128
129 =item L<perlfaq7>: General Perl Language Issues
130
131 =item L<perlfaq8>: System Interaction
132
133 =item L<perlfaq9>: Networking
134
135 =back
136
137 =item About the perlfaq documents
138
139 =over 4
140
141 =item Where to get the perlfaq
142
143 =item How to contribute to the perlfaq
144
145 =item What will happen if you mail your Perl programming problems to the
146 authors
147
148 =back
149
150 =item Credits
151
152 =item Author and Copyright Information
153
154 =over 4
155
156 =item Bundled Distributions
157
158 =item Disclaimer
159
160 =back
161
162 =item Changes
163
164 1/November/2000, 23/May/99, 13/April/99, 7/January/99, 22/June/98,
165 24/April/97, 23/April/97, 25/March/97, 18/March/97, 17/March/97 Version,
166 Initial Release: 11/March/97
167
168 =back
169
170 =head2 perlbook - Perl book information
171
172 =over 4
173
174 =item DESCRIPTION
175
176 =back
177
178 =head2 perlsyn - Perl syntax
179
180 =over 4
181
182 =item DESCRIPTION
183
184 =over 4
185
186 =item Declarations
187
188 =item Simple statements
189
190 =item Compound statements
191
192 =item Loop Control
193
194 =item For Loops
195
196 =item Foreach Loops
197
198 =item Basic BLOCKs and Switch Statements
199
200 =item Goto
201
202 =item PODs: Embedded Documentation
203
204 =item Plain Old Comments (Not!)
205
206 =back
207
208 =back
209
210 =head2 perldata - Perl data types
211
212 =over 4
213
214 =item DESCRIPTION
215
216 =over 4
217
218 =item Variable names
219
220 =item Context
221
222 =item Scalar values
223
224 =item Scalar value constructors
225
226 =item List value constructors
227
228 =item Slices
229
230 =item Typeglobs and Filehandles
231
232 =back
233
234 =item SEE ALSO
235
236 =back
237
238 =head2 perlop - Perl operators and precedence
239
240 =over 4
241
242 =item SYNOPSIS
243
244 =item DESCRIPTION
245
246 =over 4
247
248 =item Terms and List Operators (Leftward)
249
250 =item The Arrow Operator
251
252 =item Auto-increment and Auto-decrement
253
254 =item Exponentiation
255
256 =item Symbolic Unary Operators
257
258 =item Binding Operators
259
260 =item Multiplicative Operators
261
262 =item Additive Operators
263
264 =item Shift Operators
265
266 =item Named Unary Operators
267
268 =item Relational Operators
269
270 =item Equality Operators
271
272 =item Bitwise And
273
274 =item Bitwise Or and Exclusive Or
275
276 =item C-style Logical And
277
278 =item C-style Logical Or
279
280 =item Range Operators
281
282 =item Conditional Operator
283
284 =item Assignment Operators
285
286 =item Comma Operator
287
288 =item List Operators (Rightward)
289
290 =item Logical Not
291
292 =item Logical And
293
294 =item Logical or and Exclusive Or
295
296 =item C Operators Missing From Perl
297
298 unary &, unary *, (TYPE)
299
300 =item Quote and Quote-like Operators
301
302 =item Regexp Quote-Like Operators
303
304 ?PATTERN?, m/PATTERN/cgimosx, /PATTERN/cgimosx, q/STRING/, C<'STRING'>,
305 qq/STRING/, "STRING", qr/STRING/imosx, qx/STRING/, `STRING`, qw/STRING/,
306 s/PATTERN/REPLACEMENT/egimosx, tr/SEARCHLIST/REPLACEMENTLIST/cds,
307 y/SEARCHLIST/REPLACEMENTLIST/cds, <<EOF
308
309 =item Gory details of parsing quoted constructs
310
311 Finding the end, Removal of backslashes before delimiters, Interpolation,
312 C<<<'EOF'>, C<m''>, C<s'''>, C<tr///>, C<y///>, C<''>, C<q//>, C<"">,
313 C<``>, C<qq//>, C<qx//>, C<< <file*glob> >>, C<?RE?>, C</RE/>, C<m/RE/>,
314 C<s/RE/foo/>,, Interpolation of regular expressions, Optimization of
315 regular expressions
316
317 =item I/O Operators
318
319 =item Constant Folding
320
321 =item Bitwise String Operators
322
323 =item Integer Arithmetic
324
325 =item Floating-point Arithmetic
326
327 =item Bigger Numbers
328
329 =back
330
331 =back
332
333 =head2 perlsub - Perl subroutines
334
335 =over 4
336
337 =item SYNOPSIS
338
339 =item DESCRIPTION
340
341 =over 4
342
343 =item Private Variables via my()
344
345 =item Persistent Private Variables
346
347 =item Temporary Values via local()
348
349 =item Lvalue subroutines
350
351 =item Passing Symbol Table Entries (typeglobs)
352
353 =item When to Still Use local()
354
355 =item Pass by Reference
356
357 =item Prototypes
358
359 =item Constant Functions
360
361 =item Overriding Built-in Functions
362
363 =item Autoloading
364
365 =item Subroutine Attributes
366
367 =back
368
369 =item SEE ALSO
370
371 =back
372
373 =head2 perlfunc - Perl builtin functions
374
375 =over 4
376
377 =item DESCRIPTION
378
379 =over 4
380
381 =item Perl Functions by Category
382
383 Functions for SCALARs or strings, Regular expressions and pattern matching,
384 Numeric functions, Functions for real @ARRAYs, Functions for list data,
385 Functions for real %HASHes, Input and output functions, Functions for fixed
386 length data or records, Functions for filehandles, files, or directories,
387 Keywords related to the control flow of your perl program, Keywords related
388 to scoping, Miscellaneous functions, Functions for processes and process
389 groups, Keywords related to perl modules, Keywords related to classes and
390 object-orientedness, Low-level socket functions, System V interprocess
391 communication functions, Fetching user and group info, Fetching network
392 info, Time-related functions, Functions new in perl5, Functions obsoleted
393 in perl5
394
395 =item Portability
396
397 =item Alphabetical Listing of Perl Functions
398
399 I<-X> FILEHANDLE, I<-X> EXPR, I<-X>, abs VALUE, abs, accept
400 NEWSOCKET,GENERICSOCKET, alarm SECONDS, alarm, atan2 Y,X, bind SOCKET,NAME,
401 binmode FILEHANDLE, DISCIPLINE, binmode FILEHANDLE, bless REF,CLASSNAME,
402 bless REF, caller EXPR, caller, chdir EXPR, chmod LIST, chomp VARIABLE,
403 chomp( LIST ), chomp, chop VARIABLE, chop( LIST ), chop, chown LIST, chr
404 NUMBER, chr, chroot FILENAME, chroot, close FILEHANDLE, close, closedir
405 DIRHANDLE, connect SOCKET,NAME, continue BLOCK, cos EXPR, cos, crypt
406 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MASK, defined EXPR,
407 defined, delete EXPR, die LIST, do BLOCK, do SUBROUTINE(LIST), do EXPR,
408 dump LABEL, dump, each HASH, eof FILEHANDLE, eof (), eof, eval EXPR, eval
409 BLOCK, exec LIST, exec PROGRAM LIST, exists EXPR, exit EXPR, exp EXPR, exp,
410 fcntl FILEHANDLE,FUNCTION,SCALAR, fileno FILEHANDLE, flock
411 FILEHANDLE,OPERATION, fork, format, formline PICTURE,LIST, getc FILEHANDLE,
412 getc, getlogin, getpeername SOCKET, getpgrp PID, getppid, getpriority
413 WHICH,WHO, getpwnam NAME, getgrnam NAME, gethostbyname NAME, getnetbyname
414 NAME, getprotobyname NAME, getpwuid UID, getgrgid GID, getservbyname
415 NAME,PROTO, gethostbyaddr ADDR,ADDRTYPE, getnetbyaddr ADDR,ADDRTYPE,
416 getprotobynumber NUMBER, getservbyport PORT,PROTO, getpwent, getgrent,
417 gethostent, getnetent, getprotoent, getservent, setpwent, setgrent,
418 sethostent STAYOPEN, setnetent STAYOPEN, setprotoent STAYOPEN, setservent
419 STAYOPEN, endpwent, endgrent, endhostent, endnetent, endprotoent,
420 endservent, getsockname SOCKET, getsockopt SOCKET,LEVEL,OPTNAME, glob EXPR,
421 glob, gmtime EXPR, goto LABEL, goto EXPR, goto &NAME, grep BLOCK LIST, grep
422 EXPR,LIST, hex EXPR, hex, import, index STR,SUBSTR,POSITION, index
423 STR,SUBSTR, int EXPR, int, ioctl FILEHANDLE,FUNCTION,SCALAR, join
424 EXPR,LIST, keys HASH, kill SIGNAL, LIST, last LABEL, last, lc EXPR, lc,
425 lcfirst EXPR, lcfirst, length EXPR, length, link OLDFILE,NEWFILE, listen
426 SOCKET,QUEUESIZE, local EXPR, localtime EXPR, lock THING, log EXPR, log,
427 lstat EXPR, lstat, m//, map BLOCK LIST, map EXPR,LIST, mkdir FILENAME,MASK,
428 mkdir FILENAME, msgctl ID,CMD,ARG, msgget KEY,FLAGS, msgrcv
429 ID,VAR,SIZE,TYPE,FLAGS, msgsnd ID,MSG,FLAGS, my EXPR, my EXPR : ATTRIBUTES,
430 next LABEL, next, no Module VERSION LIST, no Module VERSION, no Module
431 LIST, no Module, oct EXPR, oct, open FILEHANDLE,EXPR, open
432 FILEHANDLE,MODE,EXPR, open FILEHANDLE,MODE,EXPR,LIST, open
433 FILEHANDLE,MODE,REFERENCE, open FILEHANDLE, opendir DIRHANDLE,EXPR, ord
434 EXPR, ord, our EXPR, our EXPR : ATTRIBUTES, pack TEMPLATE,LIST, package
435 NAMESPACE, package, pipe READHANDLE,WRITEHANDLE, pop ARRAY, pop, pos
436 SCALAR, pos, print FILEHANDLE LIST, print LIST, print, printf FILEHANDLE
437 FORMAT, LIST, printf FORMAT, LIST, prototype FUNCTION, push ARRAY,LIST,
438 q/STRING/, qq/STRING/, qr/STRING/, qx/STRING/, qw/STRING/, quotemeta EXPR,
439 quotemeta, rand EXPR, rand, read FILEHANDLE,SCALAR,LENGTH,OFFSET, read
440 FILEHANDLE,SCALAR,LENGTH, readdir DIRHANDLE, readline EXPR, readlink EXPR,
441 readlink, readpipe EXPR, recv SOCKET,SCALAR,LENGTH,FLAGS, redo LABEL, redo,
442 ref EXPR, ref, rename OLDNAME,NEWNAME, require VERSION, require EXPR,
443 require, reset EXPR, reset, return EXPR, return, reverse LIST, rewinddir
444 DIRHANDLE, rindex STR,SUBSTR,POSITION, rindex STR,SUBSTR, rmdir FILENAME,
445 rmdir, s///, scalar EXPR, seek FILEHANDLE,POSITION,WHENCE, seekdir
446 DIRHANDLE,POS, select FILEHANDLE, select, select RBITS,WBITS,EBITS,TIMEOUT,
447 semctl ID,SEMNUM,CMD,ARG, semget KEY,NSEMS,FLAGS, semop KEY,OPSTRING, send
448 SOCKET,MSG,FLAGS,TO, send SOCKET,MSG,FLAGS, setpgrp PID,PGRP, setpriority
449 WHICH,WHO,PRIORITY, setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL, shift ARRAY,
450 shift, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS, shmread ID,VAR,POS,SIZE,
451 shmwrite ID,STRING,POS,SIZE, shutdown SOCKET,HOW, sin EXPR, sin, sleep
452 EXPR, sleep, socket SOCKET,DOMAIN,TYPE,PROTOCOL, socketpair
453 SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, sort SUBNAME LIST, sort BLOCK LIST,
454 sort LIST, splice ARRAY,OFFSET,LENGTH,LIST, splice ARRAY,OFFSET,LENGTH,
455 splice ARRAY,OFFSET, splice ARRAY, split /PATTERN/,EXPR,LIMIT, split
456 /PATTERN/,EXPR, split /PATTERN/, split, sprintf FORMAT, LIST, sqrt EXPR,
457 sqrt, srand EXPR, srand, stat FILEHANDLE, stat EXPR, stat, study SCALAR,
458 study, sub BLOCK, sub NAME, sub NAME BLOCK, substr
459 EXPR,OFFSET,LENGTH,REPLACEMENT, substr EXPR,OFFSET,LENGTH, substr
460 EXPR,OFFSET, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
461 FILEHANDLE,FILENAME,MODE, sysopen FILEHANDLE,FILENAME,MODE,PERMS, sysread
462 FILEHANDLE,SCALAR,LENGTH,OFFSET, sysread FILEHANDLE,SCALAR,LENGTH, sysseek
463 FILEHANDLE,POSITION,WHENCE, system LIST, system PROGRAM LIST, syswrite
464 FILEHANDLE,SCALAR,LENGTH,OFFSET, syswrite FILEHANDLE,SCALAR,LENGTH,
465 syswrite FILEHANDLE,SCALAR, tell FILEHANDLE, tell, telldir DIRHANDLE, tie
466 VARIABLE,CLASSNAME,LIST, tied VARIABLE, time, times, tr///, truncate
467 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, uc EXPR, uc, ucfirst EXPR,
468 ucfirst, umask EXPR, umask, undef EXPR, undef, unlink LIST, unlink, unpack
469 TEMPLATE,EXPR, untie VARIABLE, unshift ARRAY,LIST, use Module VERSION LIST,
470 use Module VERSION, use Module LIST, use Module, use VERSION, utime LIST,
471 values HASH, vec EXPR,OFFSET,BITS, wait, waitpid PID,FLAGS, wantarray, warn
472 LIST, write FILEHANDLE, write EXPR, write, y///
473
474 =back
475
476 =back
477
478 =head2 perlreftut - Mark's very short tutorial about references
479
480 =over 4
481
482 =item DESCRIPTION
483
484 =item Who Needs Complicated Data Structures?
485
486 =item The Solution
487
488 =item Syntax
489
490 =over 4
491
492 =item Making References
493
494 =item Using References
495
496 =back
497
498 =item An Example
499
500 =item Arrow Rule
501
502 =item Solution
503
504 =item The Rest
505
506 =item Summary
507
508 =item Credits
509
510 =over 4
511
512 =item Distribution Conditions
513
514 =back
515
516 =back
517
518 =head2 perldsc - Perl Data Structures Cookbook
519
520 =over 4
521
522 =item DESCRIPTION
523
524 arrays of arrays, hashes of arrays, arrays of hashes, hashes of hashes,
525 more elaborate constructs
526
527 =item REFERENCES
528
529 =item COMMON MISTAKES
530
531 =item CAVEAT ON PRECEDENCE
532
533 =item WHY YOU SHOULD ALWAYS C<use strict>
534
535 =item DEBUGGING
536
537 =item CODE EXAMPLES
538
539 =item ARRAYS OF ARRAYS
540
541 =over 4
542
543 =item Declaration of an ARRAY OF ARRAYS
544
545 =item Generation of an ARRAY OF ARRAYS
546
547 =item Access and Printing of an ARRAY OF ARRAYS
548
549 =back
550
551 =item HASHES OF ARRAYS
552
553 =over 4
554
555 =item Declaration of a HASH OF ARRAYS
556
557 =item Generation of a HASH OF ARRAYS
558
559 =item Access and Printing of a HASH OF ARRAYS
560
561 =back
562
563 =item ARRAYS OF HASHES
564
565 =over 4
566
567 =item Declaration of an ARRAY OF HASHES
568
569 =item Generation of an ARRAY OF HASHES
570
571 =item Access and Printing of an ARRAY OF HASHES
572
573 =back
574
575 =item HASHES OF HASHES
576
577 =over 4
578
579 =item Declaration of a HASH OF HASHES
580
581 =item Generation of a HASH OF HASHES
582
583 =item Access and Printing of a HASH OF HASHES
584
585 =back
586
587 =item MORE ELABORATE RECORDS
588
589 =over 4
590
591 =item Declaration of MORE ELABORATE RECORDS
592
593 =item Declaration of a HASH OF COMPLEX RECORDS
594
595 =item Generation of a HASH OF COMPLEX RECORDS
596
597 =back
598
599 =item Database Ties
600
601 =item SEE ALSO
602
603 =item AUTHOR
604
605 =back
606
607 =head2 perlrequick - Perl regular expressions quick start
608
609 =over 4
610
611 =item DESCRIPTION
612
613 =item The Guide
614
615 =over 4
616
617 =item Simple word matching
618
619 =item Using character classes
620
621 =item Matching this or that
622
623 =item Grouping things and hierarchical matching
624
625 =item Extracting matches
626
627 =item Matching repetitions
628
629 =item More matching
630
631 =item Search and replace
632
633 =item The split operator
634
635 =back
636
637 =item BUGS
638
639 =item SEE ALSO
640
641 =item AUTHOR AND COPYRIGHT
642
643 =over 4
644
645 =item Acknowledgments
646
647 =back
648
649 =back
650
651 =head2 perlpod - the Plain Old Documentation format
652
653 =over 4
654
655 =item DESCRIPTION
656
657 =over 4
658
659 =item Ordinary Paragraph
660
661 =item Verbatim Paragraph
662
663 =item Command Paragraph
664
665 C<=head1 I<Heading Text>>, C<=head2 I<Heading Text>>, C<=head3 I<Heading
666 Text>>, C<=head4 I<Heading Text>>, C<=over I<indentlevel>>, C<=item
667 I<stuff...>>, C<=back>, C<=cut>, C<=pod>, C<=begin I<formatname>>, C<=end
668 I<formatname>>, C<=for I<formatname> I<text...>>
669
670 =item Formatting Codes
671
672 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
673 C<CE<lt>codeE<gt>> -- code text, C<LE<lt>nameE<gt>> -- a hyperlink,
674 C<EE<lt>escapeE<gt>> -- a character escape, C<FE<lt>filenameE<gt>> -- used
675 for filenames, C<SE<lt>textE<gt>> -- text contains non-breaking spaces,
676 C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a null
677 (zero-effect) formatting code
678
679 =item The Intent
680
681 =item Embedding Pods in Perl Modules
682
683 =item Hints for Writing Pod
684
685 =back
686
687 =item SEE ALSO
688
689 =item AUTHOR
690
691 =back
692
693 =head2 perlpodspec - Plain Old Documentation: format specification and
694 notes
695
696 =over 4
697
698 =item DESCRIPTION
699
700 =item Pod Definitions
701
702 =item Pod Commands
703
704 "=head1", "=head2", "=head3", "=head4", "=pod", "=cut", "=over", "=item",
705 "=back", "=begin formatname", "=end formatname", "=for formatname text..."
706
707 =item Pod Formatting Codes
708
709 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
710 C<CE<lt>codeE<gt>> -- code text, C<FE<lt>filenameE<gt>> -- style for
711 filenames, C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a
712 null (zero-effect) formatting code, C<LE<lt>nameE<gt>> -- a hyperlink,
713 C<EE<lt>escapeE<gt>> -- a character escape, C<SE<lt>textE<gt>> -- text
714 contains non-breaking spaces
715
716 =item Notes on Implementing Pod Processors
717
718 =item About LE<lt>...E<gt> Codes
719
720 First:, Second:, Third:, Fourth:, Fifth:, Sixth:
721
722 =item About =over...=back Regions
723
724 =item About Data Paragraphs and "=begin/=end" Regions
725
726 =item SEE ALSO
727
728 =item AUTHOR
729
730 =back
731
732 =head2 perlstyle - Perl style guide
733
734 =over 4
735
736 =item DESCRIPTION
737
738 =back
739
740 =head2 perltrap - Perl traps for the unwary
741
742 =over 4
743
744 =item DESCRIPTION
745
746 =over 4
747
748 =item Awk Traps
749
750 =item C Traps
751
752 =item Sed Traps
753
754 =item Shell Traps
755
756 =item Perl Traps
757
758 =item Perl4 to Perl5 Traps
759
760 Discontinuance, Deprecation, and BugFix traps, Parsing Traps, Numerical
761 Traps, General data type traps, Context Traps - scalar, list contexts,
762 Precedence Traps, General Regular Expression Traps using s///, etc,
763 Subroutine, Signal, Sorting Traps, OS Traps, DBM Traps, Unclassified Traps
764
765 =item Discontinuance, Deprecation, and BugFix traps
766
767 Discontinuance, Deprecation, BugFix, Discontinuance, Discontinuance,
768 Discontinuance, BugFix, Discontinuance, Discontinuance, BugFix,
769 Discontinuance, Deprecation, Discontinuance, Discontinuance
770
771 =item Parsing Traps
772
773 Parsing, Parsing, Parsing, Parsing, Parsing
774
775 =item Numerical Traps
776
777 Numerical, Numerical, Numerical, Bitwise string ops
778
779 =item General data type traps
780
781 (Arrays), (Arrays), (Hashes), (Globs), (Globs), (Scalar String),
782 (Constants), (Scalars), (Variable Suicide)
783
784 =item Context Traps - scalar, list contexts
785
786 (list context), (scalar context), (scalar context), (list, builtin)
787
788 =item Precedence Traps
789
790 Precedence, Precedence, Precedence, Precedence, Precedence, Precedence,
791 Precedence
792
793 =item General Regular Expression Traps using s///, etc.
794
795 Regular Expression, Regular Expression, Regular Expression, Regular
796 Expression, Regular Expression, Regular Expression, Regular Expression,
797 Regular Expression
798
799 =item Subroutine, Signal, Sorting Traps
800
801 (Signals), (Sort Subroutine), warn() won't let you specify a filehandle
802
803 =item OS Traps
804
805 (SysV), (SysV)
806
807 =item Interpolation Traps
808
809 Interpolation, Interpolation, Interpolation, Interpolation, Interpolation,
810 Interpolation, Interpolation, Interpolation, Interpolation
811
812 =item DBM Traps
813
814 DBM, DBM
815
816 =item Unclassified Traps
817
818 C<require>/C<do> trap using returned value, C<split> on empty string with
819 LIMIT specified
820
821 =back
822
823 =back
824
825 =head2 perlrun - how to execute the Perl interpreter
826
827 =over 4
828
829 =item SYNOPSIS
830
831 =item DESCRIPTION
832
833 =over 4
834
835 =item #! and quoting on non-Unix systems
836
837 OS/2, MS-DOS, Win95/NT, Macintosh, VMS
838
839 =item Location of Perl
840
841 =item Command Switches
842
843 B<-0>[I<digits>], B<-a>, B<-C>, B<-c>, B<-d>, B<-d:>I<foo[=bar,baz]>,
844 B<-D>I<letters>, B<-D>I<number>, B<-e> I<commandline>, B<-F>I<pattern>,
845 B<-h>, B<-i>[I<extension>], B<-I>I<directory>, B<-l>[I<octnum>],
846 B<-m>[B<->]I<module>, B<-M>[B<->]I<module>, B<-M>[B<->]I<'module ...'>,
847 B<-[mM]>[B<->]I<module=arg[,arg]...>, B<-n>, B<-p>, B<-P>, B<-s>, B<-S>,
848 B<-t>, B<-T>, B<-u>, B<-U>, B<-v>, B<-V>, B<-V:>I<name>, B<-w>, B<-W>,
849 B<-X>, B<-x> I<directory>
850
851 =back
852
853 =item ENVIRONMENT
854
855 HOME, LOGDIR, PATH, PERL5LIB, PERL5OPT, PERLIO, :bytes, :crlf, :mmap,
856 :perlio, :raw, :stdio, :unix, :utf8, :win32, PERLIO_DEBUG, PERLLIB,
857 PERL5DB, PERL5SHELL (specific to the Win32 port), PERL_DEBUG_MSTATS,
858 PERL_DESTRUCT_LEVEL, PERL_ENCODING, PERL_ROOT (specific to the VMS port),
859 SYS$LOGIN (specific to the VMS port)
860
861 =back
862
863 =head2 perldiag - various Perl diagnostics
864
865 =over 4
866
867 =item DESCRIPTION
868
869 =back
870
871 =head2 perllexwarn - Perl Lexical Warnings
872
873 =over 4
874
875 =item DESCRIPTION
876
877 =over 4
878
879 =item Default Warnings and Optional Warnings
880
881 =item What's wrong with B<-w> and C<$^W>
882
883 =item Controlling Warnings from the Command Line
884
885 B<-w>, B<-W>, B<-X>
886
887 =item Backward Compatibility
888
889 =item Category Hierarchy
890
891 =item Fatal Warnings
892
893 =item Reporting Warnings from a Module
894
895 =back
896
897 =item TODO
898
899 =item SEE ALSO
900
901 =item AUTHOR
902
903 =back
904
905 =head2 perldebtut - Perl debugging tutorial
906
907 =over 4
908
909 =item DESCRIPTION
910
911 =item use strict
912
913 =item Looking at data and -w and v
914
915 =item help
916
917 =item Stepping through code
918
919 =item Placeholder for a, w, t, T
920
921 =item REGULAR EXPRESSIONS
922
923 =item OUTPUT TIPS
924
925 =item CGI
926
927 =item GUIs
928
929 =item SUMMARY
930
931 =item SEE ALSO
932
933 =item AUTHOR
934
935 =item CONTRIBUTORS
936
937 =back
938
939 =head2 perldebug - Perl debugging
940
941 =over 4
942
943 =item DESCRIPTION
944
945 =item The Perl Debugger
946
947 =over 4
948
949 =item Debugger Commands
950
951 h, h [command], h h, p expr, x [maxdepth] expr, V [pkg [vars]], X [vars], y
952 [level [vars]], T, s [expr], n [expr], r, <CR>, c [line|sub], l, l
953 min+incr, l min-max, l line, l subname, -, v [line], f filename, /pattern/,
954 ?pattern?, L [abw], S [[!]regex], t, t expr, b, b [line] [condition], b
955 subname [condition], b postpone subname [condition], b load filename, b
956 compile subname, B line, B *, a [line] command, A line, A *, w expr, W
957 expr, W *, o, o booloption .., o anyoption? .., o option=value .., < ?, < [
958 command ], << command, > ?, > command, >> command, { ?, { [ command ], {{
959 command, ! number, ! -number, ! pattern, !! cmd, @ file, H -number, q or
960 ^D, R, |dbcmd, ||dbcmd, command, m expr, M, man [manpage]
961
962 =item Configurable Options
963
964 C<recallCommand>, C<ShellBang>, C<pager>, C<tkRunning>, C<signalLevel>,
965 C<warnLevel>, C<dieLevel>, C<AutoTrace>, C<LineInfo>, C<inhibit_exit>,
966 C<PrintRet>, C<ornaments>, C<frame>, C<maxTraceLen>, C<windowSize>,
967 C<arrayDepth>, C<hashDepth>, C<dumpDepth>, C<compactDump>, C<veryCompact>,
968 C<globPrint>, C<DumpDBFiles>, C<DumpPackages>, C<DumpReused>, C<quote>,
969 C<HighBit>, C<undefPrint>, C<UsageOnly>, C<TTY>, C<noTTY>, C<ReadLine>,
970 C<NonStop>
971
972 =item Debugger input/output
973
974 Prompt, Multiline commands, Stack backtrace, Line Listing Format, Frame
975 listing
976
977 =item Debugging compile-time statements
978
979 =item Debugger Customization
980
981 =item Readline Support
982
983 =item Editor Support for Debugging
984
985 =item The Perl Profiler
986
987 =back
988
989 =item Debugging regular expressions
990
991 =item Debugging memory usage
992
993 =item SEE ALSO
994
995 =item BUGS
996
997 =back
998
999 =head2 perlvar - Perl predefined variables
1000
1001 =over 4
1002
1003 =item DESCRIPTION
1004
1005 =over 4
1006
1007 =item Predefined Names
1008
1009 $ARG, $_, $a, $b, $<I<digits>>, $MATCH, $&, $PREMATCH, $`, $POSTMATCH, $',
1010 $LAST_PAREN_MATCH, $+, $^N, @LAST_MATCH_END, @+, $MULTILINE_MATCHING, $*,
1011 HANDLE->input_line_number(EXPR), $INPUT_LINE_NUMBER, $NR, $,
1012 IO::Handle->input_record_separator(EXPR), $INPUT_RECORD_SEPARATOR, $RS, $/,
1013 HANDLE->autoflush(EXPR), $OUTPUT_AUTOFLUSH, $|,
1014 IO::Handle->output_field_separator EXPR, $OUTPUT_FIELD_SEPARATOR, $OFS, $,,
1015 IO::Handle->output_record_separator EXPR, $OUTPUT_RECORD_SEPARATOR, $ORS,
1016 $\, $LIST_SEPARATOR, $", $SUBSCRIPT_SEPARATOR, $SUBSEP, $;, $OFMT, $#,
1017 HANDLE->format_page_number(EXPR), $FORMAT_PAGE_NUMBER, $%,
1018 HANDLE->format_lines_per_page(EXPR), $FORMAT_LINES_PER_PAGE, $=,
1019 HANDLE->format_lines_left(EXPR), $FORMAT_LINES_LEFT, $-, @LAST_MATCH_START,
1020 @-, C<$`> is the same as C<substr($var, 0, $-[0])>, C<$&> is the same as
1021 C<substr($var, $-[0], $+[0] - $-[0])>, C<$'> is the same as C<substr($var,
1022 $+[0])>, C<$1> is the same as C<substr($var, $-[1], $+[1] - $-[1])>, C<$2>
1023 is the same as C<substr($var, $-[2], $+[2] - $-[2])>, C<$3> is the same as
1024 C<substr $var, $-[3], $+[3] - $-[3])>, HANDLE->format_name(EXPR),
1025 $FORMAT_NAME, $~, HANDLE->format_top_name(EXPR), $FORMAT_TOP_NAME, $^,
1026 IO::Handle->format_line_break_characters EXPR,
1027 $FORMAT_LINE_BREAK_CHARACTERS, $:, IO::Handle->format_formfeed EXPR,
1028 $FORMAT_FORMFEED, $^L, $ACCUMULATOR, $^A, $CHILD_ERROR, $?, ${^ENCODING},
1029 $OS_ERROR, $ERRNO, $!, %!, $EXTENDED_OS_ERROR, $^E, $EVAL_ERROR, $@,
1030 $PROCESS_ID, $PID, $$, $REAL_USER_ID, $UID, $<, $EFFECTIVE_USER_ID, $EUID,
1031 $>, $REAL_GROUP_ID, $GID, $(, $EFFECTIVE_GROUP_ID, $EGID, $),
1032 $PROGRAM_NAME, $0, $[, $], $COMPILING, $^C, $DEBUGGING, $^D,
1033 $SYSTEM_FD_MAX, $^F, $^H, %^H, $INPLACE_EDIT, $^I, $^M, $OSNAME, $^O,
1034 ${^OPEN}, $PERLDB, $^P, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
1035 0x100, 0x200, $LAST_REGEXP_CODE_RESULT, $^R, $EXCEPTIONS_BEING_CAUGHT, $^S,
1036 $BASETIME, $^T, ${^TAINT}, $PERL_VERSION, $^V, $WARNING, $^W,
1037 ${^WARNING_BITS}, ${^WIDE_SYSTEM_CALLS}, $EXECUTABLE_NAME, $^X, ARGV,
1038 $ARGV, @ARGV, @F, @INC, @_, %INC, %ENV, $ENV{expr}, %SIG, $SIG{expr}
1039
1040 =item Error Indicators
1041
1042 =item Technical Note on the Syntax of Variable Names
1043
1044 =back
1045
1046 =item BUGS
1047
1048 =back
1049
1050 =head2 perllol - Manipulating Arrays of Arrays in Perl
1051
1052 =over 4
1053
1054 =item DESCRIPTION
1055
1056 =over 4
1057
1058 =item Declaration and Access of Arrays of Arrays
1059
1060 =item Growing Your Own
1061
1062 =item Access and Printing
1063
1064 =item Slices
1065
1066 =back
1067
1068 =item SEE ALSO
1069
1070 =item AUTHOR
1071
1072 =back
1073
1074 =head2 perlopentut - tutorial on opening things in Perl
1075
1076 =over 4
1077
1078 =item DESCRIPTION
1079
1080 =item Open E<agrave> la shell
1081
1082 =over 4
1083
1084 =item Simple Opens
1085
1086 =item Pipe Opens
1087
1088 =item The Minus File
1089
1090 =item Mixing Reads and Writes
1091
1092 =item Filters 
1093
1094 =back
1095
1096 =item Open E<agrave> la C
1097
1098 =over 4
1099
1100 =item Permissions E<agrave> la mode
1101
1102 =back
1103
1104 =item Obscure Open Tricks
1105
1106 =over 4
1107
1108 =item Re-Opening Files (dups)
1109
1110 =item Dispelling the Dweomer
1111
1112 =item Paths as Opens
1113
1114 =item Single Argument Open
1115
1116 =item Playing with STDIN and STDOUT
1117
1118 =back
1119
1120 =item Other I/O Issues
1121
1122 =over 4
1123
1124 =item Opening Non-File Files
1125
1126 =item Binary Files
1127
1128 =item File Locking
1129
1130 =back
1131
1132 =item SEE ALSO 
1133
1134 =item AUTHOR and COPYRIGHT
1135
1136 =item HISTORY
1137
1138 =back
1139
1140 =head2 perlpacktut - tutorial on C<pack> and C<unpack>
1141
1142 =over 4
1143
1144 =item DESCRIPTION
1145
1146 =item The Basic Principle
1147
1148 =item Packing Text
1149
1150 =item Packing Numbers
1151
1152 =over 4
1153
1154 =item Integers
1155
1156 =item Unpacking a Stack Frame
1157
1158 =item How to Eat an Egg on a Net
1159
1160 =item Floating point Numbers
1161
1162 =back
1163
1164 =item Exotic Templates
1165
1166 =over 4
1167
1168 =item Bit Strings
1169
1170 =item Uuencoding
1171
1172 =item Doing Sums
1173
1174 =item  Unicode
1175
1176 =item Another Portable Binary Encoding
1177
1178 =back
1179
1180 =item Lengths and Widths
1181
1182 =over 4
1183
1184 =item String Lengths
1185
1186 =item Dynamic Templates
1187
1188 =back
1189
1190 =item Packing and Unpacking C Structures
1191
1192 =over 4
1193
1194 =item The Alignment Pit
1195
1196 =item Alignment, Take 2
1197
1198 =item Alignment, Take 3
1199
1200 =item Pointers for How to Use Them
1201
1202 =back
1203
1204 =item Pack Recipes
1205
1206 =item Funnies Section
1207
1208 =item Authors
1209
1210 =back
1211
1212 =head2 perlretut - Perl regular expressions tutorial
1213
1214 =over 4
1215
1216 =item DESCRIPTION
1217
1218 =item Part 1: The basics
1219
1220 =over 4
1221
1222 =item Simple word matching
1223
1224 =item Using character classes
1225
1226 =item Matching this or that
1227
1228 =item Grouping things and hierarchical matching
1229
1230 =item Extracting matches
1231
1232 =item Matching repetitions
1233
1234 =item Building a regexp
1235
1236 =item Using regular expressions in Perl
1237
1238 =back
1239
1240 =item Part 2: Power tools
1241
1242 =over 4
1243
1244 =item More on characters, strings, and character classes
1245
1246 =item Compiling and saving regular expressions
1247
1248 =item Embedding comments and modifiers in a regular expression
1249
1250 =item Non-capturing groupings
1251
1252 =item Looking ahead and looking behind
1253
1254 =item Using independent subexpressions to prevent backtracking
1255
1256 =item Conditional expressions
1257
1258 =item A bit of magic: executing Perl code in a regular expression
1259
1260 =item Pragmas and debugging
1261
1262 =back
1263
1264 =item BUGS
1265
1266 =item SEE ALSO
1267
1268 =item AUTHOR AND COPYRIGHT
1269
1270 =over 4
1271
1272 =item Acknowledgments
1273
1274 =back
1275
1276 =back
1277
1278 =head2 perlre - Perl regular expressions
1279
1280 =over 4
1281
1282 =item DESCRIPTION
1283
1284 i, m, s, x
1285
1286 =over 4
1287
1288 =item Regular Expressions
1289
1290 [1], [2], [3], cntrl, graph, print, punct, xdigit
1291
1292 =item Extended Patterns
1293
1294 C<(?#text)>, C<(?imsx-imsx)>, C<(?:pattern)>, C<(?imsx-imsx:pattern)>,
1295 C<(?=pattern)>, C<(?!pattern)>, C<(?<=pattern)>, C<(?<!pattern)>, C<(?{
1296 code })>, C<(??{ code })>, C<< (?>pattern) >>,
1297 C<(?(condition)yes-pattern|no-pattern)>, C<(?(condition)yes-pattern)>
1298
1299 =item Backtracking
1300
1301 =item Version 8 Regular Expressions
1302
1303 =item Warning on \1 vs $1
1304
1305 =item Repeated patterns matching zero-length substring
1306
1307 =item Combining pieces together
1308
1309 C<ST>, C<S|T>, C<S{REPEAT_COUNT}>, C<S{min,max}>, C<S{min,max}?>, C<S?>,
1310 C<S*>, C<S+>, C<S??>, C<S*?>, C<S+?>, C<< (?>S) >>, C<(?=S)>, C<(?<=S)>,
1311 C<(?!S)>, C<(?<!S)>, C<(??{ EXPR })>,
1312 C<(?(condition)yes-pattern|no-pattern)>
1313
1314 =item Creating custom RE engines
1315
1316 =back
1317
1318 =item BUGS
1319
1320 =item SEE ALSO
1321
1322 =back
1323
1324 =head2 perlref - Perl references and nested data structures
1325
1326 =over 4
1327
1328 =item NOTE
1329
1330 =item DESCRIPTION
1331
1332 =over 4
1333
1334 =item Making References
1335
1336 =item Using References
1337
1338 =item Symbolic references
1339
1340 =item Not-so-symbolic references
1341
1342 =item Pseudo-hashes: Using an array as a hash
1343
1344 =item Function Templates
1345
1346 =back
1347
1348 =item WARNING
1349
1350 =item SEE ALSO
1351
1352 =back
1353
1354 =head2 perlform - Perl formats
1355
1356 =over 4
1357
1358 =item DESCRIPTION
1359
1360 =over 4
1361
1362 =item Format Variables
1363
1364 =back
1365
1366 =item NOTES
1367
1368 =over 4
1369
1370 =item Footers
1371
1372 =item Accessing Formatting Internals
1373
1374 =back
1375
1376 =item WARNINGS
1377
1378 =back
1379
1380 =head2 perlboot - Beginner's Object-Oriented Tutorial
1381
1382 =over 4
1383
1384 =item DESCRIPTION
1385
1386 =over 4
1387
1388 =item If we could talk to the animals...
1389
1390 =item Introducing the method invocation arrow
1391
1392 =item Invoking a barnyard
1393
1394 =item The extra parameter of method invocation
1395
1396 =item Calling a second method to simplify things
1397
1398 =item Inheriting the windpipes
1399
1400 =item A few notes about @ISA
1401
1402 =item Overriding the methods
1403
1404 =item Starting the search from a different place
1405
1406 =item The SUPER way of doing things
1407
1408 =item Where we're at so far...
1409
1410 =item A horse is a horse, of course of course -- or is it?
1411
1412 =item Invoking an instance method
1413
1414 =item Accessing the instance data
1415
1416 =item How to build a horse
1417
1418 =item Inheriting the constructor
1419
1420 =item Making a method work with either classes or instances
1421
1422 =item Adding parameters to a method
1423
1424 =item More interesting instances
1425
1426 =item A horse of a different color
1427
1428 =item Summary
1429
1430 =back
1431
1432 =item SEE ALSO
1433
1434 =item COPYRIGHT
1435
1436 =back
1437
1438 =head2 perltoot - Tom's object-oriented tutorial for perl
1439
1440 =over 4
1441
1442 =item DESCRIPTION
1443
1444 =item Creating a Class
1445
1446 =over 4
1447
1448 =item Object Representation
1449
1450 =item Class Interface
1451
1452 =item Constructors and Instance Methods
1453
1454 =item Planning for the Future: Better Constructors
1455
1456 =item Destructors
1457
1458 =item Other Object Methods
1459
1460 =back
1461
1462 =item Class Data
1463
1464 =over 4
1465
1466 =item Accessing Class Data
1467
1468 =item Debugging Methods
1469
1470 =item Class Destructors
1471
1472 =item Documenting the Interface
1473
1474 =back
1475
1476 =item Aggregation
1477
1478 =item Inheritance
1479
1480 =over 4
1481
1482 =item Overridden Methods
1483
1484 =item Multiple Inheritance
1485
1486 =item UNIVERSAL: The Root of All Objects
1487
1488 =back
1489
1490 =item Alternate Object Representations
1491
1492 =over 4
1493
1494 =item Arrays as Objects
1495
1496 =item Closures as Objects
1497
1498 =back
1499
1500 =item AUTOLOAD: Proxy Methods
1501
1502 =over 4
1503
1504 =item Autoloaded Data Methods
1505
1506 =item Inherited Autoloaded Data Methods
1507
1508 =back
1509
1510 =item Metaclassical Tools
1511
1512 =over 4
1513
1514 =item Class::Struct
1515
1516 =item Data Members as Variables
1517
1518 =back
1519
1520 =item NOTES
1521
1522 =over 4
1523
1524 =item Object Terminology
1525
1526 =back
1527
1528 =item SEE ALSO
1529
1530 =item AUTHOR AND COPYRIGHT
1531
1532 =item COPYRIGHT
1533
1534 =over 4
1535
1536 =item Acknowledgments
1537
1538 =back
1539
1540 =back
1541
1542 =head2 perltooc - Tom's OO Tutorial for Class Data in Perl
1543
1544 =over 4
1545
1546 =item DESCRIPTION
1547
1548 =item Class Data in a Can
1549
1550 =item Class Data as Package Variables
1551
1552 =over 4
1553
1554 =item Putting All Your Eggs in One Basket
1555
1556 =item Inheritance Concerns
1557
1558 =item The Eponymous Meta-Object
1559
1560 =item Indirect References to Class Data
1561
1562 =item Monadic Classes
1563
1564 =item Translucent Attributes
1565
1566 =back
1567
1568 =item Class Data as Lexical Variables
1569
1570 =over 4
1571
1572 =item Privacy and Responsibility 
1573
1574 =item File-Scoped Lexicals
1575
1576 =item More Inheritance Concerns
1577
1578 =item Locking the Door and Throwing Away the Key
1579
1580 =item Translucency Revisited
1581
1582 =back
1583
1584 =item NOTES
1585
1586 =item SEE ALSO
1587
1588 =item AUTHOR AND COPYRIGHT
1589
1590 =item ACKNOWLEDGEMENTS
1591
1592 =item HISTORY
1593
1594 =back
1595
1596 =head2 perlobj - Perl objects
1597
1598 =over 4
1599
1600 =item DESCRIPTION
1601
1602 =over 4
1603
1604 =item An Object is Simply a Reference
1605
1606 =item A Class is Simply a Package
1607
1608 =item A Method is Simply a Subroutine
1609
1610 =item Method Invocation
1611
1612 =item Indirect Object Syntax
1613
1614 =item Default UNIVERSAL methods
1615
1616 isa(CLASS), can(METHOD), VERSION( [NEED] )
1617
1618 =item Destructors
1619
1620 =item Summary
1621
1622 =item Two-Phased Garbage Collection
1623
1624 =back
1625
1626 =item SEE ALSO
1627
1628 =back
1629
1630 =head2 perlbot - Bag'o Object Tricks (the BOT)
1631
1632 =over 4
1633
1634 =item DESCRIPTION
1635
1636 =item OO SCALING TIPS
1637
1638 =item INSTANCE VARIABLES
1639
1640 =item SCALAR INSTANCE VARIABLES
1641
1642 =item INSTANCE VARIABLE INHERITANCE
1643
1644 =item OBJECT RELATIONSHIPS
1645
1646 =item OVERRIDING SUPERCLASS METHODS
1647
1648 =item USING RELATIONSHIP WITH SDBM
1649
1650 =item THINKING OF CODE REUSE
1651
1652 =item CLASS CONTEXT AND THE OBJECT
1653
1654 =item INHERITING A CONSTRUCTOR
1655
1656 =item DELEGATION
1657
1658 =back
1659
1660 =head2 perltie - how to hide an object class in a simple variable
1661
1662 =over 4
1663
1664 =item SYNOPSIS
1665
1666 =item DESCRIPTION
1667
1668 =over 4
1669
1670 =item Tying Scalars
1671
1672 TIESCALAR classname, LIST, FETCH this, STORE this, value, UNTIE this,
1673 DESTROY this
1674
1675 =item Tying Arrays
1676
1677 TIEARRAY classname, LIST, FETCH this, index, STORE this, index, value,
1678 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
1679 key, DELETE this, key, CLEAR this, PUSH this, LIST, POP this, SHIFT this,
1680 UNSHIFT this, LIST, SPLICE this, offset, length, LIST, UNTIE this, DESTROY
1681 this
1682
1683 =item Tying Hashes
1684
1685 USER, HOME, CLOBBER, LIST, TIEHASH classname, LIST, FETCH this, key, STORE
1686 this, key, value, DELETE this, key, CLEAR this, EXISTS this, key, FIRSTKEY
1687 this, NEXTKEY this, lastkey, UNTIE this, DESTROY this
1688
1689 =item Tying FileHandles
1690
1691 TIEHANDLE classname, LIST, WRITE this, LIST, PRINT this, LIST, PRINTF this,
1692 LIST, READ this, LIST, READLINE this, GETC this, CLOSE this, UNTIE this,
1693 DESTROY this
1694
1695 =item UNTIE this
1696
1697 =item The C<untie> Gotcha
1698
1699 =back
1700
1701 =item SEE ALSO
1702
1703 =item BUGS
1704
1705 =item AUTHOR
1706
1707 =back
1708
1709 =head2 perlipc - Perl interprocess communication (signals, fifos, pipes,
1710 safe subprocesses, sockets, and semaphores)
1711
1712 =over 4
1713
1714 =item DESCRIPTION
1715
1716 =item Signals
1717
1718 =item Named Pipes
1719
1720 =over 4
1721
1722 =item WARNING
1723
1724 =back
1725
1726 =item Using open() for IPC
1727
1728 =over 4
1729
1730 =item Filehandles
1731
1732 =item Background Processes
1733
1734 =item Complete Dissociation of Child from Parent
1735
1736 =item Safe Pipe Opens
1737
1738 =item Bidirectional Communication with Another Process
1739
1740 =item Bidirectional Communication with Yourself
1741
1742 =back
1743
1744 =item Sockets: Client/Server Communication
1745
1746 =over 4
1747
1748 =item Internet Line Terminators
1749
1750 =item Internet TCP Clients and Servers
1751
1752 =item Unix-Domain TCP Clients and Servers
1753
1754 =back
1755
1756 =item TCP Clients with IO::Socket
1757
1758 =over 4
1759
1760 =item A Simple Client
1761
1762 C<Proto>, C<PeerAddr>, C<PeerPort>
1763
1764 =item A Webget Client
1765
1766 =item Interactive Client with IO::Socket
1767
1768 =back
1769
1770 =item TCP Servers with IO::Socket
1771
1772 Proto, LocalPort, Listen, Reuse
1773
1774 =item UDP: Message Passing
1775
1776 =item SysV IPC
1777
1778 =item NOTES
1779
1780 =item BUGS
1781
1782 =item AUTHOR
1783
1784 =item SEE ALSO
1785
1786 =back
1787
1788 =head2 perlfork - Perl's fork() emulation (EXPERIMENTAL, subject to change)
1789
1790 =over 4
1791
1792 =item SYNOPSIS
1793
1794 =item DESCRIPTION
1795
1796 =over 4
1797
1798 =item Behavior of other Perl features in forked pseudo-processes
1799
1800 $$ or $PROCESS_ID, %ENV, chdir() and all other builtins that accept
1801 filenames, wait() and waitpid(), kill(), exec(), exit(), Open handles to
1802 files, directories and network sockets
1803
1804 =item Resource limits
1805
1806 =item Killing the parent process
1807
1808 =item Lifetime of the parent process and pseudo-processes
1809
1810 =item CAVEATS AND LIMITATIONS
1811
1812 BEGIN blocks, Open filehandles, Forking pipe open() not yet implemented,
1813 Global state maintained by XSUBs, Interpreter embedded in larger
1814 application, Thread-safety of extensions
1815
1816 =back
1817
1818 =item BUGS
1819
1820 =item AUTHOR
1821
1822 =item SEE ALSO
1823
1824 =back
1825
1826 =head2 perlnumber - semantics of numbers and numeric operations in Perl
1827
1828 =over 4
1829
1830 =item SYNOPSIS
1831
1832 =item DESCRIPTION
1833
1834 =item Storing numbers
1835
1836 =item Numeric operators and numeric conversions
1837
1838 =item Flavors of Perl numeric operations
1839
1840 Arithmetic operators except, C<no integer>, Arithmetic operators except,
1841 C<use integer>, Bitwise operators, C<no integer>, Bitwise operators, C<use
1842 integer>, Operators which expect an integer, Operators which expect a
1843 string
1844
1845 =item AUTHOR
1846
1847 =item SEE ALSO
1848
1849 =back
1850
1851 =head2 perlthrtut - tutorial on threads in Perl
1852
1853 =over 4
1854
1855 =item DESCRIPTION
1856
1857 =item What Is A Thread Anyway?
1858
1859 =item Threaded Program Models
1860
1861 =over 4
1862
1863 =item Boss/Worker
1864
1865 =item Work Crew
1866
1867 =item Pipeline
1868
1869 =back
1870
1871 =item Native threads
1872
1873 =item What kind of threads are perl threads?
1874
1875 =item Threadsafe Modules
1876
1877 =item Thread Basics
1878
1879 =over 4
1880
1881 =item Basic Thread Support
1882
1883 =item Creating Threads
1884
1885 =item Giving up control
1886
1887 =item Waiting For A Thread To Exit
1888
1889 =item Ignoring A Thread
1890
1891 =back
1892
1893 =item Threads And Data
1894
1895 =over 4
1896
1897 =item Shared And Unshared Data
1898
1899 =item Thread Pitfalls: Races
1900
1901 =item Controlling access: lock()
1902
1903 =item Thread Pitfall: Deadlocks
1904
1905 =item Queues: Passing Data Around
1906
1907 =back
1908
1909 =item Threads And Code
1910
1911 =over 4
1912
1913 =item Semaphores: Synchronizing Data Access
1914
1915 Basic semaphores, Advanced Semaphores
1916
1917 =back
1918
1919 =item General Thread Utility Routines
1920
1921 =over 4
1922
1923 =item What Thread Am I In?
1924
1925 =item Thread IDs
1926
1927 =item Are These Threads The Same?
1928
1929 =item What Threads Are Running?
1930
1931 =back
1932
1933 =item A Complete Example
1934
1935 =item Conclusion
1936
1937 =item Bibliography
1938
1939 =over 4
1940
1941 =item Introductory Texts
1942
1943 =item OS-Related References
1944
1945 =item Other References
1946
1947 =back
1948
1949 =item Acknowledgements
1950
1951 =item AUTHOR
1952
1953 =item Copyrights
1954
1955 =back
1956
1957 =head2 perlothrtut - old tutorial on threads in Perl
1958
1959 =over 4
1960
1961 =item DESCRIPTION
1962
1963 =item What Is A Thread Anyway?
1964
1965 =item Threaded Program Models
1966
1967 =over 4
1968
1969 =item Boss/Worker
1970
1971 =item Work Crew
1972
1973 =item Pipeline
1974
1975 =back
1976
1977 =item Native threads
1978
1979 =item What kind of threads are perl threads?
1980
1981 =item Threadsafe Modules
1982
1983 =item Thread Basics
1984
1985 =over 4
1986
1987 =item Basic Thread Support
1988
1989 =item Creating Threads
1990
1991 =item Giving up control
1992
1993 =item Waiting For A Thread To Exit
1994
1995 =item Errors In Threads
1996
1997 =item Ignoring A Thread
1998
1999 =back
2000
2001 =item Threads And Data
2002
2003 =over 4
2004
2005 =item Shared And Unshared Data
2006
2007 =item Thread Pitfall: Races
2008
2009 =item Controlling access: lock()
2010
2011 =item Thread Pitfall: Deadlocks
2012
2013 =item Queues: Passing Data Around
2014
2015 =back
2016
2017 =item Threads And Code
2018
2019 =over 4
2020
2021 =item Semaphores: Synchronizing Data Access
2022
2023 Basic semaphores, Advanced Semaphores
2024
2025 =item Attributes: Restricting Access To Subroutines
2026
2027 =item Subroutine Locks
2028
2029 =item Methods
2030
2031 =item Locking A Subroutine
2032
2033 =back
2034
2035 =item General Thread Utility Routines
2036
2037 =over 4
2038
2039 =item What Thread Am I In?
2040
2041 =item Thread IDs
2042
2043 =item Are These Threads The Same?
2044
2045 =item What Threads Are Running?
2046
2047 =back
2048
2049 =item A Complete Example
2050
2051 =item Conclusion
2052
2053 =item Bibliography
2054
2055 =over 4
2056
2057 =item Introductory Texts
2058
2059 =item OS-Related References
2060
2061 =item Other References
2062
2063 =back
2064
2065 =item Acknowledgements
2066
2067 =item AUTHOR
2068
2069 =item Copyrights
2070
2071 =back
2072
2073 =head2 perlport - Writing portable Perl
2074
2075 =over 4
2076
2077 =item DESCRIPTION
2078
2079 Not all Perl programs have to be portable, Nearly all of Perl already I<is>
2080 portable
2081
2082 =item ISSUES
2083
2084 =over 4
2085
2086 =item Newlines
2087
2088 =item Numbers endianness and Width
2089
2090 =item Files and Filesystems
2091
2092 =item System Interaction
2093
2094 =item Interprocess Communication (IPC)
2095
2096 =item External Subroutines (XS)
2097
2098 =item Standard Modules
2099
2100 =item Time and Date
2101
2102 =item Character sets and character encoding
2103
2104 =item Internationalisation
2105
2106 =item System Resources
2107
2108 =item Security
2109
2110 =item Style
2111
2112 =back
2113
2114 =item CPAN Testers
2115
2116 Mailing list: cpan-testers@perl.org, Testing results:
2117 http://testers.cpan.org/
2118
2119 =item PLATFORMS
2120
2121 =over 4
2122
2123 =item Unix
2124
2125 =item DOS and Derivatives
2126
2127 =item S<Mac OS>
2128
2129 =item VMS
2130
2131 =item VOS
2132
2133 =item EBCDIC Platforms
2134
2135 =item Acorn RISC OS
2136
2137 =item Other perls
2138
2139 =back
2140
2141 =item FUNCTION IMPLEMENTATIONS
2142
2143 =over 4
2144
2145 =item Alphabetical Listing of Perl Functions
2146
2147 -I<X> FILEHANDLE, -I<X> EXPR, -I<X>, alarm SECONDS, alarm, binmode
2148 FILEHANDLE, chmod LIST, chown LIST, chroot FILENAME, chroot, crypt
2149 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MODE, dump LABEL, exec
2150 LIST, exit EXPR, exit, fcntl FILEHANDLE,FUNCTION,SCALAR, flock
2151 FILEHANDLE,OPERATION, fork, getlogin, getpgrp PID, getppid, getpriority
2152 WHICH,WHO, getpwnam NAME, getgrnam NAME, getnetbyname NAME, getpwuid UID,
2153 getgrgid GID, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
2154 getservbyport PORT,PROTO, getpwent, getgrent, gethostent, getnetent,
2155 getprotoent, getservent, sethostent STAYOPEN, setnetent STAYOPEN,
2156 setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent, endhostent,
2157 endnetent, endprotoent, endservent, getsockopt SOCKET,LEVEL,OPTNAME, glob
2158 EXPR, glob, ioctl FILEHANDLE,FUNCTION,SCALAR, kill SIGNAL, LIST, link
2159 OLDFILE,NEWFILE, lstat FILEHANDLE, lstat EXPR, lstat, msgctl ID,CMD,ARG,
2160 msgget KEY,FLAGS, msgsnd ID,MSG,FLAGS, msgrcv ID,VAR,SIZE,TYPE,FLAGS, open
2161 FILEHANDLE,EXPR, open FILEHANDLE, pipe READHANDLE,WRITEHANDLE, readlink
2162 EXPR, readlink, select RBITS,WBITS,EBITS,TIMEOUT, semctl ID,SEMNUM,CMD,ARG,
2163 semget KEY,NSEMS,FLAGS, semop KEY,OPSTRING, setgrent, setpgrp PID,PGRP,
2164 setpriority WHICH,WHO,PRIORITY, setpwent, setsockopt
2165 SOCKET,LEVEL,OPTNAME,OPTVAL, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS,
2166 shmread ID,VAR,POS,SIZE, shmwrite ID,STRING,POS,SIZE, sockatmark SOCKET,
2167 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, stat FILEHANDLE, stat
2168 EXPR, stat, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
2169 FILEHANDLE,FILENAME,MODE,PERMS, system LIST, times, truncate
2170 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, umask EXPR, umask, utime LIST,
2171 wait, waitpid PID,FLAGS
2172
2173 =back
2174
2175 =item CHANGES
2176
2177 v1.48, 02 February 2001, v1.47, 22 March 2000, v1.46, 12 February 2000,
2178 v1.45, 20 December 1999, v1.44, 19 July 1999, v1.43, 24 May 1999, v1.42, 22
2179 May 1999, v1.41, 19 May 1999, v1.40, 11 April 1999, v1.39, 11 February
2180 1999, v1.38, 31 December 1998, v1.37, 19 December 1998, v1.36, 9 September
2181 1998, v1.35, 13 August 1998, v1.33, 06 August 1998, v1.32, 05 August 1998,
2182 v1.30, 03 August 1998, v1.23, 10 July 1998
2183
2184 =item Supported Platforms
2185
2186 =item SEE ALSO
2187
2188 =item AUTHORS / CONTRIBUTORS
2189
2190 =back
2191
2192 =head2 perllocale - Perl locale handling (internationalization and
2193 localization)
2194
2195 =over 4
2196
2197 =item DESCRIPTION
2198
2199 =item PREPARING TO USE LOCALES
2200
2201 =item USING LOCALES
2202
2203 =over 4
2204
2205 =item The use locale pragma
2206
2207 =item The setlocale function
2208
2209 =item Finding locales
2210
2211 =item LOCALE PROBLEMS
2212
2213 =item Temporarily fixing locale problems
2214
2215 =item Permanently fixing locale problems
2216
2217 =item Permanently fixing your system's locale configuration
2218
2219 =item Fixing system locale configuration
2220
2221 =item The localeconv function
2222
2223 =item I18N::Langinfo
2224
2225 =back
2226
2227 =item LOCALE CATEGORIES
2228
2229 =over 4
2230
2231 =item Category LC_COLLATE: Collation
2232
2233 =item Category LC_CTYPE: Character Types
2234
2235 =item Category LC_NUMERIC: Numeric Formatting
2236
2237 =item Category LC_MONETARY: Formatting of monetary amounts
2238
2239 =item LC_TIME
2240
2241 =item Other categories
2242
2243 =back
2244
2245 =item SECURITY
2246
2247 =item ENVIRONMENT
2248
2249 PERL_BADLANG, LC_ALL, LANGUAGE, LC_CTYPE, LC_COLLATE, LC_MONETARY,
2250 LC_NUMERIC, LC_TIME, LANG
2251
2252 =item NOTES
2253
2254 =over 4
2255
2256 =item Backward compatibility
2257
2258 =item I18N:Collate obsolete
2259
2260 =item Sort speed and memory use impacts
2261
2262 =item write() and LC_NUMERIC
2263
2264 =item Freely available locale definitions
2265
2266 =item I18n and l10n
2267
2268 =item An imperfect standard
2269
2270 =back
2271
2272 =item Unicode and UTF-8
2273
2274 =item BUGS
2275
2276 =over 4
2277
2278 =item Broken systems
2279
2280 =back
2281
2282 =item SEE ALSO
2283
2284 =item HISTORY
2285
2286 =back
2287
2288 =head2 perluniintro - Perl Unicode introduction
2289
2290 =over 4
2291
2292 =item DESCRIPTION
2293
2294 =over 4
2295
2296 =item Unicode
2297
2298 =item Perl's Unicode Support
2299
2300 =item Perl's Unicode Model
2301
2302 =item Unicode and EBCDIC
2303
2304 =item Creating Unicode
2305
2306 =item Handling Unicode
2307
2308 =item Legacy Encodings
2309
2310 =item Unicode I/O
2311
2312 =item Displaying Unicode As Text
2313
2314 =item Special Cases
2315
2316 =item Advanced Topics
2317
2318 =item Miscellaneous
2319
2320 =item Questions With Answers
2321
2322 , , , , , , 
2323
2324 =item Hexadecimal Notation
2325
2326 =item Further Resources
2327
2328 =back
2329
2330 =item UNICODE IN OLDER PERLS
2331
2332 =item SEE ALSO
2333
2334 =item ACKNOWLEDGEMENTS
2335
2336 =item AUTHOR, COPYRIGHT, AND LICENSE
2337
2338 =back
2339
2340 =head2 perlunicode - Unicode support in Perl
2341
2342 =over 4
2343
2344 =item DESCRIPTION
2345
2346 =over 4
2347
2348 =item Important Caveats
2349
2350 Input and Output Disciplines, Regular Expressions, C<use utf8> still needed
2351 to enable UTF-8/UTF-EBCDIC in scripts
2352
2353 =item Byte and Character semantics
2354
2355 =item Effects of character semantics
2356
2357 =item Scripts
2358
2359 =item Blocks
2360
2361 =item User-defined Character Properties
2362
2363 =item Character encodings for input and output
2364
2365 =item Unicode Regular Expression Support Level
2366
2367 =item Unicode Encodings
2368
2369 =item Security Implications of Unicode
2370
2371 =item Unicode in Perl on EBCDIC
2372
2373 =item Locales
2374
2375 =item Using Unicode in XS
2376
2377 =back
2378
2379 =item BUGS
2380
2381 =over 4
2382
2383 =item Interaction with locales
2384
2385 =item Interaction with extensions
2386
2387 =item speed
2388
2389 =back
2390
2391 =item SEE ALSO
2392
2393 =back
2394
2395 =head2 perlebcdic - Considerations for running Perl on EBCDIC platforms
2396
2397 =over 4
2398
2399 =item DESCRIPTION
2400
2401 =item COMMON CHARACTER CODE SETS
2402
2403 =over 4
2404
2405 =item ASCII
2406
2407 =item ISO 8859
2408
2409 =item Latin 1 (ISO 8859-1)
2410
2411 =item EBCDIC
2412
2413 =item 13 variant characters
2414
2415 =item 0037
2416
2417 =item 1047
2418
2419 =item POSIX-BC
2420
2421 =item Unicode code points versus EBCDIC code points
2422
2423 =item Remaining Perl Unicode problems in EBCDIC
2424
2425 =item Unicode and UTF
2426
2427 =item Using Encode
2428
2429 =back
2430
2431 =item SINGLE OCTET TABLES
2432
2433 recipe 0, recipe 1, recipe 2, recipe 3, recipe 4, recipe 5, recipe 6
2434
2435 =item IDENTIFYING CHARACTER CODE SETS
2436
2437 =item CONVERSIONS
2438
2439 =over 4
2440
2441 =item tr///
2442
2443 =item iconv
2444
2445 =item C RTL
2446
2447 =back
2448
2449 =item OPERATOR DIFFERENCES
2450
2451 =item FUNCTION DIFFERENCES
2452
2453 chr(), ord(), pack(), print(), printf(), sort(), sprintf(), unpack()
2454
2455 =item REGULAR EXPRESSION DIFFERENCES
2456
2457 =item SOCKETS
2458
2459 =item SORTING
2460
2461 =over 4
2462
2463 =item Ignore ASCII vs. EBCDIC sort differences.
2464
2465 =item MONO CASE then sort data.
2466
2467 =item Convert, sort data, then re convert.
2468
2469 =item Perform sorting on one type of machine only.
2470
2471 =back
2472
2473 =item TRANSFORMATION FORMATS
2474
2475 =over 4
2476
2477 =item URL decoding and encoding
2478
2479 =item uu encoding and decoding
2480
2481 =item Quoted-Printable encoding and decoding
2482
2483 =item Caesarian ciphers
2484
2485 =back
2486
2487 =item Hashing order and checksums
2488
2489 =item I18N AND L10N
2490
2491 =item MULTI OCTET CHARACTER SETS
2492
2493 =item OS ISSUES
2494
2495 =over 4
2496
2497 =item OS/400 
2498
2499 IFS access
2500
2501 =item OS/390, z/OS
2502
2503 chcp, dataset access, OS/390, z/OS iconv, locales
2504
2505 =item VM/ESA?
2506
2507 =item POSIX-BC?
2508
2509 =back
2510
2511 =item BUGS
2512
2513 =item SEE ALSO
2514
2515 =item REFERENCES
2516
2517 =item HISTORY
2518
2519 =item AUTHOR
2520
2521 =back
2522
2523 =head2 perlsec - Perl security
2524
2525 =over 4
2526
2527 =item DESCRIPTION
2528
2529 =over 4
2530
2531 =item Laundering and Detecting Tainted Data
2532
2533 =item Switches On the "#!" Line
2534
2535 =item Cleaning Up Your Path
2536
2537 =item Security Bugs
2538
2539 =item Protecting Your Programs
2540
2541 =item Unicode
2542
2543 =back
2544
2545 =item SEE ALSO
2546
2547 =back
2548
2549 =head2 perlmod - Perl modules (packages and symbol tables)
2550
2551 =over 4
2552
2553 =item DESCRIPTION
2554
2555 =over 4
2556
2557 =item Packages
2558
2559 =item Symbol Tables
2560
2561 =item Package Constructors and Destructors
2562
2563 =item Perl Classes
2564
2565 =item Perl Modules
2566
2567 =item Making your module threadsafe
2568
2569 =back
2570
2571 =item SEE ALSO
2572
2573 =back
2574
2575 =head2 perlmodinstall - Installing CPAN Modules
2576
2577 =over 4
2578
2579 =item DESCRIPTION
2580
2581 =over 4
2582
2583 =item PREAMBLE
2584
2585 B<DECOMPRESS> the file, B<UNPACK> the file into a directory, B<BUILD> the
2586 module (sometimes unnecessary), B<INSTALL> the module
2587
2588 =back
2589
2590 =item PORTABILITY
2591
2592 =item HEY
2593
2594 =item AUTHOR
2595
2596 =item COPYRIGHT
2597
2598 =back
2599
2600 =head2 perlmodlib - constructing new Perl modules and finding existing ones
2601
2602 =over 4
2603
2604 =item DESCRIPTION
2605
2606 =item THE PERL MODULE LIBRARY
2607
2608 =over 4
2609
2610 =item Pragmatic Modules
2611
2612 attributes, autouse, base, bigint, bignum, bigrat, blib, bytes, charnames,
2613 constant, diagnostics, encoding, fields, filetest, if, integer, less,
2614 locale, open, overload, re, sigtrap, sort, strict, subs, utf8, vars,
2615 vmsish, warnings, warnings::register
2616
2617 =item Standard Modules
2618
2619 AnyDBM_File, Attribute::Handlers, AutoLoader, AutoSplit, Benchmark, CGI,
2620 CGI::Apache, CGI::Carp, CGI::Cookie, CGI::Fast, CGI::Pretty, CGI::Push,
2621 CGI::Switch, CGI::Util, CPAN, CPAN::FirstTime, CPAN::Nox, Carp,
2622 Carp::Heavy, Class::ISA, Class::Struct, Cwd, DB, Devel::SelfStubber,
2623 Digest, DirHandle, Dumpvalue, English, Env, Exporter, Exporter::Heavy,
2624 ExtUtils::Command, ExtUtils::Constant, ExtUtils::Embed, ExtUtils::Install,
2625 ExtUtils::Installed, ExtUtils::Liblist, ExtUtils::MM_BeOS,
2626 ExtUtils::MM_Cygwin, ExtUtils::MM_NW5, ExtUtils::MM_OS2, ExtUtils::MM_Unix,
2627 ExtUtils::MM_VMS, ExtUtils::MM_Win32, ExtUtils::MakeMaker,
2628 ExtUtils::Manifest, ExtUtils::Mkbootstrap, ExtUtils::Mksymlists,
2629 ExtUtils::Packlist, ExtUtils::testlib, Fatal, File::Basename,
2630 File::CheckTree, File::Compare, File::Copy, File::DosGlob, File::Find,
2631 File::Path, File::Spec, File::Spec::Cygwin, File::Spec::Epoc,
2632 File::Spec::Functions, File::Spec::Mac, File::Spec::OS2, File::Spec::Unix,
2633 File::Spec::VMS, File::Spec::Win32, File::Temp, File::stat, FileCache,
2634 FileHandle, Filter::Simple, FindBin, Getopt::Long, Getopt::Std, Hash::Util,
2635 I18N::Collate, I18N::LangTags, I18N::LangTags::List, IPC::Open2,
2636 IPC::Open3, Locale::Constants, Locale::Country, Locale::Currency,
2637 Locale::Language, Locale::Maketext, Locale::Maketext::TPJ13,
2638 Locale::Script, Math::BigFloat, Math::BigInt, Math::BigInt::Calc,
2639 Math::BigRat, Math::Complex, Math::Trig, Memoize, Memoize::AnyDBM_File,
2640 Memoize::Expire, Memoize::ExpireFile, Memoize::ExpireTest,
2641 Memoize::NDBM_File, Memoize::SDBM_File, Memoize::Storable, NEXT, Net::Cmd,
2642 Net::Config, Net::Domain, Net::FTP, Net::NNTP, Net::Netrc, Net::POP3,
2643 Net::Ping, Net::SMTP, Net::Time, Net::hostent, Net::libnetFAQ, Net::netent,
2644 Net::protoent, Net::servent, PerlIO, Pod::Checker, Pod::Find,
2645 Pod::Functions, Pod::Html, Pod::InputObjects, Pod::LaTeX, Pod::Man,
2646 Pod::ParseLink, Pod::ParseUtils, Pod::Parser, Pod::Plainer, Pod::Select,
2647 Pod::Text, Pod::Text::Color, Pod::Text::Overstrike, Pod::Text::Termcap,
2648 Pod::Usage, Pod::t::basic, Search::Dict, SelectSaver, SelfLoader, Shell,
2649 Switch, Symbol, Term::ANSIColor, Term::Cap, Term::Complete, Term::ReadLine,
2650 Test, Test::Builder, Test::Harness, Test::Harness::Assert,
2651 Test::Harness::Iterator, Test::Harness::Straps, Test::More, Test::Simple,
2652 Test::Tutorial, Text::Abbrev, Text::Balanced, Text::ParseWords,
2653 Text::Soundex, Text::Tabs, Text::Wrap, Thread, Tie::Array, Tie::File,
2654 Tie::Handle, Tie::Hash, Tie::Memoize, Tie::RefHash, Tie::Scalar,
2655 Tie::SubstrHash, Time::Local, Time::gmtime, Time::localtime, Time::tm,
2656 UNIVERSAL, Unicode::Collate, Unicode::UCD, User::grent, User::pwent, Win32
2657
2658 =item Extension Modules
2659
2660 =back
2661
2662 =item CPAN
2663
2664 =over 4
2665
2666 =item Africa
2667
2668 =item Asia
2669
2670 =item Central America
2671
2672 =item Europe
2673
2674 =item North America
2675
2676 =item Oceania
2677
2678 =item South America
2679
2680 =back
2681
2682 =item Modules: Creation, Use, and Abuse
2683
2684 =over 4
2685
2686 =item Guidelines for Module Creation
2687
2688 =item Guidelines for Converting Perl 4 Library Scripts into Modules
2689
2690 =item Guidelines for Reusing Application Code
2691
2692 =back
2693
2694 =item NOTE
2695
2696 =back
2697
2698 =head2 perlmodstyle - Perl module style guide
2699
2700 =over 4
2701
2702 =item INTRODUCTION
2703
2704 =item QUICK CHECKLIST
2705
2706 =over 4
2707
2708 =item Before you start
2709
2710 =item The API
2711
2712 =item Stability
2713
2714 =item Documentation
2715
2716 =item Release considerations
2717
2718 =back
2719
2720 =item BEFORE YOU START WRITING A MODULE
2721
2722 =over 4
2723
2724 =item Has it been done before?
2725
2726 =item Do one thing and do it well
2727
2728 =item What's in a name?
2729
2730 =back
2731
2732 =item DESIGNING AND WRITING YOUR MODULE
2733
2734 =over 4
2735
2736 =item To OO or not to OO?
2737
2738 =item Designing your API
2739
2740 Write simple routines to do simple things, Separate functionality from
2741 output, Provide sensible shortcuts and defaults, Naming conventions,
2742 Parameter passing
2743
2744 =item Strictness and warnings
2745
2746 =item Backwards compatibility
2747
2748 =item Error handling and messages
2749
2750 =back
2751
2752 =item DOCUMENTING YOUR MODULE
2753
2754 =over 4
2755
2756 =item POD
2757
2758 =item README, INSTALL, release notes, changelogs
2759
2760 =back
2761
2762 =item RELEASE CONSIDERATIONS
2763
2764 =over 4
2765
2766 =item Version numbering
2767
2768 =item Pre-requisites
2769
2770 =item Testing
2771
2772 =item Packaging
2773
2774 =item Licensing
2775
2776 =back
2777
2778 =item COMMON PITFALLS
2779
2780 =over 4
2781
2782 =item Reinventing the wheel
2783
2784 =item Trying to do too much
2785
2786 =item Inappropriate documentation
2787
2788 =back
2789
2790 =item SEE ALSO
2791
2792 L<perlstyle>, L<perlnewmod>, L<perlpod>, L<podchecker>, Testing tools,
2793 http://pause.perl.org/, Any good book on software engineering
2794
2795 =item AUTHOR
2796
2797 =back
2798
2799 =head2 perlnewmod - preparing a new module for distribution
2800
2801 =over 4
2802
2803 =item DESCRIPTION
2804
2805 =over 4
2806
2807 =item Warning
2808
2809 =item What should I make into a module?
2810
2811 =item Step-by-step: Preparing the ground
2812
2813 Look around, Check it's new, Discuss the need, Choose a name, Check again
2814
2815 =item Step-by-step: Making the module
2816
2817 Start with F<h2xs>, Use L<strict|strict> and L<warnings|warnings>, Use
2818 L<Carp|Carp>, Use L<Exporter|Exporter> - wisely!, Use L<plain old
2819 documentation|perlpod>, Write tests, Write the README
2820
2821 =item Step-by-step: Distributing your module
2822
2823 Get a CPAN user ID, C<perl Makefile.PL; make test; make dist>, Upload the
2824 tarball, Announce to the modules list, Announce to clpa, Fix bugs!
2825
2826 =back
2827
2828 =item AUTHOR
2829
2830 =item SEE ALSO
2831
2832 =back
2833
2834 =head2 perlfaq1 - General Questions About Perl ($Revision: 1.8 $, $Date:
2835 2002/04/07 18:46:13 $)
2836
2837 =over 4
2838
2839 =item DESCRIPTION
2840
2841 =over 4
2842
2843 =item What is Perl?
2844
2845 =item Who supports Perl?  Who develops it?  Why is it free?
2846
2847 =item Which version of Perl should I use?
2848
2849 =item What are perl4 and perl5?
2850
2851 =item What is perl6?
2852
2853 =item How stable is Perl?
2854
2855 =item Is Perl difficult to learn?
2856
2857 =item How does Perl compare with other languages like Java, Python, REXX,
2858 Scheme, or Tcl?
2859
2860 =item Can I do [task] in Perl?
2861
2862 =item When shouldn't I program in Perl?
2863
2864 =item What's the difference between "perl" and "Perl"?
2865
2866 =item Is it a Perl program or a Perl script?
2867
2868 =item What is a JAPH?
2869
2870 =item Where can I get a list of Larry Wall witticisms?
2871
2872 =item How can I convince my sysadmin/supervisor/employees to use version
2873 5/5.6.1/Perl instead of some other language?
2874
2875 =back
2876
2877 =item AUTHOR AND COPYRIGHT
2878
2879 =back
2880
2881 =head2 perlfaq2 - Obtaining and Learning about Perl ($Revision: 1.13 $,
2882 $Date: 2002/04/26 16:56:35 $)
2883
2884 =over 4
2885
2886 =item DESCRIPTION
2887
2888 =over 4
2889
2890 =item What machines support Perl?  Where do I get it?
2891
2892 =item How can I get a binary version of Perl?
2893
2894 =item I don't have a C compiler on my system.  How can I compile perl?
2895
2896 =item I copied the Perl binary from one machine to another, but scripts
2897 don't work.
2898
2899 =item I grabbed the sources and tried to compile but gdbm/dynamic
2900 loading/malloc/linking/... failed.  How do I make it work?
2901
2902 =item What modules and extensions are available for Perl?  What is CPAN? 
2903 What does CPAN/src/... mean?
2904
2905 =item Is there an ISO or ANSI certified version of Perl?
2906
2907 =item Where can I get information on Perl?
2908
2909 =item What are the Perl newsgroups on Usenet?  Where do I post questions?
2910
2911 =item Where should I post source code?
2912
2913 =item Perl Books
2914
2915 References, Tutorials, Task-Oriented, Special Topics
2916
2917 =item Perl in Magazines
2918
2919 =item Perl on the Net: FTP and WWW Access
2920
2921 =item What mailing lists are there for Perl?
2922
2923 =item Archives of comp.lang.perl.misc
2924
2925 =item Where can I buy a commercial version of Perl?
2926
2927 =item Where do I send bug reports?
2928
2929 =item What is perl.com? Perl Mongers? pm.org? perl.org? cpan.org?
2930
2931 =back
2932
2933 =item AUTHOR AND COPYRIGHT
2934
2935 =back
2936
2937 =head2 perlfaq3 - Programming Tools ($Revision: 1.22 $, $Date: 2002/05/06
2938 13:11:13 $)
2939
2940 =over 4
2941
2942 =item DESCRIPTION
2943
2944 =over 4
2945
2946 =item How do I do (anything)?
2947
2948 =item How can I use Perl interactively?
2949
2950 =item Is there a Perl shell?
2951
2952 =item How do I debug my Perl programs?
2953
2954 =item How do I profile my Perl programs?
2955
2956 =item How do I cross-reference my Perl programs?
2957
2958 =item Is there a pretty-printer (formatter) for Perl?
2959
2960 =item Is there a ctags for Perl?
2961
2962 =item Is there an IDE or Windows Perl Editor?
2963
2964 Komodo, The Object System, Open Perl IDE, PerlBuilder, visiPerl+, OptiPerl,
2965 CodeMagicCD, GNU Emacs, MicroEMACS, XEmacs, Elvis, Vile, Vim, Codewright,
2966 MultiEdit, SlickEdit, Bash, Ksh, Tcsh, Zsh, BBEdit and BBEdit Lite, Alpha
2967
2968 =item Where can I get Perl macros for vi?
2969
2970 =item Where can I get perl-mode for emacs?
2971
2972 =item How can I use curses with Perl?
2973
2974 =item How can I use X or Tk with Perl?
2975
2976 =item How can I generate simple menus without using CGI or Tk?
2977
2978 =item How can I make my Perl program run faster?
2979
2980 =item How can I make my Perl program take less memory?
2981
2982 Don't slurp!, Use map and grep selectively, Avoid unnecessary quotes and
2983 stringification, Pass by reference, Tie large variables to disk
2984
2985 =item Is it unsafe to return a pointer to local data?
2986
2987 =item How can I free an array or hash so my program shrinks?
2988
2989 =item How can I make my CGI script more efficient?
2990
2991 =item How can I hide the source for my Perl program?
2992
2993 =item How can I compile my Perl program into byte code or C?
2994
2995 =item How can I compile Perl into Java?
2996
2997 =item How can I get C<#!perl> to work on [MS-DOS,NT,...]?
2998
2999 =item Can I write useful Perl programs on the command line?
3000
3001 =item Why don't Perl one-liners work on my DOS/Mac/VMS system?
3002
3003 =item Where can I learn about CGI or Web programming in Perl?
3004
3005 =item Where can I learn about object-oriented Perl programming?
3006
3007 =item Where can I learn about linking C with Perl? [h2xs, xsubpp]
3008
3009 =item I've read perlembed, perlguts, etc., but I can't embed perl in
3010 my C program; what am I doing wrong?
3011
3012 =item When I tried to run my script, I got this message. What does it mean?
3013
3014 =item What's MakeMaker?
3015
3016 =back
3017
3018 =item AUTHOR AND COPYRIGHT
3019
3020 =back
3021
3022 =head2 perlfaq4 - Data Manipulation ($Revision: 1.21 $, $Date: 2002/05/06
3023 13:08:46 $)
3024
3025 =over 4
3026
3027 =item DESCRIPTION
3028
3029 =item Data: Numbers
3030
3031 =over 4
3032
3033 =item Why am I getting long decimals (eg, 19.9499999999999) instead of the
3034 numbers I should be getting (eg, 19.95)?
3035
3036 =item Why isn't my octal data interpreted correctly?
3037
3038 =item Does Perl have a round() function?  What about ceil() and floor()? 
3039 Trig functions?
3040
3041 =item How do I convert between numeric representations?
3042
3043 B<How do I convert hexadecimal into decimal:>, B<How do I convert from
3044 decimal to hexadecimal:>, B<How do I convert from octal to decimal:>, B<How
3045 do I convert from decimal to octal:>, B<How do I convert from binary to
3046 decimal:>, B<How do I convert from decimal to binary:>
3047
3048 =item Why doesn't & work the way I want it to?
3049
3050 =item How do I multiply matrices?
3051
3052 =item How do I perform an operation on a series of integers?
3053
3054 =item How can I output Roman numerals?
3055
3056 =item Why aren't my random numbers random?
3057
3058 =item How do I get a random number between X and Y?
3059
3060 =back
3061
3062 =item Data: Dates
3063
3064 =over 4
3065
3066 =item How do I find the week-of-the-year/day-of-the-year?
3067
3068 =item How do I find the current century or millennium?
3069
3070 =item How can I compare two dates and find the difference?
3071
3072 =item How can I take a string and turn it into epoch seconds?
3073
3074 =item How can I find the Julian Day?
3075
3076 =item How do I find yesterday's date?
3077
3078 =item Does Perl have a Year 2000 problem?  Is Perl Y2K compliant?
3079
3080 =back
3081
3082 =item Data: Strings
3083
3084 =over 4
3085
3086 =item How do I validate input?
3087
3088 =item How do I unescape a string?
3089
3090 =item How do I remove consecutive pairs of characters?
3091
3092 =item How do I expand function calls in a string?
3093
3094 =item How do I find matching/nesting anything?
3095
3096 =item How do I reverse a string?
3097
3098 =item How do I expand tabs in a string?
3099
3100 =item How do I reformat a paragraph?
3101
3102 =item How can I access/change the first N letters of a string?
3103
3104 =item How do I change the Nth occurrence of something?
3105
3106 =item How can I count the number of occurrences of a substring within a
3107 string?
3108
3109 =item How do I capitalize all the words on one line?
3110
3111 =item How can I split a [character] delimited string except when inside
3112 [character]? (Comma-separated files)
3113
3114 =item How do I strip blank space from the beginning/end of a string?
3115
3116 =item How do I pad a string with blanks or pad a number with zeroes?
3117
3118 =item How do I extract selected columns from a string?
3119
3120 =item How do I find the soundex value of a string?
3121
3122 =item How can I expand variables in text strings?
3123
3124 =item What's wrong with always quoting "$vars"?
3125
3126 =item Why don't my <<HERE documents work?
3127
3128 1. There must be no space after the << part, 2. There (probably) should be
3129 a semicolon at the end, 3. You can't (easily) have any space in front of
3130 the tag
3131
3132 =back
3133
3134 =item Data: Arrays
3135
3136 =over 4
3137
3138 =item What is the difference between a list and an array?
3139
3140 =item What is the difference between $array[1] and @array[1]?
3141
3142 =item How can I remove duplicate elements from a list or array?
3143
3144 a), b), c), d), e)
3145
3146 =item How can I tell whether a certain element is contained in a list or
3147 array?
3148
3149 =item How do I compute the difference of two arrays?  How do I compute the
3150 intersection of two arrays?
3151
3152 =item How do I test whether two arrays or hashes are equal?
3153
3154 =item How do I find the first array element for which a condition is true?
3155
3156 =item How do I handle linked lists?
3157
3158 =item How do I handle circular lists?
3159
3160 =item How do I shuffle an array randomly?
3161
3162 =item How do I process/modify each element of an array?
3163
3164 =item How do I select a random element from an array?
3165
3166 =item How do I permute N elements of a list?
3167
3168 =item How do I sort an array by (anything)?
3169
3170 =item How do I manipulate arrays of bits?
3171
3172 =item Why does defined() return true on empty arrays and hashes?
3173
3174 =back
3175
3176 =item Data: Hashes (Associative Arrays)
3177
3178 =over 4
3179
3180 =item How do I process an entire hash?
3181
3182 =item What happens if I add or remove keys from a hash while iterating over
3183 it?
3184
3185 =item How do I look up a hash element by value?
3186
3187 =item How can I know how many entries are in a hash?
3188
3189 =item How do I sort a hash (optionally by value instead of key)?
3190
3191 =item How can I always keep my hash sorted?
3192
3193 =item What's the difference between "delete" and "undef" with hashes?
3194
3195 =item Why don't my tied hashes make the defined/exists distinction?
3196
3197 =item How do I reset an each() operation part-way through?
3198
3199 =item How can I get the unique keys from two hashes?
3200
3201 =item How can I store a multidimensional array in a DBM file?
3202
3203 =item How can I make my hash remember the order I put elements into it?
3204
3205 =item Why does passing a subroutine an undefined element in a hash create
3206 it?
3207
3208 =item How can I make the Perl equivalent of a C structure/C++ class/hash or
3209 array of hashes or arrays?
3210
3211 =item How can I use a reference as a hash key?
3212
3213 =back
3214
3215 =item Data: Misc
3216
3217 =over 4
3218
3219 =item How do I handle binary data correctly?
3220
3221 =item How do I determine whether a scalar is a number/whole/integer/float?
3222
3223 =item How do I keep persistent data across program calls?
3224
3225 =item How do I print out or copy a recursive data structure?
3226
3227 =item How do I define methods for every class/object?
3228
3229 =item How do I verify a credit card checksum?
3230
3231 =item How do I pack arrays of doubles or floats for XS code?
3232
3233 =back
3234
3235 =item AUTHOR AND COPYRIGHT
3236
3237 =back
3238
3239 =head2 perlfaq5 - Files and Formats ($Revision: 1.15 $, $Date: 2002/04/12
3240 02:02:05 $)
3241
3242 =over 4
3243
3244 =item DESCRIPTION
3245
3246 =over 4
3247
3248 =item How do I flush/unbuffer an output filehandle?  Why must I do this?
3249
3250 =item How do I change one line in a file/delete a line in a file/insert a
3251 line in the middle of a file/append to the beginning of a file?
3252
3253 =item How do I count the number of lines in a file?
3254
3255 =item How do I make a temporary file name?
3256
3257 =item How can I manipulate fixed-record-length files?
3258
3259 =item How can I make a filehandle local to a subroutine?  How do I pass
3260 filehandles between subroutines?  How do I make an array of filehandles?
3261
3262 =item How can I use a filehandle indirectly?
3263
3264 =item How can I set up a footer format to be used with write()?
3265
3266 =item How can I write() into a string?
3267
3268 =item How can I output my numbers with commas added?
3269
3270 =item How can I translate tildes (~) in a filename?
3271
3272 =item How come when I open a file read-write it wipes it out?
3273
3274 =item Why do I sometimes get an "Argument list too long" when I use <*>?
3275
3276 =item Is there a leak/bug in glob()?
3277
3278 =item How can I open a file with a leading ">" or trailing blanks?
3279
3280 =item How can I reliably rename a file?
3281
3282 =item How can I lock a file?
3283
3284 =item Why can't I just open(FH, ">file.lock")?
3285
3286 =item I still don't get locking.  I just want to increment the number in
3287 the file.  How can I do this?
3288
3289 =item All I want to do is append a small amount of text to the end of a
3290 file.  Do I still have to use locking?
3291
3292 =item How do I randomly update a binary file?
3293
3294 =item How do I get a file's timestamp in perl?
3295
3296 =item How do I set a file's timestamp in perl?
3297
3298 =item How do I print to more than one file at once?
3299
3300 =item How can I read in an entire file all at once?
3301
3302 =item How can I read in a file by paragraphs?
3303
3304 =item How can I read a single character from a file?  From the keyboard?
3305
3306 =item How can I tell whether there's a character waiting on a filehandle?
3307
3308 =item How do I do a C<tail -f> in perl?
3309
3310 =item How do I dup() a filehandle in Perl?
3311
3312 =item How do I close a file descriptor by number?
3313
3314 =item Why can't I use "C:\temp\foo" in DOS paths?  Why doesn't
3315 `C:\temp\foo.exe` work?
3316
3317 =item Why doesn't glob("*.*") get all the files?
3318
3319 =item Why does Perl let me delete read-only files?  Why does C<-i> clobber
3320 protected files?  Isn't this a bug in Perl?
3321
3322 =item How do I select a random line from a file?
3323
3324 =item Why do I get weird spaces when I print an array of lines?
3325
3326 =back
3327
3328 =item AUTHOR AND COPYRIGHT
3329
3330 =back
3331
3332 =head2 perlfaq6 - Regular Expressions ($Revision: 1.10 $, $Date: 2002/04/07
3333 18:32:57 $)
3334
3335 =over 4
3336
3337 =item DESCRIPTION
3338
3339 =over 4
3340
3341 =item How can I hope to use regular expressions without creating illegible
3342 and unmaintainable code?
3343
3344 Comments Outside the Regex, Comments Inside the Regex, Different Delimiters
3345
3346 =item I'm having trouble matching over more than one line.  What's wrong?
3347
3348 =item How can I pull out lines between two patterns that are themselves on
3349 different lines?
3350
3351 =item I put a regular expression into $/ but it didn't work. What's wrong?
3352
3353 =item How do I substitute case insensitively on the LHS while preserving
3354 case on the RHS?
3355
3356 =item How can I make C<\w> match national character sets?
3357
3358 =item How can I match a locale-smart version of C</[a-zA-Z]/>?
3359
3360 =item How can I quote a variable to use in a regex?
3361
3362 =item What is C</o> really for?
3363
3364 =item How do I use a regular expression to strip C style comments from a
3365 file?
3366
3367 =item Can I use Perl regular expressions to match balanced text?
3368
3369 =item What does it mean that regexes are greedy?  How can I get around it?
3370
3371 =item How do I process each word on each line?
3372
3373 =item How can I print out a word-frequency or line-frequency summary?
3374
3375 =item How can I do approximate matching?
3376
3377 =item How do I efficiently match many regular expressions at once?
3378
3379 =item Why don't word-boundary searches with C<\b> work for me?
3380
3381 =item Why does using $&, $`, or $' slow my program down?
3382
3383 =item What good is C<\G> in a regular expression?
3384
3385 =item Are Perl regexes DFAs or NFAs?  Are they POSIX compliant?
3386
3387 =item What's wrong with using grep or map in a void context?
3388
3389 =item How can I match strings with multibyte characters?
3390
3391 =item How do I match a pattern that is supplied by the user?
3392
3393 =back
3394
3395 =item AUTHOR AND COPYRIGHT
3396
3397 =back
3398
3399 =head2 perlfaq7 - General Perl Language Issues ($Revision: 1.8 $, $Date:
3400 2002/03/26 15:48:32 $)
3401
3402 =over 4
3403
3404 =item DESCRIPTION
3405
3406 =over 4
3407
3408 =item Can I get a BNF/yacc/RE for the Perl language?
3409
3410 =item What are all these $@%&* punctuation signs, and how do I know when to
3411 use them?
3412
3413 =item Do I always/never have to quote my strings or use semicolons and
3414 commas?
3415
3416 =item How do I skip some return values?
3417
3418 =item How do I temporarily block warnings?
3419
3420 =item What's an extension?
3421
3422 =item Why do Perl operators have different precedence than C operators?
3423
3424 =item How do I declare/create a structure?
3425
3426 =item How do I create a module?
3427
3428 =item How do I create a class?
3429
3430 =item How can I tell if a variable is tainted?
3431
3432 =item What's a closure?
3433
3434 =item What is variable suicide and how can I prevent it?
3435
3436 =item How can I pass/return a {Function, FileHandle, Array, Hash, Method,
3437 Regex}?
3438
3439 Passing Variables and Functions, Passing Filehandles, Passing Regexes,
3440 Passing Methods
3441
3442 =item How do I create a static variable?
3443
3444 =item What's the difference between dynamic and lexical (static) scoping? 
3445 Between local() and my()?
3446
3447 =item How can I access a dynamic variable while a similarly named lexical
3448 is in scope?
3449
3450 =item What's the difference between deep and shallow binding?
3451
3452 =item Why doesn't "my($foo) = <FILE>;" work right?
3453
3454 =item How do I redefine a builtin function, operator, or method?
3455
3456 =item What's the difference between calling a function as &foo and foo()?
3457
3458 =item How do I create a switch or case statement?
3459
3460 =item How can I catch accesses to undefined variables/functions/methods?
3461
3462 =item Why can't a method included in this same file be found?
3463
3464 =item How can I find out my current package?
3465
3466 =item How can I comment out a large block of perl code?
3467
3468 =item How do I clear a package?
3469
3470 =item How can I use a variable as a variable name?
3471
3472 =back
3473
3474 =item AUTHOR AND COPYRIGHT
3475
3476 =back
3477
3478 =head2 perlfaq8 - System Interaction ($Revision: 1.7 $, $Date: 2002/04/18
3479 14:23:15 $)
3480
3481 =over 4
3482
3483 =item DESCRIPTION
3484
3485 =over 4
3486
3487 =item How do I find out which operating system I'm running under?
3488
3489 =item How come exec() doesn't return?
3490
3491 =item How do I do fancy stuff with the keyboard/screen/mouse?
3492
3493 Keyboard, Screen, Mouse
3494
3495 =item How do I print something out in color?
3496
3497 =item How do I read just one key without waiting for a return key?
3498
3499 =item How do I check whether input is ready on the keyboard?
3500
3501 =item How do I clear the screen?
3502
3503 =item How do I get the screen size?
3504
3505 =item How do I ask the user for a password?
3506
3507 =item How do I read and write the serial port?
3508
3509 lockfiles, open mode, end of line, flushing output, non-blocking input
3510
3511 =item How do I decode encrypted password files?
3512
3513 =item How do I start a process in the background?
3514
3515 STDIN, STDOUT, and STDERR are shared, Signals, Zombies
3516
3517 =item How do I trap control characters/signals?
3518
3519 =item How do I modify the shadow password file on a Unix system?
3520
3521 =item How do I set the time and date?
3522
3523 =item How can I sleep() or alarm() for under a second?
3524
3525 =item How can I measure time under a second?
3526
3527 =item How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
3528
3529 =item Why doesn't my sockets program work under System V (Solaris)?  What
3530 does the error message "Protocol not supported" mean?
3531
3532 =item How can I call my system's unique C functions from Perl?
3533
3534 =item Where do I get the include files to do ioctl() or syscall()?
3535
3536 =item Why do setuid perl scripts complain about kernel problems?
3537
3538 =item How can I open a pipe both to and from a command?
3539
3540 =item Why can't I get the output of a command with system()?
3541
3542 =item How can I capture STDERR from an external command?
3543
3544 =item Why doesn't open() return an error when a pipe open fails?
3545
3546 =item What's wrong with using backticks in a void context?
3547
3548 =item How can I call backticks without shell processing?
3549
3550 =item Why can't my script read from STDIN after I gave it EOF (^D on Unix,
3551 ^Z on MS-DOS)?
3552
3553 =item How can I convert my shell script to perl?
3554
3555 =item Can I use perl to run a telnet or ftp session?
3556
3557 =item How can I write expect in Perl?
3558
3559 =item Is there a way to hide perl's command line from programs such as
3560 "ps"?
3561
3562 =item I {changed directory, modified my environment} in a perl script.  How
3563 come the change disappeared when I exited the script?  How do I get my
3564 changes to be visible?
3565
3566 Unix
3567
3568 =item How do I close a process's filehandle without waiting for it to
3569 complete?
3570
3571 =item How do I fork a daemon process?
3572
3573 =item How do I find out if I'm running interactively or not?
3574
3575 =item How do I timeout a slow event?
3576
3577 =item How do I set CPU limits?
3578
3579 =item How do I avoid zombies on a Unix system?
3580
3581 =item How do I use an SQL database?
3582
3583 =item How do I make a system() exit on control-C?
3584
3585 =item How do I open a file without blocking?
3586
3587 =item How do I install a module from CPAN?
3588
3589 =item What's the difference between require and use?
3590
3591 =item How do I keep my own module/library directory?
3592
3593 =item How do I add the directory my program lives in to the module/library
3594 search path?
3595
3596 =item How do I add a directory to my include path at runtime?
3597
3598 =item What is socket.ph and where do I get it?
3599
3600 =back
3601
3602 =item AUTHOR AND COPYRIGHT
3603
3604 =back
3605
3606 =head2 perlfaq9 - Networking ($Revision: 1.9 $, $Date: 2002/04/07 18:46:13
3607 $)
3608
3609 =over 4
3610
3611 =item DESCRIPTION
3612
3613 =over 4
3614
3615 =item What is the correct form of response from a CGI script?
3616
3617 =item My CGI script runs from the command line but not the browser.  (500
3618 Server Error)
3619
3620 =item How can I get better error messages from a CGI program?
3621
3622 =item How do I remove HTML from a string?
3623
3624 =item How do I extract URLs?
3625
3626 =item How do I download a file from the user's machine?  How do I open a
3627 file on another machine?
3628
3629 =item How do I make a pop-up menu in HTML?
3630
3631 =item How do I fetch an HTML file?
3632
3633 =item How do I automate an HTML form submission?
3634
3635 =item How do I decode or create those %-encodings on the web?
3636
3637 =item How do I redirect to another page?
3638
3639 =item How do I put a password on my web pages?
3640
3641 =item How do I edit my .htpasswd and .htgroup files with Perl?
3642
3643 =item How do I make sure users can't enter values into a form that cause my
3644 CGI script to do bad things?
3645
3646 =item How do I parse a mail header?
3647
3648 =item How do I decode a CGI form?
3649
3650 =item How do I check a valid mail address?
3651
3652 =item How do I decode a MIME/BASE64 string?
3653
3654 =item How do I return the user's mail address?
3655
3656 =item How do I send mail?
3657
3658 =item How do I use MIME to make an attachment to a mail message?
3659
3660 =item How do I read mail?
3661
3662 =item How do I find out my hostname/domainname/IP address?
3663
3664 =item How do I fetch a news article or the active newsgroups?
3665
3666 =item How do I fetch/put an FTP file?
3667
3668 =item How can I do RPC in Perl?
3669
3670 =back
3671
3672 =item AUTHOR AND COPYRIGHT
3673
3674 =back
3675
3676 =head2 perlcompile - Introduction to the Perl Compiler-Translator 
3677
3678 =over 4
3679
3680 =item DESCRIPTION
3681
3682 =over 4
3683
3684 =item Layout
3685
3686 B::Bytecode, B::C, B::CC, B::Lint, B::Deparse, B::Xref
3687
3688 =back
3689
3690 =item Using The Back Ends
3691
3692 =over 4
3693
3694 =item The Cross Referencing Back End
3695
3696 i, &, s, r
3697
3698 =item The Decompiling Back End
3699
3700 =item The Lint Back End
3701
3702 =item The Simple C Back End
3703
3704 =item The Bytecode Back End
3705
3706 =item The Optimized C Back End
3707
3708 =back
3709
3710 =item Module List for the Compiler Suite
3711
3712 B, O, B::Asmdata, B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC,
3713 B::Concise, B::Debug, B::Deparse, B::Disassembler, B::Lint, B::Showlex,
3714 B::Stackobj, B::Stash, B::Terse, B::Xref
3715
3716 =item KNOWN PROBLEMS
3717
3718 =item AUTHOR
3719
3720 =back
3721
3722 =head2 perlembed - how to embed perl in your C program
3723
3724 =over 4
3725
3726 =item DESCRIPTION
3727
3728 =over 4
3729
3730 =item PREAMBLE
3731
3732 B<Use C from Perl?>, B<Use a Unix program from Perl?>, B<Use Perl from
3733 Perl?>, B<Use C from C?>, B<Use Perl from C?>
3734
3735 =item ROADMAP
3736
3737 =item Compiling your C program
3738
3739 =item Adding a Perl interpreter to your C program
3740
3741 =item Calling a Perl subroutine from your C program
3742
3743 =item Evaluating a Perl statement from your C program
3744
3745 =item Performing Perl pattern matches and substitutions from your C program
3746
3747 =item Fiddling with the Perl stack from your C program
3748
3749 =item Maintaining a persistent interpreter
3750
3751 =item Execution of END blocks
3752
3753 =item Maintaining multiple interpreter instances
3754
3755 =item Using Perl modules, which themselves use C libraries, from your C
3756 program
3757
3758 =back
3759
3760 =item Embedding Perl under Win32
3761
3762 =item MORAL
3763
3764 =item AUTHOR
3765
3766 =item COPYRIGHT
3767
3768 =back
3769
3770 =head2 perldebguts - Guts of Perl debugging 
3771
3772 =over 4
3773
3774 =item DESCRIPTION
3775
3776 =item Debugger Internals
3777
3778 =over 4
3779
3780 =item Writing Your Own Debugger
3781
3782 =back
3783
3784 =item Frame Listing Output Examples
3785
3786 =item Debugging regular expressions
3787
3788 =over 4
3789
3790 =item Compile-time output
3791
3792 C<anchored> I<STRING> C<at> I<POS>, C<floating> I<STRING> C<at>
3793 I<POS1..POS2>, C<matching floating/anchored>, C<minlen>, C<stclass>
3794 I<TYPE>, C<noscan>, C<isall>, C<GPOS>, C<plus>, C<implicit>, C<with eval>,
3795 C<anchored(TYPE)>
3796
3797 =item Types of nodes
3798
3799 =item Run-time output
3800
3801 =back
3802
3803 =item Debugging Perl memory usage
3804
3805 =over 4
3806
3807 =item Using C<$ENV{PERL_DEBUG_MSTATS}>
3808
3809 C<buckets SMALLEST(APPROX)..GREATEST(APPROX)>, Free/Used, C<Total sbrk():
3810 SBRKed/SBRKs:CONTINUOUS>, C<pad: 0>, C<heads: 2192>, C<chain: 0>, C<tail:
3811 6144>
3812
3813 =item Example of using B<-DL> switch
3814
3815 C<717>, C<002>, C<054>, C<602>, C<702>, C<704>
3816
3817 =item B<-DL> details
3818
3819 C<!!!>, C<!!>, C<!>
3820
3821 =item Limitations of B<-DL> statistics
3822
3823 =back
3824
3825 =item SEE ALSO
3826
3827 =back
3828
3829 =head2 perlxstut, perlXStut - Tutorial for writing XSUBs
3830
3831 =over 4
3832
3833 =item DESCRIPTION
3834
3835 =item SPECIAL NOTES
3836
3837 =over 4
3838
3839 =item make
3840
3841 =item Version caveat
3842
3843 =item Dynamic Loading versus Static Loading
3844
3845 =back
3846
3847 =item TUTORIAL
3848
3849 =over 4
3850
3851 =item EXAMPLE 1
3852
3853 =item EXAMPLE 2
3854
3855 =item What has gone on?
3856
3857 =item Writing good test scripts
3858
3859 =item EXAMPLE 3
3860
3861 =item What's new here?
3862
3863 =item Input and Output Parameters
3864
3865 =item The XSUBPP Program
3866
3867 =item The TYPEMAP file
3868
3869 =item Warning about Output Arguments
3870
3871 =item EXAMPLE 4
3872
3873 =item What has happened here?
3874
3875 =item Anatomy of .xs file
3876
3877 =item Getting the fat out of XSUBs
3878
3879 =item More about XSUB arguments
3880
3881 =item The Argument Stack
3882
3883 =item Extending your Extension
3884
3885 =item Documenting your Extension
3886
3887 =item Installing your Extension
3888
3889 =item EXAMPLE 5
3890
3891 =item New Things in this Example
3892
3893 =item EXAMPLE 6
3894
3895 =item New Things in this Example
3896
3897 =item EXAMPLE 7 (Coming Soon)
3898
3899 =item EXAMPLE 8 (Coming Soon)
3900
3901 =item EXAMPLE 9 Passing open files to XSes
3902
3903 =item Troubleshooting these Examples
3904
3905 =back
3906
3907 =item See also
3908
3909 =item Author
3910
3911 =over 4
3912
3913 =item Last Changed
3914
3915 =back
3916
3917 =back
3918
3919 =head2 perlxs - XS language reference manual
3920
3921 =over 4
3922
3923 =item DESCRIPTION
3924
3925 =over 4
3926
3927 =item Introduction
3928
3929 =item On The Road
3930
3931 =item The Anatomy of an XSUB
3932
3933 =item The Argument Stack
3934
3935 =item The RETVAL Variable
3936
3937 =item The MODULE Keyword
3938
3939 =item The PACKAGE Keyword
3940
3941 =item The PREFIX Keyword
3942
3943 =item The OUTPUT: Keyword
3944
3945 =item The NO_OUTPUT Keyword
3946
3947 =item The CODE: Keyword
3948
3949 =item The INIT: Keyword
3950
3951 =item The NO_INIT Keyword
3952
3953 =item Initializing Function Parameters
3954
3955 =item Default Parameter Values
3956
3957 =item The PREINIT: Keyword
3958
3959 =item The SCOPE: Keyword
3960
3961 =item The INPUT: Keyword
3962
3963 =item The IN/OUTLIST/IN_OUTLIST/OUT/IN_OUT Keywords
3964
3965 =item The C<length(NAME)> Keyword
3966
3967 =item Variable-length Parameter Lists
3968
3969 =item The C_ARGS: Keyword
3970
3971 =item The PPCODE: Keyword
3972
3973 =item Returning Undef And Empty Lists
3974
3975 =item The REQUIRE: Keyword
3976
3977 =item The CLEANUP: Keyword
3978
3979 =item The POSTCALL: Keyword
3980
3981 =item The BOOT: Keyword
3982
3983 =item The VERSIONCHECK: Keyword
3984
3985 =item The PROTOTYPES: Keyword
3986
3987 =item The PROTOTYPE: Keyword
3988
3989 =item The ALIAS: Keyword
3990
3991 =item The OVERLOAD: Keyword
3992
3993 =item The INTERFACE: Keyword
3994
3995 =item The INTERFACE_MACRO: Keyword
3996
3997 =item The INCLUDE: Keyword
3998
3999 =item The CASE: Keyword
4000
4001 =item The & Unary Operator
4002
4003 =item Inserting POD, Comments and C Preprocessor Directives
4004
4005 =item Using XS With C++
4006
4007 =item Interface Strategy
4008
4009 =item Perl Objects And C Structures
4010
4011 =item The Typemap
4012
4013 =item Safely Storing Static Data in XS
4014
4015 MY_CXT_KEY, typedef my_cxt_t, START_MY_CXT, MY_CXT_INIT, dMY_CXT, MY_CXT
4016
4017 =back
4018
4019 =item EXAMPLES
4020
4021 =item XS VERSION
4022
4023 =item AUTHOR
4024
4025 =back
4026
4027 =head2 perlclib - Internal replacements for standard C library functions
4028
4029 =over 4
4030
4031 =item DESCRIPTION
4032
4033 =over 4
4034
4035 =item Conventions
4036
4037 C<t>, C<p>, C<n>, C<s>
4038
4039 =item File Operations
4040
4041 =item File Input and Output
4042
4043 =item File Positioning
4044
4045 =item Memory Management and String Handling
4046
4047 =item Character Class Tests
4048
4049 =item F<stdlib.h> functions
4050
4051 =item Miscellaneous functions
4052
4053 =back
4054
4055 =item SEE ALSO
4056
4057 =back
4058
4059 =head2 perlguts - Introduction to the Perl API
4060
4061 =over 4
4062
4063 =item DESCRIPTION
4064
4065 =item Variables
4066
4067 =over 4
4068
4069 =item Datatypes
4070
4071 =item What is an "IV"?
4072
4073 =item Working with SVs
4074
4075 =item Offsets
4076
4077 =item What's Really Stored in an SV?
4078
4079 =item Working with AVs
4080
4081 =item Working with HVs
4082
4083 =item Hash API Extensions
4084
4085 =item References
4086
4087 =item Blessed References and Class Objects
4088
4089 =item Creating New Variables
4090
4091 GV_ADDMULTI, GV_ADDWARN
4092
4093 =item Reference Counts and Mortality
4094
4095 =item Stashes and Globs
4096
4097 =item Double-Typed SVs
4098
4099 =item Magic Variables
4100
4101 =item Assigning Magic
4102
4103 =item Magic Virtual Tables
4104
4105 =item Finding Magic
4106
4107 =item Understanding the Magic of Tied Hashes and Arrays
4108
4109 =item Localizing changes
4110
4111 C<SAVEINT(int i)>, C<SAVEIV(IV i)>, C<SAVEI32(I32 i)>, C<SAVELONG(long i)>,
4112 C<SAVESPTR(s)>, C<SAVEPPTR(p)>, C<SAVEFREESV(SV *sv)>, C<SAVEMORTALIZESV(SV
4113 *sv)>, C<SAVEFREEOP(OP *op)>, C<SAVEFREEPV(p)>, C<SAVECLEARSV(SV *sv)>,
4114 C<SAVEDELETE(HV *hv, char *key, I32 length)>,
4115 C<SAVEDESTRUCTOR(DESTRUCTORFUNC_NOCONTEXT_t f, void *p)>,
4116 C<SAVEDESTRUCTOR_X(DESTRUCTORFUNC_t f, void *p)>, C<SAVESTACK_POS()>, C<SV*
4117 save_scalar(GV *gv)>, C<AV* save_ary(GV *gv)>, C<HV* save_hash(GV *gv)>,
4118 C<void save_item(SV *item)>, C<void save_list(SV **sarg, I32 maxsarg)>,
4119 C<SV* save_svref(SV **sptr)>, C<void save_aptr(AV **aptr)>, C<void
4120 save_hptr(HV **hptr)>
4121
4122 =back
4123
4124 =item Subroutines
4125
4126 =over 4
4127
4128 =item XSUBs and the Argument Stack
4129
4130 =item Calling Perl Routines from within C Programs
4131
4132 =item Memory Allocation
4133
4134 =item PerlIO
4135
4136 =item Putting a C value on Perl stack
4137
4138 =item Scratchpads
4139
4140 =item Scratchpads and recursion
4141
4142 =back
4143
4144 =item Compiled code
4145
4146 =over 4
4147
4148 =item Code tree
4149
4150 =item Examining the tree
4151
4152 =item Compile pass 1: check routines
4153
4154 =item Compile pass 1a: constant folding
4155
4156 =item Compile pass 2: context propagation
4157
4158 =item Compile pass 3: peephole optimization
4159
4160 =item Pluggable runops
4161
4162 =back
4163
4164 =item Examining internal data structures with the C<dump> functions
4165
4166 =item How multiple interpreters and concurrency are supported
4167
4168 =over 4
4169
4170 =item Background and PERL_IMPLICIT_CONTEXT
4171
4172 =item So what happened to dTHR?
4173
4174 =item How do I use all this in extensions?
4175
4176 =item Should I do anything special if I call perl from multiple threads?
4177
4178 =item Future Plans and PERL_IMPLICIT_SYS
4179
4180 =back
4181
4182 =item Internal Functions
4183
4184 A, p, d, s, n, r, f, M, o, j, x
4185
4186 =over 4
4187
4188 =item Formatted Printing of IVs, UVs, and NVs
4189
4190 =item Pointer-To-Integer and Integer-To-Pointer
4191
4192 =item Source Documentation
4193
4194 =back
4195
4196 =item Unicode Support
4197
4198 =over 4
4199
4200 =item What B<is> Unicode, anyway?
4201
4202 =item How can I recognise a UTF8 string?
4203
4204 =item How does UTF8 represent Unicode characters?
4205
4206 =item How does Perl store UTF8 strings?
4207
4208 =item How do I convert a string to UTF8?
4209
4210 =item Is there anything else I need to know?
4211
4212 =back
4213
4214 =item Custom Operators
4215
4216 =item AUTHORS
4217
4218 =item SEE ALSO
4219
4220 =back
4221
4222 =head2 perlcall - Perl calling conventions from C
4223
4224 =over 4
4225
4226 =item DESCRIPTION
4227
4228 An Error Handler, An Event Driven Program
4229
4230 =item THE CALL_ FUNCTIONS
4231
4232 call_sv, call_pv, call_method, call_argv
4233
4234 =item FLAG VALUES
4235
4236 =over 4
4237
4238 =item  G_VOID
4239
4240 =item  G_SCALAR
4241
4242 =item G_ARRAY
4243
4244 =item G_DISCARD
4245
4246 =item G_NOARGS
4247
4248 =item G_EVAL
4249
4250 =item G_KEEPERR
4251
4252 =item Determining the Context
4253
4254 =back
4255
4256 =item KNOWN PROBLEMS
4257
4258 =item EXAMPLES
4259
4260 =over 4
4261
4262 =item No Parameters, Nothing returned
4263
4264 =item Passing Parameters
4265
4266 =item Returning a Scalar
4267
4268 =item Returning a list of values
4269
4270 =item Returning a list in a scalar context
4271
4272 =item Returning Data from Perl via the parameter list
4273
4274 =item Using G_EVAL
4275
4276 =item Using G_KEEPERR
4277
4278 =item Using call_sv
4279
4280 =item Using call_argv
4281
4282 =item Using call_method
4283
4284 =item Using GIMME_V
4285
4286 =item Using Perl to dispose of temporaries
4287
4288 =item Strategies for storing Callback Context Information
4289
4290 1. Ignore the problem - Allow only 1 callback, 2. Create a sequence of
4291 callbacks - hard wired limit, 3. Use a parameter to map to the Perl
4292 callback
4293
4294 =item Alternate Stack Manipulation
4295
4296 =item Creating and calling an anonymous subroutine in C
4297
4298 =back
4299
4300 =item SEE ALSO
4301
4302 =item AUTHOR
4303
4304 =item DATE
4305
4306 =back
4307
4308 =head2 perlutil - utilities packaged with the Perl distribution
4309
4310 =over 4
4311
4312 =item DESCRIPTION
4313
4314 =over 4
4315
4316 =item DOCUMENTATION
4317
4318 L<perldoc|perldoc>, L<pod2man|pod2man> and L<pod2text|pod2text>,
4319 L<pod2html|pod2html> and L<pod2latex|pod2latex>, L<pod2usage|pod2usage>,
4320 L<podselect|podselect>, L<podchecker|podchecker>, L<splain|splain>,
4321 L<roffitall|roffitall>
4322
4323 =item CONVERTORS
4324
4325 L<a2p|a2p>, L<s2p|s2p>, L<find2perl|find2perl>
4326
4327 =item Administration
4328
4329 L<libnetcfg|libnetcfg>
4330
4331 =item Development
4332
4333 L<perlbug|perlbug>, L<h2ph|h2ph>, L<c2ph|c2ph> and L<pstruct|pstruct>,
4334 L<h2xs|h2xs>, L<dprofpp|dprofpp>, L<perlcc|perlcc>
4335
4336 =item SEE ALSO
4337
4338 =back
4339
4340 =back
4341
4342 =head2 perlfilter - Source Filters
4343
4344 =over 4
4345
4346 =item DESCRIPTION
4347
4348 =item CONCEPTS
4349
4350 =item USING FILTERS
4351
4352 =item WRITING A SOURCE FILTER
4353
4354 =item WRITING A SOURCE FILTER IN C
4355
4356 B<Decryption Filters>
4357
4358 =item CREATING A SOURCE FILTER AS A SEPARATE EXECUTABLE
4359
4360 =item WRITING A SOURCE FILTER IN PERL
4361
4362 =item USING CONTEXT: THE DEBUG FILTER
4363
4364 =item CONCLUSION
4365
4366 =item REQUIREMENTS
4367
4368 =item AUTHOR
4369
4370 =item Copyrights
4371
4372 =back
4373
4374 =head2 perldbmfilter - Perl DBM Filters
4375
4376 =over 4
4377
4378 =item SYNOPSIS
4379
4380 =item DESCRIPTION
4381
4382 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
4383 B<filter_fetch_value>
4384
4385 =over 4
4386
4387 =item The Filter
4388
4389 =item An Example -- the NULL termination problem.
4390
4391 =item Another Example -- Key is a C int.
4392
4393 =back
4394
4395 =item SEE ALSO
4396
4397 =item AUTHOR
4398
4399 =back
4400
4401 =head2 perlapi - autogenerated documentation for the perl public API
4402
4403 =over 4
4404
4405 =item DESCRIPTION
4406
4407 =item "Gimme" Values
4408
4409 GIMME, GIMME_V, G_ARRAY, G_DISCARD, G_EVAL, G_NOARGS, G_SCALAR, G_VOID
4410
4411 =item Array Manipulation Functions
4412
4413 AvFILL, av_clear, av_delete, av_exists, av_extend, av_fetch, av_fill,
4414 av_len, av_make, av_pop, av_push, av_shift, av_store, av_undef, av_unshift,
4415 get_av, newAV, Nullav, sortsv
4416
4417 =item Callback Functions
4418
4419 call_argv, call_method, call_pv, call_sv, ENTER, eval_pv, eval_sv,
4420 FREETMPS, LEAVE, SAVETMPS
4421
4422 =item Character classes
4423
4424 isALNUM, isALPHA, isDIGIT, isLOWER, isSPACE, isUPPER, toLOWER, toUPPER
4425
4426 =item Cloning an interpreter
4427
4428 perl_clone
4429
4430 =item CV Manipulation Functions
4431
4432 CvSTASH, get_cv, Nullcv
4433
4434 =item Embedding Functions
4435
4436 load_module, nothreadhook, perl_alloc, perl_construct, perl_destruct,
4437 perl_free, perl_parse, perl_run, require_pv
4438
4439 =item Functions in file pp_pack.c
4440
4441 pack_cat, unpack_str
4442
4443 =item Global Variables
4444
4445 PL_modglobal, PL_na, PL_sv_no, PL_sv_undef, PL_sv_yes
4446
4447 =item GV Functions
4448
4449 GvSV, gv_fetchmeth, gv_fetchmethod, gv_fetchmethod_autoload,
4450 gv_fetchmeth_autoload, gv_stashpv, gv_stashsv
4451
4452 =item Handy Values
4453
4454 HEf_SVKEY, Nullch, Nullsv
4455
4456 =item Hash Manipulation Functions
4457
4458 get_hv, HeHASH, HeKEY, HeKLEN, HePV, HeSVKEY, HeSVKEY_force, HeSVKEY_set,
4459 HeVAL, HvNAME, hv_clear, hv_delete, hv_delete_ent, hv_exists,
4460 hv_exists_ent, hv_fetch, hv_fetch_ent, hv_iterinit, hv_iterkey,
4461 hv_iterkeysv, hv_iternext, hv_iternextsv, hv_iternext_flags, hv_iterval,
4462 hv_magic, hv_store, hv_store_ent, hv_undef, newHV, Nullhv
4463
4464 =item Magical Functions
4465
4466 mg_clear, mg_copy, mg_find, mg_free, mg_get, mg_length, mg_magical, mg_set,
4467 SvGETMAGIC, SvLOCK, SvSETMAGIC, SvSetMagicSV, SvSetMagicSV_nosteal,
4468 SvSetSV, SvSetSV_nosteal, SvSHARE
4469
4470 =item Memory Management
4471
4472 Copy, Move, New, Newc, NEWSV, Newz, Renew, Renewc, Safefree, savepv,
4473 savepvn, savesharedpv, StructCopy, Zero
4474
4475 =item Miscellaneous Functions
4476
4477 fbm_compile, fbm_instr, form, getcwd_sv, strEQ, strGE, strGT, strLE, strLT,
4478 strNE, strnEQ, strnNE
4479
4480 =item Numeric functions
4481
4482 grok_bin, grok_hex, grok_number, grok_numeric_radix, grok_oct, scan_bin,
4483 scan_hex, scan_oct
4484
4485 =item Optree Manipulation Functions
4486
4487 cv_const_sv, newCONSTSUB, newXS
4488
4489 =item Stack Manipulation Macros
4490
4491 dMARK, dORIGMARK, dSP, EXTEND, MARK, ORIGMARK, POPi, POPl, POPn, POPp,
4492 POPpbytex, POPpx, POPs, PUSHi, PUSHMARK, PUSHn, PUSHp, PUSHs, PUSHu,
4493 PUTBACK, SP, SPAGAIN, XPUSHi, XPUSHn, XPUSHp, XPUSHs, XPUSHu, XSRETURN,
4494 XSRETURN_IV, XSRETURN_NO, XSRETURN_NV, XSRETURN_PV, XSRETURN_UNDEF,
4495 XSRETURN_YES, XST_mIV, XST_mNO, XST_mNV, XST_mPV, XST_mUNDEF, XST_mYES
4496
4497 =item SV Flags
4498
4499 svtype, SVt_IV, SVt_NV, SVt_PV, SVt_PVAV, SVt_PVCV, SVt_PVHV, SVt_PVMG
4500
4501 =item SV Manipulation Functions
4502
4503 get_sv, looks_like_number, newRV_inc, newRV_noinc, newSV, newSViv, newSVnv,
4504 newSVpv, newSVpvf, newSVpvn, newSVpvn_share, newSVrv, newSVsv, newSVuv,
4505 new_vstring, SvCUR, SvCUR_set, SvEND, SvGROW, SvIOK, SvIOKp, SvIOK_notUV,
4506 SvIOK_off, SvIOK_on, SvIOK_only, SvIOK_only_UV, SvIOK_UV, SvIV, SvIVx,
4507 SvIVX, SvLEN, SvNIOK, SvNIOKp, SvNIOK_off, SvNOK, SvNOKp, SvNOK_off,
4508 SvNOK_on, SvNOK_only, SvNV, SvNVX, SvNVx, SvOK, SvOOK, SvPOK, SvPOKp,
4509 SvPOK_off, SvPOK_on, SvPOK_only, SvPOK_only_UTF8, SvPV, SvPVbyte,
4510 SvPVbytex, SvPVbytex_force, SvPVbyte_force, SvPVbyte_nolen, SvPVutf8,
4511 SvPVutf8x, SvPVutf8x_force, SvPVutf8_force, SvPVutf8_nolen, SvPVx, SvPVX,
4512 SvPV_force, SvPV_force_nomg, SvPV_nolen, SvREFCNT, SvREFCNT_dec,
4513 SvREFCNT_inc, SvROK, SvROK_off, SvROK_on, SvRV, SvSTASH, SvTAINT,
4514 SvTAINTED, SvTAINTED_off, SvTAINTED_on, SvTRUE, SvTYPE, SvUNLOCK, SvUOK,
4515 SvUPGRADE, SvUTF8, SvUTF8_off, SvUTF8_on, SvUV, SvUVX, SvUVx, sv_2bool,
4516 sv_2cv, sv_2io, sv_2iv, sv_2mortal, sv_2nv, sv_2pvbyte, sv_2pvbyte_nolen,
4517 sv_2pvutf8, sv_2pvutf8_nolen, sv_2pv_flags, sv_2pv_nolen, sv_2uv,
4518 sv_backoff, sv_bless, sv_catpv, sv_catpvf, sv_catpvf_mg, sv_catpvn,
4519 sv_catpvn_flags, sv_catpvn_mg, sv_catpv_mg, sv_catsv, sv_catsv_flags,
4520 sv_catsv_mg, sv_chop, sv_clear, sv_cmp, sv_cmp_locale, sv_collxfrm,
4521 sv_copypv, sv_dec, sv_derived_from, sv_eq, sv_force_normal,
4522 sv_force_normal_flags, sv_free, sv_gets, sv_grow, sv_inc, sv_insert,
4523 sv_isa, sv_isobject, sv_iv, sv_len, sv_len_utf8, sv_magic, sv_magicext,
4524 sv_mortalcopy, sv_newmortal, sv_newref, sv_nolocking, sv_nosharing,
4525 sv_nounlocking, sv_nv, sv_pos_b2u, sv_pos_u2b, sv_pv, sv_pvbyte,
4526 sv_pvbyten, sv_pvbyten_force, sv_pvn, sv_pvn_force, sv_pvn_force_flags,
4527 sv_pvutf8, sv_pvutf8n, sv_pvutf8n_force, sv_reftype, sv_replace,
4528 sv_report_used, sv_reset, sv_rvweaken, sv_setiv, sv_setiv_mg, sv_setnv,
4529 sv_setnv_mg, sv_setpv, sv_setpvf, sv_setpvf_mg, sv_setpvn, sv_setpvn_mg,
4530 sv_setpv_mg, sv_setref_iv, sv_setref_nv, sv_setref_pv, sv_setref_pvn,
4531 sv_setref_uv, sv_setsv, sv_setsv_flags, sv_setsv_mg, sv_setuv, sv_setuv_mg,
4532 sv_taint, sv_tainted, sv_true, sv_unmagic, sv_unref, sv_unref_flags,
4533 sv_untaint, sv_upgrade, sv_usepvn, sv_usepvn_mg, sv_utf8_decode,
4534 sv_utf8_downgrade, sv_utf8_encode, sv_utf8_upgrade, sv_utf8_upgrade_flags,
4535 sv_uv, sv_vcatpvfn, sv_vsetpvfn
4536
4537 =item Unicode Support
4538
4539 bytes_from_utf8, bytes_to_utf8, ibcmp_utf8, is_utf8_char, is_utf8_string,
4540 pv_uni_display, sv_recode_to_utf8, sv_uni_display, to_utf8_case,
4541 to_utf8_fold, to_utf8_lower, to_utf8_title, to_utf8_upper, utf8n_to_uvchr,
4542 utf8n_to_uvuni, utf8_distance, utf8_hop, utf8_length, utf8_to_bytes,
4543 utf8_to_uvchr, utf8_to_uvuni, uvchr_to_utf8, uvuni_to_utf8_flags
4544
4545 =item Variables created by C<xsubpp> and C<xsubpp> internal functions
4546
4547 ax, CLASS, dAX, dITEMS, dXSARGS, dXSI32, items, ix, newXSproto, RETVAL, ST,
4548 THIS, XS, XSRETURN_EMPTY, XS_VERSION, XS_VERSION_BOOTCHECK
4549
4550 =item Warning and Dieing
4551
4552 croak, warn
4553
4554 =item AUTHORS
4555
4556 =item SEE ALSO
4557
4558 =back
4559
4560 =head2 perlintern - autogenerated documentation of purely B<internal>
4561                  Perl functions
4562
4563 =over 4
4564
4565 =item DESCRIPTION
4566
4567 =item Global Variables
4568
4569 PL_DBsingle, PL_DBsub, PL_DBtrace, PL_dowarn, PL_last_in_gv, PL_ofs_sv,
4570 PL_rs
4571
4572 =item GV Functions
4573
4574 is_gv_magical
4575
4576 =item IO Functions
4577
4578 start_glob
4579
4580 =item Pad Data Structures
4581
4582 CvPADLIST
4583
4584 =item Stack Manipulation Macros
4585
4586 djSP, LVRET
4587
4588 =item SV Manipulation Functions
4589
4590 report_uninit, sv_add_arena, sv_clean_all, sv_clean_objs, sv_free_arenas
4591
4592 =item AUTHORS
4593
4594 =item SEE ALSO
4595
4596 =back
4597
4598 =head2 perliol - C API for Perl's implementation of IO in Layers.
4599
4600 =over 4
4601
4602 =item SYNOPSIS
4603
4604 =item DESCRIPTION
4605
4606 =over 4
4607
4608 =item History and Background
4609
4610 =item Layers vs Disciplines
4611
4612 =item Data Structures
4613
4614 =item Functions and Attributes
4615
4616 =item Per-instance Data
4617
4618 =item Layers in action.
4619
4620 =item Per-instance flag bits
4621
4622 PERLIO_F_EOF, PERLIO_F_CANWRITE,  PERLIO_F_CANREAD, PERLIO_F_ERROR,
4623 PERLIO_F_TRUNCATE, PERLIO_F_APPEND, PERLIO_F_CRLF, PERLIO_F_UTF8,
4624 PERLIO_F_UNBUF, PERLIO_F_WRBUF, PERLIO_F_RDBUF, PERLIO_F_LINEBUF,
4625 PERLIO_F_TEMP, PERLIO_F_OPEN, PERLIO_F_FASTGETS
4626
4627 =item Methods in Detail
4628
4629 name, size, kind, PERLIO_K_BUFFERED, PERLIO_K_CANCRLF, PERLIO_K_FASTGETS,
4630 PERLIO_K_MULTIARG, PERLIO_K_RAW, Pushed, Popped, Open, Getarg, Fileno, Dup,
4631 Read, Write, Seek, Tell, Close, Flush, Fill, Eof, Error,  Clearerr,
4632 Setlinebuf, Get_base, Get_bufsiz, Get_ptr, Get_cnt, Set_ptrcnt
4633
4634 =item Core Layers
4635
4636 "unix", "perlio", "stdio", "crlf", "mmap", "pending", "raw", "utf8"
4637
4638 =item Extension Layers
4639
4640 ":encoding", ":Scalar", ":Via"
4641
4642 =back
4643
4644 =item TODO
4645
4646 =back
4647
4648 =head2 perlapio - perl's IO abstraction interface.
4649
4650 =over 4
4651
4652 =item SYNOPSIS
4653
4654 =item DESCRIPTION
4655
4656 1. USE_STDIO, 2. USE_SFIO, 3. USE_PERLIO, B<PerlIO_stdin()>,
4657 B<PerlIO_stdout()>, B<PerlIO_stderr()>, B<PerlIO_open(path, mode)>,
4658 B<PerlIO_fdopen(fd,mode)>, B<PerlIO_reopen(path,mode,f)>,
4659 B<PerlIO_printf(f,fmt,...)>, B<PerlIO_vprintf(f,fmt,a)>,
4660 B<PerlIO_stdoutf(fmt,...)>, B<PerlIO_read(f,buf,count)>,
4661 B<PerlIO_write(f,buf,count)>, B<PerlIO_close(f)>, B<PerlIO_puts(f,s)>,
4662 B<PerlIO_putc(f,c)>, B<PerlIO_ungetc(f,c)>, B<PerlIO_getc(f)>,
4663 B<PerlIO_eof(f)>, B<PerlIO_error(f)>, B<PerlIO_fileno(f)>,
4664 B<PerlIO_clearerr(f)>, B<PerlIO_flush(f)>, B<PerlIO_seek(f,offset,whence)>,
4665 B<PerlIO_tell(f)>, B<PerlIO_getpos(f,p)>, B<PerlIO_setpos(f,p)>,
4666 B<PerlIO_rewind(f)>, B<PerlIO_tmpfile()>, B<PerlIO_setlinebuf(f)>
4667
4668 =over 4
4669
4670 =item Co-existence with stdio
4671
4672 B<PerlIO_importFILE(f,flags)>, B<PerlIO_exportFILE(f,flags)>,
4673 B<PerlIO_releaseFILE(p,f)>, B<PerlIO_findFILE(f)>
4674
4675 =item "Fast gets" Functions
4676
4677 B<PerlIO_fast_gets(f)>, B<PerlIO_has_cntptr(f)>, B<PerlIO_get_cnt(f)>,
4678 B<PerlIO_get_ptr(f)>, B<PerlIO_set_ptrcnt(f,p,c)>, B<PerlIO_canset_cnt(f)>,
4679 B<PerlIO_set_cnt(f,c)>, B<PerlIO_has_base(f)>, B<PerlIO_get_base(f)>,
4680 B<PerlIO_get_bufsiz(f)>
4681
4682 =item Other Functions
4683
4684 PerlIO_apply_layers(f,mode,layers), PerlIO_binmode(f,ptype,imode,layers),
4685 'E<lt>' read, 'E<gt>' write, '+' read/write, PerlIO_debug(fmt,...)
4686
4687 =back
4688
4689 =back
4690
4691 =head2 perltodo - Perl TO-DO List
4692
4693 =over 4
4694
4695 =item DESCRIPTION
4696
4697 =item To do during 5.6.x
4698
4699 =over 4
4700
4701 =item Support for I/O disciplines
4702
4703 =item Autoload bytes.pm
4704
4705 =item Make "\u{XXXX}" et al work
4706
4707 =item Create a char *sv_pvprintify(sv, STRLEN *lenp, UV flags)
4708
4709 =item Overloadable regex assertions
4710
4711 =item Unicode
4712
4713 =item use Thread for iThreads
4714
4715 =item make perl_clone optionally clone ops
4716
4717 =item Work out exit/die semantics for threads
4718
4719 =item Typed lexicals for compiler
4720
4721 =item Compiler workarounds for Win32
4722
4723 =item AUTOLOADing in the compiler
4724
4725 =item Fixing comppadlist when compiling
4726
4727 =item Cleaning up exported namespace
4728
4729 =item Complete signal handling
4730
4731 =item Out-of-source builds
4732
4733 =item POSIX realtime support
4734
4735 =item UNIX98 support
4736
4737 =item IPv6 Support
4738
4739 =item Long double conversion
4740
4741 =item Locales
4742
4743 =item Thread-safe regexes
4744
4745 =item Arithmetic on non-Arabic numerals
4746
4747 =item POSIX Unicode character classes
4748
4749 =item Factoring out common suffices/prefices in regexps (trie optimization)
4750
4751 =item Security audit shipped utilities
4752
4753 =item Sort out the uid-setting mess
4754
4755 =item Custom opcodes
4756
4757 =item DLL Versioning
4758
4759 =item Introduce @( and @)
4760
4761 =item Floating point handling
4762
4763 =item IV/UV preservation
4764
4765 =item Replace pod2html with something using Pod::Parser
4766
4767 =item Automate module testing on CPAN
4768
4769 =item sendmsg and recvmsg
4770
4771 =item Rewrite perlre documentation
4772
4773 =item Convert example code to IO::Handle filehandles
4774
4775 =item Document Win32 choices
4776
4777 =item Check new modules
4778
4779 =item Make roffitall find pods and libs itself
4780
4781 =back
4782
4783 =item To do at some point
4784
4785 =over 4
4786
4787 =item Remove regular expression recursion
4788
4789 =item Memory leaks after failed eval
4790
4791 =item bitfields in pack
4792
4793 =item Cross compilation
4794
4795 =item Perl preprocessor / macros
4796
4797 =item Perl lexer in Perl
4798
4799 =item Using POSIX calls internally
4800
4801 =item -i rename file when changed
4802
4803 =item All ARGV input should act like E<lt>E<gt>
4804
4805 =item Support for rerunning debugger
4806
4807 =item Test Suite for the Debugger
4808
4809 =item my sub foo { }
4810
4811 =item One-pass global destruction
4812
4813 =item Rewrite regexp parser
4814
4815 =item Cache recently used regexps
4816
4817 =item Re-entrant functions
4818
4819 =item Cross-compilation support
4820
4821 =item Bit-shifting bitvectors
4822
4823 =item debugger pragma
4824
4825 =item use less pragma
4826
4827 =item switch structures
4828
4829 =item Cache eval tree
4830
4831 =item rcatmaybe
4832
4833 =item Shrink opcode tables
4834
4835 =item Optimize away @_
4836
4837 =item Prototypes versus indirect objects
4838
4839 =item Install HTML
4840
4841 =item Prototype method calls
4842
4843 =item Return context prototype declarations
4844
4845 =item magic_setisa
4846
4847 =item Garbage collection
4848
4849 =item IO tutorial
4850
4851 =item Rewrite perldoc
4852
4853 =item Install .3p manpages
4854
4855 =item Unicode tutorial
4856
4857 =item Update POSIX.pm for 1003.1-2
4858
4859 =item Retargetable installation
4860
4861 =item POSIX emulation on non-POSIX systems
4862
4863 =item Rename Win32 headers
4864
4865 =item Finish off lvalue functions
4866
4867 =item Update sprintf documentation
4868
4869 =item Use fchown/fchmod internally
4870
4871 =item Make v-strings overloaded objects
4872
4873 =item Allow restricted hash assignment
4874
4875 =item Should overload be inheritable?
4876
4877 =item Taint rethink
4878
4879 =back
4880
4881 =item Vague ideas
4882
4883 =over 4
4884
4885 =item ref() in list context
4886
4887 =item Make tr/// return histogram of characters in list context
4888
4889 =item Compile to real threaded code
4890
4891 =item Structured types
4892
4893 =item Modifiable $1 et al.
4894
4895 =item Procedural interfaces for IO::*, etc.
4896
4897 =item RPC modules
4898
4899 =item Attach/detach debugger from running program
4900
4901 =item GUI::Native
4902
4903 =item foreach(reverse ...)
4904
4905 =item Constant function cache
4906
4907 =item Approximate regular expression matching
4908
4909 =back
4910
4911 =item Ongoing
4912
4913 =over 4
4914
4915 =item Update guts documentation
4916
4917 =item Add more tests
4918
4919 =item Update auxiliary tools
4920
4921 =item Create debugging macros
4922
4923 =item truncate to the people
4924
4925 =item Unicode in Filenames
4926
4927 =back
4928
4929 =item Recently done things
4930
4931 =over 4
4932
4933 =item Alternative RE syntax module
4934
4935 =item Safe signal handling
4936
4937 =item Tie Modules
4938
4939 =item gettimeofday
4940
4941 =item setitimer and getimiter
4942
4943 =item Testing __DIE__ hook
4944
4945 =item CPP equivalent in Perl
4946
4947 =item Explicit switch statements
4948
4949 =item autocroak
4950
4951 =item UTF/EBCDIC
4952
4953 =item UTF Regexes
4954
4955 =item perlcc to produce executable
4956
4957 =item END blocks saved in compiled output
4958
4959 =item Secure temporary file module
4960
4961 =item Integrate Time::HiRes
4962
4963 =item Turn Cwd into XS
4964
4965 =item Mmap for input
4966
4967 =item Byte to/from UTF8 and UTF8 to/from local conversion
4968
4969 =item Add sockatmark support
4970
4971 =item Mailing list archives
4972
4973 =item Bug tracking
4974
4975 =item Integrate MacPerl
4976
4977 =item Web "nerve center" for Perl
4978
4979 =item Regular expression tutorial
4980
4981 =item Debugging Tutorial
4982
4983 =item Integrate new modules
4984
4985 =item Integrate profiler
4986
4987 =item Y2K error detection
4988
4989 =item Regular expression debugger
4990
4991 =item POD checker
4992
4993 =item "Dynamic" lexicals
4994
4995 =item Cache precompiled modules
4996
4997 =back
4998
4999 =item Deprecated Wishes
5000
5001 =over 4
5002
5003 =item Loop control on do{}
5004
5005 =item Lexically scoped typeglobs
5006
5007 =item format BOTTOM
5008
5009 =item report HANDLE
5010
5011 =item Generalised want()/caller())
5012
5013 =item Named prototypes
5014
5015 =item Built-in globbing
5016
5017 =item Regression tests for suidperl
5018
5019 =item Cached hash values
5020
5021 =item Add compression modules
5022
5023 =item Reorganise documentation into tutorials/references
5024
5025 =item Remove distinction between functions and operators
5026
5027 =item Make XS easier to use
5028
5029 =item Make embedding easier to use
5030
5031 =item man for perl
5032
5033 =item my $Package::variable
5034
5035 =item "or" tests defined, not truth
5036
5037 =item "class"-based lexicals
5038
5039 =item byteperl
5040
5041 =item Lazy evaluation / tail recursion removal
5042
5043 =item Make "use utf8" the default
5044
5045 =item Unicode collation and normalization
5046
5047 =item pack/unpack tutorial
5048
5049 =back
5050
5051 =back
5052
5053 =head2 perlhack - How to hack at the Perl internals
5054
5055 =over 4
5056
5057 =item DESCRIPTION
5058
5059 Does concept match the general goals of Perl?, Where is the
5060 implementation?, Backwards compatibility, Could it be a module instead?, Is
5061 the feature generic enough?, Does it potentially introduce new bugs?, Does
5062 it preclude other desirable features?, Is the implementation robust?, Is
5063 the implementation generic enough to be portable?, Is the implementation
5064 tested?, Is there enough documentation?, Is there another way to do it?,
5065 Does it create too much work?, Patches speak louder than words
5066
5067 =over 4
5068
5069 =item Keeping in sync
5070
5071 rsync'ing the source tree, Using rsync over the LAN, Using pushing over the
5072 NFS, rsync'ing the patches
5073
5074 =item Why rsync the source tree
5075
5076 It's easier to rsync the source tree, It's more recent, It's more reliable
5077
5078 =item Why rsync the patches
5079
5080 It's easier to rsync the patches, It's a good reference, Finding a start
5081 point, Finding how to fix a bug, Finding the source of misbehaviour
5082
5083 =item Perlbug remote interface
5084
5085 1 http://bugs.perl.org, 2 bugdb@perl.org, 3
5086 commands_and_bugdids@bugs.perl.org, notes, patches, tests
5087
5088 =item Submitting patches
5089
5090 L<perlguts>, L<perlxstut> and L<perlxs>, L<perlapi>,
5091 F<Porting/pumpkin.pod>, The perl5-porters FAQ
5092
5093 =item Finding Your Way Around
5094
5095 Core modules, Tests, Documentation, Configure, Interpreter
5096
5097 =item Elements of the interpreter
5098
5099 Startup, Parsing, Optimization, Running
5100
5101 =item Internal Variable Types
5102
5103 =item Op Trees
5104
5105 =item Stacks
5106
5107 Argument stack, Mark stack, Save stack
5108
5109 =item Millions of Macros
5110
5111 =item Poking at Perl
5112
5113 =item Using a source-level debugger
5114
5115 run [args], break function_name, break source.c:xxx, step, next, continue,
5116 finish, 'enter', print
5117
5118 =item Dumping Perl Data Structures
5119
5120 =item Patching
5121
5122 =item Patching a core module
5123
5124 =item Adding a new function to the core
5125
5126 =item Writing a test
5127
5128 F<t/base/>, F<t/cmd/>, F<t/comp/>, F<t/io/>, F<t/lib/>, F<t/op/>,
5129 F<t/pod/>, F<t/run/>, t/base t/comp, t/cmd t/run t/io t/op, t/lib ext lib
5130
5131 =item Special Make Test Targets
5132
5133 coretest, test.deparse, minitest, test.third check.third utest.third
5134 ucheck.third, test.torture torturetest, utest ucheck test.utf8 check.utf8
5135
5136 =back
5137
5138 =item EXTERNAL TOOLS FOR DEBUGGING PERL
5139
5140 =over 4
5141
5142 =item Rational Software's Purify
5143
5144 =item Purify on Unix
5145
5146 -Accflags=-DPURIFY, -Doptimize='-g', -Uusemymalloc, -Dusemultiplicity
5147
5148 =item Purify on NT
5149
5150 DEFINES, USE_MULTI = define, #PERL_MALLOC = define, CFG = Debug
5151
5152 =item Compaq's/Digital's Third Degree
5153
5154 =item PERL_DESTRUCT_LEVEL
5155
5156 =item Profiling
5157
5158 =item Gprof Profiling
5159
5160 -a, -b, -e routine, -f routine, -s, -z
5161
5162 =item GCC gcov Profiling
5163
5164 =item Pixie Profiling
5165
5166 -h, -l, -p[rocedures], -h[eavy], -i[nvocations], -l[ines], -testcoverage,
5167 -z[ero]
5168
5169 =item Miscellaneous tricks
5170
5171 =item CONCLUSION
5172
5173 I<The Road goes ever on and on, down from the door where it began.>
5174
5175 =back
5176
5177 =item AUTHOR
5178
5179 =back
5180
5181 =head2 perlhist - the Perl history records
5182
5183 =over 4
5184
5185 =item DESCRIPTION
5186
5187 =item INTRODUCTION
5188
5189 =item THE KEEPERS OF THE PUMPKIN
5190
5191 =over 4
5192
5193 =item PUMPKIN?
5194
5195 =back
5196
5197 =item THE RECORDS
5198
5199 =over 4
5200
5201 =item SELECTED RELEASE SIZES
5202
5203 =item SELECTED PATCH SIZES
5204
5205 =back
5206
5207 =item THE KEEPERS OF THE RECORDS
5208
5209 =back
5210
5211 =head2 perldelta - what is new for perl v5.8.0
5212
5213 =over 4
5214
5215 =item DESCRIPTION
5216
5217 =item Highlights In 5.8.0
5218
5219 =item Incompatible Changes
5220
5221 =over 4
5222
5223 =item Binary Incompatibility
5224
5225 =item 64-bit platforms and malloc
5226
5227 =item AIX Dynaloading
5228
5229 =item Attributes for C<my> variables now handled at run-time.
5230
5231 =item Socket Extension Dynamic in VMS
5232
5233 =item IEEE-format Floating Point Default on OpenVMS Alpha
5234
5235 =item New Unicode Properties
5236
5237 =item REF(...) Instead Of SCALAR(...)
5238
5239 =item pack/unpack D/F recycled
5240
5241 =item Deprecations
5242
5243 =back
5244
5245 =item Core Enhancements
5246
5247 =over 4
5248
5249 =item PerlIO is Now The Default
5250
5251 =item Restricted Hashes
5252
5253 =item Safe Signals
5254
5255 =item Unicode Overhaul
5256
5257 =item Understanding of Numbers
5258
5259 =item Miscellaneous Changes
5260
5261 =back
5262
5263 =item Modules and Pragmata
5264
5265 =over 4
5266
5267 =item New Modules and Pragmata
5268
5269 =item Updated And Improved Modules and Pragmata
5270
5271 =back
5272
5273 =item Utility Changes
5274
5275 =item New Documentation
5276
5277 =item Performance Enhancements
5278
5279 =item Installation and Configuration Improvements
5280
5281 =over 4
5282
5283 =item Generic Improvements
5284
5285 =item New Or Improved Platforms
5286
5287 =back
5288
5289 =item Selected Bug Fixes
5290
5291 =over 4
5292
5293 =item Platform Specific Changes and Fixes
5294
5295 =back
5296
5297 =item New or Changed Diagnostics
5298
5299 =item Changed Internals
5300
5301 =item Security Vulnerability Closed
5302
5303 =item New Tests
5304
5305 =item Known Problems
5306
5307 =over 4
5308
5309 =item AIX
5310
5311 =item Amiga Perl Invoking Mystery
5312
5313 =item FreeBSD Failing locale Test 117 For ISO8859-15 Locales
5314
5315 =item Modifying $_ Inside for(..)
5316
5317 =item mod_perl 1.26 Doesn't Build With Threaded Perl
5318
5319 =item lib/ftmp-security tests warn 'system possibly insecure'
5320
5321 =item HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5322
5323 =item Linux With Sfio Fails op/misc Test 48
5324
5325 =item Mac OS X
5326
5327 =item op/sprintf tests 91, 129, and 130
5328
5329 =item Solaris 2.5
5330
5331 =item Failure of Thread (5.005-style) tests
5332
5333 =item UNICOS
5334
5335 =item UNICOS/mk
5336
5337 =item UTS
5338
5339 =item VMS
5340
5341 =item Win32
5342
5343 =item XML::Parser not working
5344
5345 =item z/OS (OS/390)
5346
5347 =item Localising Tied Arrays and Hashes Is Broken
5348
5349 =item Self-tying of Arrays and Hashes Is Forbidden
5350
5351 =item Building Extensions Can Fail Because Of Largefiles
5352
5353 =item Unicode Support on EBCDIC Still Spotty
5354
5355 =item The Compiler Suite Is Still Experimental
5356
5357 =item The Long Double Support Is Still Experimental
5358
5359 =item Seen In Perl 5.7 But Gone Now
5360
5361 =back
5362
5363 =item Reporting Bugs
5364
5365 =item SEE ALSO
5366
5367 =item HISTORY
5368
5369 =back
5370
5371 =head2 perl572delta - what's new for perl v5.7.2
5372
5373 =over 4
5374
5375 =item DESCRIPTION
5376
5377 =item Security Vulnerability Closed
5378
5379 =item Incompatible Changes
5380
5381 =over 4
5382
5383 =item 64-bit platforms and malloc
5384
5385 =item AIX Dynaloading
5386
5387 =item Socket Extension Dynamic in VMS
5388
5389 =item Different Definition of the Unicode Character Classes \p{In...}
5390
5391 =item Deprecations
5392
5393 =back
5394
5395 =item Core Enhancements
5396
5397 =item Modules and Pragmata
5398
5399 =over 4
5400
5401 =item New Modules and Distributions
5402
5403 =item Updated And Improved Modules and Pragmata
5404
5405 =back
5406
5407 =item Utility Changes
5408
5409 =item New Documentation
5410
5411 =item Installation and Configuration Improvements
5412
5413 =over 4
5414
5415 =item New Or Improved Platforms
5416
5417 =item Generic Improvements
5418
5419 =back
5420
5421 =item Selected Bug Fixes
5422
5423 =over 4
5424
5425 =item Platform Specific Changes and Fixes
5426
5427 =back
5428
5429 =item New or Changed Diagnostics
5430
5431 =item Source Code Enhancements
5432
5433 =over 4
5434
5435 =item MAGIC constants
5436
5437 =item Better commented code
5438
5439 =item Regex pre-/post-compilation items matched up
5440
5441 =item gcc -Wall
5442
5443 =back
5444
5445 =item New Tests
5446
5447 =item Known Problems
5448
5449 =over 4
5450
5451 =item AIX
5452
5453 =item Amiga Perl Invoking Mystery
5454
5455 =item lib/ftmp-security tests warn 'system possibly insecure'
5456
5457 =item Cygwin intermittent failures of lib/Memoize/t/expire_file 11 and 12
5458
5459 =item HP-UX lib/io_multihomed Fails When LP64-Configured
5460
5461 =item  HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5462
5463 =item Linux With Sfio Fails op/misc Test 48
5464
5465 =item OS/390
5466
5467 =item op/sprintf tests 129 and 130
5468
5469 =item  Failure of Thread tests
5470
5471 =item UNICOS
5472
5473 =item UTS
5474
5475 =item VMS
5476
5477 =item Win32
5478
5479 =item Localising a Tied Variable Leaks Memory
5480
5481 =item Self-tying of Arrays and Hashes Is Forbidden
5482
5483 =item Variable Attributes are not Currently Usable for Tieing
5484
5485 =item Building Extensions Can Fail Because Of Largefiles
5486
5487 =item The Compiler Suite Is Still Experimental
5488
5489 =item The Long Double Support is Still Experimental
5490
5491 =back
5492
5493 =item Reporting Bugs
5494
5495 =item SEE ALSO
5496
5497 =item HISTORY
5498
5499 =back
5500
5501 =head2 perl571delta - what's new for perl v5.7.1
5502
5503 =over 4
5504
5505 =item DESCRIPTION
5506
5507 =item Security Vulnerability Closed
5508
5509 =item Incompatible Changes
5510
5511 =item Core Enhancements
5512
5513 =over 4
5514
5515 =item AUTOLOAD Is Now Lvaluable
5516
5517 =item PerlIO is Now The Default
5518
5519 =item Signals Are Now Safe
5520
5521 =back
5522
5523 =item Modules and Pragmata
5524
5525 =over 4
5526
5527 =item New Modules
5528
5529 =item Updated And Improved Modules and Pragmata
5530
5531 =back
5532
5533 =item Performance Enhancements
5534
5535 =item Utility Changes
5536
5537 =item New Documentation
5538
5539 =over 4
5540
5541 =item perlclib
5542
5543 =item perliol
5544
5545 =item README.aix
5546
5547 =item README.bs2000
5548
5549 =item README.macos
5550
5551 =item README.mpeix
5552
5553 =item README.solaris
5554
5555 =item README.vos
5556
5557 =item Porting/repository.pod
5558
5559 =back
5560
5561 =item Installation and Configuration Improvements
5562
5563 =over 4
5564
5565 =item New Or Improved Platforms
5566
5567 =item Generic Improvements
5568
5569 d_cmsghdr, d_fcntl_can_lock, d_fsync, d_getitimer, d_getpagsz, d_msghdr_s,
5570 need_va_copy, d_readv, d_recvmsg, d_sendmsg, sig_size, d_sockatmark,
5571 d_strtoq, d_u32align, d_ualarm, d_usleep
5572
5573 =back
5574
5575 =item Selected Bug Fixes
5576
5577 =over 4
5578
5579 =item Platform Specific Changes and Fixes
5580
5581 =back
5582
5583 =item New or Changed Diagnostics
5584
5585 =item Changed Internals
5586
5587 =item New Tests
5588
5589 =item Known Problems
5590
5591 =over 4
5592
5593 =item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
5594
5595 =item lib/ftmp-security tests warn 'system possibly insecure'
5596
5597 =item lib/io_multihomed Fails In LP64-Configured HP-UX
5598
5599 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5600
5601 =item lib/b test 19
5602
5603 =item Linux With Sfio Fails op/misc Test 48
5604
5605 =item sigaction test 13 in VMS
5606
5607 =item sprintf tests 129 and 130
5608
5609 =item  Failure of Thread tests
5610
5611 =item Localising a Tied Variable Leaks Memory
5612
5613 =item Self-tying of Arrays and Hashes Is Forbidden
5614
5615 =item Building Extensions Can Fail Because Of Largefiles
5616
5617 =item The Compiler Suite Is Still Experimental
5618
5619 =back
5620
5621 =item Reporting Bugs
5622
5623 =item SEE ALSO
5624
5625 =item HISTORY
5626
5627 =back
5628
5629 =head2 perl570delta - what's new for perl v5.7.0
5630
5631 =over 4
5632
5633 =item DESCRIPTION
5634
5635 =item Security Vulnerability Closed
5636
5637 =item Incompatible Changes
5638
5639 =item Core Enhancements
5640
5641 =item Modules and Pragmata
5642
5643 =over 4
5644
5645 =item New Modules
5646
5647 =item Updated And Improved Modules and Pragmata
5648
5649 =back
5650
5651 =item Utility Changes
5652
5653 =item New Documentation
5654
5655 =item Performance Enhancements
5656
5657 =item Installation and Configuration Improvements
5658
5659 =over 4
5660
5661 =item Generic Improvements
5662
5663 =back
5664
5665 =item Selected Bug Fixes
5666
5667 =over 4
5668
5669 =item Platform Specific Changes and Fixes
5670
5671 =back
5672
5673 =item New or Changed Diagnostics
5674
5675 =item Changed Internals
5676
5677 =item Known Problems
5678
5679 =over 4
5680
5681 =item Unicode Support Still Far From Perfect
5682
5683 =item EBCDIC Still A Lost Platform
5684
5685 =item Building Extensions Can Fail Because Of Largefiles
5686
5687 =item ftmp-security tests warn 'system possibly insecure'
5688
5689 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5690
5691 =item Long Doubles Still Don't Work In Solaris
5692
5693 =item Linux With Sfio Fails op/misc Test 48
5694
5695 =item Storable tests fail in some platforms
5696
5697 =item Threads Are Still Experimental
5698
5699 =item The Compiler Suite Is Still Experimental
5700
5701 =back
5702
5703 =item Reporting Bugs
5704
5705 =item SEE ALSO
5706
5707 =item HISTORY
5708
5709 =back
5710
5711 =head2 perl561delta - what's new for perl v5.6.x
5712
5713 =over 4
5714
5715 =item DESCRIPTION
5716
5717 =item Summary of changes between 5.6.0 and 5.6.1
5718
5719 =over 4
5720
5721 =item Security Issues
5722
5723 =item Core bug fixes
5724
5725 C<UNIVERSAL::isa()>, Memory leaks, Numeric conversions, qw(a\\b), caller(),
5726 Bugs in regular expressions, "slurp" mode, Autovivification of symbolic
5727 references to special variables, Lexical warnings, Spurious warnings and
5728 errors, glob(), Tainting, sort(), #line directives, Subroutine prototypes,
5729 map(), Debugger, PERL5OPT, chop(), Unicode support, 64-bit support,
5730 Compiler, Lvalue subroutines, IO::Socket, File::Find, xsubpp, C<no
5731 Module;>, Tests
5732
5733 =item Core features
5734
5735 =item Configuration issues
5736
5737 =item Documentation
5738
5739 =item Bundled modules
5740
5741 B::Concise, File::Temp, Pod::LaTeX, Pod::Text::Overstrike, CGI, CPAN,
5742 Class::Struct, DB_File, Devel::Peek, File::Find, Getopt::Long, IO::Poll,
5743 IPC::Open3, Math::BigFloat, Math::Complex, Net::Ping, Opcode, Pod::Parser,
5744 Pod::Text, SDBM_File, Sys::Syslog, Tie::RefHash, Tie::SubstrHash
5745
5746 =item Platform-specific improvements
5747
5748 NCR MP-RAS, NonStop-UX
5749
5750 =back
5751
5752 =item Core Enhancements
5753
5754 =over 4
5755
5756 =item Interpreter cloning, threads, and concurrency
5757
5758 =item Lexically scoped warning categories
5759
5760 =item Unicode and UTF-8 support
5761
5762 =item Support for interpolating named characters
5763
5764 =item "our" declarations
5765
5766 =item Support for strings represented as a vector of ordinals
5767
5768 =item Improved Perl version numbering system
5769
5770 =item New syntax for declaring subroutine attributes
5771
5772 =item File and directory handles can be autovivified
5773
5774 =item open() with more than two arguments
5775
5776 =item 64-bit support
5777
5778 =item Large file support
5779
5780 =item Long doubles
5781
5782 =item "more bits"
5783
5784 =item Enhanced support for sort() subroutines
5785
5786 =item C<sort $coderef @foo> allowed
5787
5788 =item File globbing implemented internally
5789
5790 =item Support for CHECK blocks
5791
5792 =item POSIX character class syntax [: :] supported
5793
5794 =item Better pseudo-random number generator
5795
5796 =item Improved C<qw//> operator
5797
5798 =item Better worst-case behavior of hashes
5799
5800 =item pack() format 'Z' supported
5801
5802 =item pack() format modifier '!' supported
5803
5804 =item pack() and unpack() support counted strings
5805
5806 =item Comments in pack() templates
5807
5808 =item Weak references
5809
5810 =item Binary numbers supported
5811
5812 =item Lvalue subroutines
5813
5814 =item Some arrows may be omitted in calls through references
5815
5816 =item Boolean assignment operators are legal lvalues
5817
5818 =item exists() is supported on subroutine names
5819
5820 =item exists() and delete() are supported on array elements
5821
5822 =item Pseudo-hashes work better
5823
5824 =item Automatic flushing of output buffers
5825
5826 =item Better diagnostics on meaningless filehandle operations
5827
5828 =item Where possible, buffered data discarded from duped input filehandle
5829
5830 =item eof() has the same old magic as <>
5831
5832 =item binmode() can be used to set :crlf and :raw modes
5833
5834 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
5835
5836 =item system(), backticks and pipe open now reflect exec() failure
5837
5838 =item Improved diagnostics
5839
5840 =item Diagnostics follow STDERR
5841
5842 =item More consistent close-on-exec behavior
5843
5844 =item syswrite() ease-of-use
5845
5846 =item Better syntax checks on parenthesized unary operators
5847
5848 =item Bit operators support full native integer width
5849
5850 =item Improved security features
5851
5852 =item More functional bareword prototype (*)
5853
5854 =item C<require> and C<do> may be overridden
5855
5856 =item $^X variables may now have names longer than one character
5857
5858 =item New variable $^C reflects C<-c> switch
5859
5860 =item New variable $^V contains Perl version as a string
5861
5862 =item Optional Y2K warnings
5863
5864 =item Arrays now always interpolate into double-quoted strings
5865
5866 =back
5867
5868 =item Modules and Pragmata
5869
5870 =over 4
5871
5872 =item Modules
5873
5874 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
5875 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
5876 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
5877 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
5878 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
5879 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
5880 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
5881 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
5882
5883 =item Pragmata
5884
5885 =back
5886
5887 =item Utility Changes
5888
5889 =over 4
5890
5891 =item dprofpp
5892
5893 =item find2perl
5894
5895 =item h2xs
5896
5897 =item perlcc
5898
5899 =item perldoc
5900
5901 =item The Perl Debugger
5902
5903 =back
5904
5905 =item Improved Documentation
5906
5907 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
5908 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
5909 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
5910 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
5911
5912 =item Performance enhancements
5913
5914 =over 4
5915
5916 =item Simple sort() using { $a <=> $b } and the like are optimized
5917
5918 =item Optimized assignments to lexical variables
5919
5920 =item Faster subroutine calls
5921
5922 =item delete(), each(), values() and hash iteration are faster
5923
5924 =back
5925
5926 =item Installation and Configuration Improvements
5927
5928 =over 4
5929
5930 =item -Dusethreads means something different
5931
5932 =item New Configure flags
5933
5934 =item Threadedness and 64-bitness now more daring
5935
5936 =item Long Doubles
5937
5938 =item -Dusemorebits
5939
5940 =item -Duselargefiles
5941
5942 =item installusrbinperl
5943
5944 =item SOCKS support
5945
5946 =item C<-A> flag
5947
5948 =item Enhanced Installation Directories
5949
5950 =item gcc automatically tried if 'cc' does not seem to be working
5951
5952 =back
5953
5954 =item Platform specific changes
5955
5956 =over 4
5957
5958 =item Supported platforms
5959
5960 =item DOS
5961
5962 =item OS390 (OpenEdition MVS)
5963
5964 =item VMS
5965
5966 =item Win32
5967
5968 =back
5969
5970 =item Significant bug fixes
5971
5972 =over 4
5973
5974 =item <HANDLE> on empty files
5975
5976 =item C<eval '...'> improvements
5977
5978 =item All compilation errors are true errors
5979
5980 =item Implicitly closed filehandles are safer
5981
5982 =item Behavior of list slices is more consistent
5983
5984 =item C<(\$)> prototype and C<$foo{a}>
5985
5986 =item C<goto &sub> and AUTOLOAD
5987
5988 =item C<-bareword> allowed under C<use integer>
5989
5990 =item Failures in DESTROY()
5991
5992 =item Locale bugs fixed
5993
5994 =item Memory leaks
5995
5996 =item Spurious subroutine stubs after failed subroutine calls
5997
5998 =item Taint failures under C<-U>
5999
6000 =item END blocks and the C<-c> switch
6001
6002 =item Potential to leak DATA filehandles
6003
6004 =back
6005
6006 =item New or Changed Diagnostics
6007
6008 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6009 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6010 / cannot take a count, / must be followed by a, A or Z, / must be followed
6011 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6012 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6013 passed through, /%s/ should probably be written as "%s", %s() called too
6014 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6015 argument is not a HASH or ARRAY element or slice, %s argument is not a
6016 subroutine name, %s package attribute may clash with future reserved word:
6017 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6018 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6019 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6020 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6021 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6022 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6023 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6024 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6025 weaken a nonreference, Character class [:%s:] unknown, Character class
6026 syntax [%s] belongs inside character classes, Constant is not %s reference,
6027 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6028 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6029 "local" instead of "our"?), Document contains no data, entering effective
6030 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6031 output, flock() on closed filehandle %s, Global symbol "%s" requires
6032 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6033 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6034 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6035 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6036 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6037 separator character %s in attribute list, Invalid separator character %s in
6038 subroutine attribute list, leaving effective %s failed, Lvalue subs
6039 returning %s not implemented yet, Method %s not permitted, Missing
6040 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6041 No %s specified for -%c, No package name allowed for variable %s in "our",
6042 No space allowed after -%c, no UTC offset information; assuming local time
6043 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6044 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6045 around "%s" list, Possible unintended interpolation of %s in string,
6046 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6047 instead, Premature end of script headers, Repeat count in pack overflows,
6048 Repeat count in unpack overflows, realloc() of freed memory ignored,
6049 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6050 zero-length expression, switching effective %s is not implemented, This
6051 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6052 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6053 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6054 escape \\%c passed through, Unterminated attribute parameter in attribute
6055 list, Unterminated attribute list, Unterminated attribute parameter in
6056 subroutine attribute list, Unterminated subroutine attribute list, Value of
6057 CLI symbol "%s" too long, Version number must be a constant number
6058
6059 =item New tests
6060
6061 =item Incompatible Changes
6062
6063 =over 4
6064
6065 =item Perl Source Incompatibilities
6066
6067 CHECK is a new keyword, Treatment of list slices of undef has changed,
6068 Format of $English::PERL_VERSION is different, Literals of the form
6069 C<1.2.3> parse differently, Possibly changed pseudo-random number
6070 generator, Hashing function for hash keys has changed, C<undef> fails on
6071 read only values, Close-on-exec bit may be set on pipe and socket handles,
6072 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6073 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6074 Text of some diagnostic output has changed, C<%@> has been removed,
6075 Parenthesized not() behaves like a list operator, Semantics of bareword
6076 prototype C<(*)> have changed, Semantics of bit operators may have changed
6077 on 64-bit platforms, More builtins taint their results
6078
6079 =item C Source Incompatibilities
6080
6081 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6082
6083 =item Compatible C Source API Changes
6084
6085 C<PATCHLEVEL> is now C<PERL_VERSION>
6086
6087 =item Binary Incompatibilities
6088
6089 =back
6090
6091 =item Known Problems
6092
6093 =over 4
6094
6095 =item Localizing a tied hash element may leak memory
6096
6097 =item Known test failures
6098
6099 , , 
6100
6101 =item EBCDIC platforms not fully supported
6102
6103 =item UNICOS/mk CC failures during Configure run
6104
6105 =item Arrow operator and arrays
6106
6107 =item Experimental features
6108
6109 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6110 pseudo-hash data type, The Compiler suite, Internal implementation of file
6111 globbing, The DB module, The regular expression code constructs:
6112
6113 =back
6114
6115 =item Obsolete Diagnostics
6116
6117 Character class syntax [: :] is reserved for future extensions, Ill-formed
6118 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6119 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6120 to mean "${$}<digit>" is deprecated
6121
6122 =item Reporting Bugs
6123
6124 =item SEE ALSO
6125
6126 =item HISTORY
6127
6128 =back
6129
6130 =head2 perl56delta - what's new for perl v5.6.0
6131
6132 =over 4
6133
6134 =item DESCRIPTION
6135
6136 =item Core Enhancements
6137
6138 =over 4
6139
6140 =item Interpreter cloning, threads, and concurrency
6141
6142 =item Lexically scoped warning categories
6143
6144 =item Unicode and UTF-8 support
6145
6146 =item Support for interpolating named characters
6147
6148 =item "our" declarations
6149
6150 =item Support for strings represented as a vector of ordinals
6151
6152 =item Improved Perl version numbering system
6153
6154 =item New syntax for declaring subroutine attributes
6155
6156 =item File and directory handles can be autovivified
6157
6158 =item open() with more than two arguments
6159
6160 =item 64-bit support
6161
6162 =item Large file support
6163
6164 =item Long doubles
6165
6166 =item "more bits"
6167
6168 =item Enhanced support for sort() subroutines
6169
6170 =item C<sort $coderef @foo> allowed
6171
6172 =item File globbing implemented internally
6173
6174 =item Support for CHECK blocks
6175
6176 =item POSIX character class syntax [: :] supported
6177
6178 =item Better pseudo-random number generator
6179
6180 =item Improved C<qw//> operator
6181
6182 =item Better worst-case behavior of hashes
6183
6184 =item pack() format 'Z' supported
6185
6186 =item pack() format modifier '!' supported
6187
6188 =item pack() and unpack() support counted strings
6189
6190 =item Comments in pack() templates
6191
6192 =item Weak references
6193
6194 =item Binary numbers supported
6195
6196 =item Lvalue subroutines
6197
6198 =item Some arrows may be omitted in calls through references
6199
6200 =item Boolean assignment operators are legal lvalues
6201
6202 =item exists() is supported on subroutine names
6203
6204 =item exists() and delete() are supported on array elements
6205
6206 =item Pseudo-hashes work better
6207
6208 =item Automatic flushing of output buffers
6209
6210 =item Better diagnostics on meaningless filehandle operations
6211
6212 =item Where possible, buffered data discarded from duped input filehandle
6213
6214 =item eof() has the same old magic as <>
6215
6216 =item binmode() can be used to set :crlf and :raw modes
6217
6218 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
6219
6220 =item system(), backticks and pipe open now reflect exec() failure
6221
6222 =item Improved diagnostics
6223
6224 =item Diagnostics follow STDERR
6225
6226 =item More consistent close-on-exec behavior
6227
6228 =item syswrite() ease-of-use
6229
6230 =item Better syntax checks on parenthesized unary operators
6231
6232 =item Bit operators support full native integer width
6233
6234 =item Improved security features
6235
6236 =item More functional bareword prototype (*)
6237
6238 =item C<require> and C<do> may be overridden
6239
6240 =item $^X variables may now have names longer than one character
6241
6242 =item New variable $^C reflects C<-c> switch
6243
6244 =item New variable $^V contains Perl version as a string
6245
6246 =item Optional Y2K warnings
6247
6248 =item Arrays now always interpolate into double-quoted strings
6249
6250 =back
6251
6252 =item Modules and Pragmata
6253
6254 =over 4
6255
6256 =item Modules
6257
6258 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6259 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6260 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6261 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6262 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6263 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6264 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6265 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6266
6267 =item Pragmata
6268
6269 =back
6270
6271 =item Utility Changes
6272
6273 =over 4
6274
6275 =item dprofpp
6276
6277 =item find2perl
6278
6279 =item h2xs
6280
6281 =item perlcc
6282
6283 =item perldoc
6284
6285 =item The Perl Debugger
6286
6287 =back
6288
6289 =item Improved Documentation
6290
6291 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6292 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6293 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6294 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6295
6296 =item Performance enhancements
6297
6298 =over 4
6299
6300 =item Simple sort() using { $a <=> $b } and the like are optimized
6301
6302 =item Optimized assignments to lexical variables
6303
6304 =item Faster subroutine calls
6305
6306 =item delete(), each(), values() and hash iteration are faster
6307
6308 =back
6309
6310 =item Installation and Configuration Improvements
6311
6312 =over 4
6313
6314 =item -Dusethreads means something different
6315
6316 =item New Configure flags
6317
6318 =item Threadedness and 64-bitness now more daring
6319
6320 =item Long Doubles
6321
6322 =item -Dusemorebits
6323
6324 =item -Duselargefiles
6325
6326 =item installusrbinperl
6327
6328 =item SOCKS support
6329
6330 =item C<-A> flag
6331
6332 =item Enhanced Installation Directories
6333
6334 =back
6335
6336 =item Platform specific changes
6337
6338 =over 4
6339
6340 =item Supported platforms
6341
6342 =item DOS
6343
6344 =item OS390 (OpenEdition MVS)
6345
6346 =item VMS
6347
6348 =item Win32
6349
6350 =back
6351
6352 =item Significant bug fixes
6353
6354 =over 4
6355
6356 =item <HANDLE> on empty files
6357
6358 =item C<eval '...'> improvements
6359
6360 =item All compilation errors are true errors
6361
6362 =item Implicitly closed filehandles are safer
6363
6364 =item Behavior of list slices is more consistent
6365
6366 =item C<(\$)> prototype and C<$foo{a}>
6367
6368 =item C<goto &sub> and AUTOLOAD
6369
6370 =item C<-bareword> allowed under C<use integer>
6371
6372 =item Failures in DESTROY()
6373
6374 =item Locale bugs fixed
6375
6376 =item Memory leaks
6377
6378 =item Spurious subroutine stubs after failed subroutine calls
6379
6380 =item Taint failures under C<-U>
6381
6382 =item END blocks and the C<-c> switch
6383
6384 =item Potential to leak DATA filehandles
6385
6386 =back
6387
6388 =item New or Changed Diagnostics
6389
6390 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6391 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6392 / cannot take a count, / must be followed by a, A or Z, / must be followed
6393 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6394 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6395 passed through, /%s/ should probably be written as "%s", %s() called too
6396 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6397 argument is not a HASH or ARRAY element or slice, %s argument is not a
6398 subroutine name, %s package attribute may clash with future reserved word:
6399 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6400 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6401 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6402 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6403 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6404 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6405 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6406 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6407 weaken a nonreference, Character class [:%s:] unknown, Character class
6408 syntax [%s] belongs inside character classes, Constant is not %s reference,
6409 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6410 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6411 "local" instead of "our"?), Document contains no data, entering effective
6412 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6413 output, flock() on closed filehandle %s, Global symbol "%s" requires
6414 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6415 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6416 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6417 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6418 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6419 separator character %s in attribute list, Invalid separator character %s in
6420 subroutine attribute list, leaving effective %s failed, Lvalue subs
6421 returning %s not implemented yet, Method %s not permitted, Missing
6422 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6423 No %s specified for -%c, No package name allowed for variable %s in "our",
6424 No space allowed after -%c, no UTC offset information; assuming local time
6425 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6426 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6427 around "%s" list, Possible unintended interpolation of %s in string,
6428 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6429 instead, Premature end of script headers, Repeat count in pack overflows,
6430 Repeat count in unpack overflows, realloc() of freed memory ignored,
6431 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6432 zero-length expression, switching effective %s is not implemented, This
6433 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6434 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6435 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6436 escape \\%c passed through, Unterminated attribute parameter in attribute
6437 list, Unterminated attribute list, Unterminated attribute parameter in
6438 subroutine attribute list, Unterminated subroutine attribute list, Value of
6439 CLI symbol "%s" too long, Version number must be a constant number
6440
6441 =item New tests
6442
6443 =item Incompatible Changes
6444
6445 =over 4
6446
6447 =item Perl Source Incompatibilities
6448
6449 CHECK is a new keyword, Treatment of list slices of undef has changed,
6450 Format of $English::PERL_VERSION is different, Literals of the form
6451 C<1.2.3> parse differently, Possibly changed pseudo-random number
6452 generator, Hashing function for hash keys has changed, C<undef> fails on
6453 read only values, Close-on-exec bit may be set on pipe and socket handles,
6454 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6455 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6456 Text of some diagnostic output has changed, C<%@> has been removed,
6457 Parenthesized not() behaves like a list operator, Semantics of bareword
6458 prototype C<(*)> have changed, Semantics of bit operators may have changed
6459 on 64-bit platforms, More builtins taint their results
6460
6461 =item C Source Incompatibilities
6462
6463 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6464
6465 =item Compatible C Source API Changes
6466
6467 C<PATCHLEVEL> is now C<PERL_VERSION>
6468
6469 =item Binary Incompatibilities
6470
6471 =back
6472
6473 =item Known Problems
6474
6475 =over 4
6476
6477 =item Thread test failures
6478
6479 =item EBCDIC platforms not supported
6480
6481 =item In 64-bit HP-UX the lib/io_multihomed test may hang
6482
6483 =item NEXTSTEP 3.3 POSIX test failure
6484
6485 =item Tru64 (aka Digital UNIX, aka DEC OSF/1) lib/sdbm test failure with
6486 gcc
6487
6488 =item UNICOS/mk CC failures during Configure run
6489
6490 =item Arrow operator and arrays
6491
6492 =item Experimental features
6493
6494 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6495 pseudo-hash data type, The Compiler suite, Internal implementation of file
6496 globbing, The DB module, The regular expression code constructs:
6497
6498 =back
6499
6500 =item Obsolete Diagnostics
6501
6502 Character class syntax [: :] is reserved for future extensions, Ill-formed
6503 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6504 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6505 to mean "${$}<digit>" is deprecated
6506
6507 =item Reporting Bugs
6508
6509 =item SEE ALSO
6510
6511 =item HISTORY
6512
6513 =back
6514
6515 =head2 perl5005delta - what's new for perl5.005
6516
6517 =over 4
6518
6519 =item DESCRIPTION
6520
6521 =item About the new versioning system
6522
6523 =item Incompatible Changes
6524
6525 =over 4
6526
6527 =item WARNING:  This version is not binary compatible with Perl 5.004.
6528
6529 =item Default installation structure has changed
6530
6531 =item Perl Source Compatibility
6532
6533 =item C Source Compatibility
6534
6535 =item Binary Compatibility
6536
6537 =item Security fixes may affect compatibility
6538
6539 =item Relaxed new mandatory warnings introduced in 5.004
6540
6541 =item Licensing
6542
6543 =back
6544
6545 =item Core Changes
6546
6547 =over 4
6548
6549 =item Threads
6550
6551 =item Compiler
6552
6553 =item Regular Expressions
6554
6555 Many new and improved optimizations, Many bug fixes, New regular expression
6556 constructs, New operator for precompiled regular expressions, Other
6557 improvements, Incompatible changes
6558
6559 =item   Improved malloc()
6560
6561 =item Quicksort is internally implemented
6562
6563 =item Reliable signals
6564
6565 =item Reliable stack pointers
6566
6567 =item More generous treatment of carriage returns
6568
6569 =item Memory leaks
6570
6571 =item Better support for multiple interpreters
6572
6573 =item Behavior of local() on array and hash elements is now well-defined
6574
6575 =item C<%!> is transparently tied to the L<Errno> module
6576
6577 =item Pseudo-hashes are supported
6578
6579 =item C<EXPR foreach EXPR> is supported
6580
6581 =item Keywords can be globally overridden
6582
6583 =item C<$^E> is meaningful on Win32
6584
6585 =item C<foreach (1..1000000)> optimized
6586
6587 =item C<Foo::> can be used as implicitly quoted package name
6588
6589 =item C<exists $Foo::{Bar::}> tests existence of a package
6590
6591 =item Better locale support
6592
6593 =item Experimental support for 64-bit platforms
6594
6595 =item prototype() returns useful results on builtins
6596
6597 =item Extended support for exception handling
6598
6599 =item Re-blessing in DESTROY() supported for chaining DESTROY() methods
6600
6601 =item All C<printf> format conversions are handled internally
6602
6603 =item New C<INIT> keyword
6604
6605 =item New C<lock> keyword
6606
6607 =item New C<qr//> operator
6608
6609 =item C<our> is now a reserved word
6610
6611 =item Tied arrays are now fully supported
6612
6613 =item Tied handles support is better
6614
6615 =item 4th argument to substr
6616
6617 =item Negative LENGTH argument to splice
6618
6619 =item Magic lvalues are now more magical
6620
6621 =item <> now reads in records
6622
6623 =back
6624
6625 =item Supported Platforms
6626
6627 =over 4
6628
6629 =item New Platforms
6630
6631 =item Changes in existing support
6632
6633 =back
6634
6635 =item Modules and Pragmata
6636
6637 =over 4
6638
6639 =item New Modules
6640
6641 B, Data::Dumper, Dumpvalue, Errno, File::Spec, ExtUtils::Installed,
6642 ExtUtils::Packlist, Fatal, IPC::SysV, Test, Tie::Array, Tie::Handle,
6643 Thread, attrs, fields, re
6644
6645 =item Changes in existing modules
6646
6647 Benchmark, Carp, CGI, Fcntl, Math::Complex, Math::Trig, POSIX, DB_File,
6648 MakeMaker, CPAN, Cwd
6649
6650 =back
6651
6652 =item Utility Changes
6653
6654 =item Documentation Changes
6655
6656 =item New Diagnostics
6657
6658 Ambiguous call resolved as CORE::%s(), qualify as such or use &, Bad index
6659 while coercing array into hash, Bareword "%s" refers to nonexistent
6660 package, Can't call method "%s" on an undefined value, Can't check
6661 filesystem of script "%s" for nosuid, Can't coerce array into hash, Can't
6662 goto subroutine from an eval-string, Can't localize pseudo-hash element,
6663 Can't use %%! because Errno.pm is not available, Cannot find an opnumber
6664 for "%s", Character class syntax [. .] is reserved for future extensions,
6665 Character class syntax [: :] is reserved for future extensions, Character
6666 class syntax [= =] is reserved for future extensions, %s: Eval-group in
6667 insecure regular expression, %s: Eval-group not allowed, use re 'eval', %s:
6668 Eval-group not allowed at run time, Explicit blessing to '' (assuming
6669 package main), Illegal hex digit ignored, No such array field, No such
6670 field "%s" in variable %s of type %s, Out of memory during ridiculously
6671 large request, Range iterator outside integer range, Recursive inheritance
6672 detected while looking for method '%s' %s, Reference found where even-sized
6673 list expected, Undefined value assigned to typeglob, Use of reserved word
6674 "%s" is deprecated, perl: warning: Setting locale failed
6675
6676 =item Obsolete Diagnostics
6677
6678 Can't mktemp(), Can't write to temp file for B<-e>: %s, Cannot open
6679 temporary file, regexp too big
6680
6681 =item Configuration Changes
6682
6683 =item BUGS
6684
6685 =item SEE ALSO
6686
6687 =item HISTORY
6688
6689 =back
6690
6691 =head2 perl5004delta - what's new for perl5.004
6692
6693 =over 4
6694
6695 =item DESCRIPTION
6696
6697 =item Supported Environments
6698
6699 =item Core Changes
6700
6701 =over 4
6702
6703 =item List assignment to %ENV works
6704
6705 =item Change to "Can't locate Foo.pm in @INC" error
6706
6707 =item Compilation option: Binary compatibility with 5.003
6708
6709 =item $PERL5OPT environment variable
6710
6711 =item Limitations on B<-M>, B<-m>, and B<-T> options
6712
6713 =item More precise warnings
6714
6715 =item Deprecated: Inherited C<AUTOLOAD> for non-methods
6716
6717 =item Previously deprecated %OVERLOAD is no longer usable
6718
6719 =item Subroutine arguments created only when they're modified
6720
6721 =item Group vector changeable with C<$)>
6722
6723 =item Fixed parsing of $$<digit>, &$<digit>, etc.
6724
6725 =item Fixed localization of $<digit>, $&, etc.
6726
6727 =item No resetting of $. on implicit close
6728
6729 =item C<wantarray> may return undef
6730
6731 =item C<eval EXPR> determines value of EXPR in scalar context
6732
6733 =item Changes to tainting checks
6734
6735 No glob() or <*>, No spawning if tainted $CDPATH, $ENV, $BASH_ENV, No
6736 spawning if tainted $TERM doesn't look like a terminal name
6737
6738 =item New Opcode module and revised Safe module
6739
6740 =item Embedding improvements
6741
6742 =item Internal change: FileHandle class based on IO::* classes
6743
6744 =item Internal change: PerlIO abstraction interface
6745
6746 =item New and changed syntax
6747
6748 $coderef->(PARAMS)
6749
6750 =item New and changed builtin constants
6751
6752 __PACKAGE__
6753
6754 =item New and changed builtin variables
6755
6756 $^E, $^H, $^M
6757
6758 =item New and changed builtin functions
6759
6760 delete on slices, flock, printf and sprintf, keys as an lvalue, my() in
6761 Control Structures, pack() and unpack(), sysseek(), use VERSION, use Module
6762 VERSION LIST, prototype(FUNCTION), srand, $_ as Default, C<m//gc> does not
6763 reset search position on failure, C<m//x> ignores whitespace before ?*+{},
6764 nested C<sub{}> closures work now, formats work right on changing lexicals
6765
6766 =item New builtin methods
6767
6768 isa(CLASS), can(METHOD), VERSION( [NEED] )
6769
6770 =item TIEHANDLE now supported
6771
6772 TIEHANDLE classname, LIST, PRINT this, LIST, PRINTF this, LIST, READ this
6773 LIST, READLINE this, GETC this, DESTROY this
6774
6775 =item Malloc enhancements
6776
6777 -DPERL_EMERGENCY_SBRK, -DPACK_MALLOC, -DTWO_POT_OPTIMIZE
6778
6779 =item Miscellaneous efficiency enhancements
6780
6781 =back
6782
6783 =item Support for More Operating Systems
6784
6785 =over 4
6786
6787 =item Win32
6788
6789 =item Plan 9
6790
6791 =item QNX
6792
6793 =item AmigaOS
6794
6795 =back
6796
6797 =item Pragmata
6798
6799 use autouse MODULE => qw(sub1 sub2 sub3), use blib, use blib 'dir', use
6800 constant NAME => VALUE, use locale, use ops, use vmsish
6801
6802 =item Modules
6803
6804 =over 4
6805
6806 =item Required Updates
6807
6808 =item Installation directories
6809
6810 =item Module information summary
6811
6812 =item Fcntl
6813
6814 =item IO
6815
6816 =item Math::Complex
6817
6818 =item Math::Trig
6819
6820 =item DB_File
6821
6822 =item Net::Ping
6823
6824 =item Object-oriented overrides for builtin operators
6825
6826 =back
6827
6828 =item Utility Changes
6829
6830 =over 4
6831
6832 =item pod2html
6833
6834 Sends converted HTML to standard output
6835
6836 =item xsubpp
6837
6838 C<void> XSUBs now default to returning nothing
6839
6840 =back
6841
6842 =item C Language API Changes
6843
6844 C<gv_fetchmethod> and C<perl_call_sv>, C<perl_eval_pv>, Extended API for
6845 manipulating hashes
6846
6847 =item Documentation Changes
6848
6849 L<perldelta>, L<perlfaq>, L<perllocale>, L<perltoot>, L<perlapio>,
6850 L<perlmodlib>, L<perldebug>, L<perlsec>
6851
6852 =item New Diagnostics
6853
6854 "my" variable %s masks earlier declaration in same scope, %s argument is
6855 not a HASH element or slice, Allocation too large: %lx, Allocation too
6856 large, Applying %s to %s will act on scalar(%s), Attempt to free
6857 nonexistent shared string, Attempt to use reference as lvalue in substr,
6858 Bareword "%s" refers to nonexistent package, Can't redefine active sort
6859 subroutine %s, Can't use bareword ("%s") as %s ref while "strict refs" in
6860 use, Cannot resolve method `%s' overloading `%s' in package `%s', Constant
6861 subroutine %s redefined, Constant subroutine %s undefined, Copy method did
6862 not return a reference, Died, Exiting pseudo-block via %s, Identifier too
6863 long, Illegal character %s (carriage return), Illegal switch in PERL5OPT:
6864 %s, Integer overflow in hex number, Integer overflow in octal number,
6865 internal error: glob failed, Invalid conversion in %s: "%s", Invalid type
6866 in pack: '%s', Invalid type in unpack: '%s', Name "%s::%s" used only once:
6867 possible typo, Null picture in formline, Offset outside string, Out of
6868 memory!, Out of memory during request for %s, panic: frexp, Possible
6869 attempt to put comments in qw() list, Possible attempt to separate words
6870 with commas, Scalar value @%s{%s} better written as $%s{%s}, Stub found
6871 while resolving method `%s' overloading `%s' in %s, Too late for "B<-T>"
6872 option, untie attempted while %d inner references still exist, Unrecognized
6873 character %s, Unsupported function fork, Use of "$$<digit>" to mean
6874 "${$}<digit>" is deprecated, Value of %s can be "0"; test with defined(),
6875 Variable "%s" may be unavailable, Variable "%s" will not stay shared,
6876 Warning: something's wrong, Ill-formed logical name |%s| in prime_env_iter,
6877 Got an error from DosAllocMem, Malformed PERLLIB_PREFIX, PERL_SH_DIR too
6878 long, Process terminated by SIG%s
6879
6880 =item BUGS
6881
6882 =item SEE ALSO
6883
6884 =item HISTORY
6885
6886 =back
6887
6888 =head2 perlaix, README.aix - Perl version 5 on IBM Unix (AIX) systems
6889
6890 =over 4
6891
6892 =item DESCRIPTION
6893
6894 =over 4
6895
6896 =item Compiling Perl 5 on AIX
6897
6898 =item OS level
6899
6900 =item Building Dynamic Extensions on AIX
6901
6902 =item The IBM ANSI C Compiler
6903
6904 =item Using GNU's gcc for building perl
6905
6906 =item Using Large Files with Perl
6907
6908 =item Threaded Perl
6909
6910 =item 64-bit Perl
6911
6912 =item AIX 4.2 and extensions using C++ with statics
6913
6914 =back
6915
6916 =item AUTHOR
6917
6918 =item DATE
6919
6920 =back
6921
6922 =head2 perlapollo, README.apollo - Perl version 5 on Apollo DomainOS
6923
6924 =over 4
6925
6926 =item DESCRIPTION
6927
6928 =item AUTHOR
6929
6930 =back
6931
6932 =head2 perlamiga - Perl under Amiga OS
6933
6934 =over 4
6935
6936 =item SYNOPSIS
6937
6938 =back
6939
6940 =over 4
6941
6942 =item DESCRIPTION
6943
6944 =over 4
6945
6946 =item Prerequisites for Compiling Perl on AmigaOS
6947
6948 B<Unix emulation for AmigaOS: ixemul.library>, B<Version of Amiga OS>
6949
6950 =item Starting Perl programs under AmigaOS
6951
6952 =item Shortcomings of Perl under AmigaOS
6953
6954 =back
6955
6956 =item INSTALLATION
6957
6958 =item Accessing documentation
6959
6960 =over 4
6961
6962 =item Manpages for Perl on AmigaOS
6963
6964 =item Perl HTML Documentation on AmigaOS
6965
6966 =item Perl GNU Info Files on AmigaOS
6967
6968 =item Perl LaTeX Documentation on AmigaOS
6969
6970 =back
6971
6972 =item BUILDING PERL ON AMIGAOS
6973
6974 =over 4
6975
6976 =item Build Prerequisites for Perl on AmigaOS
6977
6978 =item Getting the Perl Source for AmigaOS
6979
6980 =item Making Perl on AmigaOS
6981
6982 =item Testing Perl on AmigaOS
6983
6984 =item Installing the built Perl on AmigaOS
6985
6986 =back
6987
6988 =item AUTHORS
6989
6990 =item SEE ALSO
6991
6992 =back
6993
6994 =head2 perlbeos, README.beos - Perl version 5 on BeOS
6995
6996 =over 4
6997
6998 =item DESCRIPTION
6999
7000 =over 4
7001
7002 =item General Issues with Perl on BeOS
7003
7004 =item BeOS Release-specific Notes
7005
7006 R4 x86, R4 PPC
7007
7008 =item Contact Information
7009
7010 =item Update 2002-03-02
7011
7012 =back
7013
7014 =back
7015
7016 =head2 perlbs2000, README.BS2000 - building and installing Perl for BS2000.
7017
7018 =over 4
7019
7020 =item SYNOPSIS
7021
7022 =item DESCRIPTION
7023
7024 =over 4
7025
7026 =item gzip on BS2000
7027
7028 =item bison on BS2000
7029
7030 =item Unpacking Perl Distribution on BS2000
7031
7032 =item Compiling Perl on BS2000
7033
7034 =item Testing Perl on BS2000
7035
7036 =item Installing Perl on BS2000
7037
7038 =item Using Perl in the Posix-Shell of BS2000
7039
7040 =item Using Perl in "native" BS2000
7041
7042 =item Floating point anomalies on BS2000
7043
7044 =back
7045
7046 =item AUTHORS
7047
7048 =item SEE ALSO
7049
7050 =over 4
7051
7052 =item Mailing list
7053
7054 =back
7055
7056 =item HISTORY
7057
7058 =back
7059
7060 =over 4
7061
7062 =item Name
7063
7064 =item Description
7065
7066 =item Build
7067
7068 =over 4
7069
7070 =item Tools & SDK
7071
7072 =item Make
7073
7074 =back
7075
7076 =item Acknowledgements
7077
7078 =item Author
7079
7080 =back
7081
7082 =head2 perlcygwin, README.cygwin - Perl for Cygwin
7083
7084 =over 4
7085
7086 =item SYNOPSIS
7087
7088 =item PREREQUISITES FOR COMPILING PERL ON CYGWIN
7089
7090 =over 4
7091
7092 =item Cygwin = GNU+Cygnus+Windows (Don't leave UNIX without it)
7093
7094 =item Cygwin Configuration
7095
7096 C<PATH>, I<nroff>, Permissions
7097
7098 =back
7099
7100 =item CONFIGURE PERL ON CYGWIN
7101
7102 =over 4
7103
7104 =item Stripping Perl Binaries on Cygwin
7105
7106 =item Optional Libraries for Perl on Cygwin
7107
7108 C<-lcrypt>, C<-lgdbm> (C<use GDBM_File>), C<-ldb> (C<use DB_File>),
7109 C<-lcygipc> (C<use IPC::SysV>)
7110
7111 =item Configure-time Options for Perl on Cygwin
7112
7113 C<-Uusedl>, C<-Uusemymalloc>, C<-Uuseperlio>, C<-Dusemultiplicity>,
7114 C<-Duse64bitint>, C<-Duselongdouble>, C<-Dusethreads>, C<-Duselargefiles>,
7115 C<-Dmksymlinks>
7116
7117 =item Suspicious Warnings on Cygwin
7118
7119 I<dlsym()>, Win9x and C<d_eofnblk>, Compiler/Preprocessor defines
7120
7121 =back
7122
7123 =item MAKE ON CYGWIN
7124
7125 =over 4
7126
7127 =item Warnings on Cygwin
7128
7129 =item ld2 on Cygwin
7130
7131 =back
7132
7133 =item TEST ON CYGWIN
7134
7135 =over 4
7136
7137 =item File Permissions on Cygwin
7138
7139 =item Script Portability on Cygwin
7140
7141 Pathnames, Text/Binary, F<.exe>, chown(), Miscellaneous
7142
7143 =back
7144
7145 =item INSTALL PERL ON CYGWIN
7146
7147 =item MANIFEST ON CYGWIN
7148
7149 Documentation, Build, Configure, Make, Install, Tests, Compiled Perl
7150 Source, Compiled Module Source, Perl Modules/Scripts
7151
7152 =item BUGS ON CYGWIN
7153
7154 =item AUTHORS
7155
7156 =item HISTORY
7157
7158 =back
7159
7160 =head2 perldgux - Perl under DG/UX.
7161
7162 =over 4
7163
7164 =item SYNOPSIS
7165
7166 =back
7167
7168 =over 4
7169
7170 =item DESCRIPTION
7171
7172 =item BUILDING PERL ON DG/UX
7173
7174 =over 4
7175
7176 =item Non-threaded Perl on DG/UX
7177
7178 =item Threaded Perl on DG/UX
7179
7180 =item Testing Perl on DG/UX
7181
7182 =item Installing the built perl on DG/UX
7183
7184 =back
7185
7186 =item AUTHOR
7187
7188 =item SEE ALSO
7189
7190 =back
7191
7192 =head2 perlepoc, README.epoc - Perl for EPOC
7193
7194 =over 4
7195
7196 =item SYNOPSIS
7197
7198 =item INTRODUCTION
7199
7200 =item INSTALLING PERL ON EPOC
7201
7202 =item STARTING PERL ON EPOC
7203
7204 =over 4
7205
7206 =item Editors on Epoc
7207
7208 =item Features of Perl on Epoc
7209
7210 =item Restrictions of Perl on Epoc
7211
7212 =item Compiling Perl 5 on the EPOC cross compiling environment
7213
7214 =back
7215
7216 =item SUPPORT STATUS OF PERL ON EPOC
7217
7218 =item AUTHOR
7219
7220 =item LAST UPDATE
7221
7222 =back
7223
7224 =head2 perlhpux, README.hpux - Perl version 5 on Hewlett-Packard Unix
7225 (HP-UX) systems
7226
7227 =over 4
7228
7229 =item DESCRIPTION
7230
7231 =over 4
7232
7233 =item Using perl as shipped with HP-UX
7234
7235 =item Compiling Perl 5 on HP-UX
7236
7237 =item PA-RISC
7238
7239 =item PA-RISC 1.0
7240
7241 =item PA-RISC 1.1
7242
7243 =item PA-RISC 2.0
7244
7245 =item Itanium
7246
7247 =item Portability Between PA-RISC Versions
7248
7249 =item Itanium Processor Family and HP-UX
7250
7251 =item Building Dynamic Extensions on HP-UX
7252
7253 =item The HP ANSI C Compiler
7254
7255 =item The GNU C Compiler
7256
7257 =item Using Large Files with Perl on HP-UX
7258
7259 =item Threaded Perl on HP-UX
7260
7261 =item 64-bit Perl on HP-UX
7262
7263 =item GDBM and Threads on HP-UX
7264
7265 =item NFS filesystems and utime(2) on HP-UX
7266
7267 =item perl -P and // and HP-UX
7268
7269 =item HP-UX Kernel Parameters (maxdsiz) for Compiling Perl
7270
7271 =back
7272
7273 =item nss_delete core dump from op/pwent or op/grent
7274
7275 =item AUTHOR
7276
7277 =item DATE
7278
7279 =back
7280
7281 =head2 perlhurd, README.hurd - Perl version 5 on Hurd
7282
7283 =over 4
7284
7285 =item DESCRIPTION
7286
7287 =over 4
7288
7289 =item Known Problems with Perl on Hurd 
7290
7291 =back
7292
7293 =item AUTHOR
7294
7295 =back
7296
7297 =head2 perlmachten, README.machten - Perl version 5 on Power MachTen
7298 systems
7299
7300 =over 4
7301
7302 =item DESCRIPTION
7303
7304 =over 4
7305
7306 =item Compiling Perl 5 on MachTen
7307
7308 =item Failures during C<make test> on MachTen
7309
7310 op/lexassign.t, pragma/warnings.t
7311
7312 =item Building external modules on MachTen
7313
7314 =back
7315
7316 =item AUTHOR
7317
7318 =item DATE
7319
7320 =back
7321
7322 =head2 perlmacos, README.macos - Perl under Mac OS (Classic)
7323
7324 =over 4
7325
7326 =item SYNOPSIS
7327
7328 =item DESCRIPTION
7329
7330 =item AUTHOR
7331
7332 =item DATE
7333
7334 =back
7335
7336 =head2 perlmint, README.mint - Perl version 5 on Atari MiNT
7337
7338 =over 4
7339
7340 =item DESCRIPTION
7341
7342 =item Known problems with Perl on MiNT
7343
7344 =item AUTHOR
7345
7346 =back
7347
7348 =head2 perlmpeix, README.mpeix - Perl/iX for HP e3000 MPE
7349
7350 =over 4
7351
7352 =item SYNOPSIS
7353
7354 =item NOTE
7355
7356 =item Binary distribution from HP
7357
7358 =item What's New in Perl for MPE/iX
7359
7360 =item Welcome to Perl/iX
7361
7362 =item System Requirements for Perl/iX
7363
7364 =item How to Obtain Perl/iX
7365
7366 =item Perl/iX Distribution Contents Highlights
7367
7368 README, INSTALL, LIBSHP3K, PERL, .cpan/, lib/, man/,
7369 public_html/feedback.cgi, src/perl-5.6.0-mpe
7370
7371 =item How to Compile Perl/iX
7372
7373  4,  6
7374
7375 =item Getting Started with Perl/iX
7376
7377 =item MPE/iX Implementation Considerations
7378
7379 =item Known Perl/iX Bugs Under Investigation
7380
7381 =item Perl/iX To-Do List
7382
7383 =item Perl/iX Change History
7384
7385 =item AUTHOR
7386
7387 =item Name
7388
7389 =item Description
7390
7391 =item Build
7392
7393 =over 4
7394
7395 =item Tools & SDK
7396
7397 =item Setup
7398
7399 Buildtype.bat, SetNWBld.bat, MPKBuild.bat
7400
7401 =item Make
7402
7403 =item Interpreter
7404
7405 =item Extensions
7406
7407 =back
7408
7409 =item Install
7410
7411 =item Build new extensions
7412
7413 =item Known Issues
7414
7415 =item Acknowledgements
7416
7417 =item Authors
7418
7419 =item Date
7420
7421 =back
7422
7423 =head2 perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
7424
7425 =over 4
7426
7427 =item SYNOPSIS
7428
7429 =back
7430
7431 =over 4
7432
7433 =item DESCRIPTION
7434
7435 =over 4
7436
7437 =item Target
7438
7439 =item Other OSes
7440
7441 =item Prerequisites
7442
7443 EMX, RSX, HPFS, pdksh
7444
7445 =item Starting Perl programs under OS/2 (and DOS and...)
7446
7447 =item Starting OS/2 (and DOS) programs under Perl
7448
7449 =back
7450
7451 =item Frequently asked questions
7452
7453 =over 4
7454
7455 =item "It does not work"
7456
7457 =item I cannot run external programs
7458
7459 =item I cannot embed perl into my program, or use F<perl.dll> from my
7460 program. 
7461
7462 Is your program EMX-compiled with C<-Zmt -Zcrtdll>?, Did you use
7463 L<ExtUtils::Embed>?
7464
7465 =item C<``> and pipe-C<open> do not work under DOS.
7466
7467 =item Cannot start C<find.exe "pattern" file>
7468
7469 =back
7470
7471 =item INSTALLATION
7472
7473 =over 4
7474
7475 =item Automatic binary installation
7476
7477 C<PERL_BADLANG>, C<PERL_BADFREE>, F<Config.pm>
7478
7479 =item Manual binary installation
7480
7481 Perl VIO and PM executables (dynamically linked), Perl_ VIO executable
7482 (statically linked), Executables for Perl utilities, Main Perl library,
7483 Additional Perl modules, Tools to compile Perl modules, Manpages for Perl
7484 and utilities, Manpages for Perl modules, Source for Perl documentation,
7485 Perl manual in F<.INF> format, Pdksh
7486
7487 =item B<Warning>
7488
7489 =back
7490
7491 =item Accessing documentation
7492
7493 =over 4
7494
7495 =item OS/2 F<.INF> file
7496
7497 =item Plain text
7498
7499 =item Manpages
7500
7501 =item HTML
7502
7503 =item GNU C<info> files
7504
7505 =item F<PDF> files
7506
7507 =item C<LaTeX> docs
7508
7509 =back
7510
7511 =item BUILD
7512
7513 =over 4
7514
7515 =item The short story
7516
7517 =item Prerequisites
7518
7519 =item Getting perl source
7520
7521 =item Application of the patches
7522
7523 =item Hand-editing
7524
7525 =item Making
7526
7527 =item Testing
7528
7529 A lot of C<bad free>, Process terminated by SIGTERM/SIGINT, F<op/fs.t>,
7530 F<op/stat.t>
7531
7532 =item Installing the built perl
7533
7534 =item C<a.out>-style build
7535
7536 =back
7537
7538 =item Build FAQ
7539
7540 =over 4
7541
7542 =item Some C</> became C<\> in pdksh.
7543
7544 =item C<'errno'> - unresolved external
7545
7546 =item Problems with tr or sed
7547
7548 =item Some problem (forget which ;-)
7549
7550 =item Library ... not found
7551
7552 =item Segfault in make
7553
7554 =item op/sprintf test failure
7555
7556 =back
7557
7558 =item Specific (mis)features of OS/2 port
7559
7560 =over 4
7561
7562 =item C<setpriority>, C<getpriority>
7563
7564 =item C<system()>
7565
7566 =item C<extproc> on the first line
7567
7568 =item Additional modules:
7569
7570 =item Prebuilt methods:
7571
7572 C<File::Copy::syscopy>, C<DynaLoader::mod2fname>,  C<Cwd::current_drive()>,
7573  C<Cwd::sys_chdir(name)>,  C<Cwd::change_drive(name)>, 
7574 C<Cwd::sys_is_absolute(name)>,  C<Cwd::sys_is_rooted(name)>, 
7575 C<Cwd::sys_is_relative(name)>,  C<Cwd::sys_cwd(name)>, 
7576 C<Cwd::sys_abspath(name, dir)>,  C<Cwd::extLibpath([type])>, 
7577 C<Cwd::extLibpath_set( path [, type ] )>,
7578 C<OS2::Error(do_harderror,do_exception)>, C<OS2::Errors2Drive(drive)>,
7579 OS2::SysInfo(), OS2::BootDrive(), C<OS2::MorphPM(serve)>,
7580 C<OS2::UnMorphPM(serve)>, C<OS2::Serve_Messages(force)>,
7581 C<OS2::Process_Messages(force [, cnt])>, C<OS2::_control87(new,mask)>,
7582 OS2::get_control87(), C<OS2::set_control87_em(new=MCW_EM,mask=MCW_EM)>
7583
7584 =item Prebuilt variables:
7585
7586 $OS2::emx_rev, $OS2::emx_env, $OS2::os_ver
7587
7588 =item Misfeatures
7589
7590 =item Modifications
7591
7592 C<popen>, C<tmpnam>, C<tmpfile>, C<ctermid>, C<stat>, C<mkdir>, C<rmdir>,
7593 C<flock>
7594
7595 =item Identifying DLLs
7596
7597 =item Centralized management of resources
7598
7599 C<HAB>, C<HMQ>
7600
7601 =back
7602
7603 =item Perl flavors
7604
7605 =over 4
7606
7607 =item F<perl.exe>
7608
7609 =item F<perl_.exe>
7610
7611 =item F<perl__.exe>
7612
7613 =item F<perl___.exe>
7614
7615 =item Why strange names?
7616
7617 =item Why dynamic linking?
7618
7619 =item Why chimera build?
7620
7621 =back
7622
7623 =item ENVIRONMENT
7624
7625 =over 4
7626
7627 =item C<PERLLIB_PREFIX>
7628
7629 =item C<PERL_BADLANG>
7630
7631 =item C<PERL_BADFREE>
7632
7633 =item C<PERL_SH_DIR>
7634
7635 =item C<USE_PERL_FLOCK>
7636
7637 =item C<TMP> or C<TEMP>
7638
7639 =back
7640
7641 =item Evolution
7642
7643 =over 4
7644
7645 =item Priorities
7646
7647 =item DLL name mangling: pre 5.6.2
7648
7649 =item DLL name mangling: 5.6.2 and beyond
7650
7651 Global DLLs, specific DLLs, C<BEGINLIBPATH> and C<ENDLIBPATH>, F<.> from
7652 C<LIBPATH>
7653
7654 =item DLL forwarder generation
7655
7656 =item Threading
7657
7658 =item Calls to external programs
7659
7660 =item Memory allocation
7661
7662 =item Threads
7663
7664 C<COND_WAIT>, F<os2.c>
7665
7666 =back
7667
7668 =item BUGS
7669
7670 =back
7671
7672 =over 4
7673
7674 =item AUTHOR
7675
7676 =item SEE ALSO
7677
7678 =back
7679
7680 =head2 perlos390, README.os390 - building and installing Perl for OS/390
7681 and z/OS
7682
7683 =over 4
7684
7685 =item SYNOPSIS
7686
7687 =item DESCRIPTION
7688
7689 =over 4
7690
7691 =item Tools
7692
7693 =item Unpacking Perl distribution on OS/390
7694
7695 =item Setup and utilities for Perl on OS/390
7696
7697 =item Configure Perl on OS/390
7698
7699 =item Build, Test, Install Perl on OS/390
7700
7701 =item Build Anomalies with Perl on OS/390
7702
7703 =item Testing Anomalies with Perl on OS/390
7704
7705 =item Installation Anomalies with Perl on OS/390
7706
7707 =item Usage Hints for Perl on OS/390
7708
7709 =item Floating Point Anomalies with Perl on OS/390
7710
7711 =item Modules and Extensions for Perl on OS/390
7712
7713 =back
7714
7715 =item AUTHORS
7716
7717 =item SEE ALSO
7718
7719 =over 4
7720
7721 =item Mailing list for Perl on OS/390
7722
7723 =back
7724
7725 =item HISTORY
7726
7727 =back
7728
7729 =head2 perlqnx, README.qnx - Perl version 5 on QNX
7730
7731 =over 4
7732
7733 =item DESCRIPTION
7734
7735 =over 4
7736
7737 =item Required Software for Compiling Perl on QNX4
7738
7739 /bin/sh, ar, nm, cpp, make
7740
7741 =item Outstanding Issues with Perl on QNX4
7742
7743 =item QNX auxiliary files
7744
7745 qnx/ar, qnx/cpp
7746
7747 =item Outstanding issues with perl under QNX6
7748
7749 =back
7750
7751 =item AUTHOR
7752
7753 =back
7754
7755 =head2 perlplan9 - Plan 9-specific documentation for Perl
7756
7757 =over 4
7758
7759 =item DESCRIPTION
7760
7761 =over 4
7762
7763 =item Invoking Perl
7764
7765 =item What's in Plan 9 Perl
7766
7767 =item What's not in Plan 9 Perl
7768
7769 =item Perl5 Functions not currently supported in Plan 9 Perl
7770
7771 =item Signals in Plan 9 Perl
7772
7773 =back
7774
7775 =item COMPILING AND INSTALLING PERL ON PLAN 9
7776
7777 =over 4
7778
7779 =item Installing Perl Documentation on Plan 9
7780
7781 =back
7782
7783 =item BUGS
7784
7785 =item Revision date
7786
7787 =item AUTHOR
7788
7789 =back
7790
7791 =head2 perlsolaris, README.solaris - Perl version 5 on Solaris systems
7792
7793 =over 4
7794
7795 =item DESCRIPTION
7796
7797 =over 4
7798
7799 =item Solaris Version Numbers.
7800
7801 =back
7802
7803 =item RESOURCES
7804
7805 Solaris FAQ, Precompiled Binaries, Solaris Documentation
7806
7807 =item SETTING UP
7808
7809 =over 4
7810
7811 =item File Extraction Problems on Solaris.
7812
7813 =item Compiler and Related Tools on Solaris.
7814
7815 =item Environment for Compiling Perl on Solaris
7816
7817 =back
7818
7819 =item RUN CONFIGURE.
7820
7821 =over 4
7822
7823 =item 64-bit Issues with Perl on Solaris.
7824
7825 =item Threads in Perl on Solaris.
7826
7827 =item Malloc Issues with Perl on Solaris.
7828
7829 =back
7830
7831 =item MAKE PROBLEMS.
7832
7833 Dynamic Loading Problems With GNU as and GNU ld, ld.so.1: ./perl: fatal:
7834 relocation error:, dlopen: stub interception failed, #error "No
7835 DATAMODEL_NATIVE specified", sh: ar: not found
7836
7837 =item MAKE TEST
7838
7839 =over 4
7840
7841 =item op/stat.t test 4 in Solaris
7842
7843 =item nss_delete core dump from op/pwent or op/grent
7844
7845 =back
7846
7847 =item PREBUILT BINARIES OF PERL FOR SOLARIS.
7848
7849 =item RUNTIME ISSUES FOR PERL ON SOLARIS.
7850
7851 =over 4
7852
7853 =item Limits on Numbers of Open Files on Solaris.
7854
7855 =back
7856
7857 =item SOLARIS-SPECIFIC MODULES.
7858
7859 =item SOLARIS-SPECIFIC PROBLEMS WITH MODULES.
7860
7861 =over 4
7862
7863 =item Proc::ProcessTable on Solaris
7864
7865 =item BSD::Resource on Solaris
7866
7867 =item Net::SSLeay on Solaris
7868
7869 =back
7870
7871 =item AUTHOR
7872
7873 =item LAST MODIFIED
7874
7875 =back
7876
7877 =head2 perltru64, README.tru64 - Perl version 5 on Tru64 (formerly known as
7878 Digital UNIX formerly known as DEC OSF/1) systems
7879
7880 =over 4
7881
7882 =item DESCRIPTION
7883
7884 =over 4
7885
7886 =item Compiling Perl 5 on Tru64
7887
7888 =item Using Large Files with Perl on Tru64
7889
7890 =item Threaded Perl on Tru64
7891
7892 =item Long Doubles on Tru64
7893
7894 =item 64-bit Perl on Tru64
7895
7896 =item Warnings about floating-point overflow when compiling Perl on Tru64
7897
7898 =back
7899
7900 =item Testing Perl on Tru64
7901
7902 =item ext/ODBM_File/odbm Test Failing With Static Builds
7903
7904 =item AUTHOR
7905
7906 =back
7907
7908 =head2 perluts - Perl under UTS
7909
7910 =over 4
7911
7912 =item SYNOPSIS
7913
7914 =item DESCRIPTION
7915
7916 =item BUILDING PERL ON UTS
7917
7918 =item Installing the built perl on UTS
7919
7920 =item AUTHOR
7921
7922 =back
7923
7924 =head2 perlvmesa, README.vmesa - building and installing Perl for VM/ESA.
7925
7926 =over 4
7927
7928 =item SYNOPSIS
7929
7930 =item DESCRIPTION
7931
7932 =over 4
7933
7934 =item Unpacking Perl Distribution on VM/ESA
7935
7936 =item Setup Perl and utilities on VM/ESA
7937
7938 =item Configure Perl on VM/ESA
7939
7940 =item Testing Anomalies of Perl on VM/ESA
7941
7942 =item Usage Hints for Perl on VM/ESA
7943
7944 =back
7945
7946 =item AUTHORS
7947
7948 =item SEE ALSO
7949
7950 =over 4
7951
7952 =item Mailing list for Perl on VM/ESA
7953
7954 =back
7955
7956 =back
7957
7958 =head2 perlvms - VMS-specific documentation for Perl
7959
7960 =over 4
7961
7962 =item DESCRIPTION
7963
7964 =item Installation
7965
7966 =item Organization of Perl Images
7967
7968 =over 4
7969
7970 =item Core Images
7971
7972 =item Perl Extensions
7973
7974 =item Installing static extensions
7975
7976 =item Installing dynamic extensions
7977
7978 =back
7979
7980 =item File specifications
7981
7982 =over 4
7983
7984 =item Syntax
7985
7986 =item Wildcard expansion
7987
7988 =item Pipes
7989
7990 =back
7991
7992 =item PERL5LIB and PERLLIB
7993
7994 =item Command line
7995
7996 =over 4
7997
7998 =item I/O redirection and backgrounding
7999
8000 =item Command line switches
8001
8002 -i, -S, -u
8003
8004 =back
8005
8006 =item Perl functions
8007
8008 File tests, backticks, binmode FILEHANDLE, crypt PLAINTEXT, USER, dump,
8009 exec LIST, fork, getpwent, getpwnam, getpwuid, gmtime, kill, qx//, select
8010 (system call), stat EXPR, system LIST, time, times, unlink LIST, utime
8011 LIST, waitpid PID,FLAGS
8012
8013 =item Perl variables
8014
8015 %ENV, CRTL_ENV, CLISYM_[LOCAL], Any other string, $!, $^E, $?, $|
8016
8017 =item Standard modules with VMS-specific differences
8018
8019 =over 4
8020
8021 =item SDBM_File
8022
8023 =back
8024
8025 =item Revision date
8026
8027 =item AUTHOR
8028
8029 =back
8030
8031 =head2 perlvos, README.vos - Perl for Stratus VOS
8032
8033 =over 4
8034
8035 =item SYNOPSIS
8036
8037 =over 4
8038
8039 =item Multiple methods to build perl for VOS
8040
8041 =item Stratus POSIX Support
8042
8043 =back
8044
8045 =item INSTALLING PERL IN VOS
8046
8047 =over 4
8048
8049 =item Compiling Perl 5 on VOS
8050
8051 =item Installing Perl 5 on VOS
8052
8053 =back
8054
8055 =item USING PERL IN VOS
8056
8057 =over 4
8058
8059 =item Unimplemented Features of Perl on VOS
8060
8061 =item Restrictions of Perl on VOS
8062
8063 =back
8064
8065 =item SUPPORT STATUS
8066
8067 =item AUTHOR
8068
8069 =item LAST UPDATE
8070
8071 =back
8072
8073 =head1 PRAGMA DOCUMENTATION
8074
8075 =head2 attrs - set/get attributes of a subroutine (deprecated)
8076
8077 =over 4
8078
8079 =item SYNOPSIS
8080
8081 =item DESCRIPTION
8082
8083 method, locked
8084
8085 =back
8086
8087 =head2 re - Perl pragma to alter regular expression behaviour
8088
8089 =over 4
8090
8091 =item SYNOPSIS
8092
8093 =item DESCRIPTION
8094
8095 =back
8096
8097 =head2 threadshared::queue, threads::shared::queue - thread-safe queues
8098
8099 =over 4
8100
8101 =item SYNOPSIS
8102
8103 =item DESCRIPTION
8104
8105 =item FUNCTIONS AND METHODS
8106
8107 new, enqueue LIST, dequeue, dequeue_nb, pending
8108
8109 =item SEE ALSO
8110
8111 =back
8112
8113 =head2 threadshared::semaphore, threads::shared::semaphore - thread-safe
8114 semaphores
8115
8116 =over 4
8117
8118 =item SYNOPSIS
8119
8120 =item DESCRIPTION
8121
8122 =item FUNCTIONS AND METHODS
8123
8124 new, new NUMBER, down, down NUMBER, up, up NUMBER
8125
8126 =back
8127
8128 =head2 threadshared::shared, threads::shared - Perl extension for sharing
8129 data structures between threads
8130
8131 =over 4
8132
8133 =item SYNOPSIS
8134
8135 =item DESCRIPTION
8136
8137 =item EXPORT
8138
8139 =item FUNCTIONS
8140
8141 share VARIABLE, lock VARIABLE, unlock VARIABLE, cond_wait VARIABLE,
8142 cond_signal VARIABLE, cond_broadcast VARIABLE
8143
8144 =item NOTES
8145
8146 =item BUGS
8147
8148 =item AUTHOR
8149
8150 =item SEE ALSO
8151
8152 =back
8153
8154 =head2 threads - Perl extension allowing use of interpreter based threads
8155 from perl
8156
8157 =over 4
8158
8159 =item SYNOPSIS
8160
8161 =item DESCRIPTION
8162
8163 $thread = threads->create(function, LIST), $thread->join, $thread->detach,
8164 threads->self, $thread->tid, threads->yield();, threads->list();, async
8165 BLOCK;
8166
8167 =item WARNINGS
8168
8169 Cleanup skipped %d active threads
8170
8171 =item BUGS / TODO
8172
8173 Parent-Child threads, tid is I32, Returning objects, PERL_OLD_SIGNALS are
8174 not threadsafe, will not be
8175
8176 =item AUTHOR and COPYRIGHT
8177
8178 =item SEE ALSO
8179
8180 =back
8181
8182 =head2 attributes - get/set subroutine or variable attributes
8183
8184 =over 4
8185
8186 =item SYNOPSIS
8187
8188 =item DESCRIPTION
8189
8190 =over 4
8191
8192 =item Built-in Attributes
8193
8194 locked, method, lvalue
8195
8196 =item Available Subroutines
8197
8198 get, reftype
8199
8200 =item Package-specific Attribute Handling
8201
8202 FETCH_I<type>_ATTRIBUTES, MODIFY_I<type>_ATTRIBUTES
8203
8204 =item Syntax of Attribute Lists
8205
8206 =back
8207
8208 =item EXPORTS
8209
8210 =over 4
8211
8212 =item Default exports
8213
8214 =item Available exports
8215
8216 =item Export tags defined
8217
8218 =back
8219
8220 =item EXAMPLES
8221
8222 =item SEE ALSO
8223
8224 =back
8225
8226 =head2 attrs - set/get attributes of a subroutine (deprecated)
8227
8228 =over 4
8229
8230 =item SYNOPSIS
8231
8232 =item DESCRIPTION
8233
8234 method, locked
8235
8236 =back
8237
8238 =head2 autouse - postpone load of modules until a function is used
8239
8240 =over 4
8241
8242 =item SYNOPSIS
8243
8244 =item DESCRIPTION
8245
8246 =item WARNING
8247
8248 =item AUTHOR
8249
8250 =item SEE ALSO
8251
8252 =back
8253
8254 =head2 base - Establish IS-A relationship with base class at compile time
8255
8256 =over 4
8257
8258 =item SYNOPSIS
8259
8260 =item DESCRIPTION
8261
8262 =item HISTORY
8263
8264 =item SEE ALSO
8265
8266 =back
8267
8268 =head2 bigint - Transparent big integer support for Perl
8269
8270 =over 4
8271
8272 =item SYNOPSIS
8273
8274 =item DESCRIPTION
8275
8276 =over 4
8277
8278 =item OPTIONS
8279
8280 a or accuracy, p or precision, t or trace, l or lib, v or version
8281
8282 =item MATH LIBRARY
8283
8284 =item INTERNAL FORMAT
8285
8286 =item SIGN
8287
8288 =item METHODS
8289
8290 =back
8291
8292 =item MODULES USED
8293
8294 =item EXAMPLES
8295
8296 =item LICENSE
8297
8298 =item SEE ALSO
8299
8300 =item AUTHORS
8301
8302 =back
8303
8304 =head2 bignum - Transparent BigNumber support for Perl
8305
8306 =over 4
8307
8308 =item SYNOPSIS
8309
8310 =item DESCRIPTION
8311
8312 =over 4
8313
8314 =item OPTIONS
8315
8316 a or accuracy, p or precision, t or trace, l or lib, v or version
8317
8318 =item MATH LIBRARY
8319
8320 =item INTERNAL FORMAT
8321
8322 =item SIGN
8323
8324 =item METHODS
8325
8326 =back
8327
8328 =item MODULES USED
8329
8330 =item EXAMPLES
8331
8332 =item LICENSE
8333
8334 =item SEE ALSO
8335
8336 =item AUTHORS
8337
8338 =back
8339
8340 =head2 bigrat - Transparent BigNumber/BigRational support for Perl
8341
8342 =over 4
8343
8344 =item SYNOPSIS
8345
8346 =item DESCRIPTION
8347
8348 =over 4
8349
8350 =item MODULES USED
8351
8352 =item MATH LIBRARY
8353
8354 =item SIGN
8355
8356 =item METHODS
8357
8358 =back
8359
8360 =item EXAMPLES
8361
8362         perl -Mbigrat -le 'print sqrt(33)'
8363         perl -Mbigrat -le 'print 2*255'
8364         perl -Mbigrat -le 'print 4.5+2*255'
8365         perl -Mbigrat -le 'print 3/7 + 5/7 + 8/3'       
8366         perl -Mbigrat -le 'print 12->is_odd()';
8367
8368 =item LICENSE
8369
8370 =item SEE ALSO
8371
8372 =item AUTHORS
8373
8374 =back
8375
8376 =head2 blib - Use MakeMaker's uninstalled version of a package
8377
8378 =over 4
8379
8380 =item SYNOPSIS
8381
8382 =item DESCRIPTION
8383
8384 =item BUGS
8385
8386 =item AUTHOR
8387
8388 =back
8389
8390 =head2 bytes - Perl pragma to force byte semantics rather than character
8391 semantics
8392
8393 =over 4
8394
8395 =item SYNOPSIS
8396
8397 =item DESCRIPTION
8398
8399 =item SEE ALSO
8400
8401 =back
8402
8403 =head2 charnames - define character names for C<\N{named}> string literal
8404 escapes
8405
8406 =over 4
8407
8408 =item SYNOPSIS
8409
8410 =item DESCRIPTION
8411
8412 =item CUSTOM TRANSLATORS
8413
8414 =item charnames::viacode(code)
8415
8416 =item charnames::vianame(code)
8417
8418 =item ALIASES
8419
8420 =item ILLEGAL CHARACTERS
8421
8422 =item BUGS
8423
8424 =back
8425
8426 =head2 constant - Perl pragma to declare constants
8427
8428 =over 4
8429
8430 =item SYNOPSIS
8431
8432 =item DESCRIPTION
8433
8434 =item NOTES
8435
8436 =over 4
8437
8438 =item List constants
8439
8440 =item Defining multiple constants at once
8441
8442 =item Magic constants
8443
8444 =back
8445
8446 =item TECHNICAL NOTES
8447
8448 =item BUGS
8449
8450 =item AUTHOR
8451
8452 =item COPYRIGHT
8453
8454 =back
8455
8456 =head2 diagnostics - Perl compiler pragma to force verbose warning
8457 diagnostics
8458
8459 =over 4
8460
8461 =item SYNOPSIS
8462
8463 =item DESCRIPTION
8464
8465 =over 4
8466
8467 =item The C<diagnostics> Pragma
8468
8469 =item The I<splain> Program
8470
8471 =back
8472
8473 =item EXAMPLES
8474
8475 =item INTERNALS
8476
8477 =item BUGS
8478
8479 =item AUTHOR
8480
8481 =back
8482
8483 =head2 encoding - allows you to write your script in non-ascii or non-utf8
8484
8485 =over 4
8486
8487 =item SYNOPSIS
8488
8489 =item ABSTRACT
8490
8491 =item USAGE
8492
8493 use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
8494 I<ENCNAME_IN> ...] ;, no encoding;
8495
8496 =item CAVEATS
8497
8498 =over 4
8499
8500 =item NOT SCOPED
8501
8502 =item DO NOT MIX MULTIPLE ENCODINGS
8503
8504 =back
8505
8506 =item Non-ASCII Identifiers and Filter option
8507
8508 use encoding I<ENCNAME> Filter=E<gt>1;
8509
8510 =item EXAMPLE - Greekperl
8511
8512 =item KNOWN PROBLEMS
8513
8514 =item SEE ALSO
8515
8516 =back
8517
8518 =head2 fields - compile-time class fields
8519
8520 =over 4
8521
8522 =item SYNOPSIS
8523
8524 =item DESCRIPTION
8525
8526 new, phash
8527
8528 =item SEE ALSO
8529
8530 =back
8531
8532 =head2 filetest - Perl pragma to control the filetest permission operators
8533
8534 =over 4
8535
8536 =item SYNOPSIS
8537
8538 =item DESCRIPTION
8539
8540 =over 4
8541
8542 =item subpragma access
8543
8544 =back
8545
8546 =back
8547
8548 =head2 if - C<use> a Perl module if a condition holds
8549
8550 =over 4
8551
8552 =item SYNOPSIS
8553
8554 =item DESCRIPTION
8555
8556 =item BUGS
8557
8558 =item AUTHOR
8559
8560 =back
8561
8562 =head2 integer - Perl pragma to use integer arithmetic instead of floating
8563 point
8564
8565 =over 4
8566
8567 =item SYNOPSIS
8568
8569 =item DESCRIPTION
8570
8571 =back
8572
8573 =head2 less - perl pragma to request less of something from the compiler
8574
8575 =over 4
8576
8577 =item SYNOPSIS
8578
8579 =item DESCRIPTION
8580
8581 =back
8582
8583 =head2 lib - manipulate @INC at compile time
8584
8585 =over 4
8586
8587 =item SYNOPSIS
8588
8589 =item DESCRIPTION
8590
8591 =over 4
8592
8593 =item Adding directories to @INC
8594
8595 =item Deleting directories from @INC
8596
8597 =item Restoring original @INC
8598
8599 =back
8600
8601 =item CAVEATS
8602
8603 =item SEE ALSO
8604
8605 =item AUTHOR
8606
8607 =back
8608
8609 =head2 locale - Perl pragma to use and avoid POSIX locales for built-in
8610 operations
8611
8612 =over 4
8613
8614 =item SYNOPSIS
8615
8616 =item DESCRIPTION
8617
8618 =back
8619
8620 =head2 open - perl pragma to set default disciplines for input and output
8621
8622 =over 4
8623
8624 =item SYNOPSIS
8625
8626 =item DESCRIPTION
8627
8628 =item NONPERLIO FUNCTIONALITY
8629
8630 =item IMPLEMENTATION DETAILS
8631
8632 =item SEE ALSO
8633
8634 =back
8635
8636 =head2 ops - Perl pragma to restrict unsafe operations when compiling
8637
8638 =over 4
8639
8640 =item SYNOPSIS  
8641
8642 =item DESCRIPTION
8643
8644 =item SEE ALSO
8645
8646 =back
8647
8648 =head2 overload - Package for overloading perl operations
8649
8650 =over 4
8651
8652 =item SYNOPSIS
8653
8654 =item DESCRIPTION
8655
8656 =over 4
8657
8658 =item Declaration of overloaded functions
8659
8660 =item Calling Conventions for Binary Operations
8661
8662 FALSE, TRUE, C<undef>
8663
8664 =item Calling Conventions for Unary Operations
8665
8666 =item Calling Conventions for Mutators
8667
8668 C<++> and C<-->, C<x=> and other assignment versions
8669
8670 =item Overloadable Operations
8671
8672 I<Arithmetic operations>, I<Comparison operations>, I<Bit operations>,
8673 I<Increment and decrement>, I<Transcendental functions>, I<Boolean, string
8674 and numeric conversion>, I<Iteration>, I<Dereferencing>, I<Special>
8675
8676 =item Inheritance and overloading
8677
8678 Strings as values of C<use overload> directive, Overloading of an operation
8679 is inherited by derived classes
8680
8681 =back
8682
8683 =item SPECIAL SYMBOLS FOR C<use overload>
8684
8685 =over 4
8686
8687 =item Last Resort
8688
8689 =item Fallback
8690
8691 C<undef>, TRUE, defined, but FALSE
8692
8693 =item Copy Constructor
8694
8695 B<Example>
8696
8697 =back
8698
8699 =item MAGIC AUTOGENERATION
8700
8701 I<Assignment forms of arithmetic operations>, I<Conversion operations>,
8702 I<Increment and decrement>, C<abs($a)>, I<Unary minus>, I<Negation>,
8703 I<Concatenation>, I<Comparison operations>, I<Iterator>, I<Dereferencing>,
8704 I<Copy operator>
8705
8706 =item Losing overloading
8707
8708 =item Run-time Overloading
8709
8710 =item Public functions
8711
8712 overload::StrVal(arg), overload::Overloaded(arg), overload::Method(obj,op)
8713
8714 =item Overloading constants
8715
8716 integer, float, binary, q, qr
8717
8718 =item IMPLEMENTATION
8719
8720 =item Metaphor clash
8721
8722 =item Cookbook
8723
8724 =over 4
8725
8726 =item Two-face scalars
8727
8728 =item Two-face references
8729
8730 =item Symbolic calculator
8731
8732 =item I<Really> symbolic calculator
8733
8734 =back
8735
8736 =item AUTHOR
8737
8738 =item DIAGNOSTICS
8739
8740 Odd number of arguments for overload::constant, `%s' is not an overloadable
8741 type, `%s' is not a code reference
8742
8743 =item BUGS
8744
8745 =back
8746
8747 =head2 re - Perl pragma to alter regular expression behaviour
8748
8749 =over 4
8750
8751 =item SYNOPSIS
8752
8753 =item DESCRIPTION
8754
8755 =back
8756
8757 =head2 sigtrap - Perl pragma to enable simple signal handling
8758
8759 =over 4
8760
8761 =item SYNOPSIS
8762
8763 =item DESCRIPTION
8764
8765 =item OPTIONS
8766
8767 =over 4
8768
8769 =item SIGNAL HANDLERS
8770
8771 B<stack-trace>, B<die>, B<handler> I<your-handler>
8772
8773 =item SIGNAL LISTS
8774
8775 B<normal-signals>, B<error-signals>, B<old-interface-signals>
8776
8777 =item OTHER
8778
8779 B<untrapped>, B<any>, I<signal>, I<number>
8780
8781 =back
8782
8783 =item EXAMPLES
8784
8785 =back
8786
8787 =head2 sort - perl pragma to control sort() behaviour
8788
8789 =over 4
8790
8791 =item SYNOPSIS
8792
8793 =item DESCRIPTION
8794
8795 =item CAVEATS
8796
8797 =back
8798
8799 =head2 strict - Perl pragma to restrict unsafe constructs
8800
8801 =over 4
8802
8803 =item SYNOPSIS
8804
8805 =item DESCRIPTION
8806
8807 C<strict refs>, C<strict vars>, C<strict subs>
8808
8809 =back
8810
8811 =head2 subs - Perl pragma to predeclare sub names
8812
8813 =over 4
8814
8815 =item SYNOPSIS
8816
8817 =item DESCRIPTION
8818
8819 =back
8820
8821 =head2 threads - Perl extension allowing use of interpreter based threads
8822 from perl
8823
8824 =over 4
8825
8826 =item SYNOPSIS
8827
8828 =item DESCRIPTION
8829
8830 $thread = threads->create(function, LIST), $thread->join, $thread->detach,
8831 threads->self, $thread->tid, threads->yield();, threads->list();, async
8832 BLOCK;
8833
8834 =item WARNINGS
8835
8836 Cleanup skipped %d active threads
8837
8838 =item BUGS / TODO
8839
8840 Parent-Child threads, tid is I32, Returning objects, PERL_OLD_SIGNALS are
8841 not threadsafe, will not be
8842
8843 =item AUTHOR and COPYRIGHT
8844
8845 =item SEE ALSO
8846
8847 =back
8848
8849 =head2 threadshared, threads::shared - Perl extension for sharing data
8850 structures between threads
8851
8852 =over 4
8853
8854 =item SYNOPSIS
8855
8856 =item DESCRIPTION
8857
8858 =item EXPORT
8859
8860 =item FUNCTIONS
8861
8862 share VARIABLE, lock VARIABLE, unlock VARIABLE, cond_wait VARIABLE,
8863 cond_signal VARIABLE, cond_broadcast VARIABLE
8864
8865 =item NOTES
8866
8867 =item BUGS
8868
8869 =item AUTHOR
8870
8871 =item SEE ALSO
8872
8873 =back
8874
8875 =head2 threadshared::queue, threads::shared::queue - thread-safe queues
8876
8877 =over 4
8878
8879 =item SYNOPSIS
8880
8881 =item DESCRIPTION
8882
8883 =item FUNCTIONS AND METHODS
8884
8885 new, enqueue LIST, dequeue, dequeue_nb, pending
8886
8887 =item SEE ALSO
8888
8889 =back
8890
8891 =head2 threadshared::semaphore, threads::shared::semaphore - thread-safe
8892 semaphores
8893
8894 =over 4
8895
8896 =item SYNOPSIS
8897
8898 =item DESCRIPTION
8899
8900 =item FUNCTIONS AND METHODS
8901
8902 new, new NUMBER, down, down NUMBER, up, up NUMBER
8903
8904 =back
8905
8906 =head2 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source
8907 code
8908
8909 =over 4
8910
8911 =item SYNOPSIS
8912
8913 =item DESCRIPTION
8914
8915 =over 4
8916
8917 =item Utility functions
8918
8919 $num_octets = utf8::upgrade($string);, utf8::downgrade($string[, FAIL_OK]),
8920 utf8::encode($string), $flag = utf8::decode($string), $flag =
8921 utf8::valid(STRING)
8922
8923 =back
8924
8925 =item SEE ALSO
8926
8927 =back
8928
8929 =head2 vars - Perl pragma to predeclare global variable names (obsolete)
8930
8931 =over 4
8932
8933 =item SYNOPSIS
8934
8935 =item DESCRIPTION
8936
8937 =back
8938
8939 =head2 vmsish - Perl pragma to control VMS-specific language features
8940
8941 =over 4
8942
8943 =item SYNOPSIS
8944
8945 =item DESCRIPTION
8946
8947 C<vmsish status>, C<vmsish exit>, C<vmsish time>, C<vmsish hushed>
8948
8949 =back
8950
8951 =head2 warnings - Perl pragma to control optional warnings
8952
8953 =over 4
8954
8955 =item SYNOPSIS
8956
8957 =item DESCRIPTION
8958
8959 use warnings::register, warnings::enabled(), warnings::enabled($category),
8960 warnings::enabled($object), warnings::warn($message),
8961 warnings::warn($category, $message), warnings::warn($object, $message),
8962 warnings::warnif($message), warnings::warnif($category, $message),
8963 warnings::warnif($object, $message)
8964
8965 =back
8966
8967 =head2 warnings::register - warnings import function
8968
8969 =over 4
8970
8971 =item SYNOPSIS
8972
8973 =item DESCRIPTION
8974
8975 =back
8976
8977 =head1 MODULE DOCUMENTATION
8978
8979 =head2 AnyDBM_File - provide framework for multiple DBMs
8980
8981 =over 4
8982
8983 =item SYNOPSIS
8984
8985 =item DESCRIPTION
8986
8987 =over 4
8988
8989 =item DBM Comparisons
8990
8991 [0], [1], [2], [3]
8992
8993 =back
8994
8995 =item SEE ALSO
8996
8997 =back
8998
8999 =head2 Attribute::Handlers - Simpler definition of attribute handlers
9000
9001 =over 4
9002
9003 =item VERSION
9004
9005 =item SYNOPSIS
9006
9007 =item DESCRIPTION
9008
9009 [0], [1], [2], [3], [4], [5]
9010
9011 =over 4
9012
9013 =item Typed lexicals
9014
9015 =item Type-specific attribute handlers
9016
9017 =item Non-interpretive attribute handlers
9018
9019 =item Phase-specific attribute handlers
9020
9021 =item Attributes as C<tie> interfaces
9022
9023 =back
9024
9025 =item EXAMPLES
9026
9027 =item DIAGNOSTICS
9028
9029 C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
9030 attributes>, C<Declaration of %s attribute in package %s may clash with
9031 future reserved word>, C<Can't have two ATTR specifiers on one subroutine>,
9032 C<Can't autotie a %s>, C<Internal error: %s symbol went missing>, C<Won't
9033 be able to apply END handler>
9034
9035 =item AUTHOR
9036
9037 =item BUGS
9038
9039 =item COPYRIGHT
9040
9041 =back
9042
9043 =head2 AutoLoader - load subroutines only on demand
9044
9045 =over 4
9046
9047 =item SYNOPSIS
9048
9049 =item DESCRIPTION
9050
9051 =over 4
9052
9053 =item Subroutine Stubs
9054
9055 =item Using B<AutoLoader>'s AUTOLOAD Subroutine
9056
9057 =item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
9058
9059 =item Package Lexicals
9060
9061 =item Not Using AutoLoader
9062
9063 =item B<AutoLoader> vs. B<SelfLoader>
9064
9065 =back
9066
9067 =item CAVEATS
9068
9069 =item SEE ALSO
9070
9071 =back
9072
9073 =head2 AutoSplit - split a package for autoloading
9074
9075 =over 4
9076
9077 =item SYNOPSIS
9078
9079 =item DESCRIPTION
9080
9081 $keep, $check, $modtime
9082
9083 =over 4
9084
9085 =item Multiple packages
9086
9087 =back
9088
9089 =item DIAGNOSTICS
9090
9091 =back
9092
9093 =head2 B - The Perl Compiler
9094
9095 =over 4
9096
9097 =item SYNOPSIS
9098
9099 =item DESCRIPTION
9100
9101 =item OVERVIEW OF CLASSES
9102
9103 =over 4
9104
9105 =item SV-RELATED CLASSES
9106
9107 =item B::SV METHODS
9108
9109 REFCNT, FLAGS
9110
9111 =item B::IV METHODS
9112
9113 IV, IVX, UVX, int_value, needs64bits, packiv
9114
9115 =item B::NV METHODS
9116
9117 NV, NVX
9118
9119 =item B::RV METHODS
9120
9121 RV
9122
9123 =item B::PV METHODS
9124
9125 PV, RV, PVX
9126
9127 =item B::PVMG METHODS
9128
9129 MAGIC, SvSTASH
9130
9131 =item B::MAGIC METHODS
9132
9133 MOREMAGIC, precomp, PRIVATE, TYPE, FLAGS, OBJ, PTR, REGEX
9134
9135 =item B::PVLV METHODS
9136
9137 TARGOFF, TARGLEN, TYPE, TARG
9138
9139 =item B::BM METHODS
9140
9141 USEFUL, PREVIOUS, RARE, TABLE
9142
9143 =item B::GV METHODS
9144
9145 is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
9146 LINE, FILE, FILEGV, GvREFCNT, FLAGS
9147
9148 =item B::IO METHODS
9149
9150 LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
9151 BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS, IsSTD
9152
9153 =item B::AV METHODS
9154
9155 FILL, MAX, OFF, ARRAY, AvFLAGS
9156
9157 =item B::CV METHODS
9158
9159 STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, XSUB, XSUBANY,
9160 CvFLAGS, const_sv
9161
9162 =item B::HV METHODS
9163
9164 FILL, MAX, KEYS, RITER, NAME, PMROOT, ARRAY
9165
9166 =item OP-RELATED CLASSES
9167
9168 =item B::OP METHODS
9169
9170 next, sibling, name, ppaddr, desc, targ, type, seq, flags, private
9171
9172 =item B::UNOP METHOD
9173
9174 first
9175
9176 =item B::BINOP METHOD
9177
9178 last
9179
9180 =item B::LOGOP METHOD
9181
9182 other
9183
9184 =item B::LISTOP METHOD
9185
9186 children
9187
9188 =item B::PMOP METHODS
9189
9190 pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, pmdynflags,
9191 pmpermflags, precomp, pmoffet
9192
9193 =item B::SVOP METHOD
9194
9195 sv, gv
9196
9197 =item B::PADOP METHOD
9198
9199 padix
9200
9201 =item B::PVOP METHOD
9202
9203 pv
9204
9205 =item B::LOOP METHODS
9206
9207 redoop, nextop, lastop
9208
9209 =item B::COP METHODS
9210
9211 label, stash, file, cop_seq, arybase, line
9212
9213 =back
9214
9215 =item FUNCTIONS EXPORTED BY C<B>
9216
9217 main_cv, init_av, begin_av, end_av, main_root, main_start, comppadlist,
9218 regex_padav, sv_undef, sv_yes, sv_no, amagic_generation, walkoptree(OP,
9219 METHOD), walkoptree_debug(DEBUG), walksymtable(SYMREF, METHOD, RECURSE,
9220 PREFIX), svref_2object(SV), ppname(OPNUM), hash(STR), cast_I32(I), minus_c,
9221 cstring(STR), perlstring(STR), class(OBJ), threadsv_names
9222
9223 =item AUTHOR
9224
9225 =back
9226
9227 =head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
9228 bytecode
9229
9230 =over 4
9231
9232 =item SYNOPSIS
9233
9234 =item DESCRIPTION
9235
9236 %insn_data, @insn_name, @optype, @specialsv_name
9237
9238 =item AUTHOR
9239
9240 =back
9241
9242 =head2 B::Assembler - Assemble Perl bytecode
9243
9244 =over 4
9245
9246 =item SYNOPSIS
9247
9248 =item DESCRIPTION
9249
9250 =item AUTHORS
9251
9252 =back
9253
9254 =head2 B::Bblock - Walk basic blocks
9255
9256 =over 4
9257
9258 =item SYNOPSIS
9259
9260 =item DESCRIPTION
9261
9262 =over 4
9263
9264 =item Functions
9265
9266 B<find_leaders>
9267
9268 =back
9269
9270 =item AUTHOR
9271
9272 =back
9273
9274 =head2 B::Bytecode - Perl compiler's bytecode backend
9275
9276 =over 4
9277
9278 =item SYNOPSIS
9279
9280 =item DESCRIPTION
9281
9282 =item OPTIONS
9283
9284 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
9285 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
9286 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
9287
9288 =item EXAMPLES
9289
9290 =item BUGS
9291
9292 =item AUTHORS
9293
9294 =back
9295
9296 =head2 B::C - Perl compiler's C backend
9297
9298 =over 4
9299
9300 =item SYNOPSIS
9301
9302 =item DESCRIPTION
9303
9304 =item OPTIONS
9305
9306 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-D>, B<-Do>, B<-Dc>, B<-DA>,
9307 B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fsave-data>, B<-fppaddr>, B<-fwarn-sv>,
9308 B<-fuse-script-name>, B<-fsave-sig-hash>, B<-On>, B<-O0>, B<-O1>, B<-O2>,
9309 B<-llimit>
9310
9311 =item EXAMPLES
9312
9313 =item BUGS
9314
9315 =item AUTHOR
9316
9317 =back
9318
9319 =head2 B::CC - Perl compiler's optimized C translation backend
9320
9321 =over 4
9322
9323 =item SYNOPSIS
9324
9325 =item DESCRIPTION
9326
9327 =item OPTIONS
9328
9329 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-mModulename>, B<-D>, B<-Dr>,
9330 B<-DO>, B<-Ds>, B<-Dp>, B<-Dq>, B<-Dl>, B<-Dt>, B<-f>,
9331 B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
9332
9333 =item EXAMPLES
9334
9335 =item BUGS
9336
9337 =item DIFFERENCES
9338
9339 =over 4
9340
9341 =item Loops
9342
9343 =item Context of ".."
9344
9345 =item Arithmetic
9346
9347 =item Deprecated features
9348
9349 =back
9350
9351 =item AUTHOR
9352
9353 =back
9354
9355 =head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
9356
9357 =over 4
9358
9359 =item SYNOPSIS
9360
9361 =item DESCRIPTION
9362
9363 =item EXAMPLE
9364
9365 =item OPTIONS
9366
9367 B<-basic>, B<-exec>, B<-tree>, B<-compact>, B<-loose>, B<-vt>, B<-ascii>,
9368 B<-main>, B<-base>I<n>, B<-bigendian>, B<-littleendian>, B<-concise>,
9369 B<-terse>, B<-linenoise>, B<-debug>, B<-env>
9370
9371 =item FORMATTING SPECIFICATIONS
9372
9373 B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
9374 B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
9375 B<#>I<var>, B<#>I<var>I<N>, B<~>, B<#addr>, B<#arg>, B<#class>,
9376 B<#classsym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
9377 B<#flags>, B<#flagval>, B<#hyphseq>, B<#label>, B<#lastaddr>, B<#name>,
9378 B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>, B<#private>, B<#privval>,
9379 B<#seq>, B<#seqnum>, B<#sibaddr>, B<#svaddr>, B<#svclass>, B<#svval>,
9380 B<#targ>, B<#targarg>, B<#targarglife>, B<#typenum>
9381
9382 =item ABBREVIATIONS
9383
9384 =over 4
9385
9386 =item OP flags abbreviations
9387
9388 =item OP class abbreviations
9389
9390 =back
9391
9392 =item Using B::Concise outside of the O framework
9393
9394 =item AUTHOR
9395
9396 =back
9397
9398 =head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
9399
9400 =over 4
9401
9402 =item SYNOPSIS
9403
9404 =item DESCRIPTION
9405
9406 =item AUTHOR
9407
9408 =back
9409
9410 =head2 B::Deparse - Perl compiler backend to produce perl code
9411
9412 =over 4
9413
9414 =item SYNOPSIS
9415
9416 =item DESCRIPTION
9417
9418 =item OPTIONS
9419
9420 B<-l>, B<-p>, B<-P>, B<-q>, B<-f>I<FILE>, B<-s>I<LETTERS>, B<C>,
9421 B<i>I<NUMBER>, B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
9422
9423 =item USING B::Deparse AS A MODULE
9424
9425 =over 4
9426
9427 =item Synopsis
9428
9429 =item Description
9430
9431 =item new
9432
9433 =item ambient_pragmas
9434
9435 strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
9436
9437 =item coderef2text
9438
9439 =back
9440
9441 =item BUGS
9442
9443 =item AUTHOR
9444
9445 =back
9446
9447 =head2 B::Disassembler - Disassemble Perl bytecode
9448
9449 =over 4
9450
9451 =item SYNOPSIS
9452
9453 =item DESCRIPTION
9454
9455 =item AUTHOR
9456
9457 =back
9458
9459 =head2 B::Lint - Perl lint
9460
9461 =over 4
9462
9463 =item SYNOPSIS
9464
9465 =item DESCRIPTION
9466
9467 =item OPTIONS AND LINT CHECKS
9468
9469 B<context>, B<implicit-read> and B<implicit-write>, B<dollar-underscore>,
9470 B<private-names>, B<undefined-subs>, B<regexp-variables>, B<all>, B<none>
9471
9472 =item NON LINT-CHECK OPTIONS
9473
9474 B<-u Package>
9475
9476 =item BUGS
9477
9478 =item AUTHOR
9479
9480 =back
9481
9482 =head2 B::O, O - Generic interface to Perl Compiler backends
9483
9484 =over 4
9485
9486 =item SYNOPSIS
9487
9488 =item DESCRIPTION
9489
9490 =item CONVENTIONS
9491
9492 =item IMPLEMENTATION
9493
9494 =item BUGS
9495
9496 =item AUTHOR
9497
9498 =back
9499
9500 =head2 B::Showlex - Show lexical variables used in functions or files
9501
9502 =over 4
9503
9504 =item SYNOPSIS
9505
9506 =item DESCRIPTION
9507
9508 =item AUTHOR
9509
9510 =back
9511
9512 =head2 B::Stackobj - Helper module for CC backend
9513
9514 =over 4
9515
9516 =item SYNOPSIS
9517
9518 =item DESCRIPTION
9519
9520 =item AUTHOR
9521
9522 =back
9523
9524 =head2 B::Stash - show what stashes are loaded
9525
9526 =head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
9527
9528 =over 4
9529
9530 =item SYNOPSIS
9531
9532 =item DESCRIPTION
9533
9534 =item AUTHOR
9535
9536 =back
9537
9538 =head2 B::Xref - Generates cross reference reports for Perl programs
9539
9540 =over 4
9541
9542 =item SYNOPSIS
9543
9544 =item DESCRIPTION
9545
9546 =item OPTIONS
9547
9548 C<-oFILENAME>, C<-r>, C<-d>, C<-D[tO]>
9549
9550 =item BUGS
9551
9552 =item AUTHOR
9553
9554 =back
9555
9556 =head2 Bblock, B::Bblock - Walk basic blocks
9557
9558 =over 4
9559
9560 =item SYNOPSIS
9561
9562 =item DESCRIPTION
9563
9564 =over 4
9565
9566 =item Functions
9567
9568 B<find_leaders>
9569
9570 =back
9571
9572 =item AUTHOR
9573
9574 =back
9575
9576 =head2 Benchmark - benchmark running times of Perl code
9577
9578 =over 4
9579
9580 =item SYNOPSIS
9581
9582 =item DESCRIPTION
9583
9584 =over 4
9585
9586 =item Methods
9587
9588 new, debug, iters
9589
9590 =item Standard Exports
9591
9592 timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
9593 timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
9594 TIMEDIFF, [ STYLE, [ FORMAT ] ] )
9595
9596 =item Optional Exports
9597
9598 clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUT, CODEHASHREF, [
9599 STYLE ] ), cmpthese ( RESULTSHASHREF, [ STYLE ] ), countit(TIME, CODE),
9600 disablecache ( ), enablecache ( ), timesum ( T1, T2 )
9601
9602 =back
9603
9604 =item NOTES
9605
9606 =item EXAMPLES
9607
9608 =item INHERITANCE
9609
9610 =item CAVEATS
9611
9612 =item SEE ALSO
9613
9614 =item AUTHORS
9615
9616 =item MODIFICATION HISTORY
9617
9618 =back
9619
9620 =head2 ByteLoader - load byte compiled perl code
9621
9622 =over 4
9623
9624 =item SYNOPSIS
9625
9626 =item DESCRIPTION
9627
9628 =item AUTHOR
9629
9630 =item SEE ALSO
9631
9632 =back
9633
9634 =head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend
9635
9636 =over 4
9637
9638 =item SYNOPSIS
9639
9640 =item DESCRIPTION
9641
9642 =item OPTIONS
9643
9644 B<-ofilename>, B<-afilename>, B<-->, B<-f>, B<-fcompress-nullops>,
9645 B<-fomit-sequence-numbers>, B<-fbypass-nullops>, B<-On>, B<-D>, B<-Do>,
9646 B<-Db>, B<-Da>, B<-DC>, B<-S>, B<-upackage>
9647
9648 =item EXAMPLES
9649
9650 =item BUGS
9651
9652 =item AUTHORS
9653
9654 =back
9655
9656 =head2 CGI - Simple Common Gateway Interface Class
9657
9658 =over 4
9659
9660 =item SYNOPSIS
9661
9662 =item ABSTRACT
9663
9664 =item DESCRIPTION
9665
9666 =over 4
9667
9668 =item PROGRAMMING STYLE
9669
9670 =item CALLING CGI.PM ROUTINES
9671
9672 =item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
9673
9674 =item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
9675
9676 =item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
9677
9678 =item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
9679
9680 =item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
9681
9682 =item SETTING THE VALUE(S) OF A NAMED PARAMETER:
9683
9684 =item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
9685
9686 =item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
9687
9688 =item DELETING A PARAMETER COMPLETELY:
9689
9690 =item DELETING ALL PARAMETERS:
9691
9692 =item DIRECT ACCESS TO THE PARAMETER LIST:
9693
9694 =item FETCHING THE PARAMETER LIST AS A HASH:
9695
9696 =item SAVING THE STATE OF THE SCRIPT TO A FILE:
9697
9698 =item RETRIEVING CGI ERRORS
9699
9700 =item USING THE FUNCTION-ORIENTED INTERFACE
9701
9702 B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:html4>, B<:netscape>, B<:html>,
9703 B<:standard>, B<:all>
9704
9705 =item PRAGMAS
9706
9707 -any, -compile, -nosticky, -no_undef_params, -no_xhtml, -nph,
9708 -newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
9709 -private_tempfiles
9710
9711 =item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
9712
9713 1. start_table() (generates a <table> tag), 2. end_table() (generates a
9714 </table> tag), 3. start_ul() (generates a <ul> tag), 4. end_ul() (generates
9715 a </ul> tag)
9716
9717 =back
9718
9719 =item GENERATING DYNAMIC DOCUMENTS
9720
9721 =over 4
9722
9723 =item CREATING A STANDARD HTTP HEADER:
9724
9725 =item GENERATING A REDIRECTION HEADER
9726
9727 =item CREATING THE HTML DOCUMENT HEADER
9728
9729 B<Parameters:>, 4, 5, 6..
9730
9731 =item ENDING THE HTML DOCUMENT:
9732
9733 =item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
9734
9735 =item OBTAINING THE SCRIPT'S URL
9736
9737 B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
9738 (B<-query_string>), B<-base>
9739
9740 =item MIXING POST AND URL PARAMETERS
9741
9742 =back
9743
9744 =item CREATING STANDARD HTML ELEMENTS:
9745
9746 =over 4
9747
9748 =item PROVIDING ARGUMENTS TO HTML SHORTCUTS
9749
9750 =item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
9751
9752 =item HTML SHORTCUTS AND LIST INTERPOLATION
9753
9754 =item NON-STANDARD HTML SHORTCUTS
9755
9756 =item AUTOESCAPING HTML
9757
9758 $escaped_string = escapeHTML("unescaped string");, $charset =
9759 charset([$charset]);, $flag = autoEscape([$flag]);
9760
9761 =item PRETTY-PRINTING HTML
9762
9763 =back
9764
9765 =item CREATING FILL-OUT FORMS:
9766
9767 =over 4
9768
9769 =item CREATING AN ISINDEX TAG
9770
9771 =item STARTING AND ENDING A FORM
9772
9773 B<application/x-www-form-urlencoded>, B<multipart/form-data>
9774
9775 =item CREATING A TEXT FIELD
9776
9777 B<Parameters>
9778
9779 =item CREATING A BIG TEXT FIELD
9780
9781 =item CREATING A PASSWORD FIELD
9782
9783 =item CREATING A FILE UPLOAD FIELD
9784
9785 B<Parameters>
9786
9787 =item CREATING A POPUP MENU
9788
9789 =item CREATING A SCROLLING LIST
9790
9791 B<Parameters:>
9792
9793 =item CREATING A GROUP OF RELATED CHECKBOXES
9794
9795 B<Parameters:>
9796
9797 =item CREATING A STANDALONE CHECKBOX
9798
9799 B<Parameters:>
9800
9801 =item CREATING A RADIO BUTTON GROUP
9802
9803 B<Parameters:>
9804
9805 =item CREATING A SUBMIT BUTTON 
9806
9807 B<Parameters:>
9808
9809 =item CREATING A RESET BUTTON
9810
9811 =item CREATING A DEFAULT BUTTON
9812
9813 =item CREATING A HIDDEN FIELD
9814
9815 B<Parameters:>
9816
9817 =item CREATING A CLICKABLE IMAGE BUTTON
9818
9819 B<Parameters:>
9820
9821 =item CREATING A JAVASCRIPT ACTION BUTTON
9822
9823 =back
9824
9825 =item HTTP COOKIES
9826
9827 1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
9828 B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
9829
9830 =item WORKING WITH FRAMES
9831
9832 1. Create a <Frameset> document, 2. Specify the destination for the
9833 document in the HTTP header, 3. Specify the destination for the document in
9834 the <form> tag
9835
9836 =item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
9837
9838 =item DEBUGGING
9839
9840 =over 4
9841
9842 =item DUMPING OUT ALL THE NAME/VALUE PAIRS
9843
9844 =back
9845
9846 =item FETCHING ENVIRONMENT VARIABLES
9847
9848 B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
9849 B<path_translated()>, B<remote_host()>, B<script_name()>, B<referer()>,
9850 B<auth_type ()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
9851 B<server_software ()>, B<remote_user ()>, B<user_name ()>,
9852 B<request_method()>, B<content_type()>, B<http()>, B<https()>
9853
9854 =item USING NPH SCRIPTS
9855
9856 In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
9857 parameters
9858
9859 =item Server Push
9860
9861 multipart_init(), multipart_start(), multipart_end(), multipart_final()
9862
9863 =item Avoiding Denial of Service Attacks
9864
9865 B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
9866 basis>, B<2. Globally for all scripts>
9867
9868 =item COMPATIBILITY WITH CGI-LIB.PL
9869
9870 =item AUTHOR INFORMATION
9871
9872 =item CREDITS
9873
9874 Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
9875 (james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
9876 (mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
9877 (jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
9878 (applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
9879 (tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
9880 (tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
9881 MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
9882 (kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
9883 Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
9884 MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
9885 ...and many many more..
9886
9887 =item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
9888
9889 =item BUGS
9890
9891 =item SEE ALSO
9892
9893 =back
9894
9895 =head2 CGI::Apache - Backward compatibility module for CGI.pm
9896
9897 =over 4
9898
9899 =item SYNOPSIS
9900
9901 =item ABSTRACT
9902
9903 =item DESCRIPTION
9904
9905 =item AUTHOR INFORMATION
9906
9907 =item BUGS
9908
9909 =item SEE ALSO
9910
9911 =back
9912
9913 =head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
9914 other) error log
9915
9916 =over 4
9917
9918 =item SYNOPSIS
9919
9920 =item DESCRIPTION
9921
9922 =item REDIRECTING ERROR MESSAGES
9923
9924 =item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
9925
9926 =over 4
9927
9928 =item Changing the default message
9929
9930 =back
9931
9932 =item MAKING WARNINGS APPEAR AS HTML COMMENTS
9933
9934 =item CHANGE LOG
9935
9936 =item AUTHORS
9937
9938 =item SEE ALSO
9939
9940 =back
9941
9942 =head2 CGI::Cookie - Interface to Netscape Cookies
9943
9944 =over 4
9945
9946 =item SYNOPSIS
9947
9948 =item DESCRIPTION
9949
9950 =item USING CGI::Cookie
9951
9952 B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
9953
9954 =over 4
9955
9956 =item Creating New Cookies
9957
9958 =item Sending the Cookie to the Browser
9959
9960 =item Recovering Previous Cookies
9961
9962 =item Manipulating Cookies
9963
9964 B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
9965
9966 =back
9967
9968 =item AUTHOR INFORMATION
9969
9970 =item BUGS
9971
9972 =item SEE ALSO
9973
9974 =back
9975
9976 =head2 CGI::Fast - CGI Interface for Fast CGI
9977
9978 =over 4
9979
9980 =item SYNOPSIS
9981
9982 =item DESCRIPTION
9983
9984 =item OTHER PIECES OF THE PUZZLE
9985
9986 =item WRITING FASTCGI PERL SCRIPTS
9987
9988 =item INSTALLING FASTCGI SCRIPTS
9989
9990 =item USING FASTCGI SCRIPTS AS CGI SCRIPTS
9991
9992 =item EXTERNAL FASTCGI SERVER INVOCATION
9993
9994 FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
9995
9996 =item CAVEATS
9997
9998 =item AUTHOR INFORMATION
9999
10000 =item BUGS
10001
10002 =item SEE ALSO
10003
10004 =back
10005
10006 =head2 CGI::Pretty - module to produce nicely formatted HTML code
10007
10008 =over 4
10009
10010 =item SYNOPSIS
10011
10012 =item DESCRIPTION
10013
10014 =over 4
10015
10016 =item Tags that won't be formatted
10017
10018 =item Customizing the Indenting
10019
10020 =back
10021
10022 =item BUGS
10023
10024 =item AUTHOR
10025
10026 =item SEE ALSO
10027
10028 =back
10029
10030 =head2 CGI::Push - Simple Interface to Server Push
10031
10032 =over 4
10033
10034 =item SYNOPSIS
10035
10036 =item DESCRIPTION
10037
10038 =item USING CGI::Push
10039
10040 -next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
10041
10042 =over 4
10043
10044 =item Heterogeneous Pages
10045
10046 =item Changing the Page Delay on the Fly
10047
10048 =back
10049
10050 =item INSTALLING CGI::Push SCRIPTS
10051
10052 =item AUTHOR INFORMATION
10053
10054 =item BUGS
10055
10056 =item SEE ALSO
10057
10058 =back
10059
10060 =head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
10061
10062 =over 4
10063
10064 =item SYNOPSIS
10065
10066 =item ABSTRACT
10067
10068 =item DESCRIPTION
10069
10070 =item AUTHOR INFORMATION
10071
10072 =item BUGS
10073
10074 =item SEE ALSO
10075
10076 =back
10077
10078 =head2 CGI::Util - Internal utilities used by CGI module
10079
10080 =over 4
10081
10082 =item SYNOPSIS
10083
10084 =item DESCRIPTION
10085
10086 =item AUTHOR INFORMATION
10087
10088 =item SEE ALSO
10089
10090 =back
10091
10092 =head2 CPAN - query, download and build perl modules from CPAN sites
10093
10094 =over 4
10095
10096 =item SYNOPSIS
10097
10098 =item DESCRIPTION
10099
10100 =over 4
10101
10102 =item Interactive Mode
10103
10104 Searching for authors, bundles, distribution files and modules, make, test,
10105 install, clean  modules or distributions, get, readme, look module or
10106 distribution, ls author, Signals
10107
10108 =item CPAN::Shell
10109
10110 =item autobundle
10111
10112 =item recompile
10113
10114 =item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
10115
10116 =item Programmer's interface
10117
10118 expand($type,@things), expandany(@things), Programming Examples
10119
10120 =item Methods in the other Classes
10121
10122 CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
10123 CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
10124 CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
10125 CPAN::Bundle::clean(), CPAN::Bundle::contains(),
10126 CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
10127 CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
10128 CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
10129 CPAN::Bundle::readme(), CPAN::Bundle::test(),
10130 CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
10131 CPAN::Distribution::clean(), CPAN::Distribution::containsmods(),
10132 CPAN::Distribution::cvs_import(), CPAN::Distribution::dir(),
10133 CPAN::Distribution::force($method,@args), CPAN::Distribution::get(),
10134 CPAN::Distribution::install(), CPAN::Distribution::isa_perl(),
10135 CPAN::Distribution::look(), CPAN::Distribution::make(),
10136 CPAN::Distribution::prereq_pm(), CPAN::Distribution::readme(),
10137 CPAN::Distribution::test(), CPAN::Distribution::uptodate(),
10138 CPAN::Index::force_reload(), CPAN::Index::reload(), CPAN::InfoObj::dump(),
10139 CPAN::Module::as_glimpse(), CPAN::Module::as_string(),
10140 CPAN::Module::clean(), CPAN::Module::cpan_file(),
10141 CPAN::Module::cpan_version(), CPAN::Module::cvs_import(),
10142 CPAN::Module::description(), CPAN::Module::force($method,@args),
10143 CPAN::Module::get(), CPAN::Module::inst_file(),
10144 CPAN::Module::inst_version(), CPAN::Module::install(),
10145 CPAN::Module::look(), CPAN::Module::make(),
10146 CPAN::Module::manpage_headline(), CPAN::Module::readme(),
10147 CPAN::Module::test(), CPAN::Module::uptodate(), CPAN::Module::userid()
10148
10149 =item Cache Manager
10150
10151 =item Bundles
10152
10153 =item Prerequisites
10154
10155 =item Finding packages and VERSION
10156
10157 =item Debugging
10158
10159 =item Floppy, Zip, Offline Mode
10160
10161 =back
10162
10163 =item CONFIGURATION
10164
10165 C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
10166 E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
10167 optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
10168 [unshift|push|splice] E<lt>listE<gt>>
10169
10170 =over 4
10171
10172 =item Note on urllist parameter's format
10173
10174 =item urllist parameter has CD-ROM support
10175
10176 =back
10177
10178 =item SECURITY
10179
10180 =item EXPORT
10181
10182 =item POPULATE AN INSTALLATION WITH LOTS OF MODULES
10183
10184 =item WORKING WITH CPAN.pm BEHIND FIREWALLS
10185
10186 =over 4
10187
10188 =item Three basic types of firewalls
10189
10190 http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
10191
10192 =item Configuring lynx or ncftp for going through a firewall
10193
10194 =back
10195
10196 =item FAQ
10197
10198 1), 2), 3), 4), 5), 6), 7), 8), 9), 10)
10199
10200 =item BUGS
10201
10202 =item AUTHOR
10203
10204 =item TRANSLATIONS
10205
10206 =item SEE ALSO
10207
10208 =back
10209
10210 =head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
10211
10212 =over 4
10213
10214 =item SYNOPSIS
10215
10216 =item DESCRIPTION
10217
10218 =back
10219
10220 =head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
10221 module
10222
10223 =over 4
10224
10225 =item SYNOPSIS
10226
10227 =item DESCRIPTION
10228
10229 =item  SEE ALSO
10230
10231 =back
10232
10233 =head2 Carp, carp    - warn of errors (from perspective of caller)
10234
10235 =over 4
10236
10237 =item SYNOPSIS
10238
10239 =item DESCRIPTION
10240
10241 =over 4
10242
10243 =item Forcing a Stack Trace
10244
10245 =back
10246
10247 =item BUGS
10248
10249 =back
10250
10251 =head2 Carp::Heavy, Carp heavy machinery - no user serviceable parts inside
10252
10253 =head2 Class::ISA -- report the search path for a class's ISA tree
10254
10255 =over 4
10256
10257 =item SYNOPSIS
10258
10259 =item DESCRIPTION
10260
10261 =item FUNCTIONS
10262
10263 the function Class::ISA::super_path($CLASS), the function
10264 Class::ISA::self_and_super_path($CLASS), the function
10265 Class::ISA::self_and_super_versions($CLASS)
10266
10267 =item CAUTIONARY NOTES
10268
10269 =item COPYRIGHT
10270
10271 =item AUTHOR
10272
10273 =back
10274
10275 =head2 Class::Struct - declare struct-like datatypes as Perl classes
10276
10277 =over 4
10278
10279 =item SYNOPSIS
10280
10281 =item DESCRIPTION
10282
10283 =over 4
10284
10285 =item The C<struct()> function
10286
10287 =item Class Creation at Compile Time
10288
10289 =item Element Types and Accessor Methods
10290
10291 Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
10292 C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
10293
10294 =item Initializing with C<new>
10295
10296 =back
10297
10298 =item EXAMPLES
10299
10300 Example 1, Example 2, Example 3
10301
10302 =item Author and Modification History
10303
10304 =back
10305
10306 =head2 Config - access Perl configuration information
10307
10308 =over 4
10309
10310 =item SYNOPSIS
10311
10312 =item DESCRIPTION
10313
10314 myconfig(), config_sh(), config_vars(@names)
10315
10316 =item EXAMPLE
10317
10318 =item WARNING
10319
10320 =item GLOSSARY
10321
10322 =over 4
10323
10324 =item _
10325
10326 C<_a>, C<_exe>, C<_o>
10327
10328 =item a
10329
10330 C<afs>, C<afsroot>, C<alignbytes>, C<ansi2knr>, C<aphostname>,
10331 C<api_revision>, C<api_subversion>, C<api_version>, C<api_versionstring>,
10332 C<ar>, C<archlib>, C<archlibexp>, C<archname64>, C<archname>, C<archobjs>,
10333 C<asctime_r_proto>, C<awk>
10334
10335 =item b
10336
10337 C<baserev>, C<bash>, C<bin>, C<binexp>, C<bison>, C<byacc>, C<byteorder>
10338
10339 =item c
10340
10341 C<c>, C<castflags>, C<cat>, C<cc>, C<cccdlflags>, C<ccdlflags>, C<ccflags>,
10342 C<ccflags_uselargefiles>, C<ccname>, C<ccsymbols>, C<ccversion>, C<cf_by>,
10343 C<cf_email>, C<cf_time>, C<charsize>, C<chgrp>, C<chmod>, C<chown>,
10344 C<clocktype>, C<comm>, C<compress>, C<contains>, C<cp>, C<cpio>, C<cpp>,
10345 C<cpp_stuff>, C<cppccsymbols>, C<cppflags>, C<cpplast>, C<cppminus>,
10346 C<cpprun>, C<cppstdin>, C<cppsymbols>, C<crypt_r_proto>, C<cryptlib>,
10347 C<csh>, C<ctermid_r_proto>, C<ctime_r_proto>
10348
10349 =item d
10350
10351 C<d__fwalk>, C<d_access>, C<d_accessx>, C<d_alarm>, C<d_archlib>,
10352 C<d_asctime_r>, C<d_atolf>, C<d_atoll>, C<d_attribut>, C<d_bcmp>,
10353 C<d_bcopy>, C<d_bsd>, C<d_bsdgetpgrp>, C<d_bsdsetpgrp>, C<d_bzero>,
10354 C<d_casti32>, C<d_castneg>, C<d_charvspr>, C<d_chown>, C<d_chroot>,
10355 C<d_chsize>, C<d_class>, C<d_closedir>, C<d_cmsghdr_s>, C<d_const>,
10356 C<d_crypt>, C<d_crypt_r>, C<d_csh>, C<d_ctermid_r>, C<d_ctime_r>,
10357 C<d_cuserid>, C<d_dbl_dig>, C<d_dbminitproto>, C<d_difftime>, C<d_dirfd>,
10358 C<d_dirnamlen>, C<d_dlerror>, C<d_dlopen>, C<d_dlsymun>, C<d_dosuid>,
10359 C<d_drand48_r>, C<d_drand48proto>, C<d_dup2>, C<d_eaccess>, C<d_endgrent>,
10360 C<d_endgrent_r>, C<d_endhent>, C<d_endhostent_r>, C<d_endnent>,
10361 C<d_endnetent_r>, C<d_endpent>, C<d_endprotoent_r>, C<d_endpwent>,
10362 C<d_endpwent_r>, C<d_endsent>, C<d_endservent_r>, C<d_eofnblk>,
10363 C<d_eunice>, C<d_fchdir>, C<d_fchmod>, C<d_fchown>, C<d_fcntl>,
10364 C<d_fcntl_can_lock>, C<d_fd_macros>, C<d_fd_set>, C<d_fds_bits>,
10365 C<d_fgetpos>, C<d_finite>, C<d_finitel>, C<d_flexfnam>, C<d_flock>,
10366 C<d_flockproto>, C<d_fork>, C<d_fp_class>, C<d_fpathconf>, C<d_fpclass>,
10367 C<d_fpclassify>, C<d_fpclassl>, C<d_fpos64_t>, C<d_frexpl>, C<d_fs_data_s>,
10368 C<d_fseeko>, C<d_fsetpos>, C<d_fstatfs>, C<d_fstatvfs>, C<d_fsync>,
10369 C<d_ftello>, C<d_ftime>, C<d_Gconvert>, C<d_getcwd>, C<d_getespwnam>,
10370 C<d_getfsstat>, C<d_getgrent>, C<d_getgrent_r>, C<d_getgrgid_r>,
10371 C<d_getgrnam_r>, C<d_getgrps>, C<d_gethbyaddr>, C<d_gethbyname>,
10372 C<d_gethent>, C<d_gethname>, C<d_gethostbyaddr_r>, C<d_gethostbyname_r>,
10373 C<d_gethostent_r>, C<d_gethostprotos>, C<d_getitimer>, C<d_getlogin>,
10374 C<d_getlogin_r>, C<d_getmnt>, C<d_getmntent>, C<d_getnbyaddr>,
10375 C<d_getnbyname>, C<d_getnent>, C<d_getnetbyaddr_r>, C<d_getnetbyname_r>,
10376 C<d_getnetent_r>, C<d_getnetprotos>, C<d_getpagsz>, C<d_getpbyname>,
10377 C<d_getpbynumber>, C<d_getpent>, C<d_getpgid>, C<d_getpgrp2>, C<d_getpgrp>,
10378 C<d_getppid>, C<d_getprior>, C<d_getprotobyname_r>,
10379 C<d_getprotobynumber_r>, C<d_getprotoent_r>, C<d_getprotoprotos>,
10380 C<d_getprpwnam>, C<d_getpwent>, C<d_getpwent_r>, C<d_getpwnam_r>,
10381 C<d_getpwuid_r>, C<d_getsbyname>, C<d_getsbyport>, C<d_getsent>,
10382 C<d_getservbyname_r>, C<d_getservbyport_r>, C<d_getservent_r>,
10383 C<d_getservprotos>, C<d_getspnam>, C<d_getspnam_r>, C<d_gettimeod>,
10384 C<d_gmtime_r>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>, C<d_htonl>,
10385 C<d_index>, C<d_inetaton>, C<d_int64_t>, C<d_isascii>, C<d_isfinite>,
10386 C<d_isinf>, C<d_isnan>, C<d_isnanl>, C<d_killpg>, C<d_lchown>,
10387 C<d_ldbl_dig>, C<d_link>, C<d_localtime_r>, C<d_locconv>, C<d_lockf>,
10388 C<d_longdbl>, C<d_longlong>, C<d_lseekproto>, C<d_lstat>, C<d_madvise>,
10389 C<d_mblen>, C<d_mbstowcs>, C<d_mbtowc>, C<d_memchr>, C<d_memcmp>,
10390 C<d_memcpy>, C<d_memmove>, C<d_memset>, C<d_mkdir>, C<d_mkdtemp>,
10391 C<d_mkfifo>, C<d_mkstemp>, C<d_mkstemps>, C<d_mktime>, C<d_mmap>,
10392 C<d_modfl>, C<d_modfl_pow32_bug>, C<d_mprotect>, C<d_msg>, C<d_msg_ctrunc>,
10393 C<d_msg_dontroute>, C<d_msg_oob>, C<d_msg_peek>, C<d_msg_proxy>,
10394 C<d_msgctl>, C<d_msgget>, C<d_msghdr_s>, C<d_msgrcv>, C<d_msgsnd>,
10395 C<d_msync>, C<d_munmap>, C<d_mymalloc>, C<d_nice>, C<d_nl_langinfo>,
10396 C<d_nv_preserves_uv>, C<d_off64_t>, C<d_old_pthread_create_joinable>,
10397 C<d_oldpthreads>, C<d_oldsock>, C<d_open3>, C<d_pathconf>, C<d_pause>,
10398 C<d_perl_otherlibdirs>, C<d_phostname>, C<d_pipe>, C<d_poll>,
10399 C<d_portable>, C<d_PRId64>, C<d_PRIeldbl>, C<d_PRIEUldbl>, C<d_PRIfldbl>,
10400 C<d_PRIFUldbl>, C<d_PRIgldbl>, C<d_PRIGUldbl>, C<d_PRIi64>, C<d_PRIo64>,
10401 C<d_PRIu64>, C<d_PRIx64>, C<d_PRIXU64>, C<d_procselfexe>,
10402 C<d_pthread_atfork>, C<d_pthread_yield>, C<d_pwage>, C<d_pwchange>,
10403 C<d_pwclass>, C<d_pwcomment>, C<d_pwexpire>, C<d_pwgecos>, C<d_pwpasswd>,
10404 C<d_pwquota>, C<d_qgcvt>, C<d_quad>, C<d_random_r>, C<d_readdir64_r>,
10405 C<d_readdir>, C<d_readdir_r>, C<d_readlink>, C<d_readv>, C<d_recvmsg>,
10406 C<d_rename>, C<d_rewinddir>, C<d_rmdir>, C<d_safebcpy>, C<d_safemcpy>,
10407 C<d_sanemcmp>, C<d_sbrkproto>, C<d_sched_yield>, C<d_scm_rights>,
10408 C<d_SCNfldbl>, C<d_seekdir>, C<d_select>, C<d_sem>, C<d_semctl>,
10409 C<d_semctl_semid_ds>, C<d_semctl_semun>, C<d_semget>, C<d_semop>,
10410 C<d_sendmsg>, C<d_setegid>, C<d_seteuid>, C<d_setgrent>, C<d_setgrent_r>,
10411 C<d_setgrps>, C<d_sethent>, C<d_sethostent_r>, C<d_setitimer>,
10412 C<d_setlinebuf>, C<d_setlocale>, C<d_setlocale_r>, C<d_setnent>,
10413 C<d_setnetent_r>, C<d_setpent>, C<d_setpgid>, C<d_setpgrp2>, C<d_setpgrp>,
10414 C<d_setprior>, C<d_setproctitle>, C<d_setprotoent_r>, C<d_setpwent>,
10415 C<d_setpwent_r>, C<d_setregid>, C<d_setresgid>, C<d_setresuid>,
10416 C<d_setreuid>, C<d_setrgid>, C<d_setruid>, C<d_setsent>, C<d_setservent_r>,
10417 C<d_setsid>, C<d_setvbuf>, C<d_sfio>, C<d_shm>, C<d_shmat>,
10418 C<d_shmatprototype>, C<d_shmctl>, C<d_shmdt>, C<d_shmget>, C<d_sigaction>,
10419 C<d_sigprocmask>, C<d_sigsetjmp>, C<d_sockatmark>, C<d_sockatmarkproto>,
10420 C<d_socket>, C<d_socklen_t>, C<d_sockpair>, C<d_socks5_init>, C<d_sqrtl>,
10421 C<d_srand48_r>, C<d_srandom_r>, C<d_sresgproto>, C<d_sresuproto>,
10422 C<d_statblks>, C<d_statfs_f_flags>, C<d_statfs_s>, C<d_statvfs>,
10423 C<d_stdio_cnt_lval>, C<d_stdio_ptr_lval>, C<d_stdio_ptr_lval_nochange_cnt>,
10424 C<d_stdio_ptr_lval_sets_cnt>, C<d_stdio_stream_array>, C<d_stdiobase>,
10425 C<d_stdstdio>, C<d_strchr>, C<d_strcoll>, C<d_strctcpy>, C<d_strerrm>,
10426 C<d_strerror>, C<d_strerror_r>, C<d_strftime>, C<d_strtod>, C<d_strtol>,
10427 C<d_strtold>, C<d_strtoll>, C<d_strtoq>, C<d_strtoul>, C<d_strtoull>,
10428 C<d_strtouq>, C<d_strxfrm>, C<d_suidsafe>, C<d_symlink>, C<d_syscall>,
10429 C<d_syscallproto>, C<d_sysconf>, C<d_sysernlst>, C<d_syserrlst>,
10430 C<d_system>, C<d_tcgetpgrp>, C<d_tcsetpgrp>, C<d_telldir>,
10431 C<d_telldirproto>, C<d_time>, C<d_times>, C<d_tm_tm_gmtoff>,
10432 C<d_tm_tm_zone>, C<d_tmpnam_r>, C<d_truncate>, C<d_ttyname_r>, C<d_tzname>,
10433 C<d_u32align>, C<d_ualarm>, C<d_umask>, C<d_uname>, C<d_union_semun>,
10434 C<d_unordered>, C<d_usleep>, C<d_usleepproto>, C<d_ustat>, C<d_vendorarch>,
10435 C<d_vendorbin>, C<d_vendorlib>, C<d_vfork>, C<d_void_closedir>,
10436 C<d_voidsig>, C<d_voidtty>, C<d_volatile>, C<d_vprintf>, C<d_wait4>,
10437 C<d_waitpid>, C<d_wcstombs>, C<d_wctomb>, C<d_writev>, C<d_xenix>, C<date>,
10438 C<db_hashtype>, C<db_prefixtype>, C<db_version_major>, C<db_version_minor>,
10439 C<db_version_patch>, C<defvoidused>, C<direntrytype>, C<dlext>, C<dlsrc>,
10440 C<doublesize>, C<drand01>, C<drand48_r_proto>, C<dynamic_ext>
10441
10442 =item e
10443
10444 C<eagain>, C<ebcdic>, C<echo>, C<egrep>, C<emacs>, C<endgrent_r_proto>,
10445 C<endhostent_r_proto>, C<endnetent_r_proto>, C<endprotoent_r_proto>,
10446 C<endpwent_r_proto>, C<endservent_r_proto>, C<eunicefix>, C<exe_ext>,
10447 C<expr>, C<extensions>, C<extras>
10448
10449 =item f
10450
10451 C<fflushall>, C<fflushNULL>, C<find>, C<firstmakefile>, C<flex>,
10452 C<fpossize>, C<fpostype>, C<freetype>, C<from>, C<full_ar>, C<full_csh>,
10453 C<full_sed>
10454
10455 =item g
10456
10457 C<gccosandvers>, C<gccversion>, C<getgrent_r_proto>, C<getgrgid_r_proto>,
10458 C<getgrnam_r_proto>, C<gethostbyaddr_r_proto>, C<gethostbyname_r_proto>,
10459 C<gethostent_r_proto>, C<getlogin_r_proto>, C<getnetbyaddr_r_proto>,
10460 C<getnetbyname_r_proto>, C<getnetent_r_proto>, C<getprotobyname_r_proto>,
10461 C<getprotobynumber_r_proto>, C<getprotoent_r_proto>, C<getpwent_r_proto>,
10462 C<getpwnam_r_proto>, C<getpwuid_r_proto>, C<getservbyname_r_proto>,
10463 C<getservbyport_r_proto>, C<getservent_r_proto>, C<getspnam_r_proto>,
10464 C<gidformat>, C<gidsign>, C<gidsize>, C<gidtype>, C<glibpth>, C<gmake>,
10465 C<gmtime_r_proto>, C<grep>, C<groupcat>, C<groupstype>, C<gzip>
10466
10467 =item h
10468
10469 C<h_fcntl>, C<h_sysfile>, C<hint>, C<hostcat>
10470
10471 =item i
10472
10473 C<i16size>, C<i16type>, C<i32size>, C<i32type>, C<i64size>, C<i64type>,
10474 C<i8size>, C<i8type>, C<i_arpainet>, C<i_bsdioctl>, C<i_crypt>, C<i_db>,
10475 C<i_dbm>, C<i_dirent>, C<i_dld>, C<i_dlfcn>, C<i_fcntl>, C<i_float>,
10476 C<i_fp>, C<i_fp_class>, C<i_gdbm>, C<i_grp>, C<i_ieeefp>, C<i_inttypes>,
10477 C<i_langinfo>, C<i_libutil>, C<i_limits>, C<i_locale>, C<i_machcthr>,
10478 C<i_malloc>, C<i_math>, C<i_memory>, C<i_mntent>, C<i_ndbm>, C<i_netdb>,
10479 C<i_neterrno>, C<i_netinettcp>, C<i_niin>, C<i_poll>, C<i_prot>,
10480 C<i_pthread>, C<i_pwd>, C<i_rpcsvcdbm>, C<i_sfio>, C<i_sgtty>, C<i_shadow>,
10481 C<i_socks>, C<i_stdarg>, C<i_stddef>, C<i_stdlib>, C<i_string>,
10482 C<i_sunmath>, C<i_sysaccess>, C<i_sysdir>, C<i_sysfile>, C<i_sysfilio>,
10483 C<i_sysin>, C<i_sysioctl>, C<i_syslog>, C<i_sysmman>, C<i_sysmode>,
10484 C<i_sysmount>, C<i_sysndir>, C<i_sysparam>, C<i_sysresrc>, C<i_syssecrt>,
10485 C<i_sysselct>, C<i_syssockio>, C<i_sysstat>, C<i_sysstatfs>,
10486 C<i_sysstatvfs>, C<i_systime>, C<i_systimek>, C<i_systimes>, C<i_systypes>,
10487 C<i_sysuio>, C<i_sysun>, C<i_sysutsname>, C<i_sysvfs>, C<i_syswait>,
10488 C<i_termio>, C<i_termios>, C<i_time>, C<i_unistd>, C<i_ustat>, C<i_utime>,
10489 C<i_values>, C<i_varargs>, C<i_varhdr>, C<i_vfork>,
10490 C<ignore_versioned_solibs>, C<inc_version_list>, C<inc_version_list_init>,
10491 C<incpath>, C<inews>, C<installarchlib>, C<installbin>, C<installman1dir>,
10492 C<installman3dir>, C<installprefix>, C<installprefixexp>,
10493 C<installprivlib>, C<installscript>, C<installsitearch>, C<installsitebin>,
10494 C<installsitelib>, C<installstyle>, C<installusrbinperl>,
10495 C<installvendorarch>, C<installvendorbin>, C<installvendorlib>, C<intsize>,
10496 C<issymlink>, C<ivdformat>, C<ivsize>, C<ivtype>
10497
10498 =item k
10499
10500 C<known_extensions>, C<ksh>
10501
10502 =item l
10503
10504 C<ld>, C<lddlflags>, C<ldflags>, C<ldflags_uselargefiles>, C<ldlibpthname>,
10505 C<less>, C<lib_ext>, C<libc>, C<libperl>, C<libpth>, C<libs>, C<libsdirs>,
10506 C<libsfiles>, C<libsfound>, C<libspath>, C<libswanted>,
10507 C<libswanted_uselargefiles>, C<line>, C<lint>, C<lkflags>, C<ln>, C<lns>,
10508 C<localtime_r_proto>, C<locincpth>, C<loclibpth>, C<longdblsize>,
10509 C<longlongsize>, C<longsize>, C<lp>, C<lpr>, C<ls>, C<lseeksize>,
10510 C<lseektype>
10511
10512 =item m
10513
10514 C<mail>, C<mailx>, C<make>, C<make_set_make>, C<mallocobj>, C<mallocsrc>,
10515 C<malloctype>, C<man1dir>, C<man1direxp>, C<man1ext>, C<man3dir>,
10516 C<man3direxp>, C<man3ext>
10517
10518 =item M
10519
10520 C<Mcc>, C<mips_type>, C<mkdir>, C<mmaptype>, C<modetype>, C<more>,
10521 C<multiarch>, C<mv>, C<myarchname>, C<mydomain>, C<myhostname>, C<myuname>
10522
10523 =item n
10524
10525 C<n>, C<need_va_copy>, C<netdb_hlen_type>, C<netdb_host_type>,
10526 C<netdb_name_type>, C<netdb_net_type>, C<nm>, C<nm_opt>, C<nm_so_opt>,
10527 C<nonxs_ext>, C<nroff>, C<nv_preserves_uv_bits>, C<nveformat>,
10528 C<nvEUformat>, C<nvfformat>, C<nvFUformat>, C<nvgformat>, C<nvGUformat>,
10529 C<nvsize>, C<nvtype>
10530
10531 =item o
10532
10533 C<o_nonblock>, C<obj_ext>, C<old_pthread_create_joinable>, C<optimize>,
10534 C<orderlib>, C<osname>, C<osvers>, C<otherlibdirs>
10535
10536 =item p
10537
10538 C<package>, C<pager>, C<passcat>, C<patchlevel>, C<path_sep>, C<perl5>,
10539 C<perl>, C<perl_patchlevel>
10540
10541 =item P
10542
10543 C<PERL_REVISION>, C<PERL_SUBVERSION>, C<PERL_VERSION>, C<perladmin>,
10544 C<perllibs>, C<perlpath>, C<pg>, C<phostname>, C<pidtype>, C<plibpth>,
10545 C<pm_apiversion>, C<pmake>, C<pr>, C<prefix>, C<prefixexp>, C<privlib>,
10546 C<privlibexp>, C<procselfexe>, C<prototype>, C<ptrsize>
10547
10548 =item q
10549
10550 C<quadkind>, C<quadtype>
10551
10552 =item r
10553
10554 C<randbits>, C<randfunc>, C<random_r_proto>, C<randseedtype>, C<ranlib>,
10555 C<rd_nodata>, C<readdir64_r_proto>, C<readdir_r_proto>, C<revision>, C<rm>,
10556 C<rmail>, C<run>, C<runnm>
10557
10558 =item s
10559
10560 C<sched_yield>, C<scriptdir>, C<scriptdirexp>, C<sed>, C<seedfunc>,
10561 C<selectminbits>, C<selecttype>, C<sendmail>, C<setgrent_r_proto>,
10562 C<sethostent_r_proto>, C<setlocale_r_proto>, C<setnetent_r_proto>,
10563 C<setprotoent_r_proto>, C<setpwent_r_proto>, C<setservent_r_proto>, C<sh>,
10564 C<shar>, C<sharpbang>, C<shmattype>, C<shortsize>, C<shrpenv>, C<shsharp>,
10565 C<sig_count>, C<sig_name>, C<sig_name_init>, C<sig_num>, C<sig_num_init>,
10566 C<sig_size>, C<signal_t>, C<sitearch>, C<sitearchexp>, C<sitebin>,
10567 C<sitebinexp>, C<sitelib>, C<sitelib_stem>, C<sitelibexp>, C<siteprefix>,
10568 C<siteprefixexp>, C<sizesize>, C<sizetype>, C<sleep>, C<smail>, C<so>,
10569 C<sockethdr>, C<socketlib>, C<socksizetype>, C<sort>, C<spackage>,
10570 C<spitshell>, C<sPRId64>, C<sPRIeldbl>, C<sPRIEUldbl>, C<sPRIfldbl>,
10571 C<sPRIFUldbl>, C<sPRIgldbl>, C<sPRIGUldbl>, C<sPRIi64>, C<sPRIo64>,
10572 C<sPRIu64>, C<sPRIx64>, C<sPRIXU64>, C<srand48_r_proto>,
10573 C<srandom_r_proto>, C<src>, C<sSCNfldbl>, C<ssizetype>, C<startperl>,
10574 C<startsh>, C<static_ext>, C<stdchar>, C<stdio_base>, C<stdio_bufsiz>,
10575 C<stdio_cnt>, C<stdio_filbuf>, C<stdio_ptr>, C<stdio_stream_array>,
10576 C<strerror_r_proto>, C<strings>, C<submit>, C<subversion>, C<sysman>
10577
10578 =item t
10579
10580 C<tail>, C<tar>, C<targetarch>, C<tbl>, C<tee>, C<test>, C<timeincl>,
10581 C<timetype>, C<tmpnam_r_proto>, C<to>, C<touch>, C<tr>, C<trnl>, C<troff>,
10582 C<ttyname_r_proto>
10583
10584 =item u
10585
10586 C<u16size>, C<u16type>, C<u32size>, C<u32type>, C<u64size>, C<u64type>,
10587 C<u8size>, C<u8type>, C<uidformat>, C<uidsign>, C<uidsize>, C<uidtype>,
10588 C<uname>, C<uniq>, C<uquadtype>, C<use5005threads>, C<use64bitall>,
10589 C<use64bitint>, C<usecrosscompile>, C<usedl>, C<useithreads>,
10590 C<uselargefiles>, C<uselongdouble>, C<usemorebits>, C<usemultiplicity>,
10591 C<usemymalloc>, C<usenm>, C<useopcode>, C<useperlio>, C<useposix>,
10592 C<usereentrant>, C<usesfio>, C<useshrplib>, C<usesocks>, C<usethreads>,
10593 C<usevendorprefix>, C<usevfork>, C<usrinc>, C<uuname>, C<uvoformat>,
10594 C<uvsize>, C<uvtype>, C<uvuformat>, C<uvxformat>, C<uvXUformat>
10595
10596 =item v
10597
10598 C<vendorarch>, C<vendorarchexp>, C<vendorbin>, C<vendorbinexp>,
10599 C<vendorlib>, C<vendorlib_stem>, C<vendorlibexp>, C<vendorprefix>,
10600 C<vendorprefixexp>, C<version>, C<version_patchlevel_string>,
10601 C<versiononly>, C<vi>, C<voidflags>
10602
10603 =item x
10604
10605 C<xlibpth>, C<xs_apiversion>
10606
10607 =item y
10608
10609 C<yacc>, C<yaccflags>
10610
10611 =item z
10612
10613 C<zcat>, C<zip>
10614
10615 =back
10616
10617 =item NOTE
10618
10619 =back
10620
10621 =head2 Cwd - get pathname of current working directory
10622
10623 =over 4
10624
10625 =item SYNOPSIS
10626
10627 =item DESCRIPTION
10628
10629 =over 4
10630
10631 =item getcwd and friends
10632
10633 getcwd, cwd, fastcwd, fastgetcwd
10634
10635 =item abs_path and friends
10636
10637 abs_path, realpath, fast_abs_path
10638
10639 =item $ENV{PWD}
10640
10641 =back
10642
10643 =item NOTES
10644
10645 =item SEE ALSO
10646
10647 =back
10648
10649 =head2 DB - programmatic interface to the Perl debugging API (draft,
10650 subject to
10651 change)
10652
10653 =over 4
10654
10655 =item SYNOPSIS
10656
10657 =item DESCRIPTION
10658
10659 =over 4
10660
10661 =item Global Variables
10662
10663  $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace,  @DB::args, 
10664 @DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
10665 $DB::lineno
10666
10667 =item API Methods
10668
10669 CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
10670 CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
10671
10672 =item Client Callback Methods
10673
10674 CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
10675 CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
10676 CLIENT->output(LIST)
10677
10678 =back
10679
10680 =item BUGS
10681
10682 =item AUTHOR
10683
10684 =back
10685
10686 =head2 DB_File - Perl5 access to Berkeley DB version 1.x
10687
10688 =over 4
10689
10690 =item SYNOPSIS
10691
10692 =item DESCRIPTION
10693
10694 B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
10695
10696 =over 4
10697
10698 =item Using DB_File with Berkeley DB version 2 or greater
10699
10700 =item Interface to Berkeley DB
10701
10702 =item Opening a Berkeley DB Database File
10703
10704 =item Default Parameters
10705
10706 =item In Memory Databases
10707
10708 =back
10709
10710 =item DB_HASH
10711
10712 =over 4
10713
10714 =item A Simple Example
10715
10716 =back
10717
10718 =item DB_BTREE
10719
10720 =over 4
10721
10722 =item Changing the BTREE sort order
10723
10724 =item Handling Duplicate Keys 
10725
10726 =item The get_dup() Method
10727
10728 =item The find_dup() Method
10729
10730 =item The del_dup() Method
10731
10732 =item Matching Partial Keys 
10733
10734 =back
10735
10736 =item DB_RECNO
10737
10738 =over 4
10739
10740 =item The 'bval' Option
10741
10742 =item A Simple Example
10743
10744 =item Extra RECNO Methods
10745
10746 B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
10747 B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
10748 length, elements);>
10749
10750 =item Another Example
10751
10752 =back
10753
10754 =item THE API INTERFACE
10755
10756 B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
10757 $X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
10758 $flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
10759 $value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
10760
10761 =item DBM FILTERS
10762
10763 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
10764 B<filter_fetch_value>
10765
10766 =over 4
10767
10768 =item The Filter
10769
10770 =item An Example -- the NULL termination problem.
10771
10772 =item Another Example -- Key is a C int.
10773
10774 =back
10775
10776 =item HINTS AND TIPS 
10777
10778 =over 4
10779
10780 =item Locking: The Trouble with fd
10781
10782 =item Safe ways to lock a database
10783
10784 B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
10785
10786 =item Sharing Databases With C Applications
10787
10788 =item The untie() Gotcha
10789
10790 =back
10791
10792 =item COMMON QUESTIONS
10793
10794 =over 4
10795
10796 =item Why is there Perl source in my database?
10797
10798 =item How do I store complex data structures with DB_File?
10799
10800 =item What does "Invalid Argument" mean?
10801
10802 =item What does "Bareword 'DB_File' not allowed" mean? 
10803
10804 =back
10805
10806 =item REFERENCES
10807
10808 =item HISTORY
10809
10810 =item BUGS
10811
10812 =item AVAILABILITY
10813
10814 =item COPYRIGHT
10815
10816 =item SEE ALSO
10817
10818 =item AUTHOR
10819
10820 =back
10821
10822 =head2 Data::Dumper - stringified perl data structures, suitable for both
10823 printing and C<eval>
10824
10825 =over 4
10826
10827 =item SYNOPSIS
10828
10829 =item DESCRIPTION
10830
10831 =over 4
10832
10833 =item Methods
10834
10835 I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
10836 I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
10837 I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
10838 I<$OBJ>->Reset
10839
10840 =item Functions
10841
10842 Dumper(I<LIST>)
10843
10844 =item Configuration Variables or Methods
10845
10846 $Data::Dumper::Indent  I<or>  I<$OBJ>->Indent(I<[NEWVAL]>),
10847 $Data::Dumper::Purity  I<or>  I<$OBJ>->Purity(I<[NEWVAL]>),
10848 $Data::Dumper::Pad  I<or>  I<$OBJ>->Pad(I<[NEWVAL]>),
10849 $Data::Dumper::Varname  I<or>  I<$OBJ>->Varname(I<[NEWVAL]>),
10850 $Data::Dumper::Useqq  I<or>  I<$OBJ>->Useqq(I<[NEWVAL]>),
10851 $Data::Dumper::Terse  I<or>  I<$OBJ>->Terse(I<[NEWVAL]>),
10852 $Data::Dumper::Freezer  I<or>  $I<OBJ>->Freezer(I<[NEWVAL]>),
10853 $Data::Dumper::Toaster  I<or>  $I<OBJ>->Toaster(I<[NEWVAL]>),
10854 $Data::Dumper::Deepcopy  I<or>  $I<OBJ>->Deepcopy(I<[NEWVAL]>),
10855 $Data::Dumper::Quotekeys  I<or>  $I<OBJ>->Quotekeys(I<[NEWVAL]>),
10856 $Data::Dumper::Bless  I<or>  $I<OBJ>->Bless(I<[NEWVAL]>),
10857 $Data::Dumper::Maxdepth  I<or>  $I<OBJ>->Maxdepth(I<[NEWVAL]>),
10858 $Data::Dumper::Useperl  I<or>  $I<OBJ>->Useperl(I<[NEWVAL]>),
10859 $Data::Dumper::Sortkeys  I<or>  $I<OBJ>->Sortkeys(I<[NEWVAL]>),
10860 $Data::Dumper::Deparse  I<or>  $I<OBJ>->Deparse(I<[NEWVAL]>)
10861
10862 =item Exports
10863
10864 Dumper
10865
10866 =back
10867
10868 =item EXAMPLES
10869
10870 =item BUGS
10871
10872 =item AUTHOR
10873
10874 =item VERSION
10875
10876 =item SEE ALSO
10877
10878 =back
10879
10880 =head2 Devel::DProf - a Perl code profiler
10881
10882 =over 4
10883
10884 =item SYNOPSIS
10885
10886 =item DESCRIPTION
10887
10888 =item PROFILE FORMAT
10889
10890 =item AUTOLOAD
10891
10892 =item ENVIRONMENT
10893
10894 =item BUGS
10895
10896 =item SEE ALSO
10897
10898 =back
10899
10900 =head2 Devel::PPPort, Perl/Pollution/Portability
10901
10902 =over 4
10903
10904 =item SYNOPSIS
10905
10906 =item DESCRIPTION
10907
10908 =over 4
10909
10910 =item WriteFile
10911
10912 =back
10913
10914 =item ppport.h
10915
10916 =item AUTHOR
10917
10918 =item SEE ALSO
10919
10920 =back
10921
10922 =head2 Devel::Peek - A data debugging tool for the XS programmer
10923
10924 =over 4
10925
10926 =item SYNOPSIS
10927
10928 =item DESCRIPTION
10929
10930 =over 4
10931
10932 =item Runtime debugging
10933
10934 =item Memory footprint debugging
10935
10936 =back
10937
10938 =item EXAMPLES
10939
10940 =over 4
10941
10942 =item A simple scalar string
10943
10944 =item A simple scalar number
10945
10946 =item A simple scalar with an extra reference
10947
10948 =item A reference to a simple scalar
10949
10950 =item A reference to an array
10951
10952 =item A reference to a hash
10953
10954 =item Dumping a large array or hash
10955
10956 =item A reference to an SV which holds a C pointer
10957
10958 =item A reference to a subroutine
10959
10960 =back
10961
10962 =item EXPORTS
10963
10964 =item BUGS
10965
10966 =item AUTHOR
10967
10968 =item SEE ALSO
10969
10970 =back
10971
10972 =head2 Devel::SelfStubber - generate stubs for a SelfLoading module
10973
10974 =over 4
10975
10976 =item SYNOPSIS
10977
10978 =item DESCRIPTION
10979
10980 =back
10981
10982 =head2 Digest:: - Modules that calculate message digests
10983
10984 =over 4
10985
10986 =item SYNOPSIS
10987
10988 =item DESCRIPTION
10989
10990 I<binary>, I<hex>, I<base64>
10991
10992 =item OO INTERFACE
10993
10994 $ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
10995 Digest::XXX->new($arg,...), $ctx->reset, $ctx->add($data,...),
10996 $ctx->addfile($io_handle), $ctx->digest, $ctx->hexdigest, $ctx->b64digest
10997
10998 =item SEE ALSO
10999
11000 =item AUTHOR
11001
11002 =back
11003
11004 =head2 Digest::MD5 - Perl interface to the MD5 Algorithm
11005
11006 =over 4
11007
11008 =item SYNOPSIS
11009
11010 =item DESCRIPTION
11011
11012 =item FUNCTIONS
11013
11014 md5($data,...), md5_hex($data,...), md5_base64($data,...)
11015
11016 =item METHODS
11017
11018 $md5 = Digest::MD5->new, $md5->reset, $md5->add($data,...),
11019 $md5->addfile($io_handle), $md5->digest, $md5->hexdigest, $md5->b64digest
11020
11021 =item EXAMPLES
11022
11023 =item SEE ALSO
11024
11025 =item COPYRIGHT
11026
11027 =item AUTHORS
11028
11029 =back
11030
11031 =head2 DirHandle - supply object methods for directory handles
11032
11033 =over 4
11034
11035 =item SYNOPSIS
11036
11037 =item DESCRIPTION
11038
11039 =item NOTES
11040
11041 =back
11042
11043 =head2 Dumpvalue - provides screen dump of Perl data.
11044
11045 =over 4
11046
11047 =item SYNOPSIS
11048
11049 =item DESCRIPTION
11050
11051 =over 4
11052
11053 =item Creation
11054
11055 C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
11056 C<dumpDBFiles>, C<dumpPackages>, C<dumpReused>, C<tick>, C<quoteHighBit>,
11057 C<printUndef>, C<usageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
11058 stopDbSignal
11059
11060 =item Methods
11061
11062 dumpValue, dumpValues, stringify, dumpvars, set_quote, set_unctrl,
11063 compactDump, veryCompact, set, get
11064
11065 =back
11066
11067 =back
11068
11069 =head2 DynaLoader - Dynamically load C libraries into Perl code
11070
11071 =over 4
11072
11073 =item SYNOPSIS
11074
11075 =item DESCRIPTION
11076
11077 @dl_library_path, @dl_resolve_using, @dl_require_symbols, @dl_librefs,
11078 @dl_modules, dl_error(), $dl_debug, dl_findfile(), dl_expandspec(),
11079 dl_load_file(), dl_unload_file(), dl_loadflags(), dl_find_symbol(),
11080 dl_find_symbol_anywhere(), dl_undef_symbols(), dl_install_xsub(),
11081 bootstrap()
11082
11083 =item AUTHOR
11084
11085 =back
11086
11087 =head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
11088 Perl code
11089
11090 =over 4
11091
11092 =item SYNOPSIS
11093
11094 =item DESCRIPTION
11095
11096 =item AUTHOR
11097
11098 =back
11099
11100 =head2 Encode - character encodings
11101
11102 =over 4
11103
11104 =item SYNOPSIS
11105
11106 =over 4
11107
11108 =item Table of Contents
11109
11110 =back
11111
11112 =item DESCRIPTION
11113
11114 =over 4
11115
11116 =item TERMINOLOGY
11117
11118 =back
11119
11120 =item PERL ENCODING API
11121
11122 $octets  = encode(ENCODING, $string [, CHECK]), $string = decode(ENCODING,
11123 $octets [, CHECK]), [$length =] from_to($octets, FROM_ENC, TO_ENC [,
11124 CHECK]), $octets = encode_utf8($string);, $string = decode_utf8($octets [,
11125 CHECK]);
11126
11127 =over 4
11128
11129 =item Listing available encodings
11130
11131 =item Defining Aliases
11132
11133 =back
11134
11135 =item Encoding via PerlIO
11136
11137 =item Handling Malformed Data
11138
11139 I<CHECK> = Encode::FB_DEFAULT ( == 0), I<CHECK> = Encode::FB_CROAK ( == 1),
11140 I<CHECK> = Encode::FB_QUIET, I<CHECK> = Encode::FB_WARN, perlqq mode
11141 (I<CHECK> = Encode::FB_PERLQQ), HTML charref mode (I<CHECK> =
11142 Encode::FB_HTMLCREF), XML charref mode (I<CHECK> = Encode::FB_XMLCREF), The
11143 bitmask
11144
11145 =over 4
11146
11147 =item Unimplemented fallback schemes
11148
11149 =back
11150
11151 =item Defining Encodings
11152
11153 =item The UTF-8 flag
11154
11155 Goal #1:, Goal #2:, Goal #3:, Goal #4:
11156
11157 =over 4
11158
11159 =item Messing with Perl's Internals
11160
11161 is_utf8(STRING [, CHECK]), _utf8_on(STRING), _utf8_off(STRING)
11162
11163 =back
11164
11165 =item SEE ALSO
11166
11167 =item MAINTAINER
11168
11169 =back
11170
11171 =head2 Encode::Alias - alias definitions to encodings
11172
11173 =over 4
11174
11175 =item SYNOPSIS
11176
11177 =item DESCRIPTION
11178
11179 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
11180 reference, e.g.:
11181
11182 =over 4
11183
11184 =item Alias overloading
11185
11186 =back
11187
11188 =item SEE ALSO
11189
11190 =back
11191
11192 =head2 Encode::Byte - Single Byte Encodings
11193
11194 =over 4
11195
11196 =item SYNOPSIS
11197
11198 =item ABSTRACT
11199
11200 =item DESCRIPTION
11201
11202 =item SEE ALSO
11203
11204 =back
11205
11206 =head2   Encode::CJKConstants -- Internally used by Encode::??::ISO_2022_*
11207
11208 =head2 Encode::CN - China-based Chinese Encodings
11209
11210 =over 4
11211
11212 =item SYNOPSIS
11213
11214 =item DESCRIPTION
11215
11216 =item NOTES
11217
11218 =item BUGS
11219
11220 =item SEE ALSO
11221
11222 =back
11223
11224 =head2 Encode::CN::HZ -- internally used by Encode::CN
11225
11226 =head2 Encode::Config -- internally used by Encode
11227
11228 =head2 Encode::EBCDIC - EBCDIC Encodings
11229
11230 =over 4
11231
11232 =item SYNOPSIS
11233
11234 =item ABSTRACT
11235
11236 =item DESCRIPTION
11237
11238 =item SEE ALSO
11239
11240 =back
11241
11242 =head2 Encode::Encoding - Encode Implementation Base Class
11243
11244 =over 4
11245
11246 =item SYNOPSIS
11247
11248 =item DESCRIPTION
11249
11250 =over 4
11251
11252 =item Methods you should implement
11253
11254 -E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check])
11255
11256 =item Other methods defined in Encode::Encodings
11257
11258 -E<gt>name, -E<gt>new_sequence, -E<gt>perlio_ok(), -E<gt>needs_lines()
11259
11260 =item Example: Encode::ROT13
11261
11262 =back
11263
11264 =item Why the heck Encode API is different?
11265
11266 =over 4
11267
11268 =item Compiled Encodings
11269
11270 =back
11271
11272 =item SEE ALSO
11273
11274 Scheme 1, Scheme 2, Other Schemes
11275
11276 =back
11277
11278 =head2 Encode::Guess -- Guesses encoding from data
11279
11280 =over 4
11281
11282 =item SYNOPSIS
11283
11284 =item ABSTRACT
11285
11286 =item DESCRIPTION
11287
11288 Encode::Guess->set_suspects, Encode::Guess->add_suspects,
11289 Encode::decode("Guess" ...), Encode::Guess->guess($data),
11290 guess_encoding($data, [, I<list of suspects>])
11291
11292 =item CAVEATS
11293
11294 =item TO DO
11295
11296 =item SEE ALSO
11297
11298 =back
11299
11300 =head2 Encode::JP - Japanese Encodings
11301
11302 =over 4
11303
11304 =item SYNOPSIS
11305
11306 =item ABSTRACT
11307
11308 =item DESCRIPTION
11309
11310 =item Note on ISO-2022-JP(-1)?
11311
11312 =item BUGS
11313
11314 =item SEE ALSO
11315
11316 =back
11317
11318 =head2 Encode::JP::H2Z -- internally used by Encode::JP::2022_JP*
11319
11320 =head2 Encode::JP::JIS7 -- internally used by Encode::JP
11321
11322 =head2 Encode::KR - Korean Encodings
11323
11324 =over 4
11325
11326 =item SYNOPSIS
11327
11328 =item DESCRIPTION
11329
11330 =item BUGS
11331
11332 =item SEE ALSO
11333
11334 =back
11335
11336 =head2 Encode::KR::2022_KR -- internally used by Encode::KR
11337
11338 =head2 Encode::MIME::Header -- MIME 'B' and 'Q' header encoding
11339
11340 =over 4
11341
11342 =item SYNOPSIS
11343
11344 =item ABSTRACT
11345
11346 =item DESCRIPTION
11347
11348 =item BUGS
11349
11350 =item SEE ALSO
11351
11352 =back
11353
11354 =head2 Encode::PerlIO -- a detailed document on Encode and PerlIO
11355
11356 =over 4
11357
11358 =item Overview
11359
11360 =item How does it work?
11361
11362 =item BUGS
11363
11364 =over 4
11365
11366 =item Workaround
11367
11368 =item How can I tell whether my encoding fully supports PerlIO ?
11369
11370 =back
11371
11372 =item SEE ALSO
11373
11374 =back
11375
11376 =head2 Encode::Supported -- Encodings supported by Encode
11377
11378 =over 4
11379
11380 =item DESCRIPTION
11381
11382 =over 4
11383
11384 =item Encoding Names
11385
11386 =back
11387
11388 =item Supported Encodings
11389
11390 =over 4
11391
11392 =item Built-in Encodings
11393
11394 =item Encode::Unicode -- other Unicode encodings
11395
11396 =item Encode::Byte -- Extended ASCII
11397
11398 ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
11399 the Cyrillic world, gsm0338 - Hentai Latin 1
11400
11401 =item CJK: Chinese, Japanese, Korean (Multibyte)
11402
11403 Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
11404 Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
11405 Encode::JIS2K -- JIS X 0213 encodings via CPAN
11406
11407 =item Miscellaneous encodings
11408
11409 Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
11410
11411 =back
11412
11413 =item Unsupported encodings
11414
11415   ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
11416 Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
11417 System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
11418 Various Mac encodings, (Mac) Indic encodings
11419
11420 =item Encoding vs. Charset -- terminology
11421
11422 =item Encoding Classification (by Anton Tagunov and Dan Kogai)
11423
11424 =over 4
11425
11426 =item Microsoft-related naming mess
11427
11428 KS_C_5601-1987, GB2312, Big5, Shift_JIS
11429
11430 =back
11431
11432 =item Glossary
11433
11434 character repertoire, coded character set (CCS), character encoding scheme
11435 (CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
11436 UTF-16
11437
11438 =item See Also
11439
11440 =item References
11441
11442 ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
11443 RFC, UC, Unicode Glossary
11444
11445 =over 4
11446
11447 =item Other Notable Sites
11448
11449 czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
11450 "Introduction to i18n"
11451
11452 =item Offline sources
11453
11454 C<CJKV Information Processing> by Ken Lunde
11455
11456 =back
11457
11458 =back
11459
11460 =head2 Encode::Symbol - Symbol Encodings
11461
11462 =over 4
11463
11464 =item SYNOPSIS
11465
11466 =item ABSTRACT
11467
11468 =item DESCRIPTION
11469
11470 =item SEE ALSO
11471
11472 =back
11473
11474 =head2 Encode::TW - Taiwan-based Chinese Encodings
11475
11476 =over 4
11477
11478 =item SYNOPSIS
11479
11480 =item DESCRIPTION
11481
11482 =item NOTES
11483
11484 =item BUGS
11485
11486 =item SEE ALSO
11487
11488 =back
11489
11490 =head2 Encode::Unicode -- Various Unicode Transformation Formats
11491
11492 =over 4
11493
11494 =item SYNOPSIS
11495
11496 =item ABSTRACT
11497
11498 L<http://www.unicode.org/glossary/> says:, Quick Reference
11499
11500 =item Size, Endianness, and BOM
11501
11502 =over 4
11503
11504 =item by size
11505
11506 =item by endianness
11507
11508 BOM as integer when fetched in network byte order
11509
11510 =back
11511
11512 =item Surrogate Pairs
11513
11514 =item SEE ALSO
11515
11516 =back
11517
11518 =head2 Encode::lib::Encode::Alias, Encode::Alias - alias definitions to
11519 encodings
11520
11521 =over 4
11522
11523 =item SYNOPSIS
11524
11525 =item DESCRIPTION
11526
11527 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
11528 reference, e.g.:
11529
11530 =over 4
11531
11532 =item Alias overloading
11533
11534 =back
11535
11536 =item SEE ALSO
11537
11538 =back
11539
11540 =head2 Encode::lib::Encode::CJKConstants,   Encode::CJKConstants.pm --
11541 Internally used by Encode::??::ISO_2022_*
11542
11543 =head2 Encode::lib::Encode::CN::HZ, Encode::CN::HZ -- internally used by
11544 Encode::CN
11545
11546 =head2 Encode::lib::Encode::Config, Encode::Config -- internally used by
11547 Encode
11548
11549 =head2 Encode::lib::Encode::Encoding, Encode::Encoding - Encode
11550 Implementation Base Class
11551
11552 =over 4
11553
11554 =item SYNOPSIS
11555
11556 =item DESCRIPTION
11557
11558 =over 4
11559
11560 =item Methods you should implement
11561
11562 -E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check])
11563
11564 =item Other methods defined in Encode::Encodings
11565
11566 -E<gt>name, -E<gt>new_sequence, -E<gt>perlio_ok(), -E<gt>needs_lines()
11567
11568 =item Example: Encode::ROT13
11569
11570 =back
11571
11572 =item Why the heck Encode API is different?
11573
11574 =over 4
11575
11576 =item Compiled Encodings
11577
11578 =back
11579
11580 =item SEE ALSO
11581
11582 Scheme 1, Scheme 2, Other Schemes
11583
11584 =back
11585
11586 =head2 Encode::lib::Encode::Guess, Encode::Guess -- Guesses encoding from
11587 data
11588
11589 =over 4
11590
11591 =item SYNOPSIS
11592
11593 =item ABSTRACT
11594
11595 =item DESCRIPTION
11596
11597 Encode::Guess->set_suspects, Encode::Guess->add_suspects,
11598 Encode::decode("Guess" ...), Encode::Guess->guess($data),
11599 guess_encoding($data, [, I<list of suspects>])
11600
11601 =item CAVEATS
11602
11603 =item TO DO
11604
11605 =item SEE ALSO
11606
11607 =back
11608
11609 =head2 Encode::lib::Encode::JP::H2Z, Encode::JP::H2Z -- internally used by
11610 Encode::JP::2022_JP*
11611
11612 =head2 Encode::lib::Encode::JP::JIS7, Encode::JP::JIS7 -- internally used
11613 by Encode::JP
11614
11615 =head2 Encode::lib::Encode::KR::2022_KR, Encode::KR::2022_KR -- internally
11616 used by Encode::KR
11617
11618 =head2 Encode::lib::Encode::MIME::Header, Encode::MIME::Header -- MIME 'B'
11619 and 'Q' header encoding
11620
11621 =over 4
11622
11623 =item SYNOPSIS
11624
11625 =item ABSTRACT
11626
11627 =item DESCRIPTION
11628
11629 =item BUGS
11630
11631 =item SEE ALSO
11632
11633 =back
11634
11635 =head2 Encode::lib::Encode::PerlIO, Encode::PerlIO -- a detailed document
11636 on Encode and PerlIO
11637
11638 =over 4
11639
11640 =item Overview
11641
11642 =item How does it work?
11643
11644 =item BUGS
11645
11646 =over 4
11647
11648 =item Workaround
11649
11650 =item How can I tell whether my encoding fully supports PerlIO ?
11651
11652 =back
11653
11654 =item SEE ALSO
11655
11656 =back
11657
11658 =head2 Encode::lib::Encode::Supported, Encode::Supported -- Encodings
11659 supported by Encode
11660
11661 =over 4
11662
11663 =item DESCRIPTION
11664
11665 =over 4
11666
11667 =item Encoding Names
11668
11669 =back
11670
11671 =item Supported Encodings
11672
11673 =over 4
11674
11675 =item Built-in Encodings
11676
11677 =item Encode::Unicode -- other Unicode encodings
11678
11679 =item Encode::Byte -- Extended ASCII
11680
11681 ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
11682 the Cyrillic world, gsm0338 - Hentai Latin 1
11683
11684 =item CJK: Chinese, Japanese, Korean (Multibyte)
11685
11686 Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
11687 Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
11688 Encode::JIS2K -- JIS X 0213 encodings via CPAN
11689
11690 =item Miscellaneous encodings
11691
11692 Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
11693
11694 =back
11695
11696 =item Unsupported encodings
11697
11698   ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
11699 Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
11700 System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
11701 Various Mac encodings, (Mac) Indic encodings
11702
11703 =item Encoding vs. Charset -- terminology
11704
11705 =item Encoding Classification (by Anton Tagunov and Dan Kogai)
11706
11707 =over 4
11708
11709 =item Microsoft-related naming mess
11710
11711 KS_C_5601-1987, GB2312, Big5, Shift_JIS
11712
11713 =back
11714
11715 =item Glossary
11716
11717 character repertoire, coded character set (CCS), character encoding scheme
11718 (CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
11719 UTF-16
11720
11721 =item See Also
11722
11723 =item References
11724
11725 ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
11726 RFC, UC, Unicode Glossary
11727
11728 =over 4
11729
11730 =item Other Notable Sites
11731
11732 czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
11733 "Introduction to i18n"
11734
11735 =item Offline sources
11736
11737 C<CJKV Information Processing> by Ken Lunde
11738
11739 =back
11740
11741 =back
11742
11743 =head2 Encode::lib::Encoder, Encode::Encoder -- Object Oriented Encoder
11744
11745 =over 4
11746
11747 =item SYNOPSIS
11748
11749   use Encode::Encoder;
11750   # Encode::encode("ISO-8859-1", $data); 
11751   Encode::Encoder->new($data)->iso_8859_1; # OOP way
11752   # shortcut
11753   use Encode::Encoder qw(encoder);
11754   encoder($data)->iso_8859_1;
11755   # you can stack them!
11756   encoder($data)->iso_8859_1->base64;  # provided base64() is defined
11757   # you can use it as a decoder as well
11758   encoder($base64)->bytes('base64')->latin1;
11759   # stringified
11760   print encoder($data)->utf8->latin1;  # prints the string in latin1
11761   # numified
11762   encoder("\x{abcd}\x{ef}g")->utf8 == 6; # true. bytes::length($data)
11763
11764 =item ABSTRACT
11765
11766 =item Description
11767
11768 =over 4
11769
11770 =item Predefined Methods
11771
11772 $e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
11773 $e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
11774 $e-E<gt>bytes([$encoding])
11775
11776 =item Example: base64 transcoder
11777
11778 =item Operator Overloading
11779
11780 =back
11781
11782 =item SEE ALSO
11783
11784 =back
11785
11786 =head2 Encodencoding, encoding - allows you to write your script in
11787 non-ascii or non-utf8
11788
11789 =over 4
11790
11791 =item SYNOPSIS
11792
11793 =item ABSTRACT
11794
11795 =item USAGE
11796
11797 use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
11798 I<ENCNAME_IN> ...] ;, no encoding;
11799
11800 =item CAVEATS
11801
11802 =over 4
11803
11804 =item NOT SCOPED
11805
11806 =item DO NOT MIX MULTIPLE ENCODINGS
11807
11808 =back
11809
11810 =item Non-ASCII Identifiers and Filter option
11811
11812 use encoding I<ENCNAME> Filter=E<gt>1;
11813
11814 =item EXAMPLE - Greekperl
11815
11816 =item KNOWN PROBLEMS
11817
11818 =item SEE ALSO
11819
11820 =back
11821
11822 =head2 Encoder, Encode::Encoder -- Object Oriented Encoder
11823
11824 =over 4
11825
11826 =item SYNOPSIS
11827
11828   use Encode::Encoder;
11829   # Encode::encode("ISO-8859-1", $data); 
11830   Encode::Encoder->new($data)->iso_8859_1; # OOP way
11831   # shortcut
11832   use Encode::Encoder qw(encoder);
11833   encoder($data)->iso_8859_1;
11834   # you can stack them!
11835   encoder($data)->iso_8859_1->base64;  # provided base64() is defined
11836   # you can use it as a decoder as well
11837   encoder($base64)->bytes('base64')->latin1;
11838   # stringified
11839   print encoder($data)->utf8->latin1;  # prints the string in latin1
11840   # numified
11841   encoder("\x{abcd}\x{ef}g")->utf8 == 6; # true. bytes::length($data)
11842
11843 =item ABSTRACT
11844
11845 =item Description
11846
11847 =over 4
11848
11849 =item Predefined Methods
11850
11851 $e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
11852 $e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
11853 $e-E<gt>bytes([$encoding])
11854
11855 =item Example: base64 transcoder
11856
11857 =item Operator Overloading
11858
11859 =back
11860
11861 =item SEE ALSO
11862
11863 =back
11864
11865 =head2 English - use nice English (or awk) names for ugly punctuation
11866 variables
11867
11868 =over 4
11869
11870 =item SYNOPSIS
11871
11872 =item DESCRIPTION
11873
11874 =item PERFORMANCE
11875
11876 =back
11877
11878 =head2 Env - perl module that imports environment variables as scalars or
11879 arrays
11880
11881 =over 4
11882
11883 =item SYNOPSIS
11884
11885 =item DESCRIPTION
11886
11887 =item LIMITATIONS
11888
11889 =item AUTHOR
11890
11891 =back
11892
11893 =head2 Errno - System errno constants
11894
11895 =over 4
11896
11897 =item SYNOPSIS
11898
11899 =item DESCRIPTION
11900
11901 =item CAVEATS
11902
11903 =item AUTHOR
11904
11905 =item COPYRIGHT
11906
11907 =back
11908
11909 =head2 Exporter - Implements default import method for modules
11910
11911 =over 4
11912
11913 =item SYNOPSIS
11914
11915 =item DESCRIPTION
11916
11917 =over 4
11918
11919 =item How to Export
11920
11921 =item Selecting What To Export
11922
11923 =item How to Import
11924
11925 C<use ModuleName;>, C<use ModuleName ();>, C<use ModuleName qw(...);>
11926
11927 =back
11928
11929 =item Advanced features
11930
11931 =over 4
11932
11933 =item Specialised Import Lists
11934
11935 =item Exporting without using Exporter's import method
11936
11937 =item Module Version Checking
11938
11939 =item Managing Unknown Symbols
11940
11941 =item Tag Handling Utility Functions
11942
11943 =item Generating combined tags
11944
11945 =item C<AUTOLOAD>ed Constants
11946
11947 =back
11948
11949 =back
11950
11951 =head2 Exporter::Heavy - Exporter guts
11952
11953 =over 4
11954
11955 =item SYNOPSIS
11956
11957 =item DESCRIPTION
11958
11959 =back
11960
11961 =head2 ExtUtils::Command - utilities to replace common UNIX commands in
11962 Makefiles etc.
11963
11964 =over 4
11965
11966 =item SYNOPSIS
11967
11968 =item DESCRIPTION
11969
11970 =back
11971
11972 cat
11973
11974 eqtime src dst
11975
11976 rm_rf files...
11977
11978 rm_f files...
11979
11980 touch files ..
11981
11982 mv source... destination
11983
11984 cp source... destination
11985
11986 chmod mode files..
11987
11988 mkpath directory..
11989
11990 test_f file
11991
11992 =over 4
11993
11994 =item BUGS
11995
11996 =item SEE ALSO 
11997
11998 =item AUTHOR
11999
12000 =back
12001
12002 =head2 ExtUtils::Command::MM - Commands for the MM's to use in Makefiles
12003
12004 =over 4
12005
12006 =item SYNOPSIS
12007
12008 =item DESCRIPTION
12009
12010 B<test_harness>
12011
12012 =back
12013
12014 =head2 ExtUtils::Constant - generate XS code to import C header constants
12015
12016 =over 4
12017
12018 =item SYNOPSIS
12019
12020 =item DESCRIPTION
12021
12022 =item USAGE
12023
12024 IV, UV, NV, PV, PVN, SV, YES, NO, UNDEF
12025
12026 =item FUNCTIONS
12027
12028 =back
12029
12030 C_stringify NAME
12031
12032 perl_stringify NAME
12033
12034 constant_types
12035
12036 memEQ_clause NAME, CHECKED_AT, INDENT
12037
12038 assign INDENT, TYPE, PRE, POST, VALUE..
12039
12040 return_clause
12041
12042 switch_clause INDENT, NAMELEN, ITEMHASH, ITEM..
12043
12044 params WHAT
12045
12046 dump_names
12047
12048 dogfood
12049
12050 C_constant, name, type, value, macro, default, pre, post, def_pre =item
12051 def_post, utf8
12052
12053 XS_constant PACKAGE, TYPES, SUBNAME, C_SUBNAME
12054
12055 autoload PACKAGE, VERSION, AUTOLOADER
12056
12057 WriteMakefileSnippet
12058
12059 WriteConstants ATTRIBUTE =E<gt> VALUE [, ...], NAME, DEFAULT_TYPE,
12060 BREAKOUT_AT, NAMES, C_FILE, XS_FILE, SUBNAME, C_SUBNAME
12061
12062 =over 4
12063
12064 =item AUTHOR
12065
12066 =back
12067
12068 =head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
12069
12070 =over 4
12071
12072 =item SYNOPSIS
12073
12074 =item DESCRIPTION
12075
12076 =item @EXPORT
12077
12078 =item FUNCTIONS
12079
12080 xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
12081 ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
12082
12083 =item EXAMPLES
12084
12085 =item SEE ALSO
12086
12087 =item AUTHOR
12088
12089 =back
12090
12091 =head2 ExtUtils::Install - install files from here to there
12092
12093 =over 4
12094
12095 =item SYNOPSIS
12096
12097 =item DESCRIPTION
12098
12099 =back
12100
12101 =head2 ExtUtils::Installed - Inventory management of installed modules
12102
12103 =over 4
12104
12105 =item SYNOPSIS
12106
12107 =item DESCRIPTION
12108
12109 =item USAGE
12110
12111 =item FUNCTIONS
12112
12113 new(), modules(), files(), directories(), directory_tree(), validate(),
12114 packlist(), version()
12115
12116 =item EXAMPLE
12117
12118 =item AUTHOR
12119
12120 =back
12121
12122 =head2 ExtUtils::Liblist - determine libraries to use and how to use them
12123
12124 =over 4
12125
12126 =item SYNOPSIS
12127
12128 =item DESCRIPTION
12129
12130 For static extensions, For dynamic extensions at build/link time, For
12131 dynamic extensions at load time
12132
12133 =over 4
12134
12135 =item EXTRALIBS
12136
12137 =item LDLOADLIBS and LD_RUN_PATH
12138
12139 =item BSLOADLIBS
12140
12141 =back
12142
12143 =item PORTABILITY
12144
12145 =over 4
12146
12147 =item VMS implementation
12148
12149 =item Win32 implementation
12150
12151 =back
12152
12153 =item SEE ALSO
12154
12155 =back
12156
12157 =head2 ExtUtils::MM - OS adjusted ExtUtils::MakeMaker subclass
12158
12159 =over 4
12160
12161 =item SYNOPSIS
12162
12163 =item DESCRIPTION
12164
12165 =back
12166
12167 =head2 ExtUtils::MM_Any - Platform agnostic MM methods
12168
12169 =over 4
12170
12171 =item SYNOPSIS
12172
12173 =item DESCRIPTION
12174
12175 =item Inherently Cross-Platform Methods
12176
12177 =over 4
12178
12179 =item File::Spec wrappers  B<DEPRECATED>
12180
12181 canonpath
12182
12183 =back
12184
12185 =back
12186
12187 catdir
12188
12189 catfile
12190
12191 curdir
12192
12193 file_name_is_absolute
12194
12195 path
12196
12197 rootdir
12198
12199 updir
12200
12201 =over 4
12202
12203 =item Thought To Be Cross-Platform Methods
12204
12205 test_via_harness
12206
12207 =back
12208
12209 test_via_script
12210
12211 =over 4
12212
12213 =item AUTHOR
12214
12215 =back
12216
12217 =head2 ExtUtils::MM_BeOS - methods to override UN*X behaviour in
12218 ExtUtils::MakeMaker
12219
12220 =over 4
12221
12222 =item SYNOPSIS
12223
12224 =item DESCRIPTION
12225
12226 =back
12227
12228 perl_archive
12229
12230 =head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
12231 ExtUtils::MakeMaker
12232
12233 =over 4
12234
12235 =item SYNOPSIS
12236
12237 =item DESCRIPTION
12238
12239 canonpath, cflags, manifypods, perl_archive
12240
12241 =back
12242
12243 =head2 ExtUtils::MM_DOS - DOS specific subclass of ExtUtils::MM_Unix
12244
12245 =over 4
12246
12247 =item SYNOPSIS
12248
12249 =item DESCRIPTION
12250
12251 =over 4
12252
12253 =item Overridden methods
12254
12255 B<replace_manpage_separator>
12256
12257 =back
12258
12259 =back
12260
12261 =over 4
12262
12263 =item AUTHOR
12264
12265 =item SEE ALSO
12266
12267 =back
12268
12269 =head2 ExtUtils::MM_MacOS - methods to override UN*X behaviour in
12270 ExtUtils::MakeMaker
12271
12272 =over 4
12273
12274 =item SYNOPSIS
12275
12276 =item DESCRIPTION
12277
12278 =back
12279
12280 maybe_command
12281
12282 guess_name
12283
12284 macify
12285
12286 patternify
12287
12288 init_main
12289
12290 init_others
12291
12292 init_dirscan
12293
12294 libscan (o)
12295
12296 constants (o)
12297
12298 static (o)
12299
12300 dlsyms (o)
12301
12302 dynamic (o)
12303
12304 clean (o)
12305
12306 realclean (o)
12307
12308 rulez (o)
12309
12310 processPL (o)
12311
12312 =head2 ExtUtils::MM_NW5 - methods to override UN*X behaviour in
12313 ExtUtils::MakeMaker
12314
12315 =over 4
12316
12317 =item SYNOPSIS
12318
12319 =item DESCRIPTION
12320
12321 =back
12322
12323 constants (o)
12324
12325 static_lib (o)
12326
12327 dynamic_lib (o)
12328
12329 =head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
12330 ExtUtils::MakeMaker
12331
12332 =over 4
12333
12334 =item SYNOPSIS
12335
12336 =item DESCRIPTION
12337
12338 =item METHODS
12339
12340 =back
12341
12342 perl_archive_after
12343
12344 =head2 ExtUtils::MM_UWIN - U/WIN specific subclass of ExtUtils::MM_Unix
12345
12346 =over 4
12347
12348 =item SYNOPSIS
12349
12350 =item DESCRIPTION
12351
12352 =over 4
12353
12354 =item Overridden methods
12355
12356 B<replace_manpage_separator>
12357
12358 =back
12359
12360 =back
12361
12362 =over 4
12363
12364 =item AUTHOR
12365
12366 =item SEE ALSO
12367
12368 =back
12369
12370 =head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
12371
12372 =over 4
12373
12374 =item SYNOPSIS
12375
12376 =item DESCRIPTION
12377
12378 =item METHODS
12379
12380 =back
12381
12382 =over 4
12383
12384 =item SelfLoaded methods
12385
12386 c_o (o)
12387
12388 =back
12389
12390 cflags (o)
12391
12392 clean (o)
12393
12394 const_cccmd (o)
12395
12396 const_config (o)
12397
12398 const_loadlibs (o)
12399
12400 constants (o)
12401
12402 depend (o)
12403
12404 dir_target (o)
12405
12406 dist (o)
12407
12408 dist_basics (o)
12409
12410 dist_ci (o)
12411
12412 dist_core (o)
12413
12414 dist_dir
12415
12416 dist_test
12417
12418 dlsyms (o)
12419
12420 dynamic (o)
12421
12422 dynamic_bs (o)
12423
12424 dynamic_lib (o)
12425
12426 exescan
12427
12428 extliblist
12429
12430 find_perl
12431
12432 find_tests
12433
12434 =over 4
12435
12436 =item Methods to actually produce chunks of text for the Makefile
12437
12438 fixin
12439
12440 =back
12441
12442 force (o)
12443
12444 guess_name
12445
12446 has_link_code
12447
12448 init_dirscan
12449
12450 init_main
12451
12452 init_others
12453
12454 init_INST
12455
12456 init_INSTALL
12457
12458 init_lib2arch
12459
12460 init_PERL
12461
12462 init_PERM
12463
12464 install (o)
12465
12466 installbin (o)
12467
12468 libscan (o)
12469
12470 linkext (o)
12471
12472 lsdir
12473
12474 macro (o)
12475
12476 makeaperl (o)
12477
12478 makefile (o)
12479
12480 manifypods (o)
12481
12482 maybe_command
12483
12484 maybe_command_in_dirs
12485
12486 needs_linking (o)
12487
12488 nicetext
12489
12490 parse_abstract
12491
12492 parse_version
12493
12494 pasthru (o)
12495
12496 perl_script
12497
12498 perldepend (o)
12499
12500 perm_rw (o)
12501
12502 perm_rwx (o)
12503
12504 pm_to_blib
12505
12506 post_constants (o)
12507
12508 post_initialize (o)
12509
12510 postamble (o)
12511
12512 ppd
12513
12514 prefixify
12515
12516 processPL (o)
12517
12518 quote_paren
12519
12520 realclean (o)
12521
12522 replace_manpage_separator
12523
12524 static (o)
12525
12526 static_lib (o)
12527
12528 staticmake (o)
12529
12530 subdir_x (o)
12531
12532 subdirs (o)
12533
12534 test (o)
12535
12536 test_via_harness (override)
12537
12538 test_via_script (override)
12539
12540 tool_autosplit (o)
12541
12542 tools_other (o)
12543
12544 tool_xsubpp (o)
12545
12546 top_targets (o)
12547
12548 writedoc
12549
12550 xs_c (o)
12551
12552 xs_cpp (o)
12553
12554 xs_o (o)
12555
12556 perl_archive
12557
12558 perl_archive_after
12559
12560 export_list
12561
12562 =over 4
12563
12564 =item SEE ALSO
12565
12566 =back
12567
12568 =head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
12569 ExtUtils::MakeMaker
12570
12571 =over 4
12572
12573 =item SYNOPSIS
12574
12575 =item DESCRIPTION
12576
12577 =over 4
12578
12579 =item Methods always loaded
12580
12581 wraplist
12582
12583 =back
12584
12585 =back
12586
12587 =over 4
12588
12589 =item Methods
12590
12591 guess_name (override)
12592
12593 =back
12594
12595 find_perl (override)
12596
12597 maybe_command (override)
12598
12599 maybe_command_in_dirs (override)
12600
12601 perl_script (override)
12602
12603 replace_manpage_separator
12604
12605 init_main (override)
12606
12607 init_others (override)
12608
12609 constants (override)
12610
12611 cflags (override)
12612
12613 const_cccmd (override)
12614
12615 pm_to_blib (override)
12616
12617 tool_autosplit (override)
12618
12619 tool_sxubpp (override)
12620
12621 xsubpp_version (override)
12622
12623 tools_other (override)
12624
12625 dist (override)
12626
12627 c_o (override)
12628
12629 xs_c (override)
12630
12631 xs_o (override)
12632
12633 top_targets (override)
12634
12635 dlsyms (override)
12636
12637 dynamic_lib (override)
12638
12639 dynamic_bs (override)
12640
12641 static_lib (override)
12642
12643 manifypods (override)
12644
12645 processPL (override)
12646
12647 installbin (override)
12648
12649 subdir_x (override)
12650
12651 clean (override)
12652
12653 realclean (override)
12654
12655 dist_core (override)
12656
12657 dist_test (override)
12658
12659 install (override)
12660
12661 perldepend (override)
12662
12663 makefile (override)
12664
12665 find_tests (override)
12666
12667 test (override)
12668
12669 makeaperl (override)
12670
12671 nicetext (override)
12672
12673 prefixify (override)
12674
12675 =head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
12676 ExtUtils::MakeMaker
12677
12678 =over 4
12679
12680 =item SYNOPSIS
12681
12682 =item DESCRIPTION
12683
12684 =back
12685
12686 constants (o)
12687
12688 static_lib (o)
12689
12690 dynamic_bs (o)
12691
12692 dynamic_lib (o)
12693
12694 perl_script
12695
12696 pm_to_blib
12697
12698 tool_autosplit (override)
12699
12700 tools_other (o)
12701
12702 xs_o (o)
12703
12704 top_targets (o)
12705
12706 manifypods (o)
12707
12708 dist_ci (o)
12709
12710 dist_core (o)
12711
12712 pasthru (o)
12713
12714 =head2 ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X
12715
12716 =over 4
12717
12718 =item SYNOPSIS
12719
12720 =item DESCRIPTION
12721
12722 =back
12723
12724 =head2 ExtUtils::MY - ExtUtils::MakeMaker subclass for customization
12725
12726 =over 4
12727
12728 =item SYNOPSIS
12729
12730 =item DESCRIPTION
12731
12732 =back
12733
12734 =head2 ExtUtils::MakeMaker - create an extension Makefile
12735
12736 =over 4
12737
12738 =item SYNOPSIS
12739
12740 =item DESCRIPTION
12741
12742 =over 4
12743
12744 =item How To Write A Makefile.PL
12745
12746 =item Default Makefile Behaviour
12747
12748 =item make test
12749
12750 =item make testdb
12751
12752 =item make install
12753
12754 =item PREFIX and LIB attribute
12755
12756 =item AFS users
12757
12758 =item Static Linking of a new Perl Binary
12759
12760 =item Determination of Perl Library and Installation Locations
12761
12762 =item Which architecture dependent directory?
12763
12764 =item Using Attributes and Parameters
12765
12766 ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CCFLAGS, CONFIG,
12767 CONFIGURE, DEFINE, DIR, DISTNAME, DL_FUNCS, DL_VARS, EXCLUDE_EXT,
12768 EXE_FILES, FIRST_MAKEFILE, FULLPERL, FULLPERLRUN, FULLPERLRUNINST,
12769 FUNCLIST, H, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB, INSTALLBIN,
12770 INSTALLDIRS, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB, INSTALLSCRIPT,
12771 INSTALLSITEARCH, INSTALLSITEBIN, INSTALLSITELIB, INSTALLSITEMAN1DIR,
12772 INSTALLSITEMAN3DIR, INSTALLVENDORARCH, INSTALLVENDORBIN, INSTALLVENDORLIB,
12773 INSTALLVENDORMAN1DIR, INSTALLVENDORMAN3DIR, INST_ARCHLIB, INST_BIN,
12774 INST_LIB, INST_MAN1DIR, INST_MAN3DIR, INST_SCRIPT, LDFROM, LIB, LIBPERL_A,
12775 LIBS, LINKTYPE, MAKEAPERL, MAKEFILE, MAN1PODS, MAN3PODS, MAP_TARGET,
12776 MYEXTLIB, NAME, NEEDS_LINKING, NOECHO, NORECURS, NO_VC, OBJECT, OPTIMIZE,
12777 PERL, PERL_CORE, PERLMAINCC, PERL_ARCHLIB, PERL_LIB, PERL_MALLOC_OK,
12778 PERLRUN, PERLRUNINST, PERL_SRC, PERM_RW, PERM_RWX, PL_FILES, PM, PMLIBDIRS,
12779 PM_FILTER, POLLUTE, PPM_INSTALL_EXEC, PPM_INSTALL_SCRIPT, PREFIX,
12780 PREREQ_PM, PREREQ_FATAL, PREREQ_PRINT, PRINT_PREREQ, SITEPREFIX, SKIP,
12781 TYPEMAPS, VENDORPREFIX, VERBINST, VERSION, VERSION_FROM, XS, XSOPT,
12782 XSPROTOARG, XS_VERSION
12783
12784 =item Additional lowercase attributes
12785
12786 clean, depend, dist, dynamic_lib, linkext, macro, realclean, test,
12787 tool_autosplit
12788
12789 =item Overriding MakeMaker Methods
12790
12791 =item Hintsfile support
12792
12793 =item Distribution Support
12794
12795    make distcheck,    make skipcheck,    make distclean,    make manifest, 
12796   make distdir,   make disttest,    make tardist,    make dist,    make
12797 uutardist,    make shdist,    make zipdist,    make ci
12798
12799 =item Disabling an extension
12800
12801 =back
12802
12803 =item ENVIRONMENT
12804
12805 PERL_MM_OPT, PERL_MM_USE_DEFAULT
12806
12807 =item SEE ALSO
12808
12809 =item AUTHORS
12810
12811 =back
12812
12813 =head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
12814
12815 =over 4
12816
12817 =item SYNOPSIS
12818
12819 =item DESCRIPTION
12820
12821 =item MANIFEST.SKIP
12822
12823 =item EXPORT_OK
12824
12825 =item GLOBAL VARIABLES
12826
12827 =item DIAGNOSTICS
12828
12829 C<Not in MANIFEST:> I<file>, C<Skipping> I<file>, C<No such file:> I<file>,
12830 C<MANIFEST:> I<$!>, C<Added to MANIFEST:> I<file>
12831
12832 =item ENVIRONMENT
12833
12834 B<PERL_MM_MANIFEST_DEBUG>
12835
12836 =item SEE ALSO
12837
12838 =item AUTHOR
12839
12840 =back
12841
12842 =head2 ExtUtils::Miniperl, writemain - write the C code for perlmain.c
12843
12844 =over 4
12845
12846 =item SYNOPSIS
12847
12848 =item DESCRIPTION
12849
12850 =item SEE ALSO
12851
12852 =back
12853
12854 =head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
12855
12856 =over 4
12857
12858 =item SYNOPSIS
12859
12860 =item DESCRIPTION
12861
12862 =back
12863
12864 =head2 ExtUtils::Mksymlists - write linker options files for dynamic
12865 extension
12866
12867 =over 4
12868
12869 =item SYNOPSIS
12870
12871 =item DESCRIPTION
12872
12873 DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
12874
12875 =item AUTHOR
12876
12877 =item REVISION
12878
12879 =back
12880
12881 =head2 ExtUtils::Packlist - manage .packlist files
12882
12883 =over 4
12884
12885 =item SYNOPSIS
12886
12887 =item DESCRIPTION
12888
12889 =item USAGE
12890
12891 =item FUNCTIONS
12892
12893 new(), read(), write(), validate(), packlist_file()
12894
12895 =item EXAMPLE
12896
12897 =item AUTHOR
12898
12899 =back
12900
12901 =head2 ExtUtils::testlib - add blib/* directories to @INC
12902
12903 =over 4
12904
12905 =item SYNOPSIS
12906
12907 =item DESCRIPTION
12908
12909 =back
12910
12911 =head2 Fatal - replace functions with equivalents which succeed or die
12912
12913 =over 4
12914
12915 =item SYNOPSIS
12916
12917 =item DESCRIPTION
12918
12919 =item AUTHOR
12920
12921 =back
12922
12923 =head2 Fcntl - load the C Fcntl.h defines
12924
12925 =over 4
12926
12927 =item SYNOPSIS
12928
12929 =item DESCRIPTION
12930
12931 =item NOTE
12932
12933 =item EXPORTED SYMBOLS
12934
12935 =back
12936
12937 =head2 File::Basename, fileparse - split a pathname into pieces
12938
12939 =over 4
12940
12941 =item SYNOPSIS
12942
12943 =item DESCRIPTION
12944
12945 fileparse_set_fstype, fileparse
12946
12947 =item EXAMPLES
12948
12949 C<basename>, C<dirname>
12950
12951 =back
12952
12953 =head2 File::CheckTree, validate - run many filetest checks on a tree
12954
12955 =over 4
12956
12957 =item SYNOPSIS
12958
12959 =item DESCRIPTION
12960
12961 =item AUTHOR
12962
12963 =item HISTORY
12964
12965 =back
12966
12967 =head2 File::Compare - Compare files or filehandles
12968
12969 =over 4
12970
12971 =item SYNOPSIS
12972
12973 =item DESCRIPTION
12974
12975 =item RETURN
12976
12977 =item AUTHOR
12978
12979 =back
12980
12981 =head2 File::Copy - Copy files or filehandles
12982
12983 =over 4
12984
12985 =item SYNOPSIS
12986
12987 =item DESCRIPTION
12988
12989 =over 4
12990
12991 =item Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
12992
12993 rmscopy($from,$to[,$date_flag])
12994
12995 =back
12996
12997 =item RETURN
12998
12999 =item NOTES
13000
13001 =item AUTHOR
13002
13003 =back
13004
13005 =head2 File::DosGlob - DOS like globbing and then some
13006
13007 =over 4
13008
13009 =item SYNOPSIS
13010
13011 =item DESCRIPTION
13012
13013 =item NOTES
13014
13015 =item EXPORTS (by request only)
13016
13017 =item BUGS
13018
13019 =item AUTHOR
13020
13021 =item HISTORY
13022
13023 =item SEE ALSO
13024
13025 =back
13026
13027 =head2 File::Find - Traverse a directory tree.
13028
13029 =over 4
13030
13031 =item SYNOPSIS
13032
13033 =item DESCRIPTION
13034
13035 B<find>, B<finddepth>
13036
13037 =over 4
13038
13039 =item %options
13040
13041 C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
13042 C<follow_fast>, C<follow_skip>, C<dangling_symlinks>, C<no_chdir>,
13043 C<untaint>, C<untaint_pattern>, C<untaint_skip>
13044
13045 =item The wanted function
13046
13047 C<$File::Find::dir> is the current directory name,, C<$_> is the current
13048 filename within that directory, C<$File::Find::name> is the complete
13049 pathname to the file
13050
13051 =back
13052
13053 =item WARNINGS
13054
13055 =item CAVEAT
13056
13057 $dont_use_nlink, symlinks
13058
13059 =item NOTES
13060
13061 =item HISTORY
13062
13063 =back
13064
13065 =head2 File::Glob - Perl extension for BSD glob routine
13066
13067 =over 4
13068
13069 =item SYNOPSIS
13070
13071 =item DESCRIPTION
13072
13073 C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
13074 C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
13075 C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
13076
13077 =item DIAGNOSTICS
13078
13079 C<GLOB_NOSPACE>, C<GLOB_ABEND>
13080
13081 =item NOTES
13082
13083 =item AUTHOR
13084
13085 =back
13086
13087 =head2 File::Path - create or remove directory trees
13088
13089 =over 4
13090
13091 =item SYNOPSIS
13092
13093 =item DESCRIPTION
13094
13095 =item AUTHORS
13096
13097 =back
13098
13099 =head2 File::Spec - portably perform operations on file names
13100
13101 =over 4
13102
13103 =item SYNOPSIS
13104
13105 =item DESCRIPTION
13106
13107 =item METHODS
13108
13109 canonpath, catdir, catfile, curdir, devnull, rootdir, tmpdir, updir,
13110 no_upwards, case_tolerant, file_name_is_absolute, path, join, splitpath,
13111 splitdir, catpath(), abs2rel, rel2abs()
13112
13113 =item SEE ALSO
13114
13115 =item AUTHORS
13116
13117 =back
13118
13119 =head2 File::Spec::Cygwin - methods for Cygwin file specs
13120
13121 =over 4
13122
13123 =item SYNOPSIS
13124
13125 =item DESCRIPTION
13126
13127 =back
13128
13129 =head2 File::Spec::Epoc - methods for Epoc file specs
13130
13131 =over 4
13132
13133 =item SYNOPSIS
13134
13135 =item DESCRIPTION
13136
13137 canonpath()
13138
13139 =back
13140
13141 =over 4
13142
13143 =item SEE ALSO
13144
13145 =back
13146
13147 =head2 File::Spec::Functions - portably perform operations on file names
13148
13149 =over 4
13150
13151 =item SYNOPSIS
13152
13153 =item DESCRIPTION
13154
13155 =over 4
13156
13157 =item Exports
13158
13159 =back
13160
13161 =item SEE ALSO
13162
13163 =back
13164
13165 =head2 File::Spec::Mac - File::Spec for Mac OS (Classic)
13166
13167 =over 4
13168
13169 =item SYNOPSIS
13170
13171 =item DESCRIPTION
13172
13173 =item METHODS
13174
13175 canonpath
13176
13177 =back
13178
13179 catdir()
13180
13181 catfile
13182
13183 curdir
13184
13185 devnull
13186
13187 rootdir
13188
13189 tmpdir
13190
13191 updir
13192
13193 file_name_is_absolute
13194
13195 path
13196
13197 splitpath
13198
13199 splitdir
13200
13201 catpath
13202
13203 abs2rel
13204
13205 rel2abs
13206
13207 =over 4
13208
13209 =item AUTHORS
13210
13211 =item SEE ALSO
13212
13213 =back
13214
13215 canonpath
13216
13217 splitpath
13218
13219 splitdir
13220
13221 catpath
13222
13223 =head2 File::Spec::OS2 - methods for OS/2 file specs
13224
13225 =over 4
13226
13227 =item SYNOPSIS
13228
13229 =item DESCRIPTION
13230
13231 =back
13232
13233 =head2 File::Spec::Unix - File::Spec for Unix, base for other File::Spec
13234 modules
13235
13236 =over 4
13237
13238 =item SYNOPSIS
13239
13240 =item DESCRIPTION
13241
13242 =item METHODS
13243
13244 canonpath()
13245
13246 =back
13247
13248 catdir()
13249
13250 catfile
13251
13252 curdir
13253
13254 devnull
13255
13256 rootdir
13257
13258 tmpdir
13259
13260 updir
13261
13262 no_upwards
13263
13264 case_tolerant
13265
13266 file_name_is_absolute
13267
13268 path
13269
13270 join
13271
13272 splitpath
13273
13274 splitdir
13275
13276 catpath()
13277
13278 abs2rel
13279
13280 rel2abs()
13281
13282 =over 4
13283
13284 =item SEE ALSO
13285
13286 =back
13287
13288 =head2 File::Spec::VMS - methods for VMS file specs
13289
13290 =over 4
13291
13292 =item SYNOPSIS
13293
13294 =item DESCRIPTION
13295
13296 eliminate_macros
13297
13298 =back
13299
13300 fixpath
13301
13302 =over 4
13303
13304 =item Methods always loaded
13305
13306 canonpath (override)
13307
13308 =back
13309
13310 catdir
13311
13312 catfile
13313
13314 curdir (override)
13315
13316 devnull (override)
13317
13318 rootdir (override)
13319
13320 tmpdir (override)
13321
13322 updir (override)
13323
13324 case_tolerant (override)
13325
13326 path (override)
13327
13328 file_name_is_absolute (override)
13329
13330 splitpath (override)
13331
13332 splitdir (override)
13333
13334 catpath (override)
13335
13336 abs2rel (override)
13337
13338 rel2abs (override)
13339
13340 =over 4
13341
13342 =item SEE ALSO
13343
13344 =back
13345
13346 =head2 File::Spec::Win32 - methods for Win32 file specs
13347
13348 =over 4
13349
13350 =item SYNOPSIS
13351
13352 =item DESCRIPTION
13353
13354 devnull
13355
13356 =back
13357
13358 tmpdir
13359
13360 catfile
13361
13362 canonpath
13363
13364 splitpath
13365
13366 splitdir
13367
13368 catpath
13369
13370 =over 4
13371
13372 =item SEE ALSO
13373
13374 =back
13375
13376 =head2 File::Temp - return name and handle of a temporary file safely
13377
13378 =over 4
13379
13380 =item PORTABILITY
13381
13382 =item SYNOPSIS
13383
13384 =item DESCRIPTION
13385
13386 =back
13387
13388 =over 4
13389
13390 =item FUNCTIONS
13391
13392 B<tempfile>
13393
13394 =back
13395
13396 B<tempdir>
13397
13398 =over 4
13399
13400 =item MKTEMP FUNCTIONS
13401
13402 B<mkstemp>
13403
13404 =back
13405
13406 B<mkstemps>
13407
13408 B<mkdtemp>
13409
13410 B<mktemp>
13411
13412 =over 4
13413
13414 =item POSIX FUNCTIONS
13415
13416 B<tmpnam>
13417
13418 =back
13419
13420 B<tmpfile>
13421
13422 =over 4
13423
13424 =item ADDITIONAL FUNCTIONS
13425
13426 B<tempnam>
13427
13428 =back
13429
13430 =over 4
13431
13432 =item UTILITY FUNCTIONS
13433
13434 B<unlink0>
13435
13436 =back
13437
13438 =over 4
13439
13440 =item PACKAGE VARIABLES
13441
13442 B<safe_level>, STANDARD, MEDIUM, HIGH
13443
13444 =back
13445
13446 TopSystemUID
13447
13448 =over 4
13449
13450 =item WARNING
13451
13452 =over 4
13453
13454 =item Temporary files and NFS
13455
13456 =back
13457
13458 =item HISTORY
13459
13460 =item SEE ALSO
13461
13462 =item AUTHOR
13463
13464 =back
13465
13466 =head2 File::stat - by-name interface to Perl's built-in stat() functions
13467
13468 =over 4
13469
13470 =item SYNOPSIS
13471
13472 =item DESCRIPTION
13473
13474 =item NOTE
13475
13476 =item AUTHOR
13477
13478 =back
13479
13480 =head2 FileCache - keep more files open than the system permits
13481
13482 =over 4
13483
13484 =item SYNOPSIS
13485
13486 =item DESCRIPTION
13487
13488 cacheout EXPR, cacheout MODE, EXPR
13489
13490 =item CAVEATS
13491
13492 =item BUGS
13493
13494 =back
13495
13496 =head2 FileHandle - supply object methods for filehandles
13497
13498 =over 4
13499
13500 =item SYNOPSIS
13501
13502 =item DESCRIPTION
13503
13504 $fh->print, $fh->printf, $fh->getline, $fh->getlines
13505
13506 =item SEE ALSO
13507
13508 =back
13509
13510 =head2 Filter::Simple - Simplified source filtering
13511
13512 =over 4
13513
13514 =item SYNOPSIS
13515
13516 =item DESCRIPTION
13517
13518 =over 4
13519
13520 =item The Problem
13521
13522 =item A Solution
13523
13524 =item Disabling or changing <no> behaviour
13525
13526 =item All-in-one interface
13527
13528 =item Filtering only specific components of source code
13529
13530 C<"code">, C<"executable">, C<"quotelike">, C<"string">, C<"regex">,
13531 C<"all">
13532
13533 =item Filtering only the code parts of source code
13534
13535 Most source code ceases to be grammatically correct when it is broken up
13536 into the pieces between string literals and regexes. So the C<'code'>
13537 component filter behaves slightly differently from the other partial
13538 filters
13539 described in the previous section.
13540
13541 =item Using Filter::Simple with an explicit C<import> subroutine
13542
13543 =item Using Filter::Simple and Exporter together
13544
13545 =item How it works
13546
13547 =back
13548
13549 =item AUTHOR
13550
13551 =item COPYRIGHT
13552
13553 =back
13554
13555 =head2 Filter::Util::Call - Perl Source Filter Utility Module
13556
13557 =over 4
13558
13559 =item SYNOPSIS
13560
13561 =item DESCRIPTION
13562
13563 =over 4
13564
13565 =item B<use Filter::Util::Call>
13566
13567 =item B<import()>
13568
13569 =item B<filter() and anonymous sub>
13570
13571 B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
13572
13573 =back
13574
13575 =item EXAMPLES
13576
13577 =over 4
13578
13579 =item Example 1: A simple filter.
13580
13581 =item Example 2: Using the context
13582
13583 =item Example 3: Using the context within the filter
13584
13585 =item Example 4: Using filter_del
13586
13587 =back
13588
13589 =item Filter::Simple
13590
13591 =item AUTHOR
13592
13593 =item DATE
13594
13595 =back
13596
13597 =head2 FindBin - Locate directory of original perl script
13598
13599 =over 4
13600
13601 =item SYNOPSIS
13602
13603 =item DESCRIPTION
13604
13605 =item EXPORTABLE VARIABLES
13606
13607 =item KNOWN ISSUES
13608
13609 =item KNOWN BUGS
13610
13611 =item AUTHORS
13612
13613 =item COPYRIGHT
13614
13615 =back
13616
13617 =head2 GDBM_File - Perl5 access to the gdbm library.
13618
13619 =over 4
13620
13621 =item SYNOPSIS
13622
13623 =item DESCRIPTION
13624
13625 =item AVAILABILITY
13626
13627 =item BUGS
13628
13629 =item SEE ALSO
13630
13631 =back
13632
13633 =head2 Getopt::Long - Extended processing of command line options
13634
13635 =over 4
13636
13637 =item SYNOPSIS
13638
13639 =item DESCRIPTION
13640
13641 =item Command Line Options, an Introduction
13642
13643 =item Getting Started with Getopt::Long
13644
13645 =over 4
13646
13647 =item Simple options
13648
13649 =item A little bit less simple options
13650
13651 =item Mixing command line option with other arguments
13652
13653 =item Options with values
13654
13655 =item Options with multiple values
13656
13657 =item Options with hash values
13658
13659 =item User-defined subroutines to handle options
13660
13661 =item Options with multiple names
13662
13663 =item Case and abbreviations
13664
13665 =item Summary of Option Specifications
13666
13667 !, +, s, i, o, f, : I<type> [ I<desttype> ], : I<number> [ I<desttype> ], :
13668 + [ I<desttype> ]
13669
13670 =back
13671
13672 =item Advanced Possibilities
13673
13674 =over 4
13675
13676 =item Object oriented interface
13677
13678 =item Documentation and help texts
13679
13680 =item Storing options in a hash
13681
13682 =item Bundling
13683
13684 =item The lonesome dash
13685
13686 =item Argument callback
13687
13688 =back
13689
13690 =item Configuring Getopt::Long
13691
13692 default, posix_default, auto_abbrev, getopt_compat, gnu_compat, gnu_getopt,
13693 require_order, permute, bundling (default: disabled), bundling_override
13694 (default: disabled), ignore_case  (default: enabled), ignore_case_always
13695 (default: disabled), pass_through (default: disabled), prefix,
13696 prefix_pattern, debug (default: disabled)
13697
13698 =item Return values and Errors
13699
13700 =item Legacy
13701
13702 =over 4
13703
13704 =item Default destinations
13705
13706 =item Alternative option starters
13707
13708 =item Configuration variables
13709
13710 =back
13711
13712 =item Trouble Shooting
13713
13714 =over 4
13715
13716 =item Warning: Ignoring '!' modifier for short option
13717
13718 =item GetOptions does not return a false result when an option is not
13719 supplied
13720
13721 =item GetOptions does not split the command line correctly
13722
13723 =item How do I put a "-?" option into a Getopt::Long?
13724
13725 =back
13726
13727 =item AUTHOR
13728
13729 =item COPYRIGHT AND DISCLAIMER
13730
13731 =back
13732
13733 =head2 Getopt::Std, getopt - Process single-character switches with switch
13734 clustering
13735
13736 =over 4
13737
13738 =item SYNOPSIS
13739
13740 =item DESCRIPTION
13741
13742 =back
13743
13744 =head2 Hash::Util - A selection of general-utility hash subroutines
13745
13746 =over 4
13747
13748 =item SYNOPSIS
13749
13750 =item DESCRIPTION
13751
13752 =over 4
13753
13754 =item Restricted hashes
13755
13756 lock_keys, unlock_keys
13757
13758 =back
13759
13760 =back
13761
13762 lock_value, unlock_value
13763
13764 B<lock_hash>, B<unlock_hash>
13765
13766 =over 4
13767
13768 =item AUTHOR
13769
13770 =item SEE ALSO
13771
13772 =back
13773
13774 =head2 I18N::Collate - compare 8-bit scalar data according to the current
13775 locale
13776
13777 =over 4
13778
13779 =item SYNOPSIS
13780
13781 =item DESCRIPTION
13782
13783 =back
13784
13785 =head2 I18N::LangTags - functions for dealing with RFC3066-style language
13786 tags
13787
13788 =over 4
13789
13790 =item SYNOPSIS
13791
13792 =item DESCRIPTION
13793
13794 =back
13795
13796 the function is_language_tag($lang1)
13797
13798 the function extract_language_tags($whatever)
13799
13800 the function same_language_tag($lang1, $lang2)
13801
13802 the function similarity_language_tag($lang1, $lang2)
13803
13804 the function is_dialect_of($lang1, $lang2)
13805
13806 the function super_languages($lang1)
13807
13808 the function locale2language_tag($locale_identifier)
13809
13810 the function encode_language_tag($lang1)
13811
13812 the function alternate_language_tags($lang1)
13813
13814 the function @langs = panic_languages(@accept_languages)
13815
13816 =over 4
13817
13818 =item ABOUT LOWERCASING
13819
13820 =item ABOUT UNICODE PLAINTEXT LANGUAGE TAGS
13821
13822 =item SEE ALSO
13823
13824 =item COPYRIGHT
13825
13826 =item AUTHOR
13827
13828 =back
13829
13830 =head2 I18N::LangTags::List -- tags and names for human languages
13831
13832 =over 4
13833
13834 =item SYNOPSIS
13835
13836 =item DESCRIPTION
13837
13838 =item ABOUT LANGUAGE TAGS
13839
13840 =item LIST OF LANGUAGES
13841
13842 {ab} : Abkhazian, {ace} : Achinese, {ach} : Acoli, {ada} : Adangme, {aa} :
13843 Afar, {afh} : Afrihili, {af} : Afrikaans, [{afa} : Afro-Asiatic (Other)],
13844 {aka} : Akan, {akk} : Akkadian, {sq} : Albanian, {ale} : Aleut, [{alg} :
13845 Algonquian languages], [{tut} : Altaic (Other)], {am} : Amharic, {i-ami} :
13846 Ami, [{apa} : Apache languages], {ar} : Arabic, {arc} : Aramaic, {arp} :
13847 Arapaho, {arn} : Araucanian, {arw} : Arawak, {hy} : Armenian, [{art} :
13848 Artificial (Other)], {as} : Assamese, [{ath} : Athapascan languages],
13849 [{aus} : Australian languages], [{map} : Austronesian (Other)], {ava} :
13850 Avaric, {ae} : Avestan, {awa} : Awadhi, {ay} : Aymara, {az} : Azerbaijani,
13851 {ban} : Balinese, [{bat} : Baltic (Other)], {bal} : Baluchi, {bam} :
13852 Bambara, [{bai} : Bamileke languages], {bad} : Banda, [{bnt} : Bantu
13853 (Other)], {bas} : Basa, {ba} : Bashkir, {eu} : Basque, {btk} : Batak
13854 (Indonesia), {bej} : Beja, {be} : Belarusian, {bem} : Bemba, {bn} :
13855 Bengali, [{ber} : Berber (Other)], {bho} : Bhojpuri, {bh} : Bihari, {bik} :
13856 Bikol, {bin} : Bini, {bi} : Bislama, {bs} : Bosnian, {bra} : Braj, {br} :
13857 Breton, {bug} : Buginese, {bg} : Bulgarian, {i-bnn} : Bunun, {bua} :
13858 Buriat, {my} : Burmese, {cad} : Caddo, {car} : Carib, {ca} : Catalan,
13859 [{cau} : Caucasian (Other)], {ceb} : Cebuano, [{cel} : Celtic (Other)],
13860 [{cai} : Central American Indian (Other)], {chg} : Chagatai, [{cmc} :
13861 Chamic languages], {ch} : Chamorro, {ce} : Chechen, {chr} : Cherokee, {chy}
13862 : Cheyenne, {chb} : Chibcha, {ny} : Chichewa, {zh} : Chinese, {chn} :
13863 Chinook Jargon, {chp} : Chipewyan, {cho} : Choctaw, {cu} : Church Slavic,
13864 {chk} : Chuukese, {cv} : Chuvash, {cop} : Coptic, {kw} : Cornish, {co} :
13865 Corsican, {cre} : Cree, {mus} : Creek, [{cpe} : English-based Creoles and
13866 pidgins (Other)], [{cpf} : French-based Creoles and pidgins (Other)],
13867 [{cpp} : Portuguese-based Creoles and pidgins (Other)], [{crp} : Creoles
13868 and pidgins (Other)], {hr} : Croatian, [{cus} : Cushitic (Other)], {cs} :
13869 Czech, {dak} : Dakota, {da} : Danish, {day} : Dayak, {i-default} : Default
13870 (Fallthru) Language, {del} : Delaware, {din} : Dinka, {div} : Divehi, {doi}
13871 : Dogri, {dgr} : Dogrib, [{dra} : Dravidian (Other)], {dua} : Duala, {nl} :
13872 Dutch, {dum} : Middle Dutch (ca.1050-1350), {dyu} : Dyula, {dz} : Dzongkha,
13873 {efi} : Efik, {egy} : Ancient Egyptian, {eka} : Ekajuk, {elx} : Elamite,
13874 {en} : English, {enm} : Old English (1100-1500), {ang} : Old English
13875 (ca.450-1100), {eo} : Esperanto, {et} : Estonian, {ewe} : Ewe, {ewo} :
13876 Ewondo, {fan} : Fang, {fat} : Fanti, {fo} : Faroese, {fj} : Fijian, {fi} :
13877 Finnish, [{fiu} : Finno-Ugrian (Other)], {fon} : Fon, {fr} : French, {frm}
13878 : Middle French (ca.1400-1600), {fro} : Old French (842-ca.1400), {fy} :
13879 Frisian, {fur} : Friulian, {ful} : Fulah, {gaa} : Ga, {gd} : Scots Gaelic,
13880 {gl} : Gallegan, {lug} : Ganda, {gay} : Gayo, {gba} : Gbaya, {gez} : Geez,
13881 {ka} : Georgian, {de} : German, {gmh} : Middle High German (ca.1050-1500),
13882 {goh} : Old High German (ca.750-1050), [{gem} : Germanic (Other)], {gil} :
13883 Gilbertese, {gon} : Gondi, {gor} : Gorontalo, {got} : Gothic, {grb} :
13884 Grebo, {grc} : Ancient Greek, {el} : Modern Greek, {gn} : Guarani, {gu} :
13885 Gujarati, {gwi} : Gwich'in, {hai} : Haida, {ha} : Hausa, {haw} : Hawaiian,
13886 {he} : Hebrew, {hz} : Herero, {hil} : Hiligaynon, {him} : Himachali, {hi} :
13887 Hindi, {ho} : Hiri Motu, {hit} : Hittite, {hmn} : Hmong, {hu} : Hungarian,
13888 {hup} : Hupa, {iba} : Iban, {is} : Icelandic, {ibo} : Igbo, {ijo} : Ijo,
13889 {ilo} : Iloko, [{inc} : Indic (Other)], [{ine} : Indo-European (Other)],
13890 {id} : Indonesian, {ia} : Interlingua (International Auxiliary Language
13891 Association), {ie} : Interlingue, {iu} : Inuktitut, {ik} : Inupiaq, [{ira}
13892 : Iranian (Other)], {ga} : Irish, {mga} : Middle Irish (900-1200), {sga} :
13893 Old Irish (to 900), [{iro} : Iroquoian languages], {it} : Italian, {ja} :
13894 Japanese, {jw} : Javanese, {jrb} : Judeo-Arabic, {jpr} : Judeo-Persian,
13895 {kab} : Kabyle, {kac} : Kachin, {kl} : Kalaallisut, {kam} : Kamba, {kn} :
13896 Kannada, {kau} : Kanuri, {kaa} : Kara-Kalpak, {kar} : Karen, {ks} :
13897 Kashmiri, {kaw} : Kawi, {kk} : Kazakh, {kha} : Khasi, {km} : Khmer, [{khi}
13898 : Khoisan (Other)], {kho} : Khotanese, {ki} : Kikuyu, {kmb} : Kimbundu,
13899 {rw} : Kinyarwanda, {ky} : Kirghiz, {i-klingon} : Klingon, {kv} : Komi,
13900 {kon} : Kongo, {kok} : Konkani, {ko} : Korean, {kos} : Kosraean, {kpe} :
13901 Kpelle, {kro} : Kru, {kj} : Kuanyama, {kum} : Kumyk, {ku} : Kurdish, {kru}
13902 : Kurukh, {kut} : Kutenai, {lad} : Ladino, {lah} : Lahnda, {lam} : Lamba,
13903 {lo} : Lao, {la} : Latin, {lv} : Latvian, {lb} : Letzeburgesch, {lez} :
13904 Lezghian, {ln} : Lingala, {lt} : Lithuanian, {nds} : Low German, {loz} :
13905 Lozi, {lub} : Luba-Katanga, {lua} : Luba-Lulua, {lui} : Luiseno, {lun} :
13906 Lunda, {luo} : Luo (Kenya and Tanzania), {lus} : Lushai, {mk} : Macedonian,
13907 {mad} : Madurese, {mag} : Magahi, {mai} : Maithili, {mak} : Makasar, {mg} :
13908 Malagasy, {ms} : Malay, {ml} : Malayalam, {mt} : Maltese, {mnc} : Manchu,
13909 {mdr} : Mandar, {man} : Mandingo, {mni} : Manipuri, [{mno} : Manobo
13910 languages], {gv} : Manx, {mi} : Maori, {mr} : Marathi, {chm} : Mari, {mh} :
13911 Marshall, {mwr} : Marwari, {mas} : Masai, [{myn} : Mayan languages], {men}
13912 : Mende, {mic} : Micmac, {min} : Minangkabau, {i-mingo} : Mingo, [{mis} :
13913 Miscellaneous languages], {moh} : Mohawk, {mo} : Moldavian, [{mkh} :
13914 Mon-Khmer (Other)], {lol} : Mongo, {mn} : Mongolian, {mos} : Mossi, [{mul}
13915 : Multiple languages], [{mun} : Munda languages], {nah} : Nahuatl, {na} :
13916 Nauru, {nv} : Navajo, {nd} : North Ndebele, {nr} : South Ndebele, {ng} :
13917 Ndonga, {ne} : Nepali, {new} : Newari, {nia} : Nias, [{nic} :
13918 Niger-Kordofanian (Other)], [{ssa} : Nilo-Saharan (Other)], {niu} : Niuean,
13919 {non} : Old Norse, [{nai} : North American Indian], {se} : Northern Sami,
13920 {no} : Norwegian, {nb} : Norwegian Bokmal, {nn} : Norwegian Nynorsk, [{nub}
13921 : Nubian languages], {nym} : Nyamwezi, {nyn} : Nyankole, {nyo} : Nyoro,
13922 {nzi} : Nzima, {oc} : Occitan (post 1500), {oji} : Ojibwa, {or} : Oriya,
13923 {om} : Oromo, {osa} : Osage, {os} : Ossetian; Ossetic, [{oto} : Otomian
13924 languages], {pal} : Pahlavi, {i-pwn} : Paiwan, {pau} : Palauan, {pi} :
13925 Pali, {pam} : Pampanga, {pag} : Pangasinan, {pa} : Panjabi, {pap} :
13926 Papiamento, [{paa} : Papuan (Other)], {fa} : Persian, {peo} : Old Persian
13927 (ca.600-400 B.C.), [{phi} : Philippine (Other)], {phn} : Phoenician, {pon}
13928 : Pohnpeian, {pl} : Polish, {pt} : Portuguese, [{pra} : Prakrit languages],
13929 {pro} : Old Provencal (to 1500), {ps} : Pushto, {qu} : Quechua, {rm} :
13930 Raeto-Romance, {raj} : Rajasthani, {rap} : Rapanui, {rar} : Rarotongan,
13931 [{qaa - qtz} : Reserved for local use.], [{roa} : Romance (Other)], {ro} :
13932 Romanian, {rom} : Romany, {rn} : Rundi, {ru} : Russian, [{sal} : Salishan
13933 languages], {sam} : Samaritan Aramaic, [{smi} : Sami languages (Other)],
13934 {sm} : Samoan, {sad} : Sandawe, {sg} : Sango, {sa} : Sanskrit, {sat} :
13935 Santali, {sc} : Sardinian, {sas} : Sasak, {sco} : Scots, {sel} : Selkup,
13936 [{sem} : Semitic (Other)], {sr} : Serbian, {srr} : Serer, {shn} : Shan,
13937 {sn} : Shona, {sid} : Sidamo, {sgn-...} : Sign Languages, {bla} : Siksika,
13938 {sd} : Sindhi, {si} : Sinhalese, [{sit} : Sino-Tibetan (Other)], [{sio} :
13939 Siouan languages], {den} : Slave (Athapascan), [{sla} : Slavic (Other)],
13940 {sk} : Slovak, {sl} : Slovenian, {sog} : Sogdian, {so} : Somali, {son} :
13941 Songhai, {snk} : Soninke, {wen} : Sorbian languages, {nso} : Northern
13942 Sotho, {st} : Southern Sotho, [{sai} : South American Indian (Other)], {es}
13943 : Spanish, {suk} : Sukuma, {sux} : Sumerian, {su} : Sundanese, {sus} :
13944 Susu, {sw} : Swahili, {ss} : Swati, {sv} : Swedish, {syr} : Syriac, {tl} :
13945 Tagalog, {ty} : Tahitian, [{tai} : Tai (Other)], {tg} : Tajik, {tmh} :
13946 Tamashek, {ta} : Tamil, {i-tao} : Tao, {tt} : Tatar, {i-tay} : Tayal, {te}
13947 : Telugu, {ter} : Tereno, {tet} : Tetum, {th} : Thai, {bo} : Tibetan, {tig}
13948 : Tigre, {ti} : Tigrinya, {tem} : Timne, {tiv} : Tiv, {tli} : Tlingit,
13949 {tpi} : Tok Pisin, {tkl} : Tokelau, {tog} : Tonga (Nyasa), {to} : Tonga
13950 (Tonga Islands), {tsi} : Tsimshian, {ts} : Tsonga, {i-tsu} : Tsou, {tn} :
13951 Tswana, {tum} : Tumbuka, {tr} : Turkish, {ota} : Ottoman Turkish
13952 (1500-1928), {tk} : Turkmen, {tvl} : Tuvalu, {tyv} : Tuvinian, {tw} : Twi,
13953 {uga} : Ugaritic, {ug} : Uighur, {uk} : Ukrainian, {umb} : Umbundu, {und} :
13954 Undetermined, {ur} : Urdu, {uz} : Uzbek, {vai} : Vai, {ven} : Venda, {vi} :
13955 Vietnamese, {vo} : Volapuk, {vot} : Votic, [{wak} : Wakashan languages],
13956 {wal} : Walamo, {war} : Waray, {was} : Washo, {cy} : Welsh, {wo} : Wolof,
13957 {x-...} : Unregistered (Semi-Private Use), {xh} : Xhosa, {sah} : Yakut,
13958 {yao} : Yao, {yap} : Yapese, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik
13959 languages], {znd} : Zande, [{zap} : Zapotec], {zen} : Zenaga, {za} :
13960 Zhuang, {zu} : Zulu, {zun} : Zuni
13961
13962 =item SEE ALSO
13963
13964 =item COPYRIGHT AND DISCLAIMER
13965
13966 =item AUTHOR
13967
13968 =back
13969
13970 =head2 I18N::Langinfo - query locale information
13971
13972 =over 4
13973
13974 =item SYNOPSIS
13975
13976 =item DESCRIPTION
13977
13978 =over 4
13979
13980 =item EXPORT
13981
13982 =back
13983
13984 =item SEE ALSO
13985
13986 =item AUTHOR
13987
13988 =item COPYRIGHT AND LICENSE
13989
13990 =back
13991
13992 =head2 IO - load various IO modules
13993
13994 =over 4
13995
13996 =item SYNOPSIS
13997
13998 =item DESCRIPTION
13999
14000 =back
14001
14002 =head2 IO::Dir - supply object methods for directory handles
14003
14004 =over 4
14005
14006 =item SYNOPSIS
14007
14008 =item DESCRIPTION
14009
14010 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
14011 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
14012
14013 =item SEE ALSO
14014
14015 =item AUTHOR
14016
14017 =item COPYRIGHT
14018
14019 =back
14020
14021 =head2 IO::File - supply object methods for filehandles
14022
14023 =over 4
14024
14025 =item SYNOPSIS
14026
14027 =item DESCRIPTION
14028
14029 =item CONSTRUCTOR
14030
14031 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
14032
14033 =item METHODS
14034
14035 open( FILENAME [,MODE [,PERMS]] )
14036
14037 =item SEE ALSO
14038
14039 =item HISTORY
14040
14041 =back
14042
14043 =head2 IO::Handle - supply object methods for I/O handles
14044
14045 =over 4
14046
14047 =item SYNOPSIS
14048
14049 =item DESCRIPTION
14050
14051 =item CONSTRUCTOR
14052
14053 new (), new_from_fd ( FD, MODE )
14054
14055 =item METHODS
14056
14057 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
14058 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
14059 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
14060 $io->blocking ( [ BOOL ] ), $io->untaint
14061
14062 =item NOTE
14063
14064 =item SEE ALSO
14065
14066 =item BUGS
14067
14068 =item HISTORY
14069
14070 =back
14071
14072 =head2 IO::Pipe - supply object methods for pipes
14073
14074 =over 4
14075
14076 =item SYNOPSIS
14077
14078 =item DESCRIPTION
14079
14080 =item CONSTRUCTOR
14081
14082 new ( [READER, WRITER] )
14083
14084 =item METHODS
14085
14086 reader ([ARGS]), writer ([ARGS]), handles ()
14087
14088 =item SEE ALSO
14089
14090 =item AUTHOR
14091
14092 =item COPYRIGHT
14093
14094 =back
14095
14096 =head2 IO::Poll - Object interface to system poll call
14097
14098 =over 4
14099
14100 =item SYNOPSIS
14101
14102 =item DESCRIPTION
14103
14104 =item METHODS
14105
14106 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
14107 IO ), handles( [ EVENT_MASK ] )
14108
14109 =item SEE ALSO
14110
14111 =item AUTHOR
14112
14113 =item COPYRIGHT
14114
14115 =back
14116
14117 =head2 IO::Seekable - supply seek based methods for I/O objects
14118
14119 =over 4
14120
14121 =item SYNOPSIS
14122
14123 =item DESCRIPTION
14124
14125 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
14126 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
14127 $io->tell
14128
14129 =item SEE ALSO
14130
14131 =item HISTORY
14132
14133 =back
14134
14135 =head2 IO::Select - OO interface to the select system call
14136
14137 =over 4
14138
14139 =item SYNOPSIS
14140
14141 =item DESCRIPTION
14142
14143 =item CONSTRUCTOR
14144
14145 new ( [ HANDLES ] )
14146
14147 =item METHODS
14148
14149 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
14150 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
14151 count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] )
14152
14153 =item EXAMPLE
14154
14155 =item AUTHOR
14156
14157 =item COPYRIGHT
14158
14159 =back
14160
14161 =head2 IO::Socket - Object interface to socket communications
14162
14163 =over 4
14164
14165 =item SYNOPSIS
14166
14167 =item DESCRIPTION
14168
14169 =item CONSTRUCTOR
14170
14171 new ( [ARGS] )
14172
14173 =item METHODS
14174
14175 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
14176 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
14177
14178 =item SEE ALSO
14179
14180 =item AUTHOR
14181
14182 =item COPYRIGHT
14183
14184 =back
14185
14186 =head2 IO::Socket::INET - Object interface for AF_INET domain sockets
14187
14188 =over 4
14189
14190 =item SYNOPSIS
14191
14192 =item DESCRIPTION
14193
14194 =item CONSTRUCTOR
14195
14196 new ( [ARGS] )
14197
14198 =over 4
14199
14200 =item METHODS
14201
14202 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
14203 ()
14204
14205 =back
14206
14207 =item SEE ALSO
14208
14209 =item AUTHOR
14210
14211 =item COPYRIGHT
14212
14213 =back
14214
14215 =head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
14216
14217 =over 4
14218
14219 =item SYNOPSIS
14220
14221 =item DESCRIPTION
14222
14223 =item CONSTRUCTOR
14224
14225 new ( [ARGS] )
14226
14227 =item METHODS
14228
14229 hostpath(), peerpath()
14230
14231 =item SEE ALSO
14232
14233 =item AUTHOR
14234
14235 =item COPYRIGHT
14236
14237 =back
14238
14239 =head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
14240 handles
14241
14242 =over 4
14243
14244 =item SYNOPSIS
14245
14246 =item DESCRIPTION
14247
14248 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
14249 rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ]
14250
14251 =item SEE ALSO
14252
14253 =item AUTHOR
14254
14255 =item COPYRIGHT
14256
14257 =back
14258
14259 =head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
14260
14261 =over 4
14262
14263 =item SYNOPSIS
14264
14265 =item DESCRIPTION
14266
14267 =item CONSTRUCTOR
14268
14269 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
14270
14271 =item METHODS
14272
14273 open( FILENAME [,MODE [,PERMS]] )
14274
14275 =item SEE ALSO
14276
14277 =item HISTORY
14278
14279 =back
14280
14281 =head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
14282 handles
14283
14284 =over 4
14285
14286 =item SYNOPSIS
14287
14288 =item DESCRIPTION
14289
14290 =item CONSTRUCTOR
14291
14292 new (), new_from_fd ( FD, MODE )
14293
14294 =item METHODS
14295
14296 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
14297 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
14298 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
14299 $io->blocking ( [ BOOL ] ), $io->untaint
14300
14301 =item NOTE
14302
14303 =item SEE ALSO
14304
14305 =item BUGS
14306
14307 =item HISTORY
14308
14309 =back
14310
14311 =head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
14312
14313 =over 4
14314
14315 =item SYNOPSIS
14316
14317 =item DESCRIPTION
14318
14319 =item CONSTRUCTOR
14320
14321 new ( [READER, WRITER] )
14322
14323 =item METHODS
14324
14325 reader ([ARGS]), writer ([ARGS]), handles ()
14326
14327 =item SEE ALSO
14328
14329 =item AUTHOR
14330
14331 =item COPYRIGHT
14332
14333 =back
14334
14335 =head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
14336
14337 =over 4
14338
14339 =item SYNOPSIS
14340
14341 =item DESCRIPTION
14342
14343 =item METHODS
14344
14345 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
14346 IO ), handles( [ EVENT_MASK ] )
14347
14348 =item SEE ALSO
14349
14350 =item AUTHOR
14351
14352 =item COPYRIGHT
14353
14354 =back
14355
14356 =head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
14357 I/O objects
14358
14359 =over 4
14360
14361 =item SYNOPSIS
14362
14363 =item DESCRIPTION
14364
14365 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
14366 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
14367 $io->tell
14368
14369 =item SEE ALSO
14370
14371 =item HISTORY
14372
14373 =back
14374
14375 =head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
14376 call
14377
14378 =over 4
14379
14380 =item SYNOPSIS
14381
14382 =item DESCRIPTION
14383
14384 =item CONSTRUCTOR
14385
14386 new ( [ HANDLES ] )
14387
14388 =item METHODS
14389
14390 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
14391 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
14392 count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] )
14393
14394 =item EXAMPLE
14395
14396 =item AUTHOR
14397
14398 =item COPYRIGHT
14399
14400 =back
14401
14402 =head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
14403 communications
14404
14405 =over 4
14406
14407 =item SYNOPSIS
14408
14409 =item DESCRIPTION
14410
14411 =item CONSTRUCTOR
14412
14413 new ( [ARGS] )
14414
14415 =item METHODS
14416
14417 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
14418 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
14419
14420 =item SEE ALSO
14421
14422 =item AUTHOR
14423
14424 =item COPYRIGHT
14425
14426 =back
14427
14428 =head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
14429 AF_INET domain sockets
14430
14431 =over 4
14432
14433 =item SYNOPSIS
14434
14435 =item DESCRIPTION
14436
14437 =item CONSTRUCTOR
14438
14439 new ( [ARGS] )
14440
14441 =over 4
14442
14443 =item METHODS
14444
14445 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
14446 ()
14447
14448 =back
14449
14450 =item SEE ALSO
14451
14452 =item AUTHOR
14453
14454 =item COPYRIGHT
14455
14456 =back
14457
14458 =head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
14459 AF_UNIX domain sockets
14460
14461 =over 4
14462
14463 =item SYNOPSIS
14464
14465 =item DESCRIPTION
14466
14467 =item CONSTRUCTOR
14468
14469 new ( [ARGS] )
14470
14471 =item METHODS
14472
14473 hostpath(), peerpath()
14474
14475 =item SEE ALSO
14476
14477 =item AUTHOR
14478
14479 =item COPYRIGHT
14480
14481 =back
14482
14483 =head2 IPC::Msg - SysV Msg IPC object class
14484
14485 =over 4
14486
14487 =item SYNOPSIS
14488
14489 =item DESCRIPTION
14490
14491 =item METHODS
14492
14493 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
14494 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
14495 FLAGS ] ), stat
14496
14497 =item SEE ALSO
14498
14499 =item AUTHOR
14500
14501 =item COPYRIGHT
14502
14503 =back
14504
14505 =head2 IPC::Open2, open2 - open a process for both reading and writing
14506
14507 =over 4
14508
14509 =item SYNOPSIS
14510
14511 =item DESCRIPTION
14512
14513 =item WARNING 
14514
14515 =item SEE ALSO
14516
14517 =back
14518
14519 =head2 IPC::Open3, open3 - open a process for reading, writing, and error
14520 handling
14521
14522 =over 4
14523
14524 =item SYNOPSIS
14525
14526 =item DESCRIPTION
14527
14528 =item WARNING
14529
14530 =back
14531
14532 =head2 IPC::Semaphore - SysV Semaphore IPC object class
14533
14534 =over 4
14535
14536 =item SYNOPSIS
14537
14538 =item DESCRIPTION
14539
14540 =item METHODS
14541
14542 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
14543 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
14544 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
14545 , VALUE ), stat
14546
14547 =item SEE ALSO
14548
14549 =item AUTHOR
14550
14551 =item COPYRIGHT
14552
14553 =back
14554
14555 =head2 IPC::SysV - SysV IPC constants
14556
14557 =over 4
14558
14559 =item SYNOPSIS
14560
14561 =item DESCRIPTION
14562
14563 ftok( PATH, ID )
14564
14565 =item SEE ALSO
14566
14567 =item AUTHORS
14568
14569 =item COPYRIGHT
14570
14571 =back
14572
14573 =head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
14574
14575 =over 4
14576
14577 =item SYNOPSIS
14578
14579 =item DESCRIPTION
14580
14581 =item METHODS
14582
14583 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
14584 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
14585 FLAGS ] ), stat
14586
14587 =item SEE ALSO
14588
14589 =item AUTHOR
14590
14591 =item COPYRIGHT
14592
14593 =back
14594
14595 =head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
14596 class
14597
14598 =over 4
14599
14600 =item SYNOPSIS
14601
14602 =item DESCRIPTION
14603
14604 =item METHODS
14605
14606 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
14607 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
14608 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
14609 , VALUE ), stat
14610
14611 =item SEE ALSO
14612
14613 =item AUTHOR
14614
14615 =item COPYRIGHT
14616
14617 =back
14618
14619 =head2 List::Util - A selection of general-utility list subroutines
14620
14621 =over 4
14622
14623 =item SYNOPSIS
14624
14625 =item DESCRIPTION
14626
14627 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
14628 BLOCK LIST, shuffle LIST, sum LIST
14629
14630 =item KNOWN BUGS
14631
14632 =item SUGGESTED ADDITIONS
14633
14634 =item COPYRIGHT
14635
14636 =back
14637
14638 =head2 List::Utilib::List::Util, List::Util - A selection of
14639 general-utility list subroutines
14640
14641 =over 4
14642
14643 =item SYNOPSIS
14644
14645 =item DESCRIPTION
14646
14647 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
14648 BLOCK LIST, shuffle LIST, sum LIST
14649
14650 =item KNOWN BUGS
14651
14652 =item SUGGESTED ADDITIONS
14653
14654 =item COPYRIGHT
14655
14656 =back
14657
14658 =head2 List::Utilib::Scalar::Util, Scalar::Util - A selection of
14659 general-utility scalar subroutines
14660
14661 =over 4
14662
14663 =item SYNOPSIS
14664
14665 =item DESCRIPTION
14666
14667 blessed EXPR, dualvar NUM, STRING, isweak EXPR, openhandle FH, reftype
14668 EXPR, tainted EXPR, weaken REF
14669
14670 =item KNOWN BUGS
14671
14672 =item COPYRIGHT
14673
14674 =item BLATANT PLUG
14675
14676 =back
14677
14678 =head2 Locale::Constants - constants for Locale codes
14679
14680 =over 4
14681
14682 =item SYNOPSIS
14683
14684 =item DESCRIPTION
14685
14686 =item KNOWN BUGS AND LIMITATIONS
14687
14688 =item SEE ALSO
14689
14690 Locale::Language, Locale::Country, Locale::Script, Locale::Currency
14691
14692 =item AUTHOR
14693
14694 =item COPYRIGHT
14695
14696 =back
14697
14698 =head2 Locale::Country - ISO codes for country identification (ISO 3166)
14699
14700 =over 4
14701
14702 =item SYNOPSIS
14703
14704 =item DESCRIPTION
14705
14706 B<alpha-2>, B<alpha-3>, B<numeric>
14707
14708 =item CONVERSION ROUTINES
14709
14710 code2country( CODE, [ CODESET ] ), country2code( STRING, [ CODESET ] ),
14711 country_code2code( CODE, CODESET, CODESET )
14712
14713 =item QUERY ROUTINES
14714
14715 C<all_country_codes( [ CODESET ] )>, C<all_country_names( [ CODESET ] )>
14716
14717 =item SEMI-PRIVATE ROUTINES
14718
14719 =over 4
14720
14721 =item alias_code
14722
14723 =item rename_country
14724
14725 =back
14726
14727 =item EXAMPLES
14728
14729 =item DOMAIN NAMES
14730
14731 =item KNOWN BUGS AND LIMITATIONS
14732
14733 =item SEE ALSO
14734
14735 Locale::Language, Locale::Script, Locale::Currency, Locale::SubCountry, ISO
14736 3166-1, http://www.iso.org/iso/en/prods-services/iso3166ma/index.html,
14737 http://www.egt.ie/standards/iso3166/iso3166-1-en.html,
14738 http://www.cia.gov/cia/publications/factbook/docs/app-f.html
14739
14740 =item AUTHOR
14741
14742 =item COPYRIGHT
14743
14744 =back
14745
14746 =head2 Locale::Currency - ISO three letter codes for currency
14747 identification (ISO 4217)
14748
14749 =over 4
14750
14751 =item SYNOPSIS
14752
14753 =item DESCRIPTION
14754
14755 XTS, XXX
14756
14757 =item CONVERSION ROUTINES
14758
14759 code2currency(), currency2code()
14760
14761 =item QUERY ROUTINES
14762
14763 C<all_currency_codes()>, C<all_currency_names()>
14764
14765 =item EXAMPLES
14766
14767 =item KNOWN BUGS AND LIMITATIONS
14768
14769 =item SEE ALSO
14770
14771 Locale::Country, Locale::Script, ISO 4217:1995,
14772 http://www.bsi-global.com/iso4217currency
14773
14774 =item AUTHOR
14775
14776 =item COPYRIGHT
14777
14778 =back
14779
14780 =head2 Locale::Language - ISO two letter codes for language identification
14781 (ISO 639)
14782
14783 =over 4
14784
14785 =item SYNOPSIS
14786
14787 =item DESCRIPTION
14788
14789 =item CONVERSION ROUTINES
14790
14791 code2language(), language2code()
14792
14793 =item QUERY ROUTINES
14794
14795 C<all_language_codes()>, C<all_language_names()>
14796
14797 =item EXAMPLES
14798
14799 =item KNOWN BUGS AND LIMITATIONS
14800
14801 =item SEE ALSO
14802
14803 Locale::Country, Locale::Script, Locale::Currency, ISO 639:1988 (E/F),
14804 http://lcweb.loc.gov/standards/iso639-2/langhome.html
14805
14806 =item AUTHOR
14807
14808 =item COPYRIGHT
14809
14810 =back
14811
14812 =head2 Locale::Maketext -- framework for localization
14813
14814 =over 4
14815
14816 =item SYNOPSIS
14817
14818 =item DESCRIPTION
14819
14820 =item QUICK OVERVIEW
14821
14822 =item METHODS
14823
14824 =over 4
14825
14826 =item Construction Methods
14827
14828 =item The "maketext" Method
14829
14830 $lh->fail_with I<or> $lh->fail_with(I<PARAM>), $lh->failure_handler_auto
14831
14832 =item Utility Methods
14833
14834 $language->quant($number, $singular), $language->quant($number, $singular,
14835 $plural), $language->quant($number, $singular, $plural, $negative),
14836 $language->numf($number), $language->sprintf($format, @items),
14837 $language->language_tag(), $language->encoding()
14838
14839 =item Language Handle Attributes and Internals
14840
14841 =back
14842
14843 =item LANGUAGE CLASS HIERARCHIES
14844
14845 =item ENTRIES IN EACH LEXICON
14846
14847 =item BRACKET NOTATION
14848
14849 =item AUTO LEXICONS
14850
14851 =item CONTROLLING LOOKUP FAILURE
14852
14853 =item HOW TO USE MAKETEXT
14854
14855 =item SEE ALSO
14856
14857 =item COPYRIGHT AND DISCLAIMER
14858
14859 =item AUTHOR
14860
14861 =back
14862
14863 =head2 Locale::Maketext::TPJ13 -- article about software localization
14864
14865 =over 4
14866
14867 =item SYNOPSIS
14868
14869 =item DESCRIPTION
14870
14871 =item Localization and Perl: gettext breaks, Maketext fixes
14872
14873 =over 4
14874
14875 =item A Localization Horror Story: It Could Happen To You
14876
14877 =item The Linguistic View
14878
14879 =item Breaking gettext
14880
14881 =item Replacing gettext
14882
14883 =item Buzzwords: Abstraction and Encapsulation
14884
14885 =item Buzzword: Isomorphism
14886
14887 =item Buzzword: Inheritance
14888
14889 =item Buzzword: Concision
14890
14891 =item The Devil in the Details
14892
14893 =item The Proof in the Pudding: Localizing Web Sites
14894
14895 =item References
14896
14897 =back
14898
14899 =back
14900
14901 =head2 Locale::Script - ISO codes for script identification (ISO 15924)
14902
14903 =over 4
14904
14905 =item SYNOPSIS
14906
14907 =item DESCRIPTION
14908
14909 B<alpha-2>, B<alpha-3>, B<numeric>
14910
14911 =over 4
14912
14913 =item SPECIAL CODES
14914
14915 =back
14916
14917 =item CONVERSION ROUTINES
14918
14919 code2script( CODE, [ CODESET ] ), script2code( STRING, [ CODESET ] ),
14920 script_code2code( CODE, CODESET, CODESET )
14921
14922 =item QUERY ROUTINES
14923
14924 C<all_script_codes ( [ CODESET ] )>, C<all_script_names ( [ CODESET ] )>
14925
14926 =item EXAMPLES
14927
14928 =item KNOWN BUGS AND LIMITATIONS
14929
14930 =item SEE ALSO
14931
14932 Locale::Language, Locale::Currency, Locale::Country, ISO 15924,
14933 http://www.evertype.com/standards/iso15924/
14934
14935 =item AUTHOR
14936
14937 =item COPYRIGHT
14938
14939 =back
14940
14941 =head2 MIME::Base64 - Encoding and decoding of base64 strings
14942
14943 =over 4
14944
14945 =item SYNOPSIS
14946
14947 =item DESCRIPTION
14948
14949 encode_base64($str, [$eol]), decode_base64($str)
14950
14951 =item DIAGNOSTICS
14952
14953 Premature end of base64 data, Premature padding of base64 data
14954
14955 =item EXAMPLES
14956
14957 =item COPYRIGHT
14958
14959 =back
14960
14961 =head2 MIME::Base64::QuotedPrint, MIME::QuotedPrint - Encoding and decoding
14962 of quoted-printable strings
14963
14964 =over 4
14965
14966 =item SYNOPSIS
14967
14968 =item DESCRIPTION
14969
14970 encode_qp($str), decode_qp($str);
14971
14972 =item COPYRIGHT
14973
14974 =back
14975
14976 =head2 MIME::QuotedPrint - Encoding and decoding of quoted-printable
14977 strings
14978
14979 =over 4
14980
14981 =item SYNOPSIS
14982
14983 =item DESCRIPTION
14984
14985 encode_qp($str), decode_qp($str);
14986
14987 =item COPYRIGHT
14988
14989 =back
14990
14991 =head2 Math::BigFloat - Arbitrary size floating point math package
14992
14993 =over 4
14994
14995 =item SYNOPSIS
14996
14997 =item DESCRIPTION
14998
14999 =over 4
15000
15001 =item Canonical notation
15002
15003 =item Output
15004
15005 =item C<mantissa()>, C<exponent()> and C<parts()>
15006
15007 =item Accuracy vs. Precision
15008
15009 =item Rounding
15010
15011 ffround ( +$scale ), ffround ( -$scale ), ffround ( 0 ), fround  ( +$scale
15012 ), fround  ( -$scale ) and fround ( 0 )
15013
15014 =back
15015
15016 =item EXAMPLES
15017
15018   # not ready yet
15019
15020 =item Autocreating constants
15021
15022 =over 4
15023
15024 =item Math library
15025
15026 =item Using Math::BigInt::Lite
15027
15028 =back
15029
15030 =item BUGS
15031
15032 =item CAVEAT
15033
15034 stringify, bstr(), bdiv, Modifying and =, bpow
15035
15036 =item LICENSE
15037
15038 =item AUTHORS
15039
15040 =back
15041
15042 =head2 Math::BigInt - Arbitrary size integer math package
15043
15044 =over 4
15045
15046 =item SYNOPSIS
15047
15048 =item DESCRIPTION
15049
15050 Canonical notation, Input, Output
15051
15052 =item METHODS
15053
15054 =over 4
15055
15056 =item config
15057
15058 =item accuracy
15059
15060 =item brsft
15061
15062 =item new
15063
15064 =item bnan
15065
15066 =item bzero
15067
15068 =item binf
15069
15070 =item bone
15071
15072 =item is_one()/is_zero()/is_nan()/is_inf()
15073
15074 =item is_positive()/is_negative()
15075
15076         $x->is_positive();              # true if >= 0
15077         $x->is_negative();              # true if <  0
15078
15079 =item is_odd()/is_even()/is_int()
15080
15081 =item bcmp
15082
15083 =item bacmp
15084
15085 =item sign
15086
15087 =item bcmp
15088
15089 =item bneg
15090
15091 =item babs
15092
15093 =item bnorm
15094
15095 =item bnot
15096
15097 =item binc
15098
15099 =item bdec
15100
15101 =item badd
15102
15103 =item bsub
15104
15105 =item bmul
15106
15107 =item bdiv
15108
15109 =item bmod
15110
15111 =item bpow
15112
15113 =item blsft
15114
15115 =item brsft
15116
15117 =item band
15118
15119 =item bior
15120
15121 =item bxor
15122
15123 =item bnot
15124
15125 =item bsqrt
15126
15127 =item bfac
15128
15129 =item round
15130
15131 =item bround
15132
15133 =item bfround
15134
15135 =item bfloor
15136
15137 =item bceil
15138
15139 =item bgcd
15140
15141 =item blcm
15142
15143 =item exponent
15144
15145 =item mantissa
15146
15147 =item parts
15148
15149 =item copy
15150
15151 =item as_number
15152
15153 =item bsstr
15154
15155 =item as_hex
15156
15157 =item as_bin
15158
15159 =back
15160
15161 =item ACCURACY and PRECISION
15162
15163 =over 4
15164
15165 =item Precision P
15166
15167 =item Accuracy A
15168
15169 =item Fallback F
15170
15171 =item Rounding mode R
15172
15173 'trunc', 'even', 'odd', '+inf', '-inf', 'zero', Precision, Accuracy
15174 (significant digits), Setting/Accessing, Creating numbers, Usage,
15175 Precedence, Overriding globals, Local settings, Rounding, Default values,
15176 Remarks
15177
15178 =back
15179
15180 =item INTERNALS
15181
15182 =over 4
15183
15184 =item MATH LIBRARY
15185
15186 =item SIGN
15187
15188 =item mantissa(), exponent() and parts()
15189
15190 =back
15191
15192 =item EXAMPLES
15193
15194   use Math::BigInt;
15195
15196 =item Autocreating constants
15197
15198 =item PERFORMANCE
15199
15200 =over 4
15201
15202 =item Alternative math libraries
15203
15204 =item SUBCLASSING
15205
15206 =back
15207
15208 =item Subclassing Math::BigInt
15209
15210 =item UPGRADING
15211
15212 =over 4
15213
15214 =item Auto-upgrade
15215
15216 bsqrt(), div(), blog()
15217
15218 =back
15219
15220 =item BUGS
15221
15222 Out of Memory!, Fails to load Calc on Perl prior 5.6.0
15223
15224 =item CAVEATS
15225
15226 stringify, bstr(), bsstr() and 'cmp', int(), length, bdiv, infinity
15227 handling, Modifying and =, bpow, Overloading -$x, Mixing different object
15228 types, bsqrt(), brsft()
15229
15230 =item LICENSE
15231
15232 =item SEE ALSO
15233
15234 =item AUTHORS
15235
15236 =back
15237
15238 =head2 Math::BigInt::Calc - Pure Perl module to support Math::BigInt
15239
15240 =over 4
15241
15242 =item SYNOPSIS
15243
15244 =item DESCRIPTION
15245
15246 =item EXPORT
15247
15248 =item WRAP YOUR OWN
15249
15250 =item LICENSE
15251
15252 This program is free software; you may redistribute it and/or modify it
15253 under
15254 the same terms as Perl itself. 
15255
15256 =item AUTHORS
15257
15258 =item SEE ALSO
15259
15260 =back
15261
15262 =head2 Math::BigRat - arbitrarily big rationals
15263
15264 =over 4
15265
15266 =item SYNOPSIS
15267
15268 =item DESCRIPTION
15269
15270 =over 4
15271
15272 =item MATH LIBRARY
15273
15274 =back
15275
15276 =item METHODS
15277
15278 =over 4
15279
15280 =item new
15281
15282 =item numerator
15283
15284 =item denominator
15285
15286         $d = $x->denominator();
15287
15288 =item parts
15289
15290 =back
15291
15292 =item BUGS
15293
15294 =item LICENSE
15295
15296 =item SEE ALSO
15297
15298 =item AUTHORS
15299
15300 =back
15301
15302 =head2 Math::Complex - complex numbers and associated mathematical
15303 functions
15304
15305 =over 4
15306
15307 =item SYNOPSIS
15308
15309 =item DESCRIPTION
15310
15311 =item OPERATIONS
15312
15313 =item CREATION
15314
15315 =item STRINGIFICATION
15316
15317 =over 4
15318
15319 =item CHANGED IN PERL 5.6
15320
15321 =back
15322
15323 =item USAGE
15324
15325 =item ERRORS DUE TO DIVISION BY ZERO OR LOGARITHM OF ZERO
15326
15327 =item ERRORS DUE TO INDIGESTIBLE ARGUMENTS
15328
15329 =item BUGS
15330
15331 =item AUTHORS
15332
15333 =back
15334
15335 =head2 Math::Trig - trigonometric functions
15336
15337 =over 4
15338
15339 =item SYNOPSIS
15340
15341 =item DESCRIPTION
15342
15343 =item TRIGONOMETRIC FUNCTIONS
15344
15345 B<tan>
15346
15347 =over 4
15348
15349 =item ERRORS DUE TO DIVISION BY ZERO
15350
15351 =item SIMPLE (REAL) ARGUMENTS, COMPLEX RESULTS
15352
15353 =back
15354
15355 =item PLANE ANGLE CONVERSIONS
15356
15357 =item RADIAL COORDINATE CONVERSIONS
15358
15359 =over 4
15360
15361 =item COORDINATE SYSTEMS
15362
15363 =item 3-D ANGLE CONVERSIONS
15364
15365 cartesian_to_cylindrical, cartesian_to_spherical, cylindrical_to_cartesian,
15366 cylindrical_to_spherical, spherical_to_cartesian, spherical_to_cylindrical
15367
15368 =back
15369
15370 =item GREAT CIRCLE DISTANCES AND DIRECTIONS
15371
15372 =item EXAMPLES
15373
15374 =over 4
15375
15376 =item CAVEAT FOR GREAT CIRCLE FORMULAS
15377
15378 =back
15379
15380 =item BUGS
15381
15382 =item AUTHORS
15383
15384 =back
15385
15386 =head2 Memoize - Make functions faster by trading space for time
15387
15388 =over 4
15389
15390 =item SYNOPSIS
15391
15392 =item DESCRIPTION
15393
15394 =item DETAILS
15395
15396 =item OPTIONS
15397
15398 =over 4
15399
15400 =item INSTALL
15401
15402 =item NORMALIZER
15403
15404 =item C<SCALAR_CACHE>, C<LIST_CACHE>
15405
15406 C<MEMORY>, C<HASH>, C<TIE>, C<FAULT>, C<MERGE>
15407
15408 =back
15409
15410 =item OTHER FACILITIES
15411
15412 =over 4
15413
15414 =item C<unmemoize>
15415
15416 =item C<flush_cache>
15417
15418 =back
15419
15420 =item CAVEATS
15421
15422 =item PERSISTENT CACHE SUPPORT
15423
15424 =item EXPIRATION SUPPORT
15425
15426 =item BUGS
15427
15428 =item MAILING LIST
15429
15430 =item AUTHOR
15431
15432 =item COPYRIGHT AND LICENSE
15433
15434 =item THANK YOU
15435
15436 =back
15437
15438 =head2 Memoize::AnyDBM_File - glue to provide EXISTS for AnyDBM_File for
15439 Storable use
15440
15441 =over 4
15442
15443 =item DESCRIPTION
15444
15445 =back
15446
15447 =head2 Memoize::Expire - Plug-in module for automatic expiration of
15448 memoized values
15449
15450 =over 4
15451
15452 =item SYNOPSIS
15453
15454 =item DESCRIPTION
15455
15456 =item INTERFACE
15457
15458  TIEHASH,  EXISTS,  STORE
15459
15460 =item ALTERNATIVES
15461
15462 =item CAVEATS
15463
15464 =item AUTHOR
15465
15466 =item SEE ALSO
15467
15468 =back
15469
15470 =head2 Memoize::ExpireFile - test for Memoize expiration semantics
15471
15472 =over 4
15473
15474 =item DESCRIPTION
15475
15476 =back
15477
15478 =head2 Memoize::ExpireTest - test for Memoize expiration semantics
15479
15480 =over 4
15481
15482 =item DESCRIPTION
15483
15484 =back
15485
15486 =head2 Memoize::NDBM_File - glue to provide EXISTS for NDBM_File for
15487 Storable use
15488
15489 =over 4
15490
15491 =item DESCRIPTION
15492
15493 =back
15494
15495 =head2 Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for
15496 Storable use
15497
15498 =over 4
15499
15500 =item DESCRIPTION
15501
15502 =back
15503
15504 =head2 Memoize::Storable - store Memoized data in Storable database
15505
15506 =over 4
15507
15508 =item DESCRIPTION
15509
15510 =back
15511
15512 =head2 NDBM_File - Tied access to ndbm files
15513
15514 =over 4
15515
15516 =item SYNOPSIS
15517
15518 =item DESCRIPTION
15519
15520 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
15521
15522 =item DIAGNOSTICS
15523
15524 =over 4
15525
15526 =item C<ndbm store returned -1, errno 22, key "..." at ...>
15527
15528 =back
15529
15530 =item BUGS AND WARNINGS
15531
15532 =back
15533
15534 =head2 NEXT - Provide a pseudo-class NEXT that allows method redispatch
15535
15536 =over 4
15537
15538 =item SYNOPSIS
15539
15540 =item DESCRIPTION
15541
15542 =over 4
15543
15544 =item Enforcing redispatch
15545
15546 =item Avoiding repetitions
15547
15548 =back
15549
15550 =item AUTHOR
15551
15552 =item BUGS AND IRRITATIONS
15553
15554 =item COPYRIGHT
15555
15556 =back
15557
15558 =head2 Net::Cmd - Network Command class (as used by FTP, SMTP etc)
15559
15560 =over 4
15561
15562 =item SYNOPSIS
15563
15564 =item DESCRIPTION
15565
15566 =item USER METHODS
15567
15568 debug ( VALUE ), message (), code (), ok (), status (), datasend ( DATA ),
15569 dataend ()
15570
15571 =item CLASS METHODS
15572
15573 debug_print ( DIR, TEXT ), debug_text ( TEXT ), command ( CMD [, ARGS, ...
15574 ]), unsupported (), response (), parse_response ( TEXT ), getline (),
15575 ungetline ( TEXT ), read_until_dot (), tied_fh ()
15576
15577 =item EXPORTS
15578
15579 =item AUTHOR
15580
15581 =item COPYRIGHT
15582
15583 =back
15584
15585 =head2 Net::Config - Local configuration data for libnet
15586
15587 =over 4
15588
15589 =item SYNOPSYS
15590
15591 =item DESCRIPTION
15592
15593 =item METHODS
15594
15595 requires_firewall HOST
15596
15597 =item NetConfig VALUES
15598
15599 nntp_hosts, snpp_hosts, pop3_hosts, smtp_hosts, ph_hosts, daytime_hosts,
15600 time_hosts, inet_domain, ftp_firewall, ftp_firewall_type, ftp_ext_passive,
15601 ftp_int_pasive, local_netmask, test_hosts, test_exists
15602
15603 =back
15604
15605 =head2 Net::Domain - Attempt to evaluate the current host's internet name
15606 and domain
15607
15608 =over 4
15609
15610 =item SYNOPSIS
15611
15612 =item DESCRIPTION
15613
15614 hostfqdn (), hostname (), hostdomain ()
15615
15616 =item AUTHOR
15617
15618 =item COPYRIGHT
15619
15620 =back
15621
15622 =head2 Net::FTP - FTP Client class
15623
15624 =over 4
15625
15626 =item SYNOPSIS
15627
15628 =item DESCRIPTION
15629
15630 =item OVERVIEW
15631
15632 =item CONSTRUCTOR
15633
15634 new (HOST [,OPTIONS])
15635
15636 =item METHODS
15637
15638 login ([LOGIN [,PASSWORD [, ACCOUNT] ] ]), authorize ( [AUTH [, RESP]]),
15639 site (ARGS), type (TYPE [, ARGS]), ascii ([ARGS]) binary([ARGS])
15640 ebcdic([ARGS]) byte([ARGS]), rename ( OLDNAME, NEWNAME ), delete ( FILENAME
15641 ), cwd ( [ DIR ] ), cdup (), pwd (), restart ( WHERE ), rmdir ( DIR ),
15642 mkdir ( DIR [, RECURSE ]), ls ( [ DIR ] ), dir ( [ DIR ] ), get (
15643 REMOTE_FILE [, LOCAL_FILE [, WHERE]] ), put ( LOCAL_FILE [, REMOTE_FILE ]
15644 ), put_unique ( LOCAL_FILE [, REMOTE_FILE ] ), append ( LOCAL_FILE [,
15645 REMOTE_FILE ] ), unique_name (), mdtm ( FILE ), size ( FILE ), supported (
15646 CMD ), hash ( [FILEHANDLE_GLOB_REF],[ BYTES_PER_HASH_MARK] ), nlst ( [ DIR
15647 ] ), list ( [ DIR ] ), retr ( FILE ), stor ( FILE ), stou ( FILE ), appe (
15648 FILE ), port ( [ PORT ] ), pasv (), pasv_xfer ( SRC_FILE, DEST_SERVER [,
15649 DEST_FILE ] ), pasv_xfer_unique ( SRC_FILE, DEST_SERVER [, DEST_FILE ] ),
15650 pasv_wait ( NON_PASV_SERVER ), abort (), quit ()
15651
15652 =over 4
15653
15654 =item Methods for the adventurous
15655
15656 quot (CMD [,ARGS])
15657
15658 =back
15659
15660 =item THE dataconn CLASS
15661
15662 read ( BUFFER, SIZE [, TIMEOUT ] ), write ( BUFFER, SIZE [, TIMEOUT ] ),
15663 bytes_read (), abort (), close ()
15664
15665 =item UNIMPLEMENTED
15666
15667 B<ALLO>, B<SMNT>, B<HELP>, B<MODE>, B<SYST>, B<STAT>, B<STRU>, B<REIN>
15668
15669 =item REPORTING BUGS
15670
15671 =item AUTHOR
15672
15673 =item SEE ALSO
15674
15675 =item USE EXAMPLES
15676
15677 http://www.csh.rit.edu/~adam/Progs/autoftp-2.0.tar.gz
15678
15679 =item CREDITS
15680
15681 =item COPYRIGHT
15682
15683 =back
15684
15685 =head2 Net::NNTP - NNTP Client class
15686
15687 =over 4
15688
15689 =item SYNOPSIS
15690
15691 =item DESCRIPTION
15692
15693 =item CONSTRUCTOR
15694
15695 new ( [ HOST ] [, OPTIONS ])
15696
15697 =item METHODS
15698
15699 article ( [ MSGID|MSGNUM ], [FH] ), body ( [ MSGID|MSGNUM ], [FH] ), head (
15700 [ MSGID|MSGNUM ], [FH] ), articlefh ( [ MSGID|MSGNUM ] ), bodyfh ( [
15701 MSGID|MSGNUM ] ), headfh ( [ MSGID|MSGNUM ] ), nntpstat ( [ MSGID|MSGNUM ]
15702 ), group ( [ GROUP ] ), ihave ( MSGID [, MESSAGE ]), last (), date (),
15703 postok (), authinfo ( USER, PASS ), list (), newgroups ( SINCE [,
15704 DISTRIBUTIONS ]), newnews ( SINCE [, GROUPS [, DISTRIBUTIONS ]]), next (),
15705 post ( [ MESSAGE ] ), postfh (), slave (), quit ()
15706
15707 =over 4
15708
15709 =item Extension methods
15710
15711 newsgroups ( [ PATTERN ] ), distributions (), subscriptions (),
15712 overview_fmt (), active_times (), active ( [ PATTERN ] ), xgtitle ( PATTERN
15713 ), xhdr ( HEADER, MESSAGE-SPEC ), xover ( MESSAGE-SPEC ), xpath (
15714 MESSAGE-ID ), xpat ( HEADER, PATTERN, MESSAGE-SPEC), xrover, listgroup ( [
15715 GROUP ] ), reader
15716
15717 =back
15718
15719 =item UNSUPPORTED
15720
15721 =item DEFINITIONS
15722
15723 MESSAGE-SPEC, PATTERN, Examples, C<[^]-]>, C<*bdc>, C<[0-9a-zA-Z]>, C<a??d>
15724
15725 =item SEE ALSO
15726
15727 =item AUTHOR
15728
15729 =item COPYRIGHT
15730
15731 =back
15732
15733 =head2 Net::POP3 - Post Office Protocol 3 Client class (RFC1939)
15734
15735 =over 4
15736
15737 =item SYNOPSIS
15738
15739 =item DESCRIPTION
15740
15741 =item EXAMPLES
15742
15743 =item CONSTRUCTOR
15744
15745 new ( [ HOST, ] [ OPTIONS ] )
15746
15747 =item METHODS
15748
15749 user ( USER ), pass ( PASS ), login ( [ USER [, PASS ]] ), apop ( [ USER [,
15750 PASS ]] ), top ( MSGNUM [, NUMLINES ] ), list ( [ MSGNUM ] ), get ( MSGNUM
15751 [, FH ] ), getfh ( MSGNUM ), last (), popstat (), ping ( USER ), uidl ( [
15752 MSGNUM ] ), delete ( MSGNUM ), reset (), quit ()
15753
15754 =item NOTES
15755
15756 =item SEE ALSO
15757
15758 =item AUTHOR
15759
15760 =item COPYRIGHT
15761
15762 =back
15763
15764 =head2 Net::Ping - check a remote host for reachability
15765
15766 =over 4
15767
15768 =item SYNOPSIS
15769
15770 =item DESCRIPTION
15771
15772 =over 4
15773
15774 =item Functions
15775
15776 Net::Ping->new([$proto [, $def_timeout [, $bytes]]]);, $p->hires( { 0 | 1 }
15777 );, $p->bind($local_addr);, $p->ping($host [, $timeout]);,
15778 $p->open($host);, $p->close();, pingecho($host [, $timeout]);
15779
15780 =back
15781
15782 =item WARNING
15783
15784 =item NOTES
15785
15786 =item AUTHORS
15787
15788 =item COPYRIGHT
15789
15790 =back
15791
15792 =head2 Net::SMTP - Simple Mail Transfer Protocol Client
15793
15794 =over 4
15795
15796 =item SYNOPSIS
15797
15798 =item DESCRIPTION
15799
15800 =item EXAMPLES
15801
15802 =item CONSTRUCTOR
15803
15804 new Net::SMTP [ HOST, ] [ OPTIONS ]
15805
15806 =item METHODS
15807
15808 banner (), domain (), hello ( DOMAIN ), etrn ( DOMAIN ), auth ( USERNAME,
15809 PASSWORD ), mail ( ADDRESS [, OPTIONS] ), send ( ADDRESS ), send_or_mail (
15810 ADDRESS ), send_and_mail ( ADDRESS ), reset (), recipient ( ADDRESS [,
15811 ADDRESS [ ...]] [, OPTIONS ] ), to ( ADDRESS [, ADDRESS [...]] ), cc (
15812 ADDRESS [, ADDRESS [...]] ), bcc ( ADDRESS [, ADDRESS [...]] ), data ( [
15813 DATA ] ), expand ( ADDRESS ), verify ( ADDRESS ), help ( [ $subject ] ),
15814 quit ()
15815
15816 =item SEE ALSO
15817
15818 =item AUTHOR
15819
15820 =item COPYRIGHT
15821
15822 =back
15823
15824 =head2 Net::Time - time and daytime network client interface
15825
15826 =over 4
15827
15828 =item SYNOPSIS
15829
15830 =item DESCRIPTION
15831
15832 inet_time ( [HOST [, PROTOCOL [, TIMEOUT]]]), inet_daytime ( [HOST [,
15833 PROTOCOL [, TIMEOUT]]])
15834
15835 =item AUTHOR
15836
15837 =item COPYRIGHT
15838
15839 =back
15840
15841 =head2 Net::hostent - by-name interface to Perl's built-in gethost*()
15842 functions
15843
15844 =over 4
15845
15846 =item SYNOPSIS
15847
15848 =item DESCRIPTION
15849
15850 =item EXAMPLES
15851
15852 =item NOTE
15853
15854 =item AUTHOR
15855
15856 =back
15857
15858 =head2 Net::libnetFAQ, libnetFAQ - libnet Frequently Asked Questions
15859
15860 =over 4
15861
15862 =item DESCRIPTION
15863
15864 =over 4
15865
15866 =item Where to get this document
15867
15868 =item How to contribute to this document
15869
15870 =back
15871
15872 =item Author and Copyright Information
15873
15874 =over 4
15875
15876 =item Disclaimer
15877
15878 =back
15879
15880 =item Obtaining and installing libnet
15881
15882 =over 4
15883
15884 =item What is libnet ?
15885
15886 =item Which version of perl do I need ?
15887
15888 =item What other modules do I need ?
15889
15890 =item What machines support libnet ?
15891
15892 =item Where can I get the latest libnet release
15893
15894 =back
15895
15896 =item Using Net::FTP
15897
15898 =over 4
15899
15900 =item How do I download files from an FTP server ?
15901
15902 =item How do I transfer files in binary mode ?
15903
15904 =item How can I get the size of a file on a remote FTP server ?
15905
15906 =item How can I get the modification time of a file on a remote FTP server
15907 ?
15908
15909 =item How can I change the permissions of a file on a remote server ?
15910
15911 =item Can I do a reget operation like the ftp command ?
15912
15913 =item How do I get a directory listing from an FTP server ?
15914
15915 =item Changing directory to "" does not fail ?
15916
15917 =item I am behind a SOCKS firewall, but the Firewall option does not work ?
15918
15919 =item I am behind an FTP proxy firewall, but cannot access machines outside
15920 ?
15921
15922 =item My ftp proxy firewall does not listen on port 21
15923
15924 =item Is it possible to change the file permissions of a file on an FTP
15925 server ?
15926
15927 =item I have seen scripts call a method message, but cannot find it
15928 documented ?
15929
15930 =item Why does Net::FTP not implement mput and mget methods
15931
15932 =back
15933
15934 =item Using Net::SMTP
15935
15936 =over 4
15937
15938 =item Why can't the part of an Email address after the @ be used as the
15939 hostname ?
15940
15941 =item Why does Net::SMTP not do DNS MX lookups ?
15942
15943 =item The verify method always returns true ?
15944
15945 =back
15946
15947 =item Debugging scripts
15948
15949 =over 4
15950
15951 =item How can I debug my scripts that use Net::* modules ?
15952
15953 =back
15954
15955 =item AUTHOR AND COPYRIGHT
15956
15957 =back
15958
15959 =head2 Net::netent - by-name interface to Perl's built-in getnet*()
15960 functions
15961
15962 =over 4
15963
15964 =item SYNOPSIS
15965
15966 =item DESCRIPTION
15967
15968 =item EXAMPLES
15969
15970 =item NOTE
15971
15972 =item AUTHOR
15973
15974 =back
15975
15976 =head2 Net::protoent - by-name interface to Perl's built-in getproto*()
15977 functions
15978
15979 =over 4
15980
15981 =item SYNOPSIS
15982
15983 =item DESCRIPTION
15984
15985 =item NOTE
15986
15987 =item AUTHOR
15988
15989 =back
15990
15991 =head2 Net::servent - by-name interface to Perl's built-in getserv*()
15992 functions
15993
15994 =over 4
15995
15996 =item SYNOPSIS
15997
15998 =item DESCRIPTION
15999
16000 =item EXAMPLES
16001
16002 =item NOTE
16003
16004 =item AUTHOR
16005
16006 =back
16007
16008 =head2 Netrc, Net::Netrc - OO interface to users netrc file
16009
16010 =over 4
16011
16012 =item SYNOPSIS
16013
16014 =item DESCRIPTION
16015
16016 =item THE .netrc FILE
16017
16018 machine name, default, login name, password string, account string, macdef
16019 name
16020
16021 =item CONSTRUCTOR
16022
16023 lookup ( MACHINE [, LOGIN ])
16024
16025 =item METHODS
16026
16027 login (), password (), account (), lpa ()
16028
16029 =item AUTHOR
16030
16031 =item SEE ALSO
16032
16033 =item COPYRIGHT
16034
16035 =back
16036
16037 =head2 O - Generic interface to Perl Compiler backends
16038
16039 =over 4
16040
16041 =item SYNOPSIS
16042
16043 =item DESCRIPTION
16044
16045 =item CONVENTIONS
16046
16047 =item IMPLEMENTATION
16048
16049 =item BUGS
16050
16051 =item AUTHOR
16052
16053 =back
16054
16055 =head2 ODBM_File - Tied access to odbm files
16056
16057 =over 4
16058
16059 =item SYNOPSIS
16060
16061 =item DESCRIPTION
16062
16063 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
16064
16065 =item DIAGNOSTICS
16066
16067 =over 4
16068
16069 =item C<odbm store returned -1, errno 22, key "..." at ...>
16070
16071 =back
16072
16073 =item BUGS AND WARNINGS
16074
16075 =back
16076
16077 =head2 Opcode - Disable named opcodes when compiling perl code
16078
16079 =over 4
16080
16081 =item SYNOPSIS
16082
16083 =item DESCRIPTION
16084
16085 =item NOTE
16086
16087 =item WARNING
16088
16089 =item Operator Names and Operator Lists
16090
16091 an operator name (opname), an operator tag name (optag), a negated opname
16092 or optag, an operator set (opset)
16093
16094 =item Opcode Functions
16095
16096 opcodes, opset (OP, ...), opset_to_ops (OPSET), opset_to_hex (OPSET),
16097 full_opset, empty_opset, invert_opset (OPSET), verify_opset (OPSET, ...),
16098 define_optag (OPTAG, OPSET), opmask_add (OPSET), opmask, opdesc (OP, ...),
16099 opdump (PAT)
16100
16101 =item Manipulating Opsets
16102
16103 =item TO DO (maybe)
16104
16105 =back
16106
16107 =over 4
16108
16109 =item Predefined Opcode Tags
16110
16111 :base_core, :base_mem, :base_loop, :base_io, :base_orig, :base_math,
16112 :base_thread, :default, :filesys_read, :sys_db, :browse, :filesys_open,
16113 :filesys_write, :subprocess, :ownprocess, :others, :still_to_be_decided,
16114 :dangerous
16115
16116 =item SEE ALSO
16117
16118 =item AUTHORS
16119
16120 =back
16121
16122 =head2 Opcode::Safe, Safe - Compile and execute code in restricted
16123 compartments
16124
16125 =over 4
16126
16127 =item SYNOPSIS
16128
16129 =item DESCRIPTION
16130
16131 a new namespace, an operator mask
16132
16133 =item WARNING
16134
16135 =over 4
16136
16137 =item RECENT CHANGES
16138
16139 =item Methods in class Safe
16140
16141 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
16142 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
16143 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
16144 root (NAMESPACE), mask (MASK)
16145
16146 =item Some Safety Issues
16147
16148 Memory, CPU, Snooping, Signals, State Changes
16149
16150 =item AUTHOR
16151
16152 =back
16153
16154 =back
16155
16156 =head2 Opcode::ops, ops - Perl pragma to restrict unsafe operations when
16157 compiling
16158
16159 =over 4
16160
16161 =item SYNOPSIS  
16162
16163 =item DESCRIPTION
16164
16165 =item SEE ALSO
16166
16167 =back
16168
16169 =head2 POSIX - Perl interface to IEEE Std 1003.1
16170
16171 =over 4
16172
16173 =item SYNOPSIS
16174
16175 =item DESCRIPTION
16176
16177 =item NOTE
16178
16179 =item CAVEATS 
16180
16181 =item FUNCTIONS
16182
16183 _exit, abort, abs, access, acos, alarm, asctime, asin, assert, atan, atan2,
16184 atexit, atof, atoi, atol, bsearch, calloc, ceil, chdir, chmod, chown,
16185 clearerr, clock, close, closedir, cos, cosh, creat, ctermid, ctime,
16186 cuserid, difftime, div, dup, dup2, errno, execl, execle, execlp, execv,
16187 execve, execvp, exit, exp, fabs, fclose, fcntl, fdopen, feof, ferror,
16188 fflush, fgetc, fgetpos, fgets, fileno, floor, fmod, fopen, fork, fpathconf,
16189 fprintf, fputc, fputs, fread, free, freopen, frexp, fscanf, fseek, fsetpos,
16190 fstat, ftell, fwrite, getc, getchar, getcwd, getegid, getenv, geteuid,
16191 getgid, getgrgid, getgrnam, getgroups, getlogin, getpgrp, getpid, getppid,
16192 getpwnam, getpwuid, gets, getuid, gmtime, isalnum, isalpha, isatty,
16193 iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace, isupper,
16194 isxdigit, kill, labs, ldexp, ldiv, link, localeconv, localtime, log, log10,
16195 longjmp, lseek, malloc, mblen, mbstowcs, mbtowc, memchr, memcmp, memcpy,
16196 memmove, memset, mkdir, mkfifo, mktime, modf, nice, offsetof, open,
16197 opendir, pathconf, pause, perror, pipe, pow, printf, putc, putchar, puts,
16198 qsort, raise, rand, read, readdir, realloc, remove, rename, rewind,
16199 rewinddir, rmdir, scanf, setgid, setjmp, setlocale, setpgid, setsid,
16200 setuid, sigaction, siglongjmp, sigpending, sigprocmask, sigsetjmp,
16201 sigsuspend, sin, sinh, sleep, sprintf, sqrt, srand, sscanf, stat, strcat,
16202 strchr, strcmp, strcoll, strcpy, strcspn, strerror, strftime, strlen,
16203 strncat, strncmp, strncpy, strpbrk, strrchr, strspn, strstr, strtod,
16204 strtok, strtol, strtoul, strxfrm, sysconf, system, tan, tanh, tcdrain,
16205 tcflow, tcflush, tcgetpgrp, tcsendbreak, tcsetpgrp, time, times, tmpfile,
16206 tmpnam, tolower, toupper, ttyname, tzname, tzset, umask, uname, ungetc,
16207 unlink, utime, vfprintf, vprintf, vsprintf, wait, waitpid, wcstombs,
16208 wctomb, write
16209
16210 =item CLASSES
16211
16212 =over 4
16213
16214 =item POSIX::SigAction
16215
16216 new
16217
16218 =item POSIX::SigSet
16219
16220 new, addset, delset, emptyset, fillset, ismember
16221
16222 =item POSIX::Termios
16223
16224 new, getattr, getcc, getcflag, getiflag, getispeed, getlflag, getoflag,
16225 getospeed, setattr, setcc, setcflag, setiflag, setispeed, setlflag,
16226 setoflag, setospeed, Baud rate values, Terminal interface values, c_cc
16227 field values, c_cflag field values, c_iflag field values, c_lflag field
16228 values, c_oflag field values
16229
16230 =back
16231
16232 =item PATHNAME CONSTANTS
16233
16234 Constants
16235
16236 =item POSIX CONSTANTS
16237
16238 Constants
16239
16240 =item SYSTEM CONFIGURATION
16241
16242 Constants
16243
16244 =item ERRNO
16245
16246 Constants
16247
16248 =item FCNTL
16249
16250 Constants
16251
16252 =item FLOAT
16253
16254 Constants
16255
16256 =item LIMITS
16257
16258 Constants
16259
16260 =item LOCALE
16261
16262 Constants
16263
16264 =item MATH
16265
16266 Constants
16267
16268 =item SIGNAL
16269
16270 Constants
16271
16272 =item STAT
16273
16274 Constants, Macros
16275
16276 =item STDLIB
16277
16278 Constants
16279
16280 =item STDIO
16281
16282 Constants
16283
16284 =item TIME
16285
16286 Constants
16287
16288 =item UNISTD
16289
16290 Constants
16291
16292 =item WAIT
16293
16294 Constants, WNOHANG, WUNTRACED, Macros, WIFEXITED, WEXITSTATUS, WIFSIGNALED,
16295 WTERMSIG, WIFSTOPPED, WSTOPSIG
16296
16297 =back
16298
16299 =head2 PerlIO - On demand loader for PerlIO layers and root of PerlIO::*
16300 name space
16301
16302 =over 4
16303
16304 =item SYNOPSIS
16305
16306 =item DESCRIPTION
16307
16308 unix, stdio, perlio, crlf, utf8, bytes, raw
16309
16310 =over 4
16311
16312 =item Defaults and how to override them
16313
16314 =back
16315
16316 =item AUTHOR
16317
16318 =item SEE ALSO
16319
16320 =back
16321
16322 =head2 PerlIO::Scalar - support module for in-memory IO.
16323
16324 =over 4
16325
16326 =item SYNOPSIS
16327
16328 =item DESCRIPTION
16329
16330 =back
16331
16332 =head2 PerlIO::Via - Helper class for PerlIO layers implemented in perl
16333
16334 =over 4
16335
16336 =item SYNOPSIS
16337
16338 =item DESCRIPTION
16339
16340 $class->PUSHED([$mode[,$fh]]), $obj->POPPED([$fh]),
16341 $class->OPEN($path,$mode[,$fh]), $class->FDOPEN($fd),
16342 $class->SYSOPEN($path,$imode,$perm,$fh), $obj->FILENO($fh),
16343 $obj->READ($buffer,$len,$fh), $obj->WRITE($buffer,$fh), $obj->FILL($fh),
16344 $obj->CLOSE($fh), $obj->SEEK($posn,$whence,$fh), $obj->TELL($fh),
16345 $obj->UNREAD($buffer,$fh), $obj->FLUSH($fh), $obj->SETLINEBUF($fh),
16346 $obj->CLEARERR($fh), $obj->ERROR($fh), $obj->EOF($fh)
16347
16348 =over 4
16349
16350 =item Example - a Hexadecimal Handle
16351
16352 =back
16353
16354 =back
16355
16356 =head2 PerlIO::encoding - encoding layer
16357
16358 =over 4
16359
16360 =item SYNOPSIS
16361
16362 =item DESCRIPTION
16363
16364 =item SEE ALSO
16365
16366 =back
16367
16368 =head2 Pod::Checker, podchecker() - check pod documents for syntax errors
16369
16370 =over 4
16371
16372 =item SYNOPSIS
16373
16374 =item OPTIONS/ARGUMENTS
16375
16376 =over 4
16377
16378 =item podchecker()
16379
16380 B<-warnings> =E<gt> I<val>
16381
16382 =back
16383
16384 =item DESCRIPTION
16385
16386 =item DIAGNOSTICS
16387
16388 =over 4
16389
16390 =item Errors
16391
16392 empty =headn, =over on line I<N> without closing =back, =item without
16393 previous =over, =back without previous =over, No argument for =begin, =end
16394 without =begin, Nested =begin's, =for without formatter specification,
16395 unresolved internal link I<NAME>, Unknown command "I<CMD>", Unknown
16396 interior-sequence "I<SEQ>", nested commands
16397 I<CMD>E<lt>...I<CMD>E<lt>...E<gt>...E<gt>, garbled entity I<STRING>, Entity
16398 number out of range, malformed link LE<lt>E<gt>, nonempty ZE<lt>E<gt>,
16399 empty XE<lt>E<gt>, Spurious text after =pod / =cut, Spurious character(s)
16400 after =back
16401
16402 =item Warnings
16403
16404 multiple occurence of link target I<name>, line containing nothing but
16405 whitespace in paragraph, file does not start with =head, previous =item has
16406 no contents, preceding non-item paragraph(s), =item type mismatch (I<one>
16407 vs. I<two>), I<N> unescaped C<E<lt>E<gt>> in paragraph, Unknown entity, No
16408 items in =over, No argument for =item, empty section in previous paragraph,
16409 Verbatim paragraph in NAME section
16410
16411 =item Hyperlinks
16412
16413 ignoring leading/trailing whitespace in link, (section) in '$page'
16414 deprecated, alternative text/node '%s' contains non-escaped | or /
16415
16416 =back
16417
16418 =item RETURN VALUE
16419
16420 =item EXAMPLES
16421
16422 =item INTERFACE
16423
16424 =back
16425
16426 C<Pod::Checker-E<gt>new( %options )>
16427
16428 C<$checker-E<gt>poderror( @args )>, C<$checker-E<gt>poderror( {%opts},
16429 @args )>
16430
16431 C<$checker-E<gt>num_errors()>
16432
16433 C<$checker-E<gt>name()>
16434
16435 C<$checker-E<gt>node()>
16436
16437 C<$checker-E<gt>idx()>
16438
16439 C<$checker-E<gt>hyperlink()>
16440
16441 =over 4
16442
16443 =item AUTHOR
16444
16445 =back
16446
16447 =head2 Pod::Find - find POD documents in directory trees
16448
16449 =over 4
16450
16451 =item SYNOPSIS
16452
16453 =item DESCRIPTION
16454
16455 =back
16456
16457 =over 4
16458
16459 =item C<pod_find( { %opts } , @directories )>
16460
16461 C<-verbose =E<gt> 1>, C<-perl =E<gt> 1>, C<-script =E<gt> 1>, C<-inc =E<gt>
16462 1>
16463
16464 =back
16465
16466 =over 4
16467
16468 =item C<simplify_name( $str )>
16469
16470 =back
16471
16472 =over 4
16473
16474 =item C<pod_where( { %opts }, $pod )>
16475
16476 C<-inc =E<gt> 1>, C<-dirs =E<gt> [ $dir1, $dir2, ... ]>, C<-verbose =E<gt>
16477 1>
16478
16479 =back
16480
16481 =over 4
16482
16483 =item C<contains_pod( $file , $verbose )>
16484
16485 =back
16486
16487 =over 4
16488
16489 =item AUTHOR
16490
16491 =item SEE ALSO
16492
16493 =back
16494
16495 =head2 Pod::Html - module to convert pod files to HTML
16496
16497 =over 4
16498
16499 =item SYNOPSIS
16500
16501 =item DESCRIPTION
16502
16503 =item ARGUMENTS
16504
16505 backlink, cachedir, css, flush, header, help, htmldir, htmlroot, index,
16506 infile, libpods, netscape, outfile, podpath, podroot, quiet, recurse,
16507 title, verbose
16508
16509 =item EXAMPLE
16510
16511 =item ENVIRONMENT
16512
16513 =item AUTHOR
16514
16515 =item SEE ALSO
16516
16517 =item COPYRIGHT
16518
16519 =back
16520
16521 =head2 Pod::InputObjects - objects representing POD input paragraphs,
16522 commands, etc.
16523
16524 =over 4
16525
16526 =item SYNOPSIS
16527
16528 =item REQUIRES
16529
16530 =item EXPORTS
16531
16532 =item DESCRIPTION
16533
16534 package B<Pod::InputSource>, package B<Pod::Paragraph>, package
16535 B<Pod::InteriorSequence>, package B<Pod::ParseTree>
16536
16537 =back
16538
16539 =over 4
16540
16541 =item B<Pod::InputSource>
16542
16543 =back
16544
16545 =over 4
16546
16547 =item B<new()>
16548
16549 =back
16550
16551 =over 4
16552
16553 =item B<name()>
16554
16555 =back
16556
16557 =over 4
16558
16559 =item B<handle()>
16560
16561 =back
16562
16563 =over 4
16564
16565 =item B<was_cutting()>
16566
16567 =back
16568
16569 =over 4
16570
16571 =item B<Pod::Paragraph>
16572
16573 =back
16574
16575 =over 4
16576
16577 =item Pod::Paragraph-E<gt>B<new()>
16578
16579 =back
16580
16581 =over 4
16582
16583 =item $pod_para-E<gt>B<cmd_name()>
16584
16585 =back
16586
16587 =over 4
16588
16589 =item $pod_para-E<gt>B<text()>
16590
16591 =back
16592
16593 =over 4
16594
16595 =item $pod_para-E<gt>B<raw_text()>
16596
16597 =back
16598
16599 =over 4
16600
16601 =item $pod_para-E<gt>B<cmd_prefix()>
16602
16603 =back
16604
16605 =over 4
16606
16607 =item $pod_para-E<gt>B<cmd_separator()>
16608
16609 =back
16610
16611 =over 4
16612
16613 =item $pod_para-E<gt>B<parse_tree()>
16614
16615 =back
16616
16617 =over 4
16618
16619 =item $pod_para-E<gt>B<file_line()>
16620
16621 =back
16622
16623 =over 4
16624
16625 =item B<Pod::InteriorSequence>
16626
16627 =back
16628
16629 =over 4
16630
16631 =item Pod::InteriorSequence-E<gt>B<new()>
16632
16633 =back
16634
16635 =over 4
16636
16637 =item $pod_seq-E<gt>B<cmd_name()>
16638
16639 =back
16640
16641 =over 4
16642
16643 =item $pod_seq-E<gt>B<prepend()>
16644
16645 =back
16646
16647 =over 4
16648
16649 =item $pod_seq-E<gt>B<append()>
16650
16651 =back
16652
16653 =over 4
16654
16655 =item $pod_seq-E<gt>B<nested()>
16656
16657 =back
16658
16659 =over 4
16660
16661 =item $pod_seq-E<gt>B<raw_text()>
16662
16663 =back
16664
16665 =over 4
16666
16667 =item $pod_seq-E<gt>B<left_delimiter()>
16668
16669 =back
16670
16671 =over 4
16672
16673 =item $pod_seq-E<gt>B<right_delimiter()>
16674
16675 =back
16676
16677 =over 4
16678
16679 =item $pod_seq-E<gt>B<parse_tree()>
16680
16681 =back
16682
16683 =over 4
16684
16685 =item $pod_seq-E<gt>B<file_line()>
16686
16687 =back
16688
16689 =over 4
16690
16691 =item Pod::InteriorSequence::B<DESTROY()>
16692
16693 =back
16694
16695 =over 4
16696
16697 =item B<Pod::ParseTree>
16698
16699 =back
16700
16701 =over 4
16702
16703 =item Pod::ParseTree-E<gt>B<new()>
16704
16705 =back
16706
16707 =over 4
16708
16709 =item $ptree-E<gt>B<top()>
16710
16711 =back
16712
16713 =over 4
16714
16715 =item $ptree-E<gt>B<children()>
16716
16717 =back
16718
16719 =over 4
16720
16721 =item $ptree-E<gt>B<prepend()>
16722
16723 =back
16724
16725 =over 4
16726
16727 =item $ptree-E<gt>B<append()>
16728
16729 =back
16730
16731 =over 4
16732
16733 =item $ptree-E<gt>B<raw_text()>
16734
16735 =back
16736
16737 =over 4
16738
16739 =item Pod::ParseTree::B<DESTROY()>
16740
16741 =back
16742
16743 =over 4
16744
16745 =item SEE ALSO
16746
16747 =item AUTHOR
16748
16749 =back
16750
16751 =head2 Pod::LaTeX - Convert Pod data to formatted Latex
16752
16753 =over 4
16754
16755 =item SYNOPSIS
16756
16757 =item DESCRIPTION
16758
16759 =back
16760
16761 =over 4
16762
16763 =item OBJECT METHODS
16764
16765 C<initialize>
16766
16767 =back
16768
16769 =over 4
16770
16771 =item Data Accessors
16772
16773 B<AddPreamble>
16774
16775 =back
16776
16777 B<AddPostamble>
16778
16779 B<Head1Level>
16780
16781 B<Label>
16782
16783 B<LevelNoNum>
16784
16785 B<MakeIndex>
16786
16787 B<ReplaceNAMEwithSection>
16788
16789 B<StartWithNewPage>
16790
16791 B<TableOfContents>
16792
16793 B<UniqueLabels>
16794
16795 B<UserPreamble>
16796
16797 B<UserPostamble>
16798
16799 B<Lists>
16800
16801 =over 4
16802
16803 =item Subclassed methods
16804
16805 =back
16806
16807 B<begin_pod>
16808
16809 B<end_pod>
16810
16811 B<command>
16812
16813 B<verbatim>
16814
16815 B<textblock>
16816
16817 B<interior_sequence>
16818
16819 =over 4
16820
16821 =item List Methods
16822
16823 B<begin_list>
16824
16825 =back
16826
16827 B<end_list>
16828
16829 B<add_item>
16830
16831 =over 4
16832
16833 =item Methods for headings
16834
16835 B<head>
16836
16837 =back
16838
16839 =over 4
16840
16841 =item Internal methods
16842
16843 B<_output>
16844
16845 =back
16846
16847 B<_replace_special_chars>
16848
16849 B<_replace_special_chars_late>
16850
16851 B<_create_label>
16852
16853 B<_create_index>
16854
16855 B<_clean_latex_commands>
16856
16857 B<_split_delimited>
16858
16859 =over 4
16860
16861 =item NOTES
16862
16863 =item SEE ALSO
16864
16865 =item AUTHORS
16866
16867 =item COPYRIGHT
16868
16869 =item REVISION
16870
16871 =back
16872
16873 =head2 Pod::Man - Convert POD data to formatted *roff input
16874
16875 =over 4
16876
16877 =item SYNOPSIS
16878
16879 =item DESCRIPTION
16880
16881 center, date, fixed, fixedbold, fixeditalic, fixedbolditalic, name, quotes,
16882 release, section
16883
16884 =item DIAGNOSTICS
16885
16886 roff font should be 1 or 2 chars, not "%s", Invalid link %s, Invalid quote
16887 specification "%s", %s:%d: Unknown command paragraph "%s", %s:%d: Unknown
16888 escape EE<lt>%sE<gt>, %s:%d: Unknown formatting code %s, %s:%d: Unmatched
16889 =back
16890
16891 =item BUGS
16892
16893 =item CAVEATS
16894
16895 =item SEE ALSO
16896
16897 =item AUTHOR
16898
16899 =item COPYRIGHT AND LICENSE
16900
16901 =back
16902
16903 =head2 Pod::ParseLink -- Parse an LE<lt>E<gt> formatting code in POD text
16904
16905 =over 4
16906
16907 =item SYNOPSIS
16908
16909 =item DESCRIPTION
16910
16911 =item AUTHOR
16912
16913 =item COPYRIGHT AND LICENSE
16914
16915 =back
16916
16917 =head2 Pod::ParseUtils - helpers for POD parsing and conversion
16918
16919 =over 4
16920
16921 =item SYNOPSIS
16922
16923 =item DESCRIPTION
16924
16925 =back
16926
16927 =over 4
16928
16929 =item Pod::List
16930
16931 Pod::List-E<gt>new()
16932
16933 =back
16934
16935 $list-E<gt>file()
16936
16937 $list-E<gt>start()
16938
16939 $list-E<gt>indent()
16940
16941 $list-E<gt>type()
16942
16943 $list-E<gt>rx()
16944
16945 $list-E<gt>item()
16946
16947 $list-E<gt>parent()
16948
16949 $list-E<gt>tag()
16950
16951 =over 4
16952
16953 =item Pod::Hyperlink
16954
16955 Pod::Hyperlink-E<gt>new()
16956
16957 =back
16958
16959 $link-E<gt>parse($string)
16960
16961 $link-E<gt>markup($string)
16962
16963 $link-E<gt>text()
16964
16965 $link-E<gt>warning()
16966
16967 $link-E<gt>file(), $link-E<gt>line()
16968
16969 $link-E<gt>page()
16970
16971 $link-E<gt>node()
16972
16973 $link-E<gt>alttext()
16974
16975 $link-E<gt>type()
16976
16977 $link-E<gt>link()
16978
16979 =over 4
16980
16981 =item Pod::Cache
16982
16983 Pod::Cache-E<gt>new()
16984
16985 =back
16986
16987 $cache-E<gt>item()
16988
16989 $cache-E<gt>find_page($name)
16990
16991 =over 4
16992
16993 =item Pod::Cache::Item
16994
16995 Pod::Cache::Item-E<gt>new()
16996
16997 =back
16998
16999 $cacheitem-E<gt>page()
17000
17001 $cacheitem-E<gt>description()
17002
17003 $cacheitem-E<gt>path()
17004
17005 $cacheitem-E<gt>file()
17006
17007 $cacheitem-E<gt>nodes()
17008
17009 $cacheitem-E<gt>find_node($name)
17010
17011 $cacheitem-E<gt>idx()
17012
17013 =over 4
17014
17015 =item AUTHOR
17016
17017 =item SEE ALSO
17018
17019 =back
17020
17021 =head2 Pod::Parser - base class for creating POD filters and translators
17022
17023 =over 4
17024
17025 =item SYNOPSIS
17026
17027 =item REQUIRES
17028
17029 =item EXPORTS
17030
17031 =item DESCRIPTION
17032
17033 =item QUICK OVERVIEW
17034
17035 =item PARSING OPTIONS
17036
17037 B<-want_nonPODs> (default: unset), B<-process_cut_cmd> (default: unset),
17038 B<-warnings> (default: unset)
17039
17040 =back
17041
17042 =over 4
17043
17044 =item RECOMMENDED SUBROUTINE/METHOD OVERRIDES
17045
17046 =back
17047
17048 =over 4
17049
17050 =item B<command()>
17051
17052 C<$cmd>, C<$text>, C<$line_num>, C<$pod_para>
17053
17054 =back
17055
17056 =over 4
17057
17058 =item B<verbatim()>
17059
17060 C<$text>, C<$line_num>, C<$pod_para>
17061
17062 =back
17063
17064 =over 4
17065
17066 =item B<textblock()>
17067
17068 C<$text>, C<$line_num>, C<$pod_para>
17069
17070 =back
17071
17072 =over 4
17073
17074 =item B<interior_sequence()>
17075
17076 =back
17077
17078 =over 4
17079
17080 =item OPTIONAL SUBROUTINE/METHOD OVERRIDES
17081
17082 =back
17083
17084 =over 4
17085
17086 =item B<new()>
17087
17088 =back
17089
17090 =over 4
17091
17092 =item B<initialize()>
17093
17094 =back
17095
17096 =over 4
17097
17098 =item B<begin_pod()>
17099
17100 =back
17101
17102 =over 4
17103
17104 =item B<begin_input()>
17105
17106 =back
17107
17108 =over 4
17109
17110 =item B<end_input()>
17111
17112 =back
17113
17114 =over 4
17115
17116 =item B<end_pod()>
17117
17118 =back
17119
17120 =over 4
17121
17122 =item B<preprocess_line()>
17123
17124 =back
17125
17126 =over 4
17127
17128 =item B<preprocess_paragraph()>
17129
17130 =back
17131
17132 =over 4
17133
17134 =item METHODS FOR PARSING AND PROCESSING
17135
17136 =back
17137
17138 =over 4
17139
17140 =item B<parse_text()>
17141
17142 B<-expand_seq> =E<gt> I<code-ref>|I<method-name>, B<-expand_text> =E<gt>
17143 I<code-ref>|I<method-name>, B<-expand_ptree> =E<gt>
17144 I<code-ref>|I<method-name>
17145
17146 =back
17147
17148 =over 4
17149
17150 =item B<interpolate()>
17151
17152 =back
17153
17154 =over 4
17155
17156 =item B<parse_paragraph()>
17157
17158 =back
17159
17160 =over 4
17161
17162 =item B<parse_from_filehandle()>
17163
17164 =back
17165
17166 =over 4
17167
17168 =item B<parse_from_file()>
17169
17170 =back
17171
17172 =over 4
17173
17174 =item ACCESSOR METHODS
17175
17176 =back
17177
17178 =over 4
17179
17180 =item B<errorsub()>
17181
17182 =back
17183
17184 =over 4
17185
17186 =item B<cutting()>
17187
17188 =back
17189
17190 =over 4
17191
17192 =item B<parseopts()>
17193
17194 =back
17195
17196 =over 4
17197
17198 =item B<output_file()>
17199
17200 =back
17201
17202 =over 4
17203
17204 =item B<output_handle()>
17205
17206 =back
17207
17208 =over 4
17209
17210 =item B<input_file()>
17211
17212 =back
17213
17214 =over 4
17215
17216 =item B<input_handle()>
17217
17218 =back
17219
17220 =over 4
17221
17222 =item B<input_streams()>
17223
17224 =back
17225
17226 =over 4
17227
17228 =item B<top_stream()>
17229
17230 =back
17231
17232 =over 4
17233
17234 =item PRIVATE METHODS AND DATA
17235
17236 =back
17237
17238 =over 4
17239
17240 =item B<_push_input_stream()>
17241
17242 =back
17243
17244 =over 4
17245
17246 =item B<_pop_input_stream()>
17247
17248 =back
17249
17250 =over 4
17251
17252 =item TREE-BASED PARSING
17253
17254 =item SEE ALSO
17255
17256 =item AUTHOR
17257
17258 =back
17259
17260 =head2 Pod::Plainer - Perl extension for converting Pod to old style Pod.
17261
17262 =over 4
17263
17264 =item SYNOPSIS
17265
17266 =item DESCRIPTION
17267
17268 =over 4
17269
17270 =item EXPORT
17271
17272 =back
17273
17274 =item AUTHOR
17275
17276 =item SEE ALSO
17277
17278 =back
17279
17280 =head2 Pod::Select, podselect() - extract selected sections of POD from
17281 input
17282
17283 =over 4
17284
17285 =item SYNOPSIS
17286
17287 =item REQUIRES
17288
17289 =item EXPORTS
17290
17291 =item DESCRIPTION
17292
17293 =item SECTION SPECIFICATIONS
17294
17295 =item RANGE SPECIFICATIONS
17296
17297 =back
17298
17299 =over 4
17300
17301 =item OBJECT METHODS
17302
17303 =back
17304
17305 =over 4
17306
17307 =item B<curr_headings()>
17308
17309 =back
17310
17311 =over 4
17312
17313 =item B<select()>
17314
17315 =back
17316
17317 =over 4
17318
17319 =item B<add_selection()>
17320
17321 =back
17322
17323 =over 4
17324
17325 =item B<clear_selections()>
17326
17327 =back
17328
17329 =over 4
17330
17331 =item B<match_section()>
17332
17333 =back
17334
17335 =over 4
17336
17337 =item B<is_selected()>
17338
17339 =back
17340
17341 =over 4
17342
17343 =item EXPORTED FUNCTIONS
17344
17345 =back
17346
17347 =over 4
17348
17349 =item B<podselect()>
17350
17351 B<-output>, B<-sections>, B<-ranges>
17352
17353 =back
17354
17355 =over 4
17356
17357 =item PRIVATE METHODS AND DATA
17358
17359 =back
17360
17361 =over 4
17362
17363 =item B<_compile_section_spec()>
17364
17365 =back
17366
17367 =over 4
17368
17369 =item $self->{_SECTION_HEADINGS}
17370
17371 =back
17372
17373 =over 4
17374
17375 =item $self->{_SELECTED_SECTIONS}
17376
17377 =back
17378
17379 =over 4
17380
17381 =item SEE ALSO
17382
17383 =item AUTHOR
17384
17385 =back
17386
17387 =head2 Pod::Text - Convert POD data to formatted ASCII text
17388
17389 =over 4
17390
17391 =item SYNOPSIS
17392
17393 =item DESCRIPTION
17394
17395 alt, code, indent, loose, quotes, sentence, width
17396
17397 =item DIAGNOSTICS
17398
17399 Bizarre space in item, Item called without tag, Can't open %s for reading:
17400 %s, Invalid quote specification "%s", %s:%d: Unknown command paragraph: %s,
17401 %s:%d: Unknown escape: %s, %s:%d: Unknown formatting code: %s, %s:%d:
17402 Unmatched =back
17403
17404 =item RESTRICTIONS
17405
17406 =item NOTES
17407
17408 =item SEE ALSO
17409
17410 =item AUTHOR
17411
17412 =item COPYRIGHT AND LICENSE
17413
17414 =back
17415
17416 =head2 Pod::Text::Color - Convert POD data to formatted color ASCII text
17417
17418 =over 4
17419
17420 =item SYNOPSIS
17421
17422 =item DESCRIPTION
17423
17424 =item BUGS
17425
17426 =item SEE ALSO
17427
17428 =item AUTHOR
17429
17430 =item COPYRIGHT AND LICENSE
17431
17432 =back
17433
17434 =head2 Pod::Text::Overstrike - Convert POD data to formatted overstrike
17435 text
17436
17437 =over 4
17438
17439 =item SYNOPSIS
17440
17441 =item DESCRIPTION
17442
17443 =item BUGS
17444
17445 =item SEE ALSO
17446
17447 =item AUTHOR
17448
17449 =item COPYRIGHT AND LICENSE
17450
17451 =back
17452
17453 =head2 Pod::Text::Termcap, Pod::Text::Color - Convert POD data to ASCII
17454 text with format escapes
17455
17456 =over 4
17457
17458 =item SYNOPSIS
17459
17460 =item DESCRIPTION
17461
17462 =item NOTES
17463
17464 =item SEE ALSO
17465
17466 =item AUTHOR
17467
17468 =item COPYRIGHT AND LICENSE
17469
17470 =back
17471
17472 =head2 Pod::Usage, pod2usage() - print a usage message from embedded pod
17473 documentation
17474
17475 =over 4
17476
17477 =item SYNOPSIS
17478
17479 =item ARGUMENTS
17480
17481 C<-message>, C<-msg>, C<-exitval>, C<-verbose>, C<-output>, C<-input>,
17482 C<-pathlist>
17483
17484 =item DESCRIPTION
17485
17486 =item EXAMPLES
17487
17488 =over 4
17489
17490 =item Recommended Use
17491
17492 =back
17493
17494 =item CAVEATS
17495
17496 =item AUTHOR
17497
17498 =item ACKNOWLEDGEMENTS
17499
17500 =back
17501
17502 =head2 Pod::t::basic, basic.pod - Test of various basic POD features in
17503 translators.
17504
17505 =over 4
17506
17507 =item HEADINGS
17508
17509 =item This C<is> a "level 1" heading
17510
17511 =over 4
17512
17513 =item ``Level'' "2 I<heading>
17514
17515 =back
17516
17517 =item This C<is> a "level 1" heading
17518
17519 =over 4
17520
17521 =item ``Level'' 2 I<heading>
17522
17523 =back
17524
17525 =item LINKS
17526
17527 =item OVER AND ITEMS
17528
17529 This  is a test, a, b, a, b, c, d, "foo", B<bar>, C<baz>, Some longer item
17530 text
17531
17532 =item FORMATTING CODES
17533
17534 E<amp>, E<apos>, E<lt>, E<gt>, E<quot>, E<sol>
17535
17536 =item VERBATIM
17537
17538 =item CONCLUSION
17539
17540 =back
17541
17542 =head2 Pod::t::htmlescp, Escape Sequences Test
17543
17544 =over 4
17545
17546 =item DESCRIPTION
17547
17548 =back
17549
17550 =head2 Pod::t::htmlview, Test HTML Rendering
17551
17552 =over 4
17553
17554 =item SYNOPSIS
17555
17556 =item DESCRIPTION
17557
17558 =item METHODS =E<gt> OTHER STUFF
17559
17560 =over 4
17561
17562 =item new()
17563
17564 foo, bar, baz, C<Black> Cat, Sat S<I<on> the>, MatE<lt>!E<gt>, 1 Cat, 2
17565 Sat, 3 Mat
17566
17567 =item old()
17568
17569 =back
17570
17571 =item TESTING FOR AND BEGIN
17572
17573 =item TESTING URLs hyperlinking
17574
17575 =item SEE ALSO
17576
17577 =back
17578
17579 =head2 SDBM_File - Tied access to sdbm files
17580
17581 =over 4
17582
17583 =item SYNOPSIS
17584
17585 =item DESCRIPTION
17586
17587 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
17588
17589 =item DIAGNOSTICS
17590
17591 =over 4
17592
17593 =item C<sdbm store returned -1, errno 22, key "..." at ...>
17594
17595 =back
17596
17597 =item BUGS AND WARNINGS
17598
17599 =back
17600
17601 =head2 Safe - Compile and execute code in restricted compartments
17602
17603 =over 4
17604
17605 =item SYNOPSIS
17606
17607 =item DESCRIPTION
17608
17609 a new namespace, an operator mask
17610
17611 =item WARNING
17612
17613 =over 4
17614
17615 =item RECENT CHANGES
17616
17617 =item Methods in class Safe
17618
17619 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
17620 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
17621 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
17622 root (NAMESPACE), mask (MASK)
17623
17624 =item Some Safety Issues
17625
17626 Memory, CPU, Snooping, Signals, State Changes
17627
17628 =item AUTHOR
17629
17630 =back
17631
17632 =back
17633
17634 =head2 Scalar::Util - A selection of general-utility scalar subroutines
17635
17636 =over 4
17637
17638 =item SYNOPSIS
17639
17640 =item DESCRIPTION
17641
17642 blessed EXPR, dualvar NUM, STRING, isweak EXPR, openhandle FH, reftype
17643 EXPR, tainted EXPR, weaken REF
17644
17645 =item KNOWN BUGS
17646
17647 =item COPYRIGHT
17648
17649 =item BLATANT PLUG
17650
17651 =back
17652
17653 =head2 Search::Dict, look - search for key in dictionary file
17654
17655 =over 4
17656
17657 =item SYNOPSIS
17658
17659 =item DESCRIPTION
17660
17661 =back
17662
17663 =head2 SelectSaver - save and restore selected file handle
17664
17665 =over 4
17666
17667 =item SYNOPSIS
17668
17669 =item DESCRIPTION
17670
17671 =back
17672
17673 =head2 SelfLoader - load functions only on demand
17674
17675 =over 4
17676
17677 =item SYNOPSIS
17678
17679 =item DESCRIPTION
17680
17681 =over 4
17682
17683 =item The __DATA__ token
17684
17685 =item SelfLoader autoloading
17686
17687 =item Autoloading and package lexicals
17688
17689 =item SelfLoader and AutoLoader
17690
17691 =item __DATA__, __END__, and the FOOBAR::DATA filehandle.
17692
17693 =item Classes and inherited methods.
17694
17695 =back
17696
17697 =item Multiple packages and fully qualified subroutine names
17698
17699 =back
17700
17701 =head2 Shell - run shell commands transparently within perl
17702
17703 =over 4
17704
17705 =item SYNOPSIS
17706
17707 =item DESCRIPTION
17708
17709 =over 4
17710
17711 =item OBJECT ORIENTED SYNTAX
17712
17713 =back
17714
17715 =item AUTHOR
17716
17717 =back
17718
17719 =head2 Socket, sockaddr_in, sockaddr_un, inet_aton, inet_ntoa - load the C
17720 socket.h defines and structure manipulators 
17721
17722 =over 4
17723
17724 =item SYNOPSIS
17725
17726 =item DESCRIPTION
17727
17728 inet_aton HOSTNAME, inet_ntoa IP_ADDRESS, INADDR_ANY, INADDR_BROADCAST,
17729 INADDR_LOOPBACK, INADDR_NONE, sockaddr_family SOCKADDR, sockaddr_in PORT,
17730 ADDRESS, sockaddr_in SOCKADDR_IN, pack_sockaddr_in PORT, IP_ADDRESS,
17731 unpack_sockaddr_in SOCKADDR_IN, sockaddr_un PATHNAME, sockaddr_un
17732 SOCKADDR_UN, pack_sockaddr_un PATH, unpack_sockaddr_un SOCKADDR_UN
17733
17734 =back
17735
17736 =head2 Storable - persistence for Perl data structures
17737
17738 =over 4
17739
17740 =item SYNOPSIS
17741
17742 =item DESCRIPTION
17743
17744 =item MEMORY STORE
17745
17746 =item ADVISORY LOCKING
17747
17748 =item SPEED
17749
17750 =item CANONICAL REPRESENTATION
17751
17752 =item FORWARD COMPATIBILITY
17753
17754 utf8 data, restricted hashes, files from future versions of Storable
17755
17756 =item ERROR REPORTING
17757
17758 =item WIZARDS ONLY
17759
17760 =over 4
17761
17762 =item Hooks
17763
17764 C<STORABLE_freeze> I<obj>, I<cloning>, C<STORABLE_thaw> I<obj>, I<cloning>,
17765 I<serialized>, ..
17766
17767 =item Predicates
17768
17769 C<Storable::last_op_in_netorder>, C<Storable::is_storing>,
17770 C<Storable::is_retrieving>
17771
17772 =item Recursion
17773
17774 =item Deep Cloning
17775
17776 =back
17777
17778 =item Storable magic
17779
17780 =item EXAMPLES
17781
17782 =item WARNING
17783
17784 =item BUGS
17785
17786 =item CREDITS
17787
17788 =item AUTHOR
17789
17790 =item SEE ALSO
17791
17792 =back
17793
17794 =head2 Switch - A switch statement for Perl
17795
17796 =over 4
17797
17798 =item VERSION
17799
17800 =item SYNOPSIS
17801
17802 =item BACKGROUND
17803
17804 =item DESCRIPTION
17805
17806 =over 4
17807
17808 =item Allowing fall-through
17809
17810 =item Automating fall-through
17811
17812 =item Alternative syntax
17813
17814 =item Higher-order Operations
17815
17816 =back
17817
17818 =item DEPENDENCIES
17819
17820 =item AUTHOR
17821
17822 =item BUGS
17823
17824 =item LIMITATION
17825
17826 =item COPYRIGHT
17827
17828 =back
17829
17830 =head2 Symbol - manipulate Perl symbols and their names
17831
17832 =over 4
17833
17834 =item SYNOPSIS
17835
17836 =item DESCRIPTION
17837
17838 =back
17839
17840 =head2 Sys::Hostname - Try every conceivable way to get hostname
17841
17842 =over 4
17843
17844 =item SYNOPSIS
17845
17846 =item DESCRIPTION
17847
17848 =item AUTHOR
17849
17850 =back
17851
17852 =head2 Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl
17853 interface to the UNIX syslog(3) calls
17854
17855 =over 4
17856
17857 =item SYNOPSIS
17858
17859 =item DESCRIPTION
17860
17861 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
17862 setlogmask $mask_priority, setlogsock $sock_type [$stream_location] (added
17863 in 5.004_02), closelog
17864
17865 =item EXAMPLES
17866
17867 =item SEE ALSO
17868
17869 =item AUTHOR
17870
17871 =back
17872
17873 =head2 Syslog::Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog -
17874 Perl interface to the UNIX syslog(3) calls
17875
17876 =over 4
17877
17878 =item SYNOPSIS
17879
17880 =item DESCRIPTION
17881
17882 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
17883 setlogmask $mask_priority, setlogsock $sock_type [$stream_location] (added
17884 in 5.004_02), closelog
17885
17886 =item EXAMPLES
17887
17888 =item SEE ALSO
17889
17890 =item AUTHOR
17891
17892 =back
17893
17894 =head2 Term::ANSIColor - Color screen output using ANSI escape sequences
17895
17896 =over 4
17897
17898 =item SYNOPSIS
17899
17900 =item DESCRIPTION
17901
17902 =item DIAGNOSTICS
17903
17904 Bad escape sequence %s, Bareword "%s" not allowed while "strict subs" in
17905 use, Invalid attribute name %s, Name "%s" used only once: possible typo, No
17906 comma allowed after filehandle, No name for escape sequence %s
17907
17908 =item ENVIRONMENT
17909
17910 ANSI_COLORS_DISABLED
17911
17912 =item RESTRICTIONS
17913
17914 =item NOTES
17915
17916 =item SEE ALSO
17917
17918 =item AUTHORS
17919
17920 =item LICENSE
17921
17922 =back
17923
17924 =head2 Term::Cap - Perl termcap interface
17925
17926 =over 4
17927
17928 =item SYNOPSIS
17929
17930 =item DESCRIPTION
17931
17932 =over 4
17933
17934 =item METHODS
17935
17936 =back
17937
17938 =back
17939
17940 B<Tgetent>, OSPEED, TERM
17941
17942 B<Tpad>, B<$string>, B<$cnt>, B<$FH>
17943
17944 B<Tputs>, B<$cap>, B<$cnt>, B<$FH>
17945
17946 B<Tgoto>, B<$cap>, B<$col>, B<$row>, B<$FH>
17947
17948 B<Trequire>
17949
17950 =over 4
17951
17952 =item EXAMPLES
17953
17954 =item COPYRIGHT AND LICENSE
17955
17956 =item AUTHOR
17957
17958 =item SEE ALSO
17959
17960 =back
17961
17962 =head2 Term::Complete - Perl word completion module
17963
17964 =over 4
17965
17966 =item SYNOPSIS
17967
17968 =item DESCRIPTION
17969
17970 E<lt>tabE<gt>, ^D, ^U, E<lt>delE<gt>, E<lt>bsE<gt>
17971
17972 =item DIAGNOSTICS
17973
17974 =item BUGS
17975
17976 =item AUTHOR
17977
17978 =back
17979
17980 =head2 Term::ReadLine - Perl interface to various C<readline> packages. If
17981 no real package is found, substitutes stubs instead of basic functions.
17982
17983 =over 4
17984
17985 =item SYNOPSIS
17986
17987 =item DESCRIPTION
17988
17989 =item Minimal set of supported functions
17990
17991 C<ReadLine>, C<new>, C<readline>, C<addhistory>, C<IN>, $C<OUT>,
17992 C<MinLine>, C<findConsole>, Attribs, C<Features>
17993
17994 =item Additional supported functions
17995
17996 C<tkRunning>, C<ornaments>, C<newTTY>
17997
17998 =item EXPORTS
17999
18000 =item ENVIRONMENT
18001
18002 =item CAVEATS
18003
18004 =back
18005
18006 =head2 Test - provides a simple framework for writing test scripts
18007
18008 =over 4
18009
18010 =item SYNOPSIS
18011
18012 =item DESCRIPTION
18013
18014 =over 4
18015
18016 =item Functions
18017
18018 B<plan>
18019
18020 =back
18021
18022 =back
18023
18024 B<_to_value>
18025
18026 B<ok>
18027
18028 =over 4
18029
18030 =item TEST TYPES
18031
18032 NORMAL TESTS, SKIPPED TESTS, TODO TESTS
18033
18034 =item ONFAIL
18035
18036 =item BUGS and CAVEATS
18037
18038 =item NOTE
18039
18040 =item SEE ALSO
18041
18042 =item AUTHOR
18043
18044 =back
18045
18046 =head2 Test::Builder - Backend for building test libraries
18047
18048 =over 4
18049
18050 =item SYNOPSIS
18051
18052 =item DESCRIPTION
18053
18054 =over 4
18055
18056 =item Construction
18057
18058 B<new>
18059
18060 =back
18061
18062 =back
18063
18064 =over 4
18065
18066 =item Setting up tests
18067
18068 B<exported_to>
18069
18070 =back
18071
18072 B<plan>
18073
18074 B<expected_tests>
18075
18076 B<no_plan>
18077
18078 B<skip_all>
18079
18080 =over 4
18081
18082 =item Running tests
18083
18084 B<ok>
18085
18086 =back
18087
18088 B<is_eq>, B<is_num>
18089
18090 B<isnt_eq>, B<isnt_num>
18091
18092 B<like>, B<unlike>
18093
18094 B<maybe_regex>
18095
18096 B<cmp_ok>
18097
18098 B<BAILOUT>
18099
18100 B<skip>
18101
18102 B<todo_skip>
18103
18104 B<skip_rest>
18105
18106 =over 4
18107
18108 =item Test style
18109
18110 B<level>
18111
18112 =back
18113
18114 B<use_numbers>
18115
18116 B<no_header>, B<no_ending>
18117
18118 =over 4
18119
18120 =item Output
18121
18122 B<diag>
18123
18124 =back
18125
18126 B<_print>
18127
18128 B<output>, B<failure_output>, B<todo_output>
18129
18130 =over 4
18131
18132 =item Test Status and Info
18133
18134 B<current_test>
18135
18136 =back
18137
18138 B<summary>
18139
18140 B<details>  I<UNIMPLEMENTED>, B<todo>
18141
18142 B<caller>
18143
18144 B<_sanity_check>
18145
18146 B<_whoa>
18147
18148 B<_my_exit>
18149
18150 =over 4
18151
18152 =item EXAMPLES
18153
18154 =item SEE ALSO
18155
18156 =item AUTHORS
18157
18158 =item COPYRIGHT
18159
18160 =back
18161
18162 =head2 Test::Harness - run perl standard test scripts with statistics
18163
18164 =over 4
18165
18166 =item SYNOPSIS
18167
18168 =item DESCRIPTION
18169
18170 =over 4
18171
18172 =item The test script output
18173
18174 B<'1..M'>, B<'ok', 'not ok'.  Ok?>, B<test numbers>, B<test names>,
18175 B<Skipping tests>, B<Todo tests>, B<Bail out!>, B<Comments>, B<Anything
18176 else>
18177
18178 =item Taint mode
18179
18180 =item Configuration variables.
18181
18182 B<$Test::Harness::verbose>, B<$Test::Harness::switches>
18183
18184 =item Failure
18185
18186 B<Failed Test>, B<Stat>, B<Wstat>, B<Total>, B<Fail>, B<Failed>, B<List of
18187 Failed>
18188
18189 =item Functions
18190
18191 B<runtests>
18192
18193 =back
18194
18195 =back
18196
18197 B<_all_ok>
18198
18199 B<_globdir>
18200
18201 B<_run_all_tests>
18202
18203 B<_mk_leader>
18204
18205 B<_leader_width>
18206
18207 =over 4
18208
18209 =item EXPORT
18210
18211 =item DIAGNOSTICS
18212
18213 C<All tests successful.\nFiles=%d,  Tests=%d, %s>, C<FAILED tests
18214 %s\n\tFailed %d/%d tests, %.2f%% okay.>, C<Test returned status %d (wstat
18215 %d)>, C<Failed 1 test, %.2f%% okay. %s>, C<Failed %d/%d tests, %.2f%% okay.
18216 %s>, C<FAILED--Further testing stopped%s>
18217
18218 =item ENVIRONMENT
18219
18220 C<HARNESS_ACTIVE>, C<HARNESS_COLUMNS>, C<HARNESS_COMPILE_TEST>,
18221 C<HARNESS_FILELEAK_IN_DIR>, C<HARNESS_IGNORE_EXITCODE>, C<HARNESS_NOTTY>,
18222 C<HARNESS_PERL_SWITCHES>, C<HARNESS_VERBOSE>
18223
18224 =item EXAMPLE
18225
18226 =item SEE ALSO
18227
18228 =item AUTHORS
18229
18230 =item TODO
18231
18232 =item BUGS
18233
18234 =back
18235
18236 =head2 Test::Harness::Assert - simple assert
18237
18238 =over 4
18239
18240 =item SYNOPSIS
18241
18242 =item DESCRIPTION
18243
18244 =over 4
18245
18246 =item Functions
18247
18248 B<assert>
18249
18250 =back
18251
18252 =back
18253
18254 =over 4
18255
18256 =item AUTHOR
18257
18258 =item SEE ALSO
18259
18260 =back
18261
18262 =head2 Test::Harness::Iterator - Internal Test::Harness Iterator
18263
18264 =over 4
18265
18266 =item SYNOPSIS
18267
18268 =item DESCRIPTION
18269
18270 =back
18271
18272 =head2 Test::Harness::Straps - detailed analysis of test results
18273
18274 =over 4
18275
18276 =item SYNOPSIS
18277
18278 =item DESCRIPTION
18279
18280 =over 4
18281
18282 =item Construction
18283
18284 B<new>
18285
18286 =back
18287
18288 =back
18289
18290 B<_init>
18291
18292 =over 4
18293
18294 =item Analysis
18295
18296 B<analyze>
18297
18298 =back
18299
18300 B<analyze_fh>
18301
18302 B<analyze_file>
18303
18304 B<_switches>
18305
18306 B<_INC2PERL5LIB>
18307
18308 B<_filtered_INC>
18309
18310 B<_restore_PERL5LIB>
18311
18312 =over 4
18313
18314 =item Parsing
18315
18316 B<_is_comment>
18317
18318 =back
18319
18320 B<_is_header>
18321
18322 B<_is_test>
18323
18324 B<_is_bail_out>
18325
18326 B<_reset_file_state>
18327
18328 =over 4
18329
18330 =item Results
18331
18332 B<_detailize>
18333
18334 =back
18335
18336 =over 4
18337
18338 =item EXAMPLES
18339
18340 =item AUTHOR
18341
18342 =item SEE ALSO
18343
18344 =back
18345
18346 =head2 Test::More - yet another framework for writing test scripts
18347
18348 =over 4
18349
18350 =item SYNOPSIS
18351
18352 =item DESCRIPTION
18353
18354 =over 4
18355
18356 =item I love it when a plan comes together
18357
18358 =back
18359
18360 =back
18361
18362 =over 4
18363
18364 =item Test names
18365
18366 =item I'm ok, you're not ok.
18367
18368 B<ok>
18369
18370 =back
18371
18372 B<is>, B<isnt>
18373
18374 B<like>
18375
18376 B<unlike>
18377
18378 B<cmp_ok>
18379
18380 B<can_ok>
18381
18382 B<isa_ok>
18383
18384 B<pass>, B<fail>
18385
18386 =over 4
18387
18388 =item Diagnostics
18389
18390 B<diag>
18391
18392 =back
18393
18394 =over 4
18395
18396 =item Module tests
18397
18398 B<use_ok>
18399
18400 =back
18401
18402 B<require_ok>
18403
18404 =over 4
18405
18406 =item Conditional tests
18407
18408 B<SKIP: BLOCK>
18409
18410 =back
18411
18412 B<TODO: BLOCK>, B<todo_skip>
18413
18414 =over 4
18415
18416 =item Comparison functions
18417
18418 B<is_deeply>
18419
18420 =back
18421
18422 B<eq_array>
18423
18424 B<eq_hash>
18425
18426 B<eq_set>
18427
18428 =over 4
18429
18430 =item Extending and Embedding Test::More
18431
18432 B<builder>
18433
18434 =back
18435
18436 =over 4
18437
18438 =item NOTES
18439
18440 =item BUGS and CAVEATS
18441
18442 Making your own ok(), The eq_* family has some caveats, Test::Harness
18443 upgrades
18444
18445 =item HISTORY
18446
18447 =item SEE ALSO
18448
18449 =item AUTHORS
18450
18451 =item COPYRIGHT
18452
18453 =back
18454
18455 =head2 Test::Simple - Basic utilities for writing tests.
18456
18457 =over 4
18458
18459 =item SYNOPSIS
18460
18461 =item DESCRIPTION
18462
18463 B<ok>
18464
18465 =back
18466
18467 =over 4
18468
18469 =item EXAMPLE
18470
18471 =item CAVEATS
18472
18473 =item NOTES
18474
18475 =item HISTORY
18476
18477 =item SEE ALSO
18478
18479 L<Test::More>, L<Test>, L<Test::Unit>, L<Test::Inline>, L<SelfTest>,
18480 L<Test::Harness>
18481
18482 =item AUTHORS
18483
18484 =item COPYRIGHT
18485
18486 =back
18487
18488 =head2 Test::Tutorial - A tutorial about writing really basic tests
18489
18490 =over 4
18491
18492 =item DESCRIPTION
18493
18494 =over 4
18495
18496 =item Nuts and bolts of testing.
18497
18498 =item Where to start?
18499
18500 =item Names
18501
18502 =item Test the manual
18503
18504 =item Sometimes the tests are wrong
18505
18506 =item Testing lots of values
18507
18508 =item Informative names
18509
18510 =item Skipping tests
18511
18512 =item Todo tests
18513
18514 =item Testing with taint mode.
18515
18516 =back
18517
18518 =item FOOTNOTES
18519
18520 =item AUTHORS
18521
18522 =item COPYRIGHT
18523
18524 =back
18525
18526 =head2 Text::Abbrev, abbrev - create an abbreviation table from a list
18527
18528 =over 4
18529
18530 =item SYNOPSIS
18531
18532 =item DESCRIPTION
18533
18534 =item EXAMPLE
18535
18536 =back
18537
18538 =head2 Text::Balanced - Extract delimited text sequences from strings.
18539
18540 =over 4
18541
18542 =item SYNOPSIS
18543
18544 =item DESCRIPTION
18545
18546 =over 4
18547
18548 =item General behaviour in list contexts
18549
18550 [0], [1], [2]
18551
18552 =item General behaviour in scalar and void contexts
18553
18554 =item A note about prefixes
18555
18556 =item C<extract_delimited>
18557
18558 =item C<extract_bracketed>
18559
18560 =item C<extract_tagged>
18561
18562 C<reject =E<gt> $listref>, C<ignore =E<gt> $listref>, C<fail =E<gt> $str>,
18563 [0], [1], [2], [3], [4], [5]
18564
18565 =item C<gen_extract_tagged>
18566
18567 =item C<extract_quotelike>
18568
18569 [0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10]
18570
18571 =item C<extract_quotelike> and "here documents"
18572
18573 [0], [1], [2], [3], [4], [5], [6], [7..10]
18574
18575 =item C<extract_codeblock>
18576
18577 =item C<extract_multiple>
18578
18579 =item C<gen_delimited_pat>
18580
18581 =back
18582
18583 =item DIAGNOSTICS
18584
18585  C<Did not find a suitable bracket: "%s">,  C<Did not find prefix: /%s/>, 
18586 C<Did not find opening bracket after prefix: "%s">,  C<No quotelike
18587 operator found after prefix: "%s">,  C<Unmatched closing bracket: "%c">, 
18588 C<Unmatched opening bracket(s): "%s">, C<Unmatched embedded quote (%s)>,
18589 C<Did not find closing delimiter to match '%s'>,  C<Mismatched closing
18590 bracket: expected "%c" but found "%s">,  C<No block delimiter found after
18591 quotelike "%s">, C<Did not find leading dereferencer>, C<Bad identifier
18592 after dereferencer>, C<Did not find expected opening bracket at %s>,
18593 C<Improperly nested codeblock at %s>,  C<Missing second block for quotelike
18594 "%s">, C<No match found for opening bracket>, C<Did not find opening tag:
18595 /%s/>, C<Unable to construct closing tag to match: /%s/>, C<Found invalid
18596 nested tag: %s>, C<Found unbalanced nested tag: %s>, C<Did not find closing
18597 tag>
18598
18599 =item AUTHOR
18600
18601 =item BUGS AND IRRITATIONS
18602
18603 =item COPYRIGHT
18604
18605 =back
18606
18607 =head2 Text::ParseWords - parse text into an array of tokens or array of
18608 arrays
18609
18610 =over 4
18611
18612 =item SYNOPSIS
18613
18614 =item DESCRIPTION
18615
18616 =item EXAMPLES
18617
18618 =item AUTHORS
18619
18620 =back
18621
18622 =head2 Text::Soundex - Implementation of the Soundex Algorithm as Described
18623 by Knuth
18624
18625 =over 4
18626
18627 =item SYNOPSIS
18628
18629 =item DESCRIPTION
18630
18631 =item EXAMPLES
18632
18633 =item LIMITATIONS
18634
18635 =item AUTHOR
18636
18637 =back
18638
18639 =head2 Text::Tabs -- expand and unexpand tabs per the unix expand(1) and
18640 unexpand(1)
18641
18642 =over 4
18643
18644 =item SYNOPSIS
18645
18646 =item DESCRIPTION
18647
18648 =item BUGS
18649
18650 =item AUTHOR
18651
18652 =back
18653
18654 =head2 Text::Wrap - line wrapping to form simple paragraphs
18655
18656 =over 4
18657
18658 =item SYNOPSIS 
18659
18660 =item DESCRIPTION
18661
18662 =item OVERRIDES
18663
18664 =item EXAMPLE
18665
18666 =item AUTHOR
18667
18668 =back
18669
18670 =head2 Thread - manipulate threads in Perl
18671
18672 =over 4
18673
18674 =item CAVEAT
18675
18676 =item SYNOPSIS
18677
18678 =item DESCRIPTION
18679
18680 =item FUNCTIONS
18681
18682 $thread = Thread->new(\&start_sub), $thread = Thread->new(\&start_sub,
18683 LIST), lock VARIABLE, async BLOCK;, Thread->self, cond_wait VARIABLE,
18684 cond_signal VARIABLE, cond_broadcast VARIABLE, yield
18685
18686 =item METHODS
18687
18688 join, eval, detach, equal, tid, flags, done
18689
18690 =item LIMITATIONS
18691
18692 =item SEE ALSO
18693
18694 =back
18695
18696 =head2 Thread::Queue - thread-safe queues
18697
18698 =over 4
18699
18700 =item SYNOPSIS
18701
18702 =item DESCRIPTION
18703
18704 =item FUNCTIONS AND METHODS
18705
18706 new, enqueue LIST, dequeue, dequeue_nb, pending
18707
18708 =item SEE ALSO
18709
18710 =back
18711
18712 =head2 Thread::Semaphore - thread-safe semaphores
18713
18714 =over 4
18715
18716 =item SYNOPSIS
18717
18718 =item DESCRIPTION
18719
18720 =item FUNCTIONS AND METHODS
18721
18722 new, new NUMBER, down, down NUMBER, up, up NUMBER
18723
18724 =back
18725
18726 =head2 Thread::Signal - Start a thread which runs signal handlers reliably
18727
18728 =over 4
18729
18730 =item SYNOPSIS
18731
18732 =item DESCRIPTION
18733
18734 =item BUGS
18735
18736 =back
18737
18738 =head2 Thread::Specific - thread-specific keys
18739
18740 =over 4
18741
18742 =item SYNOPSIS
18743
18744 =item DESCRIPTION
18745
18746 =back
18747
18748 =head2 Tie::Array - base class for tied arrays
18749
18750 =over 4
18751
18752 =item SYNOPSIS
18753
18754 =item DESCRIPTION
18755
18756 TIEARRAY classname, LIST, STORE this, index, value, FETCH this, index,
18757 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
18758 key, DELETE this, key, CLEAR this, DESTROY this, PUSH this, LIST, POP this,
18759 SHIFT this, UNSHIFT this, LIST, SPLICE this, offset, length, LIST
18760
18761 =item CAVEATS
18762
18763 =item AUTHOR
18764
18765 =back
18766
18767 =head2 Tie::File - Access the lines of a disk file via a Perl array
18768
18769 =over 4
18770
18771 =item SYNOPSIS
18772
18773 =item DESCRIPTION
18774
18775 =over 4
18776
18777 =item C<recsep>
18778
18779 =item C<autochomp>
18780
18781 =item C<mode>
18782
18783 =item C<memory>
18784
18785 =item C<dw_size>
18786
18787 =item Option Format
18788
18789 =back
18790
18791 =item Public Methods
18792
18793 =over 4
18794
18795 =item C<flock>
18796
18797 =item C<autochomp>
18798
18799 =item C<defer>, C<flush>, C<discard>, and C<autodefer>
18800
18801 =back
18802
18803 =item Tying to an already-opened filehandle
18804
18805 =item Deferred Writing
18806
18807 =over 4
18808
18809 =item Autodeferring
18810
18811 =back
18812
18813 =item CAVEATS
18814
18815 =item SUBCLASSING
18816
18817 =item WHAT ABOUT C<DB_File>?
18818
18819 =item AUTHOR
18820
18821 =item LICENSE
18822
18823 =item WARRANTY
18824
18825 =item THANKS
18826
18827 =item TODO
18828
18829 =back
18830
18831 =head2 Tie::Handle, Tie::StdHandle  - base class definitions for tied
18832 handles
18833
18834 =over 4
18835
18836 =item SYNOPSIS
18837
18838 =item DESCRIPTION
18839
18840 TIEHANDLE classname, LIST, WRITE this, scalar, length, offset, PRINT this,
18841 LIST, PRINTF this, format, LIST, READ this, scalar, length, offset,
18842 READLINE this, GETC this, CLOSE this, OPEN this, filename, BINMODE this,
18843 EOF this, TELL this, SEEK this, offset, whence, DESTROY this
18844
18845 =item MORE INFORMATION
18846
18847 =item COMPATIBILITY
18848
18849 =back
18850
18851 =head2 Tie::Hash, Tie::StdHash, Tie::ExtraHash - base class definitions for
18852 tied hashes
18853
18854 =over 4
18855
18856 =item SYNOPSIS
18857
18858 =item DESCRIPTION
18859
18860 TIEHASH classname, LIST, STORE this, key, value, FETCH this, key, FIRSTKEY
18861 this, NEXTKEY this, lastkey, EXISTS this, key, DELETE this, key, CLEAR this
18862
18863 =item Inheriting from B<Tie::StdHash>
18864
18865 =item Inheriting from B<Tie::ExtraHash>
18866
18867 =item C<UNTIE> and C<DESTROY>
18868
18869 =item MORE INFORMATION
18870
18871 =back
18872
18873 =head2 Tie::Memoize - add data to hash when needed
18874
18875 =over 4
18876
18877 =item SYNOPSIS
18878
18879 =item DESCRIPTION
18880
18881 =item Inheriting from B<Tie::Memoize>
18882
18883 =item EXAMPLE
18884
18885 =item BUGS
18886
18887 =item AUTHOR
18888
18889 =back
18890
18891 =head2 Tie::RefHash - use references as hash keys
18892
18893 =over 4
18894
18895 =item SYNOPSIS
18896
18897 =item DESCRIPTION
18898
18899 =item EXAMPLE
18900
18901 =item AUTHOR
18902
18903 =item VERSION
18904
18905 =item SEE ALSO
18906
18907 =back
18908
18909 =head2 Tie::Scalar, Tie::StdScalar - base class definitions for tied
18910 scalars
18911
18912 =over 4
18913
18914 =item SYNOPSIS
18915
18916 =item DESCRIPTION
18917
18918 TIESCALAR classname, LIST, FETCH this, STORE this, value, DESTROY this
18919
18920 =item MORE INFORMATION
18921
18922 =back
18923
18924 =head2 Tie::SubstrHash - Fixed-table-size, fixed-key-length hashing
18925
18926 =over 4
18927
18928 =item SYNOPSIS
18929
18930 =item DESCRIPTION
18931
18932 =item CAVEATS
18933
18934 =back
18935
18936 =head2 Time::HiRes - High resolution alarm, sleep, gettimeofday, interval
18937 timers
18938
18939 =over 4
18940
18941 =item SYNOPSIS
18942
18943 =item DESCRIPTION
18944
18945 gettimeofday (), usleep ( $useconds ), ualarm ( $useconds [,
18946 $interval_useconds ] ), tv_interval, time (), sleep ( $floating_seconds ),
18947 alarm ( $floating_seconds [, $interval_floating_seconds ] ), setitimer,
18948 getitimer ( $which )
18949
18950 =item EXAMPLES
18951
18952 =item C API
18953
18954 =item CAVEATS
18955
18956 =item AUTHORS
18957
18958 =item REVISION
18959
18960 =item COPYRIGHT
18961
18962 =back
18963
18964 =head2 Time::Local - efficiently compute time from local and GMT time
18965
18966 =over 4
18967
18968 =item SYNOPSIS
18969
18970 =item DESCRIPTION
18971
18972 =item IMPLEMENTATION
18973
18974 =item BUGS
18975
18976 =back
18977
18978 =head2 Time::gmtime - by-name interface to Perl's built-in gmtime()
18979 function
18980
18981 =over 4
18982
18983 =item SYNOPSIS
18984
18985 =item DESCRIPTION
18986
18987 =item NOTE
18988
18989 =item AUTHOR
18990
18991 =back
18992
18993 =head2 Time::localtime - by-name interface to Perl's built-in localtime()
18994 function
18995
18996 =over 4
18997
18998 =item SYNOPSIS
18999
19000 =item DESCRIPTION
19001
19002 =item NOTE
19003
19004 =item AUTHOR
19005
19006 =back
19007
19008 =head2 Time::tm - internal object used by Time::gmtime and Time::localtime
19009
19010 =over 4
19011
19012 =item SYNOPSIS
19013
19014 =item DESCRIPTION
19015
19016 =item AUTHOR
19017
19018 =back
19019
19020 =head2 UNIVERSAL - base class for ALL classes (blessed references)
19021
19022 =over 4
19023
19024 =item SYNOPSIS
19025
19026 =item DESCRIPTION
19027
19028 $obj->isa( TYPE ), CLASS->isa( TYPE ), isa( VAL, TYPE ), $obj->can( METHOD
19029 ), CLASS->can( METHOD ), can( VAL, METHOD ), VERSION ( [ REQUIRE ] )
19030
19031 =back
19032
19033 =head2 Unicode::Collate - Unicode Collation Algorithm
19034
19035 =over 4
19036
19037 =item SYNOPSIS
19038
19039 =item DESCRIPTION
19040
19041 =over 4
19042
19043 =item Constructor and Tailoring
19044
19045 alternate, backwards, entry, ignoreName, ignoreChar, level, normalization,
19046 overrideCJK, overrideHangul, preprocess, rearrange, table, undefName,
19047 undefChar, katakana_before_hiragana, upper_before_lower
19048
19049 =item Methods for Collation
19050
19051 C<@sorted = $Collator-E<gt>sort(@not_sorted)>, C<$result =
19052 $Collator-E<gt>cmp($a, $b)>, C<$result = $Collator-E<gt>eq($a, $b)>,
19053 C<$result = $Collator-E<gt>ne($a, $b)>, C<$result = $Collator-E<gt>lt($a,
19054 $b)>, C<$result = $Collator-E<gt>le($a, $b)>, C<$result =
19055 $Collator-E<gt>gt($a, $b)>, C<$result = $Collator-E<gt>ge($a, $b)>,
19056 C<$sortKey = $Collator-E<gt>getSortKey($string)>, C<$sortKeyForm =
19057 $Collator-E<gt>viewSortKey($string)>, C<$position =
19058 $Collator-E<gt>index($string, $substring)>, C<($position, $length) =
19059 $Collator-E<gt>index($string, $substring)>
19060
19061 =item Other Methods
19062
19063 UCA_Version, Base_Unicode_Version
19064
19065 =item EXPORT
19066
19067 =item TODO
19068
19069 =item CAVEAT
19070
19071 =item BUGS
19072
19073 =back
19074
19075 =item AUTHOR
19076
19077 =item SEE ALSO
19078
19079 http://www.unicode.org/unicode/reports/tr10/,
19080 http://www.unicode.org/unicode/reports/tr10/allkeys.txt,
19081 http://www.unicode.org/unicode/reports/tr15/,
19082 http://www.unicode.org/unicode/reports/tr18, L<Unicode::Normalize>
19083
19084 =back
19085
19086 =head2 Unicode::Normalize - Unicode Normalization Forms
19087
19088 =over 4
19089
19090 =item SYNOPSIS
19091
19092 =item DESCRIPTION
19093
19094 =over 4
19095
19096 =item Normalization Forms
19097
19098 C<$NFD_string = NFD($string)>, C<$NFC_string = NFC($string)>,
19099 C<$NFKD_string = NFKD($string)>, C<$NFKC_string = NFKC($string)>,
19100 C<$normalized_string = normalize($form_name, $string)>
19101
19102 =item Decomposition and Composition
19103
19104 C<$decomposed_string = decompose($string)>, C<$decomposed_string =
19105 decompose($string, $useCompatMapping)>, C<$reordered_string  =
19106 reorder($string)>, C<$composed_string   = compose($string)>
19107
19108 =item Quick Check
19109
19110 C<$result = checkNFD($string)>, C<$result = checkNFC($string)>, C<$result =
19111 checkNFKD($string)>, C<$result = checkNFKC($string)>, C<$result =
19112 check($form_name, $string)>
19113
19114 =item Character Data
19115
19116 C<$canonical_decomposed = getCanon($codepoint)>,
19117 C<$compatibility_decomposed = getCompat($codepoint)>,
19118 C<$codepoint_composite = getComposite($codepoint_here, $codepoint_next)>,
19119 C<$combining_class = getCombinClass($codepoint)>, C<$is_exclusion =
19120 isExclusion($codepoint)>, C<$is_singleton = isSingleton($codepoint)>,
19121 C<$is_non_startar_decomposition = isNonStDecomp($codepoint)>,
19122 C<$may_be_composed_with_prev_char = isComp2nd($codepoint)>
19123
19124 =item EXPORT
19125
19126 =back
19127
19128 =item AUTHOR
19129
19130 =item SEE ALSO
19131
19132 http://www.unicode.org/unicode/reports/tr15/,
19133 http://www.unicode.org/Public/UNIDATA/DerivedNormalizationProps.txt
19134
19135 =back
19136
19137 =head2 Unicode::UCD - Unicode character database
19138
19139 =over 4
19140
19141 =item SYNOPSIS
19142
19143 =item DESCRIPTION
19144
19145 =back
19146
19147 =over 4
19148
19149 =item charinfo
19150
19151 =back
19152
19153 =over 4
19154
19155 =item charblock
19156
19157 =back
19158
19159 =over 4
19160
19161 =item charscript
19162
19163 =back
19164
19165 =over 4
19166
19167 =item charblocks
19168
19169 =back
19170
19171 =over 4
19172
19173 =item charscripts
19174
19175 =back
19176
19177 =over 4
19178
19179 =item Blocks versus Scripts
19180
19181 =item Matching Scripts and Blocks
19182
19183 =item Code Point Arguments
19184
19185 =item charinrange
19186
19187 =back
19188
19189 =over 4
19190
19191 =item compexcl
19192
19193 =back
19194
19195 =over 4
19196
19197 =item casefold
19198
19199 =back
19200
19201 =over 4
19202
19203 =item casespec
19204
19205 =back
19206
19207 =over 4
19208
19209 =item Unicode::UCD::UnicodeVersion
19210
19211 =back
19212
19213 =over 4
19214
19215 =item Implementation Note
19216
19217 =back
19218
19219 =over 4
19220
19221 =item BUGS
19222
19223 =item AUTHOR
19224
19225 =back
19226
19227 =head2 User::grent - by-name interface to Perl's built-in getgr*()
19228 functions
19229
19230 =over 4
19231
19232 =item SYNOPSIS
19233
19234 =item DESCRIPTION
19235
19236 =item NOTE
19237
19238 =item AUTHOR
19239
19240 =back
19241
19242 =head2 User::pwent - by-name interface to Perl's built-in getpw*()
19243 functions
19244
19245 =over 4
19246
19247 =item SYNOPSIS
19248
19249 =item DESCRIPTION
19250
19251 =over 4
19252
19253 =item System Specifics
19254
19255 =back
19256
19257 =item NOTE
19258
19259 =item AUTHOR
19260
19261 =item HISTORY
19262
19263 March 18th, 2000
19264
19265 =back
19266
19267 =head2 Win32 - Interfaces to some Win32 API Functions
19268
19269 =over 4
19270
19271 =item DESCRIPTION
19272
19273 =over 4
19274
19275 =item Alphabetical Listing of Win32 Functions
19276
19277 Win32::AbortSystemShutdown(MACHINE), Win32::BuildNumber(),
19278 Win32::CopyFile(FROM, TO, OVERWRITE), Win32::DomainName(),
19279 Win32::ExpandEnvironmentStrings(STRING), Win32::FormatMessage(ERRORCODE),
19280 Win32::FsType(), Win32::FreeLibrary(HANDLE), Win32::GetArchName(),
19281 Win32::GetChipName(), Win32::GetCwd(), Win32::GetFullPathName(FILENAME),
19282 Win32::GetLastError(), Win32::GetLongPathName(PATHNAME),
19283 Win32::GetNextAvailDrive(), Win32::GetOSVersion(),
19284 Win32::GetShortPathName(PATHNAME), Win32::GetProcAddress(INSTANCE,
19285 PROCNAME), Win32::GetTickCount(), Win32::InitiateSystemShutdown,
19286 Win32::IsWinNT(), Win32::IsWin95(), Win32::LoadLibrary(LIBNAME),
19287 Win32::LoginName(), Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID,
19288 SIDTYPE), Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE),
19289 Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]]), Win32::NodeName(),
19290 Win32::RegisterServer(LIBRARYNAME), Win32::SetChildShowWindow(SHOWWINDOW),
19291 Win32::SetCwd(NEWDIRECTORY), Win32::SetLastError(ERROR),
19292 Win32::Sleep(TIME), Win32::Spawn(COMMAND, ARGS, PID),
19293 Win32::UnregisterServer(LIBRARYNAME)
19294
19295 =back
19296
19297 =back
19298
19299 =head2 XS::Typemap - module to test the XS typemaps distributed with perl
19300
19301 =over 4
19302
19303 =item SYNOPSIS
19304
19305 =item DESCRIPTION
19306
19307 =back
19308
19309 =over 4
19310
19311 =item NOTES
19312
19313 =item AUTHOR
19314
19315 =back
19316
19317 =head2 XSLoader - Dynamically load C libraries into Perl code
19318
19319 =over 4
19320
19321 =item SYNOPSIS
19322
19323 =item DESCRIPTION
19324
19325 =item AUTHOR
19326
19327 =back
19328
19329 =head1 AUXILIARY DOCUMENTATION
19330
19331 Here should be listed all the extra programs' documentation, but they
19332 don't all have manual pages yet:
19333
19334 =over 4
19335
19336 =item a2p
19337
19338 =item s2p
19339
19340 =item find2perl
19341
19342 =item h2ph
19343
19344 =item c2ph
19345
19346 =item h2xs
19347
19348 =item xsubpp
19349
19350 =item pod2man
19351
19352 =item wrapsuid
19353
19354 =back
19355
19356 =head1 AUTHOR
19357
19358 Larry Wall <F<larry@wall.org>>, with the help of oodles
19359 of other folks.
19360