bd4d0b0a34d8a4e6bbf11ec4747c5bcf53d4a359
[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 perlreftut - Mark's very short tutorial about references
107
108 =over 4
109
110 =item DESCRIPTION
111
112 =item Who Needs Complicated Data Structures?
113
114 =item The Solution
115
116 =item Syntax
117
118 =over 4
119
120 =item Making References
121
122 =item Using References
123
124 =item An Example
125
126 =item Arrow Rule
127
128 =back
129
130 =item Solution
131
132 =item The Rest
133
134 =item Summary
135
136 =item Credits
137
138 =over 4
139
140 =item Distribution Conditions
141
142 =back
143
144 =back
145
146 =head2 perldsc - Perl Data Structures Cookbook
147
148 =over 4
149
150 =item DESCRIPTION
151
152 arrays of arrays, hashes of arrays, arrays of hashes, hashes of hashes,
153 more elaborate constructs
154
155 =item REFERENCES
156
157 =item COMMON MISTAKES
158
159 =item CAVEAT ON PRECEDENCE
160
161 =item WHY YOU SHOULD ALWAYS C<use strict>
162
163 =item DEBUGGING
164
165 =item CODE EXAMPLES
166
167 =item ARRAYS OF ARRAYS
168
169 =over 4
170
171 =item Declaration of an ARRAY OF ARRAYS
172
173 =item Generation of an ARRAY OF ARRAYS
174
175 =item Access and Printing of an ARRAY OF ARRAYS
176
177 =back
178
179 =item HASHES OF ARRAYS
180
181 =over 4
182
183 =item Declaration of a HASH OF ARRAYS
184
185 =item Generation of a HASH OF ARRAYS
186
187 =item Access and Printing of a HASH OF ARRAYS
188
189 =back
190
191 =item ARRAYS OF HASHES
192
193 =over 4
194
195 =item Declaration of an ARRAY OF HASHES
196
197 =item Generation of an ARRAY OF HASHES
198
199 =item Access and Printing of an ARRAY OF HASHES
200
201 =back
202
203 =item HASHES OF HASHES
204
205 =over 4
206
207 =item Declaration of a HASH OF HASHES
208
209 =item Generation of a HASH OF HASHES
210
211 =item Access and Printing of a HASH OF HASHES
212
213 =back
214
215 =item MORE ELABORATE RECORDS
216
217 =over 4
218
219 =item Declaration of MORE ELABORATE RECORDS
220
221 =item Declaration of a HASH OF COMPLEX RECORDS
222
223 =item Generation of a HASH OF COMPLEX RECORDS
224
225 =back
226
227 =item Database Ties
228
229 =item SEE ALSO
230
231 =item AUTHOR
232
233 =back
234
235 =head2 perllol - Manipulating Arrays of Arrays in Perl
236
237 =over 4
238
239 =item DESCRIPTION
240
241 =over 4
242
243 =item Declaration and Access of Arrays of Arrays
244
245 =item Growing Your Own
246
247 =item Access and Printing
248
249 =item Slices
250
251 =back
252
253 =item SEE ALSO
254
255 =item AUTHOR
256
257 =back
258
259 =head2 perlrequick - Perl regular expressions quick start
260
261 =over 4
262
263 =item DESCRIPTION
264
265 =item The Guide
266
267 =over 4
268
269 =item Simple word matching
270
271 =item Using character classes
272
273 =item Matching this or that
274
275 =item Grouping things and hierarchical matching
276
277 =item Extracting matches
278
279 =item Matching repetitions
280
281 =item More matching
282
283 =item Search and replace
284
285 =item The split operator
286
287 =back
288
289 =item BUGS
290
291 =item SEE ALSO
292
293 =item AUTHOR AND COPYRIGHT
294
295 =over 4
296
297 =item Acknowledgments
298
299 =back
300
301 =back
302
303 =head2 perlretut - Perl regular expressions tutorial
304
305 =over 4
306
307 =item DESCRIPTION
308
309 =item Part 1: The basics
310
311 =over 4
312
313 =item Simple word matching
314
315 =item Using character classes
316
317 =item Matching this or that
318
319 =item Grouping things and hierarchical matching
320
321 =item Extracting matches
322
323 =item Matching repetitions
324
325 =item Building a regexp
326
327 =item Using regular expressions in Perl
328
329 =back
330
331 =item Part 2: Power tools
332
333 =over 4
334
335 =item More on characters, strings, and character classes
336
337 =item Compiling and saving regular expressions
338
339 =item Embedding comments and modifiers in a regular expression
340
341 =item Non-capturing groupings
342
343 =item Looking ahead and looking behind
344
345 =item Using independent subexpressions to prevent backtracking
346
347 =item Conditional expressions
348
349 =item A bit of magic: executing Perl code in a regular expression
350
351 =item Pragmas and debugging
352
353 =back
354
355 =item BUGS
356
357 =item SEE ALSO
358
359 =item AUTHOR AND COPYRIGHT
360
361 =over 4
362
363 =item Acknowledgments
364
365 =back
366
367 =back
368
369 =head2 perlboot - Beginner's Object-Oriented Tutorial
370
371 =over 4
372
373 =item DESCRIPTION
374
375 =over 4
376
377 =item If we could talk to the animals...
378
379 =item Introducing the method invocation arrow
380
381 =item Invoking a barnyard
382
383 =item The extra parameter of method invocation
384
385 =item Calling a second method to simplify things
386
387 =item Inheriting the windpipes
388
389 =item A few notes about @ISA
390
391 =item Overriding the methods
392
393 =item Starting the search from a different place
394
395 =item The SUPER way of doing things
396
397 =item Where we're at so far...
398
399 =item A horse is a horse, of course of course -- or is it?
400
401 =item Invoking an instance method
402
403 =item Accessing the instance data
404
405 =item How to build a horse
406
407 =item Inheriting the constructor
408
409 =item Making a method work with either classes or instances
410
411 =item Adding parameters to a method
412
413 =item More interesting instances
414
415 =item A horse of a different color
416
417 =item Summary
418
419 =back
420
421 =item SEE ALSO
422
423 =item COPYRIGHT
424
425 =back
426
427 =head2 perltoot - Tom's object-oriented tutorial for perl
428
429 =over 4
430
431 =item DESCRIPTION
432
433 =item Creating a Class
434
435 =over 4
436
437 =item Object Representation
438
439 =item Class Interface
440
441 =item Constructors and Instance Methods
442
443 =item Planning for the Future: Better Constructors
444
445 =item Destructors
446
447 =item Other Object Methods
448
449 =back
450
451 =item Class Data
452
453 =over 4
454
455 =item Accessing Class Data
456
457 =item Debugging Methods
458
459 =item Class Destructors
460
461 =item Documenting the Interface
462
463 =back
464
465 =item Aggregation
466
467 =item Inheritance
468
469 =over 4
470
471 =item Overridden Methods
472
473 =item Multiple Inheritance
474
475 =item UNIVERSAL: The Root of All Objects
476
477 =back
478
479 =item Alternate Object Representations
480
481 =over 4
482
483 =item Arrays as Objects
484
485 =item Closures as Objects
486
487 =back
488
489 =item AUTOLOAD: Proxy Methods
490
491 =over 4
492
493 =item Autoloaded Data Methods
494
495 =item Inherited Autoloaded Data Methods
496
497 =back
498
499 =item Metaclassical Tools
500
501 =over 4
502
503 =item Class::Struct
504
505 =item Data Members as Variables
506
507 =back
508
509 =item NOTES
510
511 =over 4
512
513 =item Object Terminology
514
515 =back
516
517 =item SEE ALSO
518
519 =item AUTHOR AND COPYRIGHT
520
521 =item COPYRIGHT
522
523 =over 4
524
525 =item Acknowledgments
526
527 =back
528
529 =back
530
531 =head2 perltooc - Tom's OO Tutorial for Class Data in Perl
532
533 =over 4
534
535 =item DESCRIPTION
536
537 =item Class Data in a Can
538
539 =item Class Data as Package Variables
540
541 =over 4
542
543 =item Putting All Your Eggs in One Basket
544
545 =item Inheritance Concerns
546
547 =item The Eponymous Meta-Object
548
549 =item Indirect References to Class Data
550
551 =item Monadic Classes
552
553 =item Translucent Attributes
554
555 =back
556
557 =item Class Data as Lexical Variables
558
559 =over 4
560
561 =item Privacy and Responsibility 
562
563 =item File-Scoped Lexicals
564
565 =item More Inheritance Concerns
566
567 =item Locking the Door and Throwing Away the Key
568
569 =item Translucency Revisited
570
571 =back
572
573 =item NOTES
574
575 =item SEE ALSO
576
577 =item AUTHOR AND COPYRIGHT
578
579 =item ACKNOWLEDGEMENTS
580
581 =item HISTORY
582
583 =back
584
585 =head2 perlbot - Bag'o Object Tricks (the BOT)
586
587 =over 4
588
589 =item DESCRIPTION
590
591 =item OO SCALING TIPS
592
593 =item INSTANCE VARIABLES
594
595 =item SCALAR INSTANCE VARIABLES
596
597 =item INSTANCE VARIABLE INHERITANCE
598
599 =item OBJECT RELATIONSHIPS
600
601 =item OVERRIDING SUPERCLASS METHODS
602
603 =item USING RELATIONSHIP WITH SDBM
604
605 =item THINKING OF CODE REUSE
606
607 =item CLASS CONTEXT AND THE OBJECT
608
609 =item INHERITING A CONSTRUCTOR
610
611 =item DELEGATION
612
613 =item SEE ALSO
614
615 =back
616
617 =head2 perlstyle - Perl style guide
618
619 =over 4
620
621 =item DESCRIPTION
622
623 =back
624
625 =head2 perlcheat - Perl 5 Cheat Sheet
626
627 =over 4
628
629 =item DESCRIPTION
630
631 =over 4
632
633 =item The sheet
634
635 =back
636
637 =item ACKNOWLEDGEMENTS
638
639 =item AUTHOR
640
641 =item SEE ALSO
642
643 =back
644
645 =head2 perltrap - Perl traps for the unwary
646
647 =over 4
648
649 =item DESCRIPTION
650
651 =over 4
652
653 =item Awk Traps
654
655 =item C/C++ Traps
656
657 =item Sed Traps
658
659 =item Shell Traps
660
661 =item Perl Traps
662
663 =item Perl4 to Perl5 Traps
664
665 Discontinuance, Deprecation, and BugFix traps, Parsing Traps, Numerical
666 Traps, General data type traps, Context Traps - scalar, list contexts,
667 Precedence Traps, General Regular Expression Traps using s///, etc,
668 Subroutine, Signal, Sorting Traps, OS Traps, DBM Traps, Unclassified Traps
669
670 =item Discontinuance, Deprecation, and BugFix traps
671
672 Discontinuance, Deprecation, BugFix, Discontinuance, Discontinuance,
673 Discontinuance, BugFix, Discontinuance, Discontinuance, BugFix,
674 Discontinuance, Deprecation, Discontinuance, Discontinuance
675
676 =item Parsing Traps
677
678 Parsing, Parsing, Parsing, Parsing, Parsing
679
680 =item Numerical Traps
681
682 Numerical, Numerical, Numerical, Bitwise string ops
683
684 =item General data type traps
685
686 (Arrays), (Arrays), (Hashes), (Globs), (Globs), (Scalar String),
687 (Constants), (Scalars), (Variable Suicide)
688
689 =item Context Traps - scalar, list contexts
690
691 (list context), (scalar context), (scalar context), (list, builtin)
692
693 =item Precedence Traps
694
695 Precedence, Precedence, Precedence, Precedence, Precedence, Precedence,
696 Precedence
697
698 =item General Regular Expression Traps using s///, etc.
699
700 Regular Expression, Regular Expression, Regular Expression, Regular
701 Expression, Regular Expression, Regular Expression, Regular Expression,
702 Regular Expression, Regular Expression
703
704 =item Subroutine, Signal, Sorting Traps
705
706 (Signals), (Sort Subroutine), warn() won't let you specify a filehandle
707
708 =item OS Traps
709
710 (SysV), (SysV)
711
712 =item Interpolation Traps
713
714 Interpolation, Interpolation, Interpolation, Interpolation, Interpolation,
715 Interpolation, Interpolation, Interpolation, Interpolation
716
717 =item DBM Traps
718
719 DBM, DBM
720
721 =item Unclassified Traps
722
723 C<require>/C<do> trap using returned value, C<split> on empty string with
724 LIMIT specified
725
726 =back
727
728 =back
729
730 =head2 perldebtut - Perl debugging tutorial
731
732 =over 4
733
734 =item DESCRIPTION
735
736 =item use strict
737
738 =item Looking at data and -w and v
739
740 =item help
741
742 =item Stepping through code
743
744 =item Placeholder for a, w, t, T
745
746 =item REGULAR EXPRESSIONS
747
748 =item OUTPUT TIPS
749
750 =item CGI
751
752 =item GUIs
753
754 =item SUMMARY
755
756 =item SEE ALSO
757
758 =item AUTHOR
759
760 =item CONTRIBUTORS
761
762 =back
763
764 =head2 perlfaq - frequently asked questions about Perl ($Date: 2003/01/31
765 17:37:17 $)
766
767 =over 4
768
769 =item DESCRIPTION
770
771 =over 4
772
773 =item Where to get the perlfaq
774
775 =item How to contribute to the perlfaq
776
777 =item What will happen if you mail your Perl programming problems to the
778 authors
779
780 =back
781
782 =item Credits
783
784 =item Author and Copyright Information
785
786 =over 4
787
788 =item Bundled Distributions
789
790 =item Disclaimer
791
792 =back
793
794 =item Table of Contents
795
796 perlfaq  - this document, perlfaq1 - General Questions About Perl, perlfaq2
797 - Obtaining and Learning about Perl, perlfaq3 - Programming Tools, perlfaq4
798 - Data Manipulation, perlfaq5 - Files and Formats, perlfaq6 - Regular
799 Expressions, perlfaq7 - General Perl Language Issues, perlfaq8 - System
800 Interaction, perlfaq9 - Networking
801
802 =item The Questions
803
804 =over 4
805
806 =item L<perlfaq1>: General Questions About Perl
807
808 =item L<perlfaq2>: Obtaining and Learning about Perl
809
810 =item L<perlfaq3>: Programming Tools
811
812 =item L<perlfaq4>: Data Manipulation
813
814 =item L<perlfaq5>: Files and Formats
815
816 =item L<perlfaq6>: Regular Expressions
817
818 =item L<perlfaq7>: General Perl Language Issues
819
820 =item L<perlfaq8>: System Interaction
821
822 =item L<perlfaq9>: Networking
823
824 =back
825
826 =back
827
828 =head2 perlfaq1 - General Questions About Perl ($Revision: 1.12 $, $Date:
829 2003/07/09 15:47:28 $)
830
831 =over 4
832
833 =item DESCRIPTION
834
835 =over 4
836
837 =item What is Perl?
838
839 =item Who supports Perl?  Who develops it?  Why is it free?
840
841 =item Which version of Perl should I use?
842
843 =item What are perl4 and perl5?
844
845 =item What is Ponie?
846
847 =item What is perl6?
848
849 =item How stable is Perl?
850
851 =item Is Perl difficult to learn?
852
853 =item How does Perl compare with other languages like Java, Python, REXX,
854 Scheme, or Tcl?
855
856 =item Can I do [task] in Perl?
857
858 =item When shouldn't I program in Perl?
859
860 =item What's the difference between "perl" and "Perl"?
861
862 =item Is it a Perl program or a Perl script?
863
864 =item What is a JAPH?
865
866 =item Where can I get a list of Larry Wall witticisms?
867
868 =item How can I convince my sysadmin/supervisor/employees to use version
869 5/5.6.1/Perl instead of some other language?
870
871 =back
872
873 =item AUTHOR AND COPYRIGHT
874
875 =back
876
877 =head2 perlfaq2 - Obtaining and Learning about Perl ($Revision: 1.20 $,
878 $Date: 2003/01/26 17:50:56 $)
879
880 =over 4
881
882 =item DESCRIPTION
883
884 =over 4
885
886 =item What machines support Perl?  Where do I get it?
887
888 =item How can I get a binary version of Perl?
889
890 =item I don't have a C compiler on my system.  How can I compile perl?
891
892 =item I copied the Perl binary from one machine to another, but scripts
893 don't work.
894
895 =item I grabbed the sources and tried to compile but gdbm/dynamic
896 loading/malloc/linking/... failed.  How do I make it work?
897
898 =item What modules and extensions are available for Perl?  What is CPAN? 
899 What does CPAN/src/... mean?
900
901 =item Is there an ISO or ANSI certified version of Perl?
902
903 =item Where can I get information on Perl?
904
905 =item What are the Perl newsgroups on Usenet?  Where do I post questions?
906
907 =item Where should I post source code?
908
909 =item Perl Books
910
911 References, Tutorials, Task-Oriented, Special Topics
912
913 =item Perl in Magazines
914
915 =item Perl on the Net: FTP and WWW Access
916
917 =item What mailing lists are there for Perl?
918
919 =item Archives of comp.lang.perl.misc
920
921 =item Where can I buy a commercial version of Perl?
922
923 =item Where do I send bug reports?
924
925 =item What is perl.com? Perl Mongers? pm.org? perl.org? cpan.org?
926
927 =back
928
929 =item AUTHOR AND COPYRIGHT
930
931 =back
932
933 =head2 perlfaq3 - Programming Tools ($Revision: 1.33 $, $Date: 2003/01/31
934 17:34:56 $)
935
936 =over 4
937
938 =item DESCRIPTION
939
940 =over 4
941
942 =item How do I do (anything)?
943
944 =item How can I use Perl interactively?
945
946 =item Is there a Perl shell?
947
948 =item How do I find which modules are installed on my system?
949
950 =item How do I debug my Perl programs?
951
952 =item How do I profile my Perl programs?
953
954 =item How do I cross-reference my Perl programs?
955
956 =item Is there a pretty-printer (formatter) for Perl?
957
958 =item Is there a ctags for Perl?
959
960 =item Is there an IDE or Windows Perl Editor?
961
962 Komodo, The Object System, Open Perl IDE, PerlBuilder, visiPerl+, OptiPerl,
963 GNU Emacs, MicroEMACS, XEmacs, Jed, Elvis, Vile, Vim, Codewright,
964 MultiEdit, SlickEdit, Bash, Ksh, Tcsh, Zsh, BBEdit and BBEdit Lite, Alpha
965
966 =item Where can I get Perl macros for vi?
967
968 =item Where can I get perl-mode for emacs?
969
970 =item How can I use curses with Perl?
971
972 =item How can I use X or Tk with Perl?
973
974 =item How can I generate simple menus without using CGI or Tk?
975
976 =item How can I make my Perl program run faster?
977
978 =item How can I make my Perl program take less memory?
979
980 Don't slurp!, Use map and grep selectively, Avoid unnecessary quotes and
981 stringification, Pass by reference, Tie large variables to disk
982
983 =item Is it safe to return a reference to local or lexical data?
984
985 =item How can I free an array or hash so my program shrinks?
986
987 =item How can I make my CGI script more efficient?
988
989 =item How can I hide the source for my Perl program?
990
991 =item How can I compile my Perl program into byte code or C?
992
993 =item How can I compile Perl into Java?
994
995 =item How can I get C<#!perl> to work on [MS-DOS,NT,...]?
996
997 =item Can I write useful Perl programs on the command line?
998
999 =item Why don't Perl one-liners work on my DOS/Mac/VMS system?
1000
1001 =item Where can I learn about CGI or Web programming in Perl?
1002
1003 =item Where can I learn about object-oriented Perl programming?
1004
1005 =item Where can I learn about linking C with Perl? [h2xs, xsubpp]
1006
1007 =item I've read perlembed, perlguts, etc., but I can't embed perl in
1008 my C program; what am I doing wrong?
1009
1010 =item When I tried to run my script, I got this message. What does it mean?
1011
1012 =item What's MakeMaker?
1013
1014 =back
1015
1016 =item AUTHOR AND COPYRIGHT
1017
1018 =back
1019
1020 =head2 perlfaq4 - Data Manipulation ($Revision: 1.44 $, $Date: 2003/07/28
1021 17:35:21 $)
1022
1023 =over 4
1024
1025 =item DESCRIPTION
1026
1027 =item Data: Numbers
1028
1029 =over 4
1030
1031 =item Why am I getting long decimals (eg, 19.9499999999999) instead of the
1032 numbers I should be getting (eg, 19.95)?
1033
1034 =item Why isn't my octal data interpreted correctly?
1035
1036 =item Does Perl have a round() function?  What about ceil() and floor()? 
1037 Trig functions?
1038
1039 =item How do I convert between numeric representations?
1040
1041 How do I convert hexadecimal into decimal, How do I convert from decimal to
1042 hexadecimal, How do I convert from octal to decimal, How do I convert from
1043 decimal to octal, How do I convert from binary to decimal, How do I convert
1044 from decimal to binary
1045
1046 =item Why doesn't & work the way I want it to?
1047
1048 =item How do I multiply matrices?
1049
1050 =item How do I perform an operation on a series of integers?
1051
1052 =item How can I output Roman numerals?
1053
1054 =item Why aren't my random numbers random?
1055
1056 =item How do I get a random number between X and Y?
1057
1058 =back
1059
1060 =item Data: Dates
1061
1062 =over 4
1063
1064 =item How do I find the day or week of the year?
1065
1066 =item How can I compare two dates and find the difference?
1067
1068 =item How can I take a string and turn it into epoch seconds?
1069
1070 =item How can I find the Julian Day?
1071
1072 =item How do I find yesterday's date?
1073
1074 =item Does Perl have a Year 2000 problem?  Is Perl Y2K compliant?
1075
1076 =back
1077
1078 =item Data: Strings
1079
1080 =over 4
1081
1082 =item How do I validate input?
1083
1084 =item How do I unescape a string?
1085
1086 =item How do I remove consecutive pairs of characters?
1087
1088 =item How do I expand function calls in a string?
1089
1090 =item How do I find matching/nesting anything?
1091
1092 =item How do I reverse a string?
1093
1094 =item How do I expand tabs in a string?
1095
1096 =item How do I reformat a paragraph?
1097
1098 =item How can I access or change N characters of a string?
1099
1100 =item How do I change the Nth occurrence of something?
1101
1102 =item How can I count the number of occurrences of a substring within a
1103 string?
1104
1105 =item How do I capitalize all the words on one line?
1106
1107 =item How can I split a [character] delimited string except when inside
1108 [character]?
1109
1110 =item How do I strip blank space from the beginning/end of a string?
1111
1112 =item How do I pad a string with blanks or pad a number with zeroes?
1113
1114 =item How do I extract selected columns from a string?
1115
1116 =item How do I find the soundex value of a string?
1117
1118 =item How can I expand variables in text strings?
1119
1120 =item What's wrong with always quoting "$vars"?
1121
1122 =item Why don't my E<lt>E<lt>HERE documents work?
1123
1124 There must be no space after the E<lt>E<lt> part, There (probably) should
1125 be a semicolon at the end, You can't (easily) have any space in front of
1126 the tag
1127
1128 =back
1129
1130 =item Data: Arrays
1131
1132 =over 4
1133
1134 =item What is the difference between a list and an array?
1135
1136 =item What is the difference between $array[1] and @array[1]?
1137
1138 =item How can I remove duplicate elements from a list or array?
1139
1140 a), b), c), d), e)
1141
1142 =item How can I tell whether a certain element is contained in a list or
1143 array?
1144
1145 =item How do I compute the difference of two arrays?  How do I compute the
1146 intersection of two arrays?
1147
1148 =item How do I test whether two arrays or hashes are equal?
1149
1150 =item How do I find the first array element for which a condition is true?
1151
1152 =item How do I handle linked lists?
1153
1154 =item How do I handle circular lists?
1155
1156 =item How do I shuffle an array randomly?
1157
1158 =item How do I process/modify each element of an array?
1159
1160 =item How do I select a random element from an array?
1161
1162 =item How do I permute N elements of a list?
1163
1164 =item How do I sort an array by (anything)?
1165
1166 =item How do I manipulate arrays of bits?
1167
1168 =item Why does defined() return true on empty arrays and hashes?
1169
1170 =back
1171
1172 =item Data: Hashes (Associative Arrays)
1173
1174 =over 4
1175
1176 =item How do I process an entire hash?
1177
1178 =item What happens if I add or remove keys from a hash while iterating over
1179 it?
1180
1181 =item How do I look up a hash element by value?
1182
1183 =item How can I know how many entries are in a hash?
1184
1185 =item How do I sort a hash (optionally by value instead of key)?
1186
1187 =item How can I always keep my hash sorted?
1188
1189 =item What's the difference between "delete" and "undef" with hashes?
1190
1191 =item Why don't my tied hashes make the defined/exists distinction?
1192
1193 =item How do I reset an each() operation part-way through?
1194
1195 =item How can I get the unique keys from two hashes?
1196
1197 =item How can I store a multidimensional array in a DBM file?
1198
1199 =item How can I make my hash remember the order I put elements into it?
1200
1201 =item Why does passing a subroutine an undefined element in a hash create
1202 it?
1203
1204 =item How can I make the Perl equivalent of a C structure/C++ class/hash or
1205 array of hashes or arrays?
1206
1207 =item How can I use a reference as a hash key?
1208
1209 =back
1210
1211 =item Data: Misc
1212
1213 =over 4
1214
1215 =item How do I handle binary data correctly?
1216
1217 =item How do I determine whether a scalar is a number/whole/integer/float?
1218
1219 =item How do I keep persistent data across program calls?
1220
1221 =item How do I print out or copy a recursive data structure?
1222
1223 =item How do I define methods for every class/object?
1224
1225 =item How do I verify a credit card checksum?
1226
1227 =item How do I pack arrays of doubles or floats for XS code?
1228
1229 =back
1230
1231 =item AUTHOR AND COPYRIGHT
1232
1233 =back
1234
1235 =head2 perlfaq5 - Files and Formats ($Revision: 1.28 $, $Date: 2003/01/26
1236 17:45:46 $)
1237
1238 =over 4
1239
1240 =item DESCRIPTION
1241
1242 =over 4
1243
1244 =item How do I flush/unbuffer an output filehandle?  Why must I do this?
1245
1246 =item How do I change one line in a file/delete a line in a file/insert a
1247 line in the middle of a file/append to the beginning of a file?
1248
1249 =item How do I count the number of lines in a file?
1250
1251 =item How can I use Perl's C<-i> option from within a program?
1252
1253 =item How do I make a temporary file name?
1254
1255 =item How can I manipulate fixed-record-length files?
1256
1257 =item How can I make a filehandle local to a subroutine?  How do I pass
1258 filehandles between subroutines?  How do I make an array of filehandles?
1259
1260 =item How can I use a filehandle indirectly?
1261
1262 =item How can I set up a footer format to be used with write()?
1263
1264 =item How can I write() into a string?
1265
1266 =item How can I output my numbers with commas added?
1267
1268 =item How can I translate tildes (~) in a filename?
1269
1270 =item How come when I open a file read-write it wipes it out?
1271
1272 =item Why do I sometimes get an "Argument list too long" when I use
1273 E<lt>*E<gt>?
1274
1275 =item Is there a leak/bug in glob()?
1276
1277 =item How can I open a file with a leading ">" or trailing blanks?
1278
1279 =item How can I reliably rename a file?
1280
1281 =item How can I lock a file?
1282
1283 =item Why can't I just open(FH, "E<gt>file.lock")?
1284
1285 =item I still don't get locking.  I just want to increment the number in
1286 the file.  How can I do this?
1287
1288 =item All I want to do is append a small amount of text to the end of a
1289 file.  Do I still have to use locking?
1290
1291 =item How do I randomly update a binary file?
1292
1293 =item How do I get a file's timestamp in perl?
1294
1295 =item How do I set a file's timestamp in perl?
1296
1297 =item How do I print to more than one file at once?
1298
1299 =item How can I read in an entire file all at once?
1300
1301 =item How can I read in a file by paragraphs?
1302
1303 =item How can I read a single character from a file?  From the keyboard?
1304
1305 =item How can I tell whether there's a character waiting on a filehandle?
1306
1307 =item How do I do a C<tail -f> in perl?
1308
1309 =item How do I dup() a filehandle in Perl?
1310
1311 =item How do I close a file descriptor by number?
1312
1313 =item Why can't I use "C:\temp\foo" in DOS paths?  Why doesn't
1314 `C:\temp\foo.exe` work?
1315
1316 =item Why doesn't glob("*.*") get all the files?
1317
1318 =item Why does Perl let me delete read-only files?  Why does C<-i> clobber
1319 protected files?  Isn't this a bug in Perl?
1320
1321 =item How do I select a random line from a file?
1322
1323 =item Why do I get weird spaces when I print an array of lines?
1324
1325 =back
1326
1327 =item AUTHOR AND COPYRIGHT
1328
1329 =back
1330
1331 =head2 perlfaq6 - Regular Expressions ($Revision: 1.20 $, $Date: 2003/01/03
1332 20:05:28 $)
1333
1334 =over 4
1335
1336 =item DESCRIPTION
1337
1338 =over 4
1339
1340 =item How can I hope to use regular expressions without creating illegible
1341 and unmaintainable code?
1342
1343 Comments Outside the Regex, Comments Inside the Regex, Different Delimiters
1344
1345 =item I'm having trouble matching over more than one line.  What's wrong?
1346
1347 =item How can I pull out lines between two patterns that are themselves on
1348 different lines?
1349
1350 =item I put a regular expression into $/ but it didn't work. What's wrong?
1351
1352 =item How do I substitute case insensitively on the LHS while preserving
1353 case on the RHS?
1354
1355 =item How can I make C<\w> match national character sets?
1356
1357 =item How can I match a locale-smart version of C</[a-zA-Z]/>?
1358
1359 =item How can I quote a variable to use in a regex?
1360
1361 =item What is C</o> really for?
1362
1363 =item How do I use a regular expression to strip C style comments from a
1364 file?
1365
1366 =item Can I use Perl regular expressions to match balanced text?
1367
1368 =item What does it mean that regexes are greedy?  How can I get around it?
1369
1370 =item How do I process each word on each line?
1371
1372 =item How can I print out a word-frequency or line-frequency summary?
1373
1374 =item How can I do approximate matching?
1375
1376 =item How do I efficiently match many regular expressions at once?
1377
1378 =item Why don't word-boundary searches with C<\b> work for me?
1379
1380 =item Why does using $&, $`, or $' slow my program down?
1381
1382 =item What good is C<\G> in a regular expression?
1383
1384 =item Are Perl regexes DFAs or NFAs?  Are they POSIX compliant?
1385
1386 =item What's wrong with using grep or map in a void context?
1387
1388 =item How can I match strings with multibyte characters?
1389
1390 =item How do I match a pattern that is supplied by the user?
1391
1392 =back
1393
1394 =item AUTHOR AND COPYRIGHT
1395
1396 =back
1397
1398 =head2 perlfaq7 - General Perl Language Issues ($Revision: 1.15 $, $Date:
1399 2003/07/24 02:17:21 $)
1400
1401 =over 4
1402
1403 =item DESCRIPTION
1404
1405 =over 4
1406
1407 =item Can I get a BNF/yacc/RE for the Perl language?
1408
1409 =item What are all these $@%&* punctuation signs, and how do I know when to
1410 use them?
1411
1412 =item Do I always/never have to quote my strings or use semicolons and
1413 commas?
1414
1415 =item How do I skip some return values?
1416
1417 =item How do I temporarily block warnings?
1418
1419 =item What's an extension?
1420
1421 =item Why do Perl operators have different precedence than C operators?
1422
1423 =item How do I declare/create a structure?
1424
1425 =item How do I create a module?
1426
1427 =item How do I create a class?
1428
1429 =item How can I tell if a variable is tainted?
1430
1431 =item What's a closure?
1432
1433 =item What is variable suicide and how can I prevent it?
1434
1435 =item How can I pass/return a {Function, FileHandle, Array, Hash, Method,
1436 Regex}?
1437
1438 Passing Variables and Functions, Passing Filehandles, Passing Regexes,
1439 Passing Methods
1440
1441 =item How do I create a static variable?
1442
1443 =item What's the difference between dynamic and lexical (static) scoping? 
1444 Between local() and my()?
1445
1446 =item How can I access a dynamic variable while a similarly named lexical
1447 is in scope?
1448
1449 =item What's the difference between deep and shallow binding?
1450
1451 =item Why doesn't "my($foo) = E<lt>FILEE<gt>;" work right?
1452
1453 =item How do I redefine a builtin function, operator, or method?
1454
1455 =item What's the difference between calling a function as &foo and foo()?
1456
1457 =item How do I create a switch or case statement?
1458
1459 =item How can I catch accesses to undefined variables, functions, or
1460 methods?
1461
1462 =item Why can't a method included in this same file be found?
1463
1464 =item How can I find out my current package?
1465
1466 =item How can I comment out a large block of perl code?
1467
1468 =item How do I clear a package?
1469
1470 =item How can I use a variable as a variable name?
1471
1472 =item What does "bad interpreter" mean?
1473
1474 =back
1475
1476 =item AUTHOR AND COPYRIGHT
1477
1478 =back
1479
1480 =head2 perlfaq8 - System Interaction ($Revision: 1.17 $, $Date: 2003/01/26
1481 17:44:04 $)
1482
1483 =over 4
1484
1485 =item DESCRIPTION
1486
1487 =over 4
1488
1489 =item How do I find out which operating system I'm running under?
1490
1491 =item How come exec() doesn't return?
1492
1493 =item How do I do fancy stuff with the keyboard/screen/mouse?
1494
1495 Keyboard, Screen, Mouse
1496
1497 =item How do I print something out in color?
1498
1499 =item How do I read just one key without waiting for a return key?
1500
1501 =item How do I check whether input is ready on the keyboard?
1502
1503 =item How do I clear the screen?
1504
1505 =item How do I get the screen size?
1506
1507 =item How do I ask the user for a password?
1508
1509 =item How do I read and write the serial port?
1510
1511 lockfiles, open mode, end of line, flushing output, non-blocking input
1512
1513 =item How do I decode encrypted password files?
1514
1515 =item How do I start a process in the background?
1516
1517 STDIN, STDOUT, and STDERR are shared, Signals, Zombies
1518
1519 =item How do I trap control characters/signals?
1520
1521 =item How do I modify the shadow password file on a Unix system?
1522
1523 =item How do I set the time and date?
1524
1525 =item How can I sleep() or alarm() for under a second?
1526
1527 =item How can I measure time under a second?
1528
1529 =item How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
1530
1531 =item Why doesn't my sockets program work under System V (Solaris)?  What
1532 does the error message "Protocol not supported" mean?
1533
1534 =item How can I call my system's unique C functions from Perl?
1535
1536 =item Where do I get the include files to do ioctl() or syscall()?
1537
1538 =item Why do setuid perl scripts complain about kernel problems?
1539
1540 =item How can I open a pipe both to and from a command?
1541
1542 =item Why can't I get the output of a command with system()?
1543
1544 =item How can I capture STDERR from an external command?
1545
1546 =item Why doesn't open() return an error when a pipe open fails?
1547
1548 =item What's wrong with using backticks in a void context?
1549
1550 =item How can I call backticks without shell processing?
1551
1552 =item Why can't my script read from STDIN after I gave it EOF (^D on Unix,
1553 ^Z on MS-DOS)?
1554
1555 =item How can I convert my shell script to perl?
1556
1557 =item Can I use perl to run a telnet or ftp session?
1558
1559 =item How can I write expect in Perl?
1560
1561 =item Is there a way to hide perl's command line from programs such as
1562 "ps"?
1563
1564 =item I {changed directory, modified my environment} in a perl script.  How
1565 come the change disappeared when I exited the script?  How do I get my
1566 changes to be visible?
1567
1568 Unix
1569
1570 =item How do I close a process's filehandle without waiting for it to
1571 complete?
1572
1573 =item How do I fork a daemon process?
1574
1575 =item How do I find out if I'm running interactively or not?
1576
1577 =item How do I timeout a slow event?
1578
1579 =item How do I set CPU limits?
1580
1581 =item How do I avoid zombies on a Unix system?
1582
1583 =item How do I use an SQL database?
1584
1585 =item How do I make a system() exit on control-C?
1586
1587 =item How do I open a file without blocking?
1588
1589 =item How do I install a module from CPAN?
1590
1591 =item What's the difference between require and use?
1592
1593 =item How do I keep my own module/library directory?
1594
1595 =item How do I add the directory my program lives in to the module/library
1596 search path?
1597
1598 =item How do I add a directory to my include path at runtime?
1599
1600 =item What is socket.ph and where do I get it?
1601
1602 =back
1603
1604 =item AUTHOR AND COPYRIGHT
1605
1606 =back
1607
1608 =head2 perlfaq9 - Networking ($Revision: 1.15 $, $Date: 2003/01/31 17:36:57
1609 $)
1610
1611 =over 4
1612
1613 =item DESCRIPTION
1614
1615 =over 4
1616
1617 =item What is the correct form of response from a CGI script?
1618
1619 =item My CGI script runs from the command line but not the browser.  (500
1620 Server Error)
1621
1622 =item How can I get better error messages from a CGI program?
1623
1624 =item How do I remove HTML from a string?
1625
1626 =item How do I extract URLs?
1627
1628 =item How do I download a file from the user's machine?  How do I open a
1629 file on another machine?
1630
1631 =item How do I make a pop-up menu in HTML?
1632
1633 =item How do I fetch an HTML file?
1634
1635 =item How do I automate an HTML form submission?
1636
1637 =item How do I decode or create those %-encodings on the web?
1638
1639 =item How do I redirect to another page?
1640
1641 =item How do I put a password on my web pages?
1642
1643 =item How do I edit my .htpasswd and .htgroup files with Perl?
1644
1645 =item How do I make sure users can't enter values into a form that cause my
1646 CGI script to do bad things?
1647
1648 =item How do I parse a mail header?
1649
1650 =item How do I decode a CGI form?
1651
1652 =item How do I check a valid mail address?
1653
1654 =item How do I decode a MIME/BASE64 string?
1655
1656 =item How do I return the user's mail address?
1657
1658 =item How do I send mail?
1659
1660 =item How do I use MIME to make an attachment to a mail message?
1661
1662 =item How do I read mail?
1663
1664 =item How do I find out my hostname/domainname/IP address?
1665
1666 =item How do I fetch a news article or the active newsgroups?
1667
1668 =item How do I fetch/put an FTP file?
1669
1670 =item How can I do RPC in Perl?
1671
1672 =back
1673
1674 =item AUTHOR AND COPYRIGHT
1675
1676 =back
1677
1678 =head2 perlsyn - Perl syntax
1679
1680 =over 4
1681
1682 =item DESCRIPTION
1683
1684 =over 4
1685
1686 =item Declarations
1687
1688 =item Comments
1689
1690 =item Simple Statements
1691
1692 =item Compound Statements
1693
1694 =item Loop Control
1695
1696 =item For Loops
1697
1698 =item Foreach Loops
1699
1700 =item Basic BLOCKs and Switch Statements
1701
1702 =item Goto
1703
1704 =item PODs: Embedded Documentation
1705
1706 =item Plain Old Comments (Not!)
1707
1708 =back
1709
1710 =back
1711
1712 =head2 perldata - Perl data types
1713
1714 =over 4
1715
1716 =item DESCRIPTION
1717
1718 =over 4
1719
1720 =item Variable names
1721
1722 =item Context
1723
1724 =item Scalar values
1725
1726 =item Scalar value constructors
1727
1728 =item List value constructors
1729
1730 =item Subscripts
1731
1732 =item Slices
1733
1734 =item Typeglobs and Filehandles
1735
1736 =back
1737
1738 =item SEE ALSO
1739
1740 =back
1741
1742 =head2 perlop - Perl operators and precedence
1743
1744 =over 4
1745
1746 =item SYNOPSIS
1747
1748 =item DESCRIPTION
1749
1750 =over 4
1751
1752 =item Terms and List Operators (Leftward)
1753
1754 =item The Arrow Operator
1755
1756 =item Auto-increment and Auto-decrement
1757
1758 =item Exponentiation
1759
1760 =item Symbolic Unary Operators
1761
1762 =item Binding Operators
1763
1764 =item Multiplicative Operators
1765
1766 =item Additive Operators
1767
1768 =item Shift Operators
1769
1770 =item Named Unary Operators
1771
1772 =item Relational Operators
1773
1774 =item Equality Operators
1775
1776 =item Bitwise And
1777
1778 =item Bitwise Or and Exclusive Or
1779
1780 =item C-style Logical And
1781
1782 =item C-style Logical Or
1783
1784 =item C-style Logical Defined-Or
1785
1786 =item Range Operators
1787
1788 =item Conditional Operator
1789
1790 =item Assignment Operators
1791
1792 =item Comma Operator
1793
1794 =item List Operators (Rightward)
1795
1796 =item Logical Not
1797
1798 =item Logical And
1799
1800 =item Logical or, Defined or, and Exclusive Or
1801
1802 =item C Operators Missing From Perl
1803
1804 unary &, unary *, (TYPE)
1805
1806 =item Quote and Quote-like Operators
1807
1808 =item Regexp Quote-Like Operators
1809
1810 ?PATTERN?, m/PATTERN/cgimosx, /PATTERN/cgimosx, q/STRING/, C<'STRING'>,
1811 qq/STRING/, "STRING", qr/STRING/imosx, qx/STRING/, `STRING`, qw/STRING/,
1812 s/PATTERN/REPLACEMENT/egimosx, tr/SEARCHLIST/REPLACEMENTLIST/cds,
1813 y/SEARCHLIST/REPLACEMENTLIST/cds, <<EOF
1814
1815 =item Gory details of parsing quoted constructs
1816
1817 Finding the end, Removal of backslashes before delimiters, Interpolation,
1818 C<<<'EOF'>, C<m''>, C<s'''>, C<tr///>, C<y///>, C<''>, C<q//>, C<"">,
1819 C<``>, C<qq//>, C<qx//>, C<< <file*glob> >>, C<?RE?>, C</RE/>, C<m/RE/>,
1820 C<s/RE/foo/>,, Interpolation of regular expressions, Optimization of
1821 regular expressions
1822
1823 =item I/O Operators
1824
1825 =item Constant Folding
1826
1827 =item Bitwise String Operators
1828
1829 =item Integer Arithmetic
1830
1831 =item Floating-point Arithmetic
1832
1833 =item Bigger Numbers
1834
1835 =back
1836
1837 =back
1838
1839 =head2 perlsub - Perl subroutines
1840
1841 =over 4
1842
1843 =item SYNOPSIS
1844
1845 =item DESCRIPTION
1846
1847 =over 4
1848
1849 =item Private Variables via my()
1850
1851 =item Persistent Private Variables
1852
1853 =item Temporary Values via local()
1854
1855 =item Lvalue subroutines
1856
1857 Lvalue subroutines are EXPERIMENTAL
1858
1859 =item Passing Symbol Table Entries (typeglobs)
1860
1861 =item When to Still Use local()
1862
1863 =item Pass by Reference
1864
1865 =item Prototypes
1866
1867 =item Constant Functions
1868
1869 =item Overriding Built-in Functions
1870
1871 =item Autoloading
1872
1873 =item Subroutine Attributes
1874
1875 =back
1876
1877 =item SEE ALSO
1878
1879 =back
1880
1881 =head2 perlfunc - Perl builtin functions
1882
1883 =over 4
1884
1885 =item DESCRIPTION
1886
1887 =over 4
1888
1889 =item Perl Functions by Category
1890
1891 Functions for SCALARs or strings, Regular expressions and pattern matching,
1892 Numeric functions, Functions for real @ARRAYs, Functions for list data,
1893 Functions for real %HASHes, Input and output functions, Functions for fixed
1894 length data or records, Functions for filehandles, files, or directories,
1895 Keywords related to the control flow of your perl program, Keywords related
1896 to scoping, Miscellaneous functions, Functions for processes and process
1897 groups, Keywords related to perl modules, Keywords related to classes and
1898 object-orientedness, Low-level socket functions, System V interprocess
1899 communication functions, Fetching user and group info, Fetching network
1900 info, Time-related functions, Functions new in perl5, Functions obsoleted
1901 in perl5
1902
1903 =item Portability
1904
1905 =item Alphabetical Listing of Perl Functions
1906
1907 -I<X> FILEHANDLE, -I<X> EXPR, -I<X>, abs VALUE, abs, accept
1908 NEWSOCKET,GENERICSOCKET, alarm SECONDS, alarm, atan2 Y,X, bind SOCKET,NAME,
1909 binmode FILEHANDLE, LAYER, binmode FILEHANDLE, bless REF,CLASSNAME, bless
1910 REF, caller EXPR, caller, chdir EXPR, chmod LIST, chomp VARIABLE, chomp(
1911 LIST ), chomp, chop VARIABLE, chop( LIST ), chop, chown LIST, chr NUMBER,
1912 chr, chroot FILENAME, chroot, close FILEHANDLE, close, closedir DIRHANDLE,
1913 connect SOCKET,NAME, continue BLOCK, cos EXPR, cos, crypt PLAINTEXT,SALT,
1914 dbmclose HASH, dbmopen HASH,DBNAME,MASK, defined EXPR, defined, delete
1915 EXPR, die LIST, do BLOCK, do SUBROUTINE(LIST), do EXPR, dump LABEL, dump,
1916 each HASH, eof FILEHANDLE, eof (), eof, eval EXPR, eval BLOCK, exec LIST,
1917 exec PROGRAM LIST, exists EXPR, exit EXPR, exp EXPR, exp, fcntl
1918 FILEHANDLE,FUNCTION,SCALAR, fileno FILEHANDLE, flock FILEHANDLE,OPERATION,
1919 fork, format, formline PICTURE,LIST, getc FILEHANDLE, getc, getlogin,
1920 getpeername SOCKET, getpgrp PID, getppid, getpriority WHICH,WHO, getpwnam
1921 NAME, getgrnam NAME, gethostbyname NAME, getnetbyname NAME, getprotobyname
1922 NAME, getpwuid UID, getgrgid GID, getservbyname NAME,PROTO, gethostbyaddr
1923 ADDR,ADDRTYPE, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
1924 getservbyport PORT,PROTO, getpwent, getgrent, gethostent, getnetent,
1925 getprotoent, getservent, setpwent, setgrent, sethostent STAYOPEN, setnetent
1926 STAYOPEN, setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent,
1927 endhostent, endnetent, endprotoent, endservent, getsockname SOCKET,
1928 getsockopt SOCKET,LEVEL,OPTNAME, glob EXPR, glob, gmtime EXPR, goto LABEL,
1929 goto EXPR, goto &NAME, grep BLOCK LIST, grep EXPR,LIST, hex EXPR, hex,
1930 import, index STR,SUBSTR,POSITION, index STR,SUBSTR, int EXPR, int, ioctl
1931 FILEHANDLE,FUNCTION,SCALAR, join EXPR,LIST, keys HASH, kill SIGNAL, LIST,
1932 last LABEL, last, lc EXPR, lc, lcfirst EXPR, lcfirst, length EXPR, length,
1933 link OLDFILE,NEWFILE, listen SOCKET,QUEUESIZE, local EXPR, localtime EXPR,
1934 lock THING, log EXPR, log, lstat EXPR, lstat, m//, map BLOCK LIST, map
1935 EXPR,LIST, mkdir FILENAME,MASK, mkdir FILENAME, msgctl ID,CMD,ARG, msgget
1936 KEY,FLAGS, msgrcv ID,VAR,SIZE,TYPE,FLAGS, msgsnd ID,MSG,FLAGS, my EXPR, my
1937 TYPE EXPR, my EXPR : ATTRS, my TYPE EXPR : ATTRS, next LABEL, next, no
1938 Module VERSION LIST, no Module VERSION, no Module LIST, no Module, oct
1939 EXPR, oct, open FILEHANDLE,EXPR, open FILEHANDLE,MODE,EXPR, open
1940 FILEHANDLE,MODE,EXPR,LIST, open FILEHANDLE,MODE,REFERENCE, open FILEHANDLE,
1941 opendir DIRHANDLE,EXPR, ord EXPR, ord, our EXPR, our EXPR TYPE, our EXPR :
1942 ATTRS, our TYPE EXPR : ATTRS, pack TEMPLATE,LIST, package NAMESPACE,
1943 package, pipe READHANDLE,WRITEHANDLE, pop ARRAY, pop, pos SCALAR, pos,
1944 print FILEHANDLE LIST, print LIST, print, printf FILEHANDLE FORMAT, LIST,
1945 printf FORMAT, LIST, prototype FUNCTION, push ARRAY,LIST, q/STRING/,
1946 qq/STRING/, qr/STRING/, qx/STRING/, qw/STRING/, quotemeta EXPR, quotemeta,
1947 rand EXPR, rand, read FILEHANDLE,SCALAR,LENGTH,OFFSET, read
1948 FILEHANDLE,SCALAR,LENGTH, readdir DIRHANDLE, readline EXPR, readlink EXPR,
1949 readlink, readpipe EXPR, recv SOCKET,SCALAR,LENGTH,FLAGS, redo LABEL, redo,
1950 ref EXPR, ref, rename OLDNAME,NEWNAME, require VERSION, require EXPR,
1951 require, reset EXPR, reset, return EXPR, return, reverse LIST, rewinddir
1952 DIRHANDLE, rindex STR,SUBSTR,POSITION, rindex STR,SUBSTR, rmdir FILENAME,
1953 rmdir, s///, scalar EXPR, seek FILEHANDLE,POSITION,WHENCE, seekdir
1954 DIRHANDLE,POS, select FILEHANDLE, select, select RBITS,WBITS,EBITS,TIMEOUT,
1955 semctl ID,SEMNUM,CMD,ARG, semget KEY,NSEMS,FLAGS, semop KEY,OPSTRING, send
1956 SOCKET,MSG,FLAGS,TO, send SOCKET,MSG,FLAGS, setpgrp PID,PGRP, setpriority
1957 WHICH,WHO,PRIORITY, setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL, shift ARRAY,
1958 shift, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS, shmread ID,VAR,POS,SIZE,
1959 shmwrite ID,STRING,POS,SIZE, shutdown SOCKET,HOW, sin EXPR, sin, sleep
1960 EXPR, sleep, socket SOCKET,DOMAIN,TYPE,PROTOCOL, socketpair
1961 SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, sort SUBNAME LIST, sort BLOCK LIST,
1962 sort LIST, splice ARRAY,OFFSET,LENGTH,LIST, splice ARRAY,OFFSET,LENGTH,
1963 splice ARRAY,OFFSET, splice ARRAY, split /PATTERN/,EXPR,LIMIT, split
1964 /PATTERN/,EXPR, split /PATTERN/, split, sprintf FORMAT, LIST, format
1965 parameter index, flags, vector flag, (minimum) width, precision, or maximum
1966 width, size, order of arguments, sqrt EXPR, sqrt, srand EXPR, srand, stat
1967 FILEHANDLE, stat EXPR, stat, study SCALAR, study, sub NAME BLOCK, sub NAME
1968 (PROTO) BLOCK, sub NAME : ATTRS BLOCK, sub NAME (PROTO) : ATTRS BLOCK,
1969 substr EXPR,OFFSET,LENGTH,REPLACEMENT, substr EXPR,OFFSET,LENGTH, substr
1970 EXPR,OFFSET, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
1971 FILEHANDLE,FILENAME,MODE, sysopen FILEHANDLE,FILENAME,MODE,PERMS, sysread
1972 FILEHANDLE,SCALAR,LENGTH,OFFSET, sysread FILEHANDLE,SCALAR,LENGTH, sysseek
1973 FILEHANDLE,POSITION,WHENCE, system LIST, system PROGRAM LIST, syswrite
1974 FILEHANDLE,SCALAR,LENGTH,OFFSET, syswrite FILEHANDLE,SCALAR,LENGTH,
1975 syswrite FILEHANDLE,SCALAR, tell FILEHANDLE, tell, telldir DIRHANDLE, tie
1976 VARIABLE,CLASSNAME,LIST, tied VARIABLE, time, times, tr///, truncate
1977 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, uc EXPR, uc, ucfirst EXPR,
1978 ucfirst, umask EXPR, umask, undef EXPR, undef, unlink LIST, unlink, unpack
1979 TEMPLATE,EXPR, unpack TEMPLATE, untie VARIABLE, unshift ARRAY,LIST, use
1980 Module VERSION LIST, use Module VERSION, use Module LIST, use Module, use
1981 VERSION, utime LIST, values HASH, vec EXPR,OFFSET,BITS, wait, waitpid
1982 PID,FLAGS, wantarray, warn LIST, write FILEHANDLE, write EXPR, write, y///
1983
1984 =back
1985
1986 =back
1987
1988 =head2 perlopentut - tutorial on opening things in Perl
1989
1990 =over 4
1991
1992 =item DESCRIPTION
1993
1994 =item Open E<agrave> la shell
1995
1996 =over 4
1997
1998 =item Simple Opens
1999
2000 =item Indirect Filehandles
2001
2002 =item Pipe Opens
2003
2004 =item The Minus File
2005
2006 =item Mixing Reads and Writes
2007
2008 =item Filters 
2009
2010 =back
2011
2012 =item Open E<agrave> la C
2013
2014 =over 4
2015
2016 =item Permissions E<agrave> la mode
2017
2018 =back
2019
2020 =item Obscure Open Tricks
2021
2022 =over 4
2023
2024 =item Re-Opening Files (dups)
2025
2026 =item Dispelling the Dweomer
2027
2028 =item Paths as Opens
2029
2030 =item Single Argument Open
2031
2032 =item Playing with STDIN and STDOUT
2033
2034 =back
2035
2036 =item Other I/O Issues
2037
2038 =over 4
2039
2040 =item Opening Non-File Files
2041
2042 =item Opening Named Pipes
2043
2044 =item Opening Sockets
2045
2046 =item Binary Files
2047
2048 =item File Locking
2049
2050 =item IO Layers
2051
2052 =back
2053
2054 =item SEE ALSO 
2055
2056 =item AUTHOR and COPYRIGHT
2057
2058 =item HISTORY
2059
2060 =back
2061
2062 =head2 perlpacktut - tutorial on C<pack> and C<unpack>
2063
2064 =over 4
2065
2066 =item DESCRIPTION
2067
2068 =item The Basic Principle
2069
2070 =item Packing Text
2071
2072 =item Packing Numbers
2073
2074 =over 4
2075
2076 =item Integers
2077
2078 =item Unpacking a Stack Frame
2079
2080 =item How to Eat an Egg on a Net
2081
2082 =item Floating point Numbers
2083
2084 =back
2085
2086 =item Exotic Templates
2087
2088 =over 4
2089
2090 =item Bit Strings
2091
2092 =item Uuencoding
2093
2094 =item Doing Sums
2095
2096 =item  Unicode
2097
2098 =item Another Portable Binary Encoding
2099
2100 =back
2101
2102 =item Template Grouping
2103
2104 =item Lengths and Widths
2105
2106 =over 4
2107
2108 =item String Lengths
2109
2110 =item Dynamic Templates
2111
2112 =item Counting Repetitions
2113
2114 =back
2115
2116 =item Packing and Unpacking C Structures
2117
2118 =over 4
2119
2120 =item The Alignment Pit
2121
2122 =item Alignment, Take 2
2123
2124 =item Alignment, Take 3
2125
2126 =item Pointers for How to Use Them
2127
2128 =back
2129
2130 =item Pack Recipes
2131
2132 =item Funnies Section
2133
2134 =item Authors
2135
2136 =back
2137
2138 =head2 perlpod - the Plain Old Documentation format
2139
2140 =over 4
2141
2142 =item DESCRIPTION
2143
2144 =over 4
2145
2146 =item Ordinary Paragraph
2147
2148 =item Verbatim Paragraph
2149
2150 =item Command Paragraph
2151
2152 C<=head1 I<Heading Text>>, C<=head2 I<Heading Text>>, C<=head3 I<Heading
2153 Text>>, C<=head4 I<Heading Text>>, C<=over I<indentlevel>>, C<=item
2154 I<stuff...>>, C<=back>, C<=cut>, C<=pod>, C<=begin I<formatname>>, C<=end
2155 I<formatname>>, C<=for I<formatname> I<text...>>
2156
2157 =item Formatting Codes
2158
2159 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
2160 C<CE<lt>codeE<gt>> -- code text, C<LE<lt>nameE<gt>> -- a hyperlink,
2161 C<EE<lt>escapeE<gt>> -- a character escape, C<FE<lt>filenameE<gt>> -- used
2162 for filenames, C<SE<lt>textE<gt>> -- text contains non-breaking spaces,
2163 C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a null
2164 (zero-effect) formatting code
2165
2166 =item The Intent
2167
2168 =item Embedding Pods in Perl Modules
2169
2170 =item Hints for Writing Pod
2171
2172 =back
2173
2174 =item SEE ALSO
2175
2176 =item AUTHOR
2177
2178 =back
2179
2180 =head2 perlpodspec - Plain Old Documentation: format specification and
2181 notes
2182
2183 =over 4
2184
2185 =item DESCRIPTION
2186
2187 =item Pod Definitions
2188
2189 =item Pod Commands
2190
2191 "=head1", "=head2", "=head3", "=head4", "=pod", "=cut", "=over", "=item",
2192 "=back", "=begin formatname", "=end formatname", "=for formatname text..."
2193
2194 =item Pod Formatting Codes
2195
2196 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
2197 C<CE<lt>codeE<gt>> -- code text, C<FE<lt>filenameE<gt>> -- style for
2198 filenames, C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a
2199 null (zero-effect) formatting code, C<LE<lt>nameE<gt>> -- a hyperlink,
2200 C<EE<lt>escapeE<gt>> -- a character escape, C<SE<lt>textE<gt>> -- text
2201 contains non-breaking spaces
2202
2203 =item Notes on Implementing Pod Processors
2204
2205 =item About LE<lt>...E<gt> Codes
2206
2207 First:, Second:, Third:, Fourth:, Fifth:, Sixth:
2208
2209 =item About =over...=back Regions
2210
2211 =item About Data Paragraphs and "=begin/=end" Regions
2212
2213 =item SEE ALSO
2214
2215 =item AUTHOR
2216
2217 =back
2218
2219 =head2 perlrun - how to execute the Perl interpreter
2220
2221 =over 4
2222
2223 =item SYNOPSIS
2224
2225 =item DESCRIPTION
2226
2227 =over 4
2228
2229 =item #! and quoting on non-Unix systems
2230
2231 OS/2, MS-DOS, Win95/NT, Macintosh, VMS
2232
2233 =item Location of Perl
2234
2235 =item Command Switches
2236
2237 B<-0>[I<octal/hexadecimal>], B<-A [I<assertions>]>, B<-a>, B<-C
2238 [I<number/list>]>, B<-c>, B<-d>, B<-d:>I<foo[=bar,baz]>, B<-D>I<letters>,
2239 B<-D>I<number>, B<-e> I<commandline>, B<-F>I<pattern>, B<-h>,
2240 B<-i>[I<extension>], B<-I>I<directory>, B<-l>[I<octnum>],
2241 B<-m>[B<->]I<module>, B<-M>[B<->]I<module>, B<-M>[B<->]I<'module ...'>,
2242 B<-[mM]>[B<->]I<module=arg[,arg]...>, B<-n>, B<-p>, B<-P>, B<-s>, B<-S>,
2243 B<-t>, B<-T>, B<-u>, B<-U>, B<-v>, B<-V>, B<-V:>I<name>, B<-w>, B<-W>,
2244 B<-X>, B<-x> I<directory>
2245
2246 =back
2247
2248 =item ENVIRONMENT
2249
2250 HOME, LOGDIR, PATH, PERL5LIB, PERL5OPT, PERLIO, :bytes, :crlf, :mmap,
2251 :perlio, :pop, :raw, :stdio, :unix, :utf8, :win32, PERLIO_DEBUG, PERLLIB,
2252 PERL5DB, PERL5SHELL (specific to the Win32 port), PERL_DEBUG_MSTATS,
2253 PERL_DESTRUCT_LEVEL, PERL_ENCODING, PERL_HASH_SEED, PERL_HASH_SEED_DEBUG,
2254 PERL_ROOT (specific to the VMS port), PERL_SIGNALS, PERL_UNICODE, SYS$LOGIN
2255 (specific to the VMS port)
2256
2257 =back
2258
2259 =head2 perldiag - various Perl diagnostics
2260
2261 =over 4
2262
2263 =item DESCRIPTION
2264
2265 =back
2266
2267 =head2 perllexwarn - Perl Lexical Warnings
2268
2269 =over 4
2270
2271 =item DESCRIPTION
2272
2273 =over 4
2274
2275 =item Default Warnings and Optional Warnings
2276
2277 =item What's wrong with B<-w> and C<$^W>
2278
2279 =item Controlling Warnings from the Command Line
2280
2281 B<-w>, B<-W>, B<-X>
2282
2283 =item Backward Compatibility
2284
2285 =item Category Hierarchy
2286
2287 =item Fatal Warnings
2288
2289 =item Reporting Warnings from a Module
2290
2291 =back
2292
2293 =item TODO
2294
2295 =item SEE ALSO
2296
2297 =item AUTHOR
2298
2299 =back
2300
2301 =head2 perldebug - Perl debugging
2302
2303 =over 4
2304
2305 =item DESCRIPTION
2306
2307 =item The Perl Debugger
2308
2309 =over 4
2310
2311 =item Debugger Commands
2312
2313 h, h [command], h h, p expr, x [maxdepth] expr, V [pkg [vars]], X [vars], y
2314 [level [vars]], T, s [expr], n [expr], r, <CR>, c [line|sub], l, l
2315 min+incr, l min-max, l line, l subname, -, v [line], f filename, /pattern/,
2316 ?pattern?, L [abw], S [[!]regex], t, t expr, b, b [line] [condition], b
2317 subname [condition], b postpone subname [condition], b load filename, b
2318 compile subname, B line, B *, a [line] command, A line, A *, w expr, W
2319 expr, W *, o, o booloption .., o anyoption? .., o option=value .., < ?, < [
2320 command ], < *, << command, > ?, > command, > *, >> command, { ?, { [
2321 command ], { *, {{ command, ! number, ! -number, ! pattern, !! cmd, source
2322 file, H -number, q or ^D, R, |dbcmd, ||dbcmd, command, m expr, M, man
2323 [manpage]
2324
2325 =item Configurable Options
2326
2327 C<recallCommand>, C<ShellBang>, C<pager>, C<tkRunning>, C<signalLevel>,
2328 C<warnLevel>, C<dieLevel>, C<AutoTrace>, C<LineInfo>, C<inhibit_exit>,
2329 C<PrintRet>, C<ornaments>, C<frame>, C<maxTraceLen>, C<windowSize>,
2330 C<arrayDepth>, C<hashDepth>, C<dumpDepth>, C<compactDump>, C<veryCompact>,
2331 C<globPrint>, C<DumpDBFiles>, C<DumpPackages>, C<DumpReused>, C<quote>,
2332 C<HighBit>, C<undefPrint>, C<UsageOnly>, C<TTY>, C<noTTY>, C<ReadLine>,
2333 C<NonStop>
2334
2335 =item Debugger input/output
2336
2337 Prompt, Multiline commands, Stack backtrace, Line Listing Format, Frame
2338 listing
2339
2340 =item Debugging compile-time statements
2341
2342 =item Debugger Customization
2343
2344 =item Readline Support
2345
2346 =item Editor Support for Debugging
2347
2348 =item The Perl Profiler
2349
2350 =back
2351
2352 =item Debugging regular expressions
2353
2354 =item Debugging memory usage
2355
2356 =item SEE ALSO
2357
2358 =item BUGS
2359
2360 =back
2361
2362 =head2 perlvar - Perl predefined variables
2363
2364 =over 4
2365
2366 =item DESCRIPTION
2367
2368 =over 4
2369
2370 =item Predefined Names
2371
2372 $ARG, $_, $a, $b, $<I<digits>>, $MATCH, $&, $PREMATCH, $`, $POSTMATCH, $',
2373 $LAST_PAREN_MATCH, $+, $^N, @LAST_MATCH_END, @+,
2374 HANDLE->input_line_number(EXPR), $INPUT_LINE_NUMBER, $NR, $,
2375 IO::Handle->input_record_separator(EXPR), $INPUT_RECORD_SEPARATOR, $RS, $/,
2376 HANDLE->autoflush(EXPR), $OUTPUT_AUTOFLUSH, $|,
2377 IO::Handle->output_field_separator EXPR, $OUTPUT_FIELD_SEPARATOR, $OFS, $,,
2378 IO::Handle->output_record_separator EXPR, $OUTPUT_RECORD_SEPARATOR, $ORS,
2379 $\, $LIST_SEPARATOR, $", $SUBSCRIPT_SEPARATOR, $SUBSEP, $;, $OFMT, $#,
2380 HANDLE->format_page_number(EXPR), $FORMAT_PAGE_NUMBER, $%,
2381 HANDLE->format_lines_per_page(EXPR), $FORMAT_LINES_PER_PAGE, $=,
2382 HANDLE->format_lines_left(EXPR), $FORMAT_LINES_LEFT, $-, @LAST_MATCH_START,
2383 @-, C<$`> is the same as C<substr($var, 0, $-[0])>, C<$&> is the same as
2384 C<substr($var, $-[0], $+[0] - $-[0])>, C<$'> is the same as C<substr($var,
2385 $+[0])>, C<$1> is the same as C<substr($var, $-[1], $+[1] - $-[1])>, C<$2>
2386 is the same as C<substr($var, $-[2], $+[2] - $-[2])>, C<$3> is the same as
2387 C<substr $var, $-[3], $+[3] - $-[3])>, HANDLE->format_name(EXPR),
2388 $FORMAT_NAME, $~, HANDLE->format_top_name(EXPR), $FORMAT_TOP_NAME, $^,
2389 IO::Handle->format_line_break_characters EXPR,
2390 $FORMAT_LINE_BREAK_CHARACTERS, $:, IO::Handle->format_formfeed EXPR,
2391 $FORMAT_FORMFEED, $^L, $ACCUMULATOR, $^A, $CHILD_ERROR, $?, ${^ENCODING},
2392 $OS_ERROR, $ERRNO, $!, %!, $EXTENDED_OS_ERROR, $^E, $EVAL_ERROR, $@,
2393 $PROCESS_ID, $PID, $$, $REAL_USER_ID, $UID, $<, $EFFECTIVE_USER_ID, $EUID,
2394 $>, $REAL_GROUP_ID, $GID, $(, $EFFECTIVE_GROUP_ID, $EGID, $),
2395 $PROGRAM_NAME, $0, $[, $], $COMPILING, $^C, $DEBUGGING, $^D,
2396 $SYSTEM_FD_MAX, $^F, $^H, %^H, $INPLACE_EDIT, $^I, $^M, $OSNAME, $^O,
2397 ${^OPEN}, $PERLDB, $^P, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
2398 0x100, 0x200, 0x400, $LAST_REGEXP_CODE_RESULT, $^R,
2399 $EXCEPTIONS_BEING_CAUGHT, $^S, $BASETIME, $^T, ${^TAINT}, ${^UNICODE},
2400 $PERL_VERSION, $^V, $WARNING, $^W, ${^WARNING_BITS}, $EXECUTABLE_NAME, $^X,
2401 ARGV, $ARGV, @ARGV, ARGVOUT, @F, @INC, @_, %INC, %ENV, $ENV{expr}, %SIG,
2402 $SIG{expr}
2403
2404 =item Error Indicators
2405
2406 =item Technical Note on the Syntax of Variable Names
2407
2408 =back
2409
2410 =item BUGS
2411
2412 =back
2413
2414 =head2 perlre - Perl regular expressions
2415
2416 =over 4
2417
2418 =item DESCRIPTION
2419
2420 i, m, s, x
2421
2422 =over 4
2423
2424 =item Regular Expressions
2425
2426 [1], [2], [3], cntrl, graph, print, punct, xdigit
2427
2428 =item Extended Patterns
2429
2430 C<(?#text)>, C<(?imsx-imsx)>, C<(?:pattern)>, C<(?imsx-imsx:pattern)>,
2431 C<(?=pattern)>, C<(?!pattern)>, C<(?<=pattern)>, C<(?<!pattern)>, C<(?{
2432 code })>, C<(??{ code })>, C<< (?>pattern) >>,
2433 C<(?(condition)yes-pattern|no-pattern)>, C<(?(condition)yes-pattern)>
2434
2435 =item Backtracking
2436
2437 =item Version 8 Regular Expressions
2438
2439 =item Warning on \1 vs $1
2440
2441 =item Repeated patterns matching zero-length substring
2442
2443 =item Combining pieces together
2444
2445 C<ST>, C<S|T>, C<S{REPEAT_COUNT}>, C<S{min,max}>, C<S{min,max}?>, C<S?>,
2446 C<S*>, C<S+>, C<S??>, C<S*?>, C<S+?>, C<< (?>S) >>, C<(?=S)>, C<(?<=S)>,
2447 C<(?!S)>, C<(?<!S)>, C<(??{ EXPR })>,
2448 C<(?(condition)yes-pattern|no-pattern)>
2449
2450 =item Creating custom RE engines
2451
2452 =back
2453
2454 =item BUGS
2455
2456 =item SEE ALSO
2457
2458 =back
2459
2460 =head2 perlreref - Perl Regular Expressions Reference
2461
2462 =over 4
2463
2464 =item DESCRIPTION
2465
2466 =over 4
2467
2468 =item OPERATORS
2469
2470 =item SYNTAX
2471
2472 =item ESCAPE SEQUENCES
2473
2474 =item CHARACTER CLASSES
2475
2476 =item ANCHORS
2477
2478 =item QUANTIFIERS
2479
2480 =item EXTENDED CONSTRUCTS
2481
2482 =item VARIABLES
2483
2484 =item FUNCTIONS
2485
2486 =item TERMINOLOGY
2487
2488 =back
2489
2490 =item AUTHOR
2491
2492 =item SEE ALSO
2493
2494 =item THANKS
2495
2496 =back
2497
2498 =head2 perlref - Perl references and nested data structures
2499
2500 =over 4
2501
2502 =item NOTE
2503
2504 =item DESCRIPTION
2505
2506 =over 4
2507
2508 =item Making References
2509
2510 =item Using References
2511
2512 =item Symbolic references
2513
2514 =item Not-so-symbolic references
2515
2516 =item Pseudo-hashes: Using an array as a hash
2517
2518 =item Function Templates
2519
2520 =back
2521
2522 =item WARNING
2523
2524 =item SEE ALSO
2525
2526 =back
2527
2528 =head2 perlform - Perl formats
2529
2530 =over 4
2531
2532 =item DESCRIPTION
2533
2534 =over 4
2535
2536 =item Format Variables
2537
2538 =back
2539
2540 =item NOTES
2541
2542 =over 4
2543
2544 =item Footers
2545
2546 =item Accessing Formatting Internals
2547
2548 =back
2549
2550 =item WARNINGS
2551
2552 =back
2553
2554 =head2 perlobj - Perl objects
2555
2556 =over 4
2557
2558 =item DESCRIPTION
2559
2560 =over 4
2561
2562 =item An Object is Simply a Reference
2563
2564 =item A Class is Simply a Package
2565
2566 =item A Method is Simply a Subroutine
2567
2568 =item Method Invocation
2569
2570 =item Indirect Object Syntax
2571
2572 =item Default UNIVERSAL methods
2573
2574 isa(CLASS), can(METHOD), VERSION( [NEED] )
2575
2576 =item Destructors
2577
2578 =item Summary
2579
2580 =item Two-Phased Garbage Collection
2581
2582 =back
2583
2584 =item SEE ALSO
2585
2586 =back
2587
2588 =head2 perltie - how to hide an object class in a simple variable
2589
2590 =over 4
2591
2592 =item SYNOPSIS
2593
2594 =item DESCRIPTION
2595
2596 =over 4
2597
2598 =item Tying Scalars
2599
2600 TIESCALAR classname, LIST, FETCH this, STORE this, value, UNTIE this,
2601 DESTROY this
2602
2603 =item Tying Arrays
2604
2605 TIEARRAY classname, LIST, FETCH this, index, STORE this, index, value,
2606 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
2607 key, DELETE this, key, CLEAR this, PUSH this, LIST, POP this, SHIFT this,
2608 UNSHIFT this, LIST, SPLICE this, offset, length, LIST, UNTIE this, DESTROY
2609 this
2610
2611 =item Tying Hashes
2612
2613 USER, HOME, CLOBBER, LIST, TIEHASH classname, LIST, FETCH this, key, STORE
2614 this, key, value, DELETE this, key, CLEAR this, EXISTS this, key, FIRSTKEY
2615 this, NEXTKEY this, lastkey, UNTIE this, DESTROY this
2616
2617 =item Tying FileHandles
2618
2619 TIEHANDLE classname, LIST, WRITE this, LIST, PRINT this, LIST, PRINTF this,
2620 LIST, READ this, LIST, READLINE this, GETC this, CLOSE this, UNTIE this,
2621 DESTROY this
2622
2623 =item UNTIE this
2624
2625 =item The C<untie> Gotcha
2626
2627 =back
2628
2629 =item SEE ALSO
2630
2631 =item BUGS
2632
2633 =item AUTHOR
2634
2635 =back
2636
2637 =head2 perldbmfilter - Perl DBM Filters
2638
2639 =over 4
2640
2641 =item SYNOPSIS
2642
2643 =item DESCRIPTION
2644
2645 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
2646 B<filter_fetch_value>
2647
2648 =over 4
2649
2650 =item The Filter
2651
2652 =item An Example -- the NULL termination problem.
2653
2654 =item Another Example -- Key is a C int.
2655
2656 =back
2657
2658 =item SEE ALSO
2659
2660 =item AUTHOR
2661
2662 =back
2663
2664 =head2 perlipc - Perl interprocess communication (signals, fifos, pipes,
2665 safe subprocesses, sockets, and semaphores)
2666
2667 =over 4
2668
2669 =item DESCRIPTION
2670
2671 =item Signals
2672
2673 =over 4
2674
2675 =item Handling the SIGHUP Signal in Daemons
2676
2677 =back
2678
2679 =item Named Pipes
2680
2681 =over 4
2682
2683 =item Deferred Signals (Safe signals)
2684
2685 Long running opcodes, Interrupting IO, Restartable system calls, Signals as
2686 "faults", Signals triggered by operating system state
2687
2688 =back
2689
2690 =item Using open() for IPC
2691
2692 =over 4
2693
2694 =item Filehandles
2695
2696 =item Background Processes
2697
2698 =item Complete Dissociation of Child from Parent
2699
2700 =item Safe Pipe Opens
2701
2702 =item Bidirectional Communication with Another Process
2703
2704 =item Bidirectional Communication with Yourself
2705
2706 =back
2707
2708 =item Sockets: Client/Server Communication
2709
2710 =over 4
2711
2712 =item Internet Line Terminators
2713
2714 =item Internet TCP Clients and Servers
2715
2716 =item Unix-Domain TCP Clients and Servers
2717
2718 =back
2719
2720 =item TCP Clients with IO::Socket
2721
2722 =over 4
2723
2724 =item A Simple Client
2725
2726 C<Proto>, C<PeerAddr>, C<PeerPort>
2727
2728 =item A Webget Client
2729
2730 =item Interactive Client with IO::Socket
2731
2732 =back
2733
2734 =item TCP Servers with IO::Socket
2735
2736 Proto, LocalPort, Listen, Reuse
2737
2738 =item UDP: Message Passing
2739
2740 =item SysV IPC
2741
2742 =item NOTES
2743
2744 =item BUGS
2745
2746 =item AUTHOR
2747
2748 =item SEE ALSO
2749
2750 =back
2751
2752 =head2 perlfork - Perl's fork() emulation
2753
2754 =over 4
2755
2756 =item SYNOPSIS
2757
2758 =item DESCRIPTION
2759
2760 =over 4
2761
2762 =item Behavior of other Perl features in forked pseudo-processes
2763
2764 $$ or $PROCESS_ID, %ENV, chdir() and all other builtins that accept
2765 filenames, wait() and waitpid(), kill(), exec(), exit(), Open handles to
2766 files, directories and network sockets
2767
2768 =item Resource limits
2769
2770 =item Killing the parent process
2771
2772 =item Lifetime of the parent process and pseudo-processes
2773
2774 =item CAVEATS AND LIMITATIONS
2775
2776 BEGIN blocks, Open filehandles, Forking pipe open() not yet implemented,
2777 Global state maintained by XSUBs, Interpreter embedded in larger
2778 application, Thread-safety of extensions
2779
2780 =back
2781
2782 =item BUGS
2783
2784 =item AUTHOR
2785
2786 =item SEE ALSO
2787
2788 =back
2789
2790 =head2 perlnumber - semantics of numbers and numeric operations in Perl
2791
2792 =over 4
2793
2794 =item SYNOPSIS
2795
2796 =item DESCRIPTION
2797
2798 =item Storing numbers
2799
2800 =item Numeric operators and numeric conversions
2801
2802 =item Flavors of Perl numeric operations
2803
2804 Arithmetic operators, ++, Arithmetic operators during C<use integer>, Other
2805 mathematical operators, Bitwise operators, Bitwise operators during C<use
2806 integer>, Operators which expect an integer, Operators which expect a
2807 string
2808
2809 =item AUTHOR
2810
2811 =item SEE ALSO
2812
2813 =back
2814
2815 =head2 perlthrtut - tutorial on threads in Perl
2816
2817 =over 4
2818
2819 =item DESCRIPTION
2820
2821 =item Status
2822
2823 =item What Is A Thread Anyway?
2824
2825 =item Threaded Program Models
2826
2827 =over 4
2828
2829 =item Boss/Worker
2830
2831 =item Work Crew
2832
2833 =item Pipeline
2834
2835 =back
2836
2837 =item What kind of threads are Perl threads?
2838
2839 =item Thread-Safe Modules
2840
2841 =item Thread Basics
2842
2843 =over 4
2844
2845 =item Basic Thread Support
2846
2847 =item A Note about the Examples
2848
2849 =item Creating Threads
2850
2851 =item Waiting For A Thread To Exit
2852
2853 =item Ignoring A Thread
2854
2855 =back
2856
2857 =item Threads And Data
2858
2859 =over 4
2860
2861 =item Shared And Unshared Data
2862
2863 =item Thread Pitfalls: Races
2864
2865 =back
2866
2867 =item Synchronization and control
2868
2869 =over 4
2870
2871 =item Controlling access: lock()
2872
2873 =item A Thread Pitfall: Deadlocks
2874
2875 =item Queues: Passing Data Around
2876
2877 =item Semaphores: Synchronizing Data Access
2878
2879 =item Basic semaphores
2880
2881 =item Advanced Semaphores
2882
2883 =item cond_wait() and cond_signal()
2884
2885 =item Giving up control
2886
2887 =back
2888
2889 =item General Thread Utility Routines
2890
2891 =over 4
2892
2893 =item What Thread Am I In?
2894
2895 =item Thread IDs
2896
2897 =item Are These Threads The Same?
2898
2899 =item What Threads Are Running?
2900
2901 =back
2902
2903 =item A Complete Example
2904
2905 =item Different implementations of threads
2906
2907 =item Performance considerations
2908
2909 =item Process-scope Changes
2910
2911 =item Thread-Safety of System Libraries
2912
2913 =item Conclusion
2914
2915 =item Bibliography
2916
2917 =over 4
2918
2919 =item Introductory Texts
2920
2921 =item OS-Related References
2922
2923 =item Other References
2924
2925 =back
2926
2927 =item Acknowledgements
2928
2929 =item AUTHOR
2930
2931 =item Copyrights
2932
2933 =back
2934
2935 =head2 perlothrtut - old tutorial on threads in Perl
2936
2937 =over 4
2938
2939 =item DESCRIPTION
2940
2941 =item What Is A Thread Anyway?
2942
2943 =item Threaded Program Models
2944
2945 =over 4
2946
2947 =item Boss/Worker
2948
2949 =item Work Crew
2950
2951 =item Pipeline
2952
2953 =back
2954
2955 =item Native threads
2956
2957 =item What kind of threads are perl threads?
2958
2959 =item Threadsafe Modules
2960
2961 =item Thread Basics
2962
2963 =over 4
2964
2965 =item Basic Thread Support
2966
2967 =item Creating Threads
2968
2969 =item Giving up control
2970
2971 =item Waiting For A Thread To Exit
2972
2973 =item Errors In Threads
2974
2975 =item Ignoring A Thread
2976
2977 =back
2978
2979 =item Threads And Data
2980
2981 =over 4
2982
2983 =item Shared And Unshared Data
2984
2985 =item Thread Pitfall: Races
2986
2987 =item Controlling access: lock()
2988
2989 =item Thread Pitfall: Deadlocks
2990
2991 =item Queues: Passing Data Around
2992
2993 =back
2994
2995 =item Threads And Code
2996
2997 =over 4
2998
2999 =item Semaphores: Synchronizing Data Access
3000
3001 Basic semaphores, Advanced Semaphores
3002
3003 =item Attributes: Restricting Access To Subroutines
3004
3005 =item Subroutine Locks
3006
3007 =item Methods
3008
3009 =item Locking A Subroutine
3010
3011 =back
3012
3013 =item General Thread Utility Routines
3014
3015 =over 4
3016
3017 =item What Thread Am I In?
3018
3019 =item Thread IDs
3020
3021 =item Are These Threads The Same?
3022
3023 =item What Threads Are Running?
3024
3025 =back
3026
3027 =item A Complete Example
3028
3029 =item Conclusion
3030
3031 =item Bibliography
3032
3033 =over 4
3034
3035 =item Introductory Texts
3036
3037 =item OS-Related References
3038
3039 =item Other References
3040
3041 =back
3042
3043 =item Acknowledgements
3044
3045 =item AUTHOR
3046
3047 =item Copyrights
3048
3049 =back
3050
3051 =head2 perlport - Writing portable Perl
3052
3053 =over 4
3054
3055 =item DESCRIPTION
3056
3057 Not all Perl programs have to be portable, Nearly all of Perl already I<is>
3058 portable
3059
3060 =item ISSUES
3061
3062 =over 4
3063
3064 =item Newlines
3065
3066 =item Numbers endianness and Width
3067
3068 =item Files and Filesystems
3069
3070 =item System Interaction
3071
3072 =item Command names versus file pathnames
3073
3074 =item Networking
3075
3076 =item Interprocess Communication (IPC)
3077
3078 =item External Subroutines (XS)
3079
3080 =item Standard Modules
3081
3082 =item Time and Date
3083
3084 =item Character sets and character encoding
3085
3086 =item Internationalisation
3087
3088 =item System Resources
3089
3090 =item Security
3091
3092 =item Style
3093
3094 =back
3095
3096 =item CPAN Testers
3097
3098 Mailing list: cpan-testers@perl.org, Testing results:
3099 http://testers.cpan.org/
3100
3101 =item PLATFORMS
3102
3103 =over 4
3104
3105 =item Unix
3106
3107 =item DOS and Derivatives
3108
3109 =item S<Mac OS>
3110
3111 =item VMS
3112
3113 =item VOS
3114
3115 =item EBCDIC Platforms
3116
3117 =item Acorn RISC OS
3118
3119 =item Other perls
3120
3121 =back
3122
3123 =item FUNCTION IMPLEMENTATIONS
3124
3125 =over 4
3126
3127 =item Alphabetical Listing of Perl Functions
3128
3129 -I<X> FILEHANDLE, -I<X> EXPR, -I<X>, alarm SECONDS, alarm, binmode
3130 FILEHANDLE, chmod LIST, chown LIST, chroot FILENAME, chroot, crypt
3131 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MODE, dump LABEL, exec
3132 LIST, exit EXPR, exit, fcntl FILEHANDLE,FUNCTION,SCALAR, flock
3133 FILEHANDLE,OPERATION, fork, getlogin, getpgrp PID, getppid, getpriority
3134 WHICH,WHO, getpwnam NAME, getgrnam NAME, getnetbyname NAME, getpwuid UID,
3135 getgrgid GID, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
3136 getservbyport PORT,PROTO, getpwent, getgrent, gethostbyname, gethostent,
3137 getnetent, getprotoent, getservent, sethostent STAYOPEN, setnetent
3138 STAYOPEN, setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent,
3139 endhostent, endnetent, endprotoent, endservent, getsockopt
3140 SOCKET,LEVEL,OPTNAME, glob EXPR, glob, ioctl FILEHANDLE,FUNCTION,SCALAR,
3141 kill SIGNAL, LIST, link OLDFILE,NEWFILE, lstat FILEHANDLE, lstat EXPR,
3142 lstat, msgctl ID,CMD,ARG, msgget KEY,FLAGS, msgsnd ID,MSG,FLAGS, msgrcv
3143 ID,VAR,SIZE,TYPE,FLAGS, open FILEHANDLE,EXPR, open FILEHANDLE, pipe
3144 READHANDLE,WRITEHANDLE, readlink EXPR, readlink, select
3145 RBITS,WBITS,EBITS,TIMEOUT, semctl ID,SEMNUM,CMD,ARG, semget
3146 KEY,NSEMS,FLAGS, semop KEY,OPSTRING, setgrent, setpgrp PID,PGRP,
3147 setpriority WHICH,WHO,PRIORITY, setpwent, setsockopt
3148 SOCKET,LEVEL,OPTNAME,OPTVAL, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS,
3149 shmread ID,VAR,POS,SIZE, shmwrite ID,STRING,POS,SIZE, sockatmark SOCKET,
3150 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, stat FILEHANDLE, stat
3151 EXPR, stat, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
3152 FILEHANDLE,FILENAME,MODE,PERMS, system LIST, times, truncate
3153 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, umask EXPR, umask, utime LIST,
3154 wait, waitpid PID,FLAGS
3155
3156 =back
3157
3158 =item CHANGES
3159
3160 v1.49, 12 August 2002, v1.48, 02 February 2001, v1.47, 22 March 2000,
3161 v1.46, 12 February 2000, v1.45, 20 December 1999, v1.44, 19 July 1999,
3162 v1.43, 24 May 1999, v1.42, 22 May 1999, v1.41, 19 May 1999, v1.40, 11 April
3163 1999, v1.39, 11 February 1999, v1.38, 31 December 1998, v1.37, 19 December
3164 1998, v1.36, 9 September 1998, v1.35, 13 August 1998, v1.33, 06 August
3165 1998, v1.32, 05 August 1998, v1.30, 03 August 1998, v1.23, 10 July 1998
3166
3167 =item Supported Platforms
3168
3169 =item SEE ALSO
3170
3171 =item AUTHORS / CONTRIBUTORS
3172
3173 =back
3174
3175 =head2 perllocale - Perl locale handling (internationalization and
3176 localization)
3177
3178 =over 4
3179
3180 =item DESCRIPTION
3181
3182 =item PREPARING TO USE LOCALES
3183
3184 =item USING LOCALES
3185
3186 =over 4
3187
3188 =item The use locale pragma
3189
3190 =item The setlocale function
3191
3192 =item Finding locales
3193
3194 =item LOCALE PROBLEMS
3195
3196 =item Temporarily fixing locale problems
3197
3198 =item Permanently fixing locale problems
3199
3200 =item Permanently fixing your system's locale configuration
3201
3202 =item Fixing system locale configuration
3203
3204 =item The localeconv function
3205
3206 =item I18N::Langinfo
3207
3208 =back
3209
3210 =item LOCALE CATEGORIES
3211
3212 =over 4
3213
3214 =item Category LC_COLLATE: Collation
3215
3216 =item Category LC_CTYPE: Character Types
3217
3218 =item Category LC_NUMERIC: Numeric Formatting
3219
3220 =item Category LC_MONETARY: Formatting of monetary amounts
3221
3222 =item LC_TIME
3223
3224 =item Other categories
3225
3226 =back
3227
3228 =item SECURITY
3229
3230 =item ENVIRONMENT
3231
3232 PERL_BADLANG, LC_ALL, LANGUAGE, LC_CTYPE, LC_COLLATE, LC_MONETARY,
3233 LC_NUMERIC, LC_TIME, LANG
3234
3235 =item NOTES
3236
3237 =over 4
3238
3239 =item Backward compatibility
3240
3241 =item I18N:Collate obsolete
3242
3243 =item Sort speed and memory use impacts
3244
3245 =item write() and LC_NUMERIC
3246
3247 =item Freely available locale definitions
3248
3249 =item I18n and l10n
3250
3251 =item An imperfect standard
3252
3253 =back
3254
3255 =item Unicode and UTF-8
3256
3257 =item BUGS
3258
3259 =over 4
3260
3261 =item Broken systems
3262
3263 =back
3264
3265 =item SEE ALSO
3266
3267 =item HISTORY
3268
3269 =back
3270
3271 =head2 perluniintro - Perl Unicode introduction
3272
3273 =over 4
3274
3275 =item DESCRIPTION
3276
3277 =over 4
3278
3279 =item Unicode
3280
3281 =item Perl's Unicode Support
3282
3283 =item Perl's Unicode Model
3284
3285 =item Unicode and EBCDIC
3286
3287 =item Creating Unicode
3288
3289 =item Handling Unicode
3290
3291 =item Legacy Encodings
3292
3293 =item Unicode I/O
3294
3295 =item Displaying Unicode As Text
3296
3297 =item Special Cases
3298
3299 =item Advanced Topics
3300
3301 =item Miscellaneous
3302
3303 =item Questions With Answers
3304
3305 =item Hexadecimal Notation
3306
3307 =item Further Resources
3308
3309 =back
3310
3311 =item UNICODE IN OLDER PERLS
3312
3313 =item SEE ALSO
3314
3315 =item ACKNOWLEDGMENTS
3316
3317 =item AUTHOR, COPYRIGHT, AND LICENSE
3318
3319 =back
3320
3321 =head2 perlunicode - Unicode support in Perl
3322
3323 =over 4
3324
3325 =item DESCRIPTION
3326
3327 =over 4
3328
3329 =item Important Caveats
3330
3331 Input and Output Layers, Regular Expressions, C<use utf8> still needed to
3332 enable UTF-8/UTF-EBCDIC in scripts
3333
3334 =item Byte and Character Semantics
3335
3336 =item Effects of Character Semantics
3337
3338 =item Scripts
3339
3340 =item Blocks
3341
3342 =item User-Defined Character Properties
3343
3344 =item Character Encodings for Input and Output
3345
3346 =item Unicode Regular Expression Support Level
3347
3348 =item Unicode Encodings
3349
3350 =item Security Implications of Unicode
3351
3352 =item Unicode in Perl on EBCDIC
3353
3354 =item Locales
3355
3356 =item When Unicode Does Not Happen
3357
3358 =item Forcing Unicode in Perl (Or Unforcing Unicode in Perl)
3359
3360 =item Using Unicode in XS
3361
3362 =back
3363
3364 =item BUGS
3365
3366 =over 4
3367
3368 =item Interaction with Locales
3369
3370 =item Interaction with Extensions
3371
3372 =item Speed
3373
3374 =item Porting code from perl-5.6.X
3375
3376 =back
3377
3378 =item SEE ALSO
3379
3380 =back
3381
3382 =head2 perlebcdic - Considerations for running Perl on EBCDIC platforms
3383
3384 =over 4
3385
3386 =item DESCRIPTION
3387
3388 =item COMMON CHARACTER CODE SETS
3389
3390 =over 4
3391
3392 =item ASCII
3393
3394 =item ISO 8859
3395
3396 =item Latin 1 (ISO 8859-1)
3397
3398 =item EBCDIC
3399
3400 =item 13 variant characters
3401
3402 =item 0037
3403
3404 =item 1047
3405
3406 =item POSIX-BC
3407
3408 =item Unicode code points versus EBCDIC code points
3409
3410 =item Remaining Perl Unicode problems in EBCDIC
3411
3412 =item Unicode and UTF
3413
3414 =item Using Encode
3415
3416 =back
3417
3418 =item SINGLE OCTET TABLES
3419
3420 recipe 0, recipe 1, recipe 2, recipe 3, recipe 4, recipe 5, recipe 6
3421
3422 =item IDENTIFYING CHARACTER CODE SETS
3423
3424 =item CONVERSIONS
3425
3426 =over 4
3427
3428 =item tr///
3429
3430 =item iconv
3431
3432 =item C RTL
3433
3434 =back
3435
3436 =item OPERATOR DIFFERENCES
3437
3438 =item FUNCTION DIFFERENCES
3439
3440 chr(), ord(), pack(), print(), printf(), sort(), sprintf(), unpack()
3441
3442 =item REGULAR EXPRESSION DIFFERENCES
3443
3444 =item SOCKETS
3445
3446 =item SORTING
3447
3448 =over 4
3449
3450 =item Ignore ASCII vs. EBCDIC sort differences.
3451
3452 =item MONO CASE then sort data.
3453
3454 =item Convert, sort data, then re convert.
3455
3456 =item Perform sorting on one type of machine only.
3457
3458 =back
3459
3460 =item TRANSFORMATION FORMATS
3461
3462 =over 4
3463
3464 =item URL decoding and encoding
3465
3466 =item uu encoding and decoding
3467
3468 =item Quoted-Printable encoding and decoding
3469
3470 =item Caesarian ciphers
3471
3472 =back
3473
3474 =item Hashing order and checksums
3475
3476 =item I18N AND L10N
3477
3478 =item MULTI OCTET CHARACTER SETS
3479
3480 =item OS ISSUES
3481
3482 =over 4
3483
3484 =item OS/400
3485
3486 PASE, IFS access
3487
3488 =item OS/390, z/OS
3489
3490 chcp, dataset access, OS/390, z/OS iconv, locales
3491
3492 =item VM/ESA?
3493
3494 =item POSIX-BC?
3495
3496 =back
3497
3498 =item BUGS
3499
3500 =item SEE ALSO
3501
3502 =item REFERENCES
3503
3504 =item HISTORY
3505
3506 =item AUTHOR
3507
3508 =back
3509
3510 =head2 perlsec - Perl security
3511
3512 =over 4
3513
3514 =item DESCRIPTION
3515
3516 =over 4
3517
3518 =item Laundering and Detecting Tainted Data
3519
3520 =item Switches On the "#!" Line
3521
3522 =item Cleaning Up Your Path
3523
3524 =item Security Bugs
3525
3526 =item Protecting Your Programs
3527
3528 =item Unicode
3529
3530 =item Algorithmic Complexity Attacks
3531
3532 =back
3533
3534 =item SEE ALSO
3535
3536 =back
3537
3538 =head2 perlmod - Perl modules (packages and symbol tables)
3539
3540 =over 4
3541
3542 =item DESCRIPTION
3543
3544 =over 4
3545
3546 =item Packages
3547
3548 =item Symbol Tables
3549
3550 =item Package Constructors and Destructors
3551
3552 =item Perl Classes
3553
3554 =item Perl Modules
3555
3556 =item Making your module threadsafe
3557
3558 =back
3559
3560 =item SEE ALSO
3561
3562 =back
3563
3564 =head2 perlmodlib - constructing new Perl modules and finding existing ones
3565
3566 =over 4
3567
3568 =item THE PERL MODULE LIBRARY
3569
3570 =over 4
3571
3572 =item Pragmatic Modules
3573
3574 assertions, assertions::activate, attributes, attrs, autouse, base, bigint,
3575 bignum, bigrat, blib, bytes, charnames, constant, diagnostics, encoding,
3576 fields, filetest, if, integer, less, lib, locale, open, ops, overload, re,
3577 sigtrap, sort, strict, subs, threads, threads::shared, utf8, vars, version,
3578 vmsish, warnings, warnings::register
3579
3580 =item Standard Modules
3581
3582 AnyDBM_File, Attribute::Handlers, AutoLoader, AutoSplit, B, B::Asmdata,
3583 B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC, B::Concise, B::Debug,
3584 B::Deparse, B::Disassembler, B::Lint, B::Showlex, B::Stackobj, B::Stash,
3585 B::Terse, B::Xref, Benchmark, ByteLoader, CGI, CGI::Apache, CGI::Carp,
3586 CGI::Cookie, CGI::Fast, CGI::Pretty, CGI::Push, CGI::Switch, CGI::Util,
3587 CPAN, CPAN::FirstTime, CPAN::Nox, Carp, Carp::Heavy, Class::ISA,
3588 Class::Struct, Config, Cwd, DB, DB_File, Data::Dumper, Devel::DProf,
3589 Devel::PPPort, Devel::Peek, Devel::SelfStubber, Digest, Digest::MD5,
3590 DirHandle, Dumpvalue, DynaLoader, Encode, Encode::Alias, Encode::Byte,
3591 Encode::CJKConstants, Encode::CN, Encode::CN::HZ, Encode::Config,
3592 Encode::EBCDIC, Encode::Encoder, Encode::Encoding, Encode::Guess,
3593 Encode::JP, Encode::JP::H2Z, Encode::JP::JIS7, Encode::KR,
3594 Encode::KR::2022_KR, Encode::MIME::Header, Encode::PerlIO,
3595 Encode::Supported, Encode::Symbol, Encode::TW, Encode::Unicode,
3596 Encode::Unicode::UTF7, English, Env, Errno, Exporter, Exporter::Heavy,
3597 ExtUtils::Command, ExtUtils::Command::MM, ExtUtils::Constant,
3598 ExtUtils::Embed, ExtUtils::Install, ExtUtils::Installed, ExtUtils::Liblist,
3599 ExtUtils::MM, ExtUtils::MM_Any, ExtUtils::MM_BeOS, ExtUtils::MM_Cygwin,
3600 ExtUtils::MM_DOS, ExtUtils::MM_MacOS, ExtUtils::MM_NW5, ExtUtils::MM_OS2,
3601 ExtUtils::MM_UWIN, ExtUtils::MM_Unix, ExtUtils::MM_VMS, ExtUtils::MM_Win32,
3602 ExtUtils::MM_Win95, ExtUtils::MY, ExtUtils::MakeMaker,
3603 ExtUtils::MakeMaker::FAQ, ExtUtils::MakeMaker::Tutorial,
3604 ExtUtils::MakeMaker::bytes, ExtUtils::MakeMaker::vmsish,
3605 ExtUtils::Manifest, ExtUtils::Mkbootstrap, ExtUtils::Mksymlists,
3606 ExtUtils::Packlist, ExtUtils::testlib, Fatal, Fcntl, File::Basename,
3607 File::CheckTree, File::Compare, File::Copy, File::DosGlob, File::Find,
3608 File::Glob, File::Path, File::Spec, File::Spec::Cygwin, File::Spec::Epoc,
3609 File::Spec::Functions, File::Spec::Mac, File::Spec::OS2, File::Spec::Unix,
3610 File::Spec::VMS, File::Spec::Win32, File::Temp, File::stat, FileCache,
3611 FileHandle, Filter::Simple, Filter::Util::Call, FindBin, GDBM_File,
3612 Getopt::Long, Getopt::Std, Hash::Util, I18N::Collate, I18N::LangTags,
3613 I18N::LangTags::List, I18N::Langinfo, IO, IO::Dir, IO::File, IO::Handle,
3614 IO::Pipe, IO::Poll, IO::Seekable, IO::Select, IO::Socket, IO::Socket::INET,
3615 IO::Socket::UNIX, IPC::Open2, IPC::Open3, IPC::SysV, IPC::SysV::Msg,
3616 IPC::SysV::Semaphore, List::Util, Locale::Constants, Locale::Country,
3617 Locale::Currency, Locale::Language, Locale::Maketext,
3618 Locale::Maketext::TPJ13, Locale::Script, MIME::Base64,
3619 MIME::Base64::QuotedPrint, Math::BigFloat, Math::BigInt,
3620 Math::BigInt::Calc, Math::BigInt::Scalar, Math::BigRat, Math::Complex,
3621 Math::Trig, Memoize, Memoize::AnyDBM_File, Memoize::Expire,
3622 Memoize::ExpireFile, Memoize::ExpireTest, Memoize::NDBM_File,
3623 Memoize::SDBM_File, Memoize::Storable, NDBM_File, NEXT, Net::Cmd,
3624 Net::Config, Net::Domain, Net::FTP, Net::NNTP, Net::Netrc, Net::POP3,
3625 Net::Ping, Net::SMTP, Net::Time, Net::hostent, Net::libnetFAQ, Net::netent,
3626 Net::protoent, Net::servent, O, ODBM_File, Opcode, POSIX, PerlIO,
3627 PerlIO::encoding, PerlIO::scalar, PerlIO::via, PerlIO::via::QuotedPrint,
3628 Pod::Checker, Pod::Find, Pod::Functions, Pod::Html, Pod::InputObjects,
3629 Pod::LaTeX, Pod::Man, Pod::ParseLink, Pod::ParseUtils, Pod::Parser,
3630 Pod::Perldoc::ToChecker, Pod::Perldoc::ToMan, Pod::Perldoc::ToNroff,
3631 Pod::Perldoc::ToPod, Pod::Perldoc::ToRtf, Pod::Perldoc::ToText,
3632 Pod::Perldoc::ToTk, Pod::Perldoc::ToXml, Pod::PlainText, Pod::Plainer,
3633 Pod::Select, Pod::Text, Pod::Text::Color, Pod::Text::Overstrike,
3634 Pod::Text::Termcap, Pod::Usage, SDBM_File, Safe, Scalar::Util,
3635 Search::Dict, SelectSaver, SelfLoader, Shell, Socket, Storable, Switch,
3636 Symbol, Sys::Hostname, Sys::Syslog, Term::ANSIColor, Term::Cap,
3637 Term::Complete, Term::ReadLine, Test, Test::Builder, Test::Harness,
3638 Test::Harness::Assert, Test::Harness::Iterator, Test::Harness::Straps,
3639 Test::More, Test::Simple, Test::Tutorial, Text::Abbrev, Text::Balanced,
3640 Text::ParseWords, Text::Soundex, Text::Tabs, Text::Wrap, Thread,
3641 Thread::Queue, Thread::Semaphore, Thread::Signal, Thread::Specific,
3642 Tie::Array, Tie::File, Tie::Handle, Tie::Hash, Tie::Memoize, Tie::RefHash,
3643 Tie::Scalar, Tie::SubstrHash, Time::HiRes, Time::Local, Time::gmtime,
3644 Time::localtime, Time::tm, UNIVERSAL, Unicode::Collate, Unicode::Normalize,
3645 Unicode::UCD, User::grent, User::pwent, Win32, XS::APItest, XS::Typemap,
3646 XSLoader
3647
3648 =item Extension Modules
3649
3650 =back
3651
3652 =item CPAN
3653
3654 =over 4
3655
3656 =item Africa
3657
3658 South Africa
3659
3660 =item Asia
3661
3662 China, Indonesia, Israel, Japan, Malaysia, Russian Federation, Saudi
3663 Arabia, Singapore, South Korea, Taiwan
3664
3665 =item Central America
3666
3667 Costa Rica
3668
3669 =item Europe
3670
3671 Austria, Belgium, Bulgaria, Croatia, Czech Republic, Denmark, Estonia,
3672 Finland, France, Germany, Greece, Hungary, Iceland, Ireland, Italy, Latvia,
3673 Lithuania, Netherlands, Norway, Poland, Portugal, Romania, Russia,
3674 Slovakia, Slovenia, Spain, Sweden, Switzerland, Turkey, Ukraine, United
3675 Kingdom
3676
3677 =item North America
3678
3679 Canada, Alberta, Manitoba, Nova Scotia, Ontario, Mexico, United States,
3680 Alabama, California, Colorado, Delaware, District of Columbia, Florida,
3681 Illinois, Indiana, Kentucky, Massachusetts, Michigan, Nevada, New Jersey,
3682 New York, North Carolina, Oklahoma, Oregon, Pennsylvania, Tennessee, Texas,
3683 Utah, Virginia, Washington, Wisconsin
3684
3685 =item Oceania
3686
3687 Australia, New Zealand, United States
3688
3689 =item South America
3690
3691 Argentina, Brazil, Chile
3692
3693 =item RSYNC Mirrors
3694
3695 =back
3696
3697 =item Modules: Creation, Use, and Abuse
3698
3699 =over 4
3700
3701 =item Guidelines for Module Creation
3702
3703 =item Guidelines for Converting Perl 4 Library Scripts into Modules
3704
3705 =item Guidelines for Reusing Application Code
3706
3707 =back
3708
3709 =item NOTE
3710
3711 =back
3712
3713 =head2 perlmodstyle - Perl module style guide
3714
3715 =over 4
3716
3717 =item INTRODUCTION
3718
3719 =item QUICK CHECKLIST
3720
3721 =over 4
3722
3723 =item Before you start
3724
3725 =item The API
3726
3727 =item Stability
3728
3729 =item Documentation
3730
3731 =item Release considerations
3732
3733 =back
3734
3735 =item BEFORE YOU START WRITING A MODULE
3736
3737 =over 4
3738
3739 =item Has it been done before?
3740
3741 =item Do one thing and do it well
3742
3743 =item What's in a name?
3744
3745 =back
3746
3747 =item DESIGNING AND WRITING YOUR MODULE
3748
3749 =over 4
3750
3751 =item To OO or not to OO?
3752
3753 =item Designing your API
3754
3755 Write simple routines to do simple things, Separate functionality from
3756 output, Provide sensible shortcuts and defaults, Naming conventions,
3757 Parameter passing
3758
3759 =item Strictness and warnings
3760
3761 =item Backwards compatibility
3762
3763 =item Error handling and messages
3764
3765 =back
3766
3767 =item DOCUMENTING YOUR MODULE
3768
3769 =over 4
3770
3771 =item POD
3772
3773 =item README, INSTALL, release notes, changelogs
3774
3775 perl Makefile.PL, make, make test, make install, perl Build.PL, perl Build,
3776 perl Build test, perl Build install
3777
3778 =back
3779
3780 =item RELEASE CONSIDERATIONS
3781
3782 =over 4
3783
3784 =item Version numbering
3785
3786 =item Pre-requisites
3787
3788 =item Testing
3789
3790 =item Packaging
3791
3792 =item Licensing
3793
3794 =back
3795
3796 =item COMMON PITFALLS
3797
3798 =over 4
3799
3800 =item Reinventing the wheel
3801
3802 =item Trying to do too much
3803
3804 =item Inappropriate documentation
3805
3806 =back
3807
3808 =item SEE ALSO
3809
3810 L<perlstyle>, L<perlnewmod>, L<perlpod>, L<podchecker>, Packaging Tools,
3811 Testing tools, http://pause.perl.org/, Any good book on software
3812 engineering
3813
3814 =item AUTHOR
3815
3816 =back
3817
3818 =head2 perlmodinstall - Installing CPAN Modules
3819
3820 =over 4
3821
3822 =item DESCRIPTION
3823
3824 =over 4
3825
3826 =item PREAMBLE
3827
3828 B<DECOMPRESS> the file, B<UNPACK> the file into a directory, B<BUILD> the
3829 module (sometimes unnecessary), B<INSTALL> the module
3830
3831 =back
3832
3833 =item PORTABILITY
3834
3835 =item HEY
3836
3837 =item AUTHOR
3838
3839 =item COPYRIGHT
3840
3841 =back
3842
3843 =head2 perlnewmod - preparing a new module for distribution
3844
3845 =over 4
3846
3847 =item DESCRIPTION
3848
3849 =over 4
3850
3851 =item Warning
3852
3853 =item What should I make into a module?
3854
3855 =item Step-by-step: Preparing the ground
3856
3857 Look around, Check it's new, Discuss the need, Choose a name, Check again
3858
3859 =item Step-by-step: Making the module
3860
3861 Start with F<h2xs>, Use L<strict|strict> and L<warnings|warnings>, Use
3862 L<Carp|Carp>, Use L<Exporter|Exporter> - wisely!, Use L<plain old
3863 documentation|perlpod>, Write tests, Write the README
3864
3865 =item Step-by-step: Distributing your module
3866
3867 Get a CPAN user ID, C<perl Makefile.PL; make test; make dist>, Upload the
3868 tarball, Announce to the modules list, Announce to clpa, Fix bugs!
3869
3870 =back
3871
3872 =item AUTHOR
3873
3874 =item SEE ALSO
3875
3876 =back
3877
3878 =head2 perlutil - utilities packaged with the Perl distribution
3879
3880 =over 4
3881
3882 =item DESCRIPTION
3883
3884 =over 4
3885
3886 =item DOCUMENTATION
3887
3888 L<perldoc|perldoc>, L<pod2man|pod2man> and L<pod2text|pod2text>,
3889 L<pod2html|pod2html> and L<pod2latex|pod2latex>, L<pod2usage|pod2usage>,
3890 L<podselect|podselect>, L<podchecker|podchecker>, L<splain|splain>,
3891 L<roffitall|roffitall>
3892
3893 =item CONVERTORS
3894
3895 L<a2p|a2p>, L<s2p|s2p>, L<find2perl|find2perl>
3896
3897 =item Administration
3898
3899 L<libnetcfg|libnetcfg>
3900
3901 =item Development
3902
3903 L<perlbug|perlbug>, L<h2ph|h2ph>, L<c2ph|c2ph> and L<pstruct|pstruct>,
3904 L<h2xs|h2xs>, L<dprofpp|dprofpp>, L<perlcc|perlcc>
3905
3906 =item SEE ALSO
3907
3908 =back
3909
3910 =back
3911
3912 =head2 perlcompile - Introduction to the Perl Compiler-Translator 
3913
3914 =over 4
3915
3916 =item DESCRIPTION
3917
3918 =over 4
3919
3920 =item Layout
3921
3922 B::Bytecode, B::C, B::CC, B::Lint, B::Deparse, B::Xref
3923
3924 =back
3925
3926 =item Using The Back Ends
3927
3928 =over 4
3929
3930 =item The Cross Referencing Back End
3931
3932 i, &, s, r
3933
3934 =item The Decompiling Back End
3935
3936 =item The Lint Back End
3937
3938 =item The Simple C Back End
3939
3940 =item The Bytecode Back End
3941
3942 =item The Optimized C Back End
3943
3944 =back
3945
3946 =item Module List for the Compiler Suite
3947
3948 B, O, B::Asmdata, B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC,
3949 B::Concise, B::Debug, B::Deparse, B::Disassembler, B::Lint, B::Showlex,
3950 B::Stackobj, B::Stash, B::Terse, B::Xref
3951
3952 =item KNOWN PROBLEMS
3953
3954 =item AUTHOR
3955
3956 =back
3957
3958 =head2 perlfilter - Source Filters
3959
3960 =over 4
3961
3962 =item DESCRIPTION
3963
3964 =item CONCEPTS
3965
3966 =item USING FILTERS
3967
3968 =item WRITING A SOURCE FILTER
3969
3970 =item WRITING A SOURCE FILTER IN C
3971
3972 B<Decryption Filters>
3973
3974 =item CREATING A SOURCE FILTER AS A SEPARATE EXECUTABLE
3975
3976 =item WRITING A SOURCE FILTER IN PERL
3977
3978 =item USING CONTEXT: THE DEBUG FILTER
3979
3980 =item CONCLUSION
3981
3982 =item THINGS TO LOOK OUT FOR
3983
3984 Some Filters Clobber the C<DATA> Handle
3985
3986 =item REQUIREMENTS
3987
3988 =item AUTHOR
3989
3990 =item Copyrights
3991
3992 =back
3993
3994 =head2 perlembed - how to embed perl in your C program
3995
3996 =over 4
3997
3998 =item DESCRIPTION
3999
4000 =over 4
4001
4002 =item PREAMBLE
4003
4004 B<Use C from Perl?>, B<Use a Unix program from Perl?>, B<Use Perl from
4005 Perl?>, B<Use C from C?>, B<Use Perl from C?>
4006
4007 =item ROADMAP
4008
4009 =item Compiling your C program
4010
4011 =item Adding a Perl interpreter to your C program
4012
4013 =item Calling a Perl subroutine from your C program
4014
4015 =item Evaluating a Perl statement from your C program
4016
4017 =item Performing Perl pattern matches and substitutions from your C program
4018
4019 =item Fiddling with the Perl stack from your C program
4020
4021 =item Maintaining a persistent interpreter
4022
4023 =item Execution of END blocks
4024
4025 =item Maintaining multiple interpreter instances
4026
4027 =item Using Perl modules, which themselves use C libraries, from your C
4028 program
4029
4030 =back
4031
4032 =item Embedding Perl under Win32
4033
4034 =item Hiding Perl_
4035
4036 =item MORAL
4037
4038 =item AUTHOR
4039
4040 =item COPYRIGHT
4041
4042 =back
4043
4044 =head2 perldebguts - Guts of Perl debugging 
4045
4046 =over 4
4047
4048 =item DESCRIPTION
4049
4050 =item Debugger Internals
4051
4052 =over 4
4053
4054 =item Writing Your Own Debugger
4055
4056 =back
4057
4058 =item Frame Listing Output Examples
4059
4060 =item Debugging regular expressions
4061
4062 =over 4
4063
4064 =item Compile-time output
4065
4066 C<anchored> I<STRING> C<at> I<POS>, C<floating> I<STRING> C<at>
4067 I<POS1..POS2>, C<matching floating/anchored>, C<minlen>, C<stclass>
4068 I<TYPE>, C<noscan>, C<isall>, C<GPOS>, C<plus>, C<implicit>, C<with eval>,
4069 C<anchored(TYPE)>
4070
4071 =item Types of nodes
4072
4073 =item Run-time output
4074
4075 =back
4076
4077 =item Debugging Perl memory usage
4078
4079 =over 4
4080
4081 =item Using C<$ENV{PERL_DEBUG_MSTATS}>
4082
4083 C<buckets SMALLEST(APPROX)..GREATEST(APPROX)>, Free/Used, C<Total sbrk():
4084 SBRKed/SBRKs:CONTINUOUS>, C<pad: 0>, C<heads: 2192>, C<chain: 0>, C<tail:
4085 6144>
4086
4087 =item Example of using B<-DL> switch
4088
4089 C<717>, C<002>, C<054>, C<602>, C<702>, C<704>
4090
4091 =item B<-DL> details
4092
4093 C<!!!>, C<!!>, C<!>
4094
4095 =item Limitations of B<-DL> statistics
4096
4097 =back
4098
4099 =item SEE ALSO
4100
4101 =back
4102
4103 =head2 perlxstut, perlXStut - Tutorial for writing XSUBs
4104
4105 =over 4
4106
4107 =item DESCRIPTION
4108
4109 =item SPECIAL NOTES
4110
4111 =over 4
4112
4113 =item make
4114
4115 =item Version caveat
4116
4117 =item Dynamic Loading versus Static Loading
4118
4119 =back
4120
4121 =item TUTORIAL
4122
4123 =over 4
4124
4125 =item EXAMPLE 1
4126
4127 =item EXAMPLE 2
4128
4129 =item What has gone on?
4130
4131 =item Writing good test scripts
4132
4133 =item EXAMPLE 3
4134
4135 =item What's new here?
4136
4137 =item Input and Output Parameters
4138
4139 =item The XSUBPP Program
4140
4141 =item The TYPEMAP file
4142
4143 =item Warning about Output Arguments
4144
4145 =item EXAMPLE 4
4146
4147 =item What has happened here?
4148
4149 =item Anatomy of .xs file
4150
4151 =item Getting the fat out of XSUBs
4152
4153 =item More about XSUB arguments
4154
4155 =item The Argument Stack
4156
4157 =item Extending your Extension
4158
4159 =item Documenting your Extension
4160
4161 =item Installing your Extension
4162
4163 =item EXAMPLE 5
4164
4165 =item New Things in this Example
4166
4167 =item EXAMPLE 6
4168
4169 =item New Things in this Example
4170
4171 =item EXAMPLE 7 (Coming Soon)
4172
4173 =item EXAMPLE 8 (Coming Soon)
4174
4175 =item EXAMPLE 9 Passing open files to XSes
4176
4177 =item Troubleshooting these Examples
4178
4179 =back
4180
4181 =item See also
4182
4183 =item Author
4184
4185 =over 4
4186
4187 =item Last Changed
4188
4189 =back
4190
4191 =back
4192
4193 =head2 perlxs - XS language reference manual
4194
4195 =over 4
4196
4197 =item DESCRIPTION
4198
4199 =over 4
4200
4201 =item Introduction
4202
4203 =item On The Road
4204
4205 =item The Anatomy of an XSUB
4206
4207 =item The Argument Stack
4208
4209 =item The RETVAL Variable
4210
4211 =item The MODULE Keyword
4212
4213 =item The PACKAGE Keyword
4214
4215 =item The PREFIX Keyword
4216
4217 =item The OUTPUT: Keyword
4218
4219 =item The NO_OUTPUT Keyword
4220
4221 =item The CODE: Keyword
4222
4223 =item The INIT: Keyword
4224
4225 =item The NO_INIT Keyword
4226
4227 =item Initializing Function Parameters
4228
4229 =item Default Parameter Values
4230
4231 =item The PREINIT: Keyword
4232
4233 =item The SCOPE: Keyword
4234
4235 =item The INPUT: Keyword
4236
4237 =item The IN/OUTLIST/IN_OUTLIST/OUT/IN_OUT Keywords
4238
4239 =item The C<length(NAME)> Keyword
4240
4241 =item Variable-length Parameter Lists
4242
4243 =item The C_ARGS: Keyword
4244
4245 =item The PPCODE: Keyword
4246
4247 =item Returning Undef And Empty Lists
4248
4249 =item The REQUIRE: Keyword
4250
4251 =item The CLEANUP: Keyword
4252
4253 =item The POSTCALL: Keyword
4254
4255 =item The BOOT: Keyword
4256
4257 =item The VERSIONCHECK: Keyword
4258
4259 =item The PROTOTYPES: Keyword
4260
4261 =item The PROTOTYPE: Keyword
4262
4263 =item The ALIAS: Keyword
4264
4265 =item The OVERLOAD: Keyword
4266
4267 =item The FALLBACK: Keyword
4268
4269 =item The INTERFACE: Keyword
4270
4271 =item The INTERFACE_MACRO: Keyword
4272
4273 =item The INCLUDE: Keyword
4274
4275 =item The CASE: Keyword
4276
4277 =item The & Unary Operator
4278
4279 =item Inserting POD, Comments and C Preprocessor Directives
4280
4281 =item Using XS With C++
4282
4283 =item Interface Strategy
4284
4285 =item Perl Objects And C Structures
4286
4287 =item The Typemap
4288
4289 =item Safely Storing Static Data in XS
4290
4291 MY_CXT_KEY, typedef my_cxt_t, START_MY_CXT, MY_CXT_INIT, dMY_CXT, MY_CXT
4292
4293 =back
4294
4295 =item EXAMPLES
4296
4297 =item XS VERSION
4298
4299 =item AUTHOR
4300
4301 =back
4302
4303 =head2 perlclib - Internal replacements for standard C library functions
4304
4305 =over 4
4306
4307 =item DESCRIPTION
4308
4309 =over 4
4310
4311 =item Conventions
4312
4313 C<t>, C<p>, C<n>, C<s>
4314
4315 =item File Operations
4316
4317 =item File Input and Output
4318
4319 =item File Positioning
4320
4321 =item Memory Management and String Handling
4322
4323 =item Character Class Tests
4324
4325 =item F<stdlib.h> functions
4326
4327 =item Miscellaneous functions
4328
4329 =back
4330
4331 =item SEE ALSO
4332
4333 =back
4334
4335 =head2 perlguts - Introduction to the Perl API
4336
4337 =over 4
4338
4339 =item DESCRIPTION
4340
4341 =item Variables
4342
4343 =over 4
4344
4345 =item Datatypes
4346
4347 =item What is an "IV"?
4348
4349 =item Working with SVs
4350
4351 =item Offsets
4352
4353 =item What's Really Stored in an SV?
4354
4355 =item Working with AVs
4356
4357 =item Working with HVs
4358
4359 =item Hash API Extensions
4360
4361 =item AVs, HVs and undefined values
4362
4363 =item References
4364
4365 =item Blessed References and Class Objects
4366
4367 =item Creating New Variables
4368
4369 GV_ADDMULTI, GV_ADDWARN
4370
4371 =item Reference Counts and Mortality
4372
4373 =item Stashes and Globs
4374
4375 =item Double-Typed SVs
4376
4377 =item Magic Variables
4378
4379 =item Assigning Magic
4380
4381 =item Magic Virtual Tables
4382
4383 =item Finding Magic
4384
4385 =item Understanding the Magic of Tied Hashes and Arrays
4386
4387 =item Localizing changes
4388
4389 C<SAVEINT(int i)>, C<SAVEIV(IV i)>, C<SAVEI32(I32 i)>, C<SAVELONG(long i)>,
4390 C<SAVESPTR(s)>, C<SAVEPPTR(p)>, C<SAVEFREESV(SV *sv)>, C<SAVEMORTALIZESV(SV
4391 *sv)>, C<SAVEFREEOP(OP *op)>, C<SAVEFREEPV(p)>, C<SAVECLEARSV(SV *sv)>,
4392 C<SAVEDELETE(HV *hv, char *key, I32 length)>,
4393 C<SAVEDESTRUCTOR(DESTRUCTORFUNC_NOCONTEXT_t f, void *p)>,
4394 C<SAVEDESTRUCTOR_X(DESTRUCTORFUNC_t f, void *p)>, C<SAVESTACK_POS()>, C<SV*
4395 save_scalar(GV *gv)>, C<AV* save_ary(GV *gv)>, C<HV* save_hash(GV *gv)>,
4396 C<void save_item(SV *item)>, C<void save_list(SV **sarg, I32 maxsarg)>,
4397 C<SV* save_svref(SV **sptr)>, C<void save_aptr(AV **aptr)>, C<void
4398 save_hptr(HV **hptr)>
4399
4400 =back
4401
4402 =item Subroutines
4403
4404 =over 4
4405
4406 =item XSUBs and the Argument Stack
4407
4408 =item Calling Perl Routines from within C Programs
4409
4410 =item Memory Allocation
4411
4412 =item PerlIO
4413
4414 =item Putting a C value on Perl stack
4415
4416 =item Scratchpads
4417
4418 =item Scratchpads and recursion
4419
4420 =back
4421
4422 =item Compiled code
4423
4424 =over 4
4425
4426 =item Code tree
4427
4428 =item Examining the tree
4429
4430 =item Compile pass 1: check routines
4431
4432 =item Compile pass 1a: constant folding
4433
4434 =item Compile pass 2: context propagation
4435
4436 =item Compile pass 3: peephole optimization
4437
4438 =item Pluggable runops
4439
4440 =back
4441
4442 =item Examining internal data structures with the C<dump> functions
4443
4444 =item How multiple interpreters and concurrency are supported
4445
4446 =over 4
4447
4448 =item Background and PERL_IMPLICIT_CONTEXT
4449
4450 =item So what happened to dTHR?
4451
4452 =item How do I use all this in extensions?
4453
4454 =item Should I do anything special if I call perl from multiple threads?
4455
4456 =item Future Plans and PERL_IMPLICIT_SYS
4457
4458 =back
4459
4460 =item Internal Functions
4461
4462 A, p, d, s, n, r, f, M, o, j, x
4463
4464 =over 4
4465
4466 =item Formatted Printing of IVs, UVs, and NVs
4467
4468 =item Pointer-To-Integer and Integer-To-Pointer
4469
4470 =item Source Documentation
4471
4472 =back
4473
4474 =item Unicode Support
4475
4476 =over 4
4477
4478 =item What B<is> Unicode, anyway?
4479
4480 =item How can I recognise a UTF8 string?
4481
4482 =item How does UTF8 represent Unicode characters?
4483
4484 =item How does Perl store UTF8 strings?
4485
4486 =item How do I convert a string to UTF8?
4487
4488 =item Is there anything else I need to know?
4489
4490 =back
4491
4492 =item Custom Operators
4493
4494 =item AUTHORS
4495
4496 =item SEE ALSO
4497
4498 =back
4499
4500 =head2 perlcall - Perl calling conventions from C
4501
4502 =over 4
4503
4504 =item DESCRIPTION
4505
4506 An Error Handler, An Event Driven Program
4507
4508 =item THE CALL_ FUNCTIONS
4509
4510 call_sv, call_pv, call_method, call_argv
4511
4512 =item FLAG VALUES
4513
4514 =over 4
4515
4516 =item  G_VOID
4517
4518 =item  G_SCALAR
4519
4520 =item G_ARRAY
4521
4522 =item G_DISCARD
4523
4524 =item G_NOARGS
4525
4526 =item G_EVAL
4527
4528 =item G_KEEPERR
4529
4530 =item Determining the Context
4531
4532 =back
4533
4534 =item KNOWN PROBLEMS
4535
4536 =item EXAMPLES
4537
4538 =over 4
4539
4540 =item No Parameters, Nothing returned
4541
4542 =item Passing Parameters
4543
4544 =item Returning a Scalar
4545
4546 =item Returning a list of values
4547
4548 =item Returning a list in a scalar context
4549
4550 =item Returning Data from Perl via the parameter list
4551
4552 =item Using G_EVAL
4553
4554 =item Using G_KEEPERR
4555
4556 =item Using call_sv
4557
4558 =item Using call_argv
4559
4560 =item Using call_method
4561
4562 =item Using GIMME_V
4563
4564 =item Using Perl to dispose of temporaries
4565
4566 =item Strategies for storing Callback Context Information
4567
4568 1. Ignore the problem - Allow only 1 callback, 2. Create a sequence of
4569 callbacks - hard wired limit, 3. Use a parameter to map to the Perl
4570 callback
4571
4572 =item Alternate Stack Manipulation
4573
4574 =item Creating and calling an anonymous subroutine in C
4575
4576 =back
4577
4578 =item SEE ALSO
4579
4580 =item AUTHOR
4581
4582 =item DATE
4583
4584 =back
4585
4586 =head2 perlapi - autogenerated documentation for the perl public API
4587
4588 =over 4
4589
4590 =item DESCRIPTION
4591
4592 =item "Gimme" Values
4593
4594 GIMME, GIMME_V, G_ARRAY, G_DISCARD, G_EVAL, G_NOARGS, G_SCALAR, G_VOID
4595
4596 =item Array Manipulation Functions
4597
4598 AvFILL, av_clear, av_delete, av_exists, av_extend, av_fetch, av_fill,
4599 av_len, av_make, av_pop, av_push, av_shift, av_store, av_undef, av_unshift,
4600 get_av, newAV, Nullav, sortsv
4601
4602 =item Callback Functions
4603
4604 call_argv, call_method, call_pv, call_sv, ENTER, eval_pv, eval_sv,
4605 FREETMPS, LEAVE, SAVETMPS
4606
4607 =item Character classes
4608
4609 isALNUM, isALPHA, isDIGIT, isLOWER, isSPACE, isUPPER, toLOWER, toUPPER
4610
4611 =item Cloning an interpreter
4612
4613 perl_clone
4614
4615 =item CV Manipulation Functions
4616
4617 CvSTASH, get_cv, Nullcv
4618
4619 =item Embedding Functions
4620
4621 cv_undef, load_module, nothreadhook, perl_alloc, perl_construct,
4622 perl_destruct, perl_free, perl_parse, perl_run, require_pv
4623
4624 =item Functions in file pp_pack.c
4625
4626 packlist, pack_cat, unpackstring, unpack_str
4627
4628 =item Global Variables
4629
4630 PL_modglobal, PL_na, PL_sv_no, PL_sv_undef, PL_sv_yes
4631
4632 =item GV Functions
4633
4634 GvSV, gv_fetchmeth, gv_fetchmethod, gv_fetchmethod_autoload,
4635 gv_fetchmeth_autoload, gv_stashpv, gv_stashsv
4636
4637 =item Handy Values
4638
4639 HEf_SVKEY, Nullch, Nullsv
4640
4641 =item Hash Manipulation Functions
4642
4643 get_hv, HeHASH, HeKEY, HeKLEN, HePV, HeSVKEY, HeSVKEY_force, HeSVKEY_set,
4644 HeVAL, HvNAME, hv_clear, hv_delete, hv_delete_ent, hv_exists,
4645 hv_exists_ent, hv_fetch, hv_fetch_ent, hv_iterinit, hv_iterkey,
4646 hv_iterkeysv, hv_iternext, hv_iternextsv, hv_iternext_flags, hv_iterval,
4647 hv_magic, hv_store, hv_store_ent, hv_undef, newHV, Nullhv
4648
4649 =item Magical Functions
4650
4651 mg_clear, mg_copy, mg_find, mg_free, mg_get, mg_length, mg_magical, mg_set,
4652 SvGETMAGIC, SvLOCK, SvSETMAGIC, SvSetMagicSV, SvSetMagicSV_nosteal,
4653 SvSetSV, SvSetSV_nosteal, SvSHARE
4654
4655 =item Memory Management
4656
4657 Copy, Move, New, Newc, NEWSV, Newz, Poison, Renew, Renewc, Safefree,
4658 savepv, savepvn, savesharedpv, StructCopy, Zero
4659
4660 =item Miscellaneous Functions
4661
4662 fbm_compile, fbm_instr, form, getcwd_sv, new_version, scan_version, strEQ,
4663 strGE, strGT, strLE, strLT, strNE, strnEQ, strnNE, sv_nolocking,
4664 sv_nosharing, sv_nounlocking, upg_version, vcmp, vnumify, vstringify
4665
4666 =item Numeric functions
4667
4668 grok_bin, grok_hex, grok_number, grok_numeric_radix, grok_oct, scan_bin,
4669 scan_hex, scan_oct
4670
4671 =item Optree Manipulation Functions
4672
4673 cv_const_sv, newCONSTSUB, newXS
4674
4675 =item Pad Data Structures
4676
4677 pad_sv
4678
4679 =item Stack Manipulation Macros
4680
4681 dMARK, dORIGMARK, dSP, EXTEND, MARK, ORIGMARK, POPi, POPl, POPn, POPp,
4682 POPpbytex, POPpx, POPs, PUSHi, PUSHMARK, PUSHn, PUSHp, PUSHs, PUSHu,
4683 PUTBACK, SP, SPAGAIN, XPUSHi, XPUSHn, XPUSHp, XPUSHs, XPUSHu, XSRETURN,
4684 XSRETURN_IV, XSRETURN_NO, XSRETURN_NV, XSRETURN_PV, XSRETURN_UNDEF,
4685 XSRETURN_YES, XST_mIV, XST_mNO, XST_mNV, XST_mPV, XST_mUNDEF, XST_mYES
4686
4687 =item SV Flags
4688
4689 svtype, SVt_IV, SVt_NV, SVt_PV, SVt_PVAV, SVt_PVCV, SVt_PVHV, SVt_PVMG
4690
4691 =item SV Manipulation Functions
4692
4693 get_sv, looks_like_number, newRV_inc, newRV_noinc, newSV, newSViv, newSVnv,
4694 newSVpv, newSVpvf, newSVpvn, newSVpvn_share, newSVrv, newSVsv, newSVuv,
4695 SvCUR, SvCUR_set, SvEND, SvGROW, SvIOK, SvIOKp, SvIOK_notUV, SvIOK_off,
4696 SvIOK_on, SvIOK_only, SvIOK_only_UV, SvIOK_UV, SvIsCOW,
4697 SvIsCOW_shared_hash, SvIV, SvIVx, SvIVX, SvLEN, SvNIOK, SvNIOKp,
4698 SvNIOK_off, SvNOK, SvNOKp, SvNOK_off, SvNOK_on, SvNOK_only, SvNV, SvNVX,
4699 SvNVx, SvOK, SvOOK, SvPOK, SvPOKp, SvPOK_off, SvPOK_on, SvPOK_only,
4700 SvPOK_only_UTF8, SvPV, SvPVbyte, SvPVbytex, SvPVbytex_force,
4701 SvPVbyte_force, SvPVbyte_nolen, SvPVutf8, SvPVutf8x, SvPVutf8x_force,
4702 SvPVutf8_force, SvPVutf8_nolen, SvPVx, SvPVX, SvPV_force, SvPV_force_nomg,
4703 SvPV_nolen, SvREFCNT, SvREFCNT_dec, SvREFCNT_inc, SvROK, SvROK_off,
4704 SvROK_on, SvRV, SvSTASH, SvTAINT, SvTAINTED, SvTAINTED_off, SvTAINTED_on,
4705 SvTRUE, SvTYPE, SvUNLOCK, SvUOK, SvUPGRADE, SvUTF8, SvUTF8_off, SvUTF8_on,
4706 SvUV, SvUVX, SvUVx, SvVOK, sv_2bool, sv_2cv, sv_2io, sv_2iv, sv_2mortal,
4707 sv_2nv, sv_2pvbyte, sv_2pvbyte_nolen, sv_2pvutf8, sv_2pvutf8_nolen,
4708 sv_2pv_flags, sv_2pv_nolen, sv_2uv, sv_backoff, sv_bless, sv_catpv,
4709 sv_catpvf, sv_catpvf_mg, sv_catpvn, sv_catpvn_flags, sv_catpvn_mg,
4710 sv_catpv_mg, sv_catsv, sv_catsv_flags, sv_catsv_mg, sv_chop, sv_clear,
4711 sv_cmp, sv_cmp_locale, sv_collxfrm, sv_copypv, sv_dec, sv_derived_from,
4712 sv_eq, sv_force_normal, sv_force_normal_flags, sv_free, sv_gets, sv_grow,
4713 sv_inc, sv_insert, sv_isa, sv_isobject, sv_iv, sv_len, sv_len_utf8,
4714 sv_magic, sv_magicext, sv_mortalcopy, sv_newmortal, sv_newref, sv_nv,
4715 sv_pos_b2u, sv_pos_u2b, sv_pv, sv_pvbyte, sv_pvbyten, sv_pvbyten_force,
4716 sv_pvn, sv_pvn_force, sv_pvn_force_flags, sv_pvutf8, sv_pvutf8n,
4717 sv_pvutf8n_force, sv_reftype, sv_replace, sv_report_used, sv_reset,
4718 sv_rvweaken, sv_setiv, sv_setiv_mg, sv_setnv, sv_setnv_mg, sv_setpv,
4719 sv_setpvf, sv_setpvf_mg, sv_setpviv, sv_setpviv_mg, sv_setpvn,
4720 sv_setpvn_mg, sv_setpv_mg, sv_setref_iv, sv_setref_nv, sv_setref_pv,
4721 sv_setref_pvn, sv_setref_uv, sv_setsv, sv_setsv_flags, sv_setsv_mg,
4722 sv_setuv, sv_setuv_mg, sv_taint, sv_tainted, sv_true, sv_unmagic, sv_unref,
4723 sv_unref_flags, sv_untaint, sv_upgrade, sv_usepvn, sv_usepvn_mg,
4724 sv_utf8_decode, sv_utf8_downgrade, sv_utf8_encode, sv_utf8_upgrade,
4725 sv_utf8_upgrade_flags, sv_uv, sv_vcatpvfn, sv_vsetpvfn
4726
4727 =item Unicode Support
4728
4729 bytes_from_utf8, bytes_to_utf8, ibcmp_utf8, is_utf8_char, is_utf8_string,
4730 pv_uni_display, sv_cat_decode, sv_recode_to_utf8, sv_uni_display,
4731 to_utf8_case, to_utf8_fold, to_utf8_lower, to_utf8_title, to_utf8_upper,
4732 utf8n_to_uvchr, utf8n_to_uvuni, utf8_distance, utf8_hop, utf8_length,
4733 utf8_to_bytes, utf8_to_uvchr, utf8_to_uvuni, uvchr_to_utf8,
4734 uvuni_to_utf8_flags
4735
4736 =item Variables created by C<xsubpp> and C<xsubpp> internal functions
4737
4738 ax, CLASS, dAX, dITEMS, dXSARGS, dXSI32, items, ix, newXSproto, RETVAL, ST,
4739 THIS, XS, XSRETURN_EMPTY, XS_VERSION, XS_VERSION_BOOTCHECK
4740
4741 =item Warning and Dieing
4742
4743 croak, warn
4744
4745 =item AUTHORS
4746
4747 =item SEE ALSO
4748
4749 =back
4750
4751 =head2 perlintern - autogenerated documentation of purely B<internal>
4752                  Perl functions
4753
4754 =over 4
4755
4756 =item DESCRIPTION
4757
4758 =item CV reference counts and CvOUTSIDE
4759
4760 CvWEAKOUTSIDE
4761
4762 =item Functions in file pad.h
4763
4764 CX_CURPAD_SAVE, CX_CURPAD_SV, PAD_BASE_SV, PAD_CLONE_VARS,
4765 PAD_COMPNAME_FLAGS, PAD_COMPNAME_GEN, PAD_COMPNAME_OURSTASH,
4766 PAD_COMPNAME_PV, PAD_COMPNAME_TYPE, PAD_DUP, PAD_RESTORE_LOCAL,
4767 PAD_SAVE_LOCAL, PAD_SAVE_SETNULLPAD, PAD_SETSV, PAD_SET_CUR, PAD_SV,
4768 PAD_SVl, SAVECLEARSV, SAVECOMPPAD, SAVEPADSV
4769
4770 =item Functions in file pp_ctl.c
4771
4772 find_runcv
4773
4774 =item Global Variables
4775
4776 PL_DBsingle, PL_DBsub, PL_DBtrace, PL_dowarn, PL_last_in_gv, PL_ofs_sv,
4777 PL_rs
4778
4779 =item GV Functions
4780
4781 is_gv_magical
4782
4783 =item IO Functions
4784
4785 start_glob
4786
4787 =item Pad Data Structures
4788
4789 CvPADLIST, cv_clone, cv_dump, do_dump_pad, intro_my, pad_add_anon,
4790 pad_add_name, pad_alloc, pad_block_start, pad_check_dup, pad_findlex,
4791 pad_findmy, pad_fixup_inner_anons, pad_free, pad_leavemy, pad_new,
4792 pad_push, pad_reset, pad_setsv, pad_swipe, pad_tidy, pad_undef
4793
4794 =item Stack Manipulation Macros
4795
4796 djSP, LVRET
4797
4798 =item SV Manipulation Functions
4799
4800 report_uninit, sv_add_arena, sv_clean_all, sv_clean_objs, sv_free_arenas
4801
4802 =item AUTHORS
4803
4804 =item SEE ALSO
4805
4806 =back
4807
4808 =head2 perliol - C API for Perl's implementation of IO in Layers.
4809
4810 =over 4
4811
4812 =item SYNOPSIS
4813
4814 =item DESCRIPTION
4815
4816 =over 4
4817
4818 =item History and Background
4819
4820 =item Layers vs Disciplines
4821
4822 =item Data Structures
4823
4824 =item Functions and Attributes
4825
4826 =item Per-instance Data
4827
4828 =item Layers in action.
4829
4830 =item Per-instance flag bits
4831
4832 PERLIO_F_EOF, PERLIO_F_CANWRITE,  PERLIO_F_CANREAD, PERLIO_F_ERROR,
4833 PERLIO_F_TRUNCATE, PERLIO_F_APPEND, PERLIO_F_CRLF, PERLIO_F_UTF8,
4834 PERLIO_F_UNBUF, PERLIO_F_WRBUF, PERLIO_F_RDBUF, PERLIO_F_LINEBUF,
4835 PERLIO_F_TEMP, PERLIO_F_OPEN, PERLIO_F_FASTGETS
4836
4837 =item Methods in Detail
4838
4839 fsize, name, size, kind, PERLIO_K_BUFFERED, PERLIO_K_RAW, PERLIO_K_CANCRLF,
4840 PERLIO_K_FASTGETS, PERLIO_K_MULTIARG, Pushed, Popped, Open, Binmode,
4841 Getarg, Fileno, Dup, Read, Write, Seek, Tell, Close, Flush, Fill, Eof,
4842 Error,  Clearerr, Setlinebuf, Get_base, Get_bufsiz, Get_ptr, Get_cnt,
4843 Set_ptrcnt
4844
4845 =item Implementing PerlIO Layers
4846
4847 C implementations, Perl implementations
4848
4849 =item Core Layers
4850
4851 "unix", "perlio", "stdio", "crlf", "mmap", "pending", "raw", "utf8"
4852
4853 =item Extension Layers
4854
4855 ":encoding", ":scalar", ":via"
4856
4857 =back
4858
4859 =item TODO
4860
4861 =back
4862
4863 =head2 perlapio - perl's IO abstraction interface.
4864
4865 =over 4
4866
4867 =item SYNOPSIS
4868
4869 =item DESCRIPTION
4870
4871 1. USE_STDIO, 2. USE_SFIO, 3. USE_PERLIO, B<PerlIO_stdin()>,
4872 B<PerlIO_stdout()>, B<PerlIO_stderr()>, B<PerlIO_open(path, mode)>,
4873 B<PerlIO_fdopen(fd,mode)>, B<PerlIO_reopen(path,mode,f)>,
4874 B<PerlIO_printf(f,fmt,...)>, B<PerlIO_vprintf(f,fmt,a)>,
4875 B<PerlIO_stdoutf(fmt,...)>, B<PerlIO_read(f,buf,count)>,
4876 B<PerlIO_write(f,buf,count)>, B<PerlIO_close(f)>, B<PerlIO_puts(f,s)>,
4877 B<PerlIO_putc(f,c)>, B<PerlIO_ungetc(f,c)>, B<PerlIO_getc(f)>,
4878 B<PerlIO_eof(f)>, B<PerlIO_error(f)>, B<PerlIO_fileno(f)>,
4879 B<PerlIO_clearerr(f)>, B<PerlIO_flush(f)>, B<PerlIO_seek(f,offset,whence)>,
4880 B<PerlIO_tell(f)>, B<PerlIO_getpos(f,p)>, B<PerlIO_setpos(f,p)>,
4881 B<PerlIO_rewind(f)>, B<PerlIO_tmpfile()>, B<PerlIO_setlinebuf(f)>
4882
4883 =over 4
4884
4885 =item Co-existence with stdio
4886
4887 B<PerlIO_importFILE(f,mode)>, B<PerlIO_exportFILE(f,mode)>,
4888 B<PerlIO_releaseFILE(p,f)>, B<PerlIO_findFILE(f)>
4889
4890 =item "Fast gets" Functions
4891
4892 B<PerlIO_fast_gets(f)>, B<PerlIO_has_cntptr(f)>, B<PerlIO_get_cnt(f)>,
4893 B<PerlIO_get_ptr(f)>, B<PerlIO_set_ptrcnt(f,p,c)>, B<PerlIO_canset_cnt(f)>,
4894 B<PerlIO_set_cnt(f,c)>, B<PerlIO_has_base(f)>, B<PerlIO_get_base(f)>,
4895 B<PerlIO_get_bufsiz(f)>
4896
4897 =item Other Functions
4898
4899 PerlIO_apply_layers(f,mode,layers), PerlIO_binmode(f,ptype,imode,layers),
4900 'E<lt>' read, 'E<gt>' write, '+' read/write, PerlIO_debug(fmt,...)
4901
4902 =back
4903
4904 =back
4905
4906 =head2 perlhack - How to hack at the Perl internals
4907
4908 =over 4
4909
4910 =item DESCRIPTION
4911
4912 Does concept match the general goals of Perl?, Where is the
4913 implementation?, Backwards compatibility, Could it be a module instead?, Is
4914 the feature generic enough?, Does it potentially introduce new bugs?, Does
4915 it preclude other desirable features?, Is the implementation robust?, Is
4916 the implementation generic enough to be portable?, Is the implementation
4917 tested?, Is there enough documentation?, Is there another way to do it?,
4918 Does it create too much work?, Patches speak louder than words
4919
4920 =over 4
4921
4922 =item Keeping in sync
4923
4924 rsync'ing the source tree, Using rsync over the LAN, Using pushing over the
4925 NFS, rsync'ing the patches
4926
4927 =item Why rsync the source tree
4928
4929 It's easier to rsync the source tree, It's more reliable
4930
4931 =item Why rsync the patches
4932
4933 It's easier to rsync the patches, It's a good reference, Finding a start
4934 point, Finding how to fix a bug, Finding the source of misbehaviour
4935
4936 =item Perlbug administration
4937
4938 =item Submitting patches
4939
4940 L<perlguts>, L<perlxstut> and L<perlxs>, L<perlapi>,
4941 F<Porting/pumpkin.pod>, The perl5-porters FAQ
4942
4943 =item Finding Your Way Around
4944
4945 Core modules, Tests, Documentation, Configure, Interpreter
4946
4947 =item Elements of the interpreter
4948
4949 Startup, Parsing, Optimization, Running
4950
4951 =item Internal Variable Types
4952
4953 =item Op Trees
4954
4955 =item Stacks
4956
4957 Argument stack, Mark stack, Save stack
4958
4959 =item Millions of Macros
4960
4961 =item The .i Targets
4962
4963 =item Poking at Perl
4964
4965 =item Using a source-level debugger
4966
4967 run [args], break function_name, break source.c:xxx, step, next, continue,
4968 finish, 'enter', print
4969
4970 =item gdb macro support
4971
4972 =item Dumping Perl Data Structures
4973
4974 =item Patching
4975
4976 =item Patching a core module
4977
4978 =item Adding a new function to the core
4979
4980 =item Writing a test
4981
4982 F<t/base/>, F<t/cmd/>, F<t/comp/>, F<t/io/>, F<t/lib/>, F<t/op/>,
4983 F<t/pod/>, F<t/run/>, F<t/uni/>, F<t/win32/>, F<t/x2p>, t/base t/comp,
4984 t/cmd t/run t/io t/op, t/lib ext lib
4985
4986 =item Special Make Test Targets
4987
4988 coretest, test.deparse, minitest, test.valgrind check.valgrind
4989 utest.valgrind ucheck.valgrind, test.third check.third utest.third
4990 ucheck.third, test.torture torturetest, utest ucheck test.utf8 check.utf8,
4991 test_harness
4992
4993 =item Running tests by hand
4994
4995 PERL_CORE=1, PERL_DESTRUCT_LEVEL=2, PERL, PERL_SKIP_TTY_TEST
4996
4997 =back
4998
4999 =item EXTERNAL TOOLS FOR DEBUGGING PERL
5000
5001 =over 4
5002
5003 =item Rational Software's Purify
5004
5005 =item Purify on Unix
5006
5007 -Accflags=-DPURIFY, -Doptimize='-g', -Uusemymalloc, -Dusemultiplicity
5008
5009 =item Purify on NT
5010
5011 DEFINES, USE_MULTI = define, #PERL_MALLOC = define, CFG = Debug
5012
5013 =item valgrind
5014
5015 =item Compaq's/Digital's/HP's Third Degree
5016
5017 =item PERL_DESTRUCT_LEVEL
5018
5019 =item Profiling
5020
5021 =item Gprof Profiling
5022
5023 -a, -b, -e routine, -f routine, -s, -z
5024
5025 =item GCC gcov Profiling
5026
5027 =item Pixie Profiling
5028
5029 -h, -l, -p[rocedures], -h[eavy], -i[nvocations], -l[ines], -testcoverage,
5030 -z[ero]
5031
5032 =item Miscellaneous tricks
5033
5034 =item CONCLUSION
5035
5036 I<The Road goes ever on and on, down from the door where it began.>
5037
5038 =back
5039
5040 =item AUTHOR
5041
5042 =back
5043
5044 =head2 perlbook - Perl book information
5045
5046 =over 4
5047
5048 =item DESCRIPTION
5049
5050 =back
5051
5052 =head2 perltodo - Perl TO-DO List
5053
5054 =over 4
5055
5056 =item DESCRIPTION
5057
5058 =item To do during 5.6.x
5059
5060 =over 4
5061
5062 =item Support for I/O disciplines
5063
5064 =item Autoload bytes.pm
5065
5066 =item Make "\u{XXXX}" et al work
5067
5068 =item Create a char *sv_pvprintify(sv, STRLEN *lenp, UV flags)
5069
5070 =item Overloadable regex assertions
5071
5072 =item Unicode
5073
5074 =item Work out exit/die semantics for threads
5075
5076 =item Better support for nonpreemptive threading systems like GNU pth
5077
5078 =item Typed lexicals for compiler
5079
5080 =item Compiler workarounds for Win32
5081
5082 =item AUTOLOADing in the compiler
5083
5084 =item Fixing comppadlist when compiling
5085
5086 =item Cleaning up exported namespace
5087
5088 =item Complete signal handling
5089
5090 =item Out-of-source builds
5091
5092 =item POSIX realtime support
5093
5094 =item UNIX98 support
5095
5096 =item IPv6 Support
5097
5098 =item Long double conversion
5099
5100 =item Locales
5101
5102 =item Arithmetic on non-Arabic numerals
5103
5104 =item POSIX Unicode character classes
5105
5106 =item Factoring out common suffices/prefices in regexps (trie optimization)
5107
5108 =item Security audit shipped utilities
5109
5110 =item Sort out the uid-setting mess
5111
5112 =item Custom opcodes
5113
5114 =item DLL Versioning
5115
5116 =item Introduce @( and @)
5117
5118 =item Floating point handling
5119
5120 =item IV/UV preservation
5121
5122 =item Replace pod2html with something using Pod::Parser
5123
5124 =item Automate module testing on CPAN
5125
5126 =item sendmsg and recvmsg
5127
5128 =item Rewrite perlre documentation
5129
5130 =item Convert example code to IO::Handle filehandles
5131
5132 =item Document Win32 choices
5133
5134 =item Check new modules
5135
5136 =item Make roffitall find pods and libs itself
5137
5138 =back
5139
5140 =item To do at some point
5141
5142 =over 4
5143
5144 =item Remove regular expression recursion
5145
5146 =item Memory leaks after failed eval
5147
5148 =item bitfields in pack
5149
5150 =item Cross compilation
5151
5152 =item Perl preprocessor / macros
5153
5154 =item Perl lexer in Perl
5155
5156 =item Using POSIX calls internally
5157
5158 =item -i rename file when changed
5159
5160 =item All ARGV input should act like E<lt>E<gt>
5161
5162 =item Support for rerunning debugger
5163
5164 =item Test Suite for the Debugger
5165
5166 =item my sub foo { }
5167
5168 =item One-pass global destruction
5169
5170 =item Rewrite regexp parser
5171
5172 =item Cache recently used regexps
5173
5174 =item Cross-compilation support
5175
5176 =item Bit-shifting bitvectors
5177
5178 =item debugger pragma
5179
5180 =item use less pragma
5181
5182 =item switch structures
5183
5184 =item Cache eval tree
5185
5186 =item rcatmaybe
5187
5188 =item Shrink opcode tables
5189
5190 =item Optimize away @_
5191
5192 =item Prototypes versus indirect objects
5193
5194 =item Install HTML
5195
5196 =item Prototype method calls
5197
5198 =item Return context prototype declarations
5199
5200 =item magic_setisa
5201
5202 =item Garbage collection
5203
5204 =item IO tutorial
5205
5206 =item Rewrite perldoc
5207
5208 =item Install .3p manpages
5209
5210 =item Unicode tutorial
5211
5212 =item Update POSIX.pm for 1003.1-2
5213
5214 =item Retargetable installation
5215
5216 =item POSIX emulation on non-POSIX systems
5217
5218 =item Rename Win32 headers
5219
5220 =item Finish off lvalue functions
5221
5222 =item Update sprintf documentation
5223
5224 =item Use fchown/fchmod internally
5225
5226 =item Make v-strings overloaded objects
5227
5228 =item Allow restricted hash assignment
5229
5230 =item Should overload be inheritable?
5231
5232 =item Taint rethink
5233
5234 =item Perform correctly when XSUBs call subroutines that exit via
5235 goto(LABEL) and friends
5236
5237 =back
5238
5239 =item Vague ideas
5240
5241 =over 4
5242
5243 =item ref() in list context
5244
5245 =item Make tr/// return histogram of characters in list context
5246
5247 =item Compile to real threaded code
5248
5249 =item Structured types
5250
5251 =item Modifiable $1 et al.
5252
5253 =item Procedural interfaces for IO::*, etc.
5254
5255 =item RPC modules
5256
5257 =item Attach/detach debugger from running program
5258
5259 =item GUI::Native
5260
5261 =item foreach(reverse ...)
5262
5263 =item Constant function cache
5264
5265 =item Approximate regular expression matching
5266
5267 =back
5268
5269 =item Ongoing
5270
5271 =over 4
5272
5273 =item Update guts documentation
5274
5275 =item Add more tests
5276
5277 =item Update auxiliary tools
5278
5279 =item Create debugging macros
5280
5281 =item truncate to the people
5282
5283 =item Unicode in Filenames
5284
5285 =back
5286
5287 =item Unicode in %ENV
5288
5289 =item Recently done things
5290
5291 =over 4
5292
5293 =item Alternative RE syntax module
5294
5295 =item Safe signal handling
5296
5297 =item Tie Modules
5298
5299 =item gettimeofday
5300
5301 =item setitimer and getimiter
5302
5303 =item Testing __DIE__ hook
5304
5305 =item CPP equivalent in Perl
5306
5307 =item Explicit switch statements
5308
5309 =item autocroak
5310
5311 =item UTF/EBCDIC
5312
5313 =item UTF Regexes
5314
5315 =item perlcc to produce executable
5316
5317 =item END blocks saved in compiled output
5318
5319 =item Secure temporary file module
5320
5321 =item Integrate Time::HiRes
5322
5323 =item Turn Cwd into XS
5324
5325 =item Mmap for input
5326
5327 =item Byte to/from UTF8 and UTF8 to/from local conversion
5328
5329 =item Add sockatmark support
5330
5331 =item Mailing list archives
5332
5333 =item Bug tracking
5334
5335 =item Integrate MacPerl
5336
5337 =item Web "nerve center" for Perl
5338
5339 =item Regular expression tutorial
5340
5341 =item Debugging Tutorial
5342
5343 =item Integrate new modules
5344
5345 =item Integrate profiler
5346
5347 =item Y2K error detection
5348
5349 =item Regular expression debugger
5350
5351 =item POD checker
5352
5353 =item "Dynamic" lexicals
5354
5355 =item Cache precompiled modules
5356
5357 =back
5358
5359 =item Deprecated Wishes
5360
5361 =over 4
5362
5363 =item Loop control on do{}
5364
5365 =item Lexically scoped typeglobs
5366
5367 =item format BOTTOM
5368
5369 =item report HANDLE
5370
5371 =item Generalised want()/caller())
5372
5373 =item Named prototypes
5374
5375 =item Built-in globbing
5376
5377 =item Regression tests for suidperl
5378
5379 =item Cached hash values
5380
5381 =item Add compression modules
5382
5383 =item Reorganise documentation into tutorials/references
5384
5385 =item Remove distinction between functions and operators
5386
5387 =item Make XS easier to use
5388
5389 =item Make embedding easier to use
5390
5391 =item man for perl
5392
5393 =item my $Package::variable
5394
5395 =item "or" tests defined, not truth
5396
5397 =item "class"-based lexicals
5398
5399 =item byteperl
5400
5401 =item Lazy evaluation / tail recursion removal
5402
5403 =item Make "use utf8" the default
5404
5405 =item Unicode collation and normalization
5406
5407 =item pack/unpack tutorial
5408
5409 =back
5410
5411 =back
5412
5413 =head2 perldoc - Look up Perl documentation in Pod format.
5414
5415 =over 4
5416
5417 =item SYNOPSIS
5418
5419 =item DESCRIPTION
5420
5421 =item OPTIONS
5422
5423 B<-h>, B<-v>, B<-t>, B<-u>, B<-m> I<module>, B<-l>, B<-F>, B<-f>
5424 I<perlfunc>, B<-q> I<perlfaq-search-regexp>, B<-T>, B<-d>
5425 I<destination-filename>, B<-o> I<output-formatname>, B<-M> I<module-name>,
5426 B<-w> I<option:value> or B<-w> I<option>, B<-X>,
5427 B<PageName|ModuleName|ProgramName>, B<-n> I<some-formatter>, B<-r>, B<-i>,
5428 B<-V>
5429
5430 =item SECURITY
5431
5432 =item ENVIRONMENT
5433
5434 =item AUTHOR
5435
5436 =back
5437
5438 =head2 perlhist - the Perl history records
5439
5440 =over 4
5441
5442 =item DESCRIPTION
5443
5444 =item INTRODUCTION
5445
5446 =item THE KEEPERS OF THE PUMPKIN
5447
5448 =over 4
5449
5450 =item PUMPKIN?
5451
5452 =back
5453
5454 =item THE RECORDS
5455
5456 =over 4
5457
5458 =item SELECTED RELEASE SIZES
5459
5460 =item SELECTED PATCH SIZES
5461
5462 =back
5463
5464 =item THE KEEPERS OF THE RECORDS
5465
5466 =back
5467
5468 =head2 perldelta - what is new for perl v5.9.0
5469
5470 =over 4
5471
5472 =item DESCRIPTION
5473
5474 =item Incompatible Changes
5475
5476 =over 4
5477
5478 =item The C<$*> variable has been removed
5479
5480 =back
5481
5482 =item Core Enhancements
5483
5484 =over 4
5485
5486 =item Tied Arrays with Negative Array Indices
5487
5488 =back
5489
5490 =item Modules and Pragmata
5491
5492 =item Utility Changes
5493
5494 =item New Documentation
5495
5496 =item Performance Enhancements
5497
5498 =item Installation and Configuration Improvements
5499
5500 =item Selected Bug Fixes
5501
5502 =item New or Changed Diagnostics
5503
5504 =item Changed Internals
5505
5506 =item New Tests
5507
5508 =item Known Problems
5509
5510 =item Platform Specific Problems
5511
5512 =item Reporting Bugs
5513
5514 =item SEE ALSO
5515
5516 =back
5517
5518 =head2 perl58delta, perldelta - what is new for perl v5.8.0
5519
5520 =over 4
5521
5522 =item DESCRIPTION
5523
5524 =item Highlights In 5.8.0
5525
5526 =item Incompatible Changes
5527
5528 =over 4
5529
5530 =item Binary Incompatibility
5531
5532 =item 64-bit platforms and malloc
5533
5534 =item AIX Dynaloading
5535
5536 =item Attributes for C<my> variables now handled at run-time
5537
5538 =item Socket Extension Dynamic in VMS
5539
5540 =item IEEE-format Floating Point Default on OpenVMS Alpha
5541
5542 =item New Unicode Semantics (no more C<use utf8>, almost)
5543
5544 =item New Unicode Properties
5545
5546 =item REF(...) Instead Of SCALAR(...)
5547
5548 =item pack/unpack D/F recycled
5549
5550 =item glob() now returns filenames in alphabetical order
5551
5552 =item Deprecations
5553
5554 =back
5555
5556 =item Core Enhancements
5557
5558 =over 4
5559
5560 =item Unicode Overhaul
5561
5562 =item PerlIO is Now The Default
5563
5564 =item ithreads
5565
5566 =item Restricted Hashes
5567
5568 =item Safe Signals
5569
5570 =item Understanding of Numbers
5571
5572 =item Arrays now always interpolate into double-quoted strings [561]
5573
5574 =item Miscellaneous Changes
5575
5576 =back
5577
5578 =item Modules and Pragmata
5579
5580 =over 4
5581
5582 =item New Modules and Pragmata
5583
5584 =item Updated And Improved Modules and Pragmata
5585
5586 =back
5587
5588 =item Utility Changes
5589
5590 =item New Documentation
5591
5592 =item Performance Enhancements
5593
5594 =item Installation and Configuration Improvements
5595
5596 =over 4
5597
5598 =item Generic Improvements
5599
5600 =item New Or Improved Platforms
5601
5602 =back
5603
5604 =item Selected Bug Fixes
5605
5606 =over 4
5607
5608 =item Platform Specific Changes and Fixes
5609
5610 =back
5611
5612 =item New or Changed Diagnostics
5613
5614 =item Changed Internals
5615
5616 =item Security Vulnerability Closed [561]
5617
5618 =item New Tests
5619
5620 =item Known Problems
5621
5622 =over 4
5623
5624 =item The Compiler Suite Is Still Very Experimental
5625
5626 =item Localising Tied Arrays and Hashes Is Broken
5627
5628 =item Building Extensions Can Fail Because Of Largefiles
5629
5630 =item Modifying $_ Inside for(..)
5631
5632 =item mod_perl 1.26 Doesn't Build With Threaded Perl
5633
5634 =item lib/ftmp-security tests warn 'system possibly insecure'
5635
5636 =item libwww-perl (LWP) fails base/date #51
5637
5638 =item PDL failing some tests
5639
5640 =item Perl_get_sv
5641
5642 =item Self-tying Problems
5643
5644 =item ext/threads/t/libc
5645
5646 =item Failure of Thread (5.005-style) tests
5647
5648 =item Timing problems
5649
5650 =item Tied/Magical Array/Hash Elements Do Not Autovivify
5651
5652 =item Unicode in package/class and subroutine names does not work
5653
5654 =back
5655
5656 =item Platform Specific Problems
5657
5658 =over 4
5659
5660 =item AIX
5661
5662 =item Alpha systems with old gccs fail several tests
5663
5664 =item AmigaOS
5665
5666 =item BeOS
5667
5668 =item Cygwin "unable to remap"
5669
5670 =item Cygwin ndbm tests fail on FAT
5671
5672 =item DJGPP Failures
5673
5674 =item FreeBSD built with ithreads coredumps reading large directories
5675
5676 =item FreeBSD Failing locale Test 117 For ISO 8859-15 Locales
5677
5678 =item IRIX fails ext/List/Util/t/shuffle.t or Digest::MD5
5679
5680 =item HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5681
5682 =item Linux with glibc 2.2.5 fails t/op/int subtest #6 with -Duse64bitint
5683
5684 =item Linux With Sfio Fails op/misc Test 48
5685
5686 =item Mac OS X
5687
5688 =item Mac OS X dyld undefined symbols
5689
5690 =item OS/2 Test Failures
5691
5692 =item op/sprintf tests 91, 129, and 130
5693
5694 =item SCO
5695
5696 =item Solaris 2.5
5697
5698 =item Solaris x86 Fails Tests With -Duse64bitint
5699
5700 =item SUPER-UX (NEC SX)
5701
5702 =item Term::ReadKey not working on Win32
5703
5704 =item UNICOS/mk
5705
5706 =item UTS
5707
5708 =item VOS (Stratus)
5709
5710 =item VMS
5711
5712 =item Win32
5713
5714 =item XML::Parser not working
5715
5716 =item z/OS (OS/390)
5717
5718 =item Unicode Support on EBCDIC Still Spotty
5719
5720 =item Seen In Perl 5.7 But Gone Now
5721
5722 =back
5723
5724 =item Reporting Bugs
5725
5726 =item SEE ALSO
5727
5728 =item HISTORY
5729
5730 =back
5731
5732 =head2 perl573delta - what's new for perl v5.7.3
5733
5734 =over 4
5735
5736 =item DESCRIPTION
5737
5738 =item Changes
5739
5740 =item Reporting Bugs
5741
5742 =item SEE ALSO
5743
5744 =item HISTORY
5745
5746 =back
5747
5748 =head2 perl572delta - what's new for perl v5.7.2
5749
5750 =over 4
5751
5752 =item DESCRIPTION
5753
5754 =item Security Vulnerability Closed
5755
5756 =item Incompatible Changes
5757
5758 =over 4
5759
5760 =item 64-bit platforms and malloc
5761
5762 =item AIX Dynaloading
5763
5764 =item Socket Extension Dynamic in VMS
5765
5766 =item Different Definition of the Unicode Character Classes \p{In...}
5767
5768 =item Deprecations
5769
5770 =back
5771
5772 =item Core Enhancements
5773
5774 =item Modules and Pragmata
5775
5776 =over 4
5777
5778 =item New Modules and Distributions
5779
5780 =item Updated And Improved Modules and Pragmata
5781
5782 =back
5783
5784 =item Utility Changes
5785
5786 =item New Documentation
5787
5788 =item Installation and Configuration Improvements
5789
5790 =over 4
5791
5792 =item New Or Improved Platforms
5793
5794 =item Generic Improvements
5795
5796 =back
5797
5798 =item Selected Bug Fixes
5799
5800 =over 4
5801
5802 =item Platform Specific Changes and Fixes
5803
5804 =back
5805
5806 =item New or Changed Diagnostics
5807
5808 =item Source Code Enhancements
5809
5810 =over 4
5811
5812 =item MAGIC constants
5813
5814 =item Better commented code
5815
5816 =item Regex pre-/post-compilation items matched up
5817
5818 =item gcc -Wall
5819
5820 =back
5821
5822 =item New Tests
5823
5824 =item Known Problems
5825
5826 =over 4
5827
5828 =item AIX
5829
5830 =item Amiga Perl Invoking Mystery
5831
5832 =item lib/ftmp-security tests warn 'system possibly insecure'
5833
5834 =item Cygwin intermittent failures of lib/Memoize/t/expire_file 11 and 12
5835
5836 =item HP-UX lib/io_multihomed Fails When LP64-Configured
5837
5838 =item  HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5839
5840 =item Linux With Sfio Fails op/misc Test 48
5841
5842 =item OS/390
5843
5844 =item op/sprintf tests 129 and 130
5845
5846 =item  Failure of Thread tests
5847
5848 =item UNICOS
5849
5850 =item UTS
5851
5852 =item VMS
5853
5854 =item Win32
5855
5856 =item Localising a Tied Variable Leaks Memory
5857
5858 =item Self-tying of Arrays and Hashes Is Forbidden
5859
5860 =item Variable Attributes are not Currently Usable for Tieing
5861
5862 =item Building Extensions Can Fail Because Of Largefiles
5863
5864 =item The Compiler Suite Is Still Experimental
5865
5866 =item The Long Double Support is Still Experimental
5867
5868 =back
5869
5870 =item Reporting Bugs
5871
5872 =item SEE ALSO
5873
5874 =item HISTORY
5875
5876 =back
5877
5878 =head2 perl571delta - what's new for perl v5.7.1
5879
5880 =over 4
5881
5882 =item DESCRIPTION
5883
5884 =item Security Vulnerability Closed
5885
5886 =item Incompatible Changes
5887
5888 =item Core Enhancements
5889
5890 =over 4
5891
5892 =item AUTOLOAD Is Now Lvaluable
5893
5894 =item PerlIO is Now The Default
5895
5896 =item Signals Are Now Safe
5897
5898 =back
5899
5900 =item Modules and Pragmata
5901
5902 =over 4
5903
5904 =item New Modules
5905
5906 =item Updated And Improved Modules and Pragmata
5907
5908 =back
5909
5910 =item Performance Enhancements
5911
5912 =item Utility Changes
5913
5914 =item New Documentation
5915
5916 =over 4
5917
5918 =item perlclib
5919
5920 =item perliol
5921
5922 =item README.aix
5923
5924 =item README.bs2000
5925
5926 =item README.macos
5927
5928 =item README.mpeix
5929
5930 =item README.solaris
5931
5932 =item README.vos
5933
5934 =item Porting/repository.pod
5935
5936 =back
5937
5938 =item Installation and Configuration Improvements
5939
5940 =over 4
5941
5942 =item New Or Improved Platforms
5943
5944 =item Generic Improvements
5945
5946 d_cmsghdr, d_fcntl_can_lock, d_fsync, d_getitimer, d_getpagsz, d_msghdr_s,
5947 need_va_copy, d_readv, d_recvmsg, d_sendmsg, sig_size, d_sockatmark,
5948 d_strtoq, d_u32align, d_ualarm, d_usleep
5949
5950 =back
5951
5952 =item Selected Bug Fixes
5953
5954 =over 4
5955
5956 =item Platform Specific Changes and Fixes
5957
5958 =back
5959
5960 =item New or Changed Diagnostics
5961
5962 =item Changed Internals
5963
5964 =item New Tests
5965
5966 =item Known Problems
5967
5968 =over 4
5969
5970 =item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
5971
5972 =item lib/ftmp-security tests warn 'system possibly insecure'
5973
5974 =item lib/io_multihomed Fails In LP64-Configured HP-UX
5975
5976 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5977
5978 =item lib/b test 19
5979
5980 =item Linux With Sfio Fails op/misc Test 48
5981
5982 =item sigaction test 13 in VMS
5983
5984 =item sprintf tests 129 and 130
5985
5986 =item  Failure of Thread tests
5987
5988 =item Localising a Tied Variable Leaks Memory
5989
5990 =item Self-tying of Arrays and Hashes Is Forbidden
5991
5992 =item Building Extensions Can Fail Because Of Largefiles
5993
5994 =item The Compiler Suite Is Still Experimental
5995
5996 =back
5997
5998 =item Reporting Bugs
5999
6000 =item SEE ALSO
6001
6002 =item HISTORY
6003
6004 =back
6005
6006 =head2 perl570delta - what's new for perl v5.7.0
6007
6008 =over 4
6009
6010 =item DESCRIPTION
6011
6012 =item Security Vulnerability Closed
6013
6014 =item Incompatible Changes
6015
6016 =item Core Enhancements
6017
6018 =item Modules and Pragmata
6019
6020 =over 4
6021
6022 =item New Modules
6023
6024 =item Updated And Improved Modules and Pragmata
6025
6026 =back
6027
6028 =item Utility Changes
6029
6030 =item New Documentation
6031
6032 =item Performance Enhancements
6033
6034 =item Installation and Configuration Improvements
6035
6036 =over 4
6037
6038 =item Generic Improvements
6039
6040 =back
6041
6042 =item Selected Bug Fixes
6043
6044 =over 4
6045
6046 =item Platform Specific Changes and Fixes
6047
6048 =back
6049
6050 =item New or Changed Diagnostics
6051
6052 =item Changed Internals
6053
6054 =item Known Problems
6055
6056 =over 4
6057
6058 =item Unicode Support Still Far From Perfect
6059
6060 =item EBCDIC Still A Lost Platform
6061
6062 =item Building Extensions Can Fail Because Of Largefiles
6063
6064 =item ftmp-security tests warn 'system possibly insecure'
6065
6066 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
6067
6068 =item Long Doubles Still Don't Work In Solaris
6069
6070 =item Linux With Sfio Fails op/misc Test 48
6071
6072 =item Storable tests fail in some platforms
6073
6074 =item Threads Are Still Experimental
6075
6076 =item The Compiler Suite Is Still Experimental
6077
6078 =back
6079
6080 =item Reporting Bugs
6081
6082 =item SEE ALSO
6083
6084 =item HISTORY
6085
6086 =back
6087
6088 =head2 perl561delta - what's new for perl v5.6.x
6089
6090 =over 4
6091
6092 =item DESCRIPTION
6093
6094 =item Summary of changes between 5.6.0 and 5.6.1
6095
6096 =over 4
6097
6098 =item Security Issues
6099
6100 =item Core bug fixes
6101
6102 C<UNIVERSAL::isa()>, Memory leaks, Numeric conversions, qw(a\\b), caller(),
6103 Bugs in regular expressions, "slurp" mode, Autovivification of symbolic
6104 references to special variables, Lexical warnings, Spurious warnings and
6105 errors, glob(), Tainting, sort(), #line directives, Subroutine prototypes,
6106 map(), Debugger, PERL5OPT, chop(), Unicode support, 64-bit support,
6107 Compiler, Lvalue subroutines, IO::Socket, File::Find, xsubpp, C<no
6108 Module;>, Tests
6109
6110 =item Core features
6111
6112 =item Configuration issues
6113
6114 =item Documentation
6115
6116 =item Bundled modules
6117
6118 B::Concise, File::Temp, Pod::LaTeX, Pod::Text::Overstrike, CGI, CPAN,
6119 Class::Struct, DB_File, Devel::Peek, File::Find, Getopt::Long, IO::Poll,
6120 IPC::Open3, Math::BigFloat, Math::Complex, Net::Ping, Opcode, Pod::Parser,
6121 Pod::Text, SDBM_File, Sys::Syslog, Tie::RefHash, Tie::SubstrHash
6122
6123 =item Platform-specific improvements
6124
6125 NCR MP-RAS, NonStop-UX
6126
6127 =back
6128
6129 =item Core Enhancements
6130
6131 =over 4
6132
6133 =item Interpreter cloning, threads, and concurrency
6134
6135 =item Lexically scoped warning categories
6136
6137 =item Unicode and UTF-8 support
6138
6139 =item Support for interpolating named characters
6140
6141 =item "our" declarations
6142
6143 =item Support for strings represented as a vector of ordinals
6144
6145 =item Improved Perl version numbering system
6146
6147 =item New syntax for declaring subroutine attributes
6148
6149 =item File and directory handles can be autovivified
6150
6151 =item open() with more than two arguments
6152
6153 =item 64-bit support
6154
6155 =item Large file support
6156
6157 =item Long doubles
6158
6159 =item "more bits"
6160
6161 =item Enhanced support for sort() subroutines
6162
6163 =item C<sort $coderef @foo> allowed
6164
6165 =item File globbing implemented internally
6166
6167 =item Support for CHECK blocks
6168
6169 =item POSIX character class syntax [: :] supported
6170
6171 =item Better pseudo-random number generator
6172
6173 =item Improved C<qw//> operator
6174
6175 =item Better worst-case behavior of hashes
6176
6177 =item pack() format 'Z' supported
6178
6179 =item pack() format modifier '!' supported
6180
6181 =item pack() and unpack() support counted strings
6182
6183 =item Comments in pack() templates
6184
6185 =item Weak references
6186
6187 =item Binary numbers supported
6188
6189 =item Lvalue subroutines
6190
6191 =item Some arrows may be omitted in calls through references
6192
6193 =item Boolean assignment operators are legal lvalues
6194
6195 =item exists() is supported on subroutine names
6196
6197 =item exists() and delete() are supported on array elements
6198
6199 =item Pseudo-hashes work better
6200
6201 =item Automatic flushing of output buffers
6202
6203 =item Better diagnostics on meaningless filehandle operations
6204
6205 =item Where possible, buffered data discarded from duped input filehandle
6206
6207 =item eof() has the same old magic as <>
6208
6209 =item binmode() can be used to set :crlf and :raw modes
6210
6211 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
6212
6213 =item system(), backticks and pipe open now reflect exec() failure
6214
6215 =item Improved diagnostics
6216
6217 =item Diagnostics follow STDERR
6218
6219 =item More consistent close-on-exec behavior
6220
6221 =item syswrite() ease-of-use
6222
6223 =item Better syntax checks on parenthesized unary operators
6224
6225 =item Bit operators support full native integer width
6226
6227 =item Improved security features
6228
6229 =item More functional bareword prototype (*)
6230
6231 =item C<require> and C<do> may be overridden
6232
6233 =item $^X variables may now have names longer than one character
6234
6235 =item New variable $^C reflects C<-c> switch
6236
6237 =item New variable $^V contains Perl version as a string
6238
6239 =item Optional Y2K warnings
6240
6241 =item Arrays now always interpolate into double-quoted strings
6242
6243 =back
6244
6245 =item Modules and Pragmata
6246
6247 =over 4
6248
6249 =item Modules
6250
6251 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6252 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6253 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6254 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6255 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6256 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6257 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6258 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6259
6260 =item Pragmata
6261
6262 =back
6263
6264 =item Utility Changes
6265
6266 =over 4
6267
6268 =item dprofpp
6269
6270 =item find2perl
6271
6272 =item h2xs
6273
6274 =item perlcc
6275
6276 =item perldoc
6277
6278 =item The Perl Debugger
6279
6280 =back
6281
6282 =item Improved Documentation
6283
6284 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6285 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6286 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6287 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6288
6289 =item Performance enhancements
6290
6291 =over 4
6292
6293 =item Simple sort() using { $a <=> $b } and the like are optimized
6294
6295 =item Optimized assignments to lexical variables
6296
6297 =item Faster subroutine calls
6298
6299 =item delete(), each(), values() and hash iteration are faster
6300
6301 =back
6302
6303 =item Installation and Configuration Improvements
6304
6305 =over 4
6306
6307 =item -Dusethreads means something different
6308
6309 =item New Configure flags
6310
6311 =item Threadedness and 64-bitness now more daring
6312
6313 =item Long Doubles
6314
6315 =item -Dusemorebits
6316
6317 =item -Duselargefiles
6318
6319 =item installusrbinperl
6320
6321 =item SOCKS support
6322
6323 =item C<-A> flag
6324
6325 =item Enhanced Installation Directories
6326
6327 =item gcc automatically tried if 'cc' does not seem to be working
6328
6329 =back
6330
6331 =item Platform specific changes
6332
6333 =over 4
6334
6335 =item Supported platforms
6336
6337 =item DOS
6338
6339 =item OS390 (OpenEdition MVS)
6340
6341 =item VMS
6342
6343 =item Win32
6344
6345 =back
6346
6347 =item Significant bug fixes
6348
6349 =over 4
6350
6351 =item <HANDLE> on empty files
6352
6353 =item C<eval '...'> improvements
6354
6355 =item All compilation errors are true errors
6356
6357 =item Implicitly closed filehandles are safer
6358
6359 =item Behavior of list slices is more consistent
6360
6361 =item C<(\$)> prototype and C<$foo{a}>
6362
6363 =item C<goto &sub> and AUTOLOAD
6364
6365 =item C<-bareword> allowed under C<use integer>
6366
6367 =item Failures in DESTROY()
6368
6369 =item Locale bugs fixed
6370
6371 =item Memory leaks
6372
6373 =item Spurious subroutine stubs after failed subroutine calls
6374
6375 =item Taint failures under C<-U>
6376
6377 =item END blocks and the C<-c> switch
6378
6379 =item Potential to leak DATA filehandles
6380
6381 =back
6382
6383 =item New or Changed Diagnostics
6384
6385 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6386 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6387 / cannot take a count, / must be followed by a, A or Z, / must be followed
6388 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6389 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6390 passed through, /%s/ should probably be written as "%s", %s() called too
6391 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6392 argument is not a HASH or ARRAY element or slice, %s argument is not a
6393 subroutine name, %s package attribute may clash with future reserved word:
6394 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6395 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6396 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6397 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6398 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6399 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6400 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6401 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6402 weaken a nonreference, Character class [:%s:] unknown, Character class
6403 syntax [%s] belongs inside character classes, Constant is not %s reference,
6404 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6405 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6406 "local" instead of "our"?), Document contains no data, entering effective
6407 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6408 output, flock() on closed filehandle %s, Global symbol "%s" requires
6409 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6410 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6411 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6412 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6413 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6414 separator character %s in attribute list, Invalid separator character %s in
6415 subroutine attribute list, leaving effective %s failed, Lvalue subs
6416 returning %s not implemented yet, Method %s not permitted, Missing
6417 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6418 No %s specified for -%c, No package name allowed for variable %s in "our",
6419 No space allowed after -%c, no UTC offset information; assuming local time
6420 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6421 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6422 around "%s" list, Possible unintended interpolation of %s in string,
6423 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6424 instead, Premature end of script headers, Repeat count in pack overflows,
6425 Repeat count in unpack overflows, realloc() of freed memory ignored,
6426 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6427 zero-length expression, switching effective %s is not implemented, This
6428 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6429 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6430 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6431 escape \\%c passed through, Unterminated attribute parameter in attribute
6432 list, Unterminated attribute list, Unterminated attribute parameter in
6433 subroutine attribute list, Unterminated subroutine attribute list, Value of
6434 CLI symbol "%s" too long, Version number must be a constant number
6435
6436 =item New tests
6437
6438 =item Incompatible Changes
6439
6440 =over 4
6441
6442 =item Perl Source Incompatibilities
6443
6444 CHECK is a new keyword, Treatment of list slices of undef has changed,
6445 Format of $English::PERL_VERSION is different, Literals of the form
6446 C<1.2.3> parse differently, Possibly changed pseudo-random number
6447 generator, Hashing function for hash keys has changed, C<undef> fails on
6448 read only values, Close-on-exec bit may be set on pipe and socket handles,
6449 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6450 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6451 Text of some diagnostic output has changed, C<%@> has been removed,
6452 Parenthesized not() behaves like a list operator, Semantics of bareword
6453 prototype C<(*)> have changed, Semantics of bit operators may have changed
6454 on 64-bit platforms, More builtins taint their results
6455
6456 =item C Source Incompatibilities
6457
6458 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6459
6460 =item Compatible C Source API Changes
6461
6462 C<PATCHLEVEL> is now C<PERL_VERSION>
6463
6464 =item Binary Incompatibilities
6465
6466 =back
6467
6468 =item Known Problems
6469
6470 =over 4
6471
6472 =item Localizing a tied hash element may leak memory
6473
6474 =item Known test failures
6475
6476 =item EBCDIC platforms not fully supported
6477
6478 =item UNICOS/mk CC failures during Configure run
6479
6480 =item Arrow operator and arrays
6481
6482 =item Experimental features
6483
6484 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6485 pseudo-hash data type, The Compiler suite, Internal implementation of file
6486 globbing, The DB module, The regular expression code constructs:
6487
6488 =back
6489
6490 =item Obsolete Diagnostics
6491
6492 Character class syntax [: :] is reserved for future extensions, Ill-formed
6493 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6494 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6495 to mean "${$}<digit>" is deprecated
6496
6497 =item Reporting Bugs
6498
6499 =item SEE ALSO
6500
6501 =item HISTORY
6502
6503 =back
6504
6505 =head2 perl56delta - what's new for perl v5.6.0
6506
6507 =over 4
6508
6509 =item DESCRIPTION
6510
6511 =item Core Enhancements
6512
6513 =over 4
6514
6515 =item Interpreter cloning, threads, and concurrency
6516
6517 =item Lexically scoped warning categories
6518
6519 =item Unicode and UTF-8 support
6520
6521 =item Support for interpolating named characters
6522
6523 =item "our" declarations
6524
6525 =item Support for strings represented as a vector of ordinals
6526
6527 =item Improved Perl version numbering system
6528
6529 =item New syntax for declaring subroutine attributes
6530
6531 =item File and directory handles can be autovivified
6532
6533 =item open() with more than two arguments
6534
6535 =item 64-bit support
6536
6537 =item Large file support
6538
6539 =item Long doubles
6540
6541 =item "more bits"
6542
6543 =item Enhanced support for sort() subroutines
6544
6545 =item C<sort $coderef @foo> allowed
6546
6547 =item File globbing implemented internally
6548
6549 =item Support for CHECK blocks
6550
6551 =item POSIX character class syntax [: :] supported
6552
6553 =item Better pseudo-random number generator
6554
6555 =item Improved C<qw//> operator
6556
6557 =item Better worst-case behavior of hashes
6558
6559 =item pack() format 'Z' supported
6560
6561 =item pack() format modifier '!' supported
6562
6563 =item pack() and unpack() support counted strings
6564
6565 =item Comments in pack() templates
6566
6567 =item Weak references
6568
6569 =item Binary numbers supported
6570
6571 =item Lvalue subroutines
6572
6573 =item Some arrows may be omitted in calls through references
6574
6575 =item Boolean assignment operators are legal lvalues
6576
6577 =item exists() is supported on subroutine names
6578
6579 =item exists() and delete() are supported on array elements
6580
6581 =item Pseudo-hashes work better
6582
6583 =item Automatic flushing of output buffers
6584
6585 =item Better diagnostics on meaningless filehandle operations
6586
6587 =item Where possible, buffered data discarded from duped input filehandle
6588
6589 =item eof() has the same old magic as <>
6590
6591 =item binmode() can be used to set :crlf and :raw modes
6592
6593 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
6594
6595 =item system(), backticks and pipe open now reflect exec() failure
6596
6597 =item Improved diagnostics
6598
6599 =item Diagnostics follow STDERR
6600
6601 =item More consistent close-on-exec behavior
6602
6603 =item syswrite() ease-of-use
6604
6605 =item Better syntax checks on parenthesized unary operators
6606
6607 =item Bit operators support full native integer width
6608
6609 =item Improved security features
6610
6611 =item More functional bareword prototype (*)
6612
6613 =item C<require> and C<do> may be overridden
6614
6615 =item $^X variables may now have names longer than one character
6616
6617 =item New variable $^C reflects C<-c> switch
6618
6619 =item New variable $^V contains Perl version as a string
6620
6621 =item Optional Y2K warnings
6622
6623 =item Arrays now always interpolate into double-quoted strings
6624
6625 =back
6626
6627 =item Modules and Pragmata
6628
6629 =over 4
6630
6631 =item Modules
6632
6633 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6634 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6635 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6636 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6637 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6638 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6639 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6640 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6641
6642 =item Pragmata
6643
6644 =back
6645
6646 =item Utility Changes
6647
6648 =over 4
6649
6650 =item dprofpp
6651
6652 =item find2perl
6653
6654 =item h2xs
6655
6656 =item perlcc
6657
6658 =item perldoc
6659
6660 =item The Perl Debugger
6661
6662 =back
6663
6664 =item Improved Documentation
6665
6666 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6667 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6668 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6669 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6670
6671 =item Performance enhancements
6672
6673 =over 4
6674
6675 =item Simple sort() using { $a <=> $b } and the like are optimized
6676
6677 =item Optimized assignments to lexical variables
6678
6679 =item Faster subroutine calls
6680
6681 =item delete(), each(), values() and hash iteration are faster
6682
6683 =back
6684
6685 =item Installation and Configuration Improvements
6686
6687 =over 4
6688
6689 =item -Dusethreads means something different
6690
6691 =item New Configure flags
6692
6693 =item Threadedness and 64-bitness now more daring
6694
6695 =item Long Doubles
6696
6697 =item -Dusemorebits
6698
6699 =item -Duselargefiles
6700
6701 =item installusrbinperl
6702
6703 =item SOCKS support
6704
6705 =item C<-A> flag
6706
6707 =item Enhanced Installation Directories
6708
6709 =back
6710
6711 =item Platform specific changes
6712
6713 =over 4
6714
6715 =item Supported platforms
6716
6717 =item DOS
6718
6719 =item OS390 (OpenEdition MVS)
6720
6721 =item VMS
6722
6723 =item Win32
6724
6725 =back
6726
6727 =item Significant bug fixes
6728
6729 =over 4
6730
6731 =item <HANDLE> on empty files
6732
6733 =item C<eval '...'> improvements
6734
6735 =item All compilation errors are true errors
6736
6737 =item Implicitly closed filehandles are safer
6738
6739 =item Behavior of list slices is more consistent
6740
6741 =item C<(\$)> prototype and C<$foo{a}>
6742
6743 =item C<goto &sub> and AUTOLOAD
6744
6745 =item C<-bareword> allowed under C<use integer>
6746
6747 =item Failures in DESTROY()
6748
6749 =item Locale bugs fixed
6750
6751 =item Memory leaks
6752
6753 =item Spurious subroutine stubs after failed subroutine calls
6754
6755 =item Taint failures under C<-U>
6756
6757 =item END blocks and the C<-c> switch
6758
6759 =item Potential to leak DATA filehandles
6760
6761 =back
6762
6763 =item New or Changed Diagnostics
6764
6765 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6766 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6767 / cannot take a count, / must be followed by a, A or Z, / must be followed
6768 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6769 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6770 passed through, /%s/ should probably be written as "%s", %s() called too
6771 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6772 argument is not a HASH or ARRAY element or slice, %s argument is not a
6773 subroutine name, %s package attribute may clash with future reserved word:
6774 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6775 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6776 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6777 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6778 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6779 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6780 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6781 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6782 weaken a nonreference, Character class [:%s:] unknown, Character class
6783 syntax [%s] belongs inside character classes, Constant is not %s reference,
6784 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6785 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6786 "local" instead of "our"?), Document contains no data, entering effective
6787 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6788 output, flock() on closed filehandle %s, Global symbol "%s" requires
6789 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6790 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6791 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6792 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6793 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6794 separator character %s in attribute list, Invalid separator character %s in
6795 subroutine attribute list, leaving effective %s failed, Lvalue subs
6796 returning %s not implemented yet, Method %s not permitted, Missing
6797 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6798 No %s specified for -%c, No package name allowed for variable %s in "our",
6799 No space allowed after -%c, no UTC offset information; assuming local time
6800 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6801 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6802 around "%s" list, Possible unintended interpolation of %s in string,
6803 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6804 instead, Premature end of script headers, Repeat count in pack overflows,
6805 Repeat count in unpack overflows, realloc() of freed memory ignored,
6806 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6807 zero-length expression, switching effective %s is not implemented, This
6808 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6809 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6810 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6811 escape \\%c passed through, Unterminated attribute parameter in attribute
6812 list, Unterminated attribute list, Unterminated attribute parameter in
6813 subroutine attribute list, Unterminated subroutine attribute list, Value of
6814 CLI symbol "%s" too long, Version number must be a constant number
6815
6816 =item New tests
6817
6818 =item Incompatible Changes
6819
6820 =over 4
6821
6822 =item Perl Source Incompatibilities
6823
6824 CHECK is a new keyword, Treatment of list slices of undef has changed,
6825 Format of $English::PERL_VERSION is different, Literals of the form
6826 C<1.2.3> parse differently, Possibly changed pseudo-random number
6827 generator, Hashing function for hash keys has changed, C<undef> fails on
6828 read only values, Close-on-exec bit may be set on pipe and socket handles,
6829 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6830 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6831 Text of some diagnostic output has changed, C<%@> has been removed,
6832 Parenthesized not() behaves like a list operator, Semantics of bareword
6833 prototype C<(*)> have changed, Semantics of bit operators may have changed
6834 on 64-bit platforms, More builtins taint their results
6835
6836 =item C Source Incompatibilities
6837
6838 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6839
6840 =item Compatible C Source API Changes
6841
6842 C<PATCHLEVEL> is now C<PERL_VERSION>
6843
6844 =item Binary Incompatibilities
6845
6846 =back
6847
6848 =item Known Problems
6849
6850 =over 4
6851
6852 =item Thread test failures
6853
6854 =item EBCDIC platforms not supported
6855
6856 =item In 64-bit HP-UX the lib/io_multihomed test may hang
6857
6858 =item NEXTSTEP 3.3 POSIX test failure
6859
6860 =item Tru64 (aka Digital UNIX, aka DEC OSF/1) lib/sdbm test failure with
6861 gcc
6862
6863 =item UNICOS/mk CC failures during Configure run
6864
6865 =item Arrow operator and arrays
6866
6867 =item Experimental features
6868
6869 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6870 pseudo-hash data type, The Compiler suite, Internal implementation of file
6871 globbing, The DB module, The regular expression code constructs:
6872
6873 =back
6874
6875 =item Obsolete Diagnostics
6876
6877 Character class syntax [: :] is reserved for future extensions, Ill-formed
6878 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6879 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6880 to mean "${$}<digit>" is deprecated
6881
6882 =item Reporting Bugs
6883
6884 =item SEE ALSO
6885
6886 =item HISTORY
6887
6888 =back
6889
6890 =head2 perl5005delta - what's new for perl5.005
6891
6892 =over 4
6893
6894 =item DESCRIPTION
6895
6896 =item About the new versioning system
6897
6898 =item Incompatible Changes
6899
6900 =over 4
6901
6902 =item WARNING:  This version is not binary compatible with Perl 5.004.
6903
6904 =item Default installation structure has changed
6905
6906 =item Perl Source Compatibility
6907
6908 =item C Source Compatibility
6909
6910 =item Binary Compatibility
6911
6912 =item Security fixes may affect compatibility
6913
6914 =item Relaxed new mandatory warnings introduced in 5.004
6915
6916 =item Licensing
6917
6918 =back
6919
6920 =item Core Changes
6921
6922 =over 4
6923
6924 =item Threads
6925
6926 =item Compiler
6927
6928 =item Regular Expressions
6929
6930 Many new and improved optimizations, Many bug fixes, New regular expression
6931 constructs, New operator for precompiled regular expressions, Other
6932 improvements, Incompatible changes
6933
6934 =item   Improved malloc()
6935
6936 =item Quicksort is internally implemented
6937
6938 =item Reliable signals
6939
6940 =item Reliable stack pointers
6941
6942 =item More generous treatment of carriage returns
6943
6944 =item Memory leaks
6945
6946 =item Better support for multiple interpreters
6947
6948 =item Behavior of local() on array and hash elements is now well-defined
6949
6950 =item C<%!> is transparently tied to the L<Errno> module
6951
6952 =item Pseudo-hashes are supported
6953
6954 =item C<EXPR foreach EXPR> is supported
6955
6956 =item Keywords can be globally overridden
6957
6958 =item C<$^E> is meaningful on Win32
6959
6960 =item C<foreach (1..1000000)> optimized
6961
6962 =item C<Foo::> can be used as implicitly quoted package name
6963
6964 =item C<exists $Foo::{Bar::}> tests existence of a package
6965
6966 =item Better locale support
6967
6968 =item Experimental support for 64-bit platforms
6969
6970 =item prototype() returns useful results on builtins
6971
6972 =item Extended support for exception handling
6973
6974 =item Re-blessing in DESTROY() supported for chaining DESTROY() methods
6975
6976 =item All C<printf> format conversions are handled internally
6977
6978 =item New C<INIT> keyword
6979
6980 =item New C<lock> keyword
6981
6982 =item New C<qr//> operator
6983
6984 =item C<our> is now a reserved word
6985
6986 =item Tied arrays are now fully supported
6987
6988 =item Tied handles support is better
6989
6990 =item 4th argument to substr
6991
6992 =item Negative LENGTH argument to splice
6993
6994 =item Magic lvalues are now more magical
6995
6996 =item <> now reads in records
6997
6998 =back
6999
7000 =item Supported Platforms
7001
7002 =over 4
7003
7004 =item New Platforms
7005
7006 =item Changes in existing support
7007
7008 =back
7009
7010 =item Modules and Pragmata
7011
7012 =over 4
7013
7014 =item New Modules
7015
7016 B, Data::Dumper, Dumpvalue, Errno, File::Spec, ExtUtils::Installed,
7017 ExtUtils::Packlist, Fatal, IPC::SysV, Test, Tie::Array, Tie::Handle,
7018 Thread, attrs, fields, re
7019
7020 =item Changes in existing modules
7021
7022 Benchmark, Carp, CGI, Fcntl, Math::Complex, Math::Trig, POSIX, DB_File,
7023 MakeMaker, CPAN, Cwd
7024
7025 =back
7026
7027 =item Utility Changes
7028
7029 =item Documentation Changes
7030
7031 =item New Diagnostics
7032
7033 Ambiguous call resolved as CORE::%s(), qualify as such or use &, Bad index
7034 while coercing array into hash, Bareword "%s" refers to nonexistent
7035 package, Can't call method "%s" on an undefined value, Can't check
7036 filesystem of script "%s" for nosuid, Can't coerce array into hash, Can't
7037 goto subroutine from an eval-string, Can't localize pseudo-hash element,
7038 Can't use %%! because Errno.pm is not available, Cannot find an opnumber
7039 for "%s", Character class syntax [. .] is reserved for future extensions,
7040 Character class syntax [: :] is reserved for future extensions, Character
7041 class syntax [= =] is reserved for future extensions, %s: Eval-group in
7042 insecure regular expression, %s: Eval-group not allowed, use re 'eval', %s:
7043 Eval-group not allowed at run time, Explicit blessing to '' (assuming
7044 package main), Illegal hex digit ignored, No such array field, No such
7045 field "%s" in variable %s of type %s, Out of memory during ridiculously
7046 large request, Range iterator outside integer range, Recursive inheritance
7047 detected while looking for method '%s' %s, Reference found where even-sized
7048 list expected, Undefined value assigned to typeglob, Use of reserved word
7049 "%s" is deprecated, perl: warning: Setting locale failed
7050
7051 =item Obsolete Diagnostics
7052
7053 Can't mktemp(), Can't write to temp file for B<-e>: %s, Cannot open
7054 temporary file, regexp too big
7055
7056 =item Configuration Changes
7057
7058 =item BUGS
7059
7060 =item SEE ALSO
7061
7062 =item HISTORY
7063
7064 =back
7065
7066 =head2 perl5004delta - what's new for perl5.004
7067
7068 =over 4
7069
7070 =item DESCRIPTION
7071
7072 =item Supported Environments
7073
7074 =item Core Changes
7075
7076 =over 4
7077
7078 =item List assignment to %ENV works
7079
7080 =item Change to "Can't locate Foo.pm in @INC" error
7081
7082 =item Compilation option: Binary compatibility with 5.003
7083
7084 =item $PERL5OPT environment variable
7085
7086 =item Limitations on B<-M>, B<-m>, and B<-T> options
7087
7088 =item More precise warnings
7089
7090 =item Deprecated: Inherited C<AUTOLOAD> for non-methods
7091
7092 =item Previously deprecated %OVERLOAD is no longer usable
7093
7094 =item Subroutine arguments created only when they're modified
7095
7096 =item Group vector changeable with C<$)>
7097
7098 =item Fixed parsing of $$<digit>, &$<digit>, etc.
7099
7100 =item Fixed localization of $<digit>, $&, etc.
7101
7102 =item No resetting of $. on implicit close
7103
7104 =item C<wantarray> may return undef
7105
7106 =item C<eval EXPR> determines value of EXPR in scalar context
7107
7108 =item Changes to tainting checks
7109
7110 No glob() or <*>, No spawning if tainted $CDPATH, $ENV, $BASH_ENV, No
7111 spawning if tainted $TERM doesn't look like a terminal name
7112
7113 =item New Opcode module and revised Safe module
7114
7115 =item Embedding improvements
7116
7117 =item Internal change: FileHandle class based on IO::* classes
7118
7119 =item Internal change: PerlIO abstraction interface
7120
7121 =item New and changed syntax
7122
7123 $coderef->(PARAMS)
7124
7125 =item New and changed builtin constants
7126
7127 __PACKAGE__
7128
7129 =item New and changed builtin variables
7130
7131 $^E, $^H, $^M
7132
7133 =item New and changed builtin functions
7134
7135 delete on slices, flock, printf and sprintf, keys as an lvalue, my() in
7136 Control Structures, pack() and unpack(), sysseek(), use VERSION, use Module
7137 VERSION LIST, prototype(FUNCTION), srand, $_ as Default, C<m//gc> does not
7138 reset search position on failure, C<m//x> ignores whitespace before ?*+{},
7139 nested C<sub{}> closures work now, formats work right on changing lexicals
7140
7141 =item New builtin methods
7142
7143 isa(CLASS), can(METHOD), VERSION( [NEED] )
7144
7145 =item TIEHANDLE now supported
7146
7147 TIEHANDLE classname, LIST, PRINT this, LIST, PRINTF this, LIST, READ this
7148 LIST, READLINE this, GETC this, DESTROY this
7149
7150 =item Malloc enhancements
7151
7152 -DPERL_EMERGENCY_SBRK, -DPACK_MALLOC, -DTWO_POT_OPTIMIZE
7153
7154 =item Miscellaneous efficiency enhancements
7155
7156 =back
7157
7158 =item Support for More Operating Systems
7159
7160 =over 4
7161
7162 =item Win32
7163
7164 =item Plan 9
7165
7166 =item QNX
7167
7168 =item AmigaOS
7169
7170 =back
7171
7172 =item Pragmata
7173
7174 use autouse MODULE => qw(sub1 sub2 sub3), use blib, use blib 'dir', use
7175 constant NAME => VALUE, use locale, use ops, use vmsish
7176
7177 =item Modules
7178
7179 =over 4
7180
7181 =item Required Updates
7182
7183 =item Installation directories
7184
7185 =item Module information summary
7186
7187 =item Fcntl
7188
7189 =item IO
7190
7191 =item Math::Complex
7192
7193 =item Math::Trig
7194
7195 =item DB_File
7196
7197 =item Net::Ping
7198
7199 =item Object-oriented overrides for builtin operators
7200
7201 =back
7202
7203 =item Utility Changes
7204
7205 =over 4
7206
7207 =item pod2html
7208
7209 Sends converted HTML to standard output
7210
7211 =item xsubpp
7212
7213 C<void> XSUBs now default to returning nothing
7214
7215 =back
7216
7217 =item C Language API Changes
7218
7219 C<gv_fetchmethod> and C<perl_call_sv>, C<perl_eval_pv>, Extended API for
7220 manipulating hashes
7221
7222 =item Documentation Changes
7223
7224 L<perldelta>, L<perlfaq>, L<perllocale>, L<perltoot>, L<perlapio>,
7225 L<perlmodlib>, L<perldebug>, L<perlsec>
7226
7227 =item New Diagnostics
7228
7229 "my" variable %s masks earlier declaration in same scope, %s argument is
7230 not a HASH element or slice, Allocation too large: %lx, Allocation too
7231 large, Applying %s to %s will act on scalar(%s), Attempt to free
7232 nonexistent shared string, Attempt to use reference as lvalue in substr,
7233 Bareword "%s" refers to nonexistent package, Can't redefine active sort
7234 subroutine %s, Can't use bareword ("%s") as %s ref while "strict refs" in
7235 use, Cannot resolve method `%s' overloading `%s' in package `%s', Constant
7236 subroutine %s redefined, Constant subroutine %s undefined, Copy method did
7237 not return a reference, Died, Exiting pseudo-block via %s, Identifier too
7238 long, Illegal character %s (carriage return), Illegal switch in PERL5OPT:
7239 %s, Integer overflow in hex number, Integer overflow in octal number,
7240 internal error: glob failed, Invalid conversion in %s: "%s", Invalid type
7241 in pack: '%s', Invalid type in unpack: '%s', Name "%s::%s" used only once:
7242 possible typo, Null picture in formline, Offset outside string, Out of
7243 memory!, Out of memory during request for %s, panic: frexp, Possible
7244 attempt to put comments in qw() list, Possible attempt to separate words
7245 with commas, Scalar value @%s{%s} better written as $%s{%s}, Stub found
7246 while resolving method `%s' overloading `%s' in %s, Too late for "B<-T>"
7247 option, untie attempted while %d inner references still exist, Unrecognized
7248 character %s, Unsupported function fork, Use of "$$<digit>" to mean
7249 "${$}<digit>" is deprecated, Value of %s can be "0"; test with defined(),
7250 Variable "%s" may be unavailable, Variable "%s" will not stay shared,
7251 Warning: something's wrong, Ill-formed logical name |%s| in prime_env_iter,
7252 Got an error from DosAllocMem, Malformed PERLLIB_PREFIX, PERL_SH_DIR too
7253 long, Process terminated by SIG%s
7254
7255 =item BUGS
7256
7257 =item SEE ALSO
7258
7259 =item HISTORY
7260
7261 =back
7262
7263 =head2 perlartistic - the Perl Artistic License
7264
7265 =over 4
7266
7267 =item SYNOPSIS
7268
7269 =item DESCRIPTION
7270
7271 =item The "Artistic License"
7272
7273 =over 4
7274
7275 =item Preamble
7276
7277 =item Definitions
7278
7279 "Package", "Standard Version", "Copyright Holder", "You", "Reasonable
7280 copying fee", "Freely Available"
7281
7282 =item Conditions
7283
7284 a), b), c), d), a), b), c), d)
7285
7286 =back
7287
7288 =back
7289
7290 =head2 perlgpl - the GNU General Public License, version 2
7291
7292 =over 4
7293
7294 =item SYNOPSIS
7295
7296 =back
7297
7298 =over 4
7299
7300 =item DESCRIPTION
7301
7302 =item GNU GENERAL PUBLIC LICENSE
7303
7304 =back
7305
7306 =head2 perlaix, README.aix - Perl version 5 on IBM Unix (AIX) systems
7307
7308 =over 4
7309
7310 =item DESCRIPTION
7311
7312 =over 4
7313
7314 =item Compiling Perl 5 on AIX
7315
7316 =item OS level
7317
7318 =item Building Dynamic Extensions on AIX
7319
7320 =item The IBM ANSI C Compiler
7321
7322 =item Using GNU's gcc for building perl
7323
7324 =item Using Large Files with Perl
7325
7326 =item Threaded Perl
7327
7328 =item 64-bit Perl
7329
7330 =item AIX 4.2 and extensions using C++ with statics
7331
7332 =back
7333
7334 =item AUTHOR
7335
7336 =item DATE
7337
7338 =back
7339
7340 =head2 perlamiga - Perl under Amiga OS
7341
7342 =over 4
7343
7344 =item NOTE
7345
7346 =item SYNOPSIS
7347
7348 =back
7349
7350 =over 4
7351
7352 =item DESCRIPTION
7353
7354 =over 4
7355
7356 =item Prerequisites for Compiling Perl on AmigaOS
7357
7358 B<Unix emulation for AmigaOS: ixemul.library>, B<Version of Amiga OS>
7359
7360 =item Starting Perl programs under AmigaOS
7361
7362 =item Shortcomings of Perl under AmigaOS
7363
7364 =back
7365
7366 =item INSTALLATION
7367
7368 =item Accessing documentation
7369
7370 =over 4
7371
7372 =item Manpages for Perl on AmigaOS
7373
7374 =item Perl HTML Documentation on AmigaOS
7375
7376 =item Perl GNU Info Files on AmigaOS
7377
7378 =item Perl LaTeX Documentation on AmigaOS
7379
7380 =back
7381
7382 =item BUILDING PERL ON AMIGAOS
7383
7384 =over 4
7385
7386 =item Build Prerequisites for Perl on AmigaOS
7387
7388 =item Getting the Perl Source for AmigaOS
7389
7390 =item Making Perl on AmigaOS
7391
7392 =item Testing Perl on AmigaOS
7393
7394 =item Installing the built Perl on AmigaOS
7395
7396 =back
7397
7398 =item PERL 5.8.0 BROKEN IN AMIGAOS
7399
7400 =item AUTHORS
7401
7402 =item SEE ALSO
7403
7404 =back
7405
7406 =head2 perlapollo, README.apollo - Perl version 5 on Apollo DomainOS
7407
7408 =over 4
7409
7410 =item DESCRIPTION
7411
7412 =item AUTHOR
7413
7414 =back
7415
7416 =head2 perlbeos, README.beos - Perl version 5 on BeOS
7417
7418 =over 4
7419
7420 =item DESCRIPTION
7421
7422 =over 4
7423
7424 =item General Issues with Perl on BeOS
7425
7426 =item BeOS Release-specific Notes
7427
7428 R4 x86, R4 PPC
7429
7430 =item Contact Information
7431
7432 =item Update 2002-05-30
7433
7434 =back
7435
7436 =back
7437
7438 =head2 perlbs2000, README.BS2000 - building and installing Perl for BS2000.
7439
7440 =over 4
7441
7442 =item SYNOPSIS
7443
7444 =item DESCRIPTION
7445
7446 =over 4
7447
7448 =item gzip on BS2000
7449
7450 =item bison on BS2000
7451
7452 =item Unpacking Perl Distribution on BS2000
7453
7454 =item Compiling Perl on BS2000
7455
7456 =item Testing Perl on BS2000
7457
7458 =item Installing Perl on BS2000
7459
7460 =item Using Perl in the Posix-Shell of BS2000
7461
7462 =item Using Perl in "native" BS2000
7463
7464 =item Floating point anomalies on BS2000
7465
7466 =back
7467
7468 =item AUTHORS
7469
7470 =item SEE ALSO
7471
7472 =over 4
7473
7474 =item Mailing list
7475
7476 =back
7477
7478 =item HISTORY
7479
7480 =back
7481
7482 =over 4
7483
7484 =item Name
7485
7486 =item Description
7487
7488 =item Build
7489
7490 =over 4
7491
7492 =item Tools & SDK
7493
7494 Microsoft Embedded Visual Tools, Microsoft Visual C++, Rainer Keuchel's
7495 celib-sources, Rainer Keuchel's console-sources
7496
7497 =item Make
7498
7499 go to ./wince subdirectory, edit file compile.bat, run    compile.bat, run 
7500   compile.bat dist
7501
7502 =back
7503
7504 =item Acknowledgements
7505
7506 =item AUTHORS
7507
7508 =back
7509
7510 =head2 perlcygwin, README.cygwin - Perl for Cygwin
7511
7512 =over 4
7513
7514 =item SYNOPSIS
7515
7516 =item PREREQUISITES FOR COMPILING PERL ON CYGWIN
7517
7518 =over 4
7519
7520 =item Cygwin = GNU+Cygnus+Windows (Don't leave UNIX without it)
7521
7522 =item Cygwin Configuration
7523
7524 C<PATH>, I<nroff>, Permissions
7525
7526 =back
7527
7528 =item CONFIGURE PERL ON CYGWIN
7529
7530 =over 4
7531
7532 =item Stripping Perl Binaries on Cygwin
7533
7534 =item Optional Libraries for Perl on Cygwin
7535
7536 C<-lcrypt>, C<-lgdbm> (C<use GDBM_File>), C<-ldb> (C<use DB_File>),
7537 C<-lcygipc> (C<use IPC::SysV>), C<-lutil>
7538
7539 =item Configure-time Options for Perl on Cygwin
7540
7541 C<-Uusedl>, C<-Uusemymalloc>, C<-Uuseperlio>, C<-Dusemultiplicity>,
7542 C<-Duse64bitint>, C<-Duselongdouble>, C<-Dusethreads>, C<-Duselargefiles>,
7543 C<-Dmksymlinks>
7544
7545 =item Suspicious Warnings on Cygwin
7546
7547 I<dlsym()>, Win9x and C<d_eofnblk>, Compiler/Preprocessor defines
7548
7549 =back
7550
7551 =item MAKE ON CYGWIN
7552
7553 =over 4
7554
7555 =item Errors on Cygwin
7556
7557 =item ld2 on Cygwin
7558
7559 =back
7560
7561 =item TEST ON CYGWIN
7562
7563 =over 4
7564
7565 =item File Permissions on Cygwin
7566
7567 =item NDBM_File and ODBM_File do not work on FAT filesystems
7568
7569 =item C<fork()> failures in io_* tests
7570
7571 =item Script Portability on Cygwin
7572
7573 Pathnames, Text/Binary, PerlIO, F<.exe>, C<chown()>, Miscellaneous
7574
7575 =back
7576
7577 =item INSTALL PERL ON CYGWIN
7578
7579 =item MANIFEST ON CYGWIN
7580
7581 Documentation, Build, Configure, Make, Install, Tests, Compiled Perl
7582 Source, Compiled Module Source, Perl Modules/Scripts
7583
7584 =item BUGS ON CYGWIN
7585
7586 =item AUTHORS
7587
7588 =item HISTORY
7589
7590 =back
7591
7592 =head2 perldgux - Perl under DG/UX.
7593
7594 =over 4
7595
7596 =item SYNOPSIS
7597
7598 =back
7599
7600 =over 4
7601
7602 =item DESCRIPTION
7603
7604 =item BUILDING PERL ON DG/UX
7605
7606 =over 4
7607
7608 =item Non-threaded Perl on DG/UX
7609
7610 =item Threaded Perl on DG/UX
7611
7612 =item Testing Perl on DG/UX
7613
7614 =item Installing the built perl on DG/UX
7615
7616 =back
7617
7618 =item AUTHOR
7619
7620 =item SEE ALSO
7621
7622 =back
7623
7624 =head2 perldos - Perl under DOS, W31, W95.
7625
7626 =over 4
7627
7628 =item SYNOPSIS
7629
7630 =item DESCRIPTION
7631
7632 =over 4
7633
7634 =item Prerequisites for Compiling Perl on DOS
7635
7636 DJGPP, Pthreads
7637
7638 =item Shortcomings of Perl under DOS
7639
7640 =item Building Perl on DOS
7641
7642 =item Testing Perl on DOS
7643
7644 =item Installation of Perl on DOS
7645
7646 =back
7647
7648 =item BUILDING AND INSTALLING MODULES ON DOS
7649
7650 =over 4
7651
7652 =item Building Prerequisites for Perl on DOS
7653
7654 =item Unpacking CPAN Modules on DOS
7655
7656 =item Building Non-XS Modules on DOS
7657
7658 =item Building XS Modules on DOS
7659
7660 =back
7661
7662 =item AUTHOR
7663
7664 =item SEE ALSO
7665
7666 =back
7667
7668 =head2 perlepoc, README.epoc - Perl for EPOC
7669
7670 =over 4
7671
7672 =item SYNOPSIS
7673
7674 =item INTRODUCTION
7675
7676 =item INSTALLING PERL ON EPOC
7677
7678 =item STARTING PERL ON EPOC
7679
7680 =over 4
7681
7682 =item Editors on Epoc
7683
7684 =item Features of Perl on Epoc
7685
7686 =item Restrictions of Perl on Epoc
7687
7688 =item Compiling Perl 5 on the EPOC cross compiling environment
7689
7690 =back
7691
7692 =item SUPPORT STATUS OF PERL ON EPOC
7693
7694 =item AUTHOR
7695
7696 =item LAST UPDATE
7697
7698 =back
7699
7700 =head2 perlfreebsd, README.freebsd - Perl version 5 on FreeBSD systems
7701
7702 =over 4
7703
7704 =item DESCRIPTION
7705
7706 =over 4
7707
7708 =item FreeBSD core dumps from readdir_r with ithreads
7709
7710 =item $^X doesn't always contain a full path in FreeBSD
7711
7712 =item Perl will no longer be part of "base FreeBSD"
7713
7714 =back
7715
7716 =item AUTHOR
7717
7718 =back
7719
7720 =head2 perlhpux, README.hpux - Perl version 5 on Hewlett-Packard Unix
7721 (HP-UX) systems
7722
7723 =over 4
7724
7725 =item DESCRIPTION
7726
7727 =over 4
7728
7729 =item Using perl as shipped with HP-UX
7730
7731 =item Using perl from HP's porting centre
7732
7733 =item Compiling Perl 5 on HP-UX
7734
7735 =item PA-RISC
7736
7737 =item PA-RISC 1.0
7738
7739 =item PA-RISC 1.1
7740
7741 =item PA-RISC 2.0
7742
7743 =item Itanium
7744
7745 =item Portability Between PA-RISC Versions
7746
7747 =item Itanium Processor Family and HP-UX
7748
7749 =item Building Dynamic Extensions on HP-UX
7750
7751 =item The HP ANSI C Compiler
7752
7753 =item The GNU C Compiler
7754
7755 =item Using Large Files with Perl on HP-UX
7756
7757 =item Threaded Perl on HP-UX
7758
7759 =item 64-bit Perl on HP-UX
7760
7761 =item Oracle on HP-UX
7762
7763 =item GDBM and Threads on HP-UX
7764
7765 =item NFS filesystems and utime(2) on HP-UX
7766
7767 =item perl -P and // and HP-UX
7768
7769 =item HP-UX Kernel Parameters (maxdsiz) for Compiling Perl
7770
7771 =back
7772
7773 =item nss_delete core dump from op/pwent or op/grent
7774
7775 =item AUTHOR
7776
7777 =item DATE
7778
7779 =back
7780
7781 =head2 perlhurd, README.hurd - Perl version 5 on Hurd
7782
7783 =over 4
7784
7785 =item DESCRIPTION
7786
7787 =over 4
7788
7789 =item Known Problems with Perl on Hurd 
7790
7791 =back
7792
7793 =item AUTHOR
7794
7795 =back
7796
7797 =head2 perlirix, README.irix - Perl version 5 on Irix systems
7798
7799 =over 4
7800
7801 =item DESCRIPTION
7802
7803 =over 4
7804
7805 =item Building 32-bit Perl in Irix
7806
7807 =item Building 64-bit Perl in Irix
7808
7809 =item About Compiler Versions of Irix
7810
7811 =item Linker Problems in Irix
7812
7813 =item Malloc in Irix
7814
7815 =item Building with threads in Irix
7816
7817 =item Irix 5.3
7818
7819 =back
7820
7821 =item AUTHOR
7822
7823 =back
7824
7825 =head2 perlmachten, README.machten - Perl version 5 on Power MachTen
7826 systems
7827
7828 =over 4
7829
7830 =item DESCRIPTION
7831
7832 =over 4
7833
7834 =item Compiling Perl 5 on MachTen
7835
7836 =item Failures during C<make test> on MachTen
7837
7838 op/lexassign.t, pragma/warnings.t
7839
7840 =item Building external modules on MachTen
7841
7842 =back
7843
7844 =item AUTHOR
7845
7846 =item DATE
7847
7848 =back
7849
7850 =head2 perlmacos, README.macos - Perl under Mac OS (Classic)
7851
7852 =over 4
7853
7854 =item SYNOPSIS
7855
7856 =item DESCRIPTION
7857
7858 =item AUTHOR
7859
7860 =item DATE
7861
7862 =back
7863
7864 =head2 perlmacosx, README.macosx - Perl under Mac OS X
7865
7866 =over 4
7867
7868 =item SYNOPSIS
7869
7870 =item DESCRIPTION
7871
7872 =over 4
7873
7874 =item Installation Prefix
7875
7876 =item libperl and Prebinding
7877
7878 =item Updating Panther
7879
7880 =item Known problems
7881
7882 =item MacPerl
7883
7884 =item Carbon
7885
7886 =item Cocoa
7887
7888 =back
7889
7890 =item AUTHOR
7891
7892 =item DATE
7893
7894 =back
7895
7896 =head2 perlmint, README.mint - Perl version 5 on Atari MiNT
7897
7898 =over 4
7899
7900 =item DESCRIPTION
7901
7902 =item Known problems with Perl on MiNT
7903
7904 =item AUTHOR
7905
7906 =back
7907
7908 =head2 perlmpeix, README.mpeix - Perl/iX for HP e3000 MPE
7909
7910 =over 4
7911
7912 =item SYNOPSIS
7913
7914 =item NOTE
7915
7916 =item Binary distribution from HP
7917
7918 =item What's New in Perl for MPE/iX
7919
7920 =item Welcome to Perl/iX
7921
7922 =item System Requirements for Perl/iX
7923
7924 =item How to Obtain Perl/iX
7925
7926 =item Perl/iX Distribution Contents Highlights
7927
7928 README, INSTALL, LIBSHP3K, PERL, .cpan/, lib/, man/,
7929 public_html/feedback.cgi, src/perl-5.6.0-mpe
7930
7931 =item How to Compile Perl/iX
7932
7933  4,  6
7934
7935 =item Getting Started with Perl/iX
7936
7937 =item MPE/iX Implementation Considerations
7938
7939 =item Known Perl/iX Bugs Under Investigation
7940
7941 =item Perl/iX To-Do List
7942
7943 =item Perl/iX Change History
7944
7945 =item AUTHOR
7946
7947 =item Name
7948
7949 =item Description
7950
7951 =item Build
7952
7953 =over 4
7954
7955 =item Tools & SDK
7956
7957 =item Setup
7958
7959 SetNWBld.bat, Buildtype.bat
7960
7961 =item Make
7962
7963 =item Interpreter
7964
7965 =item Extensions
7966
7967 =back
7968
7969 =item Install
7970
7971 =item Build new extensions
7972
7973 =item Acknowledgements
7974
7975 =item Authors
7976
7977 =item Date
7978
7979 =back
7980
7981 =head2 perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
7982
7983 =over 4
7984
7985 =item SYNOPSIS
7986
7987 =back
7988
7989 =over 4
7990
7991 =item DESCRIPTION
7992
7993 =over 4
7994
7995 =item Target
7996
7997 =item Other OSes
7998
7999 =item Prerequisites
8000
8001 EMX, RSX, HPFS, pdksh
8002
8003 =item Starting Perl programs under OS/2 (and DOS and...)
8004
8005 =item Starting OS/2 (and DOS) programs under Perl
8006
8007 =back
8008
8009 =item Frequently asked questions
8010
8011 =over 4
8012
8013 =item "It does not work"
8014
8015 =item I cannot run external programs
8016
8017 =item I cannot embed perl into my program, or use F<perl.dll> from my
8018 program. 
8019
8020 Is your program EMX-compiled with C<-Zmt -Zcrtdll>?, Did you use
8021 L<ExtUtils::Embed>?
8022
8023 =item C<``> and pipe-C<open> do not work under DOS.
8024
8025 =item Cannot start C<find.exe "pattern" file>
8026
8027 =back
8028
8029 =item INSTALLATION
8030
8031 =over 4
8032
8033 =item Automatic binary installation
8034
8035 C<PERL_BADLANG>, C<PERL_BADFREE>, F<Config.pm>
8036
8037 =item Manual binary installation
8038
8039 Perl VIO and PM executables (dynamically linked), Perl_ VIO executable
8040 (statically linked), Executables for Perl utilities, Main Perl library,
8041 Additional Perl modules, Tools to compile Perl modules, Manpages for Perl
8042 and utilities, Manpages for Perl modules, Source for Perl documentation,
8043 Perl manual in F<.INF> format, Pdksh
8044
8045 =item B<Warning>
8046
8047 =back
8048
8049 =item Accessing documentation
8050
8051 =over 4
8052
8053 =item OS/2 F<.INF> file
8054
8055 =item Plain text
8056
8057 =item Manpages
8058
8059 =item HTML
8060
8061 =item GNU C<info> files
8062
8063 =item F<PDF> files
8064
8065 =item C<LaTeX> docs
8066
8067 =back
8068
8069 =item BUILD
8070
8071 =over 4
8072
8073 =item The short story
8074
8075 =item Prerequisites
8076
8077 =item Getting perl source
8078
8079 =item Application of the patches
8080
8081 =item Hand-editing
8082
8083 =item Making
8084
8085 =item Testing
8086
8087 A lot of C<bad free>, Process terminated by SIGTERM/SIGINT, F<op/fs.t>,
8088 F<op/stat.t>
8089
8090 =item Installing the built perl
8091
8092 =item C<a.out>-style build
8093
8094 =back
8095
8096 =item Build FAQ
8097
8098 =over 4
8099
8100 =item Some C</> became C<\> in pdksh.
8101
8102 =item C<'errno'> - unresolved external
8103
8104 =item Problems with tr or sed
8105
8106 =item Some problem (forget which ;-)
8107
8108 =item Library ... not found
8109
8110 =item Segfault in make
8111
8112 =item op/sprintf test failure
8113
8114 =back
8115
8116 =item Specific (mis)features of OS/2 port
8117
8118 =over 4
8119
8120 =item C<setpriority>, C<getpriority>
8121
8122 =item C<system()>
8123
8124 =item C<extproc> on the first line
8125
8126 =item Additional modules:
8127
8128 =item Prebuilt methods:
8129
8130 C<File::Copy::syscopy>, C<DynaLoader::mod2fname>,  C<Cwd::current_drive()>,
8131  C<Cwd::sys_chdir(name)>,  C<Cwd::change_drive(name)>, 
8132 C<Cwd::sys_is_absolute(name)>,  C<Cwd::sys_is_rooted(name)>, 
8133 C<Cwd::sys_is_relative(name)>,  C<Cwd::sys_cwd(name)>, 
8134 C<Cwd::sys_abspath(name, dir)>,  C<Cwd::extLibpath([type])>, 
8135 C<Cwd::extLibpath_set( path [, type ] )>,
8136 C<OS2::Error(do_harderror,do_exception)>, C<OS2::Errors2Drive(drive)>,
8137 OS2::SysInfo(), OS2::BootDrive(), C<OS2::MorphPM(serve)>,
8138 C<OS2::UnMorphPM(serve)>, C<OS2::Serve_Messages(force)>,
8139 C<OS2::Process_Messages(force [, cnt])>, C<OS2::_control87(new,mask)>,
8140 OS2::get_control87(), C<OS2::set_control87_em(new=MCW_EM,mask=MCW_EM)>,
8141 C<OS2::DLLname([how [, \&xsub]])>
8142
8143 =item Prebuilt variables:
8144
8145 $OS2::emx_rev, $OS2::emx_env, $OS2::os_ver, $OS2::is_aout, $OS2::can_fork,
8146 $OS2::nsyserror
8147
8148 =item Misfeatures
8149
8150 =item Modifications
8151
8152 C<popen>, C<tmpnam>, C<tmpfile>, C<ctermid>, C<stat>, C<mkdir>, C<rmdir>,
8153 C<flock>
8154
8155 =item Identifying DLLs
8156
8157 =item Centralized management of resources
8158
8159 C<HAB>, C<HMQ>, Treating errors reported by OS/2 API,
8160 C<CheckOSError(expr)>, C<CheckWinError(expr)>, C<SaveWinError(expr)>,
8161 C<SaveCroakWinError(expr,die,name1,name2)>, C<WinError_2_Perl_rc>,
8162 C<FillWinError>, C<FillOSError(rc)>, Loading DLLs and ordinals in DLLs
8163
8164 =back
8165
8166 =item Perl flavors
8167
8168 =over 4
8169
8170 =item F<perl.exe>
8171
8172 =item F<perl_.exe>
8173
8174 =item F<perl__.exe>
8175
8176 =item F<perl___.exe>
8177
8178 =item Why strange names?
8179
8180 =item Why dynamic linking?
8181
8182 =item Why chimera build?
8183
8184 =back
8185
8186 =item ENVIRONMENT
8187
8188 =over 4
8189
8190 =item C<PERLLIB_PREFIX>
8191
8192 =item C<PERL_BADLANG>
8193
8194 =item C<PERL_BADFREE>
8195
8196 =item C<PERL_SH_DIR>
8197
8198 =item C<USE_PERL_FLOCK>
8199
8200 =item C<TMP> or C<TEMP>
8201
8202 =back
8203
8204 =item Evolution
8205
8206 =over 4
8207
8208 =item Text-mode filehandles
8209
8210 =item Priorities
8211
8212 =item DLL name mangling: pre 5.6.2
8213
8214 =item DLL name mangling: 5.6.2 and beyond
8215
8216 Global DLLs, specific DLLs, C<BEGINLIBPATH> and C<ENDLIBPATH>, F<.> from
8217 C<LIBPATH>
8218
8219 =item DLL forwarder generation
8220
8221 =item Threading
8222
8223 =item Calls to external programs
8224
8225 =item Memory allocation
8226
8227 =item Threads
8228
8229 C<COND_WAIT>, F<os2.c>
8230
8231 =back
8232
8233 =item BUGS
8234
8235 =back
8236
8237 =over 4
8238
8239 =item AUTHOR
8240
8241 =item SEE ALSO
8242
8243 =back
8244
8245 =head2 perlos390, README.os390 - building and installing Perl for OS/390
8246 and z/OS
8247
8248 =over 4
8249
8250 =item SYNOPSIS
8251
8252 =item DESCRIPTION
8253
8254 =over 4
8255
8256 =item Tools
8257
8258 =item Unpacking Perl distribution on OS/390
8259
8260 =item Setup and utilities for Perl on OS/390
8261
8262 =item Configure Perl on OS/390
8263
8264 =item Build, Test, Install Perl on OS/390
8265
8266 =item Build Anomalies with Perl on OS/390
8267
8268 =item Testing Anomalies with Perl on OS/390
8269
8270 =item Installation Anomalies with Perl on OS/390
8271
8272 =item Usage Hints for Perl on OS/390
8273
8274 =item Floating Point Anomalies with Perl on OS/390
8275
8276 =item Modules and Extensions for Perl on OS/390
8277
8278 =back
8279
8280 =item AUTHORS
8281
8282 =item SEE ALSO
8283
8284 =over 4
8285
8286 =item Mailing list for Perl on OS/390
8287
8288 =back
8289
8290 =item HISTORY
8291
8292 =back
8293
8294 =head2 perlos400, README.os400 - Perl version 5 on OS/400
8295
8296 =over 4
8297
8298 =item DESCRIPTION
8299
8300 =over 4
8301
8302 =item Compiling Perl for OS/400 PASE
8303
8304 =item Installing Perl in OS/400 PASE
8305
8306 =item Using Perl in OS/400 PASE
8307
8308 =item Known Problems
8309
8310 =item Perl on ILE
8311
8312 =back
8313
8314 =item AUTHORS
8315
8316 =back
8317
8318 =head2 perlplan9 - Plan 9-specific documentation for Perl
8319
8320 =over 4
8321
8322 =item DESCRIPTION
8323
8324 =over 4
8325
8326 =item Invoking Perl
8327
8328 =item What's in Plan 9 Perl
8329
8330 =item What's not in Plan 9 Perl
8331
8332 =item Perl5 Functions not currently supported in Plan 9 Perl
8333
8334 =item Signals in Plan 9 Perl
8335
8336 =back
8337
8338 =item COMPILING AND INSTALLING PERL ON PLAN 9
8339
8340 =over 4
8341
8342 =item Installing Perl Documentation on Plan 9
8343
8344 =back
8345
8346 =item BUGS
8347
8348 =item Revision date
8349
8350 =item AUTHOR
8351
8352 =back
8353
8354 =head2 perlqnx, README.qnx - Perl version 5 on QNX
8355
8356 =over 4
8357
8358 =item DESCRIPTION
8359
8360 =over 4
8361
8362 =item Required Software for Compiling Perl on QNX4
8363
8364 /bin/sh, ar, nm, cpp, make
8365
8366 =item Outstanding Issues with Perl on QNX4
8367
8368 =item QNX auxiliary files
8369
8370 qnx/ar, qnx/cpp
8371
8372 =item Outstanding issues with perl under QNX6
8373
8374 =back
8375
8376 =item AUTHOR
8377
8378 =back
8379
8380 =head2 perlsolaris, README.solaris - Perl version 5 on Solaris systems
8381
8382 =over 4
8383
8384 =item DESCRIPTION
8385
8386 =over 4
8387
8388 =item Solaris Version Numbers.
8389
8390 =back
8391
8392 =item RESOURCES
8393
8394 Solaris FAQ, Precompiled Binaries, Solaris Documentation
8395
8396 =item SETTING UP
8397
8398 =over 4
8399
8400 =item File Extraction Problems on Solaris.
8401
8402 =item Compiler and Related Tools on Solaris.
8403
8404 =item Environment for Compiling perl on Solaris
8405
8406 =back
8407
8408 =item RUN CONFIGURE.
8409
8410 =over 4
8411
8412 =item 64-bit perl on Solaris.
8413
8414 =item Threads in perl on Solaris.
8415
8416 =item Malloc Issues with perl on Solaris.
8417
8418 =back
8419
8420 =item MAKE PROBLEMS.
8421
8422 Dynamic Loading Problems With GNU as and GNU ld, ld.so.1: ./perl: fatal:
8423 relocation error:, dlopen: stub interception failed, #error "No
8424 DATAMODEL_NATIVE specified", sh: ar: not found
8425
8426 =item MAKE TEST
8427
8428 =over 4
8429
8430 =item op/stat.t test 4 in Solaris
8431
8432 =item nss_delete core dump from op/pwent or op/grent
8433
8434 =back
8435
8436 =item PREBUILT BINARIES OF PERL FOR SOLARIS.
8437
8438 =item RUNTIME ISSUES FOR PERL ON SOLARIS.
8439
8440 =over 4
8441
8442 =item Limits on Numbers of Open Files on Solaris.
8443
8444 =back
8445
8446 =item SOLARIS-SPECIFIC MODULES.
8447
8448 =item SOLARIS-SPECIFIC PROBLEMS WITH MODULES.
8449
8450 =over 4
8451
8452 =item Proc::ProcessTable on Solaris
8453
8454 =item BSD::Resource on Solaris
8455
8456 =item Net::SSLeay on Solaris
8457
8458 =back
8459
8460 =item AUTHOR
8461
8462 =item LAST MODIFIED
8463
8464 =back
8465
8466 =head2 perltru64, README.tru64 - Perl version 5 on Tru64 (formerly known as
8467 Digital UNIX formerly known as DEC OSF/1) systems
8468
8469 =over 4
8470
8471 =item DESCRIPTION
8472
8473 =over 4
8474
8475 =item Compiling Perl 5 on Tru64
8476
8477 =item Using Large Files with Perl on Tru64
8478
8479 =item Threaded Perl on Tru64
8480
8481 =item Long Doubles on Tru64
8482
8483 =item DB_File tests failing on Tru64
8484
8485 =item 64-bit Perl on Tru64
8486
8487 =item Warnings about floating-point overflow when compiling Perl on Tru64
8488
8489 =back
8490
8491 =item Testing Perl on Tru64
8492
8493 =item ext/ODBM_File/odbm Test Failing With Static Builds
8494
8495 =item Perl Fails Because Of Unresolved Symbol sockatmark
8496
8497 =item AUTHOR
8498
8499 =back
8500
8501 =head2 perluts - Perl under UTS
8502
8503 =over 4
8504
8505 =item SYNOPSIS
8506
8507 =item DESCRIPTION
8508
8509 =item BUILDING PERL ON UTS
8510
8511 =item Installing the built perl on UTS
8512
8513 =item AUTHOR
8514
8515 =back
8516
8517 =head2 perlvmesa, README.vmesa - building and installing Perl for VM/ESA.
8518
8519 =over 4
8520
8521 =item SYNOPSIS
8522
8523 =item DESCRIPTION
8524
8525 =over 4
8526
8527 =item Unpacking Perl Distribution on VM/ESA
8528
8529 =item Setup Perl and utilities on VM/ESA
8530
8531 =item Configure Perl on VM/ESA
8532
8533 =item Testing Anomalies of Perl on VM/ESA
8534
8535 =item Usage Hints for Perl on VM/ESA
8536
8537 =back
8538
8539 =item AUTHORS
8540
8541 =item SEE ALSO
8542
8543 =over 4
8544
8545 =item Mailing list for Perl on VM/ESA
8546
8547 =back
8548
8549 =back
8550
8551 =head2 perlvms - VMS-specific documentation for Perl
8552
8553 =over 4
8554
8555 =item DESCRIPTION
8556
8557 =item Installation
8558
8559 =item Organization of Perl Images
8560
8561 =over 4
8562
8563 =item Core Images
8564
8565 =item Perl Extensions
8566
8567 =item Installing static extensions
8568
8569 =item Installing dynamic extensions
8570
8571 =back
8572
8573 =item File specifications
8574
8575 =over 4
8576
8577 =item Syntax
8578
8579 =item Wildcard expansion
8580
8581 =item Pipes
8582
8583 =back
8584
8585 =item PERL5LIB and PERLLIB
8586
8587 =item Command line
8588
8589 =over 4
8590
8591 =item I/O redirection and backgrounding
8592
8593 =item Command line switches
8594
8595 -i, -S, -u
8596
8597 =back
8598
8599 =item Perl functions
8600
8601 File tests, backticks, binmode FILEHANDLE, crypt PLAINTEXT, USER, dump,
8602 exec LIST, fork, getpwent, getpwnam, getpwuid, gmtime, kill, qx//, select
8603 (system call), stat EXPR, system LIST, time, times, unlink LIST, utime
8604 LIST, waitpid PID,FLAGS
8605
8606 =item Perl variables
8607
8608 %ENV, CRTL_ENV, CLISYM_[LOCAL], Any other string, $!, $^E, $?, $|
8609
8610 =item Standard modules with VMS-specific differences
8611
8612 =over 4
8613
8614 =item SDBM_File
8615
8616 =back
8617
8618 =item Revision date
8619
8620 =item AUTHOR
8621
8622 =back
8623
8624 =head2 perlvos, README.vos - Perl for Stratus VOS
8625
8626 =over 4
8627
8628 =item SYNOPSIS
8629
8630 =item BUILDING PERL FOR VOS
8631
8632 =item INSTALLING PERL IN VOS
8633
8634 =item USING PERL IN VOS
8635
8636 =over 4
8637
8638 =item Restrictions of Perl on VOS
8639
8640 =item Handling of underflow and overflow
8641
8642 =back
8643
8644 =item TEST STATUS
8645
8646 =item SUPPORT STATUS
8647
8648 =item AUTHOR
8649
8650 =item LAST UPDATE
8651
8652 =back
8653
8654 =head2 perlwin32 - Perl under Windows
8655
8656 =over 4
8657
8658 =item SYNOPSIS
8659
8660 =item DESCRIPTION
8661
8662 =over 4
8663
8664 =item Setting Up Perl on Win32
8665
8666 Make, Command Shell, Borland C++, Microsoft Visual C++, Microsoft Platform
8667 SDK 64-bit Compiler, MinGW32 with gcc, MinGW release 1
8668
8669 =item Building
8670
8671 =item Testing Perl on Win32
8672
8673 =item Installation of Perl on Win32
8674
8675 =item Usage Hints for Perl on Win32
8676
8677 Environment Variables, File Globbing, Using perl from the command line,
8678 Building Extensions, Command-line Wildcard Expansion, Win32 Specific
8679 Extensions, Notes on 64-bit Windows
8680
8681 =item Running Perl Scripts
8682
8683 Miscellaneous Things
8684
8685 =back
8686
8687 =item BUGS AND CAVEATS
8688
8689 =item AUTHORS
8690
8691 Gary Ng E<lt>71564.1743@CompuServe.COME<gt>, Gurusamy Sarathy
8692 E<lt>gsar@activestate.comE<gt>, Nick Ing-Simmons
8693 E<lt>nick@ing-simmons.netE<gt>
8694
8695 =item SEE ALSO
8696
8697 =item HISTORY
8698
8699 =back
8700
8701 =head1 PRAGMA DOCUMENTATION
8702
8703 =head2 attrs - set/get attributes of a subroutine (deprecated)
8704
8705 =over 4
8706
8707 =item SYNOPSIS
8708
8709 =item DESCRIPTION
8710
8711 method, locked
8712
8713 =back
8714
8715 =head2 re - Perl pragma to alter regular expression behaviour
8716
8717 =over 4
8718
8719 =item SYNOPSIS
8720
8721 =item DESCRIPTION
8722
8723 =back
8724
8725 =head2 threadshared::shared, threads::shared - Perl extension for sharing
8726 data structures between threads
8727
8728 =over 4
8729
8730 =item SYNOPSIS
8731
8732 =item DESCRIPTION
8733
8734 =item EXPORT
8735
8736 =item FUNCTIONS
8737
8738 share VARIABLE, lock VARIABLE, cond_wait VARIABLE, cond_signal VARIABLE,
8739 cond_broadcast VARIABLE
8740
8741 =item NOTES
8742
8743 =item BUGS
8744
8745 =item AUTHOR
8746
8747 =item SEE ALSO
8748
8749 =back
8750
8751 =head2 threads - Perl extension allowing use of interpreter based threads
8752 from perl
8753
8754 =over 4
8755
8756 =item SYNOPSIS
8757
8758 =item DESCRIPTION
8759
8760 $thread = threads->create(function, LIST), $thread->join, $thread->detach,
8761 threads->self, $thread->tid, threads->object( tid ), threads->yield();,
8762 threads->list();, async BLOCK;
8763
8764 =item WARNINGS
8765
8766 A thread exited while %d other threads were still running
8767
8768 =item TODO
8769
8770 =item BUGS
8771
8772 Parent-Child threads, Returning objects, Creating threads inside BEGIN
8773 blocks, PERL_OLD_SIGNALS are not threadsafe, will not be
8774
8775 =item AUTHOR and COPYRIGHT
8776
8777 =item SEE ALSO
8778
8779 =back
8780
8781 =head2 assertions - select assertions in blocks of code
8782
8783 =over 4
8784
8785 =item SYNOPSIS
8786
8787 =item DESCRIPTION
8788
8789 =item SEE ALSO
8790
8791 =item AUTHOR
8792
8793 =item COPYRIGHT AND LICENSE
8794
8795 =back
8796
8797 =head2 assertions::activate - activate assertions
8798
8799 =over 4
8800
8801 =item SYNOPSIS
8802
8803 =item DESCRIPTION
8804
8805 =item SEE ALSO
8806
8807 =item AUTHOR
8808
8809 =item COPYRIGHT AND LICENSE
8810
8811 =back
8812
8813 =head2 attributes - get/set subroutine or variable attributes
8814
8815 =over 4
8816
8817 =item SYNOPSIS
8818
8819 =item DESCRIPTION
8820
8821 =over 4
8822
8823 =item Built-in Attributes
8824
8825 locked, method, lvalue
8826
8827 =item Available Subroutines
8828
8829 get, reftype
8830
8831 =item Package-specific Attribute Handling
8832
8833 FETCH_I<type>_ATTRIBUTES, MODIFY_I<type>_ATTRIBUTES
8834
8835 =item Syntax of Attribute Lists
8836
8837 =back
8838
8839 =item EXPORTS
8840
8841 =over 4
8842
8843 =item Default exports
8844
8845 =item Available exports
8846
8847 =item Export tags defined
8848
8849 =back
8850
8851 =item EXAMPLES
8852
8853 =item SEE ALSO
8854
8855 =back
8856
8857 =head2 autouse - postpone load of modules until a function is used
8858
8859 =over 4
8860
8861 =item SYNOPSIS
8862
8863 =item DESCRIPTION
8864
8865 =item WARNING
8866
8867 =item AUTHOR
8868
8869 =item SEE ALSO
8870
8871 =back
8872
8873 =head2 base - Establish IS-A relationship with base class at compile time
8874
8875 =over 4
8876
8877 =item SYNOPSIS
8878
8879 =item DESCRIPTION
8880
8881 =item HISTORY
8882
8883 =item SEE ALSO
8884
8885 =back
8886
8887 =head2 bigint - Transparent BigInteger support for Perl
8888
8889 =over 4
8890
8891 =item SYNOPSIS
8892
8893 =item DESCRIPTION
8894
8895 =over 4
8896
8897 =item OPTIONS
8898
8899 a or accuracy, p or precision, t or trace, l or lib, v or version
8900
8901 =item MATH LIBRARY
8902
8903 =item INTERNAL FORMAT
8904
8905 =item SIGN
8906
8907 =item METHODS
8908
8909 =item CAVEAT
8910
8911 =back
8912
8913 =item MODULES USED
8914
8915 =item EXAMPLES
8916
8917 =item LICENSE
8918
8919 =item SEE ALSO
8920
8921 =item AUTHORS
8922
8923 =back
8924
8925 =head2 bignum - Transparent BigNumber support for Perl
8926
8927 =over 4
8928
8929 =item SYNOPSIS
8930
8931 =item DESCRIPTION
8932
8933 =over 4
8934
8935 =item OPTIONS
8936
8937 a or accuracy, p or precision, t or trace, l or lib, v or version
8938
8939 =item METHODS
8940
8941 =item CAVEAT
8942
8943 inf(), NaN(), upgrade()
8944
8945 =item MATH LIBRARY
8946
8947 =item INTERNAL FORMAT
8948
8949 =item SIGN
8950
8951 =back
8952
8953 =item MODULES USED
8954
8955 =item EXAMPLES
8956
8957 =item LICENSE
8958
8959 =item SEE ALSO
8960
8961 =item AUTHORS
8962
8963 =back
8964
8965 =head2 bigrat - Transparent BigNumber/BigRationale support for Perl
8966
8967 =over 4
8968
8969 =item SYNOPSIS
8970
8971 =item DESCRIPTION
8972
8973 =over 4
8974
8975 =item MODULES USED
8976
8977 =item MATH LIBRARY
8978
8979 =item SIGN
8980
8981 =item METHODS
8982
8983 =item CAVEAT
8984
8985 =back
8986
8987 =item EXAMPLES
8988
8989         perl -Mbigrat -le 'print sqrt(33)'
8990         perl -Mbigrat -le 'print 2*255'
8991         perl -Mbigrat -le 'print 4.5+2*255'
8992         perl -Mbigrat -le 'print 3/7 + 5/7 + 8/3'       
8993         perl -Mbigrat -le 'print 12->is_odd()';
8994
8995 =item LICENSE
8996
8997 =item SEE ALSO
8998
8999 =item AUTHORS
9000
9001 =back
9002
9003 =head2 blib - Use MakeMaker's uninstalled version of a package
9004
9005 =over 4
9006
9007 =item SYNOPSIS
9008
9009 =item DESCRIPTION
9010
9011 =item BUGS
9012
9013 =item AUTHOR
9014
9015 =back
9016
9017 =head2 bytes - Perl pragma to force byte semantics rather than character
9018 semantics
9019
9020 =over 4
9021
9022 =item SYNOPSIS
9023
9024 =item DESCRIPTION
9025
9026 =item SEE ALSO
9027
9028 =back
9029
9030 =head2 charnames - define character names for C<\N{named}> string literal
9031 escapes
9032
9033 =over 4
9034
9035 =item SYNOPSIS
9036
9037 =item DESCRIPTION
9038
9039 =item CUSTOM TRANSLATORS
9040
9041 =item CUSTOM ALIASES
9042
9043 =over 4
9044
9045 =item Anonymous hashes
9046
9047 =item Alias file
9048
9049 =item Alias shortcut
9050
9051 =back
9052
9053 =item charnames::viacode(code)
9054
9055 =item charnames::vianame(name)
9056
9057 =item ALIASES
9058
9059 =item ILLEGAL CHARACTERS
9060
9061 =item BUGS
9062
9063 =back
9064
9065 =head2 constant - Perl pragma to declare constants
9066
9067 =over 4
9068
9069 =item SYNOPSIS
9070
9071 =item DESCRIPTION
9072
9073 =item NOTES
9074
9075 =over 4
9076
9077 =item List constants
9078
9079 =item Defining multiple constants at once
9080
9081 =item Magic constants
9082
9083 =back
9084
9085 =item TECHNICAL NOTES
9086
9087 =item BUGS
9088
9089 =item AUTHOR
9090
9091 =item COPYRIGHT
9092
9093 =back
9094
9095 =head2 diagnostics - Perl compiler pragma to force verbose warning
9096 diagnostics
9097
9098 =over 4
9099
9100 =item SYNOPSIS
9101
9102 =item DESCRIPTION
9103
9104 =over 4
9105
9106 =item The C<diagnostics> Pragma
9107
9108 =item The I<splain> Program
9109
9110 =back
9111
9112 =item EXAMPLES
9113
9114 =item INTERNALS
9115
9116 =item BUGS
9117
9118 =item AUTHOR
9119
9120 =back
9121
9122 =head2 encoding - allows you to write your script in non-ascii or non-utf8
9123
9124 =over 4
9125
9126 =item SYNOPSIS
9127
9128 =item ABSTRACT
9129
9130 =over 4
9131
9132 =item Literal Conversions
9133
9134 =item PerlIO layers for C<STD(IN|OUT)>
9135
9136 =back
9137
9138 =item FEATURES THAT REQUIRE 5.8.1
9139
9140 "NON-EUC" doublebyte encodings, tr//, DATA pseudo-filehandle
9141
9142 =item USAGE
9143
9144 use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
9145 I<ENCNAME_IN> ...] ;, use encoding I<ENCNAME> Filter=E<gt>1;, no encoding;
9146
9147 =item The Filter Option
9148
9149 =over 4
9150
9151 =item Filter-related changes at Encode version 1.87
9152
9153 =back
9154
9155 =item CAVEATS
9156
9157 =over 4
9158
9159 =item NOT SCOPED
9160
9161 =item DO NOT MIX MULTIPLE ENCODINGS
9162
9163 =item tr/// with ranges
9164
9165 Legend of characters above
9166
9167 =back
9168
9169 =item EXAMPLE - Greekperl
9170
9171 =item KNOWN PROBLEMS
9172
9173 literals in regex that are longer than 127 bytes, EBCDIC, format
9174
9175 =item HISTORY
9176
9177 =item SEE ALSO
9178
9179 =back
9180
9181 =head2 fields - compile-time class fields
9182
9183 =over 4
9184
9185 =item SYNOPSIS
9186
9187 =item DESCRIPTION
9188
9189 new, phash
9190
9191 =item SEE ALSO
9192
9193 =back
9194
9195 =head2 filetest - Perl pragma to control the filetest permission operators
9196
9197 =over 4
9198
9199 =item SYNOPSIS
9200
9201 =item DESCRIPTION
9202
9203 =over 4
9204
9205 =item subpragma access
9206
9207 =back
9208
9209 =back
9210
9211 =head2 if - C<use> a Perl module if a condition holds
9212
9213 =over 4
9214
9215 =item SYNOPSIS
9216
9217 =item DESCRIPTION
9218
9219 =item BUGS
9220
9221 =item AUTHOR
9222
9223 =back
9224
9225 =head2 integer - Perl pragma to use integer arithmetic instead of floating
9226 point
9227
9228 =over 4
9229
9230 =item SYNOPSIS
9231
9232 =item DESCRIPTION
9233
9234 =back
9235
9236 =head2 less - perl pragma to request less of something from the compiler
9237
9238 =over 4
9239
9240 =item SYNOPSIS
9241
9242 =item DESCRIPTION
9243
9244 =back
9245
9246 =head2 lib - manipulate @INC at compile time
9247
9248 =over 4
9249
9250 =item SYNOPSIS
9251
9252 =item DESCRIPTION
9253
9254 =over 4
9255
9256 =item Adding directories to @INC
9257
9258 =item Deleting directories from @INC
9259
9260 =item Restoring original @INC
9261
9262 =back
9263
9264 =item CAVEATS
9265
9266 =item NOTES
9267
9268 =item SEE ALSO
9269
9270 =item AUTHOR
9271
9272 =back
9273
9274 =head2 locale - Perl pragma to use and avoid POSIX locales for built-in
9275 operations
9276
9277 =over 4
9278
9279 =item SYNOPSIS
9280
9281 =item DESCRIPTION
9282
9283 =back
9284
9285 =head2 open - perl pragma to set default PerlIO layers for input and output
9286
9287 =over 4
9288
9289 =item SYNOPSIS
9290
9291 =item DESCRIPTION
9292
9293 =item NONPERLIO FUNCTIONALITY
9294
9295 =item IMPLEMENTATION DETAILS
9296
9297 =item SEE ALSO
9298
9299 =back
9300
9301 =head2 ops - Perl pragma to restrict unsafe operations when compiling
9302
9303 =over 4
9304
9305 =item SYNOPSIS  
9306
9307 =item DESCRIPTION
9308
9309 =item SEE ALSO
9310
9311 =back
9312
9313 =head2 overload - Package for overloading perl operations
9314
9315 =over 4
9316
9317 =item SYNOPSIS
9318
9319 =item DESCRIPTION
9320
9321 =over 4
9322
9323 =item Declaration of overloaded functions
9324
9325 =item Calling Conventions for Binary Operations
9326
9327 FALSE, TRUE, C<undef>
9328
9329 =item Calling Conventions for Unary Operations
9330
9331 =item Calling Conventions for Mutators
9332
9333 C<++> and C<-->, C<x=> and other assignment versions
9334
9335 =item Overloadable Operations
9336
9337 I<Arithmetic operations>, I<Comparison operations>, I<Bit operations>,
9338 I<Increment and decrement>, I<Transcendental functions>, I<Boolean, string
9339 and numeric conversion>, I<Iteration>, I<Dereferencing>, I<Special>
9340
9341 =item Inheritance and overloading
9342
9343 Strings as values of C<use overload> directive, Overloading of an operation
9344 is inherited by derived classes
9345
9346 =back
9347
9348 =item SPECIAL SYMBOLS FOR C<use overload>
9349
9350 =over 4
9351
9352 =item Last Resort
9353
9354 =item Fallback
9355
9356 C<undef>, TRUE, defined, but FALSE
9357
9358 =item Copy Constructor
9359
9360 B<Example>
9361
9362 =back
9363
9364 =item MAGIC AUTOGENERATION
9365
9366 I<Assignment forms of arithmetic operations>, I<Conversion operations>,
9367 I<Increment and decrement>, C<abs($a)>, I<Unary minus>, I<Negation>,
9368 I<Concatenation>, I<Comparison operations>, I<Iterator>, I<Dereferencing>,
9369 I<Copy operator>
9370
9371 =item Losing overloading
9372
9373 =item Run-time Overloading
9374
9375 =item Public functions
9376
9377 overload::StrVal(arg), overload::Overloaded(arg), overload::Method(obj,op)
9378
9379 =item Overloading constants
9380
9381 integer, float, binary, q, qr
9382
9383 =item IMPLEMENTATION
9384
9385 =item Metaphor clash
9386
9387 =item Cookbook
9388
9389 =over 4
9390
9391 =item Two-face scalars
9392
9393 =item Two-face references
9394
9395 =item Symbolic calculator
9396
9397 =item I<Really> symbolic calculator
9398
9399 =back
9400
9401 =item AUTHOR
9402
9403 =item DIAGNOSTICS
9404
9405 Odd number of arguments for overload::constant, `%s' is not an overloadable
9406 type, `%s' is not a code reference
9407
9408 =item BUGS
9409
9410 =back
9411
9412 =head2 sigtrap - Perl pragma to enable simple signal handling
9413
9414 =over 4
9415
9416 =item SYNOPSIS
9417
9418 =item DESCRIPTION
9419
9420 =item OPTIONS
9421
9422 =over 4
9423
9424 =item SIGNAL HANDLERS
9425
9426 B<stack-trace>, B<die>, B<handler> I<your-handler>
9427
9428 =item SIGNAL LISTS
9429
9430 B<normal-signals>, B<error-signals>, B<old-interface-signals>
9431
9432 =item OTHER
9433
9434 B<untrapped>, B<any>, I<signal>, I<number>
9435
9436 =back
9437
9438 =item EXAMPLES
9439
9440 =back
9441
9442 =head2 sort - perl pragma to control sort() behaviour
9443
9444 =over 4
9445
9446 =item SYNOPSIS
9447
9448 =item DESCRIPTION
9449
9450 =item CAVEATS
9451
9452 =back
9453
9454 =head2 strict - Perl pragma to restrict unsafe constructs
9455
9456 =over 4
9457
9458 =item SYNOPSIS
9459
9460 =item DESCRIPTION
9461
9462 C<strict refs>, C<strict vars>, C<strict subs>
9463
9464 =item HISTORY
9465
9466 =back
9467
9468 =head2 subs - Perl pragma to predeclare sub names
9469
9470 =over 4
9471
9472 =item SYNOPSIS
9473
9474 =item DESCRIPTION
9475
9476 =back
9477
9478 =head2 threadshared, threads::shared - Perl extension for sharing data
9479 structures between threads
9480
9481 =over 4
9482
9483 =item SYNOPSIS
9484
9485 =item DESCRIPTION
9486
9487 =item EXPORT
9488
9489 =item FUNCTIONS
9490
9491 share VARIABLE, lock VARIABLE, cond_wait VARIABLE, cond_signal VARIABLE,
9492 cond_broadcast VARIABLE
9493
9494 =item NOTES
9495
9496 =item BUGS
9497
9498 =item AUTHOR
9499
9500 =item SEE ALSO
9501
9502 =back
9503
9504 =head2 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source
9505 code
9506
9507 =over 4
9508
9509 =item SYNOPSIS
9510
9511 =item DESCRIPTION
9512
9513 =over 4
9514
9515 =item Utility functions
9516
9517 $num_octets = utf8::upgrade($string), $success = utf8::downgrade($string[,
9518 FAIL_OK]), utf8::encode($string), utf8::decode($string), $flag =
9519 utf8::is_utf8(STRING), $flag = utf8::valid(STRING)
9520
9521 =back
9522
9523 =item BUGS
9524
9525 =item SEE ALSO
9526
9527 =back
9528
9529 =head2 vars - Perl pragma to predeclare global variable names (obsolete)
9530
9531 =over 4
9532
9533 =item SYNOPSIS
9534
9535 =item DESCRIPTION
9536
9537 =back
9538
9539 =head2 version - Perl extension for Version Objects
9540
9541 =over 4
9542
9543 =item SYNOPSIS
9544
9545 =item DESCRIPTION
9546
9547 =over 4
9548
9549 =item What IS a version
9550
9551 Numeric Versions, V-String Versions
9552
9553 =item Numeric Versions
9554
9555 =item V-String Versions
9556
9557 =item Object Methods
9558
9559 New Operator, Stringification, Numification, Comparison operators, Logical
9560 Operators
9561
9562 =item Quoting
9563
9564 =item Types of Versions Objects
9565
9566 Ordinary versions, alpha versions
9567
9568 =item Replacement UNIVERSAL::VERSION
9569
9570 =back
9571
9572 =item EXPORT
9573
9574 =item AUTHOR
9575
9576 =item SEE ALSO
9577
9578 =back
9579
9580 =head2 vmsish - Perl pragma to control VMS-specific language features
9581
9582 =over 4
9583
9584 =item SYNOPSIS
9585
9586 =item DESCRIPTION
9587
9588 C<vmsish status>, C<vmsish exit>, C<vmsish time>, C<vmsish hushed>
9589
9590 =back
9591
9592 =head2 warnings - Perl pragma to control optional warnings
9593
9594 =over 4
9595
9596 =item SYNOPSIS
9597
9598 =item DESCRIPTION
9599
9600 use warnings::register, warnings::enabled(), warnings::enabled($category),
9601 warnings::enabled($object), warnings::warn($message),
9602 warnings::warn($category, $message), warnings::warn($object, $message),
9603 warnings::warnif($message), warnings::warnif($category, $message),
9604 warnings::warnif($object, $message)
9605
9606 =back
9607
9608 =head2 warnings::register - warnings import function
9609
9610 =over 4
9611
9612 =item SYNOPSIS
9613
9614 =item DESCRIPTION
9615
9616 =back
9617
9618 =head1 MODULE DOCUMENTATION
9619
9620 =head2 AnyDBM_File - provide framework for multiple DBMs
9621
9622 =over 4
9623
9624 =item SYNOPSIS
9625
9626 =item DESCRIPTION
9627
9628 =over 4
9629
9630 =item DBM Comparisons
9631
9632 [0], [1], [2], [3]
9633
9634 =back
9635
9636 =item SEE ALSO
9637
9638 =back
9639
9640 =head2 Attribute::Handlers - Simpler definition of attribute handlers
9641
9642 =over 4
9643
9644 =item VERSION
9645
9646 =item SYNOPSIS
9647
9648 =item DESCRIPTION
9649
9650 [0], [1], [2], [3], [4], [5]
9651
9652 =over 4
9653
9654 =item Typed lexicals
9655
9656 =item Type-specific attribute handlers
9657
9658 =item Non-interpretive attribute handlers
9659
9660 =item Phase-specific attribute handlers
9661
9662 =item Attributes as C<tie> interfaces
9663
9664 =back
9665
9666 =item EXAMPLES
9667
9668 =item DIAGNOSTICS
9669
9670 C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
9671 attributes>, C<Declaration of %s attribute in package %s may clash with
9672 future reserved word>, C<Can't have two ATTR specifiers on one subroutine>,
9673 C<Can't autotie a %s>, C<Internal error: %s symbol went missing>, C<Won't
9674 be able to apply END handler>
9675
9676 =item AUTHOR
9677
9678 =item BUGS
9679
9680 =item COPYRIGHT
9681
9682 =back
9683
9684 =head2 AutoLoader - load subroutines only on demand
9685
9686 =over 4
9687
9688 =item SYNOPSIS
9689
9690 =item DESCRIPTION
9691
9692 =over 4
9693
9694 =item Subroutine Stubs
9695
9696 =item Using B<AutoLoader>'s AUTOLOAD Subroutine
9697
9698 =item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
9699
9700 =item Package Lexicals
9701
9702 =item Not Using AutoLoader
9703
9704 =item B<AutoLoader> vs. B<SelfLoader>
9705
9706 =back
9707
9708 =item CAVEATS
9709
9710 =item SEE ALSO
9711
9712 =back
9713
9714 =head2 AutoSplit - split a package for autoloading
9715
9716 =over 4
9717
9718 =item SYNOPSIS
9719
9720 =item DESCRIPTION
9721
9722 $keep, $check, $modtime
9723
9724 =over 4
9725
9726 =item Multiple packages
9727
9728 =back
9729
9730 =item DIAGNOSTICS
9731
9732 =back
9733
9734 =head2 B - The Perl Compiler
9735
9736 =over 4
9737
9738 =item SYNOPSIS
9739
9740 =item DESCRIPTION
9741
9742 =item OVERVIEW
9743
9744 =item Utility Functions
9745
9746 =over 4
9747
9748 =item Functions Returning C<B::SV>, C<B::AV>, C<B::HV>, and C<B::CV>
9749 objects
9750
9751 sv_undef, sv_yes, sv_no, svref_2object(SVREF), amagic_generation, init_av,
9752 check_av, begin_av, end_av, comppadlist, regex_padav, main_cv
9753
9754 =item Functions for Examining the Symbol Table
9755
9756 walksymtable(SYMREF, METHOD, RECURSE, PREFIX)
9757
9758 =item Functions Returning C<B::OP> objects or for walking op trees
9759
9760 main_root, main_start, walkoptree(OP, METHOD), walkoptree_debug(DEBUG)
9761
9762 =item Miscellaneous Utility Functions
9763
9764 ppname(OPNUM), hash(STR), cast_I32(I), minus_c, cstring(STR),
9765 perlstring(STR), class(OBJ), threadsv_names
9766
9767 =back
9768
9769 =item OVERVIEW OF CLASSES
9770
9771 =over 4
9772
9773 =item SV-RELATED CLASSES
9774
9775 =item B::SV Methods
9776
9777 REFCNT, FLAGS, object_2svref
9778
9779 =item B::IV Methods
9780
9781 IV, IVX, UVX, int_value, needs64bits, packiv
9782
9783 =item B::NV Methods
9784
9785 NV, NVX
9786
9787 =item B::RV Methods
9788
9789 RV
9790
9791 =item B::PV Methods
9792
9793 PV, RV, PVX
9794
9795 =item B::PVMG Methods
9796
9797 MAGIC, SvSTASH
9798
9799 =item B::MAGIC Methods
9800
9801 MOREMAGIC, precomp, PRIVATE, TYPE, FLAGS, OBJ, PTR, REGEX
9802
9803 =item B::PVLV Methods
9804
9805 TARGOFF, TARGLEN, TYPE, TARG
9806
9807 =item B::BM Methods
9808
9809 USEFUL, PREVIOUS, RARE, TABLE
9810
9811 =item B::GV Methods
9812
9813 is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
9814 LINE, FILE, FILEGV, GvREFCNT, FLAGS
9815
9816 =item B::IO Methods
9817
9818 LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
9819 BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS, IsSTD
9820
9821 =item B::AV Methods
9822
9823 FILL, MAX, OFF, ARRAY, ARRAYelt, AvFLAGS
9824
9825 =item B::CV Methods
9826
9827 STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, OUTSIDE_SEQ, XSUB,
9828 XSUBANY, CvFLAGS, const_sv
9829
9830 =item B::HV Methods
9831
9832 FILL, MAX, KEYS, RITER, NAME, PMROOT, ARRAY
9833
9834 =item OP-RELATED CLASSES
9835
9836 =item B::OP Methods
9837
9838 next, sibling, name, ppaddr, desc, targ, type, seq, flags, private
9839
9840 =item B::UNOP METHOD
9841
9842 first
9843
9844 =item B::BINOP METHOD
9845
9846 last
9847
9848 =item B::LOGOP METHOD
9849
9850 other
9851
9852 =item B::LISTOP METHOD
9853
9854 children
9855
9856 =item B::PMOP Methods
9857
9858 pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, pmdynflags,
9859 pmpermflags, precomp, pmoffset
9860
9861 =item B::SVOP METHOD
9862
9863 sv, gv
9864
9865 =item B::PADOP METHOD
9866
9867 padix
9868
9869 =item B::PVOP METHOD
9870
9871 pv
9872
9873 =item B::LOOP Methods
9874
9875 redoop, nextop, lastop
9876
9877 =item B::COP Methods
9878
9879 label, stash, stashpv, file, cop_seq, arybase, line, warnings, io
9880
9881 =back
9882
9883 =item AUTHOR
9884
9885 =back
9886
9887 =head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
9888 bytecode
9889
9890 =over 4
9891
9892 =item SYNOPSIS
9893
9894 =item DESCRIPTION
9895
9896 %insn_data, @insn_name, @optype, @specialsv_name
9897
9898 =item AUTHOR
9899
9900 =back
9901
9902 =head2 B::Assembler - Assemble Perl bytecode
9903
9904 =over 4
9905
9906 =item SYNOPSIS
9907
9908 =item DESCRIPTION
9909
9910 =item AUTHORS
9911
9912 =back
9913
9914 =head2 B::Bblock - Walk basic blocks
9915
9916 =over 4
9917
9918 =item SYNOPSIS
9919
9920 =item DESCRIPTION
9921
9922 =over 4
9923
9924 =item Functions
9925
9926 B<find_leaders>
9927
9928 =back
9929
9930 =item AUTHOR
9931
9932 =back
9933
9934 =head2 B::Bytecode - Perl compiler's bytecode backend
9935
9936 =over 4
9937
9938 =item SYNOPSIS
9939
9940 =item DESCRIPTION
9941
9942 =item EXAMPLE
9943
9944 =item OPTIONS
9945
9946 B<-b>, B<-H>, B<-k>, B<-o>I<outfile>, B<-s>
9947
9948 =item KNOWN BUGS
9949
9950 =item NOTICE
9951
9952 =item AUTHORS
9953
9954 =back
9955
9956 =head2 B::C - Perl compiler's C backend
9957
9958 =over 4
9959
9960 =item SYNOPSIS
9961
9962 =item DESCRIPTION
9963
9964 =item OPTIONS
9965
9966 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-D>, B<-Do>, B<-Dc>, B<-DA>,
9967 B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fsave-data>, B<-fppaddr>, B<-fwarn-sv>,
9968 B<-fuse-script-name>, B<-fsave-sig-hash>, B<-On>, B<-O0>, B<-O1>, B<-O2>,
9969 B<-llimit>
9970
9971 =item EXAMPLES
9972
9973 =item BUGS
9974
9975 =item AUTHOR
9976
9977 =back
9978
9979 =head2 B::CC - Perl compiler's optimized C translation backend
9980
9981 =over 4
9982
9983 =item SYNOPSIS
9984
9985 =item DESCRIPTION
9986
9987 =item OPTIONS
9988
9989 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-mModulename>, B<-D>, B<-Dr>,
9990 B<-DO>, B<-Ds>, B<-Dp>, B<-Dq>, B<-Dl>, B<-Dt>, B<-f>,
9991 B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
9992
9993 =item EXAMPLES
9994
9995 =item BUGS
9996
9997 =item DIFFERENCES
9998
9999 =over 4
10000
10001 =item Loops
10002
10003 =item Context of ".."
10004
10005 =item Arithmetic
10006
10007 =item Deprecated features
10008
10009 =back
10010
10011 =item AUTHOR
10012
10013 =back
10014
10015 =head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
10016
10017 =over 4
10018
10019 =item SYNOPSIS
10020
10021 =item DESCRIPTION
10022
10023 =item EXAMPLE
10024
10025 =item OPTIONS
10026
10027 B<-basic>, B<-exec>, B<-tree>, B<-compact>, B<-loose>, B<-vt>, B<-ascii>,
10028 B<-main>, B<-base>I<n>, B<-bigendian>, B<-littleendian>, B<-concise>,
10029 B<-terse>, B<-linenoise>, B<-debug>, B<-env>
10030
10031 =item FORMATTING SPECIFICATIONS
10032
10033 B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
10034 B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
10035 B<#>I<var>, B<#>I<var>I<N>, B<~>, B<#addr>, B<#arg>, B<#class>,
10036 B<#classsym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
10037 B<#flags>, B<#flagval>, B<#hyphseq>, B<#label>, B<#lastaddr>, B<#name>,
10038 B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>, B<#private>, B<#privval>,
10039 B<#seq>, B<#seqnum>, B<#sibaddr>, B<#svaddr>, B<#svclass>, B<#svval>,
10040 B<#targ>, B<#targarg>, B<#targarglife>, B<#typenum>
10041
10042 =item ABBREVIATIONS
10043
10044 =over 4
10045
10046 =item OP flags abbreviations
10047
10048 =item OP class abbreviations
10049
10050 =back
10051
10052 =item Using B::Concise outside of the O framework
10053
10054 =item AUTHOR
10055
10056 =back
10057
10058 =head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
10059
10060 =over 4
10061
10062 =item SYNOPSIS
10063
10064 =item DESCRIPTION
10065
10066 =item AUTHOR
10067
10068 =back
10069
10070 =head2 B::Deparse - Perl compiler backend to produce perl code
10071
10072 =over 4
10073
10074 =item SYNOPSIS
10075
10076 =item DESCRIPTION
10077
10078 =item OPTIONS
10079
10080 B<-d>, B<-f>I<FILE>, B<-l>, B<-p>, B<-P>, B<-q>, B<-s>I<LETTERS>, B<C>,
10081 B<i>I<NUMBER>, B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
10082
10083 =item USING B::Deparse AS A MODULE
10084
10085 =over 4
10086
10087 =item Synopsis
10088
10089 =item Description
10090
10091 =item new
10092
10093 =item ambient_pragmas
10094
10095 strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
10096
10097 =item coderef2text
10098
10099 =back
10100
10101 =item BUGS
10102
10103 =item AUTHOR
10104
10105 =back
10106
10107 =head2 B::Disassembler - Disassemble Perl bytecode
10108
10109 =over 4
10110
10111 =item SYNOPSIS
10112
10113 =item DESCRIPTION
10114
10115 =item AUTHOR
10116
10117 =back
10118
10119 =head2 B::Lint - Perl lint
10120
10121 =over 4
10122
10123 =item SYNOPSIS
10124
10125 =item DESCRIPTION
10126
10127 =item OPTIONS AND LINT CHECKS
10128
10129 B<context>, B<implicit-read> and B<implicit-write>, B<bare-subs>,
10130 B<dollar-underscore>, B<private-names>, B<undefined-subs>,
10131 B<regexp-variables>, B<all>, B<none>
10132
10133 =item NON LINT-CHECK OPTIONS
10134
10135 B<-u Package>
10136
10137 =item BUGS
10138
10139 =item AUTHOR
10140
10141 =back
10142
10143 =head2 B::O, O - Generic interface to Perl Compiler backends
10144
10145 =over 4
10146
10147 =item SYNOPSIS
10148
10149 =item DESCRIPTION
10150
10151 =item CONVENTIONS
10152
10153 =item IMPLEMENTATION
10154
10155 =item BUGS
10156
10157 =item AUTHOR
10158
10159 =back
10160
10161 =head2 B::Showlex - Show lexical variables used in functions or files
10162
10163 =over 4
10164
10165 =item SYNOPSIS
10166
10167 =item DESCRIPTION
10168
10169 =item AUTHOR
10170
10171 =back
10172
10173 =head2 B::Stackobj - Helper module for CC backend
10174
10175 =over 4
10176
10177 =item SYNOPSIS
10178
10179 =item DESCRIPTION
10180
10181 =item AUTHOR
10182
10183 =back
10184
10185 =head2 B::Stash - show what stashes are loaded
10186
10187 =head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
10188
10189 =over 4
10190
10191 =item SYNOPSIS
10192
10193 =item DESCRIPTION
10194
10195 =item AUTHOR
10196
10197 =back
10198
10199 =head2 B::Xref - Generates cross reference reports for Perl programs
10200
10201 =over 4
10202
10203 =item SYNOPSIS
10204
10205 =item DESCRIPTION
10206
10207 =item OPTIONS
10208
10209 C<-oFILENAME>, C<-r>, C<-d>, C<-D[tO]>
10210
10211 =item BUGS
10212
10213 =item AUTHOR
10214
10215 =back
10216
10217 =head2 Bblock, B::Bblock - Walk basic blocks
10218
10219 =over 4
10220
10221 =item SYNOPSIS
10222
10223 =item DESCRIPTION
10224
10225 =over 4
10226
10227 =item Functions
10228
10229 B<find_leaders>
10230
10231 =back
10232
10233 =item AUTHOR
10234
10235 =back
10236
10237 =head2 Benchmark - benchmark running times of Perl code
10238
10239 =over 4
10240
10241 =item SYNOPSIS
10242
10243 =item DESCRIPTION
10244
10245 =over 4
10246
10247 =item Methods
10248
10249 new, debug, iters
10250
10251 =item Standard Exports
10252
10253 timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
10254 timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
10255 TIMEDIFF, [ STYLE, [ FORMAT ] ] )
10256
10257 =item Optional Exports
10258
10259 clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUNT, CODEHASHREF, [
10260 STYLE ] ), cmpthese ( RESULTSHASHREF, [ STYLE ] ), countit(TIME, CODE),
10261 disablecache ( ), enablecache ( ), timesum ( T1, T2 )
10262
10263 =item :hireswallclock
10264
10265 =back
10266
10267 =item NOTES
10268
10269 =item EXAMPLES
10270
10271 =item INHERITANCE
10272
10273 =item CAVEATS
10274
10275 =item SEE ALSO
10276
10277 =item AUTHORS
10278
10279 =item MODIFICATION HISTORY
10280
10281 =back
10282
10283 =head2 ByteLoader - load byte compiled perl code
10284
10285 =over 4
10286
10287 =item SYNOPSIS
10288
10289 =item DESCRIPTION
10290
10291 =item AUTHOR
10292
10293 =item SEE ALSO
10294
10295 =back
10296
10297 =head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend
10298
10299 =over 4
10300
10301 =item SYNOPSIS
10302
10303 =item DESCRIPTION
10304
10305 =item EXAMPLE
10306
10307 =item OPTIONS
10308
10309 B<-b>, B<-H>, B<-k>, B<-o>I<outfile>, B<-s>
10310
10311 =item KNOWN BUGS
10312
10313 =item NOTICE
10314
10315 =item AUTHORS
10316
10317 =back
10318
10319 =head2 CGI - Simple Common Gateway Interface Class
10320
10321 =over 4
10322
10323 =item SYNOPSIS
10324
10325 =item ABSTRACT
10326
10327 =item DESCRIPTION
10328
10329 =over 4
10330
10331 =item PROGRAMMING STYLE
10332
10333 =item CALLING CGI.PM ROUTINES
10334
10335 =item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
10336
10337 =item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
10338
10339 =item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
10340
10341 =item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
10342
10343 =item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
10344
10345 =item SETTING THE VALUE(S) OF A NAMED PARAMETER:
10346
10347 =item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
10348
10349 =item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
10350
10351 =item DELETING A PARAMETER COMPLETELY:
10352
10353 =item DELETING ALL PARAMETERS:
10354
10355 =item DIRECT ACCESS TO THE PARAMETER LIST:
10356
10357 =item FETCHING THE PARAMETER LIST AS A HASH:
10358
10359 =item SAVING THE STATE OF THE SCRIPT TO A FILE:
10360
10361 =item RETRIEVING CGI ERRORS
10362
10363 =item USING THE FUNCTION-ORIENTED INTERFACE
10364
10365 B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:html4>, B<:netscape>, B<:html>,
10366 B<:standard>, B<:all>
10367
10368 =item PRAGMAS
10369
10370 -any, -compile, -nosticky, -no_undef_params, -no_xhtml, -nph,
10371 -newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
10372 -private_tempfiles
10373
10374 =item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
10375
10376 1. start_table() (generates a <table> tag), 2. end_table() (generates a
10377 </table> tag), 3. start_ul() (generates a <ul> tag), 4. end_ul() (generates
10378 a </ul> tag)
10379
10380 =back
10381
10382 =item GENERATING DYNAMIC DOCUMENTS
10383
10384 =over 4
10385
10386 =item CREATING A STANDARD HTTP HEADER:
10387
10388 =item GENERATING A REDIRECTION HEADER
10389
10390 =item CREATING THE HTML DOCUMENT HEADER
10391
10392 B<Parameters:>, 4, 5, 6..
10393
10394 =item ENDING THE HTML DOCUMENT:
10395
10396 =item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
10397
10398 =item OBTAINING THE SCRIPT'S URL
10399
10400 B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
10401 (B<-query_string>), B<-base>
10402
10403 =item MIXING POST AND URL PARAMETERS
10404
10405 =back
10406
10407 =item CREATING STANDARD HTML ELEMENTS:
10408
10409 =over 4
10410
10411 =item PROVIDING ARGUMENTS TO HTML SHORTCUTS
10412
10413 =item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
10414
10415 =item HTML SHORTCUTS AND LIST INTERPOLATION
10416
10417 =item NON-STANDARD HTML SHORTCUTS
10418
10419 =item AUTOESCAPING HTML
10420
10421 $escaped_string = escapeHTML("unescaped string");, $charset =
10422 charset([$charset]);, $flag = autoEscape([$flag]);
10423
10424 =item PRETTY-PRINTING HTML
10425
10426 =back
10427
10428 =item CREATING FILL-OUT FORMS:
10429
10430 =over 4
10431
10432 =item CREATING AN ISINDEX TAG
10433
10434 =item STARTING AND ENDING A FORM
10435
10436 B<application/x-www-form-urlencoded>, B<multipart/form-data>
10437
10438 =item CREATING A TEXT FIELD
10439
10440 B<Parameters>
10441
10442 =item CREATING A BIG TEXT FIELD
10443
10444 =item CREATING A PASSWORD FIELD
10445
10446 =item CREATING A FILE UPLOAD FIELD
10447
10448 B<Parameters>
10449
10450 =item CREATING A POPUP MENU
10451
10452 =item CREATING AN OPTION GROUP
10453
10454 =item CREATING A SCROLLING LIST
10455
10456 B<Parameters:>
10457
10458 =item CREATING A GROUP OF RELATED CHECKBOXES
10459
10460 B<Parameters:>
10461
10462 =item CREATING A STANDALONE CHECKBOX
10463
10464 B<Parameters:>
10465
10466 =item CREATING A RADIO BUTTON GROUP
10467
10468 B<Parameters:>
10469
10470 =item CREATING A SUBMIT BUTTON 
10471
10472 B<Parameters:>
10473
10474 =item CREATING A RESET BUTTON
10475
10476 =item CREATING A DEFAULT BUTTON
10477
10478 =item CREATING A HIDDEN FIELD
10479
10480 B<Parameters:>
10481
10482 =item CREATING A CLICKABLE IMAGE BUTTON
10483
10484 B<Parameters:>, 3. The third option (-align, optional) is an alignment
10485 type, and may be TOP, BOTTOM or MIDDLE
10486
10487 =item CREATING A JAVASCRIPT ACTION BUTTON
10488
10489 =back
10490
10491 =item HTTP COOKIES
10492
10493 1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
10494 B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
10495
10496 =item WORKING WITH FRAMES
10497
10498 1. Create a <Frameset> document, 2. Specify the destination for the
10499 document in the HTTP header, 3. Specify the destination for the document in
10500 the <form> tag
10501
10502 =item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
10503
10504 =item DEBUGGING
10505
10506 =over 4
10507
10508 =item DUMPING OUT ALL THE NAME/VALUE PAIRS
10509
10510 =back
10511
10512 =item FETCHING ENVIRONMENT VARIABLES
10513
10514 B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
10515 B<path_translated()>, B<remote_host()>, B<script_name()> Return the script
10516 name as a partial URL, for self-refering scripts, B<referer()>, B<auth_type
10517 ()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
10518 B<server_software ()>, B<remote_user ()>, B<user_name ()>,
10519 B<request_method()>, B<content_type()>, B<http()>, B<https()>
10520
10521 =item USING NPH SCRIPTS
10522
10523 In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
10524 parameters
10525
10526 =item Server Push
10527
10528 multipart_init(), multipart_start(), multipart_end(), multipart_final()
10529
10530 =item Avoiding Denial of Service Attacks
10531
10532 B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
10533 basis>, B<2. Globally for all scripts>
10534
10535 =item COMPATIBILITY WITH CGI-LIB.PL
10536
10537 =item AUTHOR INFORMATION
10538
10539 =item CREDITS
10540
10541 Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
10542 (james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
10543 (mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
10544 (jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
10545 (applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
10546 (tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
10547 (tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
10548 MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
10549 (kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
10550 Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
10551 MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
10552 ...and many many more..
10553
10554 =item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
10555
10556 =item BUGS
10557
10558 =item SEE ALSO
10559
10560 =back
10561
10562 =head2 CGI::Apache - Backward compatibility module for CGI.pm
10563
10564 =over 4
10565
10566 =item SYNOPSIS
10567
10568 =item ABSTRACT
10569
10570 =item DESCRIPTION
10571
10572 =item AUTHOR INFORMATION
10573
10574 =item BUGS
10575
10576 =item SEE ALSO
10577
10578 =back
10579
10580 =head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
10581 other) error log
10582
10583 =over 4
10584
10585 =item SYNOPSIS
10586
10587 =item DESCRIPTION
10588
10589 =item REDIRECTING ERROR MESSAGES
10590
10591 =item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
10592
10593 =over 4
10594
10595 =item Changing the default message
10596
10597 =back
10598
10599 =item MAKING WARNINGS APPEAR AS HTML COMMENTS
10600
10601 =item OVERRIDING THE NAME OF THE PROGRAM
10602
10603 =item AUTHORS
10604
10605 =item SEE ALSO
10606
10607 =back
10608
10609 =head2 CGI::Cookie - Interface to Netscape Cookies
10610
10611 =over 4
10612
10613 =item SYNOPSIS
10614
10615 =item DESCRIPTION
10616
10617 =item USING CGI::Cookie
10618
10619 B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
10620
10621 =over 4
10622
10623 =item Creating New Cookies
10624
10625 =item Sending the Cookie to the Browser
10626
10627 =item Recovering Previous Cookies
10628
10629 =item Manipulating Cookies
10630
10631 B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
10632
10633 =back
10634
10635 =item AUTHOR INFORMATION
10636
10637 =item BUGS
10638
10639 =item SEE ALSO
10640
10641 =back
10642
10643 =head2 CGI::Fast - CGI Interface for Fast CGI
10644
10645 =over 4
10646
10647 =item SYNOPSIS
10648
10649 =item DESCRIPTION
10650
10651 =item OTHER PIECES OF THE PUZZLE
10652
10653 =item WRITING FASTCGI PERL SCRIPTS
10654
10655 =item INSTALLING FASTCGI SCRIPTS
10656
10657 =item USING FASTCGI SCRIPTS AS CGI SCRIPTS
10658
10659 =item EXTERNAL FASTCGI SERVER INVOCATION
10660
10661 FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
10662
10663 =item CAVEATS
10664
10665 =item AUTHOR INFORMATION
10666
10667 =item BUGS
10668
10669 =item SEE ALSO
10670
10671 =back
10672
10673 =head2 CGI::Pretty - module to produce nicely formatted HTML code
10674
10675 =over 4
10676
10677 =item SYNOPSIS
10678
10679 =item DESCRIPTION
10680
10681 =over 4
10682
10683 =item Tags that won't be formatted
10684
10685 =item Customizing the Indenting
10686
10687 =back
10688
10689 =item BUGS
10690
10691 =item AUTHOR
10692
10693 =item SEE ALSO
10694
10695 =back
10696
10697 =head2 CGI::Push - Simple Interface to Server Push
10698
10699 =over 4
10700
10701 =item SYNOPSIS
10702
10703 =item DESCRIPTION
10704
10705 =item USING CGI::Push
10706
10707 -next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
10708
10709 =over 4
10710
10711 =item Heterogeneous Pages
10712
10713 =item Changing the Page Delay on the Fly
10714
10715 =back
10716
10717 =item INSTALLING CGI::Push SCRIPTS
10718
10719 =item AUTHOR INFORMATION
10720
10721 =item BUGS
10722
10723 =item SEE ALSO
10724
10725 =back
10726
10727 =head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
10728
10729 =over 4
10730
10731 =item SYNOPSIS
10732
10733 =item ABSTRACT
10734
10735 =item DESCRIPTION
10736
10737 =item AUTHOR INFORMATION
10738
10739 =item BUGS
10740
10741 =item SEE ALSO
10742
10743 =back
10744
10745 =head2 CGI::Util - Internal utilities used by CGI module
10746
10747 =over 4
10748
10749 =item SYNOPSIS
10750
10751 =item DESCRIPTION
10752
10753 =item AUTHOR INFORMATION
10754
10755 =item SEE ALSO
10756
10757 =back
10758
10759 =head2 CPAN - query, download and build perl modules from CPAN sites
10760
10761 =over 4
10762
10763 =item SYNOPSIS
10764
10765 =item STATUS
10766
10767 =item DESCRIPTION
10768
10769 =over 4
10770
10771 =item Interactive Mode
10772
10773 Searching for authors, bundles, distribution files and modules, make, test,
10774 install, clean  modules or distributions, get, readme, look module or
10775 distribution, ls author, Signals
10776
10777 =item CPAN::Shell
10778
10779 =item autobundle
10780
10781 =item recompile
10782
10783 =item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
10784
10785 =item Programmer's interface
10786
10787 expand($type,@things), expandany(@things), Programming Examples
10788
10789 =item Methods in the other Classes
10790
10791 CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
10792 CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
10793 CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
10794 CPAN::Bundle::clean(), CPAN::Bundle::contains(),
10795 CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
10796 CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
10797 CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
10798 CPAN::Bundle::readme(), CPAN::Bundle::test(),
10799 CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
10800 CPAN::Distribution::clean(), CPAN::Distribution::containsmods(),
10801 CPAN::Distribution::cvs_import(), CPAN::Distribution::dir(),
10802 CPAN::Distribution::force($method,@args), CPAN::Distribution::get(),
10803 CPAN::Distribution::install(), CPAN::Distribution::isa_perl(),
10804 CPAN::Distribution::look(), CPAN::Distribution::make(),
10805 CPAN::Distribution::prereq_pm(), CPAN::Distribution::readme(),
10806 CPAN::Distribution::test(), CPAN::Distribution::uptodate(),
10807 CPAN::Index::force_reload(), CPAN::Index::reload(), CPAN::InfoObj::dump(),
10808 CPAN::Module::as_glimpse(), CPAN::Module::as_string(),
10809 CPAN::Module::clean(), CPAN::Module::cpan_file(),
10810 CPAN::Module::cpan_version(), CPAN::Module::cvs_import(),
10811 CPAN::Module::description(), CPAN::Module::force($method,@args),
10812 CPAN::Module::get(), CPAN::Module::inst_file(),
10813 CPAN::Module::inst_version(), CPAN::Module::install(),
10814 CPAN::Module::look(), CPAN::Module::make(),
10815 CPAN::Module::manpage_headline(), CPAN::Module::readme(),
10816 CPAN::Module::test(), CPAN::Module::uptodate(), CPAN::Module::userid()
10817
10818 =item Cache Manager
10819
10820 =item Bundles
10821
10822 =item Prerequisites
10823
10824 =item Finding packages and VERSION
10825
10826 =item Debugging
10827
10828 =item Floppy, Zip, Offline Mode
10829
10830 =back
10831
10832 =item CONFIGURATION
10833
10834 C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
10835 E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
10836 optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
10837 [unshift|push|splice] E<lt>listE<gt>>
10838
10839 =over 4
10840
10841 =item Note on urllist parameter's format
10842
10843 =item urllist parameter has CD-ROM support
10844
10845 =back
10846
10847 =item SECURITY
10848
10849 =item EXPORT
10850
10851 =item POPULATE AN INSTALLATION WITH LOTS OF MODULES
10852
10853 =item WORKING WITH CPAN.pm BEHIND FIREWALLS
10854
10855 =over 4
10856
10857 =item Three basic types of firewalls
10858
10859 http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
10860
10861 =item Configuring lynx or ncftp for going through a firewall
10862
10863 =back
10864
10865 =item FAQ
10866
10867 1), 2), 3), 4), 5), 6), 7), 8), 9), 10)
10868
10869 =item BUGS
10870
10871 =item AUTHOR
10872
10873 =item TRANSLATIONS
10874
10875 =item SEE ALSO
10876
10877 =back
10878
10879 =head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
10880
10881 =over 4
10882
10883 =item SYNOPSIS
10884
10885 =item DESCRIPTION
10886
10887 =back
10888
10889 =head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
10890 module
10891
10892 =over 4
10893
10894 =item SYNOPSIS
10895
10896 =item DESCRIPTION
10897
10898 =item  SEE ALSO
10899
10900 =back
10901
10902 =head2 Carp, carp    - warn of errors (from perspective of caller)
10903
10904 =over 4
10905
10906 =item SYNOPSIS
10907
10908 =item DESCRIPTION
10909
10910 =over 4
10911
10912 =item Forcing a Stack Trace
10913
10914 =back
10915
10916 =item BUGS
10917
10918 =back
10919
10920 =head2 Carp::Heavy, Carp heavy machinery - no user serviceable parts inside
10921
10922 =head2 Class::ISA -- report the search path for a class's ISA tree
10923
10924 =over 4
10925
10926 =item SYNOPSIS
10927
10928 =item DESCRIPTION
10929
10930 =item FUNCTIONS
10931
10932 the function Class::ISA::super_path($CLASS), the function
10933 Class::ISA::self_and_super_path($CLASS), the function
10934 Class::ISA::self_and_super_versions($CLASS)
10935
10936 =item CAUTIONARY NOTES
10937
10938 =item COPYRIGHT
10939
10940 =item AUTHOR
10941
10942 =back
10943
10944 =head2 Class::Struct - declare struct-like datatypes as Perl classes
10945
10946 =over 4
10947
10948 =item SYNOPSIS
10949
10950 =item DESCRIPTION
10951
10952 =over 4
10953
10954 =item The C<struct()> function
10955
10956 =item Class Creation at Compile Time
10957
10958 =item Element Types and Accessor Methods
10959
10960 Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
10961 C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
10962
10963 =item Initializing with C<new>
10964
10965 =back
10966
10967 =item EXAMPLES
10968
10969 Example 1, Example 2, Example 3
10970
10971 =item Author and Modification History
10972
10973 =back
10974
10975 =head2 Config - access Perl configuration information
10976
10977 =over 4
10978
10979 =item SYNOPSIS
10980
10981 =item DESCRIPTION
10982
10983 myconfig(), config_sh(), config_re($regex), config_vars(@names)
10984
10985 =item EXAMPLE
10986
10987 =item WARNING
10988
10989 =item GLOSSARY
10990
10991 =over 4
10992
10993 =item _
10994
10995 C<_a>, C<_exe>, C<_o>
10996
10997 =item a
10998
10999 C<afs>, C<afsroot>, C<alignbytes>, C<ansi2knr>, C<aphostname>,
11000 C<api_revision>, C<api_subversion>, C<api_version>, C<api_versionstring>,
11001 C<ar>, C<archlib>, C<archlibexp>, C<archname64>, C<archname>, C<archobjs>,
11002 C<asctime_r_proto>, C<awk>
11003
11004 =item b
11005
11006 C<baserev>, C<bash>, C<bin>, C<binexp>, C<bison>, C<byacc>, C<byteorder>
11007
11008 =item c
11009
11010 C<c>, C<castflags>, C<cat>, C<cc>, C<cccdlflags>, C<ccdlflags>, C<ccflags>,
11011 C<ccflags_uselargefiles>, C<ccname>, C<ccsymbols>, C<ccversion>, C<cf_by>,
11012 C<cf_email>, C<cf_time>, C<charsize>, C<chgrp>, C<chmod>, C<chown>,
11013 C<clocktype>, C<comm>, C<compress>, C<contains>, C<cp>, C<cpio>, C<cpp>,
11014 C<cpp_stuff>, C<cppccsymbols>, C<cppflags>, C<cpplast>, C<cppminus>,
11015 C<cpprun>, C<cppstdin>, C<cppsymbols>, C<crypt_r_proto>, C<cryptlib>,
11016 C<csh>, C<ctermid_r_proto>, C<ctime_r_proto>
11017
11018 =item d
11019
11020 C<d__fwalk>, C<d_access>, C<d_accessx>, C<d_aintl>, C<d_alarm>,
11021 C<d_archlib>, C<d_asctime_r>, C<d_atolf>, C<d_atoll>, C<d_attribut>,
11022 C<d_bcmp>, C<d_bcopy>, C<d_bsd>, C<d_bsdgetpgrp>, C<d_bsdsetpgrp>,
11023 C<d_bzero>, C<d_casti32>, C<d_castneg>, C<d_charvspr>, C<d_chown>,
11024 C<d_chroot>, C<d_chsize>, C<d_class>, C<d_closedir>, C<d_cmsghdr_s>,
11025 C<d_const>, C<d_copysignl>, C<d_crypt>, C<d_crypt_r>, C<d_csh>,
11026 C<d_ctermid_r>, C<d_ctime_r>, C<d_cuserid>, C<d_dbl_dig>,
11027 C<d_dbminitproto>, C<d_difftime>, C<d_dirfd>, C<d_dirnamlen>, C<d_dlerror>,
11028 C<d_dlopen>, C<d_dlsymun>, C<d_dosuid>, C<d_drand48_r>, C<d_drand48proto>,
11029 C<d_dup2>, C<d_eaccess>, C<d_endgrent>, C<d_endgrent_r>, C<d_endhent>,
11030 C<d_endhostent_r>, C<d_endnent>, C<d_endnetent_r>, C<d_endpent>,
11031 C<d_endprotoent_r>, C<d_endpwent>, C<d_endpwent_r>, C<d_endsent>,
11032 C<d_endservent_r>, C<d_eofnblk>, C<d_eunice>, C<d_faststdio>, C<d_fchdir>,
11033 C<d_fchmod>, C<d_fchown>, C<d_fcntl>, C<d_fcntl_can_lock>, C<d_fd_macros>,
11034 C<d_fd_set>, C<d_fds_bits>, C<d_fgetpos>, C<d_finite>, C<d_finitel>,
11035 C<d_flexfnam>, C<d_flock>, C<d_flockproto>, C<d_fork>, C<d_fp_class>,
11036 C<d_fpathconf>, C<d_fpclass>, C<d_fpclassify>, C<d_fpclassl>,
11037 C<d_fpos64_t>, C<d_frexpl>, C<d_fs_data_s>, C<d_fseeko>, C<d_fsetpos>,
11038 C<d_fstatfs>, C<d_fstatvfs>, C<d_fsync>, C<d_ftello>, C<d_ftime>,
11039 C<d_Gconvert>, C<d_getcwd>, C<d_getespwnam>, C<d_getfsstat>, C<d_getgrent>,
11040 C<d_getgrent_r>, C<d_getgrgid_r>, C<d_getgrnam_r>, C<d_getgrps>,
11041 C<d_gethbyaddr>, C<d_gethbyname>, C<d_gethent>, C<d_gethname>,
11042 C<d_gethostbyaddr_r>, C<d_gethostbyname_r>, C<d_gethostent_r>,
11043 C<d_gethostprotos>, C<d_getitimer>, C<d_getlogin>, C<d_getlogin_r>,
11044 C<d_getmnt>, C<d_getmntent>, C<d_getnbyaddr>, C<d_getnbyname>,
11045 C<d_getnent>, C<d_getnetbyaddr_r>, C<d_getnetbyname_r>, C<d_getnetent_r>,
11046 C<d_getnetprotos>, C<d_getpagsz>, C<d_getpbyname>, C<d_getpbynumber>,
11047 C<d_getpent>, C<d_getpgid>, C<d_getpgrp2>, C<d_getpgrp>, C<d_getppid>,
11048 C<d_getprior>, C<d_getprotobyname_r>, C<d_getprotobynumber_r>,
11049 C<d_getprotoent_r>, C<d_getprotoprotos>, C<d_getprpwnam>, C<d_getpwent>,
11050 C<d_getpwent_r>, C<d_getpwnam_r>, C<d_getpwuid_r>, C<d_getsbyname>,
11051 C<d_getsbyport>, C<d_getsent>, C<d_getservbyname_r>, C<d_getservbyport_r>,
11052 C<d_getservent_r>, C<d_getservprotos>, C<d_getspnam>, C<d_getspnam_r>,
11053 C<d_gettimeod>, C<d_gmtime_r>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>,
11054 C<d_htonl>, C<d_ilogbl>, C<d_index>, C<d_inetaton>, C<d_int64_t>,
11055 C<d_isascii>, C<d_isfinite>, C<d_isinf>, C<d_isnan>, C<d_isnanl>,
11056 C<d_killpg>, C<d_lchown>, C<d_ldbl_dig>, C<d_link>, C<d_localtime_r>,
11057 C<d_locconv>, C<d_lockf>, C<d_longdbl>, C<d_longlong>, C<d_lseekproto>,
11058 C<d_lstat>, C<d_madvise>, C<d_mblen>, C<d_mbstowcs>, C<d_mbtowc>,
11059 C<d_memchr>, C<d_memcmp>, C<d_memcpy>, C<d_memmove>, C<d_memset>,
11060 C<d_mkdir>, C<d_mkdtemp>, C<d_mkfifo>, C<d_mkstemp>, C<d_mkstemps>,
11061 C<d_mktime>, C<d_mmap>, C<d_modfl>, C<d_modfl_pow32_bug>, C<d_modflproto>,
11062 C<d_mprotect>, C<d_msg>, C<d_msg_ctrunc>, C<d_msg_dontroute>, C<d_msg_oob>,
11063 C<d_msg_peek>, C<d_msg_proxy>, C<d_msgctl>, C<d_msgget>, C<d_msghdr_s>,
11064 C<d_msgrcv>, C<d_msgsnd>, C<d_msync>, C<d_munmap>, C<d_mymalloc>,
11065 C<d_nice>, C<d_nl_langinfo>, C<d_nv_preserves_uv>, C<d_off64_t>,
11066 C<d_old_pthread_create_joinable>, C<d_oldpthreads>, C<d_oldsock>,
11067 C<d_open3>, C<d_pathconf>, C<d_pause>, C<d_perl_otherlibdirs>,
11068 C<d_phostname>, C<d_pipe>, C<d_poll>, C<d_portable>, C<d_PRId64>,
11069 C<d_PRIeldbl>, C<d_PRIEUldbl>, C<d_PRIfldbl>, C<d_PRIFUldbl>,
11070 C<d_PRIgldbl>, C<d_PRIGUldbl>, C<d_PRIi64>, C<d_PRIo64>, C<d_PRIu64>,
11071 C<d_PRIx64>, C<d_PRIXU64>, C<d_procselfexe>, C<d_pthread_atfork>,
11072 C<d_pthread_attr_setscope>, C<d_pthread_yield>, C<d_pwage>, C<d_pwchange>,
11073 C<d_pwclass>, C<d_pwcomment>, C<d_pwexpire>, C<d_pwgecos>, C<d_pwpasswd>,
11074 C<d_pwquota>, C<d_qgcvt>, C<d_quad>, C<d_random_r>, C<d_readdir64_r>,
11075 C<d_readdir>, C<d_readdir_r>, C<d_readlink>, C<d_readv>, C<d_recvmsg>,
11076 C<d_rename>, C<d_rewinddir>, C<d_rmdir>, C<d_safebcpy>, C<d_safemcpy>,
11077 C<d_sanemcmp>, C<d_sbrkproto>, C<d_scalbnl>, C<d_sched_yield>,
11078 C<d_scm_rights>, C<d_SCNfldbl>, C<d_seekdir>, C<d_select>, C<d_sem>,
11079 C<d_semctl>, C<d_semctl_semid_ds>, C<d_semctl_semun>, C<d_semget>,
11080 C<d_semop>, C<d_sendmsg>, C<d_setegid>, C<d_seteuid>, C<d_setgrent>,
11081 C<d_setgrent_r>, C<d_setgrps>, C<d_sethent>, C<d_sethostent_r>,
11082 C<d_setitimer>, C<d_setlinebuf>, C<d_setlocale>, C<d_setlocale_r>,
11083 C<d_setnent>, C<d_setnetent_r>, C<d_setpent>, C<d_setpgid>, C<d_setpgrp2>,
11084 C<d_setpgrp>, C<d_setprior>, C<d_setproctitle>, C<d_setprotoent_r>,
11085 C<d_setpwent>, C<d_setpwent_r>, C<d_setregid>, C<d_setresgid>,
11086 C<d_setresuid>, C<d_setreuid>, C<d_setrgid>, C<d_setruid>, C<d_setsent>,
11087 C<d_setservent_r>, C<d_setsid>, C<d_setvbuf>, C<d_sfio>, C<d_shm>,
11088 C<d_shmat>, C<d_shmatprototype>, C<d_shmctl>, C<d_shmdt>, C<d_shmget>,
11089 C<d_sigaction>, C<d_sigprocmask>, C<d_sigsetjmp>, C<d_sockatmark>,
11090 C<d_sockatmarkproto>, C<d_socket>, C<d_socklen_t>, C<d_sockpair>,
11091 C<d_socks5_init>, C<d_sqrtl>, C<d_srand48_r>, C<d_srandom_r>,
11092 C<d_sresgproto>, C<d_sresuproto>, C<d_statblks>, C<d_statfs_f_flags>,
11093 C<d_statfs_s>, C<d_statvfs>, C<d_stdio_cnt_lval>, C<d_stdio_ptr_lval>,
11094 C<d_stdio_ptr_lval_nochange_cnt>, C<d_stdio_ptr_lval_sets_cnt>,
11095 C<d_stdio_stream_array>, C<d_stdiobase>, C<d_stdstdio>, C<d_strchr>,
11096 C<d_strcoll>, C<d_strctcpy>, C<d_strerrm>, C<d_strerror>, C<d_strerror_r>,
11097 C<d_strftime>, C<d_strtod>, C<d_strtol>, C<d_strtold>, C<d_strtoll>,
11098 C<d_strtoq>, C<d_strtoul>, C<d_strtoull>, C<d_strtouq>, C<d_strxfrm>,
11099 C<d_suidsafe>, C<d_symlink>, C<d_syscall>, C<d_syscallproto>, C<d_sysconf>,
11100 C<d_sysernlst>, C<d_syserrlst>, C<d_system>, C<d_tcgetpgrp>,
11101 C<d_tcsetpgrp>, C<d_telldir>, C<d_telldirproto>, C<d_time>, C<d_times>,
11102 C<d_tm_tm_gmtoff>, C<d_tm_tm_zone>, C<d_tmpnam_r>, C<d_truncate>,
11103 C<d_ttyname_r>, C<d_tzname>, C<d_u32align>, C<d_ualarm>, C<d_umask>,
11104 C<d_uname>, C<d_union_semun>, C<d_unordered>, C<d_usleep>,
11105 C<d_usleepproto>, C<d_ustat>, C<d_vendorarch>, C<d_vendorbin>,
11106 C<d_vendorlib>, C<d_vendorscript>, C<d_vfork>, C<d_void_closedir>,
11107 C<d_voidsig>, C<d_voidtty>, C<d_volatile>, C<d_vprintf>, C<d_wait4>,
11108 C<d_waitpid>, C<d_wcstombs>, C<d_wctomb>, C<d_writev>, C<d_xenix>, C<date>,
11109 C<db_hashtype>, C<db_prefixtype>, C<db_version_major>, C<db_version_minor>,
11110 C<db_version_patch>, C<defvoidused>, C<direntrytype>, C<dlext>, C<dlsrc>,
11111 C<doublesize>, C<drand01>, C<drand48_r_proto>, C<dynamic_ext>
11112
11113 =item e
11114
11115 C<eagain>, C<ebcdic>, C<echo>, C<egrep>, C<emacs>, C<endgrent_r_proto>,
11116 C<endhostent_r_proto>, C<endnetent_r_proto>, C<endprotoent_r_proto>,
11117 C<endpwent_r_proto>, C<endservent_r_proto>, C<eunicefix>, C<exe_ext>,
11118 C<expr>, C<extensions>, C<extras>
11119
11120 =item f
11121
11122 C<fflushall>, C<fflushNULL>, C<find>, C<firstmakefile>, C<flex>,
11123 C<fpossize>, C<fpostype>, C<freetype>, C<from>, C<full_ar>, C<full_csh>,
11124 C<full_sed>
11125
11126 =item g
11127
11128 C<gccansipedantic>, C<gccosandvers>, C<gccversion>, C<getgrent_r_proto>,
11129 C<getgrgid_r_proto>, C<getgrnam_r_proto>, C<gethostbyaddr_r_proto>,
11130 C<gethostbyname_r_proto>, C<gethostent_r_proto>, C<getlogin_r_proto>,
11131 C<getnetbyaddr_r_proto>, C<getnetbyname_r_proto>, C<getnetent_r_proto>,
11132 C<getprotobyname_r_proto>, C<getprotobynumber_r_proto>,
11133 C<getprotoent_r_proto>, C<getpwent_r_proto>, C<getpwnam_r_proto>,
11134 C<getpwuid_r_proto>, C<getservbyname_r_proto>, C<getservbyport_r_proto>,
11135 C<getservent_r_proto>, C<getspnam_r_proto>, C<gidformat>, C<gidsign>,
11136 C<gidsize>, C<gidtype>, C<glibpth>, C<gmake>, C<gmtime_r_proto>,
11137 C<gnulibc_version>, C<grep>, C<groupcat>, C<groupstype>, C<gzip>
11138
11139 =item h
11140
11141 C<h_fcntl>, C<h_sysfile>, C<hint>, C<hostcat>, C<html1dir>, C<html1direxp>,
11142 C<html3dir>, C<html3direxp>
11143
11144 =item i
11145
11146 C<i16size>, C<i16type>, C<i32size>, C<i32type>, C<i64size>, C<i64type>,
11147 C<i8size>, C<i8type>, C<i_arpainet>, C<i_bsdioctl>, C<i_crypt>, C<i_db>,
11148 C<i_dbm>, C<i_dirent>, C<i_dld>, C<i_dlfcn>, C<i_fcntl>, C<i_float>,
11149 C<i_fp>, C<i_fp_class>, C<i_gdbm>, C<i_grp>, C<i_ieeefp>, C<i_inttypes>,
11150 C<i_langinfo>, C<i_libutil>, C<i_limits>, C<i_locale>, C<i_machcthr>,
11151 C<i_malloc>, C<i_math>, C<i_memory>, C<i_mntent>, C<i_ndbm>, C<i_netdb>,
11152 C<i_neterrno>, C<i_netinettcp>, C<i_niin>, C<i_poll>, C<i_prot>,
11153 C<i_pthread>, C<i_pwd>, C<i_rpcsvcdbm>, C<i_sfio>, C<i_sgtty>, C<i_shadow>,
11154 C<i_socks>, C<i_stdarg>, C<i_stddef>, C<i_stdlib>, C<i_string>,
11155 C<i_sunmath>, C<i_sysaccess>, C<i_sysdir>, C<i_sysfile>, C<i_sysfilio>,
11156 C<i_sysin>, C<i_sysioctl>, C<i_syslog>, C<i_sysmman>, C<i_sysmode>,
11157 C<i_sysmount>, C<i_sysndir>, C<i_sysparam>, C<i_sysresrc>, C<i_syssecrt>,
11158 C<i_sysselct>, C<i_syssockio>, C<i_sysstat>, C<i_sysstatfs>,
11159 C<i_sysstatvfs>, C<i_systime>, C<i_systimek>, C<i_systimes>, C<i_systypes>,
11160 C<i_sysuio>, C<i_sysun>, C<i_sysutsname>, C<i_sysvfs>, C<i_syswait>,
11161 C<i_termio>, C<i_termios>, C<i_time>, C<i_unistd>, C<i_ustat>, C<i_utime>,
11162 C<i_values>, C<i_varargs>, C<i_varhdr>, C<i_vfork>,
11163 C<ignore_versioned_solibs>, C<inc_version_list>, C<inc_version_list_init>,
11164 C<incpath>, C<inews>, C<installarchlib>, C<installbin>, C<installhtml1dir>,
11165 C<installhtml3dir>, C<installman1dir>, C<installman3dir>, C<installprefix>,
11166 C<installprefixexp>, C<installprivlib>, C<installscript>,
11167 C<installsitearch>, C<installsitebin>, C<installsitehtml1dir>,
11168 C<installsitehtml3dir>, C<installsitelib>, C<installsiteman1dir>,
11169 C<installsiteman3dir>, C<installsitescript>, C<installstyle>,
11170 C<installusrbinperl>, C<installvendorarch>, C<installvendorbin>,
11171 C<installvendorhtml1dir>, C<installvendorhtml3dir>, C<installvendorlib>,
11172 C<installvendorman1dir>, C<installvendorman3dir>, C<installvendorscript>,
11173 C<intsize>, C<issymlink>, C<ivdformat>, C<ivsize>, C<ivtype>
11174
11175 =item k
11176
11177 C<known_extensions>, C<ksh>
11178
11179 =item l
11180
11181 C<ld>, C<lddlflags>, C<ldflags>, C<ldflags_uselargefiles>, C<ldlibpthname>,
11182 C<less>, C<lib_ext>, C<libc>, C<libperl>, C<libpth>, C<libs>, C<libsdirs>,
11183 C<libsfiles>, C<libsfound>, C<libspath>, C<libswanted>,
11184 C<libswanted_uselargefiles>, C<line>, C<lint>, C<lkflags>, C<ln>, C<lns>,
11185 C<localtime_r_proto>, C<locincpth>, C<loclibpth>, C<longdblsize>,
11186 C<longlongsize>, C<longsize>, C<lp>, C<lpr>, C<ls>, C<lseeksize>,
11187 C<lseektype>
11188
11189 =item m
11190
11191 C<mail>, C<mailx>, C<make>, C<make_set_make>, C<mallocobj>, C<mallocsrc>,
11192 C<malloctype>, C<man1dir>, C<man1direxp>, C<man1ext>, C<man3dir>,
11193 C<man3direxp>, C<man3ext>
11194
11195 =item M
11196
11197 C<Mcc>, C<mips_type>, C<mistrustnm>, C<mkdir>, C<mmaptype>, C<modetype>,
11198 C<more>, C<multiarch>, C<mv>, C<myarchname>, C<mydomain>, C<myhostname>,
11199 C<myuname>
11200
11201 =item n
11202
11203 C<n>, C<need_va_copy>, C<netdb_hlen_type>, C<netdb_host_type>,
11204 C<netdb_name_type>, C<netdb_net_type>, C<nm>, C<nm_opt>, C<nm_so_opt>,
11205 C<nonxs_ext>, C<nroff>, C<nv_preserves_uv_bits>, C<nveformat>,
11206 C<nvEUformat>, C<nvfformat>, C<nvFUformat>, C<nvgformat>, C<nvGUformat>,
11207 C<nvsize>, C<nvtype>
11208
11209 =item o
11210
11211 C<o_nonblock>, C<obj_ext>, C<old_pthread_create_joinable>, C<optimize>,
11212 C<orderlib>, C<osname>, C<osvers>, C<otherlibdirs>
11213
11214 =item p
11215
11216 C<package>, C<pager>, C<passcat>, C<patchlevel>, C<path_sep>, C<perl5>,
11217 C<perl>, C<perl_patchlevel>
11218
11219 =item P
11220
11221 C<PERL_REVISION>, C<PERL_SUBVERSION>, C<PERL_VERSION>, C<perladmin>,
11222 C<perllibs>, C<perlpath>, C<pg>, C<phostname>, C<pidtype>, C<plibpth>,
11223 C<pm_apiversion>, C<pmake>, C<pr>, C<prefix>, C<prefixexp>, C<privlib>,
11224 C<privlibexp>, C<procselfexe>, C<prototype>, C<ptrsize>
11225
11226 =item q
11227
11228 C<quadkind>, C<quadtype>
11229
11230 =item r
11231
11232 C<randbits>, C<randfunc>, C<random_r_proto>, C<randseedtype>, C<ranlib>,
11233 C<rd_nodata>, C<readdir64_r_proto>, C<readdir_r_proto>, C<revision>, C<rm>,
11234 C<rmail>, C<run>, C<runnm>
11235
11236 =item s
11237
11238 C<sched_yield>, C<scriptdir>, C<scriptdirexp>, C<sed>, C<seedfunc>,
11239 C<selectminbits>, C<selecttype>, C<sendmail>, C<setgrent_r_proto>,
11240 C<sethostent_r_proto>, C<setlocale_r_proto>, C<setnetent_r_proto>,
11241 C<setprotoent_r_proto>, C<setpwent_r_proto>, C<setservent_r_proto>, C<sh>,
11242 C<shar>, C<sharpbang>, C<shmattype>, C<shortsize>, C<shrpenv>, C<shsharp>,
11243 C<sig_count>, C<sig_name>, C<sig_name_init>, C<sig_num>, C<sig_num_init>,
11244 C<sig_size>, C<signal_t>, C<sitearch>, C<sitearchexp>, C<sitebin>,
11245 C<sitebinexp>, C<sitehtml1dir>, C<sitehtml1direxp>, C<sitehtml3dir>,
11246 C<sitehtml3direxp>, C<sitelib>, C<sitelib_stem>, C<sitelibexp>,
11247 C<siteman1dir>, C<siteman1direxp>, C<siteman3dir>, C<siteman3direxp>,
11248 C<siteprefix>, C<siteprefixexp>, C<sitescript>, C<sitescriptexp>,
11249 C<sizesize>, C<sizetype>, C<sleep>, C<smail>, C<so>, C<sockethdr>,
11250 C<socketlib>, C<socksizetype>, C<sort>, C<spackage>, C<spitshell>,
11251 C<sPRId64>, C<sPRIeldbl>, C<sPRIEUldbl>, C<sPRIfldbl>, C<sPRIFUldbl>,
11252 C<sPRIgldbl>, C<sPRIGUldbl>, C<sPRIi64>, C<sPRIo64>, C<sPRIu64>,
11253 C<sPRIx64>, C<sPRIXU64>, C<srand48_r_proto>, C<srandom_r_proto>, C<src>,
11254 C<sSCNfldbl>, C<ssizetype>, C<startperl>, C<startsh>, C<static_ext>,
11255 C<stdchar>, C<stdio_base>, C<stdio_bufsiz>, C<stdio_cnt>, C<stdio_filbuf>,
11256 C<stdio_ptr>, C<stdio_stream_array>, C<strerror_r_proto>, C<strings>,
11257 C<submit>, C<subversion>, C<sysman>
11258
11259 =item t
11260
11261 C<tail>, C<tar>, C<targetarch>, C<tbl>, C<tee>, C<test>, C<timeincl>,
11262 C<timetype>, C<tmpnam_r_proto>, C<to>, C<touch>, C<tr>, C<trnl>, C<troff>,
11263 C<ttyname_r_proto>
11264
11265 =item u
11266
11267 C<u16size>, C<u16type>, C<u32size>, C<u32type>, C<u64size>, C<u64type>,
11268 C<u8size>, C<u8type>, C<uidformat>, C<uidsign>, C<uidsize>, C<uidtype>,
11269 C<uname>, C<uniq>, C<uquadtype>, C<use5005threads>, C<use64bitall>,
11270 C<use64bitint>, C<usecrosscompile>, C<usedl>, C<usefaststdio>,
11271 C<useithreads>, C<uselargefiles>, C<uselongdouble>, C<usemorebits>,
11272 C<usemultiplicity>, C<usemymalloc>, C<usenm>, C<useopcode>, C<useperlio>,
11273 C<useposix>, C<usereentrant>, C<usesfio>, C<useshrplib>, C<usesocks>,
11274 C<usethreads>, C<usevendorprefix>, C<usevfork>, C<usrinc>, C<uuname>,
11275 C<uvoformat>, C<uvsize>, C<uvtype>, C<uvuformat>, C<uvxformat>,
11276 C<uvXUformat>
11277
11278 =item v
11279
11280 C<vendorarch>, C<vendorarchexp>, C<vendorbin>, C<vendorbinexp>,
11281 C<vendorhtml1dir>, C<vendorhtml1direxp>, C<vendorhtml3dir>,
11282 C<vendorhtml3direxp>, C<vendorlib>, C<vendorlib_stem>, C<vendorlibexp>,
11283 C<vendorman1dir>, C<vendorman1direxp>, C<vendorman3dir>,
11284 C<vendorman3direxp>, C<vendorprefix>, C<vendorprefixexp>, C<vendorscript>,
11285 C<vendorscriptexp>, C<version>, C<version_patchlevel_string>,
11286 C<versiononly>, C<vi>, C<voidflags>
11287
11288 =item x
11289
11290 C<xlibpth>, C<xs_apiversion>
11291
11292 =item y
11293
11294 C<yacc>, C<yaccflags>
11295
11296 =item z
11297
11298 C<zcat>, C<zip>
11299
11300 =back
11301
11302 =item NOTE
11303
11304 =back
11305
11306 =head2 Cwd - get pathname of current working directory
11307
11308 =over 4
11309
11310 =item SYNOPSIS
11311
11312 =item DESCRIPTION
11313
11314 =over 4
11315
11316 =item getcwd and friends
11317
11318 getcwd, cwd, fastcwd, fastgetcwd
11319
11320 =item abs_path and friends
11321
11322 abs_path, realpath, fast_abs_path
11323
11324 =item $ENV{PWD}
11325
11326 =back
11327
11328 =item NOTES
11329
11330 =item SEE ALSO
11331
11332 =back
11333
11334 =head2 DB - programmatic interface to the Perl debugging API (draft,
11335 subject to
11336 change)
11337
11338 =over 4
11339
11340 =item SYNOPSIS
11341
11342 =item DESCRIPTION
11343
11344 =over 4
11345
11346 =item Global Variables
11347
11348  $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace,  @DB::args, 
11349 @DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
11350 $DB::lineno
11351
11352 =item API Methods
11353
11354 CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
11355 CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
11356
11357 =item Client Callback Methods
11358
11359 CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
11360 CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
11361 CLIENT->output(LIST)
11362
11363 =back
11364
11365 =item BUGS
11366
11367 =item AUTHOR
11368
11369 =back
11370
11371 =head2 DB_File - Perl5 access to Berkeley DB version 1.x
11372
11373 =over 4
11374
11375 =item SYNOPSIS
11376
11377 =item DESCRIPTION
11378
11379 B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
11380
11381 =over 4
11382
11383 =item Using DB_File with Berkeley DB version 2 or greater
11384
11385 =item Interface to Berkeley DB
11386
11387 =item Opening a Berkeley DB Database File
11388
11389 =item Default Parameters
11390
11391 =item In Memory Databases
11392
11393 =back
11394
11395 =item DB_HASH
11396
11397 =over 4
11398
11399 =item A Simple Example
11400
11401 =back
11402
11403 =item DB_BTREE
11404
11405 =over 4
11406
11407 =item Changing the BTREE sort order
11408
11409 =item Handling Duplicate Keys 
11410
11411 =item The get_dup() Method
11412
11413 =item The find_dup() Method
11414
11415 =item The del_dup() Method
11416
11417 =item Matching Partial Keys 
11418
11419 =back
11420
11421 =item DB_RECNO
11422
11423 =over 4
11424
11425 =item The 'bval' Option
11426
11427 =item A Simple Example
11428
11429 =item Extra RECNO Methods
11430
11431 B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
11432 B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
11433 length, elements);>
11434
11435 =item Another Example
11436
11437 =back
11438
11439 =item THE API INTERFACE
11440
11441 B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
11442 $X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
11443 $flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
11444 $value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
11445
11446 =item DBM FILTERS
11447
11448 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
11449 B<filter_fetch_value>
11450
11451 =over 4
11452
11453 =item The Filter
11454
11455 =item An Example -- the NULL termination problem.
11456
11457 =item Another Example -- Key is a C int.
11458
11459 =back
11460
11461 =item HINTS AND TIPS 
11462
11463 =over 4
11464
11465 =item Locking: The Trouble with fd
11466
11467 =item Safe ways to lock a database
11468
11469 B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
11470
11471 =item Sharing Databases With C Applications
11472
11473 =item The untie() Gotcha
11474
11475 =back
11476
11477 =item COMMON QUESTIONS
11478
11479 =over 4
11480
11481 =item Why is there Perl source in my database?
11482
11483 =item How do I store complex data structures with DB_File?
11484
11485 =item What does "Invalid Argument" mean?
11486
11487 =item What does "Bareword 'DB_File' not allowed" mean? 
11488
11489 =back
11490
11491 =item REFERENCES
11492
11493 =item HISTORY
11494
11495 =item BUGS
11496
11497 =item AVAILABILITY
11498
11499 =item COPYRIGHT
11500
11501 =item SEE ALSO
11502
11503 =item AUTHOR
11504
11505 =back
11506
11507 =head2 Data::Dumper - stringified perl data structures, suitable for both
11508 printing and C<eval>
11509
11510 =over 4
11511
11512 =item SYNOPSIS
11513
11514 =item DESCRIPTION
11515
11516 =over 4
11517
11518 =item Methods
11519
11520 I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
11521 I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
11522 I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
11523 I<$OBJ>->Reset
11524
11525 =item Functions
11526
11527 Dumper(I<LIST>)
11528
11529 =item Configuration Variables or Methods
11530
11531 =item Exports
11532
11533 Dumper
11534
11535 =back
11536
11537 =item EXAMPLES
11538
11539 =item BUGS
11540
11541 =over 4
11542
11543 =item NOTE
11544
11545 =back
11546
11547 =item AUTHOR
11548
11549 =item VERSION
11550
11551 =item SEE ALSO
11552
11553 =back
11554
11555 =head2 Devel::DProf - a Perl code profiler
11556
11557 =over 4
11558
11559 =item SYNOPSIS
11560
11561 =item DESCRIPTION
11562
11563 =item PROFILE FORMAT
11564
11565 =item AUTOLOAD
11566
11567 =item ENVIRONMENT
11568
11569 =item BUGS
11570
11571 =item SEE ALSO
11572
11573 =back
11574
11575 =head2 Devel::PPPort - Perl/Pollution/Portability
11576
11577 =over 4
11578
11579 =item SYNOPSIS
11580
11581 =item DESCRIPTION
11582
11583 =over 4
11584
11585 =item WriteFile
11586
11587 =back
11588
11589 =item ppport.h
11590
11591 =item AUTHOR
11592
11593 =item SEE ALSO
11594
11595 =back
11596
11597 =head2 Devel::Peek - A data debugging tool for the XS programmer
11598
11599 =over 4
11600
11601 =item SYNOPSIS
11602
11603 =item DESCRIPTION
11604
11605 =over 4
11606
11607 =item Runtime debugging
11608
11609 =item Memory footprint debugging
11610
11611 =back
11612
11613 =item EXAMPLES
11614
11615 =over 4
11616
11617 =item A simple scalar string
11618
11619 =item A simple scalar number
11620
11621 =item A simple scalar with an extra reference
11622
11623 =item A reference to a simple scalar
11624
11625 =item A reference to an array
11626
11627 =item A reference to a hash
11628
11629 =item Dumping a large array or hash
11630
11631 =item A reference to an SV which holds a C pointer
11632
11633 =item A reference to a subroutine
11634
11635 =back
11636
11637 =item EXPORTS
11638
11639 =item BUGS
11640
11641 =item AUTHOR
11642
11643 =item SEE ALSO
11644
11645 =back
11646
11647 =head2 Devel::SelfStubber - generate stubs for a SelfLoading module
11648
11649 =over 4
11650
11651 =item SYNOPSIS
11652
11653 =item DESCRIPTION
11654
11655 =back
11656
11657 =head2 Digest:: - Modules that calculate message digests
11658
11659 =over 4
11660
11661 =item SYNOPSIS
11662
11663 =item DESCRIPTION
11664
11665 I<binary>, I<hex>, I<base64>
11666
11667 =item OO INTERFACE
11668
11669 $ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
11670 Digest::XXX->new($arg,...), $other_ctx = $ctx->clone, $ctx->reset,
11671 $ctx->add($data,...), $ctx->addfile($io_handle), $ctx->digest,
11672 $ctx->hexdigest, $ctx->b64digest
11673
11674 =item SEE ALSO
11675
11676 =item AUTHOR
11677
11678 =back
11679
11680 =head2 Digest::MD5 - Perl interface to the MD5 Algorithm
11681
11682 =over 4
11683
11684 =item SYNOPSIS
11685
11686 =item DESCRIPTION
11687
11688 =item FUNCTIONS
11689
11690 md5($data,...), md5_hex($data,...), md5_base64($data,...)
11691
11692 =item METHODS
11693
11694 $md5 = Digest::MD5->new, $md5->reset, $md5->clone, $md5->add($data,...),
11695 $md5->addfile($io_handle), $md5->digest, $md5->hexdigest, $md5->b64digest
11696
11697 =item EXAMPLES
11698
11699 =item SEE ALSO
11700
11701 =item COPYRIGHT
11702
11703 =item AUTHORS
11704
11705 =back
11706
11707 =head2 DirHandle - supply object methods for directory handles
11708
11709 =over 4
11710
11711 =item SYNOPSIS
11712
11713 =item DESCRIPTION
11714
11715 =item NOTES
11716
11717 =back
11718
11719 =head2 Dumpvalue - provides screen dump of Perl data.
11720
11721 =over 4
11722
11723 =item SYNOPSIS
11724
11725 =item DESCRIPTION
11726
11727 =over 4
11728
11729 =item Creation
11730
11731 C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
11732 C<dumpDBFiles>, C<dumpPackages>, C<dumpReused>, C<tick>, C<quoteHighBit>,
11733 C<printUndef>, C<usageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
11734 stopDbSignal
11735
11736 =item Methods
11737
11738 dumpValue, dumpValues, stringify, dumpvars, set_quote, set_unctrl,
11739 compactDump, veryCompact, set, get
11740
11741 =back
11742
11743 =back
11744
11745 =head2 DynaLoader - Dynamically load C libraries into Perl code
11746
11747 =over 4
11748
11749 =item SYNOPSIS
11750
11751 =item DESCRIPTION
11752
11753 @dl_library_path, @dl_resolve_using, @dl_require_symbols, @dl_librefs,
11754 @dl_modules, dl_error(), $dl_debug, dl_findfile(), dl_expandspec(),
11755 dl_load_file(), dl_unload_file(), dl_load_flags(), dl_find_symbol(),
11756 dl_find_symbol_anywhere(), dl_undef_symbols(), dl_install_xsub(),
11757 bootstrap()
11758
11759 =item AUTHOR
11760
11761 =back
11762
11763 =head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
11764 Perl code
11765
11766 =over 4
11767
11768 =item SYNOPSIS
11769
11770 =item DESCRIPTION
11771
11772 =over 4
11773
11774 =item Migration from C<DynaLoader>
11775
11776 =item Backward compatible boilerplate
11777
11778 =back
11779
11780 =item Order of initialization: early load()
11781
11782 =over 4
11783
11784 =item The most hairy case
11785
11786 =back
11787
11788 =item LIMITATIONS
11789
11790 =item AUTHOR
11791
11792 =back
11793
11794 =head2 Encode - character encodings
11795
11796 =over 4
11797
11798 =item SYNOPSIS
11799
11800 =over 4
11801
11802 =item Table of Contents
11803
11804 =back
11805
11806 =item DESCRIPTION
11807
11808 =over 4
11809
11810 =item TERMINOLOGY
11811
11812 =back
11813
11814 =item PERL ENCODING API
11815
11816 $octets  = encode(ENCODING, $string [, CHECK]), $string = decode(ENCODING,
11817 $octets [, CHECK]), [$length =] from_to($octets, FROM_ENC, TO_ENC [,
11818 CHECK]), $octets = encode_utf8($string);, $string = decode_utf8($octets [,
11819 CHECK]);
11820
11821 =over 4
11822
11823 =item Listing available encodings
11824
11825 =item Defining Aliases
11826
11827 =back
11828
11829 =item Encoding via PerlIO
11830
11831 =item Handling Malformed Data
11832
11833 I<CHECK> = Encode::FB_DEFAULT ( == 0), I<CHECK> = Encode::FB_CROAK ( == 1),
11834 I<CHECK> = Encode::FB_QUIET, I<CHECK> = Encode::FB_WARN, perlqq mode
11835 (I<CHECK> = Encode::FB_PERLQQ), HTML charref mode (I<CHECK> =
11836 Encode::FB_HTMLCREF), XML charref mode (I<CHECK> = Encode::FB_XMLCREF), The
11837 bitmask
11838
11839 =over 4
11840
11841 =item Unimplemented fallback schemes
11842
11843 =back
11844
11845 =item Defining Encodings
11846
11847 =item The UTF-8 flag
11848
11849 Goal #1:, Goal #2:, Goal #3:, Goal #4:
11850
11851 =over 4
11852
11853 =item Messing with Perl's Internals
11854
11855 is_utf8(STRING [, CHECK]), _utf8_on(STRING), _utf8_off(STRING)
11856
11857 =back
11858
11859 =item SEE ALSO
11860
11861 =item MAINTAINER
11862
11863 =back
11864
11865 =head2 Encode::Alias - alias definitions to encodings
11866
11867 =over 4
11868
11869 =item SYNOPSIS
11870
11871 =item DESCRIPTION
11872
11873 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
11874 reference, e.g.:
11875
11876 =over 4
11877
11878 =item Alias overloading
11879
11880 =back
11881
11882 =item SEE ALSO
11883
11884 =back
11885
11886 =head2 Encode::Byte - Single Byte Encodings
11887
11888 =over 4
11889
11890 =item SYNOPSIS
11891
11892 =item ABSTRACT
11893
11894 =item DESCRIPTION
11895
11896 =item SEE ALSO
11897
11898 =back
11899
11900 =head2 Encode::CJKConstants -- Internally used by Encode::??::ISO_2022_*
11901
11902 =head2 Encode::CN - China-based Chinese Encodings
11903
11904 =over 4
11905
11906 =item SYNOPSIS
11907
11908 =item DESCRIPTION
11909
11910 =item NOTES
11911
11912 =item BUGS
11913
11914 =item SEE ALSO
11915
11916 =back
11917
11918 =head2 Encode::CN::HZ -- internally used by Encode::CN
11919
11920 =head2 Encode::Config -- internally used by Encode
11921
11922 =head2 Encode::EBCDIC - EBCDIC Encodings
11923
11924 =over 4
11925
11926 =item SYNOPSIS
11927
11928 =item ABSTRACT
11929
11930 =item DESCRIPTION
11931
11932 =item SEE ALSO
11933
11934 =back
11935
11936 =head2 Encode::Encoding - Encode Implementation Base Class
11937
11938 =over 4
11939
11940 =item SYNOPSIS
11941
11942 =item DESCRIPTION
11943
11944 =over 4
11945
11946 =item Methods you should implement
11947
11948 -E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
11949 -E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
11950
11951 =item Other methods defined in Encode::Encodings
11952
11953 -E<gt>name, -E<gt>renew, -E<gt>perlio_ok(), -E<gt>needs_lines()
11954
11955 =item Example: Encode::ROT13
11956
11957 =back
11958
11959 =item Why the heck Encode API is different?
11960
11961 =over 4
11962
11963 =item Compiled Encodings
11964
11965 =back
11966
11967 =item SEE ALSO
11968
11969 Scheme 1, Scheme 2, Other Schemes
11970
11971 =back
11972
11973 =head2 Encode::Guess -- Guesses encoding from data
11974
11975 =over 4
11976
11977 =item SYNOPSIS
11978
11979 =item ABSTRACT
11980
11981 =item DESCRIPTION
11982
11983 Encode::Guess->set_suspects, Encode::Guess->add_suspects,
11984 Encode::decode("Guess" ...), Encode::Guess->guess($data),
11985 guess_encoding($data, [, I<list of suspects>])
11986
11987 =item CAVEATS
11988
11989 =item TO DO
11990
11991 =item SEE ALSO
11992
11993 =back
11994
11995 =head2 Encode::JP - Japanese Encodings
11996
11997 =over 4
11998
11999 =item SYNOPSIS
12000
12001 =item ABSTRACT
12002
12003 =item DESCRIPTION
12004
12005 =item Note on ISO-2022-JP(-1)?
12006
12007 =item BUGS
12008
12009 =item SEE ALSO
12010
12011 =back
12012
12013 =head2 Encode::JP::H2Z -- internally used by Encode::JP::2022_JP*
12014
12015 =head2 Encode::JP::JIS7 -- internally used by Encode::JP
12016
12017 =head2 Encode::KR - Korean Encodings
12018
12019 =over 4
12020
12021 =item SYNOPSIS
12022
12023 =item DESCRIPTION
12024
12025 =item BUGS
12026
12027 =item SEE ALSO
12028
12029 =back
12030
12031 =head2 Encode::KR::2022_KR -- internally used by Encode::KR
12032
12033 =head2 Encode::MIME::Header -- MIME 'B' and 'Q' header encoding
12034
12035 =over 4
12036
12037 =item SYNOPSIS
12038
12039 =item ABSTRACT
12040
12041 =item DESCRIPTION
12042
12043 =item BUGS
12044
12045 =item SEE ALSO
12046
12047 =back
12048
12049 =head2 Encode::PerlIO -- a detailed document on Encode and PerlIO
12050
12051 =over 4
12052
12053 =item Overview
12054
12055 =item How does it work?
12056
12057 =item Line Buffering
12058
12059 =over 4
12060
12061 =item How can I tell whether my encoding fully supports PerlIO ?
12062
12063 =back
12064
12065 =item SEE ALSO
12066
12067 =back
12068
12069 =head2 Encode::Supported -- Encodings supported by Encode
12070
12071 =over 4
12072
12073 =item DESCRIPTION
12074
12075 =over 4
12076
12077 =item Encoding Names
12078
12079 =back
12080
12081 =item Supported Encodings
12082
12083 =over 4
12084
12085 =item Built-in Encodings
12086
12087 =item Encode::Unicode -- other Unicode encodings
12088
12089 =item Encode::Byte -- Extended ASCII
12090
12091 ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
12092 the Cyrillic world, gsm0338 - Hentai Latin 1
12093
12094 =item CJK: Chinese, Japanese, Korean (Multibyte)
12095
12096 Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
12097 Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
12098 Encode::JIS2K -- JIS X 0213 encodings via CPAN
12099
12100 =item Miscellaneous encodings
12101
12102 Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
12103
12104 =back
12105
12106 =item Unsupported encodings
12107
12108   ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
12109 Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
12110 System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
12111 Various Mac encodings, (Mac) Indic encodings
12112
12113 =item Encoding vs. Charset -- terminology
12114
12115 =item Encoding Classification (by Anton Tagunov and Dan Kogai)
12116
12117 =over 4
12118
12119 =item Microsoft-related naming mess
12120
12121 KS_C_5601-1987, GB2312, Big5, Shift_JIS
12122
12123 =back
12124
12125 =item Glossary
12126
12127 character repertoire, coded character set (CCS), character encoding scheme
12128 (CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
12129 UTF-16
12130
12131 =item See Also
12132
12133 =item References
12134
12135 ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
12136 RFC, UC, Unicode Glossary
12137
12138 =over 4
12139
12140 =item Other Notable Sites
12141
12142 czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
12143 "Introduction to i18n"
12144
12145 =item Offline sources
12146
12147 C<CJKV Information Processing> by Ken Lunde
12148
12149 =back
12150
12151 =back
12152
12153 =head2 Encode::Symbol - Symbol Encodings
12154
12155 =over 4
12156
12157 =item SYNOPSIS
12158
12159 =item ABSTRACT
12160
12161 =item DESCRIPTION
12162
12163 =item SEE ALSO
12164
12165 =back
12166
12167 =head2 Encode::TW - Taiwan-based Chinese Encodings
12168
12169 =over 4
12170
12171 =item SYNOPSIS
12172
12173 =item DESCRIPTION
12174
12175 =item NOTES
12176
12177 =item BUGS
12178
12179 =item SEE ALSO
12180
12181 =back
12182
12183 =head2 Encode::Unicode -- Various Unicode Transformation Formats
12184
12185 =over 4
12186
12187 =item SYNOPSIS
12188
12189 =item ABSTRACT
12190
12191 L<http://www.unicode.org/glossary/> says:, Quick Reference
12192
12193 =item Size, Endianness, and BOM
12194
12195 =over 4
12196
12197 =item by size
12198
12199 =item by endianness
12200
12201 BOM as integer when fetched in network byte order
12202
12203 =back
12204
12205 =item Surrogate Pairs
12206
12207 =item SEE ALSO
12208
12209 =back
12210
12211 =head2 Encode::Unicode::UTF7 -- UTF-7 encoding
12212
12213 =over 4
12214
12215 =item SYNOPSIS
12216
12217 =item ABSTRACT
12218
12219 =item In Practice
12220
12221 =item SEE ALSO
12222
12223 =back
12224
12225 =head2 Encode::lib::Encode::Alias, Encode::Alias - alias definitions to
12226 encodings
12227
12228 =over 4
12229
12230 =item SYNOPSIS
12231
12232 =item DESCRIPTION
12233
12234 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
12235 reference, e.g.:
12236
12237 =over 4
12238
12239 =item Alias overloading
12240
12241 =back
12242
12243 =item SEE ALSO
12244
12245 =back
12246
12247 =head2 Encode::lib::Encode::CJKConstants, Encode::CJKConstants.pm --
12248 Internally used by Encode::??::ISO_2022_*
12249
12250 =head2 Encode::lib::Encode::CN::HZ, Encode::CN::HZ -- internally used by
12251 Encode::CN
12252
12253 =head2 Encode::lib::Encode::Config, Encode::Config -- internally used by
12254 Encode
12255
12256 =head2 Encode::lib::Encode::Encoding, Encode::Encoding - Encode
12257 Implementation Base Class
12258
12259 =over 4
12260
12261 =item SYNOPSIS
12262
12263 =item DESCRIPTION
12264
12265 =over 4
12266
12267 =item Methods you should implement
12268
12269 -E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
12270 -E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
12271
12272 =item Other methods defined in Encode::Encodings
12273
12274 -E<gt>name, -E<gt>renew, -E<gt>perlio_ok(), -E<gt>needs_lines()
12275
12276 =item Example: Encode::ROT13
12277
12278 =back
12279
12280 =item Why the heck Encode API is different?
12281
12282 =over 4
12283
12284 =item Compiled Encodings
12285
12286 =back
12287
12288 =item SEE ALSO
12289
12290 Scheme 1, Scheme 2, Other Schemes
12291
12292 =back
12293
12294 =head2 Encode::lib::Encode::Guess, Encode::Guess -- Guesses encoding from
12295 data
12296
12297 =over 4
12298
12299 =item SYNOPSIS
12300
12301 =item ABSTRACT
12302
12303 =item DESCRIPTION
12304
12305 Encode::Guess->set_suspects, Encode::Guess->add_suspects,
12306 Encode::decode("Guess" ...), Encode::Guess->guess($data),
12307 guess_encoding($data, [, I<list of suspects>])
12308
12309 =item CAVEATS
12310
12311 =item TO DO
12312
12313 =item SEE ALSO
12314
12315 =back
12316
12317 =head2 Encode::lib::Encode::JP::H2Z, Encode::JP::H2Z -- internally used by
12318 Encode::JP::2022_JP*
12319
12320 =head2 Encode::lib::Encode::JP::JIS7, Encode::JP::JIS7 -- internally used
12321 by Encode::JP
12322
12323 =head2 Encode::lib::Encode::KR::2022_KR, Encode::KR::2022_KR -- internally
12324 used by Encode::KR
12325
12326 =head2 Encode::lib::Encode::MIME::Header, Encode::MIME::Header -- MIME 'B'
12327 and 'Q' header encoding
12328
12329 =over 4
12330
12331 =item SYNOPSIS
12332
12333 =item ABSTRACT
12334
12335 =item DESCRIPTION
12336
12337 =item BUGS
12338
12339 =item SEE ALSO
12340
12341 =back
12342
12343 =head2 Encode::lib::Encode::PerlIO, Encode::PerlIO -- a detailed document
12344 on Encode and PerlIO
12345
12346 =over 4
12347
12348 =item Overview
12349
12350 =item How does it work?
12351
12352 =item Line Buffering
12353
12354 =over 4
12355
12356 =item How can I tell whether my encoding fully supports PerlIO ?
12357
12358 =back
12359
12360 =item SEE ALSO
12361
12362 =back
12363
12364 =head2 Encode::lib::Encode::Supported, Encode::Supported -- Encodings
12365 supported by Encode
12366
12367 =over 4
12368
12369 =item DESCRIPTION
12370
12371 =over 4
12372
12373 =item Encoding Names
12374
12375 =back
12376
12377 =item Supported Encodings
12378
12379 =over 4
12380
12381 =item Built-in Encodings
12382
12383 =item Encode::Unicode -- other Unicode encodings
12384
12385 =item Encode::Byte -- Extended ASCII
12386
12387 ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
12388 the Cyrillic world, gsm0338 - Hentai Latin 1
12389
12390 =item CJK: Chinese, Japanese, Korean (Multibyte)
12391
12392 Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
12393 Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
12394 Encode::JIS2K -- JIS X 0213 encodings via CPAN
12395
12396 =item Miscellaneous encodings
12397
12398 Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
12399
12400 =back
12401
12402 =item Unsupported encodings
12403
12404   ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
12405 Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
12406 System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
12407 Various Mac encodings, (Mac) Indic encodings
12408
12409 =item Encoding vs. Charset -- terminology
12410
12411 =item Encoding Classification (by Anton Tagunov and Dan Kogai)
12412
12413 =over 4
12414
12415 =item Microsoft-related naming mess
12416
12417 KS_C_5601-1987, GB2312, Big5, Shift_JIS
12418
12419 =back
12420
12421 =item Glossary
12422
12423 character repertoire, coded character set (CCS), character encoding scheme
12424 (CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
12425 UTF-16
12426
12427 =item See Also
12428
12429 =item References
12430
12431 ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
12432 RFC, UC, Unicode Glossary
12433
12434 =over 4
12435
12436 =item Other Notable Sites
12437
12438 czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
12439 "Introduction to i18n"
12440
12441 =item Offline sources
12442
12443 C<CJKV Information Processing> by Ken Lunde
12444
12445 =back
12446
12447 =back
12448
12449 =head2 Encode::lib::Encode::Unicode::UTF7, Encode::Unicode::UTF7 -- UTF-7
12450 encoding
12451
12452 =over 4
12453
12454 =item SYNOPSIS
12455
12456 =item ABSTRACT
12457
12458 =item In Practice
12459
12460 =item SEE ALSO
12461
12462 =back
12463
12464 =head2 Encode::lib::Encoder, Encode::Encoder -- Object Oriented Encoder
12465
12466 =over 4
12467
12468 =item SYNOPSIS
12469
12470 =item ABSTRACT
12471
12472 =item Description
12473
12474 =over 4
12475
12476 =item Predefined Methods
12477
12478 $e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
12479 $e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
12480 $e-E<gt>bytes([$encoding])
12481
12482 =item Example: base64 transcoder
12483
12484 =item Operator Overloading
12485
12486 =back
12487
12488 =item SEE ALSO
12489
12490 =back
12491
12492 =head2 Encodencoding, encoding - allows you to write your script in
12493 non-ascii or non-utf8
12494
12495 =over 4
12496
12497 =item SYNOPSIS
12498
12499 =item ABSTRACT
12500
12501 =over 4
12502
12503 =item Literal Conversions
12504
12505 =item PerlIO layers for C<STD(IN|OUT)>
12506
12507 =back
12508
12509 =item FEATURES THAT REQUIRE 5.8.1
12510
12511 "NON-EUC" doublebyte encodings, tr//, DATA pseudo-filehandle
12512
12513 =item USAGE
12514
12515 use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
12516 I<ENCNAME_IN> ...] ;, use encoding I<ENCNAME> Filter=E<gt>1;, no encoding;
12517
12518 =item The Filter Option
12519
12520 =over 4
12521
12522 =item Filter-related changes at Encode version 1.87
12523
12524 =back
12525
12526 =item CAVEATS
12527
12528 =over 4
12529
12530 =item NOT SCOPED
12531
12532 =item DO NOT MIX MULTIPLE ENCODINGS
12533
12534 =item tr/// with ranges
12535
12536 Legend of characters above
12537
12538 =back
12539
12540 =item EXAMPLE - Greekperl
12541
12542 =item KNOWN PROBLEMS
12543
12544 literals in regex that are longer than 127 bytes, EBCDIC, format
12545
12546 =item HISTORY
12547
12548 =item SEE ALSO
12549
12550 =back
12551
12552 =head2 Encoder, Encode::Encoder -- Object Oriented Encoder
12553
12554 =over 4
12555
12556 =item SYNOPSIS
12557
12558 =item ABSTRACT
12559
12560 =item Description
12561
12562 =over 4
12563
12564 =item Predefined Methods
12565
12566 $e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
12567 $e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
12568 $e-E<gt>bytes([$encoding])
12569
12570 =item Example: base64 transcoder
12571
12572 =item Operator Overloading
12573
12574 =back
12575
12576 =item SEE ALSO
12577
12578 =back
12579
12580 =head2 English - use nice English (or awk) names for ugly punctuation
12581 variables
12582
12583 =over 4
12584
12585 =item SYNOPSIS
12586
12587 =item DESCRIPTION
12588
12589 =item PERFORMANCE
12590
12591 =back
12592
12593 =head2 Env - perl module that imports environment variables as scalars or
12594 arrays
12595
12596 =over 4
12597
12598 =item SYNOPSIS
12599
12600 =item DESCRIPTION
12601
12602 =item LIMITATIONS
12603
12604 =item AUTHOR
12605
12606 =back
12607
12608 =head2 Errno - System errno constants
12609
12610 =over 4
12611
12612 =item SYNOPSIS
12613
12614 =item DESCRIPTION
12615
12616 =item CAVEATS
12617
12618 =item AUTHOR
12619
12620 =item COPYRIGHT
12621
12622 =back
12623
12624 =head2 Exporter - Implements default import method for modules
12625
12626 =over 4
12627
12628 =item SYNOPSIS
12629
12630 =item DESCRIPTION
12631
12632 =over 4
12633
12634 =item How to Export
12635
12636 =item Selecting What To Export
12637
12638 =item How to Import
12639
12640 C<use ModuleName;>, C<use ModuleName ();>, C<use ModuleName qw(...);>
12641
12642 =back
12643
12644 =item Advanced features
12645
12646 =over 4
12647
12648 =item Specialised Import Lists
12649
12650 =item Exporting without using Exporter's import method
12651
12652 =item Module Version Checking
12653
12654 =item Managing Unknown Symbols
12655
12656 =item Tag Handling Utility Functions
12657
12658 =item Generating combined tags
12659
12660 =item C<AUTOLOAD>ed Constants
12661
12662 =back
12663
12664 =back
12665
12666 =head2 Exporter::Heavy - Exporter guts
12667
12668 =over 4
12669
12670 =item SYNOPSIS
12671
12672 =item DESCRIPTION
12673
12674 =back
12675
12676 =head2 ExtUtils::Command - utilities to replace common UNIX commands in
12677 Makefiles etc.
12678
12679 =over 4
12680
12681 =item SYNOPSIS
12682
12683 =item DESCRIPTION
12684
12685 =back
12686
12687 cat
12688
12689 eqtime src dst
12690
12691 rm_rf files...
12692
12693 rm_f files...
12694
12695 touch files ..
12696
12697 mv source... destination
12698
12699 cp source... destination
12700
12701 chmod mode files..
12702
12703 mkpath directory..
12704
12705 test_f file
12706
12707 =over 4
12708
12709 =item BUGS
12710
12711 =item SEE ALSO 
12712
12713 =item AUTHOR
12714
12715 =back
12716
12717 =head2 ExtUtils::Command::MM - Commands for the MM's to use in Makefiles
12718
12719 =over 4
12720
12721 =item SYNOPSIS
12722
12723 =item DESCRIPTION
12724
12725 B<test_harness>
12726
12727 =back
12728
12729 B<pod2man>
12730
12731 B<warn_if_old_packlist>
12732
12733 B<perllocal_install>
12734
12735 B<uninstall>
12736
12737 =head2 ExtUtils::Constant - generate XS code to import C header constants
12738
12739 =over 4
12740
12741 =item SYNOPSIS
12742
12743 =item DESCRIPTION
12744
12745 =item USAGE
12746
12747 IV, UV, NV, PV, PVN, SV, YES, NO, UNDEF
12748
12749 =item FUNCTIONS
12750
12751 =back
12752
12753 C_stringify NAME
12754
12755 perl_stringify NAME
12756
12757 constant_types
12758
12759 memEQ_clause NAME, CHECKED_AT, INDENT
12760
12761 assign INDENT, TYPE, PRE, POST, VALUE..
12762
12763 return_clause
12764
12765 switch_clause INDENT, NAMELEN, ITEMHASH, ITEM..
12766
12767 params WHAT
12768
12769 dump_names
12770
12771 dogfood
12772
12773 C_constant, name, type, value, macro, default, pre, post, def_pre =item
12774 def_post, utf8
12775
12776 XS_constant PACKAGE, TYPES, SUBNAME, C_SUBNAME
12777
12778 autoload PACKAGE, VERSION, AUTOLOADER
12779
12780 WriteMakefileSnippet
12781
12782 WriteConstants ATTRIBUTE =E<gt> VALUE [, ...], NAME, DEFAULT_TYPE,
12783 BREAKOUT_AT, NAMES, C_FILE, XS_FILE, SUBNAME, C_SUBNAME
12784
12785 =over 4
12786
12787 =item AUTHOR
12788
12789 =back
12790
12791 =head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
12792
12793 =over 4
12794
12795 =item SYNOPSIS
12796
12797 =item DESCRIPTION
12798
12799 =item @EXPORT
12800
12801 =item FUNCTIONS
12802
12803 xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
12804 ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
12805
12806 =item EXAMPLES
12807
12808 =item SEE ALSO
12809
12810 =item AUTHOR
12811
12812 =back
12813
12814 =head2 ExtUtils::Install - install files from here to there
12815
12816 =over 4
12817
12818 =item SYNOPSIS
12819
12820 =item DESCRIPTION
12821
12822 =over 4
12823
12824 =item Functions
12825
12826 B<install>
12827
12828 =back
12829
12830 =back
12831
12832 B<install_default> I<DISCOURAGED>
12833
12834 B<uninstall>
12835
12836 B<pm_to_blib>
12837
12838 _autosplit
12839
12840 =over 4
12841
12842 =item ENVIRONMENT
12843
12844 B<PERL_INSTALL_ROOT>
12845
12846 =item AUTHOR
12847
12848 =item LICENSE
12849
12850 =back
12851
12852 =head2 ExtUtils::Installed - Inventory management of installed modules
12853
12854 =over 4
12855
12856 =item SYNOPSIS
12857
12858 =item DESCRIPTION
12859
12860 =item USAGE
12861
12862 =item FUNCTIONS
12863
12864 new(), modules(), files(), directories(), directory_tree(), validate(),
12865 packlist(), version()
12866
12867 =item EXAMPLE
12868
12869 =item AUTHOR
12870
12871 =back
12872
12873 =head2 ExtUtils::Liblist - determine libraries to use and how to use them
12874
12875 =over 4
12876
12877 =item SYNOPSIS
12878
12879 =item DESCRIPTION
12880
12881 For static extensions, For dynamic extensions at build/link time, For
12882 dynamic extensions at load time
12883
12884 =over 4
12885
12886 =item EXTRALIBS
12887
12888 =item LDLOADLIBS and LD_RUN_PATH
12889
12890 =item BSLOADLIBS
12891
12892 =back
12893
12894 =item PORTABILITY
12895
12896 =over 4
12897
12898 =item VMS implementation
12899
12900 =item Win32 implementation
12901
12902 =back
12903
12904 =item SEE ALSO
12905
12906 =back
12907
12908 =head2 ExtUtils::MM - OS adjusted ExtUtils::MakeMaker subclass
12909
12910 =over 4
12911
12912 =item SYNOPSIS
12913
12914 =item DESCRIPTION
12915
12916 =back
12917
12918 =head2 ExtUtils::MM_Any - Platform agnostic MM methods
12919
12920 =over 4
12921
12922 =item SYNOPSIS
12923
12924 =item DESCRIPTION
12925
12926 =item Inherently Cross-Platform Methods
12927
12928 installvars
12929
12930 =back
12931
12932 os_flavor_is
12933
12934 =over 4
12935
12936 =item File::Spec wrappers
12937
12938 catfile
12939
12940 =back
12941
12942 =over 4
12943
12944 =item Thought To Be Cross-Platform Methods
12945
12946 B<split_command>
12947
12948 =back
12949
12950 B<echo>
12951
12952 init_VERSION
12953
12954 wraplist
12955
12956 manifypods
12957
12958 manifypods_target
12959
12960 makemakerdflt_target
12961
12962 special_targets
12963
12964 POD2MAN_macro
12965
12966 test_via_harness
12967
12968 test_via_script
12969
12970 libscan
12971
12972 tool_autosplit
12973
12974 all_target
12975
12976 metafile_target
12977
12978 metafile_addtomanifest_target
12979
12980 =over 4
12981
12982 =item Abstract methods
12983
12984 oneliner, B<quote_literal>, B<escape_newlines>, max_exec_len,
12985 B<init_others>, init_DIRFILESEP, init_linker, init_platform,
12986 platform_constants
12987
12988 =back
12989
12990 os_flavor
12991
12992 =over 4
12993
12994 =item AUTHOR
12995
12996 =back
12997
12998 =head2 ExtUtils::MM_BeOS - methods to override UN*X behaviour in
12999 ExtUtils::MakeMaker
13000
13001 =over 4
13002
13003 =item SYNOPSIS
13004
13005 =item DESCRIPTION
13006
13007 =back
13008
13009 os_flavor (o)
13010
13011 init_linker
13012
13013 =head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
13014 ExtUtils::MakeMaker
13015
13016 =over 4
13017
13018 =item SYNOPSIS
13019
13020 =item DESCRIPTION
13021
13022 os_flavor (o)
13023
13024 =back
13025
13026 cflags (o)
13027
13028 replace_manpage_separator (o)
13029
13030 init_linker
13031
13032 =head2 ExtUtils::MM_DOS - DOS specific subclass of ExtUtils::MM_Unix
13033
13034 =over 4
13035
13036 =item SYNOPSIS
13037
13038 =item DESCRIPTION
13039
13040 =over 4
13041
13042 =item Overridden methods
13043
13044 os_flavor
13045
13046 =back
13047
13048 =back
13049
13050 B<replace_manpage_separator>
13051
13052 =over 4
13053
13054 =item AUTHOR
13055
13056 =item SEE ALSO
13057
13058 =back
13059
13060 =head2 ExtUtils::MM_MacOS - methods to override UN*X behaviour in
13061 ExtUtils::MakeMaker
13062
13063 =over 4
13064
13065 =item SYNOPSIS
13066
13067 =item DESCRIPTION
13068
13069 =back
13070
13071 maybe_command
13072
13073 guess_name
13074
13075 macify
13076
13077 patternify
13078
13079 init_main
13080
13081 init_others
13082
13083 init_platform, platform_constants
13084
13085 init_dirscan
13086
13087 init_VERSION (o)
13088
13089 special_targets (o)
13090
13091 static (o)
13092
13093 dlsyms (o)
13094
13095 dynamic (o)
13096
13097 clean (o)
13098
13099 clean_subdirs_target
13100
13101 realclean (o)
13102
13103 realclean_subdirs_target
13104
13105 rulez (o)
13106
13107 processPL (o)
13108
13109 os_flavor
13110
13111 =head2 ExtUtils::MM_NW5 - methods to override UN*X behaviour in
13112 ExtUtils::MakeMaker
13113
13114 =over 4
13115
13116 =item SYNOPSIS
13117
13118 =item DESCRIPTION
13119
13120 =back
13121
13122 os_flavor
13123
13124 init_platform (o), platform_constants
13125
13126 const_cccmd (o)
13127
13128 static_lib (o)
13129
13130 dynamic_lib (o)
13131
13132 =head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
13133 ExtUtils::MakeMaker
13134
13135 =over 4
13136
13137 =item SYNOPSIS
13138
13139 =item DESCRIPTION
13140
13141 =item METHODS
13142
13143 init_dist (o)
13144
13145 =back
13146
13147 init_linker
13148
13149 os_flavor
13150
13151 =head2 ExtUtils::MM_UWIN - U/WIN specific subclass of ExtUtils::MM_Unix
13152
13153 =over 4
13154
13155 =item SYNOPSIS
13156
13157 =item DESCRIPTION
13158
13159 =over 4
13160
13161 =item Overridden methods
13162
13163 os_flavor
13164
13165 =back
13166
13167 =back
13168
13169 B<replace_manpage_separator>
13170
13171 =over 4
13172
13173 =item AUTHOR
13174
13175 =item SEE ALSO
13176
13177 =back
13178
13179 =head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
13180
13181 =over 4
13182
13183 =item SYNOPSIS
13184
13185 =item DESCRIPTION
13186
13187 =item METHODS
13188
13189 =back
13190
13191 =over 4
13192
13193 =item Methods
13194
13195 os_flavor (o)
13196
13197 =back
13198
13199 c_o (o)
13200
13201 cflags (o)
13202
13203 clean (o)
13204
13205 clean_subdirs_target
13206
13207 const_cccmd (o)
13208
13209 const_config (o)
13210
13211 const_loadlibs (o)
13212
13213 constants (o)
13214
13215 depend (o)
13216
13217 dir_target (o)
13218
13219 init_DEST
13220
13221 init_dist
13222
13223 dist (o)
13224
13225 dist_basics (o)
13226
13227 dist_ci (o)
13228
13229 dist_core (o)
13230
13231 B<dist_target>
13232
13233 B<tardist_target>
13234
13235 B<zipdist_target>
13236
13237 B<tarfile_target>
13238
13239 zipfile_target
13240
13241 uutardist_target
13242
13243 shdist_target
13244
13245 distdir
13246
13247 dist_test
13248
13249 dlsyms (o)
13250
13251 dynamic (o)
13252
13253 dynamic_bs (o)
13254
13255 dynamic_lib (o)
13256
13257 exescan
13258
13259 extliblist
13260
13261 find_perl
13262
13263 find_tests
13264
13265 =over 4
13266
13267 =item Methods to actually produce chunks of text for the Makefile
13268
13269 fixin
13270
13271 =back
13272
13273 force (o)
13274
13275 guess_name
13276
13277 has_link_code
13278
13279 init_dirscan
13280
13281 init_DIRFILESEP
13282
13283 init_main
13284
13285 init_others
13286
13287 init_INST
13288
13289 init_INSTALL
13290
13291 init_linker
13292
13293 init_lib2arch
13294
13295 init_PERL
13296
13297 init_platform (o), platform_constants (o)
13298
13299 init_PERM
13300
13301 init_xs
13302
13303 install (o)
13304
13305 installbin (o)
13306
13307 linkext (o)
13308
13309 lsdir
13310
13311 macro (o)
13312
13313 makeaperl (o)
13314
13315 makefile (o)
13316
13317 maybe_command
13318
13319 needs_linking (o)
13320
13321 nicetext
13322
13323 parse_abstract
13324
13325 parse_version
13326
13327 pasthru (o)
13328
13329 perl_script
13330
13331 perldepend (o)
13332
13333 perm_rw (o)
13334
13335 perm_rwx (o)
13336
13337 pm_to_blib
13338
13339 post_constants (o)
13340
13341 post_initialize (o)
13342
13343 postamble (o)
13344
13345 ppd
13346
13347 prefixify
13348
13349 processPL (o)
13350
13351 quote_paren
13352
13353 realclean (o)
13354
13355 realclean_subdirs_target
13356
13357 replace_manpage_separator
13358
13359 oneliner (o)
13360
13361 quote_literal
13362
13363 escape_newlines
13364
13365 max_exec_len
13366
13367 static (o)
13368
13369 static_lib (o)
13370
13371 staticmake (o)
13372
13373 subdir_x (o)
13374
13375 subdirs (o)
13376
13377 test (o)
13378
13379 test_via_harness (override)
13380
13381 test_via_script (override)
13382
13383 tools_other (o)
13384
13385 tool_xsubpp (o)
13386
13387 all_target
13388
13389 top_targets (o)
13390
13391 writedoc
13392
13393 xs_c (o)
13394
13395 xs_cpp (o)
13396
13397 xs_o (o)
13398
13399 =over 4
13400
13401 =item SEE ALSO
13402
13403 =back
13404
13405 =head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
13406 ExtUtils::MakeMaker
13407
13408 =over 4
13409
13410 =item SYNOPSIS
13411
13412 =item DESCRIPTION
13413
13414 =over 4
13415
13416 =item Methods always loaded
13417
13418 wraplist
13419
13420 =back
13421
13422 =back
13423
13424 =over 4
13425
13426 =item Methods
13427
13428 guess_name (override)
13429
13430 =back
13431
13432 find_perl (override)
13433
13434 maybe_command (override)
13435
13436 perl_script (override)
13437
13438 replace_manpage_separator
13439
13440 init_DEST
13441
13442 init_DIRFILESEP
13443
13444 init_main (override)
13445
13446 init_others (override)
13447
13448 init_platform (override)
13449
13450 platform_constants
13451
13452 init_VERSION (override)
13453
13454 constants (override)
13455
13456 special_targets
13457
13458 cflags (override)
13459
13460 const_cccmd (override)
13461
13462 tool_sxubpp (override)
13463
13464 tools_other (override)
13465
13466 init_dist (override)
13467
13468 c_o (override)
13469
13470 xs_c (override)
13471
13472 xs_o (override)
13473
13474 dlsyms (override)
13475
13476 dynamic_lib (override)
13477
13478 dynamic_bs (override)
13479
13480 static_lib (override)
13481
13482 processPL (override)
13483
13484 installbin (override)
13485
13486 subdir_x (override)
13487
13488 clean (override)
13489
13490 clean_subdirs_target
13491
13492 realclean (override)
13493
13494 zipfile_target (o), tarfile_target (o), shdist_target (o)
13495
13496 dist_test (override)
13497
13498 install (override)
13499
13500 perldepend (override)
13501
13502 makefile (override)
13503
13504 find_tests (override)
13505
13506 test (override)
13507
13508 makeaperl (override)
13509
13510 nicetext (override)
13511
13512 prefixify (override)
13513
13514 oneliner (o)
13515
13516 B<echo> (o)
13517
13518 quote_literal
13519
13520 escape_newlines
13521
13522 max_exec_len
13523
13524 init_linker (o)
13525
13526 eliminate_macros
13527
13528 fixpath
13529
13530 os_flavor
13531
13532 =head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
13533 ExtUtils::MakeMaker
13534
13535 =over 4
13536
13537 =item SYNOPSIS
13538
13539 =item DESCRIPTION
13540
13541 =back
13542
13543 =over 4
13544
13545 =item Overridden methods
13546
13547 B<dlsyms>
13548
13549 =back
13550
13551 replace_manpage_separator
13552
13553 B<maybe_command>
13554
13555 B<find_tests>
13556
13557 B<init_DIRFILESEP>
13558
13559 B<init_others>
13560
13561 init_platform (o), platform_constants (o)
13562
13563 special_targets (o)
13564
13565 static_lib (o)
13566
13567 dynamic_lib (o)
13568
13569 clean
13570
13571 init_linker
13572
13573 perl_script
13574
13575 xs_o (o)
13576
13577 pasthru (o)
13578
13579 oneliner (o)
13580
13581 max_exec_len
13582
13583 os_flavor
13584
13585 =head2 ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X
13586
13587 =over 4
13588
13589 =item SYNOPSIS
13590
13591 =item DESCRIPTION
13592
13593 =over 4
13594
13595 =item Overriden methods
13596
13597 dist_test
13598
13599 =back
13600
13601 =back
13602
13603 subdir_x
13604
13605 xs_c
13606
13607 xs_cpp
13608
13609 xs_o
13610
13611 clean_subdirs_target
13612
13613 realclean_subdirs_target
13614
13615 os_flavor
13616
13617 =over 4
13618
13619 =item AUTHOR
13620
13621 =back
13622
13623 =head2 ExtUtils::MY - ExtUtils::MakeMaker subclass for customization
13624
13625 =over 4
13626
13627 =item SYNOPSIS
13628
13629 =item DESCRIPTION
13630
13631 =back
13632
13633 =head2 ExtUtils::MakeMaker - Create a module Makefile
13634
13635 =over 4
13636
13637 =item SYNOPSIS
13638
13639 =item DESCRIPTION
13640
13641 =over 4
13642
13643 =item How To Write A Makefile.PL
13644
13645 =item Default Makefile Behaviour
13646
13647 =item make test
13648
13649 =item make testdb
13650
13651 =item make install
13652
13653 =item PREFIX and LIB attribute
13654
13655 =item AFS users
13656
13657 =item Static Linking of a new Perl Binary
13658
13659 =item Determination of Perl Library and Installation Locations
13660
13661 =item Which architecture dependent directory?
13662
13663 =item Using Attributes and Parameters
13664
13665 ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CCFLAGS, CONFIG,
13666 CONFIGURE, DEFINE, DESTDIR, DIR, DISTNAME, DISTVNAME, DL_FUNCS, DL_VARS,
13667 EXCLUDE_EXT, EXE_FILES, FIRST_MAKEFILE, FULLPERL, FULLPERLRUN,
13668 FULLPERLRUNINST, FUNCLIST, H, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB,
13669 INSTALLBIN, INSTALLDIRS, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB,
13670 INSTALLSCRIPT, INSTALLSITEARCH, INSTALLSITEBIN, INSTALLSITELIB,
13671 INSTALLSITEMAN1DIR, INSTALLSITEMAN3DIR, INSTALLVENDORARCH,
13672 INSTALLVENDORBIN, INSTALLVENDORLIB, INSTALLVENDORMAN1DIR,
13673 INSTALLVENDORMAN3DIR, INST_ARCHLIB, INST_BIN, INST_LIB, INST_MAN1DIR,
13674 INST_MAN3DIR, INST_SCRIPT, LD, LDDLFLAGS, LDFROM, LIB, LIBPERL_A, LIBS,
13675 LINKTYPE, MAKEAPERL, MAKEFILE_OLD, MAN1PODS, MAN3PODS, MAP_TARGET,
13676 MYEXTLIB, NAME, NEEDS_LINKING, NOECHO, NORECURS, NO_META, NO_VC, OBJECT,
13677 OPTIMIZE, PERL, PERL_CORE, PERLMAINCC, PERL_ARCHLIB, PERL_LIB,
13678 PERL_MALLOC_OK, PERLPREFIX, PERLRUN, PERLRUNINST, PERL_SRC, PERM_RW,
13679 PERM_RWX, PL_FILES, PM, PMLIBDIRS, PM_FILTER, POLLUTE, PPM_INSTALL_EXEC,
13680 PPM_INSTALL_SCRIPT, PREFIX, PREREQ_FATAL, PREREQ_PM, PREREQ_PRINT,
13681 PRINT_PREREQ, SITEPREFIX, SKIP, TYPEMAPS, VENDORPREFIX, VERBINST, VERSION,
13682 VERSION_FROM, VERSION_SYM, XS, XSOPT, XSPROTOARG, XS_VERSION
13683
13684 =item Additional lowercase attributes
13685
13686 clean, depend, dist, dynamic_lib, linkext, macro, postamble, realclean,
13687 test, tool_autosplit
13688
13689 =item Overriding MakeMaker Methods
13690
13691 =item The End Of Cargo Cult Programming
13692
13693 C<<MAN3PODS => ' '>>
13694
13695 =item Hintsfile support
13696
13697 =item Distribution Support
13698
13699    make distcheck,    make skipcheck,    make distclean,    make manifest, 
13700   make distdir,   make disttest,    make tardist,    make dist,    make
13701 uutardist,    make shdist,    make zipdist,    make ci
13702
13703 =item Module Meta-Data
13704
13705 =item Disabling an extension
13706
13707 =item Other Handy Functions
13708
13709 prompt
13710
13711 =back
13712
13713 =item ENVIRONMENT
13714
13715 PERL_MM_OPT, PERL_MM_USE_DEFAULT
13716
13717 =item SEE ALSO
13718
13719 =item AUTHORS
13720
13721 =item LICENSE
13722
13723 =back
13724
13725 =head2 ExtUtils::MakeMaker::FAQ - Frequently Asked Questions About
13726 MakeMaker
13727
13728 =over 4
13729
13730 =item DESCRIPTION
13731
13732 =over 4
13733
13734 =item Philosophy and History
13735
13736 Why not just use <insert other build config tool here>?, What's
13737 Module::Build and how does it relate to MakeMaker?, pure perl.  no make, no
13738 shell commands, easier to customize, cleaner internals, less cruft
13739
13740 =item Module Writing
13741
13742 How do I keep my $VERSION up to date without resetting it manually?, What's
13743 this F<META.yml> thing and how did it get in my F<MANIFEST>?!
13744
13745 =item XS
13746
13747 How to I prevent "object version X.XX does not match bootstrap parameter
13748 Y.YY" errors?, How do I make two or more XS files coexist in the same
13749 directory?
13750
13751 =back
13752
13753 =item PATCHING
13754
13755 =item AUTHOR
13756
13757 =item SEE ALSO
13758
13759 =back
13760
13761 =head2 ExtUtils::MakeMaker::Tutorial - Writing a module with MakeMaker
13762
13763 =over 4
13764
13765 =item SYNOPSIS
13766
13767 =item DESCRIPTION
13768
13769 =over 4
13770
13771 =item The Mantra
13772
13773 =item The Layout
13774
13775 Makefile.PL, MANIFEST, lib/, t/, Changes, README, INSTALL, MANIFEST.SKIP,
13776 bin/
13777
13778 =back
13779
13780 =item SEE ALSO
13781
13782 =back
13783
13784 =head2 ExtUtils::MakeMaker::bytes - Version agnostic bytes.pm
13785
13786 =over 4
13787
13788 =item SYNOPSIS
13789
13790 =item DESCRIPTION
13791
13792 =back
13793
13794 =head2 ExtUtils::MakeMaker::vmsish - Platform agnostic vmsish.pm
13795
13796 =over 4
13797
13798 =item SYNOPSIS
13799
13800 =item DESCRIPTION
13801
13802 =back
13803
13804 =head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
13805
13806 =over 4
13807
13808 =item SYNOPSIS
13809
13810 =item DESCRIPTION
13811
13812 =over 4
13813
13814 =item Functions
13815
13816 mkmanifest
13817
13818 =back
13819
13820 =back
13821
13822 manifind
13823
13824 manicheck
13825
13826 filecheck
13827
13828 fullcheck
13829
13830 skipcheck
13831
13832 maniread
13833
13834 manicopy
13835
13836 maniadd
13837
13838 =over 4
13839
13840 =item MANIFEST
13841
13842 =item MANIFEST.SKIP
13843
13844 =item EXPORT_OK
13845
13846 =item GLOBAL VARIABLES
13847
13848 =back
13849
13850 =over 4
13851
13852 =item DIAGNOSTICS
13853
13854 C<Not in MANIFEST:> I<file>, C<Skipping> I<file>, C<No such file:> I<file>,
13855 C<MANIFEST:> I<$!>, C<Added to MANIFEST:> I<file>
13856
13857 =item ENVIRONMENT
13858
13859 B<PERL_MM_MANIFEST_DEBUG>
13860
13861 =item SEE ALSO
13862
13863 =item AUTHOR
13864
13865 =back
13866
13867 =head2 ExtUtils::Miniperl, writemain - write the C code for perlmain.c
13868
13869 =over 4
13870
13871 =item SYNOPSIS
13872
13873 =item DESCRIPTION
13874
13875 =item SEE ALSO
13876
13877 =back
13878
13879 =head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
13880
13881 =over 4
13882
13883 =item SYNOPSIS
13884
13885 =item DESCRIPTION
13886
13887 =back
13888
13889 =head2 ExtUtils::Mksymlists - write linker options files for dynamic
13890 extension
13891
13892 =over 4
13893
13894 =item SYNOPSIS
13895
13896 =item DESCRIPTION
13897
13898 DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
13899
13900 =item AUTHOR
13901
13902 =item REVISION
13903
13904 =back
13905
13906 =head2 ExtUtils::Packlist - manage .packlist files
13907
13908 =over 4
13909
13910 =item SYNOPSIS
13911
13912 =item DESCRIPTION
13913
13914 =item USAGE
13915
13916 =item FUNCTIONS
13917
13918 new(), read(), write(), validate(), packlist_file()
13919
13920 =item EXAMPLE
13921
13922 =item AUTHOR
13923
13924 =back
13925
13926 =head2 ExtUtils::testlib - add blib/* directories to @INC
13927
13928 =over 4
13929
13930 =item SYNOPSIS
13931
13932 =item DESCRIPTION
13933
13934 =back
13935
13936 =head2 Fatal - replace functions with equivalents which succeed or die
13937
13938 =over 4
13939
13940 =item SYNOPSIS
13941
13942 =item DESCRIPTION
13943
13944 =item AUTHOR
13945
13946 =back
13947
13948 =head2 Fcntl - load the C Fcntl.h defines
13949
13950 =over 4
13951
13952 =item SYNOPSIS
13953
13954 =item DESCRIPTION
13955
13956 =item NOTE
13957
13958 =item EXPORTED SYMBOLS
13959
13960 =back
13961
13962 =head2 File::Basename, fileparse - split a pathname into pieces
13963
13964 =over 4
13965
13966 =item SYNOPSIS
13967
13968 =item DESCRIPTION
13969
13970 fileparse_set_fstype, fileparse
13971
13972 =item EXAMPLES
13973
13974 C<basename>, C<dirname>
13975
13976 =back
13977
13978 =head2 File::CheckTree, validate - run many filetest checks on a tree
13979
13980 =over 4
13981
13982 =item SYNOPSIS
13983
13984 =item DESCRIPTION
13985
13986 =item AUTHOR
13987
13988 =item HISTORY
13989
13990 =back
13991
13992 =head2 File::Compare - Compare files or filehandles
13993
13994 =over 4
13995
13996 =item SYNOPSIS
13997
13998 =item DESCRIPTION
13999
14000 =item RETURN
14001
14002 =item AUTHOR
14003
14004 =back
14005
14006 =head2 File::Copy - Copy files or filehandles
14007
14008 =over 4
14009
14010 =item SYNOPSIS
14011
14012 =item DESCRIPTION
14013
14014 =over 4
14015
14016 =item Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
14017
14018 rmscopy($from,$to[,$date_flag])
14019
14020 =back
14021
14022 =item RETURN
14023
14024 =item NOTES
14025
14026 =item AUTHOR
14027
14028 =back
14029
14030 =head2 File::DosGlob - DOS like globbing and then some
14031
14032 =over 4
14033
14034 =item SYNOPSIS
14035
14036 =item DESCRIPTION
14037
14038 =item NOTES
14039
14040 =item EXPORTS (by request only)
14041
14042 =item BUGS
14043
14044 =item AUTHOR
14045
14046 =item HISTORY
14047
14048 =item SEE ALSO
14049
14050 =back
14051
14052 =head2 File::Find - Traverse a directory tree.
14053
14054 =over 4
14055
14056 =item SYNOPSIS
14057
14058 =item DESCRIPTION
14059
14060 B<find>, B<finddepth>
14061
14062 =over 4
14063
14064 =item %options
14065
14066 C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
14067 C<follow_fast>, C<follow_skip>, C<dangling_symlinks>, C<no_chdir>,
14068 C<untaint>, C<untaint_pattern>, C<untaint_skip>
14069
14070 =item The wanted function
14071
14072 C<$File::Find::dir> is the current directory name,, C<$_> is the current
14073 filename within that directory, C<$File::Find::name> is the complete
14074 pathname to the file
14075
14076 =back
14077
14078 =item WARNINGS
14079
14080 =item CAVEAT
14081
14082 $dont_use_nlink, symlinks
14083
14084 =item NOTES
14085
14086 =item HISTORY
14087
14088 =back
14089
14090 =head2 File::Glob - Perl extension for BSD glob routine
14091
14092 =over 4
14093
14094 =item SYNOPSIS
14095
14096 =item DESCRIPTION
14097
14098 C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
14099 C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
14100 C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
14101
14102 =item DIAGNOSTICS
14103
14104 C<GLOB_NOSPACE>, C<GLOB_ABEND>
14105
14106 =item NOTES
14107
14108 =item AUTHOR
14109
14110 =back
14111
14112 =head2 File::Path - create or remove directory trees
14113
14114 =over 4
14115
14116 =item SYNOPSIS
14117
14118 =item DESCRIPTION
14119
14120 =item DIAGNOSTICS
14121
14122 =item AUTHORS
14123
14124 =back
14125
14126 =head2 File::Spec - portably perform operations on file names
14127
14128 =over 4
14129
14130 =item SYNOPSIS
14131
14132 =item DESCRIPTION
14133
14134 =item METHODS
14135
14136 canonpath, catdir, catfile, curdir, devnull, rootdir, tmpdir, updir,
14137 no_upwards, case_tolerant, file_name_is_absolute, path, join, splitpath,
14138 splitdir, catpath(), abs2rel, rel2abs()
14139
14140 =item SEE ALSO
14141
14142 =item AUTHORS
14143
14144 =back
14145
14146 =head2 File::Spec::Cygwin - methods for Cygwin file specs
14147
14148 =over 4
14149
14150 =item SYNOPSIS
14151
14152 =item DESCRIPTION
14153
14154 =back
14155
14156 canonpath
14157
14158 file_name_is_absolute
14159
14160 tmpdir (override)
14161
14162 =head2 File::Spec::Epoc - methods for Epoc file specs
14163
14164 =over 4
14165
14166 =item SYNOPSIS
14167
14168 =item DESCRIPTION
14169
14170 =item AUTHORS
14171
14172 =back
14173
14174 canonpath()
14175
14176 =over 4
14177
14178 =item SEE ALSO
14179
14180 =back
14181
14182 =head2 File::Spec::Functions - portably perform operations on file names
14183
14184 =over 4
14185
14186 =item SYNOPSIS
14187
14188 =item DESCRIPTION
14189
14190 =over 4
14191
14192 =item Exports
14193
14194 =back
14195
14196 =item SEE ALSO
14197
14198 =back
14199
14200 =head2 File::Spec::Mac - File::Spec for Mac OS (Classic)
14201
14202 =over 4
14203
14204 =item SYNOPSIS
14205
14206 =item DESCRIPTION
14207
14208 =item METHODS
14209
14210 canonpath
14211
14212 =back
14213
14214 catdir()
14215
14216 catfile
14217
14218 curdir
14219
14220 devnull
14221
14222 rootdir
14223
14224 tmpdir
14225
14226 updir
14227
14228 file_name_is_absolute
14229
14230 path
14231
14232 splitpath
14233
14234 splitdir
14235
14236 catpath
14237
14238 abs2rel
14239
14240 rel2abs
14241
14242 =over 4
14243
14244 =item AUTHORS
14245
14246 =item SEE ALSO
14247
14248 =back
14249
14250 tmpdir
14251
14252 canonpath
14253
14254 splitpath
14255
14256 splitdir
14257
14258 catpath
14259
14260 =head2 File::Spec::OS2 - methods for OS/2 file specs
14261
14262 =over 4
14263
14264 =item SYNOPSIS
14265
14266 =item DESCRIPTION
14267
14268 =back
14269
14270 =head2 File::Spec::Unix - File::Spec for Unix, base for other File::Spec
14271 modules
14272
14273 =over 4
14274
14275 =item SYNOPSIS
14276
14277 =item DESCRIPTION
14278
14279 =item METHODS
14280
14281 canonpath()
14282
14283 =back
14284
14285 catdir()
14286
14287 catfile
14288
14289 curdir
14290
14291 devnull
14292
14293 rootdir
14294
14295 tmpdir
14296
14297 updir
14298
14299 no_upwards
14300
14301 case_tolerant
14302
14303 file_name_is_absolute
14304
14305 path
14306
14307 join
14308
14309 splitpath
14310
14311 splitdir
14312
14313 catpath()
14314
14315 abs2rel
14316
14317 rel2abs()
14318
14319 =over 4
14320
14321 =item SEE ALSO
14322
14323 =back
14324
14325 =head2 File::Spec::VMS - methods for VMS file specs
14326
14327 =over 4
14328
14329 =item SYNOPSIS
14330
14331 =item DESCRIPTION
14332
14333 eliminate_macros
14334
14335 =back
14336
14337 fixpath
14338
14339 =over 4
14340
14341 =item Methods always loaded
14342
14343 canonpath (override)
14344
14345 =back
14346
14347 catdir
14348
14349 catfile
14350
14351 curdir (override)
14352
14353 devnull (override)
14354
14355 rootdir (override)
14356
14357 tmpdir (override)
14358
14359 updir (override)
14360
14361 case_tolerant (override)
14362
14363 path (override)
14364
14365 file_name_is_absolute (override)
14366
14367 splitpath (override)
14368
14369 splitdir (override)
14370
14371 catpath (override)
14372
14373 abs2rel (override)
14374
14375 rel2abs (override)
14376
14377 =over 4
14378
14379 =item SEE ALSO
14380
14381 =back
14382
14383 =head2 File::Spec::Win32 - methods for Win32 file specs
14384
14385 =over 4
14386
14387 =item SYNOPSIS
14388
14389 =item DESCRIPTION
14390
14391 devnull
14392
14393 =back
14394
14395 tmpdir
14396
14397 catfile
14398
14399 canonpath
14400
14401 splitpath
14402
14403 splitdir
14404
14405 catpath
14406
14407 =over 4
14408
14409 =item Note For File::Spec::Win32 Maintainers
14410
14411 =back
14412
14413 =over 4
14414
14415 =item SEE ALSO
14416
14417 =back
14418
14419 =head2 File::Temp - return name and handle of a temporary file safely
14420
14421 =over 4
14422
14423 =item PORTABILITY
14424
14425 =item SYNOPSIS
14426
14427 =item DESCRIPTION
14428
14429 =back
14430
14431 =over 4
14432
14433 =item OO INTERFACE
14434
14435 B<new>
14436
14437 =back
14438
14439 B<filename>
14440
14441 B<DESTROY>
14442
14443 =over 4
14444
14445 =item FUNCTIONS
14446
14447 B<tempfile>
14448
14449 =back
14450
14451 B<tempdir>
14452
14453 =over 4
14454
14455 =item MKTEMP FUNCTIONS
14456
14457 B<mkstemp>
14458
14459 =back
14460
14461 B<mkstemps>
14462
14463 B<mkdtemp>
14464
14465 B<mktemp>
14466
14467 =over 4
14468
14469 =item POSIX FUNCTIONS
14470
14471 B<tmpnam>
14472
14473 =back
14474
14475 B<tmpfile>
14476
14477 =over 4
14478
14479 =item ADDITIONAL FUNCTIONS
14480
14481 B<tempnam>
14482
14483 =back
14484
14485 =over 4
14486
14487 =item UTILITY FUNCTIONS
14488
14489 B<unlink0>
14490
14491 =back
14492
14493 B<cmpstat>
14494
14495 B<unlink1>
14496
14497 =over 4
14498
14499 =item PACKAGE VARIABLES
14500
14501 B<safe_level>, STANDARD, MEDIUM, HIGH
14502
14503 =back
14504
14505 TopSystemUID
14506
14507 =over 4
14508
14509 =item WARNING
14510
14511 =over 4
14512
14513 =item Temporary files and NFS
14514
14515 =back
14516
14517 =item HISTORY
14518
14519 =item SEE ALSO
14520
14521 =item AUTHOR
14522
14523 =back
14524
14525 =head2 File::stat - by-name interface to Perl's built-in stat() functions
14526
14527 =over 4
14528
14529 =item SYNOPSIS
14530
14531 =item DESCRIPTION
14532
14533 =item BUGS
14534
14535 =item NOTE
14536
14537 =item AUTHOR
14538
14539 =back
14540
14541 =head2 FileCache - keep more files open than the system permits
14542
14543 =over 4
14544
14545 =item SYNOPSIS
14546
14547 =item DESCRIPTION
14548
14549 cacheout EXPR, cacheout MODE, EXPR
14550
14551 =item CAVEATS
14552
14553 =item BUGS
14554
14555 =item NOTES
14556
14557 =back
14558
14559 =head2 FileHandle - supply object methods for filehandles
14560
14561 =over 4
14562
14563 =item SYNOPSIS
14564
14565 =item DESCRIPTION
14566
14567 $fh->print, $fh->printf, $fh->getline, $fh->getlines
14568
14569 =item SEE ALSO
14570
14571 =back
14572
14573 =head2 Filter::Simple - Simplified source filtering
14574
14575 =over 4
14576
14577 =item SYNOPSIS
14578
14579 =item DESCRIPTION
14580
14581 =over 4
14582
14583 =item The Problem
14584
14585 =item A Solution
14586
14587 =item Disabling or changing <no> behaviour
14588
14589 =item All-in-one interface
14590
14591 =item Filtering only specific components of source code
14592
14593 C<"code">, C<"executable">, C<"quotelike">, C<"string">, C<"regex">,
14594 C<"all">
14595
14596 =item Filtering only the code parts of source code
14597
14598 Most source code ceases to be grammatically correct when it is broken up
14599 into the pieces between string literals and regexes. So the C<'code'>
14600 component filter behaves slightly differently from the other partial
14601 filters
14602 described in the previous section.
14603
14604 =item Using Filter::Simple with an explicit C<import> subroutine
14605
14606 =item Using Filter::Simple and Exporter together
14607
14608 =item How it works
14609
14610 =back
14611
14612 =item AUTHOR
14613
14614 =item COPYRIGHT
14615
14616 =back
14617
14618 =head2 Filter::Util::Call - Perl Source Filter Utility Module
14619
14620 =over 4
14621
14622 =item SYNOPSIS
14623
14624 =item DESCRIPTION
14625
14626 =over 4
14627
14628 =item B<use Filter::Util::Call>
14629
14630 =item B<import()>
14631
14632 =item B<filter() and anonymous sub>
14633
14634 B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
14635
14636 =back
14637
14638 =item EXAMPLES
14639
14640 =over 4
14641
14642 =item Example 1: A simple filter.
14643
14644 =item Example 2: Using the context
14645
14646 =item Example 3: Using the context within the filter
14647
14648 =item Example 4: Using filter_del
14649
14650 =back
14651
14652 =item Filter::Simple
14653
14654 =item AUTHOR
14655
14656 =item DATE
14657
14658 =back
14659
14660 =head2 FindBin - Locate directory of original perl script
14661
14662 =over 4
14663
14664 =item SYNOPSIS
14665
14666 =item DESCRIPTION
14667
14668 =item EXPORTABLE VARIABLES
14669
14670 =item KNOWN ISSUES
14671
14672 =item KNOWN BUGS
14673
14674 =item AUTHORS
14675
14676 =item COPYRIGHT
14677
14678 =back
14679
14680 =head2 GDBM_File - Perl5 access to the gdbm library.
14681
14682 =over 4
14683
14684 =item SYNOPSIS
14685
14686 =item DESCRIPTION
14687
14688 =item AVAILABILITY
14689
14690 =item BUGS
14691
14692 =item SEE ALSO
14693
14694 =back
14695
14696 =head2 Getopt::Long - Extended processing of command line options
14697
14698 =over 4
14699
14700 =item SYNOPSIS
14701
14702 =item DESCRIPTION
14703
14704 =item Command Line Options, an Introduction
14705
14706 =item Getting Started with Getopt::Long
14707
14708 =over 4
14709
14710 =item Simple options
14711
14712 =item A little bit less simple options
14713
14714 =item Mixing command line option with other arguments
14715
14716 =item Options with values
14717
14718 =item Options with multiple values
14719
14720 =item Options with hash values
14721
14722 =item User-defined subroutines to handle options
14723
14724 =item Options with multiple names
14725
14726 =item Case and abbreviations
14727
14728 =item Summary of Option Specifications
14729
14730 !, +, s, i, o, f, : I<type> [ I<desttype> ], : I<number> [ I<desttype> ], :
14731 + [ I<desttype> ]
14732
14733 =back
14734
14735 =item Advanced Possibilities
14736
14737 =over 4
14738
14739 =item Object oriented interface
14740
14741 =item Thread Safety
14742
14743 =item Documentation and help texts
14744
14745 =item Storing options in a hash
14746
14747 =item Bundling
14748
14749 =item The lonesome dash
14750
14751 =item Argument callback
14752
14753 =back
14754
14755 =item Configuring Getopt::Long
14756
14757 default, posix_default, auto_abbrev, getopt_compat, gnu_compat, gnu_getopt,
14758 require_order, permute, bundling (default: disabled), bundling_override
14759 (default: disabled), ignore_case  (default: enabled), ignore_case_always
14760 (default: disabled), auto_version (default:disabled), auto_help
14761 (default:disabled), pass_through (default: disabled), prefix,
14762 prefix_pattern, debug (default: disabled)
14763
14764 =item Exportable Methods
14765
14766 VersionMessage, C<-message>, C<-msg>, C<-exitval>, C<-output>, HelpMessage
14767
14768 =item Return values and Errors
14769
14770 =item Legacy
14771
14772 =over 4
14773
14774 =item Default destinations
14775
14776 =item Alternative option starters
14777
14778 =item Configuration variables
14779
14780 =back
14781
14782 =item Trouble Shooting
14783
14784 =over 4
14785
14786 =item Warning: Ignoring '!' modifier for short option
14787
14788 =item GetOptions does not return a false result when an option is not
14789 supplied
14790
14791 =item GetOptions does not split the command line correctly
14792
14793 =item Undefined subroutine &main::GetOptions called
14794
14795 =item How do I put a "-?" option into a Getopt::Long?
14796
14797 =back
14798
14799 =item AUTHOR
14800
14801 =item COPYRIGHT AND DISCLAIMER
14802
14803 =back
14804
14805 =head2 Getopt::Std, getopt - Process single-character switches with switch
14806 clustering
14807
14808 =over 4
14809
14810 =item SYNOPSIS
14811
14812 =item DESCRIPTION
14813
14814 =item C<--help> and C<--version>
14815
14816 =back
14817
14818 =head2 Hash::Util - A selection of general-utility hash subroutines
14819
14820 =over 4
14821
14822 =item SYNOPSIS
14823
14824 =item DESCRIPTION
14825
14826 =over 4
14827
14828 =item Restricted hashes
14829
14830 lock_keys, unlock_keys
14831
14832 =back
14833
14834 =back
14835
14836 lock_value, unlock_value
14837
14838 B<lock_hash>, B<unlock_hash>
14839
14840 =over 4
14841
14842 =item CAVEATS
14843
14844 =item AUTHOR
14845
14846 =item SEE ALSO
14847
14848 =back
14849
14850 =head2 I18N::Collate - compare 8-bit scalar data according to the current
14851 locale
14852
14853 =over 4
14854
14855 =item SYNOPSIS
14856
14857 =item DESCRIPTION
14858
14859 =back
14860
14861 =head2 I18N::LangTags - functions for dealing with RFC3066-style language
14862 tags
14863
14864 =over 4
14865
14866 =item SYNOPSIS
14867
14868 =item DESCRIPTION
14869
14870 =back
14871
14872 the function is_language_tag($lang1)
14873
14874 the function extract_language_tags($whatever)
14875
14876 the function same_language_tag($lang1, $lang2)
14877
14878 the function similarity_language_tag($lang1, $lang2)
14879
14880 the function is_dialect_of($lang1, $lang2)
14881
14882 the function super_languages($lang1)
14883
14884 the function locale2language_tag($locale_identifier)
14885
14886 the function encode_language_tag($lang1)
14887
14888 the function alternate_language_tags($lang1)
14889
14890 the function @langs = panic_languages(@accept_languages)
14891
14892 =over 4
14893
14894 =item ABOUT LOWERCASING
14895
14896 =item ABOUT UNICODE PLAINTEXT LANGUAGE TAGS
14897
14898 =item SEE ALSO
14899
14900 =item COPYRIGHT
14901
14902 =item AUTHOR
14903
14904 =back
14905
14906 =head2 I18N::LangTags::List -- tags and names for human languages
14907
14908 =over 4
14909
14910 =item SYNOPSIS
14911
14912 =item DESCRIPTION
14913
14914 =item ABOUT LANGUAGE TAGS
14915
14916 =item LIST OF LANGUAGES
14917
14918 {ab} : Abkhazian, {ace} : Achinese, {ach} : Acoli, {ada} : Adangme, {ady} :
14919 Adyghe, {aa} : Afar, {afh} : Afrihili, {af} : Afrikaans, [{afa} :
14920 Afro-Asiatic (Other)], {ak} : Akan, {akk} : Akkadian, {sq} : Albanian,
14921 {ale} : Aleut, [{alg} : Algonquian languages], [{tut} : Altaic (Other)],
14922 {am} : Amharic, {i-ami} : Ami, [{apa} : Apache languages], {ar} : Arabic,
14923 {arc} : Aramaic, {arp} : Arapaho, {arn} : Araucanian, {arw} : Arawak, {hy}
14924 : Armenian, {an} : Aragonese, [{art} : Artificial (Other)], {ast} :
14925 Asturian, {as} : Assamese, [{ath} : Athapascan languages], [{aus} :
14926 Australian languages], [{map} : Austronesian (Other)], {av} : Avaric, {ae}
14927 : Avestan, {awa} : Awadhi, {ay} : Aymara, {az} : Azerbaijani, {ban} :
14928 Balinese, [{bat} : Baltic (Other)], {bal} : Baluchi, {bm} : Bambara, [{bai}
14929 : Bamileke languages], {bad} : Banda, [{bnt} : Bantu (Other)], {bas} :
14930 Basa, {ba} : Bashkir, {eu} : Basque, {btk} : Batak (Indonesia), {bej} :
14931 Beja, {be} : Belarusian, {bem} : Bemba, {bn} : Bengali, [{ber} : Berber
14932 (Other)], {bho} : Bhojpuri, {bh} : Bihari, {bik} : Bikol, {bin} : Bini,
14933 {bi} : Bislama, {bs} : Bosnian, {bra} : Braj, {br} : Breton, {bug} :
14934 Buginese, {bg} : Bulgarian, {i-bnn} : Bunun, {bua} : Buriat, {my} :
14935 Burmese, {cad} : Caddo, {car} : Carib, {ca} : Catalan, [{cau} : Caucasian
14936 (Other)], {ceb} : Cebuano, [{cel} : Celtic (Other)], [{cai} : Central
14937 American Indian (Other)], {chg} : Chagatai, [{cmc} : Chamic languages],
14938 {ch} : Chamorro, {ce} : Chechen, {chr} : Cherokee, {chy} : Cheyenne, {chb}
14939 : Chibcha, {ny} : Chichewa, {zh} : Chinese, {chn} : Chinook Jargon, {chp} :
14940 Chipewyan, {cho} : Choctaw, {cu} : Church Slavic, {chk} : Chuukese, {cv} :
14941 Chuvash, {cop} : Coptic, {kw} : Cornish, {co} : Corsican, {cr} : Cree,
14942 {mus} : Creek, [{cpe} : English-based Creoles and pidgins (Other)], [{cpf}
14943 : French-based Creoles and pidgins (Other)], [{cpp} : Portuguese-based
14944 Creoles and pidgins (Other)], [{crp} : Creoles and pidgins (Other)], {hr} :
14945 Croatian, [{cus} : Cushitic (Other)], {cs} : Czech, {dak} : Dakota, {da} :
14946 Danish, {dar} : Dargwa, {day} : Dayak, {i-default} : Default (Fallthru)
14947 Language, {del} : Delaware, {din} : Dinka, {dv} : Divehi, {doi} : Dogri,
14948 {dgr} : Dogrib, [{dra} : Dravidian (Other)], {dua} : Duala, {nl} : Dutch,
14949 {dum} : Middle Dutch (ca.1050-1350), {dyu} : Dyula, {dz} : Dzongkha, {efi}
14950 : Efik, {egy} : Ancient Egyptian, {eka} : Ekajuk, {elx} : Elamite, {en} :
14951 English, {enm} : Old English (1100-1500), {ang} : Old English
14952 (ca.450-1100), {i-enochian} : Enochian (Artificial), {myv} : Erzya, {eo} :
14953 Esperanto, {et} : Estonian, {ee} : Ewe, {ewo} : Ewondo, {fan} : Fang, {fat}
14954 : Fanti, {fo} : Faroese, {fj} : Fijian, {fi} : Finnish, [{fiu} :
14955 Finno-Ugrian (Other)], {fon} : Fon, {fr} : French, {frm} : Middle French
14956 (ca.1400-1600), {fro} : Old French (842-ca.1400), {fy} : Frisian, {fur} :
14957 Friulian, {ff} : Fulah, {gaa} : Ga, {gd} : Scots Gaelic, {gl} : Gallegan,
14958 {lg} : Ganda, {gay} : Gayo, {gba} : Gbaya, {gez} : Geez, {ka} : Georgian,
14959 {de} : German, {gmh} : Middle High German (ca.1050-1500), {goh} : Old High
14960 German (ca.750-1050), [{gem} : Germanic (Other)], {gil} : Gilbertese, {gon}
14961 : Gondi, {gor} : Gorontalo, {got} : Gothic, {grb} : Grebo, {grc} : Ancient
14962 Greek, {el} : Modern Greek, {gn} : Guarani, {gu} : Gujarati, {gwi} :
14963 Gwich'in, {hai} : Haida, {ht} : Haitian, {ha} : Hausa, {haw} : Hawaiian,
14964 {he} : Hebrew, {hz} : Herero, {hil} : Hiligaynon, {him} : Himachali, {hi} :
14965 Hindi, {ho} : Hiri Motu, {hit} : Hittite, {hmn} : Hmong, {hu} : Hungarian,
14966 {hup} : Hupa, {iba} : Iban, {is} : Icelandic, {io} : Ido, {ig} : Igbo,
14967 {ijo} : Ijo, {ilo} : Iloko, [{inc} : Indic (Other)], [{ine} : Indo-European
14968 (Other)], {id} : Indonesian, {inh} : Ingush, {ia} : Interlingua
14969 (International Auxiliary Language Association), {ie} : Interlingue, {iu} :
14970 Inuktitut, {ik} : Inupiaq, [{ira} : Iranian (Other)], {ga} : Irish, {mga} :
14971 Middle Irish (900-1200), {sga} : Old Irish (to 900), [{iro} : Iroquoian
14972 languages], {it} : Italian, {ja} : Japanese, {jv} : Javanese, {jrb} :
14973 Judeo-Arabic, {jpr} : Judeo-Persian, {kbd} : Kabardian, {kab} : Kabyle,
14974 {kac} : Kachin, {kl} : Kalaallisut, {xal} : Kalmyk, {kam} : Kamba, {kn} :
14975 Kannada, {kr} : Kanuri, {krc} : Karachay-Balkar, {kaa} : Kara-Kalpak, {kar}
14976 : Karen, {ks} : Kashmiri, {csb} : Kashubian, {kaw} : Kawi, {kk} : Kazakh,
14977 {kha} : Khasi, {km} : Khmer, [{khi} : Khoisan (Other)], {kho} : Khotanese,
14978 {ki} : Kikuyu, {kmb} : Kimbundu, {rw} : Kinyarwanda, {ky} : Kirghiz,
14979 {i-klingon} : Klingon, {kv} : Komi, {kg} : Kongo, {kok} : Konkani, {ko} :
14980 Korean, {kos} : Kosraean, {kpe} : Kpelle, {kro} : Kru, {kj} : Kuanyama,
14981 {kum} : Kumyk, {ku} : Kurdish, {kru} : Kurukh, {kut} : Kutenai, {lad} :
14982 Ladino, {lah} : Lahnda, {lam} : Lamba, {lo} : Lao, {la} : Latin, {lv} :
14983 Latvian, {lb} : Letzeburgesch, {lez} : Lezghian, {li} : Limburgish, {ln} :
14984 Lingala, {lt} : Lithuanian, {nds} : Low German, {art-lojban} : Lojban
14985 (Artificial), {loz} : Lozi, {lu} : Luba-Katanga, {lua} : Luba-Lulua, {lui}
14986 : Luiseno, {lun} : Lunda, {luo} : Luo (Kenya and Tanzania), {lus} : Lushai,
14987 {mk} : Macedonian, {mad} : Madurese, {mag} : Magahi, {mai} : Maithili,
14988 {mak} : Makasar, {mg} : Malagasy, {ms} : Malay, {ml} : Malayalam, {mt} :
14989 Maltese, {mnc} : Manchu, {mdr} : Mandar, {man} : Mandingo, {mni} :
14990 Manipuri, [{mno} : Manobo languages], {gv} : Manx, {mi} : Maori, {mr} :
14991 Marathi, {chm} : Mari, {mh} : Marshall, {mwr} : Marwari, {mas} : Masai,
14992 [{myn} : Mayan languages], {men} : Mende, {mic} : Micmac, {min} :
14993 Minangkabau, {i-mingo} : Mingo, [{mis} : Miscellaneous languages], {moh} :
14994 Mohawk, {mdf} : Moksha, {mo} : Moldavian, [{mkh} : Mon-Khmer (Other)],
14995 {lol} : Mongo, {mn} : Mongolian, {mos} : Mossi, [{mul} : Multiple
14996 languages], [{mun} : Munda languages], {nah} : Nahuatl, {nap} : Neapolitan,
14997 {na} : Nauru, {nv} : Navajo, {nd} : North Ndebele, {nr} : South Ndebele,
14998 {ng} : Ndonga, {ne} : Nepali, {new} : Newari, {nia} : Nias, [{nic} :
14999 Niger-Kordofanian (Other)], [{ssa} : Nilo-Saharan (Other)], {niu} : Niuean,
15000 {nog} : Nogai, {non} : Old Norse, [{nai} : North American Indian], {no} :
15001 Norwegian, {nb} : Norwegian Bokmal, {nn} : Norwegian Nynorsk, [{nub} :
15002 Nubian languages], {nym} : Nyamwezi, {nyn} : Nyankole, {nyo} : Nyoro, {nzi}
15003 : Nzima, {oc} : Occitan (post 1500), {oj} : Ojibwa, {or} : Oriya, {om} :
15004 Oromo, {osa} : Osage, {os} : Ossetian; Ossetic, [{oto} : Otomian
15005 languages], {pal} : Pahlavi, {i-pwn} : Paiwan, {pau} : Palauan, {pi} :
15006 Pali, {pam} : Pampanga, {pag} : Pangasinan, {pa} : Panjabi, {pap} :
15007 Papiamento, [{paa} : Papuan (Other)], {fa} : Persian, {peo} : Old Persian
15008 (ca.600-400 B.C.), [{phi} : Philippine (Other)], {phn} : Phoenician, {pon}
15009 : Pohnpeian, {pl} : Polish, {pt} : Portuguese, [{pra} : Prakrit languages],
15010 {pro} : Old Provencal (to 1500), {ps} : Pushto, {qu} : Quechua, {rm} :
15011 Raeto-Romance, {raj} : Rajasthani, {rap} : Rapanui, {rar} : Rarotongan,
15012 [{qaa - qtz} : Reserved for local use.], [{roa} : Romance (Other)], {ro} :
15013 Romanian, {rom} : Romany, {rn} : Rundi, {ru} : Russian, [{sal} : Salishan
15014 languages], {sam} : Samaritan Aramaic, {se} : Northern Sami, {sma} :
15015 Southern Sami, {smn} : Inari Sami, {smj} : Lule Sami, {sms} : Skolt Sami,
15016 [{smi} : Sami languages (Other)], {sm} : Samoan, {sad} : Sandawe, {sg} :
15017 Sango, {sa} : Sanskrit, {sat} : Santali, {sc} : Sardinian, {sas} : Sasak,
15018 {sco} : Scots, {sel} : Selkup, [{sem} : Semitic (Other)], {sr} : Serbian,
15019 {srr} : Serer, {shn} : Shan, {sn} : Shona, {sid} : Sidamo, {sgn-...} : Sign
15020 Languages, {bla} : Siksika, {sd} : Sindhi, {si} : Sinhalese, [{sit} :
15021 Sino-Tibetan (Other)], [{sio} : Siouan languages], {den} : Slave
15022 (Athapascan), [{sla} : Slavic (Other)], {sk} : Slovak, {sl} : Slovenian,
15023 {sog} : Sogdian, {so} : Somali, {son} : Songhai, {snk} : Soninke, {wen} :
15024 Sorbian languages, {nso} : Northern Sotho, {st} : Southern Sotho, [{sai} :
15025 South American Indian (Other)], {es} : Spanish, {suk} : Sukuma, {sux} :
15026 Sumerian, {su} : Sundanese, {sus} : Susu, {sw} : Swahili, {ss} : Swati,
15027 {sv} : Swedish, {syr} : Syriac, {tl} : Tagalog, {ty} : Tahitian, [{tai} :
15028 Tai (Other)], {tg} : Tajik, {tmh} : Tamashek, {ta} : Tamil, {i-tao} : Tao,
15029 {tt} : Tatar, {i-tay} : Tayal, {te} : Telugu, {ter} : Tereno, {tet} :
15030 Tetum, {th} : Thai, {bo} : Tibetan, {tig} : Tigre, {ti} : Tigrinya, {tem} :
15031 Timne, {tiv} : Tiv, {tli} : Tlingit, {tpi} : Tok Pisin, {tkl} : Tokelau,
15032 {tog} : Tonga (Nyasa), {to} : Tonga (Tonga Islands), {tsi} : Tsimshian,
15033 {ts} : Tsonga, {i-tsu} : Tsou, {tn} : Tswana, {tum} : Tumbuka, [{tup} :
15034 Tupi languages], {tr} : Turkish, {ota} : Ottoman Turkish (1500-1928), {crh}
15035 : Crimean Turkish, {tk} : Turkmen, {tvl} : Tuvalu, {tyv} : Tuvinian, {tw} :
15036 Twi, {udm} : Udmurt, {uga} : Ugaritic, {ug} : Uighur, {uk} : Ukrainian,
15037 {umb} : Umbundu, {und} : Undetermined, {ur} : Urdu, {uz} : Uzbek, {vai} :
15038 Vai, {ve} : Venda, {vi} : Vietnamese, {vo} : Volapuk, {vot} : Votic, [{wak}
15039 : Wakashan languages], {wa} : Walloon, {wal} : Walamo, {war} : Waray, {was}
15040 : Washo, {cy} : Welsh, {wo} : Wolof, {x-...} : Unregistered (Semi-Private
15041 Use), {xh} : Xhosa, {sah} : Yakut, {yao} : Yao, {yap} : Yapese, {ii} :
15042 Sichuan Yi, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik languages], {znd}
15043 : Zande, [{zap} : Zapotec], {zen} : Zenaga, {za} : Zhuang, {zu} : Zulu,
15044 {zun} : Zuni
15045
15046 =item SEE ALSO
15047
15048 =item COPYRIGHT AND DISCLAIMER
15049
15050 =item AUTHOR
15051
15052 =back
15053
15054 =head2 I18N::Langinfo - query locale information
15055
15056 =over 4
15057
15058 =item SYNOPSIS
15059
15060 =item DESCRIPTION
15061
15062 =over 4
15063
15064 =item EXPORT
15065
15066 =back
15067
15068 =item SEE ALSO
15069
15070 =item AUTHOR
15071
15072 =item COPYRIGHT AND LICENSE
15073
15074 =back
15075
15076 =head2 IO - load various IO modules
15077
15078 =over 4
15079
15080 =item SYNOPSIS
15081
15082 =item DESCRIPTION
15083
15084 =item DEPRECATED
15085
15086 =back
15087
15088 =head2 IO::Dir - supply object methods for directory handles
15089
15090 =over 4
15091
15092 =item SYNOPSIS
15093
15094 =item DESCRIPTION
15095
15096 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
15097 rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
15098
15099 =item SEE ALSO
15100
15101 =item AUTHOR
15102
15103 =item COPYRIGHT
15104
15105 =back
15106
15107 =head2 IO::File - supply object methods for filehandles
15108
15109 =over 4
15110
15111 =item SYNOPSIS
15112
15113 =item DESCRIPTION
15114
15115 =item CONSTRUCTOR
15116
15117 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
15118
15119 =item METHODS
15120
15121 open( FILENAME [,MODE [,PERMS]] ), open( FILENAME, IOLAYERS )
15122
15123 =item SEE ALSO
15124
15125 =item HISTORY
15126
15127 =back
15128
15129 =head2 IO::Handle - supply object methods for I/O handles
15130
15131 =over 4
15132
15133 =item SYNOPSIS
15134
15135 =item DESCRIPTION
15136
15137 =item CONSTRUCTOR
15138
15139 new (), new_from_fd ( FD, MODE )
15140
15141 =item METHODS
15142
15143 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
15144 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
15145 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
15146 $io->blocking ( [ BOOL ] ), $io->untaint
15147
15148 =item NOTE
15149
15150 =item SEE ALSO
15151
15152 =item BUGS
15153
15154 =item HISTORY
15155
15156 =back
15157
15158 =head2 IO::Pipe - supply object methods for pipes
15159
15160 =over 4
15161
15162 =item SYNOPSIS
15163
15164 =item DESCRIPTION
15165
15166 =item CONSTRUCTOR
15167
15168 new ( [READER, WRITER] )
15169
15170 =item METHODS
15171
15172 reader ([ARGS]), writer ([ARGS]), handles ()
15173
15174 =item SEE ALSO
15175
15176 =item AUTHOR
15177
15178 =item COPYRIGHT
15179
15180 =back
15181
15182 =head2 IO::Poll - Object interface to system poll call
15183
15184 =over 4
15185
15186 =item SYNOPSIS
15187
15188 =item DESCRIPTION
15189
15190 =item METHODS
15191
15192 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
15193 IO ), handles( [ EVENT_MASK ] )
15194
15195 =item SEE ALSO
15196
15197 =item AUTHOR
15198
15199 =item COPYRIGHT
15200
15201 =back
15202
15203 =head2 IO::Seekable - supply seek based methods for I/O objects
15204
15205 =over 4
15206
15207 =item SYNOPSIS
15208
15209 =item DESCRIPTION
15210
15211 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
15212 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
15213 $io->tell
15214
15215 =item SEE ALSO
15216
15217 =item HISTORY
15218
15219 =back
15220
15221 =head2 IO::Select - OO interface to the select system call
15222
15223 =over 4
15224
15225 =item SYNOPSIS
15226
15227 =item DESCRIPTION
15228
15229 =item CONSTRUCTOR
15230
15231 new ( [ HANDLES ] )
15232
15233 =item METHODS
15234
15235 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
15236 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
15237 count (), bits(), select ( READ, WRITE, EXCEPTION [, TIMEOUT ] )
15238
15239 =item EXAMPLE
15240
15241 =item AUTHOR
15242
15243 =item COPYRIGHT
15244
15245 =back
15246
15247 =head2 IO::Socket - Object interface to socket communications
15248
15249 =over 4
15250
15251 =item SYNOPSIS
15252
15253 =item DESCRIPTION
15254
15255 =item CONSTRUCTOR
15256
15257 new ( [ARGS] )
15258
15259 =item METHODS
15260
15261 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
15262 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
15263
15264 =item SEE ALSO
15265
15266 =item AUTHOR
15267
15268 =item COPYRIGHT
15269
15270 =back
15271
15272 =head2 IO::Socket::INET - Object interface for AF_INET domain sockets
15273
15274 =over 4
15275
15276 =item SYNOPSIS
15277
15278 =item DESCRIPTION
15279
15280 =item CONSTRUCTOR
15281
15282 new ( [ARGS] )
15283
15284 =over 4
15285
15286 =item METHODS
15287
15288 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
15289 ()
15290
15291 =back
15292
15293 =item SEE ALSO
15294
15295 =item AUTHOR
15296
15297 =item COPYRIGHT
15298
15299 =back
15300
15301 =head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
15302
15303 =over 4
15304
15305 =item SYNOPSIS
15306
15307 =item DESCRIPTION
15308
15309 =item CONSTRUCTOR
15310
15311 new ( [ARGS] )
15312
15313 =item METHODS
15314
15315 hostpath(), peerpath()
15316
15317 =item SEE ALSO
15318
15319 =item AUTHOR
15320
15321 =item COPYRIGHT
15322
15323 =back
15324
15325 =head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
15326 handles
15327
15328 =over 4
15329
15330 =item SYNOPSIS
15331
15332 =item DESCRIPTION
15333
15334 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
15335 rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
15336
15337 =item SEE ALSO
15338
15339 =item AUTHOR
15340
15341 =item COPYRIGHT
15342
15343 =back
15344
15345 =head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
15346
15347 =over 4
15348
15349 =item SYNOPSIS
15350
15351 =item DESCRIPTION
15352
15353 =item CONSTRUCTOR
15354
15355 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
15356
15357 =item METHODS
15358
15359 open( FILENAME [,MODE [,PERMS]] ), open( FILENAME, IOLAYERS )
15360
15361 =item SEE ALSO
15362
15363 =item HISTORY
15364
15365 =back
15366
15367 =head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
15368 handles
15369
15370 =over 4
15371
15372 =item SYNOPSIS
15373
15374 =item DESCRIPTION
15375
15376 =item CONSTRUCTOR
15377
15378 new (), new_from_fd ( FD, MODE )
15379
15380 =item METHODS
15381
15382 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
15383 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
15384 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
15385 $io->blocking ( [ BOOL ] ), $io->untaint
15386
15387 =item NOTE
15388
15389 =item SEE ALSO
15390
15391 =item BUGS
15392
15393 =item HISTORY
15394
15395 =back
15396
15397 =head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
15398
15399 =over 4
15400
15401 =item SYNOPSIS
15402
15403 =item DESCRIPTION
15404
15405 =item CONSTRUCTOR
15406
15407 new ( [READER, WRITER] )
15408
15409 =item METHODS
15410
15411 reader ([ARGS]), writer ([ARGS]), handles ()
15412
15413 =item SEE ALSO
15414
15415 =item AUTHOR
15416
15417 =item COPYRIGHT
15418
15419 =back
15420
15421 =head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
15422
15423 =over 4
15424
15425 =item SYNOPSIS
15426
15427 =item DESCRIPTION
15428
15429 =item METHODS
15430
15431 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
15432 IO ), handles( [ EVENT_MASK ] )
15433
15434 =item SEE ALSO
15435
15436 =item AUTHOR
15437
15438 =item COPYRIGHT
15439
15440 =back
15441
15442 =head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
15443 I/O objects
15444
15445 =over 4
15446
15447 =item SYNOPSIS
15448
15449 =item DESCRIPTION
15450
15451 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
15452 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
15453 $io->tell
15454
15455 =item SEE ALSO
15456
15457 =item HISTORY
15458
15459 =back
15460
15461 =head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
15462 call
15463
15464 =over 4
15465
15466 =item SYNOPSIS
15467
15468 =item DESCRIPTION
15469
15470 =item CONSTRUCTOR
15471
15472 new ( [ HANDLES ] )
15473
15474 =item METHODS
15475
15476 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
15477 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
15478 count (), bits(), select ( READ, WRITE, EXCEPTION [, TIMEOUT ] )
15479
15480 =item EXAMPLE
15481
15482 =item AUTHOR
15483
15484 =item COPYRIGHT
15485
15486 =back
15487
15488 =head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
15489 communications
15490
15491 =over 4
15492
15493 =item SYNOPSIS
15494
15495 =item DESCRIPTION
15496
15497 =item CONSTRUCTOR
15498
15499 new ( [ARGS] )
15500
15501 =item METHODS
15502
15503 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
15504 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
15505
15506 =item SEE ALSO
15507
15508 =item AUTHOR
15509
15510 =item COPYRIGHT
15511
15512 =back
15513
15514 =head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
15515 AF_INET domain sockets
15516
15517 =over 4
15518
15519 =item SYNOPSIS
15520
15521 =item DESCRIPTION
15522
15523 =item CONSTRUCTOR
15524
15525 new ( [ARGS] )
15526
15527 =over 4
15528
15529 =item METHODS
15530
15531 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
15532 ()
15533
15534 =back
15535
15536 =item SEE ALSO
15537
15538 =item AUTHOR
15539
15540 =item COPYRIGHT
15541
15542 =back
15543
15544 =head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
15545 AF_UNIX domain sockets
15546
15547 =over 4
15548
15549 =item SYNOPSIS
15550
15551 =item DESCRIPTION
15552
15553 =item CONSTRUCTOR
15554
15555 new ( [ARGS] )
15556
15557 =item METHODS
15558
15559 hostpath(), peerpath()
15560
15561 =item SEE ALSO
15562
15563 =item AUTHOR
15564
15565 =item COPYRIGHT
15566
15567 =back
15568
15569 =head2 IPC::Msg - SysV Msg IPC object class
15570
15571 =over 4
15572
15573 =item SYNOPSIS
15574
15575 =item DESCRIPTION
15576
15577 =item METHODS
15578
15579 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
15580 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
15581 FLAGS ] ), stat
15582
15583 =item SEE ALSO
15584
15585 =item AUTHOR
15586
15587 =item COPYRIGHT
15588
15589 =back
15590
15591 =head2 IPC::Open2, open2 - open a process for both reading and writing
15592
15593 =over 4
15594
15595 =item SYNOPSIS
15596
15597 =item DESCRIPTION
15598
15599 =item WARNING 
15600
15601 =item SEE ALSO
15602
15603 =back
15604
15605 =head2 IPC::Open3, open3 - open a process for reading, writing, and error
15606 handling
15607
15608 =over 4
15609
15610 =item SYNOPSIS
15611
15612 =item DESCRIPTION
15613
15614 =item WARNING
15615
15616 =back
15617
15618 =head2 IPC::Semaphore - SysV Semaphore IPC object class
15619
15620 =over 4
15621
15622 =item SYNOPSIS
15623
15624 =item DESCRIPTION
15625
15626 =item METHODS
15627
15628 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
15629 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
15630 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
15631 , VALUE ), stat
15632
15633 =item SEE ALSO
15634
15635 =item AUTHOR
15636
15637 =item COPYRIGHT
15638
15639 =back
15640
15641 =head2 IPC::SysV - SysV IPC constants
15642
15643 =over 4
15644
15645 =item SYNOPSIS
15646
15647 =item DESCRIPTION
15648
15649 ftok( PATH, ID )
15650
15651 =item SEE ALSO
15652
15653 =item AUTHORS
15654
15655 =item COPYRIGHT
15656
15657 =back
15658
15659 =head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
15660
15661 =over 4
15662
15663 =item SYNOPSIS
15664
15665 =item DESCRIPTION
15666
15667 =item METHODS
15668
15669 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
15670 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
15671 FLAGS ] ), stat
15672
15673 =item SEE ALSO
15674
15675 =item AUTHOR
15676
15677 =item COPYRIGHT
15678
15679 =back
15680
15681 =head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
15682 class
15683
15684 =over 4
15685
15686 =item SYNOPSIS
15687
15688 =item DESCRIPTION
15689
15690 =item METHODS
15691
15692 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
15693 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
15694 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
15695 , VALUE ), stat
15696
15697 =item SEE ALSO
15698
15699 =item AUTHOR
15700
15701 =item COPYRIGHT
15702
15703 =back
15704
15705 =head2 List::Util - A selection of general-utility list subroutines
15706
15707 =over 4
15708
15709 =item SYNOPSIS
15710
15711 =item DESCRIPTION
15712
15713 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
15714 BLOCK LIST, shuffle LIST, sum LIST
15715
15716 =item KNOWN BUGS
15717
15718 =item SUGGESTED ADDITIONS
15719
15720 =item COPYRIGHT
15721
15722 =back
15723
15724 =head2 List::Utilib::List::Util, List::Util - A selection of
15725 general-utility list subroutines
15726
15727 =over 4
15728
15729 =item SYNOPSIS
15730
15731 =item DESCRIPTION
15732
15733 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
15734 BLOCK LIST, shuffle LIST, sum LIST
15735
15736 =item KNOWN BUGS
15737
15738 =item SUGGESTED ADDITIONS
15739
15740 =item COPYRIGHT
15741
15742 =back
15743
15744 =head2 List::Utilib::Scalar::Util, Scalar::Util - A selection of
15745 general-utility scalar subroutines
15746
15747 =over 4
15748
15749 =item SYNOPSIS
15750
15751 =item DESCRIPTION
15752
15753 blessed EXPR, dualvar NUM, STRING, isvstring EXPR, isweak EXPR,
15754 looks_like_number EXPR, openhandle FH, refaddr EXPR, reftype EXPR,
15755 set_prototype CODEREF, PROTOTYPE, tainted EXPR, weaken REF
15756
15757 =item KNOWN BUGS
15758
15759 =item COPYRIGHT
15760
15761 =item BLATANT PLUG
15762
15763 =back
15764
15765 =head2 Locale::Constants - constants for Locale codes
15766
15767 =over 4
15768
15769 =item SYNOPSIS
15770
15771 =item DESCRIPTION
15772
15773 =item KNOWN BUGS AND LIMITATIONS
15774
15775 =item SEE ALSO
15776
15777 Locale::Language, Locale::Country, Locale::Script, Locale::Currency
15778
15779 =item AUTHOR
15780
15781 =item COPYRIGHT
15782
15783 =back
15784
15785 =head2 Locale::Country - ISO codes for country identification (ISO 3166)
15786
15787 =over 4
15788
15789 =item SYNOPSIS
15790
15791 =item DESCRIPTION
15792
15793 B<alpha-2>, B<alpha-3>, B<numeric>
15794
15795 =item CONVERSION ROUTINES
15796
15797 code2country( CODE, [ CODESET ] ), country2code( STRING, [ CODESET ] ),
15798 country_code2code( CODE, CODESET, CODESET )
15799
15800 =item QUERY ROUTINES
15801
15802 C<all_country_codes( [ CODESET ] )>, C<all_country_names( [ CODESET ] )>
15803
15804 =item SEMI-PRIVATE ROUTINES
15805
15806 =over 4
15807
15808 =item alias_code
15809
15810 =item rename_country
15811
15812 =back
15813
15814 =item EXAMPLES
15815
15816 =item DOMAIN NAMES
15817
15818 =item KNOWN BUGS AND LIMITATIONS
15819
15820 =item SEE ALSO
15821
15822 Locale::Language, Locale::Script, Locale::Currency, Locale::SubCountry, ISO
15823 3166-1, http://www.iso.org/iso/en/prods-services/iso3166ma/index.html,
15824 http://www.egt.ie/standards/iso3166/iso3166-1-en.html,
15825 http://www.cia.gov/cia/publications/factbook/docs/app-d-1.html
15826
15827 =item AUTHOR
15828
15829 =item COPYRIGHT
15830
15831 =back
15832
15833 =head2 Locale::Currency - ISO three letter codes for currency
15834 identification (ISO 4217)
15835
15836 =over 4
15837
15838 =item SYNOPSIS
15839
15840 =item DESCRIPTION
15841
15842 XTS, XXX
15843
15844 =item CONVERSION ROUTINES
15845
15846 code2currency(), currency2code()
15847
15848 =item QUERY ROUTINES
15849
15850 C<all_currency_codes()>, C<all_currency_names()>
15851
15852 =item EXAMPLES
15853
15854 =item KNOWN BUGS AND LIMITATIONS
15855
15856 =item SEE ALSO
15857
15858 Locale::Country, Locale::Script, ISO 4217:1995,
15859 http://www.bsi-global.com/iso4217currency
15860
15861 =item AUTHOR
15862
15863 =item COPYRIGHT
15864
15865 =back
15866
15867 =head2 Locale::Language - ISO two letter codes for language identification
15868 (ISO 639)
15869
15870 =over 4
15871
15872 =item SYNOPSIS
15873
15874 =item DESCRIPTION
15875
15876 =item CONVERSION ROUTINES
15877
15878 code2language(), language2code()
15879
15880 =item QUERY ROUTINES
15881
15882 C<all_language_codes()>, C<all_language_names()>
15883
15884 =item EXAMPLES
15885
15886 =item KNOWN BUGS AND LIMITATIONS
15887
15888 =item SEE ALSO
15889
15890 Locale::Country, Locale::Script, Locale::Currency, ISO 639:1988 (E/F),
15891 http://lcweb.loc.gov/standards/iso639-2/langhome.html
15892
15893 =item AUTHOR
15894
15895 =item COPYRIGHT
15896
15897 =back
15898
15899 =head2 Locale::Maketext - framework for localization
15900
15901 =over 4
15902
15903 =item SYNOPSIS
15904
15905 =item DESCRIPTION
15906
15907 =item QUICK OVERVIEW
15908
15909 =item METHODS
15910
15911 =over 4
15912
15913 =item Construction Methods
15914
15915 =item The "maketext" Method
15916
15917 $lh->fail_with I<or> $lh->fail_with(I<PARAM>), $lh->failure_handler_auto
15918
15919 =item Utility Methods
15920
15921 $language->quant($number, $singular), $language->quant($number, $singular,
15922 $plural), $language->quant($number, $singular, $plural, $negative),
15923 $language->numf($number), $language->sprintf($format, @items),
15924 $language->language_tag(), $language->encoding()
15925
15926 =item Language Handle Attributes and Internals
15927
15928 =back
15929
15930 =item LANGUAGE CLASS HIERARCHIES
15931
15932 =item ENTRIES IN EACH LEXICON
15933
15934 =item BRACKET NOTATION
15935
15936 =item AUTO LEXICONS
15937
15938 =item CONTROLLING LOOKUP FAILURE
15939
15940 =item HOW TO USE MAKETEXT
15941
15942 =item SEE ALSO
15943
15944 =item COPYRIGHT AND DISCLAIMER
15945
15946 =item AUTHOR
15947
15948 =back
15949
15950 =head2 Locale::Maketext::TPJ13 -- article about software localization
15951
15952 =over 4
15953
15954 =item SYNOPSIS
15955
15956 =item DESCRIPTION
15957
15958 =item Localization and Perl: gettext breaks, Maketext fixes
15959
15960 =over 4
15961
15962 =item A Localization Horror Story: It Could Happen To You
15963
15964 =item The Linguistic View
15965
15966 =item Breaking gettext
15967
15968 =item Replacing gettext
15969
15970 =item Buzzwords: Abstraction and Encapsulation
15971
15972 =item Buzzword: Isomorphism
15973
15974 =item Buzzword: Inheritance
15975
15976 =item Buzzword: Concision
15977
15978 =item The Devil in the Details
15979
15980 =item The Proof in the Pudding: Localizing Web Sites
15981
15982 =item References
15983
15984 =back
15985
15986 =back
15987
15988 =head2 Locale::Script - ISO codes for script identification (ISO 15924)
15989
15990 =over 4
15991
15992 =item SYNOPSIS
15993
15994 =item DESCRIPTION
15995
15996 B<alpha-2>, B<alpha-3>, B<numeric>
15997
15998 =over 4
15999
16000 =item SPECIAL CODES
16001
16002 =back
16003
16004 =item CONVERSION ROUTINES
16005
16006 code2script( CODE, [ CODESET ] ), script2code( STRING, [ CODESET ] ),
16007 script_code2code( CODE, CODESET, CODESET )
16008
16009 =item QUERY ROUTINES
16010
16011 C<all_script_codes ( [ CODESET ] )>, C<all_script_names ( [ CODESET ] )>
16012
16013 =item EXAMPLES
16014
16015 =item KNOWN BUGS AND LIMITATIONS
16016
16017 =item SEE ALSO
16018
16019 Locale::Language, Locale::Currency, Locale::Country, ISO 15924,
16020 http://www.evertype.com/standards/iso15924/
16021
16022 =item AUTHOR
16023
16024 =item COPYRIGHT
16025
16026 =back
16027
16028 =head2 MIME::Base64 - Encoding and decoding of base64 strings
16029
16030 =over 4
16031
16032 =item SYNOPSIS
16033
16034 =item DESCRIPTION
16035
16036 encode_base64($str), encode_base64($str, $eol);, decode_base64($str)
16037
16038 =item DIAGNOSTICS
16039
16040 Premature end of base64 data, Premature padding of base64 data
16041
16042 =item EXAMPLES
16043
16044 =item COPYRIGHT
16045
16046 =back
16047
16048 =head2 MIME::Base64::QuotedPrint, MIME::QuotedPrint - Encoding and decoding
16049 of quoted-printable strings
16050
16051 =over 4
16052
16053 =item SYNOPSIS
16054
16055 =item DESCRIPTION
16056
16057 encode_qp($str), encode_qp($str, $eol), decode_qp($str);
16058
16059 =item COPYRIGHT
16060
16061 =back
16062
16063 =head2 MIME::QuotedPrint - Encoding and decoding of quoted-printable
16064 strings
16065
16066 =over 4
16067
16068 =item SYNOPSIS
16069
16070 =item DESCRIPTION
16071
16072 encode_qp($str), encode_qp($str, $eol), decode_qp($str);
16073
16074 =item COPYRIGHT
16075
16076 =back
16077
16078 =head2 Math::BigFloat - Arbitrary size floating point math package
16079
16080 =over 4
16081
16082 =item SYNOPSIS
16083
16084 =item DESCRIPTION
16085
16086 =over 4
16087
16088 =item Canonical notation
16089
16090 =item Output
16091
16092 =item C<mantissa()>, C<exponent()> and C<parts()>
16093
16094 =item Accuracy vs. Precision
16095
16096 =item Rounding
16097
16098 ffround ( +$scale ), ffround ( -$scale ), ffround ( 0 ), fround  ( +$scale
16099 ), fround  ( -$scale ) and fround ( 0 )
16100
16101 =back
16102
16103 =item EXAMPLES
16104
16105   # not ready yet
16106
16107 =item Autocreating constants
16108
16109 =over 4
16110
16111 =item Math library
16112
16113 =item Using Math::BigInt::Lite
16114
16115 =back
16116
16117 =item BUGS
16118
16119 =item CAVEATS
16120
16121 stringify, bstr(), bdiv, Modifying and =, bpow
16122
16123 =item SEE ALSO
16124
16125 =item LICENSE
16126
16127 =item AUTHORS
16128
16129 =back
16130
16131 =head2 Math::BigInt - Arbitrary size integer math package
16132
16133 =over 4
16134
16135 =item SYNOPSIS
16136
16137 =item DESCRIPTION
16138
16139 Canonical notation, Input, Output
16140
16141 =item METHODS
16142
16143 =over 4
16144
16145 =item config
16146
16147 =item accuracy
16148
16149 =item precision
16150
16151 =item brsft
16152
16153 =item new
16154
16155 =item bnan
16156
16157 =item bzero
16158
16159 =item binf
16160
16161 =item bone
16162
16163 =item is_one()/is_zero()/is_nan()/is_inf()
16164
16165 =item is_positive()/is_negative()
16166
16167         $x->is_positive();              # true if >= 0
16168         $x->is_negative();              # true if <  0
16169
16170 =item is_odd()/is_even()/is_int()
16171
16172 =item bcmp
16173
16174 =item bacmp
16175
16176 =item sign
16177
16178 =item bcmp
16179
16180 =item bneg
16181
16182 =item babs
16183
16184 =item bnorm
16185
16186 =item bnot
16187
16188 =item binc
16189
16190 =item bdec
16191
16192 =item badd
16193
16194 =item bsub
16195
16196 =item bmul
16197
16198 =item bdiv
16199
16200 =item bmod
16201
16202 =item bmodinv
16203
16204 =item bmodpow
16205
16206 =item bpow
16207
16208 =item blsft
16209
16210 =item brsft
16211
16212 =item band
16213
16214 =item bior
16215
16216 =item bxor
16217
16218 =item bnot
16219
16220 =item bsqrt
16221
16222 =item bfac
16223
16224 =item round
16225
16226 =item bround
16227
16228 =item bfround
16229
16230 =item bfloor
16231
16232 =item bceil
16233
16234 =item bgcd
16235
16236 =item blcm
16237
16238 =item exponent
16239
16240 =item mantissa
16241
16242 =item parts
16243
16244 =item copy
16245
16246 =item as_number
16247
16248 =item bsstr
16249
16250 =item as_hex
16251
16252 =item as_bin
16253
16254 =back
16255
16256 =item ACCURACY and PRECISION
16257
16258 =over 4
16259
16260 =item Precision P
16261
16262 =item Accuracy A
16263
16264 =item Fallback F
16265
16266 =item Rounding mode R
16267
16268 'trunc', 'even', 'odd', '+inf', '-inf', 'zero', Precision, Accuracy
16269 (significant digits), Setting/Accessing, Creating numbers, Usage,
16270 Precedence, Overriding globals, Local settings, Rounding, Default values,
16271 Remarks
16272
16273 =back
16274
16275 =item INTERNALS
16276
16277 =over 4
16278
16279 =item MATH LIBRARY
16280
16281 =item SIGN
16282
16283 =item mantissa(), exponent() and parts()
16284
16285 =back
16286
16287 =item EXAMPLES
16288
16289   use Math::BigInt;
16290
16291 =item Autocreating constants
16292
16293 =item PERFORMANCE
16294
16295 =over 4
16296
16297 =item Alternative math libraries
16298
16299 =item SUBCLASSING
16300
16301 =back
16302
16303 =item Subclassing Math::BigInt
16304
16305 =item UPGRADING
16306
16307 =over 4
16308
16309 =item Auto-upgrade
16310
16311 bsqrt(), div(), blog()
16312
16313 =back
16314
16315 =item BUGS
16316
16317 broot() does not work, Out of Memory!, Fails to load Calc on Perl prior
16318 5.6.0
16319
16320 =item CAVEATS
16321
16322 stringify, bstr(), bsstr() and 'cmp', int(), length, bdiv, infinity
16323 handling, Modifying and =, bpow, Overloading -$x, Mixing different object
16324 types, bsqrt(), brsft()
16325
16326 =item LICENSE
16327
16328 =item SEE ALSO
16329
16330 =item AUTHORS
16331
16332 =back
16333
16334 =head2 Math::BigInt::Calc - Pure Perl module to support Math::BigInt
16335
16336 =over 4
16337
16338 =item SYNOPSIS
16339
16340 =item DESCRIPTION
16341
16342 =item STORAGE
16343
16344 =item METHODS
16345
16346 =item WRAP YOUR OWN
16347
16348 =item LICENSE
16349
16350 This program is free software; you may redistribute it and/or modify it
16351 under
16352 the same terms as Perl itself. 
16353
16354 =item AUTHORS
16355
16356 =item SEE ALSO
16357
16358 =back
16359
16360 =head2 Math::BigInt::Scalar - Pure Perl module to test Math::BigInt with
16361 scalars
16362
16363 =over 4
16364
16365 =item SYNOPSIS
16366
16367 =item DESCRIPTION
16368
16369 =item LICENSE
16370
16371 This program is free software; you may redistribute it and/or modify it
16372 under
16373 the same terms as Perl itself. 
16374
16375 =item AUTHOR
16376
16377 =item SEE ALSO
16378
16379 =back
16380
16381 =head2 Math::BigRat - arbitrarily big rationales
16382
16383 =over 4
16384
16385 =item SYNOPSIS
16386
16387 =item DESCRIPTION
16388
16389 =over 4
16390
16391 =item MATH LIBRARY
16392
16393 =back
16394
16395 =item METHODS
16396
16397 =over 4
16398
16399 =item new()
16400
16401 =item numerator()
16402
16403 =item denominator()
16404
16405         $d = $x->denominator();
16406
16407 =item parts()
16408
16409 =item as_number()
16410
16411 =item bfac()
16412
16413 =item blog()
16414
16415 =item bround()/round()/bfround()
16416
16417 =item bmod()
16418
16419 =item is_one()
16420
16421 =item is_zero()
16422
16423 =item is_positive()
16424
16425 =item is_negative()
16426
16427 =item is_int()
16428
16429 =item is_odd()
16430
16431 =item is_even()
16432
16433 =item bceil()
16434
16435 =item bfloor()
16436
16437         $x->bfloor();
16438
16439 =item config
16440
16441 =back
16442
16443 =item BUGS
16444
16445 inf handling (partial), NaN handling (partial), rounding (not implemented
16446 except for bceil/bfloor), $x ** $y where $y is not an integer
16447
16448 =item LICENSE
16449
16450 =item SEE ALSO
16451
16452 =item AUTHORS
16453
16454 =back
16455
16456 =head2 Math::Complex - complex numbers and associated mathematical
16457 functions
16458
16459 =over 4
16460
16461 =item SYNOPSIS
16462
16463 =item DESCRIPTION
16464
16465 =item OPERATIONS
16466
16467 =item CREATION
16468
16469 =item STRINGIFICATION
16470
16471 =over 4
16472
16473 =item CHANGED IN PERL 5.6
16474
16475 =back
16476
16477 =item USAGE
16478
16479 =item ERRORS DUE TO DIVISION BY ZERO OR LOGARITHM OF ZERO
16480
16481 =item ERRORS DUE TO INDIGESTIBLE ARGUMENTS
16482
16483 =item BUGS
16484
16485 =item AUTHORS
16486
16487 =back
16488
16489 =head2 Math::Trig - trigonometric functions
16490
16491 =over 4
16492
16493 =item SYNOPSIS
16494
16495 =item DESCRIPTION
16496
16497 =item TRIGONOMETRIC FUNCTIONS
16498
16499 B<tan>
16500
16501 =over 4
16502
16503 =item ERRORS DUE TO DIVISION BY ZERO
16504
16505 =item SIMPLE (REAL) ARGUMENTS, COMPLEX RESULTS
16506
16507 =back
16508
16509 =item PLANE ANGLE CONVERSIONS
16510
16511 =item RADIAL COORDINATE CONVERSIONS
16512
16513 =over 4
16514
16515 =item COORDINATE SYSTEMS
16516
16517 =item 3-D ANGLE CONVERSIONS
16518
16519 cartesian_to_cylindrical, cartesian_to_spherical, cylindrical_to_cartesian,
16520 cylindrical_to_spherical, spherical_to_cartesian, spherical_to_cylindrical
16521
16522 =back
16523
16524 =item GREAT CIRCLE DISTANCES AND DIRECTIONS
16525
16526 =item EXAMPLES
16527
16528 =over 4
16529
16530 =item CAVEAT FOR GREAT CIRCLE FORMULAS
16531
16532 =back
16533
16534 =item BUGS
16535
16536 =item AUTHORS
16537
16538 =back
16539
16540 =head2 Memoize - Make functions faster by trading space for time
16541
16542 =over 4
16543
16544 =item SYNOPSIS
16545
16546 =item DESCRIPTION
16547
16548 =item DETAILS
16549
16550 =item OPTIONS
16551
16552 =over 4
16553
16554 =item INSTALL
16555
16556 =item NORMALIZER
16557
16558 =item C<SCALAR_CACHE>, C<LIST_CACHE>
16559
16560 C<MEMORY>, C<HASH>, C<TIE>, C<FAULT>, C<MERGE>
16561
16562 =back
16563
16564 =item OTHER FACILITIES
16565
16566 =over 4
16567
16568 =item C<unmemoize>
16569
16570 =item C<flush_cache>
16571
16572 =back
16573
16574 =item CAVEATS
16575
16576 =item PERSISTENT CACHE SUPPORT
16577
16578 =item EXPIRATION SUPPORT
16579
16580 =item BUGS
16581
16582 =item MAILING LIST
16583
16584 =item AUTHOR
16585
16586 =item COPYRIGHT AND LICENSE
16587
16588 =item THANK YOU
16589
16590 =back
16591
16592 =head2 Memoize::AnyDBM_File - glue to provide EXISTS for AnyDBM_File for
16593 Storable use
16594
16595 =over 4
16596
16597 =item DESCRIPTION
16598
16599 =back
16600
16601 =head2 Memoize::Expire - Plug-in module for automatic expiration of
16602 memoized values
16603
16604 =over 4
16605
16606 =item SYNOPSIS
16607
16608 =item DESCRIPTION
16609
16610 =item INTERFACE
16611
16612  TIEHASH,  EXISTS,  STORE
16613
16614 =item ALTERNATIVES
16615
16616 =item CAVEATS
16617
16618 =item AUTHOR
16619
16620 =item SEE ALSO
16621
16622 =back
16623
16624 =head2 Memoize::ExpireFile - test for Memoize expiration semantics
16625
16626 =over 4
16627
16628 =item DESCRIPTION
16629
16630 =back
16631
16632 =head2 Memoize::ExpireTest - test for Memoize expiration semantics
16633
16634 =over 4
16635
16636 =item DESCRIPTION
16637
16638 =back
16639
16640 =head2 Memoize::NDBM_File - glue to provide EXISTS for NDBM_File for
16641 Storable use
16642
16643 =over 4
16644
16645 =item DESCRIPTION
16646
16647 =back
16648
16649 =head2 Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for
16650 Storable use
16651
16652 =over 4
16653
16654 =item DESCRIPTION
16655
16656 =back
16657
16658 =head2 Memoize::Storable - store Memoized data in Storable database
16659
16660 =over 4
16661
16662 =item DESCRIPTION
16663
16664 =back
16665
16666 =head2 NDBM_File - Tied access to ndbm files
16667
16668 =over 4
16669
16670 =item SYNOPSIS
16671
16672 =item DESCRIPTION
16673
16674 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
16675
16676 =item DIAGNOSTICS
16677
16678 =over 4
16679
16680 =item C<ndbm store returned -1, errno 22, key "..." at ...>
16681
16682 =back
16683
16684 =item BUGS AND WARNINGS
16685
16686 =back
16687
16688 =head2 NEXT - Provide a pseudo-class NEXT (et al) that allows method
16689 redispatch
16690
16691 =over 4
16692
16693 =item SYNOPSIS
16694
16695 =item DESCRIPTION
16696
16697 =over 4
16698
16699 =item Enforcing redispatch
16700
16701 =item Avoiding repetitions
16702
16703 =item Invoking all versions of a method with a single call
16704
16705 =item Using C<EVERY> methods
16706
16707 =back
16708
16709 =item AUTHOR
16710
16711 =item BUGS AND IRRITATIONS
16712
16713 =item COPYRIGHT
16714
16715 =back
16716
16717 =head2 Net::Cmd - Network Command class (as used by FTP, SMTP etc)
16718
16719 =over 4
16720
16721 =item SYNOPSIS
16722
16723 =item DESCRIPTION
16724
16725 =item USER METHODS
16726
16727 debug ( VALUE ), message (), code (), ok (), status (), datasend ( DATA ),
16728 dataend ()
16729
16730 =item CLASS METHODS
16731
16732 debug_print ( DIR, TEXT ), debug_text ( TEXT ), command ( CMD [, ARGS, ...
16733 ]), unsupported (), response (), parse_response ( TEXT ), getline (),
16734 ungetline ( TEXT ), rawdatasend ( DATA ), read_until_dot (), tied_fh ()
16735
16736 =item EXPORTS
16737
16738 =item AUTHOR
16739
16740 =item COPYRIGHT
16741
16742 =back
16743
16744 =head2 Net::Config - Local configuration data for libnet
16745
16746 =over 4
16747
16748 =item SYNOPSYS
16749
16750 =item DESCRIPTION
16751
16752 =item METHODS
16753
16754 requires_firewall HOST
16755
16756 =item NetConfig VALUES
16757
16758 nntp_hosts, snpp_hosts, pop3_hosts, smtp_hosts, ph_hosts, daytime_hosts,
16759 time_hosts, inet_domain, ftp_firewall, ftp_firewall_type, ftp_ext_passive,
16760 ftp_int_pasive, local_netmask, test_hosts, test_exists
16761
16762 =back
16763
16764 =head2 Net::Domain - Attempt to evaluate the current host's internet name
16765 and domain
16766
16767 =over 4
16768
16769 =item SYNOPSIS
16770
16771 =item DESCRIPTION
16772
16773 hostfqdn (), hostname (), hostdomain ()
16774
16775 =item AUTHOR
16776
16777 =item COPYRIGHT
16778
16779 =back
16780
16781 =head2 Net::FTP - FTP Client class
16782
16783 =over 4
16784
16785 =item SYNOPSIS
16786
16787 =item DESCRIPTION
16788
16789 =item OVERVIEW
16790
16791 =item CONSTRUCTOR
16792
16793 new (HOST [,OPTIONS])
16794
16795 =item METHODS
16796
16797 login ([LOGIN [,PASSWORD [, ACCOUNT] ] ]), authorize ( [AUTH [, RESP]]),
16798 site (ARGS), type (TYPE [, ARGS]), ascii ([ARGS]) binary([ARGS])
16799 ebcdic([ARGS]) byte([ARGS]), rename ( OLDNAME, NEWNAME ), delete ( FILENAME
16800 ), cwd ( [ DIR ] ), cdup (), pwd (), restart ( WHERE ), rmdir ( DIR ),
16801 mkdir ( DIR [, RECURSE ]), ls ( [ DIR ] ), alloc ( SIZE [, RECORD_SIZE] ),
16802 dir ( [ DIR ] ), get ( REMOTE_FILE [, LOCAL_FILE [, WHERE]] ), put (
16803 LOCAL_FILE [, REMOTE_FILE ] ), put_unique ( LOCAL_FILE [, REMOTE_FILE ] ),
16804 append ( LOCAL_FILE [, REMOTE_FILE ] ), unique_name (), mdtm ( FILE ), size
16805 ( FILE ), supported ( CMD ), hash ( [FILEHANDLE_GLOB_REF],[
16806 BYTES_PER_HASH_MARK] ), nlst ( [ DIR ] ), list ( [ DIR ] ), retr ( FILE ),
16807 stor ( FILE ), stou ( FILE ), appe ( FILE ), port ( [ PORT ] ), pasv (),
16808 pasv_xfer ( SRC_FILE, DEST_SERVER [, DEST_FILE ] ), pasv_xfer_unique (
16809 SRC_FILE, DEST_SERVER [, DEST_FILE ] ), pasv_wait ( NON_PASV_SERVER ),
16810 abort (), quit ()
16811
16812 =over 4
16813
16814 =item Methods for the adventurous
16815
16816 quot (CMD [,ARGS])
16817
16818 =back
16819
16820 =item THE dataconn CLASS
16821
16822 read ( BUFFER, SIZE [, TIMEOUT ] ), write ( BUFFER, SIZE [, TIMEOUT ] ),
16823 bytes_read (), abort (), close ()
16824
16825 =item UNIMPLEMENTED
16826
16827 B<SMNT>, B<HELP>, B<MODE>, B<SYST>, B<STAT>, B<STRU>, B<REIN>
16828
16829 =item REPORTING BUGS
16830
16831 =item AUTHOR
16832
16833 =item SEE ALSO
16834
16835 =item USE EXAMPLES
16836
16837 http://www.csh.rit.edu/~adam/Progs/autoftp-2.0.tar.gz
16838
16839 =item CREDITS
16840
16841 =item COPYRIGHT
16842
16843 =back
16844
16845 =head2 Net::NNTP - NNTP Client class
16846
16847 =over 4
16848
16849 =item SYNOPSIS
16850
16851 =item DESCRIPTION
16852
16853 =item CONSTRUCTOR
16854
16855 new ( [ HOST ] [, OPTIONS ])
16856
16857 =item METHODS
16858
16859 article ( [ MSGID|MSGNUM ], [FH] ), body ( [ MSGID|MSGNUM ], [FH] ), head (
16860 [ MSGID|MSGNUM ], [FH] ), articlefh ( [ MSGID|MSGNUM ] ), bodyfh ( [
16861 MSGID|MSGNUM ] ), headfh ( [ MSGID|MSGNUM ] ), nntpstat ( [ MSGID|MSGNUM ]
16862 ), group ( [ GROUP ] ), ihave ( MSGID [, MESSAGE ]), last (), date (),
16863 postok (), authinfo ( USER, PASS ), list (), newgroups ( SINCE [,
16864 DISTRIBUTIONS ]), newnews ( SINCE [, GROUPS [, DISTRIBUTIONS ]]), next (),
16865 post ( [ MESSAGE ] ), postfh (), slave (), quit ()
16866
16867 =over 4
16868
16869 =item Extension methods
16870
16871 newsgroups ( [ PATTERN ] ), distributions (), subscriptions (),
16872 overview_fmt (), active_times (), active ( [ PATTERN ] ), xgtitle ( PATTERN
16873 ), xhdr ( HEADER, MESSAGE-SPEC ), xover ( MESSAGE-SPEC ), xpath (
16874 MESSAGE-ID ), xpat ( HEADER, PATTERN, MESSAGE-SPEC), xrover, listgroup ( [
16875 GROUP ] ), reader
16876
16877 =back
16878
16879 =item UNSUPPORTED
16880
16881 =item DEFINITIONS
16882
16883 MESSAGE-SPEC, PATTERN, Examples, C<[^]-]>, C<*bdc>, C<[0-9a-zA-Z]>, C<a??d>
16884
16885 =item SEE ALSO
16886
16887 =item AUTHOR
16888
16889 =item COPYRIGHT
16890
16891 =back
16892
16893 =head2 Net::POP3 - Post Office Protocol 3 Client class (RFC1939)
16894
16895 =over 4
16896
16897 =item SYNOPSIS
16898
16899 =item DESCRIPTION
16900
16901 =item CONSTRUCTOR
16902
16903 new ( [ HOST, ] [ OPTIONS ] )
16904
16905 =item METHODS
16906
16907 user ( USER ), pass ( PASS ), login ( [ USER [, PASS ]] ), apop ( [ USER [,
16908 PASS ]] ), top ( MSGNUM [, NUMLINES ] ), list ( [ MSGNUM ] ), get ( MSGNUM
16909 [, FH ] ), getfh ( MSGNUM ), last (), popstat (), ping ( USER ), uidl ( [
16910 MSGNUM ] ), delete ( MSGNUM ), reset (), quit ()
16911
16912 =item NOTES
16913
16914 =item SEE ALSO
16915
16916 =item AUTHOR
16917
16918 =item COPYRIGHT
16919
16920 =back
16921
16922 =head2 Net::Ping - check a remote host for reachability
16923
16924 =over 4
16925
16926 =item SYNOPSIS
16927
16928 =item DESCRIPTION
16929
16930 =over 4
16931
16932 =item Functions
16933
16934 Net::Ping->new([$proto [, $def_timeout [, $bytes [, $device [, $tos
16935 ]]]]]);, $p->ping($host [, $timeout]);, $p->source_verify( { 0 | 1 } );,
16936 $p->service_check( { 0 | 1 } );, $p->tcp_service_check( { 0 | 1 } );,
16937 $p->hires( { 0 | 1 } );, $p->bind($local_addr);, $p->open($host);, $p->ack(
16938 [ $host ] );, $p->nack( $failed_ack_host );, $p->close();, pingecho($host
16939 [, $timeout]);
16940
16941 =back
16942
16943 =item NOTES
16944
16945 =item INSTALL
16946
16947 =item BUGS
16948
16949 =item AUTHORS
16950
16951 =item COPYRIGHT
16952
16953 =back
16954
16955 =head2 Net::SMTP - Simple Mail Transfer Protocol Client
16956
16957 =over 4
16958
16959 =item SYNOPSIS
16960
16961 =item DESCRIPTION
16962
16963 =item EXAMPLES
16964
16965 =item CONSTRUCTOR
16966
16967 new Net::SMTP [ HOST, ] [ OPTIONS ]
16968
16969 =item METHODS
16970
16971 banner (), domain (), hello ( DOMAIN ), etrn ( DOMAIN ), auth ( USERNAME,
16972 PASSWORD ), mail ( ADDRESS [, OPTIONS] ), send ( ADDRESS ), send_or_mail (
16973 ADDRESS ), send_and_mail ( ADDRESS ), reset (), recipient ( ADDRESS [,
16974 ADDRESS [ ...]] [, OPTIONS ] ), to ( ADDRESS [, ADDRESS [...]] ), cc (
16975 ADDRESS [, ADDRESS [...]] ), bcc ( ADDRESS [, ADDRESS [...]] ), data ( [
16976 DATA ] ), expand ( ADDRESS ), verify ( ADDRESS ), help ( [ $subject ] ),
16977 quit ()
16978
16979 =item ADDRESSES
16980
16981 =item SEE ALSO
16982
16983 =item AUTHOR
16984
16985 =item COPYRIGHT
16986
16987 =back
16988
16989 =head2 Net::Time - time and daytime network client interface
16990
16991 =over 4
16992
16993 =item SYNOPSIS
16994
16995 =item DESCRIPTION
16996
16997 inet_time ( [HOST [, PROTOCOL [, TIMEOUT]]]), inet_daytime ( [HOST [,
16998 PROTOCOL [, TIMEOUT]]])
16999
17000 =item AUTHOR
17001
17002 =item COPYRIGHT
17003
17004 =back
17005
17006 =head2 Net::hostent - by-name interface to Perl's built-in gethost*()
17007 functions
17008
17009 =over 4
17010
17011 =item SYNOPSIS
17012
17013 =item DESCRIPTION
17014
17015 =item EXAMPLES
17016
17017 =item NOTE
17018
17019 =item AUTHOR
17020
17021 =back
17022
17023 =head2 Net::libnetFAQ, libnetFAQ - libnet Frequently Asked Questions
17024
17025 =over 4
17026
17027 =item DESCRIPTION
17028
17029 =over 4
17030
17031 =item Where to get this document
17032
17033 =item How to contribute to this document
17034
17035 =back
17036
17037 =item Author and Copyright Information
17038
17039 =over 4
17040
17041 =item Disclaimer
17042
17043 =back
17044
17045 =item Obtaining and installing libnet
17046
17047 =over 4
17048
17049 =item What is libnet ?
17050
17051 =item Which version of perl do I need ?
17052
17053 =item What other modules do I need ?
17054
17055 =item What machines support libnet ?
17056
17057 =item Where can I get the latest libnet release
17058
17059 =back
17060
17061 =item Using Net::FTP
17062
17063 =over 4
17064
17065 =item How do I download files from an FTP server ?
17066
17067 =item How do I transfer files in binary mode ?
17068
17069 =item How can I get the size of a file on a remote FTP server ?
17070
17071 =item How can I get the modification time of a file on a remote FTP server
17072 ?
17073
17074 =item How can I change the permissions of a file on a remote server ?
17075
17076 =item Can I do a reget operation like the ftp command ?
17077
17078 =item How do I get a directory listing from an FTP server ?
17079
17080 =item Changing directory to "" does not fail ?
17081
17082 =item I am behind a SOCKS firewall, but the Firewall option does not work ?
17083
17084 =item I am behind an FTP proxy firewall, but cannot access machines outside
17085 ?
17086
17087 =item My ftp proxy firewall does not listen on port 21
17088
17089 =item Is it possible to change the file permissions of a file on an FTP
17090 server ?
17091
17092 =item I have seen scripts call a method message, but cannot find it
17093 documented ?
17094
17095 =item Why does Net::FTP not implement mput and mget methods
17096
17097 =back
17098
17099 =item Using Net::SMTP
17100
17101 =over 4
17102
17103 =item Why can't the part of an Email address after the @ be used as the
17104 hostname ?
17105
17106 =item Why does Net::SMTP not do DNS MX lookups ?
17107
17108 =item The verify method always returns true ?
17109
17110 =back
17111
17112 =item Debugging scripts
17113
17114 =over 4
17115
17116 =item How can I debug my scripts that use Net::* modules ?
17117
17118 =back
17119
17120 =item AUTHOR AND COPYRIGHT
17121
17122 =back
17123
17124 =head2 Net::netent - by-name interface to Perl's built-in getnet*()
17125 functions
17126
17127 =over 4
17128
17129 =item SYNOPSIS
17130
17131 =item DESCRIPTION
17132
17133 =item EXAMPLES
17134
17135 =item NOTE
17136
17137 =item AUTHOR
17138
17139 =back
17140
17141 =head2 Net::protoent - by-name interface to Perl's built-in getproto*()
17142 functions
17143
17144 =over 4
17145
17146 =item SYNOPSIS
17147
17148 =item DESCRIPTION
17149
17150 =item NOTE
17151
17152 =item AUTHOR
17153
17154 =back
17155
17156 =head2 Net::servent - by-name interface to Perl's built-in getserv*()
17157 functions
17158
17159 =over 4
17160
17161 =item SYNOPSIS
17162
17163 =item DESCRIPTION
17164
17165 =item EXAMPLES
17166
17167 =item NOTE
17168
17169 =item AUTHOR
17170
17171 =back
17172
17173 =head2 Netrc, Net::Netrc - OO interface to users netrc file
17174
17175 =over 4
17176
17177 =item SYNOPSIS
17178
17179 =item DESCRIPTION
17180
17181 =item THE .netrc FILE
17182
17183 machine name, default, login name, password string, account string, macdef
17184 name
17185
17186 =item CONSTRUCTOR
17187
17188 lookup ( MACHINE [, LOGIN ])
17189
17190 =item METHODS
17191
17192 login (), password (), account (), lpa ()
17193
17194 =item AUTHOR
17195
17196 =item SEE ALSO
17197
17198 =item COPYRIGHT
17199
17200 =back
17201
17202 =head2 O - Generic interface to Perl Compiler backends
17203
17204 =over 4
17205
17206 =item SYNOPSIS
17207
17208 =item DESCRIPTION
17209
17210 =item CONVENTIONS
17211
17212 =item IMPLEMENTATION
17213
17214 =item BUGS
17215
17216 =item AUTHOR
17217
17218 =back
17219
17220 =head2 ODBM_File - Tied access to odbm files
17221
17222 =over 4
17223
17224 =item SYNOPSIS
17225
17226 =item DESCRIPTION
17227
17228 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
17229
17230 =item DIAGNOSTICS
17231
17232 =over 4
17233
17234 =item C<odbm store returned -1, errno 22, key "..." at ...>
17235
17236 =back
17237
17238 =item BUGS AND WARNINGS
17239
17240 =back
17241
17242 =head2 Opcode - Disable named opcodes when compiling perl code
17243
17244 =over 4
17245
17246 =item SYNOPSIS
17247
17248 =item DESCRIPTION
17249
17250 =item NOTE
17251
17252 =item WARNING
17253
17254 =item Operator Names and Operator Lists
17255
17256 an operator name (opname), an operator tag name (optag), a negated opname
17257 or optag, an operator set (opset)
17258
17259 =item Opcode Functions
17260
17261 opcodes, opset (OP, ...), opset_to_ops (OPSET), opset_to_hex (OPSET),
17262 full_opset, empty_opset, invert_opset (OPSET), verify_opset (OPSET, ...),
17263 define_optag (OPTAG, OPSET), opmask_add (OPSET), opmask, opdesc (OP, ...),
17264 opdump (PAT)
17265
17266 =item Manipulating Opsets
17267
17268 =item TO DO (maybe)
17269
17270 =back
17271
17272 =over 4
17273
17274 =item Predefined Opcode Tags
17275
17276 :base_core, :base_mem, :base_loop, :base_io, :base_orig, :base_math,
17277 :base_thread, :default, :filesys_read, :sys_db, :browse, :filesys_open,
17278 :filesys_write, :subprocess, :ownprocess, :others, :still_to_be_decided,
17279 :dangerous
17280
17281 =item SEE ALSO
17282
17283 =item AUTHORS
17284
17285 =back
17286
17287 =head2 Opcode::Safe, Safe - Compile and execute code in restricted
17288 compartments
17289
17290 =over 4
17291
17292 =item SYNOPSIS
17293
17294 =item DESCRIPTION
17295
17296 a new namespace, an operator mask
17297
17298 =item WARNING
17299
17300 =over 4
17301
17302 =item RECENT CHANGES
17303
17304 =item Methods in class Safe
17305
17306 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
17307 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
17308 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
17309 root (NAMESPACE), mask (MASK)
17310
17311 =item Some Safety Issues
17312
17313 Memory, CPU, Snooping, Signals, State Changes
17314
17315 =item AUTHOR
17316
17317 =back
17318
17319 =back
17320
17321 =head2 Opcode::ops, ops - Perl pragma to restrict unsafe operations when
17322 compiling
17323
17324 =over 4
17325
17326 =item SYNOPSIS  
17327
17328 =item DESCRIPTION
17329
17330 =item SEE ALSO
17331
17332 =back
17333
17334 =head2 POSIX - Perl interface to IEEE Std 1003.1
17335
17336 =over 4
17337
17338 =item SYNOPSIS
17339
17340 =item DESCRIPTION
17341
17342 =item NOTE
17343
17344 =item CAVEATS 
17345
17346 =item FUNCTIONS
17347
17348 _exit, abort, abs, access, acos, alarm, asctime, asin, assert, atan, atan2,
17349 atexit, atof, atoi, atol, bsearch, calloc, ceil, chdir, chmod, chown,
17350 clearerr, clock, close, closedir, cos, cosh, creat, ctermid, ctime,
17351 cuserid, difftime, div, dup, dup2, errno, execl, execle, execlp, execv,
17352 execve, execvp, exit, exp, fabs, fclose, fcntl, fdopen, feof, ferror,
17353 fflush, fgetc, fgetpos, fgets, fileno, floor, fmod, fopen, fork, fpathconf,
17354 fprintf, fputc, fputs, fread, free, freopen, frexp, fscanf, fseek, fsetpos,
17355 fstat, fsync, ftell, fwrite, getc, getchar, getcwd, getegid, getenv,
17356 geteuid, getgid, getgrgid, getgrnam, getgroups, getlogin, getpgrp, getpid,
17357 getppid, getpwnam, getpwuid, gets, getuid, gmtime, isalnum, isalpha,
17358 isatty, iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace,
17359 isupper, isxdigit, kill, labs, ldexp, ldiv, link, localeconv, localtime,
17360 log, log10, longjmp, lseek, malloc, mblen, mbstowcs, mbtowc, memchr,
17361 memcmp, memcpy, memmove, memset, mkdir, mkfifo, mktime, modf, nice,
17362 offsetof, open, opendir, pathconf, pause, perror, pipe, pow, printf, putc,
17363 putchar, puts, qsort, raise, rand, read, readdir, realloc, remove, rename,
17364 rewind, rewinddir, rmdir, scanf, setgid, setjmp, setlocale, setpgid,
17365 setsid, setuid, sigaction, siglongjmp, sigpending, sigprocmask, sigsetjmp,
17366 sigsuspend, sin, sinh, sleep, sprintf, sqrt, srand, sscanf, stat, strcat,
17367 strchr, strcmp, strcoll, strcpy, strcspn, strerror, strftime, strlen,
17368 strncat, strncmp, strncpy, strpbrk, strrchr, strspn, strstr, strtod,
17369 strtok, strtol, strtoul, strxfrm, sysconf, system, tan, tanh, tcdrain,
17370 tcflow, tcflush, tcgetpgrp, tcsendbreak, tcsetpgrp, time, times, tmpfile,
17371 tmpnam, tolower, toupper, ttyname, tzname, tzset, umask, uname, ungetc,
17372 unlink, utime, vfprintf, vprintf, vsprintf, wait, waitpid, wcstombs,
17373 wctomb, write
17374
17375 =item CLASSES
17376
17377 =over 4
17378
17379 =item POSIX::SigAction
17380
17381 new, handler, mask, flags, safe
17382
17383 =item POSIX::SigSet
17384
17385 new, addset, delset, emptyset, fillset, ismember
17386
17387 =item POSIX::Termios
17388
17389 new, getattr, getcc, getcflag, getiflag, getispeed, getlflag, getoflag,
17390 getospeed, setattr, setcc, setcflag, setiflag, setispeed, setlflag,
17391 setoflag, setospeed, Baud rate values, Terminal interface values, c_cc
17392 field values, c_cflag field values, c_iflag field values, c_lflag field
17393 values, c_oflag field values
17394
17395 =back
17396
17397 =item PATHNAME CONSTANTS
17398
17399 Constants
17400
17401 =item POSIX CONSTANTS
17402
17403 Constants
17404
17405 =item SYSTEM CONFIGURATION
17406
17407 Constants
17408
17409 =item ERRNO
17410
17411 Constants
17412
17413 =item FCNTL
17414
17415 Constants
17416
17417 =item FLOAT
17418
17419 Constants
17420
17421 =item LIMITS
17422
17423 Constants
17424
17425 =item LOCALE
17426
17427 Constants
17428
17429 =item MATH
17430
17431 Constants
17432
17433 =item SIGNAL
17434
17435 Constants
17436
17437 =item STAT
17438
17439 Constants, Macros
17440
17441 =item STDLIB
17442
17443 Constants
17444
17445 =item STDIO
17446
17447 Constants
17448
17449 =item TIME
17450
17451 Constants
17452
17453 =item UNISTD
17454
17455 Constants
17456
17457 =item WAIT
17458
17459 Constants, WNOHANG, WUNTRACED, Macros, WIFEXITED, WEXITSTATUS, WIFSIGNALED,
17460 WTERMSIG, WIFSTOPPED, WSTOPSIG
17461
17462 =back
17463
17464 =head2 PerlIO - On demand loader for PerlIO layers and root of PerlIO::*
17465 name space
17466
17467 =over 4
17468
17469 =item SYNOPSIS
17470
17471 =item DESCRIPTION
17472
17473 unix, stdio, perlio, crlf, utf8, bytes, raw, pop
17474
17475 =over 4
17476
17477 =item Custom Layers
17478
17479 :encoding, :via
17480
17481 =item Alternatives to raw
17482
17483 =item Defaults and how to override them
17484
17485 =item Querying the layers of filehandle
17486
17487 =back
17488
17489 =item AUTHOR
17490
17491 =item SEE ALSO
17492
17493 =back
17494
17495 =head2 PerlIO::encoding - encoding layer
17496
17497 =over 4
17498
17499 =item SYNOPSIS
17500
17501 =item DESCRIPTION
17502
17503 =item SEE ALSO
17504
17505 =back
17506
17507 =head2 PerlIO::scalar - support module for in-memory IO.
17508
17509 =over 4
17510
17511 =item SYNOPSIS
17512
17513 =item DESCRIPTION
17514
17515 =back
17516
17517 =head2 PerlIO::via - Helper class for PerlIO layers implemented in perl
17518
17519 =over 4
17520
17521 =item SYNOPSIS
17522
17523 =item DESCRIPTION
17524
17525 =item EXPECTED METHODS
17526
17527 $class->PUSHED([$mode[,$fh]]), $obj->POPPED([$fh]),
17528 $obj->UTF8($bellowFlag,[$fh]), $obj->OPEN($path,$mode[,$fh]),
17529 $obj->BINMODE([,$fh]), $obj->FDOPEN($fd[,$fh]),
17530 $obj->SYSOPEN($path,$imode,$perm,[,$fh]), $obj->FILENO($fh),
17531 $obj->READ($buffer,$len,$fh), $obj->WRITE($buffer,$fh), $obj->FILL($fh),
17532 $obj->CLOSE($fh), $obj->SEEK($posn,$whence,$fh), $obj->TELL($fh),
17533 $obj->UNREAD($buffer,$fh), $obj->FLUSH($fh), $obj->SETLINEBUF($fh),
17534 $obj->CLEARERR($fh), $obj->ERROR($fh), $obj->EOF($fh)
17535
17536 =item EXAMPLES
17537
17538 =over 4
17539
17540 =item Example - a Hexadecimal Handle
17541
17542 =back
17543
17544 =back
17545
17546 =head2 PerlIO::via::QuotedPrint - PerlIO layer for quoted-printable strings
17547
17548 =over 4
17549
17550 =item SYNOPSIS
17551
17552 =item DESCRIPTION
17553
17554 =item SEE ALSO
17555
17556 =item ACKNOWLEDGEMENTS
17557
17558 =item COPYRIGHT
17559
17560 =back
17561
17562 =head2 Pod::Checker, podchecker() - check pod documents for syntax errors
17563
17564 =over 4
17565
17566 =item SYNOPSIS
17567
17568 =item OPTIONS/ARGUMENTS
17569
17570 =over 4
17571
17572 =item podchecker()
17573
17574 B<-warnings> =E<gt> I<val>
17575
17576 =back
17577
17578 =item DESCRIPTION
17579
17580 =item DIAGNOSTICS
17581
17582 =over 4
17583
17584 =item Errors
17585
17586 empty =headn, =over on line I<N> without closing =back, =item without
17587 previous =over, =back without previous =over, No argument for =begin, =end
17588 without =begin, Nested =begin's, =for without formatter specification,
17589 unresolved internal link I<NAME>, Unknown command "I<CMD>", Unknown
17590 interior-sequence "I<SEQ>", nested commands
17591 I<CMD>E<lt>...I<CMD>E<lt>...E<gt>...E<gt>, garbled entity I<STRING>, Entity
17592 number out of range, malformed link LE<lt>E<gt>, nonempty ZE<lt>E<gt>,
17593 empty XE<lt>E<gt>, Spurious text after =pod / =cut, Spurious character(s)
17594 after =back
17595
17596 =item Warnings
17597
17598 multiple occurrence of link target I<name>, line containing nothing but
17599 whitespace in paragraph, file does not start with =head, previous =item has
17600 no contents, preceding non-item paragraph(s), =item type mismatch (I<one>
17601 vs. I<two>), I<N> unescaped C<E<lt>E<gt>> in paragraph, Unknown entity, No
17602 items in =over, No argument for =item, empty section in previous paragraph,
17603 Verbatim paragraph in NAME section, =headI<n> without preceding higher
17604 level
17605
17606 =item Hyperlinks
17607
17608 ignoring leading/trailing whitespace in link, (section) in '$page'
17609 deprecated, alternative text/node '%s' contains non-escaped | or /
17610
17611 =back
17612
17613 =item RETURN VALUE
17614
17615 =item EXAMPLES
17616
17617 =item INTERFACE
17618
17619 =back
17620
17621 C<Pod::Checker-E<gt>new( %options )>
17622
17623 C<$checker-E<gt>poderror( @args )>, C<$checker-E<gt>poderror( {%opts},
17624 @args )>
17625
17626 C<$checker-E<gt>num_errors()>
17627
17628 C<$checker-E<gt>num_warnings()>
17629
17630 C<$checker-E<gt>name()>
17631
17632 C<$checker-E<gt>node()>
17633
17634 C<$checker-E<gt>idx()>
17635
17636 C<$checker-E<gt>hyperlink()>
17637
17638 =over 4
17639
17640 =item AUTHOR
17641
17642 =back
17643
17644 =head2 Pod::Find - find POD documents in directory trees
17645
17646 =over 4
17647
17648 =item SYNOPSIS
17649
17650 =item DESCRIPTION
17651
17652 =back
17653
17654 =over 4
17655
17656 =item C<pod_find( { %opts } , @directories )>
17657
17658 C<-verbose =E<gt> 1>, C<-perl =E<gt> 1>, C<-script =E<gt> 1>, C<-inc =E<gt>
17659 1>
17660
17661 =back
17662
17663 =over 4
17664
17665 =item C<simplify_name( $str )>
17666
17667 =back
17668
17669 =over 4
17670
17671 =item C<pod_where( { %opts }, $pod )>
17672
17673 C<-inc =E<gt> 1>, C<-dirs =E<gt> [ $dir1, $dir2, ... ]>, C<-verbose =E<gt>
17674 1>
17675
17676 =back
17677
17678 =over 4
17679
17680 =item C<contains_pod( $file , $verbose )>
17681
17682 =back
17683
17684 =over 4
17685
17686 =item AUTHOR
17687
17688 =item SEE ALSO
17689
17690 =back
17691
17692 =head2 Pod::Html - module to convert pod files to HTML
17693
17694 =over 4
17695
17696 =item SYNOPSIS
17697
17698 =item DESCRIPTION
17699
17700 =item ARGUMENTS
17701
17702 backlink, cachedir, css, flush, header, help, htmldir, htmlroot, index,
17703 infile, libpods, netscape, outfile, podpath, podroot, quiet, recurse,
17704 title, verbose
17705
17706 =item EXAMPLE
17707
17708 =item ENVIRONMENT
17709
17710 =item AUTHOR
17711
17712 =item SEE ALSO
17713
17714 =item COPYRIGHT
17715
17716 =back
17717
17718 =head2 Pod::InputObjects - objects representing POD input paragraphs,
17719 commands, etc.
17720
17721 =over 4
17722
17723 =item SYNOPSIS
17724
17725 =item REQUIRES
17726
17727 =item EXPORTS
17728
17729 =item DESCRIPTION
17730
17731 package B<Pod::InputSource>, package B<Pod::Paragraph>, package
17732 B<Pod::InteriorSequence>, package B<Pod::ParseTree>
17733
17734 =back
17735
17736 =over 4
17737
17738 =item B<Pod::InputSource>
17739
17740 =back
17741
17742 =over 4
17743
17744 =item B<new()>
17745
17746 =back
17747
17748 =over 4
17749
17750 =item B<name()>
17751
17752 =back
17753
17754 =over 4
17755
17756 =item B<handle()>
17757
17758 =back
17759
17760 =over 4
17761
17762 =item B<was_cutting()>
17763
17764 =back
17765
17766 =over 4
17767
17768 =item B<Pod::Paragraph>
17769
17770 =back
17771
17772 =over 4
17773
17774 =item Pod::Paragraph-E<gt>B<new()>
17775
17776 =back
17777
17778 =over 4
17779
17780 =item $pod_para-E<gt>B<cmd_name()>
17781
17782 =back
17783
17784 =over 4
17785
17786 =item $pod_para-E<gt>B<text()>
17787
17788 =back
17789
17790 =over 4
17791
17792 =item $pod_para-E<gt>B<raw_text()>
17793
17794 =back
17795
17796 =over 4
17797
17798 =item $pod_para-E<gt>B<cmd_prefix()>
17799
17800 =back
17801
17802 =over 4
17803
17804 =item $pod_para-E<gt>B<cmd_separator()>
17805
17806 =back
17807
17808 =over 4
17809
17810 =item $pod_para-E<gt>B<parse_tree()>
17811
17812 =back
17813
17814 =over 4
17815
17816 =item $pod_para-E<gt>B<file_line()>
17817
17818 =back
17819
17820 =over 4
17821
17822 =item B<Pod::InteriorSequence>
17823
17824 =back
17825
17826 =over 4
17827
17828 =item Pod::InteriorSequence-E<gt>B<new()>
17829
17830 =back
17831
17832 =over 4
17833
17834 =item $pod_seq-E<gt>B<cmd_name()>
17835
17836 =back
17837
17838 =over 4
17839
17840 =item $pod_seq-E<gt>B<prepend()>
17841
17842 =back
17843
17844 =over 4
17845
17846 =item $pod_seq-E<gt>B<append()>
17847
17848 =back
17849
17850 =over 4
17851
17852 =item $pod_seq-E<gt>B<nested()>
17853
17854 =back
17855
17856 =over 4
17857
17858 =item $pod_seq-E<gt>B<raw_text()>
17859
17860 =back
17861
17862 =over 4
17863
17864 =item $pod_seq-E<gt>B<left_delimiter()>
17865
17866 =back
17867
17868 =over 4
17869
17870 =item $pod_seq-E<gt>B<right_delimiter()>
17871
17872 =back
17873
17874 =over 4
17875
17876 =item $pod_seq-E<gt>B<parse_tree()>
17877
17878 =back
17879
17880 =over 4
17881
17882 =item $pod_seq-E<gt>B<file_line()>
17883
17884 =back
17885
17886 =over 4
17887
17888 =item Pod::InteriorSequence::B<DESTROY()>
17889
17890 =back
17891
17892 =over 4
17893
17894 =item B<Pod::ParseTree>
17895
17896 =back
17897
17898 =over 4
17899
17900 =item Pod::ParseTree-E<gt>B<new()>
17901
17902 =back
17903
17904 =over 4
17905
17906 =item $ptree-E<gt>B<top()>
17907
17908 =back
17909
17910 =over 4
17911
17912 =item $ptree-E<gt>B<children()>
17913
17914 =back
17915
17916 =over 4
17917
17918 =item $ptree-E<gt>B<prepend()>
17919
17920 =back
17921
17922 =over 4
17923
17924 =item $ptree-E<gt>B<append()>
17925
17926 =back
17927
17928 =over 4
17929
17930 =item $ptree-E<gt>B<raw_text()>
17931
17932 =back
17933
17934 =over 4
17935
17936 =item Pod::ParseTree::B<DESTROY()>
17937
17938 =back
17939
17940 =over 4
17941
17942 =item SEE ALSO
17943
17944 =item AUTHOR
17945
17946 =back
17947
17948 =head2 Pod::LaTeX - Convert Pod data to formatted Latex
17949
17950 =over 4
17951
17952 =item SYNOPSIS
17953
17954 =item DESCRIPTION
17955
17956 =back
17957
17958 =over 4
17959
17960 =item OBJECT METHODS
17961
17962 C<initialize>
17963
17964 =back
17965
17966 =over 4
17967
17968 =item Data Accessors
17969
17970 B<AddPreamble>
17971
17972 =back
17973
17974 B<AddPostamble>
17975
17976 B<Head1Level>
17977
17978 B<Label>
17979
17980 B<LevelNoNum>
17981
17982 B<MakeIndex>
17983
17984 B<ReplaceNAMEwithSection>
17985
17986 B<StartWithNewPage>
17987
17988 B<TableOfContents>
17989
17990 B<UniqueLabels>
17991
17992 B<UserPreamble>
17993
17994 B<UserPostamble>
17995
17996 B<Lists>
17997
17998 =over 4
17999
18000 =item Subclassed methods
18001
18002 =back
18003
18004 B<begin_pod>
18005
18006 B<end_pod>
18007
18008 B<command>
18009
18010 B<verbatim>
18011
18012 B<textblock>
18013
18014 B<interior_sequence>
18015
18016 =over 4
18017
18018 =item List Methods
18019
18020 B<begin_list>
18021
18022 =back
18023
18024 B<end_list>
18025
18026 B<add_item>
18027
18028 =over 4
18029
18030 =item Methods for headings
18031
18032 B<head>
18033
18034 =back
18035
18036 =over 4
18037
18038 =item Internal methods
18039
18040 B<_output>
18041
18042 =back
18043
18044 B<_replace_special_chars>
18045
18046 B<_replace_special_chars_late>
18047
18048 B<_create_label>
18049
18050 B<_create_index>
18051
18052 B<_clean_latex_commands>
18053
18054 B<_split_delimited>
18055
18056 =over 4
18057
18058 =item NOTES
18059
18060 =item SEE ALSO
18061
18062 =item AUTHORS
18063
18064 =item COPYRIGHT
18065
18066 =item REVISION
18067
18068 =back
18069
18070 =head2 Pod::Man - Convert POD data to formatted *roff input
18071
18072 =over 4
18073
18074 =item SYNOPSIS
18075
18076 =item DESCRIPTION
18077
18078 center, date, fixed, fixedbold, fixeditalic, fixedbolditalic, name, quotes,
18079 release, section
18080
18081 =item DIAGNOSTICS
18082
18083 roff font should be 1 or 2 chars, not "%s", Invalid link %s, Invalid quote
18084 specification "%s", %s:%d: Unknown command paragraph "%s", %s:%d: Unknown
18085 escape EE<lt>%sE<gt>, %s:%d: Unknown formatting code %s, %s:%d: Unmatched
18086 =back
18087
18088 =item BUGS
18089
18090 =item CAVEATS
18091
18092 =item SEE ALSO
18093
18094 =item AUTHOR
18095
18096 =item COPYRIGHT AND LICENSE
18097
18098 =back
18099
18100 =head2 Pod::ParseLink - Parse an LE<lt>E<gt> formatting code in POD text
18101
18102 =over 4
18103
18104 =item SYNOPSIS
18105
18106 =item DESCRIPTION
18107
18108 =item SEE ALSO
18109
18110 =item AUTHOR
18111
18112 =item COPYRIGHT AND LICENSE
18113
18114 =back
18115
18116 =head2 Pod::ParseUtils - helpers for POD parsing and conversion
18117
18118 =over 4
18119
18120 =item SYNOPSIS
18121
18122 =item DESCRIPTION
18123
18124 =back
18125
18126 =over 4
18127
18128 =item Pod::List
18129
18130 Pod::List-E<gt>new()
18131
18132 =back
18133
18134 $list-E<gt>file()
18135
18136 $list-E<gt>start()
18137
18138 $list-E<gt>indent()
18139
18140 $list-E<gt>type()
18141
18142 $list-E<gt>rx()
18143
18144 $list-E<gt>item()
18145
18146 $list-E<gt>parent()
18147
18148 $list-E<gt>tag()
18149
18150 =over 4
18151
18152 =item Pod::Hyperlink
18153
18154 Pod::Hyperlink-E<gt>new()
18155
18156 =back
18157
18158 $link-E<gt>parse($string)
18159
18160 $link-E<gt>markup($string)
18161
18162 $link-E<gt>text()
18163
18164 $link-E<gt>warning()
18165
18166 $link-E<gt>file(), $link-E<gt>line()
18167
18168 $link-E<gt>page()
18169
18170 $link-E<gt>node()
18171
18172 $link-E<gt>alttext()
18173
18174 $link-E<gt>type()
18175
18176 $link-E<gt>link()
18177
18178 =over 4
18179
18180 =item Pod::Cache
18181
18182 Pod::Cache-E<gt>new()
18183
18184 =back
18185
18186 $cache-E<gt>item()
18187
18188 $cache-E<gt>find_page($name)
18189
18190 =over 4
18191
18192 =item Pod::Cache::Item
18193
18194 Pod::Cache::Item-E<gt>new()
18195
18196 =back
18197
18198 $cacheitem-E<gt>page()
18199
18200 $cacheitem-E<gt>description()
18201
18202 $cacheitem-E<gt>path()
18203
18204 $cacheitem-E<gt>file()
18205
18206 $cacheitem-E<gt>nodes()
18207
18208 $cacheitem-E<gt>find_node($name)
18209
18210 $cacheitem-E<gt>idx()
18211
18212 =over 4
18213
18214 =item AUTHOR
18215
18216 =item SEE ALSO
18217
18218 =back
18219
18220 =head2 Pod::Parser - base class for creating POD filters and translators
18221
18222 =over 4
18223
18224 =item SYNOPSIS
18225
18226 =item REQUIRES
18227
18228 =item EXPORTS
18229
18230 =item DESCRIPTION
18231
18232 =item QUICK OVERVIEW
18233
18234 =item PARSING OPTIONS
18235
18236 B<-want_nonPODs> (default: unset), B<-process_cut_cmd> (default: unset),
18237 B<-warnings> (default: unset)
18238
18239 =back
18240
18241 =over 4
18242
18243 =item RECOMMENDED SUBROUTINE/METHOD OVERRIDES
18244
18245 =back
18246
18247 =over 4
18248
18249 =item B<command()>
18250
18251 C<$cmd>, C<$text>, C<$line_num>, C<$pod_para>
18252
18253 =back
18254
18255 =over 4
18256
18257 =item B<verbatim()>
18258
18259 C<$text>, C<$line_num>, C<$pod_para>
18260
18261 =back
18262
18263 =over 4
18264
18265 =item B<textblock()>
18266
18267 C<$text>, C<$line_num>, C<$pod_para>
18268
18269 =back
18270
18271 =over 4
18272
18273 =item B<interior_sequence()>
18274
18275 =back
18276
18277 =over 4
18278
18279 =item OPTIONAL SUBROUTINE/METHOD OVERRIDES
18280
18281 =back
18282
18283 =over 4
18284
18285 =item B<new()>
18286
18287 =back
18288
18289 =over 4
18290
18291 =item B<initialize()>
18292
18293 =back
18294
18295 =over 4
18296
18297 =item B<begin_pod()>
18298
18299 =back
18300
18301 =over 4
18302
18303 =item B<begin_input()>
18304
18305 =back
18306
18307 =over 4
18308
18309 =item B<end_input()>
18310
18311 =back
18312
18313 =over 4
18314
18315 =item B<end_pod()>
18316
18317 =back
18318
18319 =over 4
18320
18321 =item B<preprocess_line()>
18322
18323 =back
18324
18325 =over 4
18326
18327 =item B<preprocess_paragraph()>
18328
18329 =back
18330
18331 =over 4
18332
18333 =item METHODS FOR PARSING AND PROCESSING
18334
18335 =back
18336
18337 =over 4
18338
18339 =item B<parse_text()>
18340
18341 B<-expand_seq> =E<gt> I<code-ref>|I<method-name>, B<-expand_text> =E<gt>
18342 I<code-ref>|I<method-name>, B<-expand_ptree> =E<gt>
18343 I<code-ref>|I<method-name>
18344
18345 =back
18346
18347 =over 4
18348
18349 =item B<interpolate()>
18350
18351 =back
18352
18353 =over 4
18354
18355 =item B<parse_paragraph()>
18356
18357 =back
18358
18359 =over 4
18360
18361 =item B<parse_from_filehandle()>
18362
18363 =back
18364
18365 =over 4
18366
18367 =item B<parse_from_file()>
18368
18369 =back
18370
18371 =over 4
18372
18373 =item ACCESSOR METHODS
18374
18375 =back
18376
18377 =over 4
18378
18379 =item B<errorsub()>
18380
18381 =back
18382
18383 =over 4
18384
18385 =item B<cutting()>
18386
18387 =back
18388
18389 =over 4
18390
18391 =item B<parseopts()>
18392
18393 =back
18394
18395 =over 4
18396
18397 =item B<output_file()>
18398
18399 =back
18400
18401 =over 4
18402
18403 =item B<output_handle()>
18404
18405 =back
18406
18407 =over 4
18408
18409 =item B<input_file()>
18410
18411 =back
18412
18413 =over 4
18414
18415 =item B<input_handle()>
18416
18417 =back
18418
18419 =over 4
18420
18421 =item B<input_streams()>
18422
18423 =back
18424
18425 =over 4
18426
18427 =item B<top_stream()>
18428
18429 =back
18430
18431 =over 4
18432
18433 =item PRIVATE METHODS AND DATA
18434
18435 =back
18436
18437 =over 4
18438
18439 =item B<_push_input_stream()>
18440
18441 =back
18442
18443 =over 4
18444
18445 =item B<_pop_input_stream()>
18446
18447 =back
18448
18449 =over 4
18450
18451 =item TREE-BASED PARSING
18452
18453 =item SEE ALSO
18454
18455 =item AUTHOR
18456
18457 =back
18458
18459 =head2 Pod::Perldoc::ToChecker - let Perldoc check Pod for errors
18460
18461 =over 4
18462
18463 =item SYNOPSIS
18464
18465 =item DESCRIPTION
18466
18467 =item SEE ALSO
18468
18469 =item COPYRIGHT AND DISCLAIMERS
18470
18471 =item AUTHOR
18472
18473 =back
18474
18475 =head2 Pod::Perldoc::ToMan - let Perldoc render Pod as man pages
18476
18477 =over 4
18478
18479 =item SYNOPSIS
18480
18481 =item DESCRIPTION
18482
18483 =item CAVEAT
18484
18485 =item SEE ALSO
18486
18487 =item COPYRIGHT AND DISCLAIMERS
18488
18489 =item AUTHOR
18490
18491 =back
18492
18493 =head2 Pod::Perldoc::ToNroff - let Perldoc convert Pod to nroff
18494
18495 =over 4
18496
18497 =item SYNOPSIS
18498
18499 =item DESCRIPTION
18500
18501 =item CAVEAT
18502
18503 =item SEE ALSO
18504
18505 =item COPYRIGHT AND DISCLAIMERS
18506
18507 =item AUTHOR
18508
18509 =back
18510
18511 =head2 Pod::Perldoc::ToPod - let Perldoc render Pod as ... Pod!
18512
18513 =over 4
18514
18515 =item SYNOPSIS
18516
18517 =item DESCRIPTION
18518
18519 =item SEE ALSO
18520
18521 =item COPYRIGHT AND DISCLAIMERS
18522
18523 =item AUTHOR
18524
18525 =back
18526
18527 =head2 Pod::Perldoc::ToRtf - let Perldoc render Pod as RTF
18528
18529 =over 4
18530
18531 =item SYNOPSIS
18532
18533 =item DESCRIPTION
18534
18535 =item SEE ALSO
18536
18537 =item COPYRIGHT AND DISCLAIMERS
18538
18539 =item AUTHOR
18540
18541 =back
18542
18543 =head2 Pod::Perldoc::ToText - let Perldoc render Pod as plaintext
18544
18545 =over 4
18546
18547 =item SYNOPSIS
18548
18549 =item DESCRIPTION
18550
18551 =item CAVEAT
18552
18553 =item SEE ALSO
18554
18555 =item COPYRIGHT AND DISCLAIMERS
18556
18557 =item AUTHOR
18558
18559 =back
18560
18561 =head2 Pod::Perldoc::ToTk - let Perldoc use Tk::Pod to render Pod
18562
18563 =over 4
18564
18565 =item SYNOPSIS
18566
18567 =item DESCRIPTION
18568
18569 =item SEE ALSO
18570
18571 =item AUTHOR
18572
18573 =back
18574
18575 =head2 Pod::Perldoc::ToXml - let Perldoc render Pod as XML
18576
18577 =over 4
18578
18579 =item SYNOPSIS
18580
18581 =item DESCRIPTION
18582
18583 =item SEE ALSO
18584
18585 =item COPYRIGHT AND DISCLAIMERS
18586
18587 =item AUTHOR
18588
18589 =back
18590
18591 =head2 Pod::PlainText - Convert POD data to formatted ASCII text
18592
18593 =over 4
18594
18595 =item SYNOPSIS
18596
18597 =item DESCRIPTION
18598
18599 alt, indent, loose, sentence, width
18600
18601 =item DIAGNOSTICS
18602
18603 Bizarre space in item, Can't open %s for reading: %s, Unknown escape: %s,
18604 Unknown sequence: %s, Unmatched =back
18605
18606 =item RESTRICTIONS
18607
18608 =item NOTES
18609
18610 =item SEE ALSO
18611
18612 =item AUTHOR
18613
18614 =back
18615
18616 =head2 Pod::Plainer - Perl extension for converting Pod to old style Pod.
18617
18618 =over 4
18619
18620 =item SYNOPSIS
18621
18622 =item DESCRIPTION
18623
18624 =over 4
18625
18626 =item EXPORT
18627
18628 =back
18629
18630 =item AUTHOR
18631
18632 =item SEE ALSO
18633
18634 =back
18635
18636 =head2 Pod::Select, podselect() - extract selected sections of POD from
18637 input
18638
18639 =over 4
18640
18641 =item SYNOPSIS
18642
18643 =item REQUIRES
18644
18645 =item EXPORTS
18646
18647 =item DESCRIPTION
18648
18649 =item SECTION SPECIFICATIONS
18650
18651 =item RANGE SPECIFICATIONS
18652
18653 =back
18654
18655 =over 4
18656
18657 =item OBJECT METHODS
18658
18659 =back
18660
18661 =over 4
18662
18663 =item B<curr_headings()>
18664
18665 =back
18666
18667 =over 4
18668
18669 =item B<select()>
18670
18671 =back
18672
18673 =over 4
18674
18675 =item B<add_selection()>
18676
18677 =back
18678
18679 =over 4
18680
18681 =item B<clear_selections()>
18682
18683 =back
18684
18685 =over 4
18686
18687 =item B<match_section()>
18688
18689 =back
18690
18691 =over 4
18692
18693 =item B<is_selected()>
18694
18695 =back
18696
18697 =over 4
18698
18699 =item EXPORTED FUNCTIONS
18700
18701 =back
18702
18703 =over 4
18704
18705 =item B<podselect()>
18706
18707 B<-output>, B<-sections>, B<-ranges>
18708
18709 =back
18710
18711 =over 4
18712
18713 =item PRIVATE METHODS AND DATA
18714
18715 =back
18716
18717 =over 4
18718
18719 =item B<_compile_section_spec()>
18720
18721 =back
18722
18723 =over 4
18724
18725 =item $self->{_SECTION_HEADINGS}
18726
18727 =back
18728
18729 =over 4
18730
18731 =item $self->{_SELECTED_SECTIONS}
18732
18733 =back
18734
18735 =over 4
18736
18737 =item SEE ALSO
18738
18739 =item AUTHOR
18740
18741 =back
18742
18743 =head2 Pod::Text - Convert POD data to formatted ASCII text
18744
18745 =over 4
18746
18747 =item SYNOPSIS
18748
18749 =item DESCRIPTION
18750
18751 alt, code, indent, loose, margin, quotes, sentence, width
18752
18753 =item DIAGNOSTICS
18754
18755 Bizarre space in item, Item called without tag, Can't open %s for reading:
18756 %s, Invalid quote specification "%s", %s:%d: Unknown command paragraph: %s,
18757 %s:%d: Unknown escape: %s, %s:%d: Unknown formatting code: %s, %s:%d:
18758 Unmatched =back
18759
18760 =item RESTRICTIONS
18761
18762 =item NOTES
18763
18764 =item SEE ALSO
18765
18766 =item AUTHOR
18767
18768 =item COPYRIGHT AND LICENSE
18769
18770 =back
18771
18772 =head2 Pod::Text::Color - Convert POD data to formatted color ASCII text
18773
18774 =over 4
18775
18776 =item SYNOPSIS
18777
18778 =item DESCRIPTION
18779
18780 =item BUGS
18781
18782 =item SEE ALSO
18783
18784 =item AUTHOR
18785
18786 =item COPYRIGHT AND LICENSE
18787
18788 =back
18789
18790 =head2 Pod::Text::Overstrike - Convert POD data to formatted overstrike
18791 text
18792
18793 =over 4
18794
18795 =item SYNOPSIS
18796
18797 =item DESCRIPTION
18798
18799 =item BUGS
18800
18801 =item SEE ALSO
18802
18803 =item AUTHOR
18804
18805 =item COPYRIGHT AND LICENSE
18806
18807 =back
18808
18809 =head2 Pod::Text::Termcap - Convert POD data to ASCII text with format
18810 escapes
18811
18812 =over 4
18813
18814 =item SYNOPSIS
18815
18816 =item DESCRIPTION
18817
18818 =item NOTES
18819
18820 =item SEE ALSO
18821
18822 =item AUTHOR
18823
18824 =item COPYRIGHT AND LICENSE
18825
18826 =back
18827
18828 =head2 Pod::Usage, pod2usage() - print a usage message from embedded pod
18829 documentation
18830
18831 =over 4
18832
18833 =item SYNOPSIS
18834
18835 =item ARGUMENTS
18836
18837 C<-message>, C<-msg>, C<-exitval>, C<-verbose>, C<-output>, C<-input>,
18838 C<-pathlist>
18839
18840 =item DESCRIPTION
18841
18842 =item EXAMPLES
18843
18844 =over 4
18845
18846 =item Recommended Use
18847
18848 =back
18849
18850 =item CAVEATS
18851
18852 =item AUTHOR
18853
18854 =item ACKNOWLEDGEMENTS
18855
18856 =back
18857
18858 =head2 SDBM_File - Tied access to sdbm files
18859
18860 =over 4
18861
18862 =item SYNOPSIS
18863
18864 =item DESCRIPTION
18865
18866 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
18867
18868 =item DIAGNOSTICS
18869
18870 =over 4
18871
18872 =item C<sdbm store returned -1, errno 22, key "..." at ...>
18873
18874 =back
18875
18876 =item BUGS AND WARNINGS
18877
18878 =back
18879
18880 =head2 Safe - Compile and execute code in restricted compartments
18881
18882 =over 4
18883
18884 =item SYNOPSIS
18885
18886 =item DESCRIPTION
18887
18888 a new namespace, an operator mask
18889
18890 =item WARNING
18891
18892 =over 4
18893
18894 =item RECENT CHANGES
18895
18896 =item Methods in class Safe
18897
18898 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
18899 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
18900 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
18901 root (NAMESPACE), mask (MASK)
18902
18903 =item Some Safety Issues
18904
18905 Memory, CPU, Snooping, Signals, State Changes
18906
18907 =item AUTHOR
18908
18909 =back
18910
18911 =back
18912
18913 =head2 Scalar::Util - A selection of general-utility scalar subroutines
18914
18915 =over 4
18916
18917 =item SYNOPSIS
18918
18919 =item DESCRIPTION
18920
18921 blessed EXPR, dualvar NUM, STRING, isvstring EXPR, isweak EXPR,
18922 looks_like_number EXPR, openhandle FH, refaddr EXPR, reftype EXPR,
18923 set_prototype CODEREF, PROTOTYPE, tainted EXPR, weaken REF
18924
18925 =item KNOWN BUGS
18926
18927 =item COPYRIGHT
18928
18929 =item BLATANT PLUG
18930
18931 =back
18932
18933 =head2 Search::Dict, look - search for key in dictionary file
18934
18935 =over 4
18936
18937 =item SYNOPSIS
18938
18939 =item DESCRIPTION
18940
18941 =back
18942
18943 =head2 SelectSaver - save and restore selected file handle
18944
18945 =over 4
18946
18947 =item SYNOPSIS
18948
18949 =item DESCRIPTION
18950
18951 =back
18952
18953 =head2 SelfLoader - load functions only on demand
18954
18955 =over 4
18956
18957 =item SYNOPSIS
18958
18959 =item DESCRIPTION
18960
18961 =over 4
18962
18963 =item The __DATA__ token
18964
18965 =item SelfLoader autoloading
18966
18967 =item Autoloading and package lexicals
18968
18969 =item SelfLoader and AutoLoader
18970
18971 =item __DATA__, __END__, and the FOOBAR::DATA filehandle.
18972
18973 =item Classes and inherited methods.
18974
18975 =back
18976
18977 =item Multiple packages and fully qualified subroutine names
18978
18979 =back
18980
18981 =head2 Shell - run shell commands transparently within perl
18982
18983 =over 4
18984
18985 =item SYNOPSIS
18986
18987 =item DESCRIPTION
18988
18989 =over 4
18990
18991 =item OBJECT ORIENTED SYNTAX
18992
18993 =back
18994
18995 =item AUTHOR
18996
18997 =back
18998
18999 =head2 Socket, sockaddr_in, sockaddr_un, inet_aton, inet_ntoa - load the C
19000 socket.h defines and structure manipulators 
19001
19002 =over 4
19003
19004 =item SYNOPSIS
19005
19006 =item DESCRIPTION
19007
19008 inet_aton HOSTNAME, inet_ntoa IP_ADDRESS, INADDR_ANY, INADDR_BROADCAST,
19009 INADDR_LOOPBACK, INADDR_NONE, sockaddr_family SOCKADDR, sockaddr_in PORT,
19010 ADDRESS, sockaddr_in SOCKADDR_IN, pack_sockaddr_in PORT, IP_ADDRESS,
19011 unpack_sockaddr_in SOCKADDR_IN, sockaddr_un PATHNAME, sockaddr_un
19012 SOCKADDR_UN, pack_sockaddr_un PATH, unpack_sockaddr_un SOCKADDR_UN
19013
19014 =back
19015
19016 =head2 Storable - persistence for Perl data structures
19017
19018 =over 4
19019
19020 =item SYNOPSIS
19021
19022 =item DESCRIPTION
19023
19024 =item MEMORY STORE
19025
19026 =item ADVISORY LOCKING
19027
19028 =item SPEED
19029
19030 =item CANONICAL REPRESENTATION
19031
19032 =item CODE REFERENCES
19033
19034 =item FORWARD COMPATIBILITY
19035
19036 utf8 data, restricted hashes, files from future versions of Storable
19037
19038 =item ERROR REPORTING
19039
19040 =item WIZARDS ONLY
19041
19042 =over 4
19043
19044 =item Hooks
19045
19046 C<STORABLE_freeze> I<obj>, I<cloning>, C<STORABLE_thaw> I<obj>, I<cloning>,
19047 I<serialized>, ..
19048
19049 =item Predicates
19050
19051 C<Storable::last_op_in_netorder>, C<Storable::is_storing>,
19052 C<Storable::is_retrieving>
19053
19054 =item Recursion
19055
19056 =item Deep Cloning
19057
19058 =back
19059
19060 =item Storable magic
19061
19062 =item EXAMPLES
19063
19064 =item WARNING
19065
19066 =item BUGS
19067
19068 =over 4
19069
19070 =item 64 bit data in perl 5.6.0 and 5.6.1
19071
19072 =back
19073
19074 =item CREDITS
19075
19076 =item AUTHOR
19077
19078 =item SEE ALSO
19079
19080 =back
19081
19082 =head2 Switch - A switch statement for Perl
19083
19084 =over 4
19085
19086 =item VERSION
19087
19088 =item SYNOPSIS
19089
19090 =item BACKGROUND
19091
19092 =item DESCRIPTION
19093
19094 =over 4
19095
19096 =item Allowing fall-through
19097
19098 =item Automating fall-through
19099
19100 =item Alternative syntax
19101
19102 =item Higher-order Operations
19103
19104 =back
19105
19106 =item DEPENDENCIES
19107
19108 =item AUTHOR
19109
19110 =item BUGS
19111
19112 =item LIMITATION
19113
19114 =item COPYRIGHT
19115
19116 =back
19117
19118 =head2 Symbol - manipulate Perl symbols and their names
19119
19120 =over 4
19121
19122 =item SYNOPSIS
19123
19124 =item DESCRIPTION
19125
19126 =back
19127
19128 =head2 Sys::Hostname - Try every conceivable way to get hostname
19129
19130 =over 4
19131
19132 =item SYNOPSIS
19133
19134 =item DESCRIPTION
19135
19136 =item AUTHOR
19137
19138 =back
19139
19140 =head2 Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl
19141 interface to the UNIX syslog(3) calls
19142
19143 =over 4
19144
19145 =item SYNOPSIS
19146
19147 =item DESCRIPTION
19148
19149 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
19150 setlogmask $mask_priority, setlogsock $sock_type [$stream_location] (added
19151 in 5.004_02), closelog
19152
19153 =item EXAMPLES
19154
19155 =item SEE ALSO
19156
19157 =item AUTHOR
19158
19159 =back
19160
19161 =head2 Syslog::Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog -
19162 Perl interface to the UNIX syslog(3) calls
19163
19164 =over 4
19165
19166 =item SYNOPSIS
19167
19168 =item DESCRIPTION
19169
19170 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
19171 setlogmask $mask_priority, setlogsock $sock_type [$stream_location] (added
19172 in 5.004_02), closelog
19173
19174 =item EXAMPLES
19175
19176 =item SEE ALSO
19177
19178 =item AUTHOR
19179
19180 =back
19181
19182 =head2 Term::ANSIColor - Color screen output using ANSI escape sequences
19183
19184 =over 4
19185
19186 =item SYNOPSIS
19187
19188 =item DESCRIPTION
19189
19190 =item DIAGNOSTICS
19191
19192 Bad escape sequence %s, Bareword "%s" not allowed while "strict subs" in
19193 use, Invalid attribute name %s, Name "%s" used only once: possible typo, No
19194 comma allowed after filehandle, No name for escape sequence %s
19195
19196 =item ENVIRONMENT
19197
19198 ANSI_COLORS_DISABLED
19199
19200 =item RESTRICTIONS
19201
19202 =item NOTES
19203
19204 =item SEE ALSO
19205
19206 =item AUTHORS
19207
19208 =item COPYRIGHT AND LICENSE
19209
19210 =back
19211
19212 =head2 Term::Cap - Perl termcap interface
19213
19214 =over 4
19215
19216 =item SYNOPSIS
19217
19218 =item DESCRIPTION
19219
19220 =over 4
19221
19222 =item METHODS
19223
19224 =back
19225
19226 =back
19227
19228 B<Tgetent>, OSPEED, TERM
19229
19230 B<Tpad>, B<$string>, B<$cnt>, B<$FH>
19231
19232 B<Tputs>, B<$cap>, B<$cnt>, B<$FH>
19233
19234 B<Tgoto>, B<$cap>, B<$col>, B<$row>, B<$FH>
19235
19236 B<Trequire>
19237
19238 =over 4
19239
19240 =item EXAMPLES
19241
19242 =item COPYRIGHT AND LICENSE
19243
19244 =item AUTHOR
19245
19246 =item SEE ALSO
19247
19248 =back
19249
19250 =head2 Term::Complete - Perl word completion module
19251
19252 =over 4
19253
19254 =item SYNOPSIS
19255
19256 =item DESCRIPTION
19257
19258 E<lt>tabE<gt>, ^D, ^U, E<lt>delE<gt>, E<lt>bsE<gt>
19259
19260 =item DIAGNOSTICS
19261
19262 =item BUGS
19263
19264 =item AUTHOR
19265
19266 =back
19267
19268 =head2 Term::ReadLine - Perl interface to various C<readline> packages.
19269 If no real package is found, substitutes stubs instead of basic functions.
19270
19271 =over 4
19272
19273 =item SYNOPSIS
19274
19275 =item DESCRIPTION
19276
19277 =item Minimal set of supported functions
19278
19279 C<ReadLine>, C<new>, C<readline>, C<addhistory>, C<IN>, C<OUT>, C<MinLine>,
19280 C<findConsole>, Attribs, C<Features>
19281
19282 =item Additional supported functions
19283
19284 C<tkRunning>, C<ornaments>, C<newTTY>
19285
19286 =item EXPORTS
19287
19288 =item ENVIRONMENT
19289
19290 =item CAVEATS
19291
19292 =back
19293
19294 =head2 Test - provides a simple framework for writing test scripts
19295
19296 =over 4
19297
19298 =item SYNOPSIS
19299
19300 =item DESCRIPTION
19301
19302 =item QUICK START GUIDE
19303
19304 =over 4
19305
19306 =item Functions
19307
19308 C<plan(...)>, C<tests =E<gt> I<number>>, C<todo =E<gt> [I<1,5,14>]>,
19309 C<onfail =E<gt> sub { ... }>, C<onfail =E<gt> \&some_sub>
19310
19311 =back
19312
19313 =back
19314
19315 B<_to_value>
19316
19317 C<ok(...)>
19318
19319 C<skip(I<skip_if_true>, I<args...>)>
19320
19321 =over 4
19322
19323 =item TEST TYPES
19324
19325 NORMAL TESTS, SKIPPED TESTS, TODO TESTS
19326
19327 =item ONFAIL
19328
19329 =item BUGS and CAVEATS
19330
19331 =item NOTE
19332
19333 =item SEE ALSO
19334
19335 =item AUTHOR
19336
19337 =back
19338
19339 =head2 Test::Builder - Backend for building test libraries
19340
19341 =over 4
19342
19343 =item SYNOPSIS
19344
19345 =item DESCRIPTION
19346
19347 =over 4
19348
19349 =item Construction
19350
19351 B<new>
19352
19353 =back
19354
19355 =back
19356
19357 =over 4
19358
19359 =item Setting up tests
19360
19361 B<exported_to>
19362
19363 =back
19364
19365 B<plan>
19366
19367 B<expected_tests>
19368
19369 B<no_plan>
19370
19371 B<has_plan>
19372
19373 B<skip_all>
19374
19375 =over 4
19376
19377 =item Running tests
19378
19379 B<ok>
19380
19381 =back
19382
19383 B<is_eq>, B<is_num>
19384
19385 B<isnt_eq>, B<isnt_num>
19386
19387 B<like>, B<unlike>
19388
19389 B<maybe_regex>
19390
19391 B<cmp_ok>
19392
19393 B<BAILOUT>
19394
19395 B<skip>
19396
19397 B<todo_skip>
19398
19399 B<skip_rest>
19400
19401 =over 4
19402
19403 =item Test style
19404
19405 B<level>
19406
19407 =back
19408
19409 B<use_numbers>
19410
19411 B<no_header>, B<no_ending>
19412
19413 =over 4
19414
19415 =item Output
19416
19417 B<diag>
19418
19419 =back
19420
19421 B<_print>
19422
19423 B<output>, B<failure_output>, B<todo_output>
19424
19425 =over 4
19426
19427 =item Test Status and Info
19428
19429 B<current_test>
19430
19431 =back
19432
19433 B<summary>
19434
19435 B<details>
19436
19437 B<todo>
19438
19439 B<caller>
19440
19441 B<_sanity_check>
19442
19443 B<_whoa>
19444
19445 B<_my_exit>
19446
19447 =over 4
19448
19449 =item THREADS
19450
19451 =item EXAMPLES
19452
19453 =item SEE ALSO
19454
19455 =item AUTHORS
19456
19457 =item COPYRIGHT
19458
19459 =back
19460
19461 =head2 Test::Harness - run perl standard test scripts with statistics
19462
19463 =over 4
19464
19465 =item SYNOPSIS
19466
19467 =item DESCRIPTION
19468
19469 =over 4
19470
19471 =item The test script output
19472
19473 B<'1..M'>, B<'ok', 'not ok'.  Ok?>, B<test numbers>, B<test names>,
19474 B<Skipping tests>, B<Todo tests>, B<Bail out!>, B<Comments>, B<Anything
19475 else>
19476
19477 =item Taint mode
19478
19479 =item Configuration variables.
19480
19481 B<$Test::Harness::verbose>, B<$Test::Harness::switches>
19482
19483 =item Failure
19484
19485 B<Failed Test>, B<Stat>, B<Wstat>, B<Total>, B<Fail>, B<Failed>, B<List of
19486 Failed>
19487
19488 =item Functions
19489
19490 B<runtests>
19491
19492 =back
19493
19494 =back
19495
19496 B<_all_ok>
19497
19498 B<_globdir>
19499
19500 B<_run_all_tests>
19501
19502 B<_mk_leader>
19503
19504 B<_leader_width>
19505
19506 =over 4
19507
19508 =item EXPORT
19509
19510 =item DIAGNOSTICS
19511
19512 C<All tests successful.\nFiles=%d,  Tests=%d, %s>, C<FAILED tests
19513 %s\n\tFailed %d/%d tests, %.2f%% okay.>, C<Test returned status %d (wstat
19514 %d)>, C<Failed 1 test, %.2f%% okay. %s>, C<Failed %d/%d tests, %.2f%% okay.
19515 %s>, C<FAILED--Further testing stopped: %s>
19516
19517 =item ENVIRONMENT
19518
19519 C<HARNESS_ACTIVE>, C<HARNESS_COLUMNS>, C<HARNESS_COMPILE_TEST>,
19520 C<HARNESS_FILELEAK_IN_DIR>, C<HARNESS_IGNORE_EXITCODE>, C<HARNESS_NOTTY>,
19521 C<HARNESS_OK_SLOW>, C<HARNESS_PERL_SWITCHES>, C<HARNESS_VERBOSE>
19522
19523 =item EXAMPLE
19524
19525 =item SEE ALSO
19526
19527 =item AUTHORS
19528
19529 =item LICENSE
19530
19531 =item TODO
19532
19533 =item BUGS
19534
19535 =back
19536
19537 =head2 Test::Harness::Assert - simple assert
19538
19539 =over 4
19540
19541 =item SYNOPSIS
19542
19543 =item DESCRIPTION
19544
19545 =over 4
19546
19547 =item Functions
19548
19549 B<assert>
19550
19551 =back
19552
19553 =back
19554
19555 =over 4
19556
19557 =item AUTHOR
19558
19559 =item SEE ALSO
19560
19561 =back
19562
19563 =head2 Test::Harness::Iterator - Internal Test::Harness Iterator
19564
19565 =over 4
19566
19567 =item SYNOPSIS
19568
19569 =item DESCRIPTION
19570
19571 =back
19572
19573 =head2 Test::Harness::Straps - detailed analysis of test results
19574
19575 =over 4
19576
19577 =item SYNOPSIS
19578
19579 =item DESCRIPTION
19580
19581 =item Construction
19582
19583 =over 4
19584
19585 =item C<new>
19586
19587 =back
19588
19589 =back
19590
19591 =over 4
19592
19593 =item C<_init>
19594
19595 =back
19596
19597 =over 4
19598
19599 =item Analysis
19600
19601 =over 4
19602
19603 =item C<analyze>
19604
19605 =back
19606
19607 =back
19608
19609 =over 4
19610
19611 =item C<analyze_fh>
19612
19613 =back
19614
19615 =over 4
19616
19617 =item C<analyze_file>
19618
19619 =back
19620
19621 =over 4
19622
19623 =item C<_switches>
19624
19625 =back
19626
19627 =over 4
19628
19629 =item C<_INC2PERL5LIB>
19630
19631 =back
19632
19633 =over 4
19634
19635 =item C<_filtered_INC>
19636
19637 =back
19638
19639 =over 4
19640
19641 =item C<_restore_PERL5LIB>
19642
19643 =back
19644
19645 =over 4
19646
19647 =item Parsing
19648
19649 =over 4
19650
19651 =item C<_is_comment>
19652
19653 =back
19654
19655 =back
19656
19657 =over 4
19658
19659 =item C<_is_header>
19660
19661 =back
19662
19663 =over 4
19664
19665 =item C<_is_test>
19666
19667 =back
19668
19669 =over 4
19670
19671 =item C<_is_bail_out>
19672
19673 =back
19674
19675 =over 4
19676
19677 =item C<_reset_file_state>
19678
19679 =back
19680
19681 =over 4
19682
19683 =item Results
19684
19685 =over 4
19686
19687 =item C<_detailize>
19688
19689 =back
19690
19691 =back
19692
19693 =over 4
19694
19695 =item EXAMPLES
19696
19697 =item AUTHOR
19698
19699 =item SEE ALSO
19700
19701 =back
19702
19703 =head2 Test::More - yet another framework for writing test scripts
19704
19705 =over 4
19706
19707 =item SYNOPSIS
19708
19709 =item DESCRIPTION
19710
19711 =over 4
19712
19713 =item I love it when a plan comes together
19714
19715 =back
19716
19717 =back
19718
19719 =over 4
19720
19721 =item Test names
19722
19723 =item I'm ok, you're not ok.
19724
19725 B<ok>
19726
19727 =back
19728
19729 B<is>, B<isnt>
19730
19731 B<like>
19732
19733 B<unlike>
19734
19735 B<cmp_ok>
19736
19737 B<can_ok>
19738
19739 B<isa_ok>
19740
19741 B<pass>, B<fail>
19742
19743 =over 4
19744
19745 =item Diagnostics
19746
19747 B<diag>
19748
19749 =back
19750
19751 =over 4
19752
19753 =item Module tests
19754
19755 B<use_ok>
19756
19757 =back
19758
19759 B<require_ok>
19760
19761 =over 4
19762
19763 =item Conditional tests
19764
19765 B<SKIP: BLOCK>
19766
19767 =back
19768
19769 B<TODO: BLOCK>, B<todo_skip>
19770
19771 When do I use SKIP vs. TODO?
19772
19773 =over 4
19774
19775 =item Comparison functions
19776
19777 B<is_deeply>
19778
19779 =back
19780
19781 B<eq_array>
19782
19783 B<eq_hash>
19784
19785 B<eq_set>
19786
19787 =over 4
19788
19789 =item Extending and Embedding Test::More
19790
19791 B<builder>
19792
19793 =back
19794
19795 =over 4
19796
19797 =item NOTES
19798
19799 =item BUGS and CAVEATS
19800
19801 Making your own ok(), The eq_* family has some caveats, Test::Harness
19802 upgrades
19803
19804 =item HISTORY
19805
19806 =item SEE ALSO
19807
19808 =item AUTHORS
19809
19810 =item COPYRIGHT
19811
19812 =back
19813
19814 =head2 Test::Simple - Basic utilities for writing tests.
19815
19816 =over 4
19817
19818 =item SYNOPSIS
19819
19820 =item DESCRIPTION
19821
19822 B<ok>
19823
19824 =back
19825
19826 =over 4
19827
19828 =item EXAMPLE
19829
19830 =item CAVEATS
19831
19832 =item NOTES
19833
19834 =item HISTORY
19835
19836 =item SEE ALSO
19837
19838 L<Test::More>, L<Test>, L<Test::Unit>, L<Test::Inline>, L<SelfTest>,
19839 L<Test::Harness>
19840
19841 =item AUTHORS
19842
19843 =item COPYRIGHT
19844
19845 =back
19846
19847 =head2 Test::Tutorial - A tutorial about writing really basic tests
19848
19849 =over 4
19850
19851 =item DESCRIPTION
19852
19853 =over 4
19854
19855 =item Nuts and bolts of testing.
19856
19857 =item Where to start?
19858
19859 =item Names
19860
19861 =item Test the manual
19862
19863 =item Sometimes the tests are wrong
19864
19865 =item Testing lots of values
19866
19867 =item Informative names
19868
19869 =item Skipping tests
19870
19871 =item Todo tests
19872
19873 =item Testing with taint mode.
19874
19875 =back
19876
19877 =item FOOTNOTES
19878
19879 =item AUTHORS
19880
19881 =item COPYRIGHT
19882
19883 =back
19884
19885 =head2 Text::Abbrev, abbrev - create an abbreviation table from a list
19886
19887 =over 4
19888
19889 =item SYNOPSIS
19890
19891 =item DESCRIPTION
19892
19893 =item EXAMPLE
19894
19895 =back
19896
19897 =head2 Text::Balanced - Extract delimited text sequences from strings.
19898
19899 =over 4
19900
19901 =item SYNOPSIS
19902
19903 =item DESCRIPTION
19904
19905 =over 4
19906
19907 =item General behaviour in list contexts
19908
19909 [0], [1], [2]
19910
19911 =item General behaviour in scalar and void contexts
19912
19913 =item A note about prefixes
19914
19915 =item C<extract_delimited>
19916
19917 =item C<extract_bracketed>
19918
19919 =item C<extract_variable>
19920
19921 [0], [1], [2]
19922
19923 =item C<extract_tagged>
19924
19925 C<reject =E<gt> $listref>, C<ignore =E<gt> $listref>, C<fail =E<gt> $str>,
19926 [0], [1], [2], [3], [4], [5]
19927
19928 =item C<gen_extract_tagged>
19929
19930 =item C<extract_quotelike>
19931
19932 [0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10]
19933
19934 =item C<extract_quotelike> and "here documents"
19935
19936 [0], [1], [2], [3], [4], [5], [6], [7..10]
19937
19938 =item C<extract_codeblock>
19939
19940 =item C<extract_multiple>
19941
19942 =item C<gen_delimited_pat>
19943
19944 =back
19945
19946 =item DIAGNOSTICS
19947
19948  C<Did not find a suitable bracket: "%s">,  C<Did not find prefix: /%s/>, 
19949 C<Did not find opening bracket after prefix: "%s">,  C<No quotelike
19950 operator found after prefix: "%s">,  C<Unmatched closing bracket: "%c">, 
19951 C<Unmatched opening bracket(s): "%s">, C<Unmatched embedded quote (%s)>,
19952 C<Did not find closing delimiter to match '%s'>,  C<Mismatched closing
19953 bracket: expected "%c" but found "%s">,  C<No block delimiter found after
19954 quotelike "%s">, C<Did not find leading dereferencer>, C<Bad identifier
19955 after dereferencer>, C<Did not find expected opening bracket at %s>,
19956 C<Improperly nested codeblock at %s>,  C<Missing second block for quotelike
19957 "%s">, C<No match found for opening bracket>, C<Did not find opening tag:
19958 /%s/>, C<Unable to construct closing tag to match: /%s/>, C<Found invalid
19959 nested tag: %s>, C<Found unbalanced nested tag: %s>, C<Did not find closing
19960 tag>
19961
19962 =item AUTHOR
19963
19964 =item BUGS AND IRRITATIONS
19965
19966 =item COPYRIGHT
19967
19968 =back
19969
19970 =head2 Text::ParseWords - parse text into an array of tokens or array of
19971 arrays
19972
19973 =over 4
19974
19975 =item SYNOPSIS
19976
19977 =item DESCRIPTION
19978
19979 =item EXAMPLES
19980
19981 =item AUTHORS
19982
19983 =back
19984
19985 =head2 Text::Soundex - Implementation of the Soundex Algorithm as Described
19986 by Knuth
19987
19988 =over 4
19989
19990 =item SYNOPSIS
19991
19992 =item DESCRIPTION
19993
19994 =item EXAMPLES
19995
19996 =item LIMITATIONS
19997
19998 =item AUTHOR
19999
20000 =back
20001
20002 =head2 Text::Tabs -- expand and unexpand tabs per the unix expand(1) and
20003 unexpand(1)
20004
20005 =over 4
20006
20007 =item SYNOPSIS
20008
20009 =item DESCRIPTION
20010
20011 =item BUGS
20012
20013 =item AUTHOR
20014
20015 =back
20016
20017 =head2 Text::Wrap - line wrapping to form simple paragraphs
20018
20019 =over 4
20020
20021 =item SYNOPSIS 
20022
20023 =item DESCRIPTION
20024
20025 =item OVERRIDES
20026
20027 =item EXAMPLE
20028
20029 =item AUTHOR
20030
20031 =back
20032
20033 =head2 Thread - manipulate threads in Perl (for old code only)
20034
20035 =over 4
20036
20037 =item CAVEAT
20038
20039 =item SYNOPSIS
20040
20041 =item DESCRIPTION
20042
20043 =item FUNCTIONS
20044
20045 $thread = Thread->new(\&start_sub), $thread = Thread->new(\&start_sub,
20046 LIST), lock VARIABLE, async BLOCK;, Thread->self, cond_wait VARIABLE,
20047 cond_signal VARIABLE, cond_broadcast VARIABLE, yield
20048
20049 =item METHODS
20050
20051 join, eval, detach, equal, tid, flags, done
20052
20053 =item LIMITATIONS
20054
20055 =item SEE ALSO
20056
20057 =back
20058
20059 =head2 Thread::Queue - thread-safe queues
20060
20061 =over 4
20062
20063 =item SYNOPSIS
20064
20065 =item DESCRIPTION
20066
20067 =item FUNCTIONS AND METHODS
20068
20069 new, enqueue LIST, dequeue, dequeue_nb, pending
20070
20071 =item SEE ALSO
20072
20073 =back
20074
20075 =head2 Thread::Semaphore - thread-safe semaphores
20076
20077 =over 4
20078
20079 =item SYNOPSIS
20080
20081 =item DESCRIPTION
20082
20083 =item FUNCTIONS AND METHODS
20084
20085 new, new NUMBER, down, down NUMBER, up, up NUMBER
20086
20087 =back
20088
20089 =head2 Thread::Signal - Start a thread which runs signal handlers reliably
20090 (for old code)
20091
20092 =over 4
20093
20094 =item CAVEAT
20095
20096 =item SYNOPSIS
20097
20098 =item DESCRIPTION
20099
20100 =item BUGS
20101
20102 =back
20103
20104 =head2 Thread::Specific - thread-specific keys
20105
20106 =over 4
20107
20108 =item SYNOPSIS
20109
20110 =item DESCRIPTION
20111
20112 =back
20113
20114 =head2 Tie::Array - base class for tied arrays
20115
20116 =over 4
20117
20118 =item SYNOPSIS
20119
20120 =item DESCRIPTION
20121
20122 TIEARRAY classname, LIST, STORE this, index, value, FETCH this, index,
20123 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
20124 key, DELETE this, key, CLEAR this, DESTROY this, PUSH this, LIST, POP this,
20125 SHIFT this, UNSHIFT this, LIST, SPLICE this, offset, length, LIST
20126
20127 =item CAVEATS
20128
20129 =item AUTHOR
20130
20131 =back
20132
20133 =head2 Tie::File - Access the lines of a disk file via a Perl array
20134
20135 =over 4
20136
20137 =item SYNOPSIS
20138
20139 =item DESCRIPTION
20140
20141 =over 4
20142
20143 =item C<recsep>
20144
20145 =item C<autochomp>
20146
20147 =item C<mode>
20148
20149 =item C<memory>
20150
20151 =item C<dw_size>
20152
20153 =item Option Format
20154
20155 =back
20156
20157 =item Public Methods
20158
20159 =over 4
20160
20161 =item C<flock>
20162
20163 =item C<autochomp>
20164
20165 =item C<defer>, C<flush>, C<discard>, and C<autodefer>
20166
20167 =item C<offset>
20168
20169 =back
20170
20171 =item Tying to an already-opened filehandle
20172
20173 =item Deferred Writing
20174
20175 =over 4
20176
20177 =item Autodeferring
20178
20179 =back
20180
20181 =item CONCURRENT ACCESS TO FILES
20182
20183 =item CAVEATS
20184
20185 =item SUBCLASSING
20186
20187 =item WHAT ABOUT C<DB_File>?
20188
20189 =item AUTHOR
20190
20191 =item LICENSE
20192
20193 =item WARRANTY
20194
20195 =item THANKS
20196
20197 =item TODO
20198
20199 =back
20200
20201 =head2 Tie::Handle, Tie::StdHandle  - base class definitions for tied
20202 handles
20203
20204 =over 4
20205
20206 =item SYNOPSIS
20207
20208 =item DESCRIPTION
20209
20210 TIEHANDLE classname, LIST, WRITE this, scalar, length, offset, PRINT this,
20211 LIST, PRINTF this, format, LIST, READ this, scalar, length, offset,
20212 READLINE this, GETC this, CLOSE this, OPEN this, filename, BINMODE this,
20213 EOF this, TELL this, SEEK this, offset, whence, DESTROY this
20214
20215 =item MORE INFORMATION
20216
20217 =item COMPATIBILITY
20218
20219 =back
20220
20221 =head2 Tie::Hash, Tie::StdHash, Tie::ExtraHash - base class definitions for
20222 tied hashes
20223
20224 =over 4
20225
20226 =item SYNOPSIS
20227
20228 =item DESCRIPTION
20229
20230 TIEHASH classname, LIST, STORE this, key, value, FETCH this, key, FIRSTKEY
20231 this, NEXTKEY this, lastkey, EXISTS this, key, DELETE this, key, CLEAR this
20232
20233 =item Inheriting from B<Tie::StdHash>
20234
20235 =item Inheriting from B<Tie::ExtraHash>
20236
20237 =item C<UNTIE> and C<DESTROY>
20238
20239 =item MORE INFORMATION
20240
20241 =back
20242
20243 =head2 Tie::Memoize - add data to hash when needed
20244
20245 =over 4
20246
20247 =item SYNOPSIS
20248
20249 =item DESCRIPTION
20250
20251 =item Inheriting from B<Tie::Memoize>
20252
20253 =item EXAMPLE
20254
20255 =item BUGS
20256
20257 =item AUTHOR
20258
20259 =back
20260
20261 =head2 Tie::RefHash - use references as hash keys
20262
20263 =over 4
20264
20265 =item SYNOPSIS
20266
20267 =item DESCRIPTION
20268
20269 =item EXAMPLE
20270
20271 =item AUTHOR
20272
20273 =item VERSION
20274
20275 =item SEE ALSO
20276
20277 =back
20278
20279 =head2 Tie::Scalar, Tie::StdScalar - base class definitions for tied
20280 scalars
20281
20282 =over 4
20283
20284 =item SYNOPSIS
20285
20286 =item DESCRIPTION
20287
20288 TIESCALAR classname, LIST, FETCH this, STORE this, value, DESTROY this
20289
20290 =item MORE INFORMATION
20291
20292 =back
20293
20294 =head2 Tie::SubstrHash - Fixed-table-size, fixed-key-length hashing
20295
20296 =over 4
20297
20298 =item SYNOPSIS
20299
20300 =item DESCRIPTION
20301
20302 =item CAVEATS
20303
20304 =back
20305
20306 =head2 Time::HiRes - High resolution alarm, sleep, gettimeofday, interval
20307 timers
20308
20309 =over 4
20310
20311 =item SYNOPSIS
20312
20313 =item DESCRIPTION
20314
20315 gettimeofday (), usleep ( $useconds ), ualarm ( $useconds [,
20316 $interval_useconds ] ), tv_interval, time (), sleep ( $floating_seconds ),
20317 alarm ( $floating_seconds [, $interval_floating_seconds ] ), setitimer (
20318 $which, $floating_seconds [, $interval_floating_seconds ] ), getitimer (
20319 $which )
20320
20321 =item EXAMPLES
20322
20323 =item C API
20324
20325 =item DIAGNOSTICS
20326
20327 =over 4
20328
20329 =item negative time not invented yet
20330
20331 =item internal error: useconds < 0 (unsigned ... signed ...)
20332
20333 =back
20334
20335 =item CAVEATS
20336
20337 =item AUTHORS
20338
20339 =item COPYRIGHT AND LICENSE
20340
20341 =back
20342
20343 =head2 Time::Local - efficiently compute time from local and GMT time
20344
20345 =over 4
20346
20347 =item SYNOPSIS
20348
20349 =item DESCRIPTION
20350
20351 =item IMPLEMENTATION
20352
20353 =item BUGS
20354
20355 =item SUPPORT
20356
20357 =item AUTHOR
20358
20359 =back
20360
20361 =head2 Time::gmtime - by-name interface to Perl's built-in gmtime()
20362 function
20363
20364 =over 4
20365
20366 =item SYNOPSIS
20367
20368 =item DESCRIPTION
20369
20370 =item NOTE
20371
20372 =item AUTHOR
20373
20374 =back
20375
20376 =head2 Time::localtime - by-name interface to Perl's built-in localtime()
20377 function
20378
20379 =over 4
20380
20381 =item SYNOPSIS
20382
20383 =item DESCRIPTION
20384
20385 =item NOTE
20386
20387 =item AUTHOR
20388
20389 =back
20390
20391 =head2 Time::tm - internal object used by Time::gmtime and Time::localtime
20392
20393 =over 4
20394
20395 =item SYNOPSIS
20396
20397 =item DESCRIPTION
20398
20399 =item AUTHOR
20400
20401 =back
20402
20403 =head2 UNIVERSAL - base class for ALL classes (blessed references)
20404
20405 =over 4
20406
20407 =item SYNOPSIS
20408
20409 =item DESCRIPTION
20410
20411 C<< $obj->isa( TYPE ) >>, C<< CLASS->isa( TYPE ) >>, C<isa( VAL, TYPE )>,
20412 C<TYPE>, C<$obj>, C<CLASS>, C<VAL>, C<< $obj->can( METHOD ) >>, C<<
20413 CLASS->can( METHOD ) >>, C<can( VAL, METHOD )>, C<VERSION ( [ REQUIRE ] )>
20414
20415 =item EXPORTS
20416
20417 =back
20418
20419 =head2 Unicode::Collate - Unicode Collation Algorithm
20420
20421 =over 4
20422
20423 =item SYNOPSIS
20424
20425 =item DESCRIPTION
20426
20427 =over 4
20428
20429 =item Constructor and Tailoring
20430
20431 UCA_Version, alternate, backwards, entry, ignoreName, ignoreChar, level,
20432 normalization, overrideCJK, overrideHangul, preprocess, rearrange, table,
20433 undefName, undefChar, katakana_before_hiragana, upper_before_lower
20434
20435 =item Methods for Collation
20436
20437 C<@sorted = $Collator-E<gt>sort(@not_sorted)>, C<$result =
20438 $Collator-E<gt>cmp($a, $b)>, C<$result = $Collator-E<gt>eq($a, $b)>,
20439 C<$result = $Collator-E<gt>ne($a, $b)>, C<$result = $Collator-E<gt>lt($a,
20440 $b)>, C<$result = $Collator-E<gt>le($a, $b)>, C<$result =
20441 $Collator-E<gt>gt($a, $b)>, C<$result = $Collator-E<gt>ge($a, $b)>,
20442 C<$sortKey = $Collator-E<gt>getSortKey($string)>, C<$sortKeyForm =
20443 $Collator-E<gt>viewSortKey($string)>
20444
20445 =item Methods for Searching
20446
20447 C<$position = $Collator-E<gt>index($string, $substring[, $position])>,
20448 C<($position, $length) = $Collator-E<gt>index($string, $substring[,
20449 $position])>, C<$match_ref = $Collator-E<gt>match($string, $substring)>,
20450 C<($match)   = $Collator-E<gt>match($string, $substring)>, C<@match =
20451 $Collator-E<gt>gmatch($string, $substring)>, C<$count =
20452 $Collator-E<gt>subst($string, $substring, $replacement)>, C<$count =
20453 $Collator-E<gt>gsubst($string, $substring, $replacement)>
20454
20455 =item Other Methods
20456
20457 C<%old_tailoring = $Collator-E<gt>change(%new_tailoring)>, UCA_Version,
20458 Base_Unicode_Version
20459
20460 =item EXPORT
20461
20462 =item CAVEAT
20463
20464 =item Conformance Test
20465
20466 =back
20467
20468 =item AUTHOR
20469
20470 =item SEE ALSO
20471
20472 http://www.unicode.org/reports/tr10/,
20473 http://www.unicode.org/reports/tr10/allkeys.txt,
20474 http://www.unicode.org/reports/tr10/CollationTest.html
20475 http://www.unicode.org/reports/tr10/CollationTest.zip,
20476 http://www.unicode.org/reports/tr15/, L<Unicode::Normalize>
20477
20478 =back
20479
20480 =head2 Unicode::Normalize - Unicode Normalization Forms
20481
20482 =over 4
20483
20484 =item SYNOPSIS
20485
20486 =item DESCRIPTION
20487
20488 =over 4
20489
20490 =item Normalization Forms
20491
20492 C<$NFD_string = NFD($string)>, C<$NFC_string = NFC($string)>,
20493 C<$NFKD_string = NFKD($string)>, C<$NFKC_string = NFKC($string)>,
20494 C<$normalized_string = normalize($form_name, $string)>
20495
20496 =item Decomposition and Composition
20497
20498 C<$decomposed_string = decompose($string)>, C<$decomposed_string =
20499 decompose($string, $useCompatMapping)>, C<$reordered_string  =
20500 reorder($string)>, C<$composed_string   = compose($string)>
20501
20502 =item Quick Check
20503
20504 C<$result = checkNFD($string)>, C<$result = checkNFC($string)>, C<$result =
20505 checkNFKD($string)>, C<$result = checkNFKC($string)>, C<$result =
20506 check($form_name, $string)>
20507
20508 =item Character Data
20509
20510 C<$canonical_decomposed = getCanon($codepoint)>,
20511 C<$compatibility_decomposed = getCompat($codepoint)>,
20512 C<$codepoint_composite = getComposite($codepoint_here, $codepoint_next)>,
20513 C<$combining_class = getCombinClass($codepoint)>, C<$is_exclusion =
20514 isExclusion($codepoint)>, C<$is_singleton = isSingleton($codepoint)>,
20515 C<$is_non_starter_decomposition = isNonStDecomp($codepoint)>,
20516 C<$may_be_composed_with_prev_char = isComp2nd($codepoint)>
20517
20518 =item EXPORT
20519
20520 =back
20521
20522 =item AUTHOR
20523
20524 =item SEE ALSO
20525
20526 http://www.unicode.org/unicode/reports/tr15/,
20527 http://www.unicode.org/Public/UNIDATA/DerivedNormalizationProps.txt
20528
20529 =back
20530
20531 =head2 Unicode::UCD - Unicode character database
20532
20533 =over 4
20534
20535 =item SYNOPSIS
20536
20537 =item DESCRIPTION
20538
20539 =back
20540
20541 =over 4
20542
20543 =item charinfo
20544
20545 =back
20546
20547 =over 4
20548
20549 =item charblock
20550
20551 =back
20552
20553 =over 4
20554
20555 =item charscript
20556
20557 =back
20558
20559 =over 4
20560
20561 =item charblocks
20562
20563 =back
20564
20565 =over 4
20566
20567 =item charscripts
20568
20569 =back
20570
20571 =over 4
20572
20573 =item Blocks versus Scripts
20574
20575 =item Matching Scripts and Blocks
20576
20577 =item Code Point Arguments
20578
20579 =item charinrange
20580
20581 =back
20582
20583 =over 4
20584
20585 =item compexcl
20586
20587 =back
20588
20589 =over 4
20590
20591 =item casefold
20592
20593 =back
20594
20595 =over 4
20596
20597 =item casespec
20598
20599 =back
20600
20601 =over 4
20602
20603 =item Unicode::UCD::UnicodeVersion
20604
20605 =back
20606
20607 =over 4
20608
20609 =item Implementation Note
20610
20611 =back
20612
20613 =over 4
20614
20615 =item BUGS
20616
20617 =item AUTHOR
20618
20619 =back
20620
20621 =head2 User::grent - by-name interface to Perl's built-in getgr*()
20622 functions
20623
20624 =over 4
20625
20626 =item SYNOPSIS
20627
20628 =item DESCRIPTION
20629
20630 =item NOTE
20631
20632 =item AUTHOR
20633
20634 =back
20635
20636 =head2 User::pwent - by-name interface to Perl's built-in getpw*()
20637 functions
20638
20639 =over 4
20640
20641 =item SYNOPSIS
20642
20643 =item DESCRIPTION
20644
20645 =over 4
20646
20647 =item System Specifics
20648
20649 =back
20650
20651 =item NOTE
20652
20653 =item AUTHOR
20654
20655 =item HISTORY
20656
20657 March 18th, 2000
20658
20659 =back
20660
20661 =head2 Win32 - Interfaces to some Win32 API Functions
20662
20663 =over 4
20664
20665 =item DESCRIPTION
20666
20667 =over 4
20668
20669 =item Alphabetical Listing of Win32 Functions
20670
20671 Win32::AbortSystemShutdown(MACHINE), Win32::BuildNumber(),
20672 Win32::CopyFile(FROM, TO, OVERWRITE), Win32::DomainName(),
20673 Win32::ExpandEnvironmentStrings(STRING), Win32::FormatMessage(ERRORCODE),
20674 Win32::FsType(), Win32::FreeLibrary(HANDLE), Win32::GetArchName(),
20675 Win32::GetChipName(), Win32::GetCwd(), Win32::GetFolderPath(FOLDER [,
20676 CREATE]), Win32::GetFullPathName(FILENAME), Win32::GetLastError(),
20677 Win32::GetLongPathName(PATHNAME), Win32::GetNextAvailDrive(),
20678 Win32::GetOSVersion(), Win32::GetOSName(),
20679 Win32::GetShortPathName(PATHNAME), Win32::GetProcAddress(INSTANCE,
20680 PROCNAME), Win32::GetTickCount(), Win32::InitiateSystemShutdown,
20681 Win32::IsWinNT(), Win32::IsWin95(), Win32::LoadLibrary(LIBNAME),
20682 Win32::LoginName(), Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID,
20683 SIDTYPE), Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE),
20684 Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]]), Win32::NodeName(),
20685 Win32::RegisterServer(LIBRARYNAME), Win32::SetChildShowWindow(SHOWWINDOW),
20686 Win32::SetCwd(NEWDIRECTORY), Win32::SetLastError(ERROR),
20687 Win32::Sleep(TIME), Win32::Spawn(COMMAND, ARGS, PID),
20688 Win32::UnregisterServer(LIBRARYNAME)
20689
20690 =back
20691
20692 =back
20693
20694 =head2 XSLoader - Dynamically load C libraries into Perl code
20695
20696 =over 4
20697
20698 =item SYNOPSIS
20699
20700 =item DESCRIPTION
20701
20702 =over 4
20703
20704 =item Migration from C<DynaLoader>
20705
20706 =item Backward compatible boilerplate
20707
20708 =back
20709
20710 =item Order of initialization: early load()
20711
20712 =over 4
20713
20714 =item The most hairy case
20715
20716 =back
20717
20718 =item LIMITATIONS
20719
20720 =item AUTHOR
20721
20722 =back
20723
20724 =head1 AUXILIARY DOCUMENTATION
20725
20726 Here should be listed all the extra programs' documentation, but they
20727 don't all have manual pages yet:
20728
20729 =over 4
20730
20731 =item a2p
20732
20733 =item c2ph
20734
20735 =item dprofpp
20736
20737 =item h2ph
20738
20739 =item h2xs
20740
20741 =item perlbug
20742
20743 =item perldoc
20744
20745 =item pl2pm
20746
20747 =item pod2html
20748
20749 =item pod2man
20750
20751 =item s2p
20752
20753 =item splain
20754
20755 =item xsubpp
20756
20757 =back
20758
20759 =head1 AUTHOR
20760
20761 Larry Wall <F<larry@wall.org>>, with the help of oodles
20762 of other folks.
20763