Regen toc.
[p5sagit/p5-mst-13.2.git] / pod / perltoc.pod
1
2 =begin dochackers
3 # !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
4 # This file is autogenerated by buildtoc from all the other pods.
5 # Edit those files and run buildtoc --build-toc to effect changes.
6 =end
7
8 =head1 NAME
9
10 perltoc - perl documentation table of contents
11
12 =head1 DESCRIPTION
13
14 This page provides a brief table of contents for the rest of the Perl
15 documentation set.  It is meant to be scanned quickly or grepped
16 through to locate the proper section you're looking for.
17
18 =head1 BASIC DOCUMENTATION
19
20 =head2 perl - Practical Extraction and Report Language
21
22 =over 4
23
24 =item SYNOPSIS
25
26 =over 4
27
28 =item Overview
29
30 =item Tutorials
31
32 =item Reference Manual
33
34 =item Internals and C Language Interface
35
36 =item Miscellaneous
37
38 =item Language-Specific
39
40 =item Platform-Specific
41
42 =back
43
44 =item DESCRIPTION
45
46 =item AVAILABILITY
47
48 =item ENVIRONMENT
49
50 =item AUTHOR
51
52 =item FILES
53
54 =item SEE ALSO
55
56 =item DIAGNOSTICS
57
58 =item BUGS
59
60 =item NOTES
61
62 =back
63
64 =head2 perlintro -- a brief introduction and overview of Perl
65
66 =over 4
67
68 =item DESCRIPTION
69
70 =over 4
71
72 =item What is Perl?
73
74 =item Running Perl programs
75
76 =item Basic syntax overview
77
78 =item Perl variable types
79
80 Scalars, Arrays, Hashes
81
82 =item Variable scoping
83
84 =item Conditional and looping constructs
85
86 if, while, for, foreach
87
88 =item Builtin operators and functions
89
90 Arithmetic, Numeric comparison, String comparison, Boolean logic,
91 Miscellaneous
92
93 =item Files and I/O
94
95 =item Regular expressions
96
97 Simple matching, Simple substitution, More complex regular expressions,
98 Parentheses for capturing, Other regexp features
99
100 =item Writing subroutines
101
102 =item OO Perl
103
104 =item Using Perl modules
105
106 =back
107
108 =item AUTHOR
109
110 =back
111
112 =head2 perlreftut - Mark's very short tutorial about references
113
114 =over 4
115
116 =item DESCRIPTION
117
118 =item Who Needs Complicated Data Structures?
119
120 =item The Solution
121
122 =item Syntax
123
124 =over 4
125
126 =item Making References
127
128 =item Using References
129
130 =item An Example
131
132 =item Arrow Rule
133
134 =back
135
136 =item Solution
137
138 =item The Rest
139
140 =item Summary
141
142 =item Credits
143
144 =over 4
145
146 =item Distribution Conditions
147
148 =back
149
150 =back
151
152 =head2 perldsc - Perl Data Structures Cookbook
153
154 =over 4
155
156 =item DESCRIPTION
157
158 arrays of arrays, hashes of arrays, arrays of hashes, hashes of hashes,
159 more elaborate constructs
160
161 =item REFERENCES
162
163 =item COMMON MISTAKES
164
165 =item CAVEAT ON PRECEDENCE
166
167 =item WHY YOU SHOULD ALWAYS C<use strict>
168
169 =item DEBUGGING
170
171 =item CODE EXAMPLES
172
173 =item ARRAYS OF ARRAYS
174
175 =over 4
176
177 =item Declaration of an ARRAY OF ARRAYS
178
179 =item Generation of an ARRAY OF ARRAYS
180
181 =item Access and Printing of an ARRAY OF ARRAYS
182
183 =back
184
185 =item HASHES OF ARRAYS
186
187 =over 4
188
189 =item Declaration of a HASH OF ARRAYS
190
191 =item Generation of a HASH OF ARRAYS
192
193 =item Access and Printing of a HASH OF ARRAYS
194
195 =back
196
197 =item ARRAYS OF HASHES
198
199 =over 4
200
201 =item Declaration of an ARRAY OF HASHES
202
203 =item Generation of an ARRAY OF HASHES
204
205 =item Access and Printing of an ARRAY OF HASHES
206
207 =back
208
209 =item HASHES OF HASHES
210
211 =over 4
212
213 =item Declaration of a HASH OF HASHES
214
215 =item Generation of a HASH OF HASHES
216
217 =item Access and Printing of a HASH OF HASHES
218
219 =back
220
221 =item MORE ELABORATE RECORDS
222
223 =over 4
224
225 =item Declaration of MORE ELABORATE RECORDS
226
227 =item Declaration of a HASH OF COMPLEX RECORDS
228
229 =item Generation of a HASH OF COMPLEX RECORDS
230
231 =back
232
233 =item Database Ties
234
235 =item SEE ALSO
236
237 =item AUTHOR
238
239 =back
240
241 =head2 perllol - Manipulating Arrays of Arrays in Perl
242
243 =over 4
244
245 =item DESCRIPTION
246
247 =over 4
248
249 =item Declaration and Access of Arrays of Arrays
250
251 =item Growing Your Own
252
253 =item Access and Printing
254
255 =item Slices
256
257 =back
258
259 =item SEE ALSO
260
261 =item AUTHOR
262
263 =back
264
265 =head2 perlrequick - Perl regular expressions quick start
266
267 =over 4
268
269 =item DESCRIPTION
270
271 =item The Guide
272
273 =over 4
274
275 =item Simple word matching
276
277 =item Using character classes
278
279 =item Matching this or that
280
281 =item Grouping things and hierarchical matching
282
283 =item Extracting matches
284
285 =item Matching repetitions
286
287 =item More matching
288
289 =item Search and replace
290
291 =item The split operator
292
293 =back
294
295 =item BUGS
296
297 =item SEE ALSO
298
299 =item AUTHOR AND COPYRIGHT
300
301 =over 4
302
303 =item Acknowledgments
304
305 =back
306
307 =back
308
309 =head2 perlretut - Perl regular expressions tutorial
310
311 =over 4
312
313 =item DESCRIPTION
314
315 =item Part 1: The basics
316
317 =over 4
318
319 =item Simple word matching
320
321 =item Using character classes
322
323 =item Matching this or that
324
325 =item Grouping things and hierarchical matching
326
327 =item Extracting matches
328
329 =item Matching repetitions
330
331 =item Building a regexp
332
333 =item Using regular expressions in Perl
334
335 =back
336
337 =item Part 2: Power tools
338
339 =over 4
340
341 =item More on characters, strings, and character classes
342
343 =item Compiling and saving regular expressions
344
345 =item Embedding comments and modifiers in a regular expression
346
347 =item Non-capturing groupings
348
349 =item Looking ahead and looking behind
350
351 =item Using independent subexpressions to prevent backtracking
352
353 =item Conditional expressions
354
355 =item A bit of magic: executing Perl code in a regular expression
356
357 =item Pragmas and debugging
358
359 =back
360
361 =item BUGS
362
363 =item SEE ALSO
364
365 =item AUTHOR AND COPYRIGHT
366
367 =over 4
368
369 =item Acknowledgments
370
371 =back
372
373 =back
374
375 =head2 perlboot - Beginner's Object-Oriented Tutorial
376
377 =over 4
378
379 =item DESCRIPTION
380
381 =over 4
382
383 =item If we could talk to the animals...
384
385 =item Introducing the method invocation arrow
386
387 =item Invoking a barnyard
388
389 =item The extra parameter of method invocation
390
391 =item Calling a second method to simplify things
392
393 =item Inheriting the windpipes
394
395 =item A few notes about @ISA
396
397 =item Overriding the methods
398
399 =item Starting the search from a different place
400
401 =item The SUPER way of doing things
402
403 =item Where we're at so far...
404
405 =item A horse is a horse, of course of course -- or is it?
406
407 =item Invoking an instance method
408
409 =item Accessing the instance data
410
411 =item How to build a horse
412
413 =item Inheriting the constructor
414
415 =item Making a method work with either classes or instances
416
417 =item Adding parameters to a method
418
419 =item More interesting instances
420
421 =item A horse of a different color
422
423 =item Summary
424
425 =back
426
427 =item SEE ALSO
428
429 =item COPYRIGHT
430
431 =back
432
433 =head2 perltoot - Tom's object-oriented tutorial for perl
434
435 =over 4
436
437 =item DESCRIPTION
438
439 =item Creating a Class
440
441 =over 4
442
443 =item Object Representation
444
445 =item Class Interface
446
447 =item Constructors and Instance Methods
448
449 =item Planning for the Future: Better Constructors
450
451 =item Destructors
452
453 =item Other Object Methods
454
455 =back
456
457 =item Class Data
458
459 =over 4
460
461 =item Accessing Class Data
462
463 =item Debugging Methods
464
465 =item Class Destructors
466
467 =item Documenting the Interface
468
469 =back
470
471 =item Aggregation
472
473 =item Inheritance
474
475 =over 4
476
477 =item Overridden Methods
478
479 =item Multiple Inheritance
480
481 =item UNIVERSAL: The Root of All Objects
482
483 =back
484
485 =item Alternate Object Representations
486
487 =over 4
488
489 =item Arrays as Objects
490
491 =item Closures as Objects
492
493 =back
494
495 =item AUTOLOAD: Proxy Methods
496
497 =over 4
498
499 =item Autoloaded Data Methods
500
501 =item Inherited Autoloaded Data Methods
502
503 =back
504
505 =item Metaclassical Tools
506
507 =over 4
508
509 =item Class::Struct
510
511 =item Data Members as Variables
512
513 =back
514
515 =item NOTES
516
517 =over 4
518
519 =item Object Terminology
520
521 =back
522
523 =item SEE ALSO
524
525 =item AUTHOR AND COPYRIGHT
526
527 =item COPYRIGHT
528
529 =over 4
530
531 =item Acknowledgments
532
533 =back
534
535 =back
536
537 =head2 perltooc - Tom's OO Tutorial for Class Data in Perl
538
539 =over 4
540
541 =item DESCRIPTION
542
543 =item Class Data in a Can
544
545 =item Class Data as Package Variables
546
547 =over 4
548
549 =item Putting All Your Eggs in One Basket
550
551 =item Inheritance Concerns
552
553 =item The Eponymous Meta-Object
554
555 =item Indirect References to Class Data
556
557 =item Monadic Classes
558
559 =item Translucent Attributes
560
561 =back
562
563 =item Class Data as Lexical Variables
564
565 =over 4
566
567 =item Privacy and Responsibility 
568
569 =item File-Scoped Lexicals
570
571 =item More Inheritance Concerns
572
573 =item Locking the Door and Throwing Away the Key
574
575 =item Translucency Revisited
576
577 =back
578
579 =item NOTES
580
581 =item SEE ALSO
582
583 =item AUTHOR AND COPYRIGHT
584
585 =item ACKNOWLEDGEMENTS
586
587 =item HISTORY
588
589 =back
590
591 =head2 perlbot - Bag'o Object Tricks (the BOT)
592
593 =over 4
594
595 =item DESCRIPTION
596
597 =item OO SCALING TIPS
598
599 =item INSTANCE VARIABLES
600
601 =item SCALAR INSTANCE VARIABLES
602
603 =item INSTANCE VARIABLE INHERITANCE
604
605 =item OBJECT RELATIONSHIPS
606
607 =item OVERRIDING SUPERCLASS METHODS
608
609 =item USING RELATIONSHIP WITH SDBM
610
611 =item THINKING OF CODE REUSE
612
613 =item CLASS CONTEXT AND THE OBJECT
614
615 =item INHERITING A CONSTRUCTOR
616
617 =item DELEGATION
618
619 =item SEE ALSO
620
621 =back
622
623 =head2 perlstyle - Perl style guide
624
625 =over 4
626
627 =item DESCRIPTION
628
629 =back
630
631 =head2 perlcheat - Perl 5 Cheat Sheet
632
633 =over 4
634
635 =item DESCRIPTION
636
637 =over 4
638
639 =item The sheet
640
641 =back
642
643 =item ACKNOWLEDGEMENTS
644
645 =item AUTHOR
646
647 =item SEE ALSO
648
649 =back
650
651 =head2 perltrap - Perl traps for the unwary
652
653 =over 4
654
655 =item DESCRIPTION
656
657 =over 4
658
659 =item Awk Traps
660
661 =item C/C++ Traps
662
663 =item Sed Traps
664
665 =item Shell Traps
666
667 =item Perl Traps
668
669 =item Perl4 to Perl5 Traps
670
671 Discontinuance, Deprecation, and BugFix traps, Parsing Traps, Numerical
672 Traps, General data type traps, Context Traps - scalar, list contexts,
673 Precedence Traps, General Regular Expression Traps using s///, etc,
674 Subroutine, Signal, Sorting Traps, OS Traps, DBM Traps, Unclassified Traps
675
676 =item Discontinuance, Deprecation, and BugFix traps
677
678 Discontinuance, Deprecation, BugFix, Discontinuance, Discontinuance,
679 Discontinuance, BugFix, Discontinuance, Discontinuance, BugFix,
680 Discontinuance, Deprecation, Discontinuance, Discontinuance
681
682 =item Parsing Traps
683
684 Parsing, Parsing, Parsing, Parsing, Parsing
685
686 =item Numerical Traps
687
688 Numerical, Numerical, Numerical, Bitwise string ops
689
690 =item General data type traps
691
692 (Arrays), (Arrays), (Hashes), (Globs), (Globs), (Scalar String),
693 (Constants), (Scalars), (Variable Suicide)
694
695 =item Context Traps - scalar, list contexts
696
697 (list context), (scalar context), (scalar context), (list, builtin)
698
699 =item Precedence Traps
700
701 Precedence, Precedence, Precedence, Precedence, Precedence, Precedence,
702 Precedence
703
704 =item General Regular Expression Traps using s///, etc.
705
706 Regular Expression, Regular Expression, Regular Expression, Regular
707 Expression, Regular Expression, Regular Expression, Regular Expression,
708 Regular Expression, Regular Expression
709
710 =item Subroutine, Signal, Sorting Traps
711
712 (Signals), (Sort Subroutine), warn() won't let you specify a filehandle
713
714 =item OS Traps
715
716 (SysV), (SysV)
717
718 =item Interpolation Traps
719
720 Interpolation, Interpolation, Interpolation, Interpolation, Interpolation,
721 Interpolation, Interpolation, Interpolation, Interpolation
722
723 =item DBM Traps
724
725 DBM, DBM
726
727 =item Unclassified Traps
728
729 C<require>/C<do> trap using returned value, C<split> on empty string with
730 LIMIT specified
731
732 =back
733
734 =back
735
736 =head2 perldebtut - Perl debugging tutorial
737
738 =over 4
739
740 =item DESCRIPTION
741
742 =item use strict
743
744 =item Looking at data and -w and v
745
746 =item help
747
748 =item Stepping through code
749
750 =item Placeholder for a, w, t, T
751
752 =item REGULAR EXPRESSIONS
753
754 =item OUTPUT TIPS
755
756 =item CGI
757
758 =item GUIs
759
760 =item SUMMARY
761
762 =item SEE ALSO
763
764 =item AUTHOR
765
766 =item CONTRIBUTORS
767
768 =back
769
770 =head2 perlfaq - frequently asked questions about Perl ($Date: 2003/01/31
771 17:37:17 $)
772
773 =over 4
774
775 =item DESCRIPTION
776
777 =over 4
778
779 =item Where to get the perlfaq
780
781 =item How to contribute to the perlfaq
782
783 =item What will happen if you mail your Perl programming problems to the
784 authors
785
786 =back
787
788 =item Credits
789
790 =item Author and Copyright Information
791
792 =over 4
793
794 =item Bundled Distributions
795
796 =item Disclaimer
797
798 =back
799
800 =item Table of Contents
801
802 perlfaq  - this document, perlfaq1 - General Questions About Perl, perlfaq2
803 - Obtaining and Learning about Perl, perlfaq3 - Programming Tools, perlfaq4
804 - Data Manipulation, perlfaq5 - Files and Formats, perlfaq6 - Regular
805 Expressions, perlfaq7 - General Perl Language Issues, perlfaq8 - System
806 Interaction, perlfaq9 - Networking
807
808 =item The Questions
809
810 =over 4
811
812 =item L<perlfaq1>: General Questions About Perl
813
814 =item L<perlfaq2>: Obtaining and Learning about Perl
815
816 =item L<perlfaq3>: Programming Tools
817
818 =item L<perlfaq4>: Data Manipulation
819
820 =item L<perlfaq5>: Files and Formats
821
822 =item L<perlfaq6>: Regular Expressions
823
824 =item L<perlfaq7>: General Perl Language Issues
825
826 =item L<perlfaq8>: System Interaction
827
828 =item L<perlfaq9>: Networking
829
830 =back
831
832 =back
833
834 =head2 perlfaq1 - General Questions About Perl ($Revision: 1.12 $, $Date:
835 2003/07/09 15:47:28 $)
836
837 =over 4
838
839 =item DESCRIPTION
840
841 =over 4
842
843 =item What is Perl?
844
845 =item Who supports Perl?  Who develops it?  Why is it free?
846
847 =item Which version of Perl should I use?
848
849 =item What are perl4 and perl5?
850
851 =item What is Ponie?
852
853 =item What is perl6?
854
855 =item How stable is Perl?
856
857 =item Is Perl difficult to learn?
858
859 =item How does Perl compare with other languages like Java, Python, REXX,
860 Scheme, or Tcl?
861
862 =item Can I do [task] in Perl?
863
864 =item When shouldn't I program in Perl?
865
866 =item What's the difference between "perl" and "Perl"?
867
868 =item Is it a Perl program or a Perl script?
869
870 =item What is a JAPH?
871
872 =item Where can I get a list of Larry Wall witticisms?
873
874 =item How can I convince my sysadmin/supervisor/employees to use version
875 5/5.6.1/Perl instead of some other language?
876
877 =back
878
879 =item AUTHOR AND COPYRIGHT
880
881 =back
882
883 =head2 perlfaq2 - Obtaining and Learning about Perl ($Revision: 1.20 $,
884 $Date: 2003/01/26 17:50:56 $)
885
886 =over 4
887
888 =item DESCRIPTION
889
890 =over 4
891
892 =item What machines support Perl?  Where do I get it?
893
894 =item How can I get a binary version of Perl?
895
896 =item I don't have a C compiler on my system.  How can I compile perl?
897
898 =item I copied the Perl binary from one machine to another, but scripts
899 don't work.
900
901 =item I grabbed the sources and tried to compile but gdbm/dynamic
902 loading/malloc/linking/... failed.  How do I make it work?
903
904 =item What modules and extensions are available for Perl?  What is CPAN? 
905 What does CPAN/src/... mean?
906
907 =item Is there an ISO or ANSI certified version of Perl?
908
909 =item Where can I get information on Perl?
910
911 =item What are the Perl newsgroups on Usenet?  Where do I post questions?
912
913 =item Where should I post source code?
914
915 =item Perl Books
916
917 References, Tutorials, Task-Oriented, Special Topics
918
919 =item Perl in Magazines
920
921 =item Perl on the Net: FTP and WWW Access
922
923 =item What mailing lists are there for Perl?
924
925 =item Archives of comp.lang.perl.misc
926
927 =item Where can I buy a commercial version of Perl?
928
929 =item Where do I send bug reports?
930
931 =item What is perl.com? Perl Mongers? pm.org? perl.org? cpan.org?
932
933 =back
934
935 =item AUTHOR AND COPYRIGHT
936
937 =back
938
939 =head2 perlfaq3 - Programming Tools ($Revision: 1.33 $, $Date: 2003/01/31
940 17:34:56 $)
941
942 =over 4
943
944 =item DESCRIPTION
945
946 =over 4
947
948 =item How do I do (anything)?
949
950 =item How can I use Perl interactively?
951
952 =item Is there a Perl shell?
953
954 =item How do I find which modules are installed on my system?
955
956 =item How do I debug my Perl programs?
957
958 =item How do I profile my Perl programs?
959
960 =item How do I cross-reference my Perl programs?
961
962 =item Is there a pretty-printer (formatter) for Perl?
963
964 =item Is there a ctags for Perl?
965
966 =item Is there an IDE or Windows Perl Editor?
967
968 Komodo, The Object System, Open Perl IDE, PerlBuilder, visiPerl+, OptiPerl,
969 GNU Emacs, MicroEMACS, XEmacs, Jed, Elvis, Vile, Vim, Codewright,
970 MultiEdit, SlickEdit, Bash, Ksh, Tcsh, Zsh, BBEdit and BBEdit Lite, Alpha
971
972 =item Where can I get Perl macros for vi?
973
974 =item Where can I get perl-mode for emacs?
975
976 =item How can I use curses with Perl?
977
978 =item How can I use X or Tk with Perl?
979
980 =item How can I generate simple menus without using CGI or Tk?
981
982 =item How can I make my Perl program run faster?
983
984 =item How can I make my Perl program take less memory?
985
986 Don't slurp!, Use map and grep selectively, Avoid unnecessary quotes and
987 stringification, Pass by reference, Tie large variables to disk
988
989 =item Is it safe to return a reference to local or lexical data?
990
991 =item How can I free an array or hash so my program shrinks?
992
993 =item How can I make my CGI script more efficient?
994
995 =item How can I hide the source for my Perl program?
996
997 =item How can I compile my Perl program into byte code or C?
998
999 =item How can I compile Perl into Java?
1000
1001 =item How can I get C<#!perl> to work on [MS-DOS,NT,...]?
1002
1003 =item Can I write useful Perl programs on the command line?
1004
1005 =item Why don't Perl one-liners work on my DOS/Mac/VMS system?
1006
1007 =item Where can I learn about CGI or Web programming in Perl?
1008
1009 =item Where can I learn about object-oriented Perl programming?
1010
1011 =item Where can I learn about linking C with Perl? [h2xs, xsubpp]
1012
1013 =item I've read perlembed, perlguts, etc., but I can't embed perl in
1014 my C program; what am I doing wrong?
1015
1016 =item When I tried to run my script, I got this message. What does it mean?
1017
1018 =item What's MakeMaker?
1019
1020 =back
1021
1022 =item AUTHOR AND COPYRIGHT
1023
1024 =back
1025
1026 =head2 perlfaq4 - Data Manipulation ($Revision: 1.44 $, $Date: 2003/07/28
1027 17:35:21 $)
1028
1029 =over 4
1030
1031 =item DESCRIPTION
1032
1033 =item Data: Numbers
1034
1035 =over 4
1036
1037 =item Why am I getting long decimals (eg, 19.9499999999999) instead of the
1038 numbers I should be getting (eg, 19.95)?
1039
1040 =item Why isn't my octal data interpreted correctly?
1041
1042 =item Does Perl have a round() function?  What about ceil() and floor()? 
1043 Trig functions?
1044
1045 =item How do I convert between numeric representations?
1046
1047 How do I convert hexadecimal into decimal, How do I convert from decimal to
1048 hexadecimal, How do I convert from octal to decimal, How do I convert from
1049 decimal to octal, How do I convert from binary to decimal, How do I convert
1050 from decimal to binary
1051
1052 =item Why doesn't & work the way I want it to?
1053
1054 =item How do I multiply matrices?
1055
1056 =item How do I perform an operation on a series of integers?
1057
1058 =item How can I output Roman numerals?
1059
1060 =item Why aren't my random numbers random?
1061
1062 =item How do I get a random number between X and Y?
1063
1064 =back
1065
1066 =item Data: Dates
1067
1068 =over 4
1069
1070 =item How do I find the day or week of the year?
1071
1072 =item How do I find the current century or millennium?
1073
1074 =item How can I compare two dates and find the difference?
1075
1076 =item How can I take a string and turn it into epoch seconds?
1077
1078 =item How can I find the Julian Day?
1079
1080 =item How do I find yesterday's date?
1081
1082 =item Does Perl have a Year 2000 problem?  Is Perl Y2K compliant?
1083
1084 =back
1085
1086 =item Data: Strings
1087
1088 =over 4
1089
1090 =item How do I validate input?
1091
1092 =item How do I unescape a string?
1093
1094 =item How do I remove consecutive pairs of characters?
1095
1096 =item How do I expand function calls in a string?
1097
1098 =item How do I find matching/nesting anything?
1099
1100 =item How do I reverse a string?
1101
1102 =item How do I expand tabs in a string?
1103
1104 =item How do I reformat a paragraph?
1105
1106 =item How can I access or change N characters of a string?
1107
1108 =item How do I change the Nth occurrence of something?
1109
1110 =item How can I count the number of occurrences of a substring within a
1111 string?
1112
1113 =item How do I capitalize all the words on one line?
1114
1115 =item How can I split a [character] delimited string except when inside
1116 [character]?
1117
1118 =item How do I strip blank space from the beginning/end of a string?
1119
1120 =item How do I pad a string with blanks or pad a number with zeroes?
1121
1122 =item How do I extract selected columns from a string?
1123
1124 =item How do I find the soundex value of a string?
1125
1126 =item How can I expand variables in text strings?
1127
1128 =item What's wrong with always quoting "$vars"?
1129
1130 =item Why don't my E<lt>E<lt>HERE documents work?
1131
1132 There must be no space after the E<lt>E<lt> part, There (probably) should
1133 be a semicolon at the end, You can't (easily) have any space in front of
1134 the tag
1135
1136 =back
1137
1138 =item Data: Arrays
1139
1140 =over 4
1141
1142 =item What is the difference between a list and an array?
1143
1144 =item What is the difference between $array[1] and @array[1]?
1145
1146 =item How can I remove duplicate elements from a list or array?
1147
1148 a), b), c), d), e)
1149
1150 =item How can I tell whether a certain element is contained in a list or
1151 array?
1152
1153 =item How do I compute the difference of two arrays?  How do I compute the
1154 intersection of two arrays?
1155
1156 =item How do I test whether two arrays or hashes are equal?
1157
1158 =item How do I find the first array element for which a condition is true?
1159
1160 =item How do I handle linked lists?
1161
1162 =item How do I handle circular lists?
1163
1164 =item How do I shuffle an array randomly?
1165
1166 =item How do I process/modify each element of an array?
1167
1168 =item How do I select a random element from an array?
1169
1170 =item How do I permute N elements of a list?
1171
1172 =item How do I sort an array by (anything)?
1173
1174 =item How do I manipulate arrays of bits?
1175
1176 =item Why does defined() return true on empty arrays and hashes?
1177
1178 =back
1179
1180 =item Data: Hashes (Associative Arrays)
1181
1182 =over 4
1183
1184 =item How do I process an entire hash?
1185
1186 =item What happens if I add or remove keys from a hash while iterating over
1187 it?
1188
1189 =item How do I look up a hash element by value?
1190
1191 =item How can I know how many entries are in a hash?
1192
1193 =item How do I sort a hash (optionally by value instead of key)?
1194
1195 =item How can I always keep my hash sorted?
1196
1197 =item What's the difference between "delete" and "undef" with hashes?
1198
1199 =item Why don't my tied hashes make the defined/exists distinction?
1200
1201 =item How do I reset an each() operation part-way through?
1202
1203 =item How can I get the unique keys from two hashes?
1204
1205 =item How can I store a multidimensional array in a DBM file?
1206
1207 =item How can I make my hash remember the order I put elements into it?
1208
1209 =item Why does passing a subroutine an undefined element in a hash create
1210 it?
1211
1212 =item How can I make the Perl equivalent of a C structure/C++ class/hash or
1213 array of hashes or arrays?
1214
1215 =item How can I use a reference as a hash key?
1216
1217 =back
1218
1219 =item Data: Misc
1220
1221 =over 4
1222
1223 =item How do I handle binary data correctly?
1224
1225 =item How do I determine whether a scalar is a number/whole/integer/float?
1226
1227 =item How do I keep persistent data across program calls?
1228
1229 =item How do I print out or copy a recursive data structure?
1230
1231 =item How do I define methods for every class/object?
1232
1233 =item How do I verify a credit card checksum?
1234
1235 =item How do I pack arrays of doubles or floats for XS code?
1236
1237 =back
1238
1239 =item AUTHOR AND COPYRIGHT
1240
1241 =back
1242
1243 =head2 perlfaq5 - Files and Formats ($Revision: 1.28 $, $Date: 2003/01/26
1244 17:45:46 $)
1245
1246 =over 4
1247
1248 =item DESCRIPTION
1249
1250 =over 4
1251
1252 =item How do I flush/unbuffer an output filehandle?  Why must I do this?
1253
1254 =item How do I change one line in a file/delete a line in a file/insert a
1255 line in the middle of a file/append to the beginning of a file?
1256
1257 =item How do I count the number of lines in a file?
1258
1259 =item How can I use Perl's C<-i> option from within a program?
1260
1261 =item How do I make a temporary file name?
1262
1263 =item How can I manipulate fixed-record-length files?
1264
1265 =item How can I make a filehandle local to a subroutine?  How do I pass
1266 filehandles between subroutines?  How do I make an array of filehandles?
1267
1268 =item How can I use a filehandle indirectly?
1269
1270 =item How can I set up a footer format to be used with write()?
1271
1272 =item How can I write() into a string?
1273
1274 =item How can I output my numbers with commas added?
1275
1276 =item How can I translate tildes (~) in a filename?
1277
1278 =item How come when I open a file read-write it wipes it out?
1279
1280 =item Why do I sometimes get an "Argument list too long" when I use
1281 E<lt>*E<gt>?
1282
1283 =item Is there a leak/bug in glob()?
1284
1285 =item How can I open a file with a leading ">" or trailing blanks?
1286
1287 =item How can I reliably rename a file?
1288
1289 =item How can I lock a file?
1290
1291 =item Why can't I just open(FH, "E<gt>file.lock")?
1292
1293 =item I still don't get locking.  I just want to increment the number in
1294 the file.  How can I do this?
1295
1296 =item All I want to do is append a small amount of text to the end of a
1297 file.  Do I still have to use locking?
1298
1299 =item How do I randomly update a binary file?
1300
1301 =item How do I get a file's timestamp in perl?
1302
1303 =item How do I set a file's timestamp in perl?
1304
1305 =item How do I print to more than one file at once?
1306
1307 =item How can I read in an entire file all at once?
1308
1309 =item How can I read in a file by paragraphs?
1310
1311 =item How can I read a single character from a file?  From the keyboard?
1312
1313 =item How can I tell whether there's a character waiting on a filehandle?
1314
1315 =item How do I do a C<tail -f> in perl?
1316
1317 =item How do I dup() a filehandle in Perl?
1318
1319 =item How do I close a file descriptor by number?
1320
1321 =item Why can't I use "C:\temp\foo" in DOS paths?  Why doesn't
1322 `C:\temp\foo.exe` work?
1323
1324 =item Why doesn't glob("*.*") get all the files?
1325
1326 =item Why does Perl let me delete read-only files?  Why does C<-i> clobber
1327 protected files?  Isn't this a bug in Perl?
1328
1329 =item How do I select a random line from a file?
1330
1331 =item Why do I get weird spaces when I print an array of lines?
1332
1333 =back
1334
1335 =item AUTHOR AND COPYRIGHT
1336
1337 =back
1338
1339 =head2 perlfaq6 - Regular Expressions ($Revision: 1.20 $, $Date: 2003/01/03
1340 20:05:28 $)
1341
1342 =over 4
1343
1344 =item DESCRIPTION
1345
1346 =over 4
1347
1348 =item How can I hope to use regular expressions without creating illegible
1349 and unmaintainable code?
1350
1351 Comments Outside the Regex, Comments Inside the Regex, Different Delimiters
1352
1353 =item I'm having trouble matching over more than one line.  What's wrong?
1354
1355 =item How can I pull out lines between two patterns that are themselves on
1356 different lines?
1357
1358 =item I put a regular expression into $/ but it didn't work. What's wrong?
1359
1360 =item How do I substitute case insensitively on the LHS while preserving
1361 case on the RHS?
1362
1363 =item How can I make C<\w> match national character sets?
1364
1365 =item How can I match a locale-smart version of C</[a-zA-Z]/>?
1366
1367 =item How can I quote a variable to use in a regex?
1368
1369 =item What is C</o> really for?
1370
1371 =item How do I use a regular expression to strip C style comments from a
1372 file?
1373
1374 =item Can I use Perl regular expressions to match balanced text?
1375
1376 =item What does it mean that regexes are greedy?  How can I get around it?
1377
1378 =item How do I process each word on each line?
1379
1380 =item How can I print out a word-frequency or line-frequency summary?
1381
1382 =item How can I do approximate matching?
1383
1384 =item How do I efficiently match many regular expressions at once?
1385
1386 =item Why don't word-boundary searches with C<\b> work for me?
1387
1388 =item Why does using $&, $`, or $' slow my program down?
1389
1390 =item What good is C<\G> in a regular expression?
1391
1392 =item Are Perl regexes DFAs or NFAs?  Are they POSIX compliant?
1393
1394 =item What's wrong with using grep or map in a void context?
1395
1396 =item How can I match strings with multibyte characters?
1397
1398 =item How do I match a pattern that is supplied by the user?
1399
1400 =back
1401
1402 =item AUTHOR AND COPYRIGHT
1403
1404 =back
1405
1406 =head2 perlfaq7 - General Perl Language Issues ($Revision: 1.15 $, $Date:
1407 2003/07/24 02:17:21 $)
1408
1409 =over 4
1410
1411 =item DESCRIPTION
1412
1413 =over 4
1414
1415 =item Can I get a BNF/yacc/RE for the Perl language?
1416
1417 =item What are all these $@%&* punctuation signs, and how do I know when to
1418 use them?
1419
1420 =item Do I always/never have to quote my strings or use semicolons and
1421 commas?
1422
1423 =item How do I skip some return values?
1424
1425 =item How do I temporarily block warnings?
1426
1427 =item What's an extension?
1428
1429 =item Why do Perl operators have different precedence than C operators?
1430
1431 =item How do I declare/create a structure?
1432
1433 =item How do I create a module?
1434
1435 =item How do I create a class?
1436
1437 =item How can I tell if a variable is tainted?
1438
1439 =item What's a closure?
1440
1441 =item What is variable suicide and how can I prevent it?
1442
1443 =item How can I pass/return a {Function, FileHandle, Array, Hash, Method,
1444 Regex}?
1445
1446 Passing Variables and Functions, Passing Filehandles, Passing Regexes,
1447 Passing Methods
1448
1449 =item How do I create a static variable?
1450
1451 =item What's the difference between dynamic and lexical (static) scoping? 
1452 Between local() and my()?
1453
1454 =item How can I access a dynamic variable while a similarly named lexical
1455 is in scope?
1456
1457 =item What's the difference between deep and shallow binding?
1458
1459 =item Why doesn't "my($foo) = E<lt>FILEE<gt>;" work right?
1460
1461 =item How do I redefine a builtin function, operator, or method?
1462
1463 =item What's the difference between calling a function as &foo and foo()?
1464
1465 =item How do I create a switch or case statement?
1466
1467 =item How can I catch accesses to undefined variables, functions, or
1468 methods?
1469
1470 =item Why can't a method included in this same file be found?
1471
1472 =item How can I find out my current package?
1473
1474 =item How can I comment out a large block of perl code?
1475
1476 =item How do I clear a package?
1477
1478 =item How can I use a variable as a variable name?
1479
1480 =item What does "bad interpreter" mean?
1481
1482 =back
1483
1484 =item AUTHOR AND COPYRIGHT
1485
1486 =back
1487
1488 =head2 perlfaq8 - System Interaction ($Revision: 1.17 $, $Date: 2003/01/26
1489 17:44:04 $)
1490
1491 =over 4
1492
1493 =item DESCRIPTION
1494
1495 =over 4
1496
1497 =item How do I find out which operating system I'm running under?
1498
1499 =item How come exec() doesn't return?
1500
1501 =item How do I do fancy stuff with the keyboard/screen/mouse?
1502
1503 Keyboard, Screen, Mouse
1504
1505 =item How do I print something out in color?
1506
1507 =item How do I read just one key without waiting for a return key?
1508
1509 =item How do I check whether input is ready on the keyboard?
1510
1511 =item How do I clear the screen?
1512
1513 =item How do I get the screen size?
1514
1515 =item How do I ask the user for a password?
1516
1517 =item How do I read and write the serial port?
1518
1519 lockfiles, open mode, end of line, flushing output, non-blocking input
1520
1521 =item How do I decode encrypted password files?
1522
1523 =item How do I start a process in the background?
1524
1525 STDIN, STDOUT, and STDERR are shared, Signals, Zombies
1526
1527 =item How do I trap control characters/signals?
1528
1529 =item How do I modify the shadow password file on a Unix system?
1530
1531 =item How do I set the time and date?
1532
1533 =item How can I sleep() or alarm() for under a second?
1534
1535 =item How can I measure time under a second?
1536
1537 =item How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
1538
1539 =item Why doesn't my sockets program work under System V (Solaris)?  What
1540 does the error message "Protocol not supported" mean?
1541
1542 =item How can I call my system's unique C functions from Perl?
1543
1544 =item Where do I get the include files to do ioctl() or syscall()?
1545
1546 =item Why do setuid perl scripts complain about kernel problems?
1547
1548 =item How can I open a pipe both to and from a command?
1549
1550 =item Why can't I get the output of a command with system()?
1551
1552 =item How can I capture STDERR from an external command?
1553
1554 =item Why doesn't open() return an error when a pipe open fails?
1555
1556 =item What's wrong with using backticks in a void context?
1557
1558 =item How can I call backticks without shell processing?
1559
1560 =item Why can't my script read from STDIN after I gave it EOF (^D on Unix,
1561 ^Z on MS-DOS)?
1562
1563 =item How can I convert my shell script to perl?
1564
1565 =item Can I use perl to run a telnet or ftp session?
1566
1567 =item How can I write expect in Perl?
1568
1569 =item Is there a way to hide perl's command line from programs such as
1570 "ps"?
1571
1572 =item I {changed directory, modified my environment} in a perl script.  How
1573 come the change disappeared when I exited the script?  How do I get my
1574 changes to be visible?
1575
1576 Unix
1577
1578 =item How do I close a process's filehandle without waiting for it to
1579 complete?
1580
1581 =item How do I fork a daemon process?
1582
1583 =item How do I find out if I'm running interactively or not?
1584
1585 =item How do I timeout a slow event?
1586
1587 =item How do I set CPU limits?
1588
1589 =item How do I avoid zombies on a Unix system?
1590
1591 =item How do I use an SQL database?
1592
1593 =item How do I make a system() exit on control-C?
1594
1595 =item How do I open a file without blocking?
1596
1597 =item How do I install a module from CPAN?
1598
1599 =item What's the difference between require and use?
1600
1601 =item How do I keep my own module/library directory?
1602
1603 =item How do I add the directory my program lives in to the module/library
1604 search path?
1605
1606 =item How do I add a directory to my include path at runtime?
1607
1608 =item What is socket.ph and where do I get it?
1609
1610 =back
1611
1612 =item AUTHOR AND COPYRIGHT
1613
1614 =back
1615
1616 =head2 perlfaq9 - Networking ($Revision: 1.15 $, $Date: 2003/01/31 17:36:57
1617 $)
1618
1619 =over 4
1620
1621 =item DESCRIPTION
1622
1623 =over 4
1624
1625 =item What is the correct form of response from a CGI script?
1626
1627 =item My CGI script runs from the command line but not the browser.  (500
1628 Server Error)
1629
1630 =item How can I get better error messages from a CGI program?
1631
1632 =item How do I remove HTML from a string?
1633
1634 =item How do I extract URLs?
1635
1636 =item How do I download a file from the user's machine?  How do I open a
1637 file on another machine?
1638
1639 =item How do I make a pop-up menu in HTML?
1640
1641 =item How do I fetch an HTML file?
1642
1643 =item How do I automate an HTML form submission?
1644
1645 =item How do I decode or create those %-encodings on the web?
1646
1647 =item How do I redirect to another page?
1648
1649 =item How do I put a password on my web pages?
1650
1651 =item How do I edit my .htpasswd and .htgroup files with Perl?
1652
1653 =item How do I make sure users can't enter values into a form that cause my
1654 CGI script to do bad things?
1655
1656 =item How do I parse a mail header?
1657
1658 =item How do I decode a CGI form?
1659
1660 =item How do I check a valid mail address?
1661
1662 =item How do I decode a MIME/BASE64 string?
1663
1664 =item How do I return the user's mail address?
1665
1666 =item How do I send mail?
1667
1668 =item How do I use MIME to make an attachment to a mail message?
1669
1670 =item How do I read mail?
1671
1672 =item How do I find out my hostname/domainname/IP address?
1673
1674 =item How do I fetch a news article or the active newsgroups?
1675
1676 =item How do I fetch/put an FTP file?
1677
1678 =item How can I do RPC in Perl?
1679
1680 =back
1681
1682 =item AUTHOR AND COPYRIGHT
1683
1684 =back
1685
1686 =head2 perlsyn - Perl syntax
1687
1688 =over 4
1689
1690 =item DESCRIPTION
1691
1692 =over 4
1693
1694 =item Declarations
1695
1696 =item Comments
1697
1698 =item Simple Statements
1699
1700 =item Compound Statements
1701
1702 =item Loop Control
1703
1704 =item For Loops
1705
1706 =item Foreach Loops
1707
1708 =item Basic BLOCKs and Switch Statements
1709
1710 =item Goto
1711
1712 =item PODs: Embedded Documentation
1713
1714 =item Plain Old Comments (Not!)
1715
1716 =back
1717
1718 =back
1719
1720 =head2 perldata - Perl data types
1721
1722 =over 4
1723
1724 =item DESCRIPTION
1725
1726 =over 4
1727
1728 =item Variable names
1729
1730 =item Context
1731
1732 =item Scalar values
1733
1734 =item Scalar value constructors
1735
1736 =item List value constructors
1737
1738 =item Subscripts
1739
1740 =item Slices
1741
1742 =item Typeglobs and Filehandles
1743
1744 =back
1745
1746 =item SEE ALSO
1747
1748 =back
1749
1750 =head2 perlop - Perl operators and precedence
1751
1752 =over 4
1753
1754 =item SYNOPSIS
1755
1756 =item DESCRIPTION
1757
1758 =over 4
1759
1760 =item Terms and List Operators (Leftward)
1761
1762 =item The Arrow Operator
1763
1764 =item Auto-increment and Auto-decrement
1765
1766 =item Exponentiation
1767
1768 =item Symbolic Unary Operators
1769
1770 =item Binding Operators
1771
1772 =item Multiplicative Operators
1773
1774 =item Additive Operators
1775
1776 =item Shift Operators
1777
1778 =item Named Unary Operators
1779
1780 =item Relational Operators
1781
1782 =item Equality Operators
1783
1784 =item Bitwise And
1785
1786 =item Bitwise Or and Exclusive Or
1787
1788 =item C-style Logical And
1789
1790 =item C-style Logical Or
1791
1792 =item C-style Logical Defined-Or
1793
1794 =item Range Operators
1795
1796 =item Conditional Operator
1797
1798 =item Assignment Operators
1799
1800 =item Comma Operator
1801
1802 =item List Operators (Rightward)
1803
1804 =item Logical Not
1805
1806 =item Logical And
1807
1808 =item Logical or, Defined or, and Exclusive Or
1809
1810 =item C Operators Missing From Perl
1811
1812 unary &, unary *, (TYPE)
1813
1814 =item Quote and Quote-like Operators
1815
1816 =item Regexp Quote-Like Operators
1817
1818 ?PATTERN?, m/PATTERN/cgimosx, /PATTERN/cgimosx, q/STRING/, C<'STRING'>,
1819 qq/STRING/, "STRING", qr/STRING/imosx, qx/STRING/, `STRING`, qw/STRING/,
1820 s/PATTERN/REPLACEMENT/egimosx, tr/SEARCHLIST/REPLACEMENTLIST/cds,
1821 y/SEARCHLIST/REPLACEMENTLIST/cds, <<EOF
1822
1823 =item Gory details of parsing quoted constructs
1824
1825 Finding the end, Removal of backslashes before delimiters, Interpolation,
1826 C<<<'EOF'>, C<m''>, C<s'''>, C<tr///>, C<y///>, C<''>, C<q//>, C<"">,
1827 C<``>, C<qq//>, C<qx//>, C<< <file*glob> >>, C<?RE?>, C</RE/>, C<m/RE/>,
1828 C<s/RE/foo/>,, Interpolation of regular expressions, Optimization of
1829 regular expressions
1830
1831 =item I/O Operators
1832
1833 =item Constant Folding
1834
1835 =item Bitwise String Operators
1836
1837 =item Integer Arithmetic
1838
1839 =item Floating-point Arithmetic
1840
1841 =item Bigger Numbers
1842
1843 =back
1844
1845 =back
1846
1847 =head2 perlsub - Perl subroutines
1848
1849 =over 4
1850
1851 =item SYNOPSIS
1852
1853 =item DESCRIPTION
1854
1855 =over 4
1856
1857 =item Private Variables via my()
1858
1859 =item Persistent Private Variables
1860
1861 =item Temporary Values via local()
1862
1863 =item Lvalue subroutines
1864
1865 Lvalue subroutines are EXPERIMENTAL
1866
1867 =item Passing Symbol Table Entries (typeglobs)
1868
1869 =item When to Still Use local()
1870
1871 =item Pass by Reference
1872
1873 =item Prototypes
1874
1875 =item Constant Functions
1876
1877 =item Overriding Built-in Functions
1878
1879 =item Autoloading
1880
1881 =item Subroutine Attributes
1882
1883 =back
1884
1885 =item SEE ALSO
1886
1887 =back
1888
1889 =head2 perlfunc - Perl builtin functions
1890
1891 =over 4
1892
1893 =item DESCRIPTION
1894
1895 =over 4
1896
1897 =item Perl Functions by Category
1898
1899 Functions for SCALARs or strings, Regular expressions and pattern matching,
1900 Numeric functions, Functions for real @ARRAYs, Functions for list data,
1901 Functions for real %HASHes, Input and output functions, Functions for fixed
1902 length data or records, Functions for filehandles, files, or directories,
1903 Keywords related to the control flow of your perl program, Keywords related
1904 to scoping, Miscellaneous functions, Functions for processes and process
1905 groups, Keywords related to perl modules, Keywords related to classes and
1906 object-orientedness, Low-level socket functions, System V interprocess
1907 communication functions, Fetching user and group info, Fetching network
1908 info, Time-related functions, Functions new in perl5, Functions obsoleted
1909 in perl5
1910
1911 =item Portability
1912
1913 =item Alphabetical Listing of Perl Functions
1914
1915 -I<X> FILEHANDLE, -I<X> EXPR, -I<X>, abs VALUE, abs, accept
1916 NEWSOCKET,GENERICSOCKET, alarm SECONDS, alarm, atan2 Y,X, bind SOCKET,NAME,
1917 binmode FILEHANDLE, LAYER, binmode FILEHANDLE, bless REF,CLASSNAME, bless
1918 REF, caller EXPR, caller, chdir EXPR, chmod LIST, chomp VARIABLE, chomp(
1919 LIST ), chomp, chop VARIABLE, chop( LIST ), chop, chown LIST, chr NUMBER,
1920 chr, chroot FILENAME, chroot, close FILEHANDLE, close, closedir DIRHANDLE,
1921 connect SOCKET,NAME, continue BLOCK, cos EXPR, cos, crypt PLAINTEXT,SALT,
1922 dbmclose HASH, dbmopen HASH,DBNAME,MASK, defined EXPR, defined, delete
1923 EXPR, die LIST, do BLOCK, do SUBROUTINE(LIST), do EXPR, dump LABEL, dump,
1924 each HASH, eof FILEHANDLE, eof (), eof, eval EXPR, eval BLOCK, exec LIST,
1925 exec PROGRAM LIST, exists EXPR, exit EXPR, exp EXPR, exp, fcntl
1926 FILEHANDLE,FUNCTION,SCALAR, fileno FILEHANDLE, flock FILEHANDLE,OPERATION,
1927 fork, format, formline PICTURE,LIST, getc FILEHANDLE, getc, getlogin,
1928 getpeername SOCKET, getpgrp PID, getppid, getpriority WHICH,WHO, getpwnam
1929 NAME, getgrnam NAME, gethostbyname NAME, getnetbyname NAME, getprotobyname
1930 NAME, getpwuid UID, getgrgid GID, getservbyname NAME,PROTO, gethostbyaddr
1931 ADDR,ADDRTYPE, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
1932 getservbyport PORT,PROTO, getpwent, getgrent, gethostent, getnetent,
1933 getprotoent, getservent, setpwent, setgrent, sethostent STAYOPEN, setnetent
1934 STAYOPEN, setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent,
1935 endhostent, endnetent, endprotoent, endservent, getsockname SOCKET,
1936 getsockopt SOCKET,LEVEL,OPTNAME, glob EXPR, glob, gmtime EXPR, goto LABEL,
1937 goto EXPR, goto &NAME, grep BLOCK LIST, grep EXPR,LIST, hex EXPR, hex,
1938 import, index STR,SUBSTR,POSITION, index STR,SUBSTR, int EXPR, int, ioctl
1939 FILEHANDLE,FUNCTION,SCALAR, join EXPR,LIST, keys HASH, kill SIGNAL, LIST,
1940 last LABEL, last, lc EXPR, lc, lcfirst EXPR, lcfirst, length EXPR, length,
1941 link OLDFILE,NEWFILE, listen SOCKET,QUEUESIZE, local EXPR, localtime EXPR,
1942 lock THING, log EXPR, log, lstat EXPR, lstat, m//, map BLOCK LIST, map
1943 EXPR,LIST, mkdir FILENAME,MASK, mkdir FILENAME, msgctl ID,CMD,ARG, msgget
1944 KEY,FLAGS, msgrcv ID,VAR,SIZE,TYPE,FLAGS, msgsnd ID,MSG,FLAGS, my EXPR, my
1945 TYPE EXPR, my EXPR : ATTRS, my TYPE EXPR : ATTRS, next LABEL, next, no
1946 Module VERSION LIST, no Module VERSION, no Module LIST, no Module, oct
1947 EXPR, oct, open FILEHANDLE,EXPR, open FILEHANDLE,MODE,EXPR, open
1948 FILEHANDLE,MODE,EXPR,LIST, open FILEHANDLE,MODE,REFERENCE, open FILEHANDLE,
1949 opendir DIRHANDLE,EXPR, ord EXPR, ord, our EXPR, our EXPR TYPE, our EXPR :
1950 ATTRS, our TYPE EXPR : ATTRS, pack TEMPLATE,LIST, package NAMESPACE,
1951 package, pipe READHANDLE,WRITEHANDLE, pop ARRAY, pop, pos SCALAR, pos,
1952 print FILEHANDLE LIST, print LIST, print, printf FILEHANDLE FORMAT, LIST,
1953 printf FORMAT, LIST, prototype FUNCTION, push ARRAY,LIST, q/STRING/,
1954 qq/STRING/, qr/STRING/, qx/STRING/, qw/STRING/, quotemeta EXPR, quotemeta,
1955 rand EXPR, rand, read FILEHANDLE,SCALAR,LENGTH,OFFSET, read
1956 FILEHANDLE,SCALAR,LENGTH, readdir DIRHANDLE, readline EXPR, readlink EXPR,
1957 readlink, readpipe EXPR, recv SOCKET,SCALAR,LENGTH,FLAGS, redo LABEL, redo,
1958 ref EXPR, ref, rename OLDNAME,NEWNAME, require VERSION, require EXPR,
1959 require, reset EXPR, reset, return EXPR, return, reverse LIST, rewinddir
1960 DIRHANDLE, rindex STR,SUBSTR,POSITION, rindex STR,SUBSTR, rmdir FILENAME,
1961 rmdir, s///, scalar EXPR, seek FILEHANDLE,POSITION,WHENCE, seekdir
1962 DIRHANDLE,POS, select FILEHANDLE, select, select RBITS,WBITS,EBITS,TIMEOUT,
1963 semctl ID,SEMNUM,CMD,ARG, semget KEY,NSEMS,FLAGS, semop KEY,OPSTRING, send
1964 SOCKET,MSG,FLAGS,TO, send SOCKET,MSG,FLAGS, setpgrp PID,PGRP, setpriority
1965 WHICH,WHO,PRIORITY, setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL, shift ARRAY,
1966 shift, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS, shmread ID,VAR,POS,SIZE,
1967 shmwrite ID,STRING,POS,SIZE, shutdown SOCKET,HOW, sin EXPR, sin, sleep
1968 EXPR, sleep, socket SOCKET,DOMAIN,TYPE,PROTOCOL, socketpair
1969 SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, sort SUBNAME LIST, sort BLOCK LIST,
1970 sort LIST, splice ARRAY,OFFSET,LENGTH,LIST, splice ARRAY,OFFSET,LENGTH,
1971 splice ARRAY,OFFSET, splice ARRAY, split /PATTERN/,EXPR,LIMIT, split
1972 /PATTERN/,EXPR, split /PATTERN/, split, sprintf FORMAT, LIST, format
1973 parameter index, flags, vector flag, (minimum) width, precision, or maximum
1974 width, size, order of arguments, sqrt EXPR, sqrt, srand EXPR, srand, stat
1975 FILEHANDLE, stat EXPR, stat, study SCALAR, study, sub NAME BLOCK, sub NAME
1976 (PROTO) BLOCK, sub NAME : ATTRS BLOCK, sub NAME (PROTO) : ATTRS BLOCK,
1977 substr EXPR,OFFSET,LENGTH,REPLACEMENT, substr EXPR,OFFSET,LENGTH, substr
1978 EXPR,OFFSET, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
1979 FILEHANDLE,FILENAME,MODE, sysopen FILEHANDLE,FILENAME,MODE,PERMS, sysread
1980 FILEHANDLE,SCALAR,LENGTH,OFFSET, sysread FILEHANDLE,SCALAR,LENGTH, sysseek
1981 FILEHANDLE,POSITION,WHENCE, system LIST, system PROGRAM LIST, syswrite
1982 FILEHANDLE,SCALAR,LENGTH,OFFSET, syswrite FILEHANDLE,SCALAR,LENGTH,
1983 syswrite FILEHANDLE,SCALAR, tell FILEHANDLE, tell, telldir DIRHANDLE, tie
1984 VARIABLE,CLASSNAME,LIST, tied VARIABLE, time, times, tr///, truncate
1985 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, uc EXPR, uc, ucfirst EXPR,
1986 ucfirst, umask EXPR, umask, undef EXPR, undef, unlink LIST, unlink, unpack
1987 TEMPLATE,EXPR, unpack TEMPLATE, untie VARIABLE, unshift ARRAY,LIST, use
1988 Module VERSION LIST, use Module VERSION, use Module LIST, use Module, use
1989 VERSION, utime LIST, values HASH, vec EXPR,OFFSET,BITS, wait, waitpid
1990 PID,FLAGS, wantarray, warn LIST, write FILEHANDLE, write EXPR, write, y///
1991
1992 =back
1993
1994 =back
1995
1996 =head2 perlopentut - tutorial on opening things in Perl
1997
1998 =over 4
1999
2000 =item DESCRIPTION
2001
2002 =item Open E<agrave> la shell
2003
2004 =over 4
2005
2006 =item Simple Opens
2007
2008 =item Indirect Filehandles
2009
2010 =item Pipe Opens
2011
2012 =item The Minus File
2013
2014 =item Mixing Reads and Writes
2015
2016 =item Filters 
2017
2018 =back
2019
2020 =item Open E<agrave> la C
2021
2022 =over 4
2023
2024 =item Permissions E<agrave> la mode
2025
2026 =back
2027
2028 =item Obscure Open Tricks
2029
2030 =over 4
2031
2032 =item Re-Opening Files (dups)
2033
2034 =item Dispelling the Dweomer
2035
2036 =item Paths as Opens
2037
2038 =item Single Argument Open
2039
2040 =item Playing with STDIN and STDOUT
2041
2042 =back
2043
2044 =item Other I/O Issues
2045
2046 =over 4
2047
2048 =item Opening Non-File Files
2049
2050 =item Opening Named Pipes
2051
2052 =item Opening Sockets
2053
2054 =item Binary Files
2055
2056 =item File Locking
2057
2058 =item IO Layers
2059
2060 =back
2061
2062 =item SEE ALSO 
2063
2064 =item AUTHOR and COPYRIGHT
2065
2066 =item HISTORY
2067
2068 =back
2069
2070 =head2 perlpacktut - tutorial on C<pack> and C<unpack>
2071
2072 =over 4
2073
2074 =item DESCRIPTION
2075
2076 =item The Basic Principle
2077
2078 =item Packing Text
2079
2080 =item Packing Numbers
2081
2082 =over 4
2083
2084 =item Integers
2085
2086 =item Unpacking a Stack Frame
2087
2088 =item How to Eat an Egg on a Net
2089
2090 =item Floating point Numbers
2091
2092 =back
2093
2094 =item Exotic Templates
2095
2096 =over 4
2097
2098 =item Bit Strings
2099
2100 =item Uuencoding
2101
2102 =item Doing Sums
2103
2104 =item  Unicode
2105
2106 =item Another Portable Binary Encoding
2107
2108 =back
2109
2110 =item Template Grouping
2111
2112 =item Lengths and Widths
2113
2114 =over 4
2115
2116 =item String Lengths
2117
2118 =item Dynamic Templates
2119
2120 =item Counting Repetitions
2121
2122 =back
2123
2124 =item Packing and Unpacking C Structures
2125
2126 =over 4
2127
2128 =item The Alignment Pit
2129
2130 =item Alignment, Take 2
2131
2132 =item Alignment, Take 3
2133
2134 =item Pointers for How to Use Them
2135
2136 =back
2137
2138 =item Pack Recipes
2139
2140 =item Funnies Section
2141
2142 =item Authors
2143
2144 =back
2145
2146 =head2 perlpod - the Plain Old Documentation format
2147
2148 =over 4
2149
2150 =item DESCRIPTION
2151
2152 =over 4
2153
2154 =item Ordinary Paragraph
2155
2156 =item Verbatim Paragraph
2157
2158 =item Command Paragraph
2159
2160 C<=head1 I<Heading Text>>, C<=head2 I<Heading Text>>, C<=head3 I<Heading
2161 Text>>, C<=head4 I<Heading Text>>, C<=over I<indentlevel>>, C<=item
2162 I<stuff...>>, C<=back>, C<=cut>, C<=pod>, C<=begin I<formatname>>, C<=end
2163 I<formatname>>, C<=for I<formatname> I<text...>>
2164
2165 =item Formatting Codes
2166
2167 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
2168 C<CE<lt>codeE<gt>> -- code text, C<LE<lt>nameE<gt>> -- a hyperlink,
2169 C<EE<lt>escapeE<gt>> -- a character escape, C<FE<lt>filenameE<gt>> -- used
2170 for filenames, C<SE<lt>textE<gt>> -- text contains non-breaking spaces,
2171 C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a null
2172 (zero-effect) formatting code
2173
2174 =item The Intent
2175
2176 =item Embedding Pods in Perl Modules
2177
2178 =item Hints for Writing Pod
2179
2180 =back
2181
2182 =item SEE ALSO
2183
2184 =item AUTHOR
2185
2186 =back
2187
2188 =head2 perlpodspec - Plain Old Documentation: format specification and
2189 notes
2190
2191 =over 4
2192
2193 =item DESCRIPTION
2194
2195 =item Pod Definitions
2196
2197 =item Pod Commands
2198
2199 "=head1", "=head2", "=head3", "=head4", "=pod", "=cut", "=over", "=item",
2200 "=back", "=begin formatname", "=end formatname", "=for formatname text..."
2201
2202 =item Pod Formatting Codes
2203
2204 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
2205 C<CE<lt>codeE<gt>> -- code text, C<FE<lt>filenameE<gt>> -- style for
2206 filenames, C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a
2207 null (zero-effect) formatting code, C<LE<lt>nameE<gt>> -- a hyperlink,
2208 C<EE<lt>escapeE<gt>> -- a character escape, C<SE<lt>textE<gt>> -- text
2209 contains non-breaking spaces
2210
2211 =item Notes on Implementing Pod Processors
2212
2213 =item About LE<lt>...E<gt> Codes
2214
2215 First:, Second:, Third:, Fourth:, Fifth:, Sixth:
2216
2217 =item About =over...=back Regions
2218
2219 =item About Data Paragraphs and "=begin/=end" Regions
2220
2221 =item SEE ALSO
2222
2223 =item AUTHOR
2224
2225 =back
2226
2227 =head2 perlrun - how to execute the Perl interpreter
2228
2229 =over 4
2230
2231 =item SYNOPSIS
2232
2233 =item DESCRIPTION
2234
2235 =over 4
2236
2237 =item #! and quoting on non-Unix systems
2238
2239 OS/2, MS-DOS, Win95/NT, Macintosh, VMS
2240
2241 =item Location of Perl
2242
2243 =item Command Switches
2244
2245 B<-0>[I<octal/hexadecimal>], B<-A [I<assertions>]>, B<-a>, B<-C
2246 [I<number/list>]>, B<-c>, B<-d>, B<-d:>I<foo[=bar,baz]>, B<-D>I<letters>,
2247 B<-D>I<number>, B<-e> I<commandline>, B<-F>I<pattern>, B<-h>,
2248 B<-i>[I<extension>], B<-I>I<directory>, B<-l>[I<octnum>],
2249 B<-m>[B<->]I<module>, B<-M>[B<->]I<module>, B<-M>[B<->]I<'module ...'>,
2250 B<-[mM]>[B<->]I<module=arg[,arg]...>, B<-n>, B<-p>, B<-P>, B<-s>, B<-S>,
2251 B<-t>, B<-T>, B<-u>, B<-U>, B<-v>, B<-V>, B<-V:>I<name>, B<-w>, B<-W>,
2252 B<-X>, B<-x> I<directory>
2253
2254 =back
2255
2256 =item ENVIRONMENT
2257
2258 HOME, LOGDIR, PATH, PERL5LIB, PERL5OPT, PERLIO, :bytes, :crlf, :mmap,
2259 :perlio, :pop, :raw, :stdio, :unix, :utf8, :win32, PERLIO_DEBUG, PERLLIB,
2260 PERL5DB, PERL5SHELL (specific to the Win32 port), PERL_DEBUG_MSTATS,
2261 PERL_DESTRUCT_LEVEL, PERL_ENCODING, PERL_HASH_SEED, PERL_HASH_SEED_DEBUG,
2262 PERL_ROOT (specific to the VMS port), PERL_SIGNALS, PERL_UNICODE, SYS$LOGIN
2263 (specific to the VMS port)
2264
2265 =back
2266
2267 =head2 perldiag - various Perl diagnostics
2268
2269 =over 4
2270
2271 =item DESCRIPTION
2272
2273 =back
2274
2275 =head2 perllexwarn - Perl Lexical Warnings
2276
2277 =over 4
2278
2279 =item DESCRIPTION
2280
2281 =over 4
2282
2283 =item Default Warnings and Optional Warnings
2284
2285 =item What's wrong with B<-w> and C<$^W>
2286
2287 =item Controlling Warnings from the Command Line
2288
2289 B<-w>, B<-W>, B<-X>
2290
2291 =item Backward Compatibility
2292
2293 =item Category Hierarchy
2294
2295 =item Fatal Warnings
2296
2297 =item Reporting Warnings from a Module
2298
2299 =back
2300
2301 =item TODO
2302
2303 =item SEE ALSO
2304
2305 =item AUTHOR
2306
2307 =back
2308
2309 =head2 perldebug - Perl debugging
2310
2311 =over 4
2312
2313 =item DESCRIPTION
2314
2315 =item The Perl Debugger
2316
2317 =over 4
2318
2319 =item Debugger Commands
2320
2321 h, h [command], h h, p expr, x [maxdepth] expr, V [pkg [vars]], X [vars], y
2322 [level [vars]], T, s [expr], n [expr], r, <CR>, c [line|sub], l, l
2323 min+incr, l min-max, l line, l subname, -, v [line], f filename, /pattern/,
2324 ?pattern?, L [abw], S [[!]regex], t, t expr, b, b [line] [condition], b
2325 subname [condition], b postpone subname [condition], b load filename, b
2326 compile subname, B line, B *, a [line] command, A line, A *, w expr, W
2327 expr, W *, o, o booloption .., o anyoption? .., o option=value .., < ?, < [
2328 command ], < *, << command, > ?, > command, > *, >> command, { ?, { [
2329 command ], { *, {{ command, ! number, ! -number, ! pattern, !! cmd, source
2330 file, H -number, q or ^D, R, |dbcmd, ||dbcmd, command, m expr, M, man
2331 [manpage]
2332
2333 =item Configurable Options
2334
2335 C<recallCommand>, C<ShellBang>, C<pager>, C<tkRunning>, C<signalLevel>,
2336 C<warnLevel>, C<dieLevel>, C<AutoTrace>, C<LineInfo>, C<inhibit_exit>,
2337 C<PrintRet>, C<ornaments>, C<frame>, C<maxTraceLen>, C<windowSize>,
2338 C<arrayDepth>, C<hashDepth>, C<dumpDepth>, C<compactDump>, C<veryCompact>,
2339 C<globPrint>, C<DumpDBFiles>, C<DumpPackages>, C<DumpReused>, C<quote>,
2340 C<HighBit>, C<undefPrint>, C<UsageOnly>, C<TTY>, C<noTTY>, C<ReadLine>,
2341 C<NonStop>
2342
2343 =item Debugger input/output
2344
2345 Prompt, Multiline commands, Stack backtrace, Line Listing Format, Frame
2346 listing
2347
2348 =item Debugging compile-time statements
2349
2350 =item Debugger Customization
2351
2352 =item Readline Support
2353
2354 =item Editor Support for Debugging
2355
2356 =item The Perl Profiler
2357
2358 =back
2359
2360 =item Debugging regular expressions
2361
2362 =item Debugging memory usage
2363
2364 =item SEE ALSO
2365
2366 =item BUGS
2367
2368 =back
2369
2370 =head2 perlvar - Perl predefined variables
2371
2372 =over 4
2373
2374 =item DESCRIPTION
2375
2376 =over 4
2377
2378 =item Predefined Names
2379
2380 $ARG, $_, $a, $b, $<I<digits>>, $MATCH, $&, $PREMATCH, $`, $POSTMATCH, $',
2381 $LAST_PAREN_MATCH, $+, $^N, @LAST_MATCH_END, @+,
2382 HANDLE->input_line_number(EXPR), $INPUT_LINE_NUMBER, $NR, $,
2383 IO::Handle->input_record_separator(EXPR), $INPUT_RECORD_SEPARATOR, $RS, $/,
2384 HANDLE->autoflush(EXPR), $OUTPUT_AUTOFLUSH, $|,
2385 IO::Handle->output_field_separator EXPR, $OUTPUT_FIELD_SEPARATOR, $OFS, $,,
2386 IO::Handle->output_record_separator EXPR, $OUTPUT_RECORD_SEPARATOR, $ORS,
2387 $\, $LIST_SEPARATOR, $", $SUBSCRIPT_SEPARATOR, $SUBSEP, $;, $OFMT, $#,
2388 HANDLE->format_page_number(EXPR), $FORMAT_PAGE_NUMBER, $%,
2389 HANDLE->format_lines_per_page(EXPR), $FORMAT_LINES_PER_PAGE, $=,
2390 HANDLE->format_lines_left(EXPR), $FORMAT_LINES_LEFT, $-, @LAST_MATCH_START,
2391 @-, C<$`> is the same as C<substr($var, 0, $-[0])>, C<$&> is the same as
2392 C<substr($var, $-[0], $+[0] - $-[0])>, C<$'> is the same as C<substr($var,
2393 $+[0])>, C<$1> is the same as C<substr($var, $-[1], $+[1] - $-[1])>, C<$2>
2394 is the same as C<substr($var, $-[2], $+[2] - $-[2])>, C<$3> is the same as
2395 C<substr $var, $-[3], $+[3] - $-[3])>, HANDLE->format_name(EXPR),
2396 $FORMAT_NAME, $~, HANDLE->format_top_name(EXPR), $FORMAT_TOP_NAME, $^,
2397 IO::Handle->format_line_break_characters EXPR,
2398 $FORMAT_LINE_BREAK_CHARACTERS, $:, IO::Handle->format_formfeed EXPR,
2399 $FORMAT_FORMFEED, $^L, $ACCUMULATOR, $^A, $CHILD_ERROR, $?, ${^ENCODING},
2400 $OS_ERROR, $ERRNO, $!, %!, $EXTENDED_OS_ERROR, $^E, $EVAL_ERROR, $@,
2401 $PROCESS_ID, $PID, $$, $REAL_USER_ID, $UID, $<, $EFFECTIVE_USER_ID, $EUID,
2402 $>, $REAL_GROUP_ID, $GID, $(, $EFFECTIVE_GROUP_ID, $EGID, $),
2403 $PROGRAM_NAME, $0, $[, $], $COMPILING, $^C, $DEBUGGING, $^D,
2404 $SYSTEM_FD_MAX, $^F, $^H, %^H, $INPLACE_EDIT, $^I, $^M, $OSNAME, $^O,
2405 ${^OPEN}, $PERLDB, $^P, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
2406 0x100, 0x200, 0x400, $LAST_REGEXP_CODE_RESULT, $^R,
2407 $EXCEPTIONS_BEING_CAUGHT, $^S, $BASETIME, $^T, ${^TAINT}, ${^UNICODE},
2408 $PERL_VERSION, $^V, $WARNING, $^W, ${^WARNING_BITS}, $EXECUTABLE_NAME, $^X,
2409 ARGV, $ARGV, @ARGV, ARGVOUT, @F, @INC, @_, %INC, %ENV, $ENV{expr}, %SIG,
2410 $SIG{expr}
2411
2412 =item Error Indicators
2413
2414 =item Technical Note on the Syntax of Variable Names
2415
2416 =back
2417
2418 =item BUGS
2419
2420 =back
2421
2422 =head2 perlre - Perl regular expressions
2423
2424 =over 4
2425
2426 =item DESCRIPTION
2427
2428 i, m, s, x
2429
2430 =over 4
2431
2432 =item Regular Expressions
2433
2434 [1], [2], [3], cntrl, graph, print, punct, xdigit
2435
2436 =item Extended Patterns
2437
2438 C<(?#text)>, C<(?imsx-imsx)>, C<(?:pattern)>, C<(?imsx-imsx:pattern)>,
2439 C<(?=pattern)>, C<(?!pattern)>, C<(?<=pattern)>, C<(?<!pattern)>, C<(?{
2440 code })>, C<(??{ code })>, C<< (?>pattern) >>,
2441 C<(?(condition)yes-pattern|no-pattern)>, C<(?(condition)yes-pattern)>
2442
2443 =item Backtracking
2444
2445 =item Version 8 Regular Expressions
2446
2447 =item Warning on \1 vs $1
2448
2449 =item Repeated patterns matching zero-length substring
2450
2451 =item Combining pieces together
2452
2453 C<ST>, C<S|T>, C<S{REPEAT_COUNT}>, C<S{min,max}>, C<S{min,max}?>, C<S?>,
2454 C<S*>, C<S+>, C<S??>, C<S*?>, C<S+?>, C<< (?>S) >>, C<(?=S)>, C<(?<=S)>,
2455 C<(?!S)>, C<(?<!S)>, C<(??{ EXPR })>,
2456 C<(?(condition)yes-pattern|no-pattern)>
2457
2458 =item Creating custom RE engines
2459
2460 =back
2461
2462 =item BUGS
2463
2464 =item SEE ALSO
2465
2466 =back
2467
2468 =head2 perlreref - Perl Regular Expressions Reference
2469
2470 =over 4
2471
2472 =item DESCRIPTION
2473
2474 =over 4
2475
2476 =item OPERATORS
2477
2478 =item SYNTAX
2479
2480 =item ESCAPE SEQUENCES
2481
2482 =item CHARACTER CLASSES
2483
2484 =item ANCHORS
2485
2486 =item QUANTIFIERS
2487
2488 =item EXTENDED CONSTRUCTS
2489
2490 =item VARIABLES
2491
2492 =item FUNCTIONS
2493
2494 =item TERMINOLOGY
2495
2496 =back
2497
2498 =item AUTHOR
2499
2500 =item SEE ALSO
2501
2502 =item THANKS
2503
2504 =back
2505
2506 =head2 perlref - Perl references and nested data structures
2507
2508 =over 4
2509
2510 =item NOTE
2511
2512 =item DESCRIPTION
2513
2514 =over 4
2515
2516 =item Making References
2517
2518 =item Using References
2519
2520 =item Symbolic references
2521
2522 =item Not-so-symbolic references
2523
2524 =item Pseudo-hashes: Using an array as a hash
2525
2526 =item Function Templates
2527
2528 =back
2529
2530 =item WARNING
2531
2532 =item SEE ALSO
2533
2534 =back
2535
2536 =head2 perlform - Perl formats
2537
2538 =over 4
2539
2540 =item DESCRIPTION
2541
2542 =over 4
2543
2544 =item Format Variables
2545
2546 =back
2547
2548 =item NOTES
2549
2550 =over 4
2551
2552 =item Footers
2553
2554 =item Accessing Formatting Internals
2555
2556 =back
2557
2558 =item WARNINGS
2559
2560 =back
2561
2562 =head2 perlobj - Perl objects
2563
2564 =over 4
2565
2566 =item DESCRIPTION
2567
2568 =over 4
2569
2570 =item An Object is Simply a Reference
2571
2572 =item A Class is Simply a Package
2573
2574 =item A Method is Simply a Subroutine
2575
2576 =item Method Invocation
2577
2578 =item Indirect Object Syntax
2579
2580 =item Default UNIVERSAL methods
2581
2582 isa(CLASS), can(METHOD), VERSION( [NEED] )
2583
2584 =item Destructors
2585
2586 =item Summary
2587
2588 =item Two-Phased Garbage Collection
2589
2590 =back
2591
2592 =item SEE ALSO
2593
2594 =back
2595
2596 =head2 perltie - how to hide an object class in a simple variable
2597
2598 =over 4
2599
2600 =item SYNOPSIS
2601
2602 =item DESCRIPTION
2603
2604 =over 4
2605
2606 =item Tying Scalars
2607
2608 TIESCALAR classname, LIST, FETCH this, STORE this, value, UNTIE this,
2609 DESTROY this
2610
2611 =item Tying Arrays
2612
2613 TIEARRAY classname, LIST, FETCH this, index, STORE this, index, value,
2614 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
2615 key, DELETE this, key, CLEAR this, PUSH this, LIST, POP this, SHIFT this,
2616 UNSHIFT this, LIST, SPLICE this, offset, length, LIST, UNTIE this, DESTROY
2617 this
2618
2619 =item Tying Hashes
2620
2621 USER, HOME, CLOBBER, LIST, TIEHASH classname, LIST, FETCH this, key, STORE
2622 this, key, value, DELETE this, key, CLEAR this, EXISTS this, key, FIRSTKEY
2623 this, NEXTKEY this, lastkey, UNTIE this, DESTROY this
2624
2625 =item Tying FileHandles
2626
2627 TIEHANDLE classname, LIST, WRITE this, LIST, PRINT this, LIST, PRINTF this,
2628 LIST, READ this, LIST, READLINE this, GETC this, CLOSE this, UNTIE this,
2629 DESTROY this
2630
2631 =item UNTIE this
2632
2633 =item The C<untie> Gotcha
2634
2635 =back
2636
2637 =item SEE ALSO
2638
2639 =item BUGS
2640
2641 =item AUTHOR
2642
2643 =back
2644
2645 =head2 perldbmfilter - Perl DBM Filters
2646
2647 =over 4
2648
2649 =item SYNOPSIS
2650
2651 =item DESCRIPTION
2652
2653 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
2654 B<filter_fetch_value>
2655
2656 =over 4
2657
2658 =item The Filter
2659
2660 =item An Example -- the NULL termination problem.
2661
2662 =item Another Example -- Key is a C int.
2663
2664 =back
2665
2666 =item SEE ALSO
2667
2668 =item AUTHOR
2669
2670 =back
2671
2672 =head2 perlipc - Perl interprocess communication (signals, fifos, pipes,
2673 safe subprocesses, sockets, and semaphores)
2674
2675 =over 4
2676
2677 =item DESCRIPTION
2678
2679 =item Signals
2680
2681 =over 4
2682
2683 =item Handling the SIGHUP Signal in Daemons
2684
2685 =back
2686
2687 =item Named Pipes
2688
2689 =over 4
2690
2691 =item Deferred Signals (Safe Signals)
2692
2693 Long running opcodes, Interrupting IO, Restartable system calls, Signals as
2694 "faults", Signals triggered by operating system state
2695
2696 =back
2697
2698 =item Using open() for IPC
2699
2700 =over 4
2701
2702 =item Filehandles
2703
2704 =item Background Processes
2705
2706 =item Complete Dissociation of Child from Parent
2707
2708 =item Safe Pipe Opens
2709
2710 =item Bidirectional Communication with Another Process
2711
2712 =item Bidirectional Communication with Yourself
2713
2714 =back
2715
2716 =item Sockets: Client/Server Communication
2717
2718 =over 4
2719
2720 =item Internet Line Terminators
2721
2722 =item Internet TCP Clients and Servers
2723
2724 =item Unix-Domain TCP Clients and Servers
2725
2726 =back
2727
2728 =item TCP Clients with IO::Socket
2729
2730 =over 4
2731
2732 =item A Simple Client
2733
2734 C<Proto>, C<PeerAddr>, C<PeerPort>
2735
2736 =item A Webget Client
2737
2738 =item Interactive Client with IO::Socket
2739
2740 =back
2741
2742 =item TCP Servers with IO::Socket
2743
2744 Proto, LocalPort, Listen, Reuse
2745
2746 =item UDP: Message Passing
2747
2748 =item SysV IPC
2749
2750 =item NOTES
2751
2752 =item BUGS
2753
2754 =item AUTHOR
2755
2756 =item SEE ALSO
2757
2758 =back
2759
2760 =head2 perlfork - Perl's fork() emulation
2761
2762 =over 4
2763
2764 =item SYNOPSIS
2765
2766 =item DESCRIPTION
2767
2768 =over 4
2769
2770 =item Behavior of other Perl features in forked pseudo-processes
2771
2772 $$ or $PROCESS_ID, %ENV, chdir() and all other builtins that accept
2773 filenames, wait() and waitpid(), kill(), exec(), exit(), Open handles to
2774 files, directories and network sockets
2775
2776 =item Resource limits
2777
2778 =item Killing the parent process
2779
2780 =item Lifetime of the parent process and pseudo-processes
2781
2782 =item CAVEATS AND LIMITATIONS
2783
2784 BEGIN blocks, Open filehandles, Forking pipe open() not yet implemented,
2785 Global state maintained by XSUBs, Interpreter embedded in larger
2786 application, Thread-safety of extensions
2787
2788 =back
2789
2790 =item BUGS
2791
2792 =item AUTHOR
2793
2794 =item SEE ALSO
2795
2796 =back
2797
2798 =head2 perlnumber - semantics of numbers and numeric operations in Perl
2799
2800 =over 4
2801
2802 =item SYNOPSIS
2803
2804 =item DESCRIPTION
2805
2806 =item Storing numbers
2807
2808 =item Numeric operators and numeric conversions
2809
2810 =item Flavors of Perl numeric operations
2811
2812 Arithmetic operators, ++, Arithmetic operators during C<use integer>, Other
2813 mathematical operators, Bitwise operators, Bitwise operators during C<use
2814 integer>, Operators which expect an integer, Operators which expect a
2815 string
2816
2817 =item AUTHOR
2818
2819 =item SEE ALSO
2820
2821 =back
2822
2823 =head2 perlthrtut - tutorial on threads in Perl
2824
2825 =over 4
2826
2827 =item DESCRIPTION
2828
2829 =item Status
2830
2831 =item What Is A Thread Anyway?
2832
2833 =item Threaded Program Models
2834
2835 =over 4
2836
2837 =item Boss/Worker
2838
2839 =item Work Crew
2840
2841 =item Pipeline
2842
2843 =back
2844
2845 =item What kind of threads are Perl threads?
2846
2847 =item Thread-Safe Modules
2848
2849 =item Thread Basics
2850
2851 =over 4
2852
2853 =item Basic Thread Support
2854
2855 =item A Note about the Examples
2856
2857 =item Creating Threads
2858
2859 =item Waiting For A Thread To Exit
2860
2861 =item Ignoring A Thread
2862
2863 =back
2864
2865 =item Threads And Data
2866
2867 =over 4
2868
2869 =item Shared And Unshared Data
2870
2871 =item Thread Pitfalls: Races
2872
2873 =back
2874
2875 =item Synchronization and control
2876
2877 =over 4
2878
2879 =item Controlling access: lock()
2880
2881 =item A Thread Pitfall: Deadlocks
2882
2883 =item Queues: Passing Data Around
2884
2885 =item Semaphores: Synchronizing Data Access
2886
2887 =item Basic semaphores
2888
2889 =item Advanced Semaphores
2890
2891 =item cond_wait() and cond_signal()
2892
2893 =item Giving up control
2894
2895 =back
2896
2897 =item General Thread Utility Routines
2898
2899 =over 4
2900
2901 =item What Thread Am I In?
2902
2903 =item Thread IDs
2904
2905 =item Are These Threads The Same?
2906
2907 =item What Threads Are Running?
2908
2909 =back
2910
2911 =item A Complete Example
2912
2913 =item Different implementations of threads
2914
2915 =item Performance considerations
2916
2917 =item Process-scope Changes
2918
2919 =item Thread-Safety of System Libraries
2920
2921 =item Conclusion
2922
2923 =item Bibliography
2924
2925 =over 4
2926
2927 =item Introductory Texts
2928
2929 =item OS-Related References
2930
2931 =item Other References
2932
2933 =back
2934
2935 =item Acknowledgements
2936
2937 =item AUTHOR
2938
2939 =item Copyrights
2940
2941 =back
2942
2943 =head2 perlothrtut - old tutorial on threads in Perl
2944
2945 =over 4
2946
2947 =item DESCRIPTION
2948
2949 =item What Is A Thread Anyway?
2950
2951 =item Threaded Program Models
2952
2953 =over 4
2954
2955 =item Boss/Worker
2956
2957 =item Work Crew
2958
2959 =item Pipeline
2960
2961 =back
2962
2963 =item Native threads
2964
2965 =item What kind of threads are perl threads?
2966
2967 =item Threadsafe Modules
2968
2969 =item Thread Basics
2970
2971 =over 4
2972
2973 =item Basic Thread Support
2974
2975 =item Creating Threads
2976
2977 =item Giving up control
2978
2979 =item Waiting For A Thread To Exit
2980
2981 =item Errors In Threads
2982
2983 =item Ignoring A Thread
2984
2985 =back
2986
2987 =item Threads And Data
2988
2989 =over 4
2990
2991 =item Shared And Unshared Data
2992
2993 =item Thread Pitfall: Races
2994
2995 =item Controlling access: lock()
2996
2997 =item Thread Pitfall: Deadlocks
2998
2999 =item Queues: Passing Data Around
3000
3001 =back
3002
3003 =item Threads And Code
3004
3005 =over 4
3006
3007 =item Semaphores: Synchronizing Data Access
3008
3009 Basic semaphores, Advanced Semaphores
3010
3011 =item Attributes: Restricting Access To Subroutines
3012
3013 =item Subroutine Locks
3014
3015 =item Methods
3016
3017 =item Locking A Subroutine
3018
3019 =back
3020
3021 =item General Thread Utility Routines
3022
3023 =over 4
3024
3025 =item What Thread Am I In?
3026
3027 =item Thread IDs
3028
3029 =item Are These Threads The Same?
3030
3031 =item What Threads Are Running?
3032
3033 =back
3034
3035 =item A Complete Example
3036
3037 =item Conclusion
3038
3039 =item Bibliography
3040
3041 =over 4
3042
3043 =item Introductory Texts
3044
3045 =item OS-Related References
3046
3047 =item Other References
3048
3049 =back
3050
3051 =item Acknowledgements
3052
3053 =item AUTHOR
3054
3055 =item Copyrights
3056
3057 =back
3058
3059 =head2 perlport - Writing portable Perl
3060
3061 =over 4
3062
3063 =item DESCRIPTION
3064
3065 Not all Perl programs have to be portable, Nearly all of Perl already I<is>
3066 portable
3067
3068 =item ISSUES
3069
3070 =over 4
3071
3072 =item Newlines
3073
3074 =item Numbers endianness and Width
3075
3076 =item Files and Filesystems
3077
3078 =item System Interaction
3079
3080 =item Command names versus file pathnames
3081
3082 =item Networking
3083
3084 =item Interprocess Communication (IPC)
3085
3086 =item External Subroutines (XS)
3087
3088 =item Standard Modules
3089
3090 =item Time and Date
3091
3092 =item Character sets and character encoding
3093
3094 =item Internationalisation
3095
3096 =item System Resources
3097
3098 =item Security
3099
3100 =item Style
3101
3102 =back
3103
3104 =item CPAN Testers
3105
3106 Mailing list: cpan-testers@perl.org, Testing results:
3107 http://testers.cpan.org/
3108
3109 =item PLATFORMS
3110
3111 =over 4
3112
3113 =item Unix
3114
3115 =item DOS and Derivatives
3116
3117 =item S<Mac OS>
3118
3119 =item VMS
3120
3121 =item VOS
3122
3123 =item EBCDIC Platforms
3124
3125 =item Acorn RISC OS
3126
3127 =item Other perls
3128
3129 =back
3130
3131 =item FUNCTION IMPLEMENTATIONS
3132
3133 =over 4
3134
3135 =item Alphabetical Listing of Perl Functions
3136
3137 -I<X> FILEHANDLE, -I<X> EXPR, -I<X>, alarm SECONDS, alarm, binmode
3138 FILEHANDLE, chmod LIST, chown LIST, chroot FILENAME, chroot, crypt
3139 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MODE, dump LABEL, exec
3140 LIST, exit EXPR, exit, fcntl FILEHANDLE,FUNCTION,SCALAR, flock
3141 FILEHANDLE,OPERATION, fork, getlogin, getpgrp PID, getppid, getpriority
3142 WHICH,WHO, getpwnam NAME, getgrnam NAME, getnetbyname NAME, getpwuid UID,
3143 getgrgid GID, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
3144 getservbyport PORT,PROTO, getpwent, getgrent, gethostbyname, gethostent,
3145 getnetent, getprotoent, getservent, sethostent STAYOPEN, setnetent
3146 STAYOPEN, setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent,
3147 endhostent, endnetent, endprotoent, endservent, getsockopt
3148 SOCKET,LEVEL,OPTNAME, glob EXPR, glob, ioctl FILEHANDLE,FUNCTION,SCALAR,
3149 kill SIGNAL, LIST, link OLDFILE,NEWFILE, lstat FILEHANDLE, lstat EXPR,
3150 lstat, msgctl ID,CMD,ARG, msgget KEY,FLAGS, msgsnd ID,MSG,FLAGS, msgrcv
3151 ID,VAR,SIZE,TYPE,FLAGS, open FILEHANDLE,EXPR, open FILEHANDLE, pipe
3152 READHANDLE,WRITEHANDLE, readlink EXPR, readlink, select
3153 RBITS,WBITS,EBITS,TIMEOUT, semctl ID,SEMNUM,CMD,ARG, semget
3154 KEY,NSEMS,FLAGS, semop KEY,OPSTRING, setgrent, setpgrp PID,PGRP,
3155 setpriority WHICH,WHO,PRIORITY, setpwent, setsockopt
3156 SOCKET,LEVEL,OPTNAME,OPTVAL, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS,
3157 shmread ID,VAR,POS,SIZE, shmwrite ID,STRING,POS,SIZE, sockatmark SOCKET,
3158 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, stat FILEHANDLE, stat
3159 EXPR, stat, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
3160 FILEHANDLE,FILENAME,MODE,PERMS, system LIST, times, truncate
3161 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, umask EXPR, umask, utime LIST,
3162 wait, waitpid PID,FLAGS
3163
3164 =back
3165
3166 =item CHANGES
3167
3168 v1.49, 12 August 2002, v1.48, 02 February 2001, v1.47, 22 March 2000,
3169 v1.46, 12 February 2000, v1.45, 20 December 1999, v1.44, 19 July 1999,
3170 v1.43, 24 May 1999, v1.42, 22 May 1999, v1.41, 19 May 1999, v1.40, 11 April
3171 1999, v1.39, 11 February 1999, v1.38, 31 December 1998, v1.37, 19 December
3172 1998, v1.36, 9 September 1998, v1.35, 13 August 1998, v1.33, 06 August
3173 1998, v1.32, 05 August 1998, v1.30, 03 August 1998, v1.23, 10 July 1998
3174
3175 =item Supported Platforms
3176
3177 =item SEE ALSO
3178
3179 =item AUTHORS / CONTRIBUTORS
3180
3181 =back
3182
3183 =head2 perllocale - Perl locale handling (internationalization and
3184 localization)
3185
3186 =over 4
3187
3188 =item DESCRIPTION
3189
3190 =item PREPARING TO USE LOCALES
3191
3192 =item USING LOCALES
3193
3194 =over 4
3195
3196 =item The use locale pragma
3197
3198 =item The setlocale function
3199
3200 =item Finding locales
3201
3202 =item LOCALE PROBLEMS
3203
3204 =item Temporarily fixing locale problems
3205
3206 =item Permanently fixing locale problems
3207
3208 =item Permanently fixing your system's locale configuration
3209
3210 =item Fixing system locale configuration
3211
3212 =item The localeconv function
3213
3214 =item I18N::Langinfo
3215
3216 =back
3217
3218 =item LOCALE CATEGORIES
3219
3220 =over 4
3221
3222 =item Category LC_COLLATE: Collation
3223
3224 =item Category LC_CTYPE: Character Types
3225
3226 =item Category LC_NUMERIC: Numeric Formatting
3227
3228 =item Category LC_MONETARY: Formatting of monetary amounts
3229
3230 =item LC_TIME
3231
3232 =item Other categories
3233
3234 =back
3235
3236 =item SECURITY
3237
3238 =item ENVIRONMENT
3239
3240 PERL_BADLANG, LC_ALL, LANGUAGE, LC_CTYPE, LC_COLLATE, LC_MONETARY,
3241 LC_NUMERIC, LC_TIME, LANG
3242
3243 =item NOTES
3244
3245 =over 4
3246
3247 =item Backward compatibility
3248
3249 =item I18N:Collate obsolete
3250
3251 =item Sort speed and memory use impacts
3252
3253 =item write() and LC_NUMERIC
3254
3255 =item Freely available locale definitions
3256
3257 =item I18n and l10n
3258
3259 =item An imperfect standard
3260
3261 =back
3262
3263 =item Unicode and UTF-8
3264
3265 =item BUGS
3266
3267 =over 4
3268
3269 =item Broken systems
3270
3271 =back
3272
3273 =item SEE ALSO
3274
3275 =item HISTORY
3276
3277 =back
3278
3279 =head2 perluniintro - Perl Unicode introduction
3280
3281 =over 4
3282
3283 =item DESCRIPTION
3284
3285 =over 4
3286
3287 =item Unicode
3288
3289 =item Perl's Unicode Support
3290
3291 =item Perl's Unicode Model
3292
3293 =item Unicode and EBCDIC
3294
3295 =item Creating Unicode
3296
3297 =item Handling Unicode
3298
3299 =item Legacy Encodings
3300
3301 =item Unicode I/O
3302
3303 =item Displaying Unicode As Text
3304
3305 =item Special Cases
3306
3307 =item Advanced Topics
3308
3309 =item Miscellaneous
3310
3311 =item Questions With Answers
3312
3313 =item Hexadecimal Notation
3314
3315 =item Further Resources
3316
3317 =back
3318
3319 =item UNICODE IN OLDER PERLS
3320
3321 =item SEE ALSO
3322
3323 =item ACKNOWLEDGMENTS
3324
3325 =item AUTHOR, COPYRIGHT, AND LICENSE
3326
3327 =back
3328
3329 =head2 perlunicode - Unicode support in Perl
3330
3331 =over 4
3332
3333 =item DESCRIPTION
3334
3335 =over 4
3336
3337 =item Important Caveats
3338
3339 Input and Output Layers, Regular Expressions, C<use utf8> still needed to
3340 enable UTF-8/UTF-EBCDIC in scripts
3341
3342 =item Byte and Character Semantics
3343
3344 =item Effects of Character Semantics
3345
3346 =item Scripts
3347
3348 =item Blocks
3349
3350 =item User-Defined Character Properties
3351
3352 =item Character Encodings for Input and Output
3353
3354 =item Unicode Regular Expression Support Level
3355
3356 =item Unicode Encodings
3357
3358 =item Security Implications of Unicode
3359
3360 =item Unicode in Perl on EBCDIC
3361
3362 =item Locales
3363
3364 =item When Unicode Does Not Happen
3365
3366 =item Forcing Unicode in Perl (Or Unforcing Unicode in Perl)
3367
3368 =item Using Unicode in XS
3369
3370 =back
3371
3372 =item BUGS
3373
3374 =over 4
3375
3376 =item Interaction with Locales
3377
3378 =item Interaction with Extensions
3379
3380 =item Speed
3381
3382 =item Porting code from perl-5.6.X
3383
3384 =back
3385
3386 =item SEE ALSO
3387
3388 =back
3389
3390 =head2 perlebcdic - Considerations for running Perl on EBCDIC platforms
3391
3392 =over 4
3393
3394 =item DESCRIPTION
3395
3396 =item COMMON CHARACTER CODE SETS
3397
3398 =over 4
3399
3400 =item ASCII
3401
3402 =item ISO 8859
3403
3404 =item Latin 1 (ISO 8859-1)
3405
3406 =item EBCDIC
3407
3408 =item 13 variant characters
3409
3410 =item 0037
3411
3412 =item 1047
3413
3414 =item POSIX-BC
3415
3416 =item Unicode code points versus EBCDIC code points
3417
3418 =item Remaining Perl Unicode problems in EBCDIC
3419
3420 =item Unicode and UTF
3421
3422 =item Using Encode
3423
3424 =back
3425
3426 =item SINGLE OCTET TABLES
3427
3428 recipe 0, recipe 1, recipe 2, recipe 3, recipe 4, recipe 5, recipe 6
3429
3430 =item IDENTIFYING CHARACTER CODE SETS
3431
3432 =item CONVERSIONS
3433
3434 =over 4
3435
3436 =item tr///
3437
3438 =item iconv
3439
3440 =item C RTL
3441
3442 =back
3443
3444 =item OPERATOR DIFFERENCES
3445
3446 =item FUNCTION DIFFERENCES
3447
3448 chr(), ord(), pack(), print(), printf(), sort(), sprintf(), unpack()
3449
3450 =item REGULAR EXPRESSION DIFFERENCES
3451
3452 =item SOCKETS
3453
3454 =item SORTING
3455
3456 =over 4
3457
3458 =item Ignore ASCII vs. EBCDIC sort differences.
3459
3460 =item MONO CASE then sort data.
3461
3462 =item Convert, sort data, then re convert.
3463
3464 =item Perform sorting on one type of machine only.
3465
3466 =back
3467
3468 =item TRANSFORMATION FORMATS
3469
3470 =over 4
3471
3472 =item URL decoding and encoding
3473
3474 =item uu encoding and decoding
3475
3476 =item Quoted-Printable encoding and decoding
3477
3478 =item Caesarian ciphers
3479
3480 =back
3481
3482 =item Hashing order and checksums
3483
3484 =item I18N AND L10N
3485
3486 =item MULTI OCTET CHARACTER SETS
3487
3488 =item OS ISSUES
3489
3490 =over 4
3491
3492 =item OS/400
3493
3494 PASE, IFS access
3495
3496 =item OS/390, z/OS
3497
3498 chcp, dataset access, OS/390, z/OS iconv, locales
3499
3500 =item VM/ESA?
3501
3502 =item POSIX-BC?
3503
3504 =back
3505
3506 =item BUGS
3507
3508 =item SEE ALSO
3509
3510 =item REFERENCES
3511
3512 =item HISTORY
3513
3514 =item AUTHOR
3515
3516 =back
3517
3518 =head2 perlsec - Perl security
3519
3520 =over 4
3521
3522 =item DESCRIPTION
3523
3524 =over 4
3525
3526 =item Laundering and Detecting Tainted Data
3527
3528 =item Switches On the "#!" Line
3529
3530 =item Cleaning Up Your Path
3531
3532 =item Security Bugs
3533
3534 =item Protecting Your Programs
3535
3536 =item Unicode
3537
3538 =item Algorithmic Complexity Attacks
3539
3540 =back
3541
3542 =item SEE ALSO
3543
3544 =back
3545
3546 =head2 perlmod - Perl modules (packages and symbol tables)
3547
3548 =over 4
3549
3550 =item DESCRIPTION
3551
3552 =over 4
3553
3554 =item Packages
3555
3556 =item Symbol Tables
3557
3558 =item Package Constructors and Destructors
3559
3560 =item Perl Classes
3561
3562 =item Perl Modules
3563
3564 =item Making your module threadsafe
3565
3566 =back
3567
3568 =item SEE ALSO
3569
3570 =back
3571
3572 =head2 perlmodlib - constructing new Perl modules and finding existing ones
3573
3574 =over 4
3575
3576 =item THE PERL MODULE LIBRARY
3577
3578 =over 4
3579
3580 =item Pragmatic Modules
3581
3582 assertions, assertions::activate, attributes, attrs, autouse, base, bigint,
3583 bignum, bigrat, blib, bytes, charnames, constant, diagnostics, encoding,
3584 fields, filetest, if, integer, less, lib, locale, open, ops, overload, re,
3585 sigtrap, sort, strict, subs, threads, threads::shared, utf8, vars, version,
3586 vmsish, warnings, warnings::register
3587
3588 =item Standard Modules
3589
3590 AnyDBM_File, Attribute::Handlers, AutoLoader, AutoSplit, B, B::Asmdata,
3591 B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC, B::Concise, B::Debug,
3592 B::Deparse, B::Disassembler, B::Lint, B::Showlex, B::Stackobj, B::Stash,
3593 B::Terse, B::Xref, Benchmark, ByteLoader, CGI, CGI::Apache, CGI::Carp,
3594 CGI::Cookie, CGI::Fast, CGI::Pretty, CGI::Push, CGI::Switch, CGI::Util,
3595 CPAN, CPAN::FirstTime, CPAN::Nox, Carp, Carp::Heavy, Class::ISA,
3596 Class::Struct, Config, Cwd, DB, DB_File, Data::Dumper, Devel::DProf,
3597 Devel::PPPort, Devel::Peek, Devel::SelfStubber, Digest, Digest::MD5,
3598 DirHandle, Dumpvalue, DynaLoader, Encode, Encode::Alias, Encode::Byte,
3599 Encode::CJKConstants, Encode::CN, Encode::CN::HZ, Encode::Config,
3600 Encode::EBCDIC, Encode::Encoder, Encode::Encoding, Encode::Guess,
3601 Encode::JP, Encode::JP::H2Z, Encode::JP::JIS7, Encode::KR,
3602 Encode::KR::2022_KR, Encode::MIME::Header, Encode::PerlIO,
3603 Encode::Supported, Encode::Symbol, Encode::TW, Encode::Unicode,
3604 Encode::Unicode::UTF7, English, Env, Errno, Exporter, Exporter::Heavy,
3605 ExtUtils::Command, ExtUtils::Command::MM, ExtUtils::Constant,
3606 ExtUtils::Embed, ExtUtils::Install, ExtUtils::Installed, ExtUtils::Liblist,
3607 ExtUtils::MM, ExtUtils::MM_Any, ExtUtils::MM_BeOS, ExtUtils::MM_Cygwin,
3608 ExtUtils::MM_DOS, ExtUtils::MM_MacOS, ExtUtils::MM_NW5, ExtUtils::MM_OS2,
3609 ExtUtils::MM_UWIN, ExtUtils::MM_Unix, ExtUtils::MM_VMS, ExtUtils::MM_Win32,
3610 ExtUtils::MM_Win95, ExtUtils::MY, ExtUtils::MakeMaker,
3611 ExtUtils::MakeMaker::FAQ, ExtUtils::MakeMaker::Tutorial,
3612 ExtUtils::MakeMaker::bytes, ExtUtils::MakeMaker::vmsish,
3613 ExtUtils::Manifest, ExtUtils::Mkbootstrap, ExtUtils::Mksymlists,
3614 ExtUtils::Packlist, ExtUtils::testlib, Fatal, Fcntl, File::Basename,
3615 File::CheckTree, File::Compare, File::Copy, File::DosGlob, File::Find,
3616 File::Glob, File::Path, File::Spec, File::Spec::Cygwin, File::Spec::Epoc,
3617 File::Spec::Functions, File::Spec::Mac, File::Spec::OS2, File::Spec::Unix,
3618 File::Spec::VMS, File::Spec::Win32, File::Temp, File::stat, FileCache,
3619 FileHandle, Filter::Simple, Filter::Util::Call, FindBin, GDBM_File,
3620 Getopt::Long, Getopt::Std, Hash::Util, I18N::Collate, I18N::LangTags,
3621 I18N::LangTags::List, I18N::Langinfo, IO, IO::Dir, IO::File, IO::Handle,
3622 IO::Pipe, IO::Poll, IO::Seekable, IO::Select, IO::Socket, IO::Socket::INET,
3623 IO::Socket::UNIX, IPC::Open2, IPC::Open3, IPC::SysV, IPC::SysV::Msg,
3624 IPC::SysV::Semaphore, List::Util, Locale::Constants, Locale::Country,
3625 Locale::Currency, Locale::Language, Locale::Maketext,
3626 Locale::Maketext::TPJ13, Locale::Script, MIME::Base64,
3627 MIME::Base64::QuotedPrint, Math::BigFloat, Math::BigInt,
3628 Math::BigInt::Calc, Math::BigInt::Scalar, Math::BigRat, Math::Complex,
3629 Math::Trig, Memoize, Memoize::AnyDBM_File, Memoize::Expire,
3630 Memoize::ExpireFile, Memoize::ExpireTest, Memoize::NDBM_File,
3631 Memoize::SDBM_File, Memoize::Storable, NDBM_File, NEXT, Net::Cmd,
3632 Net::Config, Net::Domain, Net::FTP, Net::NNTP, Net::Netrc, Net::POP3,
3633 Net::Ping, Net::SMTP, Net::Time, Net::hostent, Net::libnetFAQ, Net::netent,
3634 Net::protoent, Net::servent, O, ODBM_File, Opcode, POSIX, PerlIO,
3635 PerlIO::encoding, PerlIO::scalar, PerlIO::via, PerlIO::via::QuotedPrint,
3636 Pod::Checker, Pod::Find, Pod::Functions, Pod::Html, Pod::InputObjects,
3637 Pod::LaTeX, Pod::Man, Pod::ParseLink, Pod::ParseUtils, Pod::Parser,
3638 Pod::Perldoc::ToChecker, Pod::Perldoc::ToMan, Pod::Perldoc::ToNroff,
3639 Pod::Perldoc::ToPod, Pod::Perldoc::ToRtf, Pod::Perldoc::ToText,
3640 Pod::Perldoc::ToTk, Pod::Perldoc::ToXml, Pod::PlainText, Pod::Plainer,
3641 Pod::Select, Pod::Text, Pod::Text::Color, Pod::Text::Overstrike,
3642 Pod::Text::Termcap, Pod::Usage, SDBM_File, Safe, Scalar::Util,
3643 Search::Dict, SelectSaver, SelfLoader, Shell, Socket, Storable, Switch,
3644 Symbol, Sys::Hostname, Sys::Syslog, Term::ANSIColor, Term::Cap,
3645 Term::Complete, Term::ReadLine, Test, Test::Builder, Test::Harness,
3646 Test::Harness::Assert, Test::Harness::Iterator, Test::Harness::Straps,
3647 Test::More, Test::Simple, Test::Tutorial, Text::Abbrev, Text::Balanced,
3648 Text::ParseWords, Text::Soundex, Text::Tabs, Text::Wrap, Thread,
3649 Thread::Queue, Thread::Semaphore, Thread::Signal, Thread::Specific,
3650 Tie::Array, Tie::File, Tie::Handle, Tie::Hash, Tie::Memoize, Tie::RefHash,
3651 Tie::Scalar, Tie::SubstrHash, Time::HiRes, Time::Local, Time::gmtime,
3652 Time::localtime, Time::tm, UNIVERSAL, Unicode::Collate, Unicode::Normalize,
3653 Unicode::UCD, User::grent, User::pwent, Win32, XS::APItest, XS::Typemap,
3654 XSLoader
3655
3656 =item Extension Modules
3657
3658 =back
3659
3660 =item CPAN
3661
3662 =over 4
3663
3664 =item Africa
3665
3666 South Africa
3667
3668 =item Asia
3669
3670 China, Indonesia, Israel, Japan, Malaysia, Russian Federation, Saudi
3671 Arabia, Singapore, South Korea, Taiwan
3672
3673 =item Central America
3674
3675 Costa Rica
3676
3677 =item Europe
3678
3679 Austria, Belgium, Bulgaria, Croatia, Czech Republic, Denmark, Estonia,
3680 Finland, France, Germany, Greece, Hungary, Iceland, Ireland, Italy, Latvia,
3681 Lithuania, Netherlands, Norway, Poland, Portugal, Romania, Russia,
3682 Slovakia, Slovenia, Spain, Sweden, Switzerland, Turkey, Ukraine, United
3683 Kingdom
3684
3685 =item North America
3686
3687 Canada, Alberta, Manitoba, Nova Scotia, Ontario, Mexico, United States,
3688 Alabama, California, Colorado, Delaware, District of Columbia, Florida,
3689 Illinois, Indiana, Kentucky, Massachusetts, Michigan, Nevada, New Jersey,
3690 New York, North Carolina, Oklahoma, Oregon, Pennsylvania, Tennessee, Texas,
3691 Utah, Virginia, Washington, Wisconsin
3692
3693 =item Oceania
3694
3695 Australia, New Zealand, United States
3696
3697 =item South America
3698
3699 Argentina, Brazil, Chile
3700
3701 =item RSYNC Mirrors
3702
3703 =back
3704
3705 =item Modules: Creation, Use, and Abuse
3706
3707 =over 4
3708
3709 =item Guidelines for Module Creation
3710
3711 =item Guidelines for Converting Perl 4 Library Scripts into Modules
3712
3713 =item Guidelines for Reusing Application Code
3714
3715 =back
3716
3717 =item NOTE
3718
3719 =back
3720
3721 =head2 perlmodstyle - Perl module style guide
3722
3723 =over 4
3724
3725 =item INTRODUCTION
3726
3727 =item QUICK CHECKLIST
3728
3729 =over 4
3730
3731 =item Before you start
3732
3733 =item The API
3734
3735 =item Stability
3736
3737 =item Documentation
3738
3739 =item Release considerations
3740
3741 =back
3742
3743 =item BEFORE YOU START WRITING A MODULE
3744
3745 =over 4
3746
3747 =item Has it been done before?
3748
3749 =item Do one thing and do it well
3750
3751 =item What's in a name?
3752
3753 =back
3754
3755 =item DESIGNING AND WRITING YOUR MODULE
3756
3757 =over 4
3758
3759 =item To OO or not to OO?
3760
3761 =item Designing your API
3762
3763 Write simple routines to do simple things, Separate functionality from
3764 output, Provide sensible shortcuts and defaults, Naming conventions,
3765 Parameter passing
3766
3767 =item Strictness and warnings
3768
3769 =item Backwards compatibility
3770
3771 =item Error handling and messages
3772
3773 =back
3774
3775 =item DOCUMENTING YOUR MODULE
3776
3777 =over 4
3778
3779 =item POD
3780
3781 =item README, INSTALL, release notes, changelogs
3782
3783 perl Makefile.PL, make, make test, make install, perl Build.PL, perl Build,
3784 perl Build test, perl Build install
3785
3786 =back
3787
3788 =item RELEASE CONSIDERATIONS
3789
3790 =over 4
3791
3792 =item Version numbering
3793
3794 =item Pre-requisites
3795
3796 =item Testing
3797
3798 =item Packaging
3799
3800 =item Licensing
3801
3802 =back
3803
3804 =item COMMON PITFALLS
3805
3806 =over 4
3807
3808 =item Reinventing the wheel
3809
3810 =item Trying to do too much
3811
3812 =item Inappropriate documentation
3813
3814 =back
3815
3816 =item SEE ALSO
3817
3818 L<perlstyle>, L<perlnewmod>, L<perlpod>, L<podchecker>, Packaging Tools,
3819 Testing tools, http://pause.perl.org/, Any good book on software
3820 engineering
3821
3822 =item AUTHOR
3823
3824 =back
3825
3826 =head2 perlmodinstall - Installing CPAN Modules
3827
3828 =over 4
3829
3830 =item DESCRIPTION
3831
3832 =over 4
3833
3834 =item PREAMBLE
3835
3836 B<DECOMPRESS> the file, B<UNPACK> the file into a directory, B<BUILD> the
3837 module (sometimes unnecessary), B<INSTALL> the module
3838
3839 =back
3840
3841 =item PORTABILITY
3842
3843 =item HEY
3844
3845 =item AUTHOR
3846
3847 =item COPYRIGHT
3848
3849 =back
3850
3851 =head2 perlnewmod - preparing a new module for distribution
3852
3853 =over 4
3854
3855 =item DESCRIPTION
3856
3857 =over 4
3858
3859 =item Warning
3860
3861 =item What should I make into a module?
3862
3863 =item Step-by-step: Preparing the ground
3864
3865 Look around, Check it's new, Discuss the need, Choose a name, Check again
3866
3867 =item Step-by-step: Making the module
3868
3869 Start with F<h2xs>, Use L<strict|strict> and L<warnings|warnings>, Use
3870 L<Carp|Carp>, Use L<Exporter|Exporter> - wisely!, Use L<plain old
3871 documentation|perlpod>, Write tests, Write the README
3872
3873 =item Step-by-step: Distributing your module
3874
3875 Get a CPAN user ID, C<perl Makefile.PL; make test; make dist>, Upload the
3876 tarball, Announce to the modules list, Announce to clpa, Fix bugs!
3877
3878 =back
3879
3880 =item AUTHOR
3881
3882 =item SEE ALSO
3883
3884 =back
3885
3886 =head2 perlutil - utilities packaged with the Perl distribution
3887
3888 =over 4
3889
3890 =item DESCRIPTION
3891
3892 =over 4
3893
3894 =item DOCUMENTATION
3895
3896 L<perldoc|perldoc>, L<pod2man|pod2man> and L<pod2text|pod2text>,
3897 L<pod2html|pod2html> and L<pod2latex|pod2latex>, L<pod2usage|pod2usage>,
3898 L<podselect|podselect>, L<podchecker|podchecker>, L<splain|splain>,
3899 L<roffitall|roffitall>
3900
3901 =item CONVERTORS
3902
3903 L<a2p|a2p>, L<s2p|s2p>, L<find2perl|find2perl>
3904
3905 =item Administration
3906
3907 L<libnetcfg|libnetcfg>
3908
3909 =item Development
3910
3911 L<perlbug|perlbug>, L<h2ph|h2ph>, L<c2ph|c2ph> and L<pstruct|pstruct>,
3912 L<h2xs|h2xs>, L<dprofpp|dprofpp>, L<perlcc|perlcc>
3913
3914 =item SEE ALSO
3915
3916 =back
3917
3918 =back
3919
3920 =head2 perlcompile - Introduction to the Perl Compiler-Translator 
3921
3922 =over 4
3923
3924 =item DESCRIPTION
3925
3926 =over 4
3927
3928 =item Layout
3929
3930 B::Bytecode, B::C, B::CC, B::Lint, B::Deparse, B::Xref
3931
3932 =back
3933
3934 =item Using The Back Ends
3935
3936 =over 4
3937
3938 =item The Cross Referencing Back End
3939
3940 i, &, s, r
3941
3942 =item The Decompiling Back End
3943
3944 =item The Lint Back End
3945
3946 =item The Simple C Back End
3947
3948 =item The Bytecode Back End
3949
3950 =item The Optimized C Back End
3951
3952 =back
3953
3954 =item Module List for the Compiler Suite
3955
3956 B, O, B::Asmdata, B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC,
3957 B::Concise, B::Debug, B::Deparse, B::Disassembler, B::Lint, B::Showlex,
3958 B::Stackobj, B::Stash, B::Terse, B::Xref
3959
3960 =item KNOWN PROBLEMS
3961
3962 =item AUTHOR
3963
3964 =back
3965
3966 =head2 perlfilter - Source Filters
3967
3968 =over 4
3969
3970 =item DESCRIPTION
3971
3972 =item CONCEPTS
3973
3974 =item USING FILTERS
3975
3976 =item WRITING A SOURCE FILTER
3977
3978 =item WRITING A SOURCE FILTER IN C
3979
3980 B<Decryption Filters>
3981
3982 =item CREATING A SOURCE FILTER AS A SEPARATE EXECUTABLE
3983
3984 =item WRITING A SOURCE FILTER IN PERL
3985
3986 =item USING CONTEXT: THE DEBUG FILTER
3987
3988 =item CONCLUSION
3989
3990 =item THINGS TO LOOK OUT FOR
3991
3992 Some Filters Clobber the C<DATA> Handle
3993
3994 =item REQUIREMENTS
3995
3996 =item AUTHOR
3997
3998 =item Copyrights
3999
4000 =back
4001
4002 =head2 perlembed - how to embed perl in your C program
4003
4004 =over 4
4005
4006 =item DESCRIPTION
4007
4008 =over 4
4009
4010 =item PREAMBLE
4011
4012 B<Use C from Perl?>, B<Use a Unix program from Perl?>, B<Use Perl from
4013 Perl?>, B<Use C from C?>, B<Use Perl from C?>
4014
4015 =item ROADMAP
4016
4017 =item Compiling your C program
4018
4019 =item Adding a Perl interpreter to your C program
4020
4021 =item Calling a Perl subroutine from your C program
4022
4023 =item Evaluating a Perl statement from your C program
4024
4025 =item Performing Perl pattern matches and substitutions from your C program
4026
4027 =item Fiddling with the Perl stack from your C program
4028
4029 =item Maintaining a persistent interpreter
4030
4031 =item Execution of END blocks
4032
4033 =item Maintaining multiple interpreter instances
4034
4035 =item Using Perl modules, which themselves use C libraries, from your C
4036 program
4037
4038 =back
4039
4040 =item Embedding Perl under Win32
4041
4042 =item Hiding Perl_
4043
4044 =item MORAL
4045
4046 =item AUTHOR
4047
4048 =item COPYRIGHT
4049
4050 =back
4051
4052 =head2 perldebguts - Guts of Perl debugging 
4053
4054 =over 4
4055
4056 =item DESCRIPTION
4057
4058 =item Debugger Internals
4059
4060 =over 4
4061
4062 =item Writing Your Own Debugger
4063
4064 =back
4065
4066 =item Frame Listing Output Examples
4067
4068 =item Debugging regular expressions
4069
4070 =over 4
4071
4072 =item Compile-time output
4073
4074 C<anchored> I<STRING> C<at> I<POS>, C<floating> I<STRING> C<at>
4075 I<POS1..POS2>, C<matching floating/anchored>, C<minlen>, C<stclass>
4076 I<TYPE>, C<noscan>, C<isall>, C<GPOS>, C<plus>, C<implicit>, C<with eval>,
4077 C<anchored(TYPE)>
4078
4079 =item Types of nodes
4080
4081 =item Run-time output
4082
4083 =back
4084
4085 =item Debugging Perl memory usage
4086
4087 =over 4
4088
4089 =item Using C<$ENV{PERL_DEBUG_MSTATS}>
4090
4091 C<buckets SMALLEST(APPROX)..GREATEST(APPROX)>, Free/Used, C<Total sbrk():
4092 SBRKed/SBRKs:CONTINUOUS>, C<pad: 0>, C<heads: 2192>, C<chain: 0>, C<tail:
4093 6144>
4094
4095 =item Example of using B<-DL> switch
4096
4097 C<717>, C<002>, C<054>, C<602>, C<702>, C<704>
4098
4099 =item B<-DL> details
4100
4101 C<!!!>, C<!!>, C<!>
4102
4103 =item Limitations of B<-DL> statistics
4104
4105 =back
4106
4107 =item SEE ALSO
4108
4109 =back
4110
4111 =head2 perlxstut, perlXStut - Tutorial for writing XSUBs
4112
4113 =over 4
4114
4115 =item DESCRIPTION
4116
4117 =item SPECIAL NOTES
4118
4119 =over 4
4120
4121 =item make
4122
4123 =item Version caveat
4124
4125 =item Dynamic Loading versus Static Loading
4126
4127 =back
4128
4129 =item TUTORIAL
4130
4131 =over 4
4132
4133 =item EXAMPLE 1
4134
4135 =item EXAMPLE 2
4136
4137 =item What has gone on?
4138
4139 =item Writing good test scripts
4140
4141 =item EXAMPLE 3
4142
4143 =item What's new here?
4144
4145 =item Input and Output Parameters
4146
4147 =item The XSUBPP Program
4148
4149 =item The TYPEMAP file
4150
4151 =item Warning about Output Arguments
4152
4153 =item EXAMPLE 4
4154
4155 =item What has happened here?
4156
4157 =item Anatomy of .xs file
4158
4159 =item Getting the fat out of XSUBs
4160
4161 =item More about XSUB arguments
4162
4163 =item The Argument Stack
4164
4165 =item Extending your Extension
4166
4167 =item Documenting your Extension
4168
4169 =item Installing your Extension
4170
4171 =item EXAMPLE 5
4172
4173 =item New Things in this Example
4174
4175 =item EXAMPLE 6
4176
4177 =item New Things in this Example
4178
4179 =item EXAMPLE 7 (Coming Soon)
4180
4181 =item EXAMPLE 8 (Coming Soon)
4182
4183 =item EXAMPLE 9 Passing open files to XSes
4184
4185 =item Troubleshooting these Examples
4186
4187 =back
4188
4189 =item See also
4190
4191 =item Author
4192
4193 =over 4
4194
4195 =item Last Changed
4196
4197 =back
4198
4199 =back
4200
4201 =head2 perlxs - XS language reference manual
4202
4203 =over 4
4204
4205 =item DESCRIPTION
4206
4207 =over 4
4208
4209 =item Introduction
4210
4211 =item On The Road
4212
4213 =item The Anatomy of an XSUB
4214
4215 =item The Argument Stack
4216
4217 =item The RETVAL Variable
4218
4219 =item The MODULE Keyword
4220
4221 =item The PACKAGE Keyword
4222
4223 =item The PREFIX Keyword
4224
4225 =item The OUTPUT: Keyword
4226
4227 =item The NO_OUTPUT Keyword
4228
4229 =item The CODE: Keyword
4230
4231 =item The INIT: Keyword
4232
4233 =item The NO_INIT Keyword
4234
4235 =item Initializing Function Parameters
4236
4237 =item Default Parameter Values
4238
4239 =item The PREINIT: Keyword
4240
4241 =item The SCOPE: Keyword
4242
4243 =item The INPUT: Keyword
4244
4245 =item The IN/OUTLIST/IN_OUTLIST/OUT/IN_OUT Keywords
4246
4247 =item The C<length(NAME)> Keyword
4248
4249 =item Variable-length Parameter Lists
4250
4251 =item The C_ARGS: Keyword
4252
4253 =item The PPCODE: Keyword
4254
4255 =item Returning Undef And Empty Lists
4256
4257 =item The REQUIRE: Keyword
4258
4259 =item The CLEANUP: Keyword
4260
4261 =item The POSTCALL: Keyword
4262
4263 =item The BOOT: Keyword
4264
4265 =item The VERSIONCHECK: Keyword
4266
4267 =item The PROTOTYPES: Keyword
4268
4269 =item The PROTOTYPE: Keyword
4270
4271 =item The ALIAS: Keyword
4272
4273 =item The OVERLOAD: Keyword
4274
4275 =item The FALLBACK: Keyword
4276
4277 =item The INTERFACE: Keyword
4278
4279 =item The INTERFACE_MACRO: Keyword
4280
4281 =item The INCLUDE: Keyword
4282
4283 =item The CASE: Keyword
4284
4285 =item The & Unary Operator
4286
4287 =item Inserting POD, Comments and C Preprocessor Directives
4288
4289 =item Using XS With C++
4290
4291 =item Interface Strategy
4292
4293 =item Perl Objects And C Structures
4294
4295 =item The Typemap
4296
4297 =item Safely Storing Static Data in XS
4298
4299 MY_CXT_KEY, typedef my_cxt_t, START_MY_CXT, MY_CXT_INIT, dMY_CXT, MY_CXT
4300
4301 =back
4302
4303 =item EXAMPLES
4304
4305 =item XS VERSION
4306
4307 =item AUTHOR
4308
4309 =back
4310
4311 =head2 perlclib - Internal replacements for standard C library functions
4312
4313 =over 4
4314
4315 =item DESCRIPTION
4316
4317 =over 4
4318
4319 =item Conventions
4320
4321 C<t>, C<p>, C<n>, C<s>
4322
4323 =item File Operations
4324
4325 =item File Input and Output
4326
4327 =item File Positioning
4328
4329 =item Memory Management and String Handling
4330
4331 =item Character Class Tests
4332
4333 =item F<stdlib.h> functions
4334
4335 =item Miscellaneous functions
4336
4337 =back
4338
4339 =item SEE ALSO
4340
4341 =back
4342
4343 =head2 perlguts - Introduction to the Perl API
4344
4345 =over 4
4346
4347 =item DESCRIPTION
4348
4349 =item Variables
4350
4351 =over 4
4352
4353 =item Datatypes
4354
4355 =item What is an "IV"?
4356
4357 =item Working with SVs
4358
4359 =item Offsets
4360
4361 =item What's Really Stored in an SV?
4362
4363 =item Working with AVs
4364
4365 =item Working with HVs
4366
4367 =item Hash API Extensions
4368
4369 =item AVs, HVs and undefined values
4370
4371 =item References
4372
4373 =item Blessed References and Class Objects
4374
4375 =item Creating New Variables
4376
4377 GV_ADDMULTI, GV_ADDWARN
4378
4379 =item Reference Counts and Mortality
4380
4381 =item Stashes and Globs
4382
4383 =item Double-Typed SVs
4384
4385 =item Magic Variables
4386
4387 =item Assigning Magic
4388
4389 =item Magic Virtual Tables
4390
4391 =item Finding Magic
4392
4393 =item Understanding the Magic of Tied Hashes and Arrays
4394
4395 =item Localizing changes
4396
4397 C<SAVEINT(int i)>, C<SAVEIV(IV i)>, C<SAVEI32(I32 i)>, C<SAVELONG(long i)>,
4398 C<SAVESPTR(s)>, C<SAVEPPTR(p)>, C<SAVEFREESV(SV *sv)>, C<SAVEMORTALIZESV(SV
4399 *sv)>, C<SAVEFREEOP(OP *op)>, C<SAVEFREEPV(p)>, C<SAVECLEARSV(SV *sv)>,
4400 C<SAVEDELETE(HV *hv, char *key, I32 length)>,
4401 C<SAVEDESTRUCTOR(DESTRUCTORFUNC_NOCONTEXT_t f, void *p)>,
4402 C<SAVEDESTRUCTOR_X(DESTRUCTORFUNC_t f, void *p)>, C<SAVESTACK_POS()>, C<SV*
4403 save_scalar(GV *gv)>, C<AV* save_ary(GV *gv)>, C<HV* save_hash(GV *gv)>,
4404 C<void save_item(SV *item)>, C<void save_list(SV **sarg, I32 maxsarg)>,
4405 C<SV* save_svref(SV **sptr)>, C<void save_aptr(AV **aptr)>, C<void
4406 save_hptr(HV **hptr)>
4407
4408 =back
4409
4410 =item Subroutines
4411
4412 =over 4
4413
4414 =item XSUBs and the Argument Stack
4415
4416 =item Calling Perl Routines from within C Programs
4417
4418 =item Memory Allocation
4419
4420 =item PerlIO
4421
4422 =item Putting a C value on Perl stack
4423
4424 =item Scratchpads
4425
4426 =item Scratchpads and recursion
4427
4428 =back
4429
4430 =item Compiled code
4431
4432 =over 4
4433
4434 =item Code tree
4435
4436 =item Examining the tree
4437
4438 =item Compile pass 1: check routines
4439
4440 =item Compile pass 1a: constant folding
4441
4442 =item Compile pass 2: context propagation
4443
4444 =item Compile pass 3: peephole optimization
4445
4446 =item Pluggable runops
4447
4448 =back
4449
4450 =item Examining internal data structures with the C<dump> functions
4451
4452 =item How multiple interpreters and concurrency are supported
4453
4454 =over 4
4455
4456 =item Background and PERL_IMPLICIT_CONTEXT
4457
4458 =item So what happened to dTHR?
4459
4460 =item How do I use all this in extensions?
4461
4462 =item Should I do anything special if I call perl from multiple threads?
4463
4464 =item Future Plans and PERL_IMPLICIT_SYS
4465
4466 =back
4467
4468 =item Internal Functions
4469
4470 A, p, d, s, n, r, f, M, o, j, x
4471
4472 =over 4
4473
4474 =item Formatted Printing of IVs, UVs, and NVs
4475
4476 =item Pointer-To-Integer and Integer-To-Pointer
4477
4478 =item Source Documentation
4479
4480 =back
4481
4482 =item Unicode Support
4483
4484 =over 4
4485
4486 =item What B<is> Unicode, anyway?
4487
4488 =item How can I recognise a UTF8 string?
4489
4490 =item How does UTF8 represent Unicode characters?
4491
4492 =item How does Perl store UTF8 strings?
4493
4494 =item How do I convert a string to UTF8?
4495
4496 =item Is there anything else I need to know?
4497
4498 =back
4499
4500 =item Custom Operators
4501
4502 =item AUTHORS
4503
4504 =item SEE ALSO
4505
4506 =back
4507
4508 =head2 perlcall - Perl calling conventions from C
4509
4510 =over 4
4511
4512 =item DESCRIPTION
4513
4514 An Error Handler, An Event Driven Program
4515
4516 =item THE CALL_ FUNCTIONS
4517
4518 call_sv, call_pv, call_method, call_argv
4519
4520 =item FLAG VALUES
4521
4522 =over 4
4523
4524 =item  G_VOID
4525
4526 =item  G_SCALAR
4527
4528 =item G_ARRAY
4529
4530 =item G_DISCARD
4531
4532 =item G_NOARGS
4533
4534 =item G_EVAL
4535
4536 =item G_KEEPERR
4537
4538 =item Determining the Context
4539
4540 =back
4541
4542 =item KNOWN PROBLEMS
4543
4544 =item EXAMPLES
4545
4546 =over 4
4547
4548 =item No Parameters, Nothing returned
4549
4550 =item Passing Parameters
4551
4552 =item Returning a Scalar
4553
4554 =item Returning a list of values
4555
4556 =item Returning a list in a scalar context
4557
4558 =item Returning Data from Perl via the parameter list
4559
4560 =item Using G_EVAL
4561
4562 =item Using G_KEEPERR
4563
4564 =item Using call_sv
4565
4566 =item Using call_argv
4567
4568 =item Using call_method
4569
4570 =item Using GIMME_V
4571
4572 =item Using Perl to dispose of temporaries
4573
4574 =item Strategies for storing Callback Context Information
4575
4576 1. Ignore the problem - Allow only 1 callback, 2. Create a sequence of
4577 callbacks - hard wired limit, 3. Use a parameter to map to the Perl
4578 callback
4579
4580 =item Alternate Stack Manipulation
4581
4582 =item Creating and calling an anonymous subroutine in C
4583
4584 =back
4585
4586 =item SEE ALSO
4587
4588 =item AUTHOR
4589
4590 =item DATE
4591
4592 =back
4593
4594 =head2 perlapi - autogenerated documentation for the perl public API
4595
4596 =over 4
4597
4598 =item DESCRIPTION
4599
4600 =item "Gimme" Values
4601
4602 GIMME, GIMME_V, G_ARRAY, G_DISCARD, G_EVAL, G_NOARGS, G_SCALAR, G_VOID
4603
4604 =item Array Manipulation Functions
4605
4606 AvFILL, av_clear, av_delete, av_exists, av_extend, av_fetch, av_fill,
4607 av_len, av_make, av_pop, av_push, av_shift, av_store, av_undef, av_unshift,
4608 get_av, newAV, Nullav, sortsv
4609
4610 =item Callback Functions
4611
4612 call_argv, call_method, call_pv, call_sv, ENTER, eval_pv, eval_sv,
4613 FREETMPS, LEAVE, SAVETMPS
4614
4615 =item Character classes
4616
4617 isALNUM, isALPHA, isDIGIT, isLOWER, isSPACE, isUPPER, toLOWER, toUPPER
4618
4619 =item Cloning an interpreter
4620
4621 perl_clone
4622
4623 =item CV Manipulation Functions
4624
4625 CvSTASH, get_cv, Nullcv
4626
4627 =item Embedding Functions
4628
4629 cv_undef, load_module, nothreadhook, perl_alloc, perl_construct,
4630 perl_destruct, perl_free, perl_parse, perl_run, require_pv
4631
4632 =item Functions in file pp_pack.c
4633
4634 packlist, pack_cat, unpackstring, unpack_str
4635
4636 =item Global Variables
4637
4638 PL_modglobal, PL_na, PL_sv_no, PL_sv_undef, PL_sv_yes
4639
4640 =item GV Functions
4641
4642 GvSV, gv_fetchmeth, gv_fetchmethod, gv_fetchmethod_autoload,
4643 gv_fetchmeth_autoload, gv_stashpv, gv_stashsv
4644
4645 =item Handy Values
4646
4647 HEf_SVKEY, Nullch, Nullsv
4648
4649 =item Hash Manipulation Functions
4650
4651 get_hv, HeHASH, HeKEY, HeKLEN, HePV, HeSVKEY, HeSVKEY_force, HeSVKEY_set,
4652 HeVAL, HvNAME, hv_clear, hv_delete, hv_delete_ent, hv_exists,
4653 hv_exists_ent, hv_fetch, hv_fetch_ent, hv_iterinit, hv_iterkey,
4654 hv_iterkeysv, hv_iternext, hv_iternextsv, hv_iternext_flags, hv_iterval,
4655 hv_magic, hv_store, hv_store_ent, hv_undef, newHV, Nullhv
4656
4657 =item Magical Functions
4658
4659 mg_clear, mg_copy, mg_find, mg_free, mg_get, mg_length, mg_magical, mg_set,
4660 SvGETMAGIC, SvLOCK, SvSETMAGIC, SvSetMagicSV, SvSetMagicSV_nosteal,
4661 SvSetSV, SvSetSV_nosteal, SvSHARE
4662
4663 =item Memory Management
4664
4665 Copy, Move, New, Newc, NEWSV, Newz, Poison, Renew, Renewc, Safefree,
4666 savepv, savepvn, savesharedpv, StructCopy, Zero
4667
4668 =item Miscellaneous Functions
4669
4670 fbm_compile, fbm_instr, form, getcwd_sv, new_version, scan_version, strEQ,
4671 strGE, strGT, strLE, strLT, strNE, strnEQ, strnNE, sv_nolocking,
4672 sv_nosharing, sv_nounlocking, upg_version, vcmp, vnumify, vstringify
4673
4674 =item Numeric functions
4675
4676 grok_bin, grok_hex, grok_number, grok_numeric_radix, grok_oct, scan_bin,
4677 scan_hex, scan_oct
4678
4679 =item Optree Manipulation Functions
4680
4681 cv_const_sv, newCONSTSUB, newXS
4682
4683 =item Pad Data Structures
4684
4685 pad_sv
4686
4687 =item Stack Manipulation Macros
4688
4689 dMARK, dORIGMARK, dSP, EXTEND, MARK, ORIGMARK, POPi, POPl, POPn, POPp,
4690 POPpbytex, POPpx, POPs, PUSHi, PUSHMARK, PUSHn, PUSHp, PUSHs, PUSHu,
4691 PUTBACK, SP, SPAGAIN, XPUSHi, XPUSHn, XPUSHp, XPUSHs, XPUSHu, XSRETURN,
4692 XSRETURN_IV, XSRETURN_NO, XSRETURN_NV, XSRETURN_PV, XSRETURN_UNDEF,
4693 XSRETURN_YES, XST_mIV, XST_mNO, XST_mNV, XST_mPV, XST_mUNDEF, XST_mYES
4694
4695 =item SV Flags
4696
4697 svtype, SVt_IV, SVt_NV, SVt_PV, SVt_PVAV, SVt_PVCV, SVt_PVHV, SVt_PVMG
4698
4699 =item SV Manipulation Functions
4700
4701 get_sv, looks_like_number, newRV_inc, newRV_noinc, newSV, newSViv, newSVnv,
4702 newSVpv, newSVpvf, newSVpvn, newSVpvn_share, newSVrv, newSVsv, newSVuv,
4703 SvCUR, SvCUR_set, SvEND, SvGROW, SvIOK, SvIOKp, SvIOK_notUV, SvIOK_off,
4704 SvIOK_on, SvIOK_only, SvIOK_only_UV, SvIOK_UV, SvIsCOW,
4705 SvIsCOW_shared_hash, SvIV, SvIVx, SvIVX, SvLEN, SvNIOK, SvNIOKp,
4706 SvNIOK_off, SvNOK, SvNOKp, SvNOK_off, SvNOK_on, SvNOK_only, SvNV, SvNVX,
4707 SvNVx, SvOK, SvOOK, SvPOK, SvPOKp, SvPOK_off, SvPOK_on, SvPOK_only,
4708 SvPOK_only_UTF8, SvPV, SvPVbyte, SvPVbytex, SvPVbytex_force,
4709 SvPVbyte_force, SvPVbyte_nolen, SvPVutf8, SvPVutf8x, SvPVutf8x_force,
4710 SvPVutf8_force, SvPVutf8_nolen, SvPVx, SvPVX, SvPV_force, SvPV_force_nomg,
4711 SvPV_nolen, SvREFCNT, SvREFCNT_dec, SvREFCNT_inc, SvROK, SvROK_off,
4712 SvROK_on, SvRV, SvSTASH, SvTAINT, SvTAINTED, SvTAINTED_off, SvTAINTED_on,
4713 SvTRUE, SvTYPE, SvUNLOCK, SvUOK, SvUPGRADE, SvUTF8, SvUTF8_off, SvUTF8_on,
4714 SvUV, SvUVX, SvUVx, SvVOK, sv_2bool, sv_2cv, sv_2io, sv_2iv, sv_2mortal,
4715 sv_2nv, sv_2pvbyte, sv_2pvbyte_nolen, sv_2pvutf8, sv_2pvutf8_nolen,
4716 sv_2pv_flags, sv_2pv_nolen, sv_2uv, sv_backoff, sv_bless, sv_catpv,
4717 sv_catpvf, sv_catpvf_mg, sv_catpvn, sv_catpvn_flags, sv_catpvn_mg,
4718 sv_catpv_mg, sv_catsv, sv_catsv_flags, sv_catsv_mg, sv_chop, sv_clear,
4719 sv_cmp, sv_cmp_locale, sv_collxfrm, sv_copypv, sv_dec, sv_derived_from,
4720 sv_eq, sv_force_normal, sv_force_normal_flags, sv_free, sv_gets, sv_grow,
4721 sv_inc, sv_insert, sv_isa, sv_isobject, sv_iv, sv_len, sv_len_utf8,
4722 sv_magic, sv_magicext, sv_mortalcopy, sv_newmortal, sv_newref, sv_nv,
4723 sv_pos_b2u, sv_pos_u2b, sv_pv, sv_pvbyte, sv_pvbyten, sv_pvbyten_force,
4724 sv_pvn, sv_pvn_force, sv_pvn_force_flags, sv_pvutf8, sv_pvutf8n,
4725 sv_pvutf8n_force, sv_reftype, sv_replace, sv_report_used, sv_reset,
4726 sv_rvweaken, sv_setiv, sv_setiv_mg, sv_setnv, sv_setnv_mg, sv_setpv,
4727 sv_setpvf, sv_setpvf_mg, sv_setpviv, sv_setpviv_mg, sv_setpvn,
4728 sv_setpvn_mg, sv_setpv_mg, sv_setref_iv, sv_setref_nv, sv_setref_pv,
4729 sv_setref_pvn, sv_setref_uv, sv_setsv, sv_setsv_flags, sv_setsv_mg,
4730 sv_setuv, sv_setuv_mg, sv_taint, sv_tainted, sv_true, sv_unmagic, sv_unref,
4731 sv_unref_flags, sv_untaint, sv_upgrade, sv_usepvn, sv_usepvn_mg,
4732 sv_utf8_decode, sv_utf8_downgrade, sv_utf8_encode, sv_utf8_upgrade,
4733 sv_utf8_upgrade_flags, sv_uv, sv_vcatpvfn, sv_vsetpvfn
4734
4735 =item Unicode Support
4736
4737 bytes_from_utf8, bytes_to_utf8, ibcmp_utf8, is_utf8_char, is_utf8_string,
4738 pv_uni_display, sv_cat_decode, sv_recode_to_utf8, sv_uni_display,
4739 to_utf8_case, to_utf8_fold, to_utf8_lower, to_utf8_title, to_utf8_upper,
4740 utf8n_to_uvchr, utf8n_to_uvuni, utf8_distance, utf8_hop, utf8_length,
4741 utf8_to_bytes, utf8_to_uvchr, utf8_to_uvuni, uvchr_to_utf8,
4742 uvuni_to_utf8_flags
4743
4744 =item Variables created by C<xsubpp> and C<xsubpp> internal functions
4745
4746 ax, CLASS, dAX, dITEMS, dXSARGS, dXSI32, items, ix, newXSproto, RETVAL, ST,
4747 THIS, XS, XSRETURN_EMPTY, XS_VERSION, XS_VERSION_BOOTCHECK
4748
4749 =item Warning and Dieing
4750
4751 croak, warn
4752
4753 =item AUTHORS
4754
4755 =item SEE ALSO
4756
4757 =back
4758
4759 =head2 perlintern - autogenerated documentation of purely B<internal>
4760                  Perl functions
4761
4762 =over 4
4763
4764 =item DESCRIPTION
4765
4766 =item CV reference counts and CvOUTSIDE
4767
4768 CvWEAKOUTSIDE
4769
4770 =item Functions in file pad.h
4771
4772 CX_CURPAD_SAVE, CX_CURPAD_SV, PAD_BASE_SV, PAD_CLONE_VARS,
4773 PAD_COMPNAME_FLAGS, PAD_COMPNAME_GEN, PAD_COMPNAME_OURSTASH,
4774 PAD_COMPNAME_PV, PAD_COMPNAME_TYPE, PAD_DUP, PAD_RESTORE_LOCAL,
4775 PAD_SAVE_LOCAL, PAD_SAVE_SETNULLPAD, PAD_SETSV, PAD_SET_CUR, PAD_SV,
4776 PAD_SVl, SAVECLEARSV, SAVECOMPPAD, SAVEPADSV
4777
4778 =item Functions in file pp_ctl.c
4779
4780 find_runcv
4781
4782 =item Global Variables
4783
4784 PL_DBsingle, PL_DBsub, PL_DBtrace, PL_dowarn, PL_last_in_gv, PL_ofs_sv,
4785 PL_rs
4786
4787 =item GV Functions
4788
4789 is_gv_magical
4790
4791 =item IO Functions
4792
4793 start_glob
4794
4795 =item Pad Data Structures
4796
4797 CvPADLIST, cv_clone, cv_dump, do_dump_pad, intro_my, pad_add_anon,
4798 pad_add_name, pad_alloc, pad_block_start, pad_check_dup, pad_findlex,
4799 pad_findmy, pad_fixup_inner_anons, pad_free, pad_leavemy, pad_new,
4800 pad_push, pad_reset, pad_setsv, pad_swipe, pad_tidy, pad_undef
4801
4802 =item Stack Manipulation Macros
4803
4804 djSP, LVRET
4805
4806 =item SV Manipulation Functions
4807
4808 report_uninit, sv_add_arena, sv_clean_all, sv_clean_objs, sv_free_arenas
4809
4810 =item AUTHORS
4811
4812 =item SEE ALSO
4813
4814 =back
4815
4816 =head2 perliol - C API for Perl's implementation of IO in Layers.
4817
4818 =over 4
4819
4820 =item SYNOPSIS
4821
4822 =item DESCRIPTION
4823
4824 =over 4
4825
4826 =item History and Background
4827
4828 =item Layers vs Disciplines
4829
4830 =item Data Structures
4831
4832 =item Functions and Attributes
4833
4834 =item Per-instance Data
4835
4836 =item Layers in action.
4837
4838 =item Per-instance flag bits
4839
4840 PERLIO_F_EOF, PERLIO_F_CANWRITE,  PERLIO_F_CANREAD, PERLIO_F_ERROR,
4841 PERLIO_F_TRUNCATE, PERLIO_F_APPEND, PERLIO_F_CRLF, PERLIO_F_UTF8,
4842 PERLIO_F_UNBUF, PERLIO_F_WRBUF, PERLIO_F_RDBUF, PERLIO_F_LINEBUF,
4843 PERLIO_F_TEMP, PERLIO_F_OPEN, PERLIO_F_FASTGETS
4844
4845 =item Methods in Detail
4846
4847 fsize, name, size, kind, PERLIO_K_BUFFERED, PERLIO_K_RAW, PERLIO_K_CANCRLF,
4848 PERLIO_K_FASTGETS, PERLIO_K_MULTIARG, Pushed, Popped, Open, Binmode,
4849 Getarg, Fileno, Dup, Read, Write, Seek, Tell, Close, Flush, Fill, Eof,
4850 Error,  Clearerr, Setlinebuf, Get_base, Get_bufsiz, Get_ptr, Get_cnt,
4851 Set_ptrcnt
4852
4853 =item Implementing PerlIO Layers
4854
4855 C implementations, Perl implementations
4856
4857 =item Core Layers
4858
4859 "unix", "perlio", "stdio", "crlf", "mmap", "pending", "raw", "utf8"
4860
4861 =item Extension Layers
4862
4863 ":encoding", ":scalar", ":via"
4864
4865 =back
4866
4867 =item TODO
4868
4869 =back
4870
4871 =head2 perlapio - perl's IO abstraction interface.
4872
4873 =over 4
4874
4875 =item SYNOPSIS
4876
4877 =item DESCRIPTION
4878
4879 1. USE_STDIO, 2. USE_SFIO, 3. USE_PERLIO, B<PerlIO_stdin()>,
4880 B<PerlIO_stdout()>, B<PerlIO_stderr()>, B<PerlIO_open(path, mode)>,
4881 B<PerlIO_fdopen(fd,mode)>, B<PerlIO_reopen(path,mode,f)>,
4882 B<PerlIO_printf(f,fmt,...)>, B<PerlIO_vprintf(f,fmt,a)>,
4883 B<PerlIO_stdoutf(fmt,...)>, B<PerlIO_read(f,buf,count)>,
4884 B<PerlIO_write(f,buf,count)>, B<PerlIO_close(f)>, B<PerlIO_puts(f,s)>,
4885 B<PerlIO_putc(f,c)>, B<PerlIO_ungetc(f,c)>, B<PerlIO_getc(f)>,
4886 B<PerlIO_eof(f)>, B<PerlIO_error(f)>, B<PerlIO_fileno(f)>,
4887 B<PerlIO_clearerr(f)>, B<PerlIO_flush(f)>, B<PerlIO_seek(f,offset,whence)>,
4888 B<PerlIO_tell(f)>, B<PerlIO_getpos(f,p)>, B<PerlIO_setpos(f,p)>,
4889 B<PerlIO_rewind(f)>, B<PerlIO_tmpfile()>, B<PerlIO_setlinebuf(f)>
4890
4891 =over 4
4892
4893 =item Co-existence with stdio
4894
4895 B<PerlIO_importFILE(f,mode)>, B<PerlIO_exportFILE(f,mode)>,
4896 B<PerlIO_releaseFILE(p,f)>, B<PerlIO_findFILE(f)>
4897
4898 =item "Fast gets" Functions
4899
4900 B<PerlIO_fast_gets(f)>, B<PerlIO_has_cntptr(f)>, B<PerlIO_get_cnt(f)>,
4901 B<PerlIO_get_ptr(f)>, B<PerlIO_set_ptrcnt(f,p,c)>, B<PerlIO_canset_cnt(f)>,
4902 B<PerlIO_set_cnt(f,c)>, B<PerlIO_has_base(f)>, B<PerlIO_get_base(f)>,
4903 B<PerlIO_get_bufsiz(f)>
4904
4905 =item Other Functions
4906
4907 PerlIO_apply_layers(f,mode,layers), PerlIO_binmode(f,ptype,imode,layers),
4908 'E<lt>' read, 'E<gt>' write, '+' read/write, PerlIO_debug(fmt,...)
4909
4910 =back
4911
4912 =back
4913
4914 =head2 perlhack - How to hack at the Perl internals
4915
4916 =over 4
4917
4918 =item DESCRIPTION
4919
4920 Does concept match the general goals of Perl?, Where is the
4921 implementation?, Backwards compatibility, Could it be a module instead?, Is
4922 the feature generic enough?, Does it potentially introduce new bugs?, Does
4923 it preclude other desirable features?, Is the implementation robust?, Is
4924 the implementation generic enough to be portable?, Is the implementation
4925 tested?, Is there enough documentation?, Is there another way to do it?,
4926 Does it create too much work?, Patches speak louder than words
4927
4928 =over 4
4929
4930 =item Keeping in sync
4931
4932 rsync'ing the source tree, Using rsync over the LAN, Using pushing over the
4933 NFS, rsync'ing the patches
4934
4935 =item Why rsync the source tree
4936
4937 It's easier to rsync the source tree, It's more reliable
4938
4939 =item Why rsync the patches
4940
4941 It's easier to rsync the patches, It's a good reference, Finding a start
4942 point, Finding how to fix a bug, Finding the source of misbehaviour
4943
4944 =item Perlbug administration
4945
4946 =item Submitting patches
4947
4948 L<perlguts>, L<perlxstut> and L<perlxs>, L<perlapi>,
4949 F<Porting/pumpkin.pod>, The perl5-porters FAQ
4950
4951 =item Finding Your Way Around
4952
4953 Core modules, Tests, Documentation, Configure, Interpreter
4954
4955 =item Elements of the interpreter
4956
4957 Startup, Parsing, Optimization, Running
4958
4959 =item Internal Variable Types
4960
4961 =item Op Trees
4962
4963 =item Stacks
4964
4965 Argument stack, Mark stack, Save stack
4966
4967 =item Millions of Macros
4968
4969 =item The .i Targets
4970
4971 =item Poking at Perl
4972
4973 =item Using a source-level debugger
4974
4975 run [args], break function_name, break source.c:xxx, step, next, continue,
4976 finish, 'enter', print
4977
4978 =item gdb macro support
4979
4980 =item Dumping Perl Data Structures
4981
4982 =item Patching
4983
4984 =item Patching a core module
4985
4986 =item Adding a new function to the core
4987
4988 =item Writing a test
4989
4990 F<t/base/>, F<t/cmd/>, F<t/comp/>, F<t/io/>, F<t/lib/>, F<t/op/>,
4991 F<t/pod/>, F<t/run/>, F<t/uni/>, F<t/win32/>, F<t/x2p>, t/base t/comp,
4992 t/cmd t/run t/io t/op, t/lib ext lib
4993
4994 =item Special Make Test Targets
4995
4996 coretest, test.deparse, minitest, test.valgrind check.valgrind
4997 utest.valgrind ucheck.valgrind, test.third check.third utest.third
4998 ucheck.third, test.torture torturetest, utest ucheck test.utf8 check.utf8,
4999 test_harness
5000
5001 =item Running tests by hand
5002
5003 PERL_CORE=1, PERL_DESTRUCT_LEVEL=2, PERL, PERL_SKIP_TTY_TEST
5004
5005 =back
5006
5007 =item EXTERNAL TOOLS FOR DEBUGGING PERL
5008
5009 =over 4
5010
5011 =item Rational Software's Purify
5012
5013 =item Purify on Unix
5014
5015 -Accflags=-DPURIFY, -Doptimize='-g', -Uusemymalloc, -Dusemultiplicity
5016
5017 =item Purify on NT
5018
5019 DEFINES, USE_MULTI = define, #PERL_MALLOC = define, CFG = Debug
5020
5021 =item valgrind
5022
5023 =item Compaq's/Digital's/HP's Third Degree
5024
5025 =item PERL_DESTRUCT_LEVEL
5026
5027 =item Profiling
5028
5029 =item Gprof Profiling
5030
5031 -a, -b, -e routine, -f routine, -s, -z
5032
5033 =item GCC gcov Profiling
5034
5035 =item Pixie Profiling
5036
5037 -h, -l, -p[rocedures], -h[eavy], -i[nvocations], -l[ines], -testcoverage,
5038 -z[ero]
5039
5040 =item Miscellaneous tricks
5041
5042 =item CONCLUSION
5043
5044 I<The Road goes ever on and on, down from the door where it began.>
5045
5046 =back
5047
5048 =item AUTHOR
5049
5050 =back
5051
5052 =head2 perlbook - Perl book information
5053
5054 =over 4
5055
5056 =item DESCRIPTION
5057
5058 =back
5059
5060 =head2 perltodo - Perl TO-DO List
5061
5062 =over 4
5063
5064 =item DESCRIPTION
5065
5066 =item To do during 5.6.x
5067
5068 =over 4
5069
5070 =item Support for I/O disciplines
5071
5072 =item Autoload bytes.pm
5073
5074 =item Make "\u{XXXX}" et al work
5075
5076 =item Create a char *sv_pvprintify(sv, STRLEN *lenp, UV flags)
5077
5078 =item Overloadable regex assertions
5079
5080 =item Unicode
5081
5082 =item Work out exit/die semantics for threads
5083
5084 =item Better support for nonpreemptive threading systems like GNU pth
5085
5086 =item Typed lexicals for compiler
5087
5088 =item Compiler workarounds for Win32
5089
5090 =item AUTOLOADing in the compiler
5091
5092 =item Fixing comppadlist when compiling
5093
5094 =item Cleaning up exported namespace
5095
5096 =item Complete signal handling
5097
5098 =item Out-of-source builds
5099
5100 =item POSIX realtime support
5101
5102 =item UNIX98 support
5103
5104 =item IPv6 Support
5105
5106 =item Long double conversion
5107
5108 =item Locales
5109
5110 =item Arithmetic on non-Arabic numerals
5111
5112 =item POSIX Unicode character classes
5113
5114 =item Factoring out common suffices/prefices in regexps (trie optimization)
5115
5116 =item Security audit shipped utilities
5117
5118 =item Sort out the uid-setting mess
5119
5120 =item Custom opcodes
5121
5122 =item DLL Versioning
5123
5124 =item Introduce @( and @)
5125
5126 =item Floating point handling
5127
5128 =item IV/UV preservation
5129
5130 =item Replace pod2html with something using Pod::Parser
5131
5132 =item Automate module testing on CPAN
5133
5134 =item sendmsg and recvmsg
5135
5136 =item Rewrite perlre documentation
5137
5138 =item Convert example code to IO::Handle filehandles
5139
5140 =item Document Win32 choices
5141
5142 =item Check new modules
5143
5144 =item Make roffitall find pods and libs itself
5145
5146 =back
5147
5148 =item To do at some point
5149
5150 =over 4
5151
5152 =item Remove regular expression recursion
5153
5154 =item Memory leaks after failed eval
5155
5156 =item bitfields in pack
5157
5158 =item Cross compilation
5159
5160 =item Perl preprocessor / macros
5161
5162 =item Perl lexer in Perl
5163
5164 =item Using POSIX calls internally
5165
5166 =item -i rename file when changed
5167
5168 =item All ARGV input should act like E<lt>E<gt>
5169
5170 =item Support for rerunning debugger
5171
5172 =item Test Suite for the Debugger
5173
5174 =item my sub foo { }
5175
5176 =item One-pass global destruction
5177
5178 =item Rewrite regexp parser
5179
5180 =item Cache recently used regexps
5181
5182 =item Cross-compilation support
5183
5184 =item Bit-shifting bitvectors
5185
5186 =item debugger pragma
5187
5188 =item use less pragma
5189
5190 =item switch structures
5191
5192 =item Cache eval tree
5193
5194 =item rcatmaybe
5195
5196 =item Shrink opcode tables
5197
5198 =item Optimize away @_
5199
5200 =item Prototypes versus indirect objects
5201
5202 =item Install HTML
5203
5204 =item Prototype method calls
5205
5206 =item Return context prototype declarations
5207
5208 =item magic_setisa
5209
5210 =item Garbage collection
5211
5212 =item IO tutorial
5213
5214 =item Rewrite perldoc
5215
5216 =item Install .3p manpages
5217
5218 =item Unicode tutorial
5219
5220 =item Update POSIX.pm for 1003.1-2
5221
5222 =item Retargetable installation
5223
5224 =item POSIX emulation on non-POSIX systems
5225
5226 =item Rename Win32 headers
5227
5228 =item Finish off lvalue functions
5229
5230 =item Update sprintf documentation
5231
5232 =item Use fchown/fchmod internally
5233
5234 =item Make v-strings overloaded objects
5235
5236 =item Allow restricted hash assignment
5237
5238 =item Should overload be inheritable?
5239
5240 =item Taint rethink
5241
5242 =item Perform correctly when XSUBs call subroutines that exit via
5243 goto(LABEL) and friends
5244
5245 =back
5246
5247 =item Vague ideas
5248
5249 =over 4
5250
5251 =item ref() in list context
5252
5253 =item Make tr/// return histogram of characters in list context
5254
5255 =item Compile to real threaded code
5256
5257 =item Structured types
5258
5259 =item Modifiable $1 et al.
5260
5261 =item Procedural interfaces for IO::*, etc.
5262
5263 =item RPC modules
5264
5265 =item Attach/detach debugger from running program
5266
5267 =item GUI::Native
5268
5269 =item foreach(reverse ...)
5270
5271 =item Constant function cache
5272
5273 =item Approximate regular expression matching
5274
5275 =back
5276
5277 =item Ongoing
5278
5279 =over 4
5280
5281 =item Update guts documentation
5282
5283 =item Add more tests
5284
5285 =item Update auxiliary tools
5286
5287 =item Create debugging macros
5288
5289 =item truncate to the people
5290
5291 =item Unicode in Filenames
5292
5293 =back
5294
5295 =item Unicode in %ENV
5296
5297 =item Recently done things
5298
5299 =over 4
5300
5301 =item Alternative RE syntax module
5302
5303 =item Safe signal handling
5304
5305 =item Tie Modules
5306
5307 =item gettimeofday
5308
5309 =item setitimer and getimiter
5310
5311 =item Testing __DIE__ hook
5312
5313 =item CPP equivalent in Perl
5314
5315 =item Explicit switch statements
5316
5317 =item autocroak
5318
5319 =item UTF/EBCDIC
5320
5321 =item UTF Regexes
5322
5323 =item perlcc to produce executable
5324
5325 =item END blocks saved in compiled output
5326
5327 =item Secure temporary file module
5328
5329 =item Integrate Time::HiRes
5330
5331 =item Turn Cwd into XS
5332
5333 =item Mmap for input
5334
5335 =item Byte to/from UTF8 and UTF8 to/from local conversion
5336
5337 =item Add sockatmark support
5338
5339 =item Mailing list archives
5340
5341 =item Bug tracking
5342
5343 =item Integrate MacPerl
5344
5345 =item Web "nerve center" for Perl
5346
5347 =item Regular expression tutorial
5348
5349 =item Debugging Tutorial
5350
5351 =item Integrate new modules
5352
5353 =item Integrate profiler
5354
5355 =item Y2K error detection
5356
5357 =item Regular expression debugger
5358
5359 =item POD checker
5360
5361 =item "Dynamic" lexicals
5362
5363 =item Cache precompiled modules
5364
5365 =back
5366
5367 =item Deprecated Wishes
5368
5369 =over 4
5370
5371 =item Loop control on do{}
5372
5373 =item Lexically scoped typeglobs
5374
5375 =item format BOTTOM
5376
5377 =item report HANDLE
5378
5379 =item Generalised want()/caller())
5380
5381 =item Named prototypes
5382
5383 =item Built-in globbing
5384
5385 =item Regression tests for suidperl
5386
5387 =item Cached hash values
5388
5389 =item Add compression modules
5390
5391 =item Reorganise documentation into tutorials/references
5392
5393 =item Remove distinction between functions and operators
5394
5395 =item Make XS easier to use
5396
5397 =item Make embedding easier to use
5398
5399 =item man for perl
5400
5401 =item my $Package::variable
5402
5403 =item "or" tests defined, not truth
5404
5405 =item "class"-based lexicals
5406
5407 =item byteperl
5408
5409 =item Lazy evaluation / tail recursion removal
5410
5411 =item Make "use utf8" the default
5412
5413 =item Unicode collation and normalization
5414
5415 =item pack/unpack tutorial
5416
5417 =back
5418
5419 =back
5420
5421 =head2 perldoc - Look up Perl documentation in Pod format.
5422
5423 =over 4
5424
5425 =item SYNOPSIS
5426
5427 =item DESCRIPTION
5428
5429 =item OPTIONS
5430
5431 B<-h>, B<-v>, B<-t>, B<-u>, B<-m> I<module>, B<-l>, B<-F>, B<-f>
5432 I<perlfunc>, B<-q> I<perlfaq-search-regexp>, B<-T>, B<-d>
5433 I<destination-filename>, B<-o> I<output-formatname>, B<-M> I<module-name>,
5434 B<-w> I<option:value> or B<-w> I<option>, B<-X>,
5435 B<PageName|ModuleName|ProgramName>, B<-n> I<some-formatter>, B<-r>, B<-i>,
5436 B<-V>
5437
5438 =item SECURITY
5439
5440 =item ENVIRONMENT
5441
5442 =item AUTHOR
5443
5444 =back
5445
5446 =head2 perlhist - the Perl history records
5447
5448 =over 4
5449
5450 =item DESCRIPTION
5451
5452 =item INTRODUCTION
5453
5454 =item THE KEEPERS OF THE PUMPKIN
5455
5456 =over 4
5457
5458 =item PUMPKIN?
5459
5460 =back
5461
5462 =item THE RECORDS
5463
5464 =over 4
5465
5466 =item SELECTED RELEASE SIZES
5467
5468 =item SELECTED PATCH SIZES
5469
5470 =back
5471
5472 =item THE KEEPERS OF THE RECORDS
5473
5474 =back
5475
5476 =head2 perldelta - what is new for perl v5.9.0
5477
5478 =over 4
5479
5480 =item DESCRIPTION
5481
5482 =item Incompatible Changes
5483
5484 =over 4
5485
5486 =item The C<$*> variable has been removed
5487
5488 =back
5489
5490 =item Core Enhancements
5491
5492 =over 4
5493
5494 =item Tied Arrays with Negative Array Indices
5495
5496 =back
5497
5498 =item Modules and Pragmata
5499
5500 =item Utility Changes
5501
5502 =item New Documentation
5503
5504 =item Performance Enhancements
5505
5506 =item Installation and Configuration Improvements
5507
5508 =item Selected Bug Fixes
5509
5510 =item New or Changed Diagnostics
5511
5512 =item Changed Internals
5513
5514 =item New Tests
5515
5516 =item Known Problems
5517
5518 =item Platform Specific Problems
5519
5520 =item Reporting Bugs
5521
5522 =item SEE ALSO
5523
5524 =back
5525
5526 =head2 perl58delta, perldelta - what is new for perl v5.8.0
5527
5528 =over 4
5529
5530 =item DESCRIPTION
5531
5532 =item Highlights In 5.8.0
5533
5534 =item Incompatible Changes
5535
5536 =over 4
5537
5538 =item Binary Incompatibility
5539
5540 =item 64-bit platforms and malloc
5541
5542 =item AIX Dynaloading
5543
5544 =item Attributes for C<my> variables now handled at run-time
5545
5546 =item Socket Extension Dynamic in VMS
5547
5548 =item IEEE-format Floating Point Default on OpenVMS Alpha
5549
5550 =item New Unicode Semantics (no more C<use utf8>, almost)
5551
5552 =item New Unicode Properties
5553
5554 =item REF(...) Instead Of SCALAR(...)
5555
5556 =item pack/unpack D/F recycled
5557
5558 =item glob() now returns filenames in alphabetical order
5559
5560 =item Deprecations
5561
5562 =back
5563
5564 =item Core Enhancements
5565
5566 =over 4
5567
5568 =item Unicode Overhaul
5569
5570 =item PerlIO is Now The Default
5571
5572 =item ithreads
5573
5574 =item Restricted Hashes
5575
5576 =item Safe Signals
5577
5578 =item Understanding of Numbers
5579
5580 =item Arrays now always interpolate into double-quoted strings [561]
5581
5582 =item Miscellaneous Changes
5583
5584 =back
5585
5586 =item Modules and Pragmata
5587
5588 =over 4
5589
5590 =item New Modules and Pragmata
5591
5592 =item Updated And Improved Modules and Pragmata
5593
5594 =back
5595
5596 =item Utility Changes
5597
5598 =item New Documentation
5599
5600 =item Performance Enhancements
5601
5602 =item Installation and Configuration Improvements
5603
5604 =over 4
5605
5606 =item Generic Improvements
5607
5608 =item New Or Improved Platforms
5609
5610 =back
5611
5612 =item Selected Bug Fixes
5613
5614 =over 4
5615
5616 =item Platform Specific Changes and Fixes
5617
5618 =back
5619
5620 =item New or Changed Diagnostics
5621
5622 =item Changed Internals
5623
5624 =item Security Vulnerability Closed [561]
5625
5626 =item New Tests
5627
5628 =item Known Problems
5629
5630 =over 4
5631
5632 =item The Compiler Suite Is Still Very Experimental
5633
5634 =item Localising Tied Arrays and Hashes Is Broken
5635
5636 =item Building Extensions Can Fail Because Of Largefiles
5637
5638 =item Modifying $_ Inside for(..)
5639
5640 =item mod_perl 1.26 Doesn't Build With Threaded Perl
5641
5642 =item lib/ftmp-security tests warn 'system possibly insecure'
5643
5644 =item libwww-perl (LWP) fails base/date #51
5645
5646 =item PDL failing some tests
5647
5648 =item Perl_get_sv
5649
5650 =item Self-tying Problems
5651
5652 =item ext/threads/t/libc
5653
5654 =item Failure of Thread (5.005-style) tests
5655
5656 =item Timing problems
5657
5658 =item Tied/Magical Array/Hash Elements Do Not Autovivify
5659
5660 =item Unicode in package/class and subroutine names does not work
5661
5662 =back
5663
5664 =item Platform Specific Problems
5665
5666 =over 4
5667
5668 =item AIX
5669
5670 =item Alpha systems with old gccs fail several tests
5671
5672 =item AmigaOS
5673
5674 =item BeOS
5675
5676 =item Cygwin "unable to remap"
5677
5678 =item Cygwin ndbm tests fail on FAT
5679
5680 =item DJGPP Failures
5681
5682 =item FreeBSD built with ithreads coredumps reading large directories
5683
5684 =item FreeBSD Failing locale Test 117 For ISO 8859-15 Locales
5685
5686 =item IRIX fails ext/List/Util/t/shuffle.t or Digest::MD5
5687
5688 =item HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5689
5690 =item Linux with glibc 2.2.5 fails t/op/int subtest #6 with -Duse64bitint
5691
5692 =item Linux With Sfio Fails op/misc Test 48
5693
5694 =item Mac OS X
5695
5696 =item Mac OS X dyld undefined symbols
5697
5698 =item OS/2 Test Failures
5699
5700 =item op/sprintf tests 91, 129, and 130
5701
5702 =item SCO
5703
5704 =item Solaris 2.5
5705
5706 =item Solaris x86 Fails Tests With -Duse64bitint
5707
5708 =item SUPER-UX (NEC SX)
5709
5710 =item Term::ReadKey not working on Win32
5711
5712 =item UNICOS/mk
5713
5714 =item UTS
5715
5716 =item VOS (Stratus)
5717
5718 =item VMS
5719
5720 =item Win32
5721
5722 =item XML::Parser not working
5723
5724 =item z/OS (OS/390)
5725
5726 =item Unicode Support on EBCDIC Still Spotty
5727
5728 =item Seen In Perl 5.7 But Gone Now
5729
5730 =back
5731
5732 =item Reporting Bugs
5733
5734 =item SEE ALSO
5735
5736 =item HISTORY
5737
5738 =back
5739
5740 =head2 perl573delta - what's new for perl v5.7.3
5741
5742 =over 4
5743
5744 =item DESCRIPTION
5745
5746 =item Changes
5747
5748 =item Reporting Bugs
5749
5750 =item SEE ALSO
5751
5752 =item HISTORY
5753
5754 =back
5755
5756 =head2 perl572delta - what's new for perl v5.7.2
5757
5758 =over 4
5759
5760 =item DESCRIPTION
5761
5762 =item Security Vulnerability Closed
5763
5764 =item Incompatible Changes
5765
5766 =over 4
5767
5768 =item 64-bit platforms and malloc
5769
5770 =item AIX Dynaloading
5771
5772 =item Socket Extension Dynamic in VMS
5773
5774 =item Different Definition of the Unicode Character Classes \p{In...}
5775
5776 =item Deprecations
5777
5778 =back
5779
5780 =item Core Enhancements
5781
5782 =item Modules and Pragmata
5783
5784 =over 4
5785
5786 =item New Modules and Distributions
5787
5788 =item Updated And Improved Modules and Pragmata
5789
5790 =back
5791
5792 =item Utility Changes
5793
5794 =item New Documentation
5795
5796 =item Installation and Configuration Improvements
5797
5798 =over 4
5799
5800 =item New Or Improved Platforms
5801
5802 =item Generic Improvements
5803
5804 =back
5805
5806 =item Selected Bug Fixes
5807
5808 =over 4
5809
5810 =item Platform Specific Changes and Fixes
5811
5812 =back
5813
5814 =item New or Changed Diagnostics
5815
5816 =item Source Code Enhancements
5817
5818 =over 4
5819
5820 =item MAGIC constants
5821
5822 =item Better commented code
5823
5824 =item Regex pre-/post-compilation items matched up
5825
5826 =item gcc -Wall
5827
5828 =back
5829
5830 =item New Tests
5831
5832 =item Known Problems
5833
5834 =over 4
5835
5836 =item AIX
5837
5838 =item Amiga Perl Invoking Mystery
5839
5840 =item lib/ftmp-security tests warn 'system possibly insecure'
5841
5842 =item Cygwin intermittent failures of lib/Memoize/t/expire_file 11 and 12
5843
5844 =item HP-UX lib/io_multihomed Fails When LP64-Configured
5845
5846 =item  HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5847
5848 =item Linux With Sfio Fails op/misc Test 48
5849
5850 =item OS/390
5851
5852 =item op/sprintf tests 129 and 130
5853
5854 =item  Failure of Thread tests
5855
5856 =item UNICOS
5857
5858 =item UTS
5859
5860 =item VMS
5861
5862 =item Win32
5863
5864 =item Localising a Tied Variable Leaks Memory
5865
5866 =item Self-tying of Arrays and Hashes Is Forbidden
5867
5868 =item Variable Attributes are not Currently Usable for Tieing
5869
5870 =item Building Extensions Can Fail Because Of Largefiles
5871
5872 =item The Compiler Suite Is Still Experimental
5873
5874 =item The Long Double Support is Still Experimental
5875
5876 =back
5877
5878 =item Reporting Bugs
5879
5880 =item SEE ALSO
5881
5882 =item HISTORY
5883
5884 =back
5885
5886 =head2 perl571delta - what's new for perl v5.7.1
5887
5888 =over 4
5889
5890 =item DESCRIPTION
5891
5892 =item Security Vulnerability Closed
5893
5894 =item Incompatible Changes
5895
5896 =item Core Enhancements
5897
5898 =over 4
5899
5900 =item AUTOLOAD Is Now Lvaluable
5901
5902 =item PerlIO is Now The Default
5903
5904 =item Signals Are Now Safe
5905
5906 =back
5907
5908 =item Modules and Pragmata
5909
5910 =over 4
5911
5912 =item New Modules
5913
5914 =item Updated And Improved Modules and Pragmata
5915
5916 =back
5917
5918 =item Performance Enhancements
5919
5920 =item Utility Changes
5921
5922 =item New Documentation
5923
5924 =over 4
5925
5926 =item perlclib
5927
5928 =item perliol
5929
5930 =item README.aix
5931
5932 =item README.bs2000
5933
5934 =item README.macos
5935
5936 =item README.mpeix
5937
5938 =item README.solaris
5939
5940 =item README.vos
5941
5942 =item Porting/repository.pod
5943
5944 =back
5945
5946 =item Installation and Configuration Improvements
5947
5948 =over 4
5949
5950 =item New Or Improved Platforms
5951
5952 =item Generic Improvements
5953
5954 d_cmsghdr, d_fcntl_can_lock, d_fsync, d_getitimer, d_getpagsz, d_msghdr_s,
5955 need_va_copy, d_readv, d_recvmsg, d_sendmsg, sig_size, d_sockatmark,
5956 d_strtoq, d_u32align, d_ualarm, d_usleep
5957
5958 =back
5959
5960 =item Selected Bug Fixes
5961
5962 =over 4
5963
5964 =item Platform Specific Changes and Fixes
5965
5966 =back
5967
5968 =item New or Changed Diagnostics
5969
5970 =item Changed Internals
5971
5972 =item New Tests
5973
5974 =item Known Problems
5975
5976 =over 4
5977
5978 =item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
5979
5980 =item lib/ftmp-security tests warn 'system possibly insecure'
5981
5982 =item lib/io_multihomed Fails In LP64-Configured HP-UX
5983
5984 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5985
5986 =item lib/b test 19
5987
5988 =item Linux With Sfio Fails op/misc Test 48
5989
5990 =item sigaction test 13 in VMS
5991
5992 =item sprintf tests 129 and 130
5993
5994 =item  Failure of Thread tests
5995
5996 =item Localising a Tied Variable Leaks Memory
5997
5998 =item Self-tying of Arrays and Hashes Is Forbidden
5999
6000 =item Building Extensions Can Fail Because Of Largefiles
6001
6002 =item The Compiler Suite Is Still Experimental
6003
6004 =back
6005
6006 =item Reporting Bugs
6007
6008 =item SEE ALSO
6009
6010 =item HISTORY
6011
6012 =back
6013
6014 =head2 perl570delta - what's new for perl v5.7.0
6015
6016 =over 4
6017
6018 =item DESCRIPTION
6019
6020 =item Security Vulnerability Closed
6021
6022 =item Incompatible Changes
6023
6024 =item Core Enhancements
6025
6026 =item Modules and Pragmata
6027
6028 =over 4
6029
6030 =item New Modules
6031
6032 =item Updated And Improved Modules and Pragmata
6033
6034 =back
6035
6036 =item Utility Changes
6037
6038 =item New Documentation
6039
6040 =item Performance Enhancements
6041
6042 =item Installation and Configuration Improvements
6043
6044 =over 4
6045
6046 =item Generic Improvements
6047
6048 =back
6049
6050 =item Selected Bug Fixes
6051
6052 =over 4
6053
6054 =item Platform Specific Changes and Fixes
6055
6056 =back
6057
6058 =item New or Changed Diagnostics
6059
6060 =item Changed Internals
6061
6062 =item Known Problems
6063
6064 =over 4
6065
6066 =item Unicode Support Still Far From Perfect
6067
6068 =item EBCDIC Still A Lost Platform
6069
6070 =item Building Extensions Can Fail Because Of Largefiles
6071
6072 =item ftmp-security tests warn 'system possibly insecure'
6073
6074 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
6075
6076 =item Long Doubles Still Don't Work In Solaris
6077
6078 =item Linux With Sfio Fails op/misc Test 48
6079
6080 =item Storable tests fail in some platforms
6081
6082 =item Threads Are Still Experimental
6083
6084 =item The Compiler Suite Is Still Experimental
6085
6086 =back
6087
6088 =item Reporting Bugs
6089
6090 =item SEE ALSO
6091
6092 =item HISTORY
6093
6094 =back
6095
6096 =head2 perl561delta - what's new for perl v5.6.x
6097
6098 =over 4
6099
6100 =item DESCRIPTION
6101
6102 =item Summary of changes between 5.6.0 and 5.6.1
6103
6104 =over 4
6105
6106 =item Security Issues
6107
6108 =item Core bug fixes
6109
6110 C<UNIVERSAL::isa()>, Memory leaks, Numeric conversions, qw(a\\b), caller(),
6111 Bugs in regular expressions, "slurp" mode, Autovivification of symbolic
6112 references to special variables, Lexical warnings, Spurious warnings and
6113 errors, glob(), Tainting, sort(), #line directives, Subroutine prototypes,
6114 map(), Debugger, PERL5OPT, chop(), Unicode support, 64-bit support,
6115 Compiler, Lvalue subroutines, IO::Socket, File::Find, xsubpp, C<no
6116 Module;>, Tests
6117
6118 =item Core features
6119
6120 =item Configuration issues
6121
6122 =item Documentation
6123
6124 =item Bundled modules
6125
6126 B::Concise, File::Temp, Pod::LaTeX, Pod::Text::Overstrike, CGI, CPAN,
6127 Class::Struct, DB_File, Devel::Peek, File::Find, Getopt::Long, IO::Poll,
6128 IPC::Open3, Math::BigFloat, Math::Complex, Net::Ping, Opcode, Pod::Parser,
6129 Pod::Text, SDBM_File, Sys::Syslog, Tie::RefHash, Tie::SubstrHash
6130
6131 =item Platform-specific improvements
6132
6133 NCR MP-RAS, NonStop-UX
6134
6135 =back
6136
6137 =item Core Enhancements
6138
6139 =over 4
6140
6141 =item Interpreter cloning, threads, and concurrency
6142
6143 =item Lexically scoped warning categories
6144
6145 =item Unicode and UTF-8 support
6146
6147 =item Support for interpolating named characters
6148
6149 =item "our" declarations
6150
6151 =item Support for strings represented as a vector of ordinals
6152
6153 =item Improved Perl version numbering system
6154
6155 =item New syntax for declaring subroutine attributes
6156
6157 =item File and directory handles can be autovivified
6158
6159 =item open() with more than two arguments
6160
6161 =item 64-bit support
6162
6163 =item Large file support
6164
6165 =item Long doubles
6166
6167 =item "more bits"
6168
6169 =item Enhanced support for sort() subroutines
6170
6171 =item C<sort $coderef @foo> allowed
6172
6173 =item File globbing implemented internally
6174
6175 =item Support for CHECK blocks
6176
6177 =item POSIX character class syntax [: :] supported
6178
6179 =item Better pseudo-random number generator
6180
6181 =item Improved C<qw//> operator
6182
6183 =item Better worst-case behavior of hashes
6184
6185 =item pack() format 'Z' supported
6186
6187 =item pack() format modifier '!' supported
6188
6189 =item pack() and unpack() support counted strings
6190
6191 =item Comments in pack() templates
6192
6193 =item Weak references
6194
6195 =item Binary numbers supported
6196
6197 =item Lvalue subroutines
6198
6199 =item Some arrows may be omitted in calls through references
6200
6201 =item Boolean assignment operators are legal lvalues
6202
6203 =item exists() is supported on subroutine names
6204
6205 =item exists() and delete() are supported on array elements
6206
6207 =item Pseudo-hashes work better
6208
6209 =item Automatic flushing of output buffers
6210
6211 =item Better diagnostics on meaningless filehandle operations
6212
6213 =item Where possible, buffered data discarded from duped input filehandle
6214
6215 =item eof() has the same old magic as <>
6216
6217 =item binmode() can be used to set :crlf and :raw modes
6218
6219 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
6220
6221 =item system(), backticks and pipe open now reflect exec() failure
6222
6223 =item Improved diagnostics
6224
6225 =item Diagnostics follow STDERR
6226
6227 =item More consistent close-on-exec behavior
6228
6229 =item syswrite() ease-of-use
6230
6231 =item Better syntax checks on parenthesized unary operators
6232
6233 =item Bit operators support full native integer width
6234
6235 =item Improved security features
6236
6237 =item More functional bareword prototype (*)
6238
6239 =item C<require> and C<do> may be overridden
6240
6241 =item $^X variables may now have names longer than one character
6242
6243 =item New variable $^C reflects C<-c> switch
6244
6245 =item New variable $^V contains Perl version as a string
6246
6247 =item Optional Y2K warnings
6248
6249 =item Arrays now always interpolate into double-quoted strings
6250
6251 =back
6252
6253 =item Modules and Pragmata
6254
6255 =over 4
6256
6257 =item Modules
6258
6259 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6260 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6261 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6262 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6263 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6264 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6265 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6266 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6267
6268 =item Pragmata
6269
6270 =back
6271
6272 =item Utility Changes
6273
6274 =over 4
6275
6276 =item dprofpp
6277
6278 =item find2perl
6279
6280 =item h2xs
6281
6282 =item perlcc
6283
6284 =item perldoc
6285
6286 =item The Perl Debugger
6287
6288 =back
6289
6290 =item Improved Documentation
6291
6292 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6293 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6294 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6295 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6296
6297 =item Performance enhancements
6298
6299 =over 4
6300
6301 =item Simple sort() using { $a <=> $b } and the like are optimized
6302
6303 =item Optimized assignments to lexical variables
6304
6305 =item Faster subroutine calls
6306
6307 =item delete(), each(), values() and hash iteration are faster
6308
6309 =back
6310
6311 =item Installation and Configuration Improvements
6312
6313 =over 4
6314
6315 =item -Dusethreads means something different
6316
6317 =item New Configure flags
6318
6319 =item Threadedness and 64-bitness now more daring
6320
6321 =item Long Doubles
6322
6323 =item -Dusemorebits
6324
6325 =item -Duselargefiles
6326
6327 =item installusrbinperl
6328
6329 =item SOCKS support
6330
6331 =item C<-A> flag
6332
6333 =item Enhanced Installation Directories
6334
6335 =item gcc automatically tried if 'cc' does not seem to be working
6336
6337 =back
6338
6339 =item Platform specific changes
6340
6341 =over 4
6342
6343 =item Supported platforms
6344
6345 =item DOS
6346
6347 =item OS390 (OpenEdition MVS)
6348
6349 =item VMS
6350
6351 =item Win32
6352
6353 =back
6354
6355 =item Significant bug fixes
6356
6357 =over 4
6358
6359 =item <HANDLE> on empty files
6360
6361 =item C<eval '...'> improvements
6362
6363 =item All compilation errors are true errors
6364
6365 =item Implicitly closed filehandles are safer
6366
6367 =item Behavior of list slices is more consistent
6368
6369 =item C<(\$)> prototype and C<$foo{a}>
6370
6371 =item C<goto &sub> and AUTOLOAD
6372
6373 =item C<-bareword> allowed under C<use integer>
6374
6375 =item Failures in DESTROY()
6376
6377 =item Locale bugs fixed
6378
6379 =item Memory leaks
6380
6381 =item Spurious subroutine stubs after failed subroutine calls
6382
6383 =item Taint failures under C<-U>
6384
6385 =item END blocks and the C<-c> switch
6386
6387 =item Potential to leak DATA filehandles
6388
6389 =back
6390
6391 =item New or Changed Diagnostics
6392
6393 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6394 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6395 / cannot take a count, / must be followed by a, A or Z, / must be followed
6396 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6397 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6398 passed through, /%s/ should probably be written as "%s", %s() called too
6399 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6400 argument is not a HASH or ARRAY element or slice, %s argument is not a
6401 subroutine name, %s package attribute may clash with future reserved word:
6402 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6403 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6404 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6405 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6406 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6407 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6408 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6409 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6410 weaken a nonreference, Character class [:%s:] unknown, Character class
6411 syntax [%s] belongs inside character classes, Constant is not %s reference,
6412 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6413 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6414 "local" instead of "our"?), Document contains no data, entering effective
6415 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6416 output, flock() on closed filehandle %s, Global symbol "%s" requires
6417 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6418 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6419 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6420 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6421 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6422 separator character %s in attribute list, Invalid separator character %s in
6423 subroutine attribute list, leaving effective %s failed, Lvalue subs
6424 returning %s not implemented yet, Method %s not permitted, Missing
6425 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6426 No %s specified for -%c, No package name allowed for variable %s in "our",
6427 No space allowed after -%c, no UTC offset information; assuming local time
6428 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6429 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6430 around "%s" list, Possible unintended interpolation of %s in string,
6431 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6432 instead, Premature end of script headers, Repeat count in pack overflows,
6433 Repeat count in unpack overflows, realloc() of freed memory ignored,
6434 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6435 zero-length expression, switching effective %s is not implemented, This
6436 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6437 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6438 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6439 escape \\%c passed through, Unterminated attribute parameter in attribute
6440 list, Unterminated attribute list, Unterminated attribute parameter in
6441 subroutine attribute list, Unterminated subroutine attribute list, Value of
6442 CLI symbol "%s" too long, Version number must be a constant number
6443
6444 =item New tests
6445
6446 =item Incompatible Changes
6447
6448 =over 4
6449
6450 =item Perl Source Incompatibilities
6451
6452 CHECK is a new keyword, Treatment of list slices of undef has changed,
6453 Format of $English::PERL_VERSION is different, Literals of the form
6454 C<1.2.3> parse differently, Possibly changed pseudo-random number
6455 generator, Hashing function for hash keys has changed, C<undef> fails on
6456 read only values, Close-on-exec bit may be set on pipe and socket handles,
6457 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6458 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6459 Text of some diagnostic output has changed, C<%@> has been removed,
6460 Parenthesized not() behaves like a list operator, Semantics of bareword
6461 prototype C<(*)> have changed, Semantics of bit operators may have changed
6462 on 64-bit platforms, More builtins taint their results
6463
6464 =item C Source Incompatibilities
6465
6466 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6467
6468 =item Compatible C Source API Changes
6469
6470 C<PATCHLEVEL> is now C<PERL_VERSION>
6471
6472 =item Binary Incompatibilities
6473
6474 =back
6475
6476 =item Known Problems
6477
6478 =over 4
6479
6480 =item Localizing a tied hash element may leak memory
6481
6482 =item Known test failures
6483
6484 =item EBCDIC platforms not fully supported
6485
6486 =item UNICOS/mk CC failures during Configure run
6487
6488 =item Arrow operator and arrays
6489
6490 =item Experimental features
6491
6492 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6493 pseudo-hash data type, The Compiler suite, Internal implementation of file
6494 globbing, The DB module, The regular expression code constructs:
6495
6496 =back
6497
6498 =item Obsolete Diagnostics
6499
6500 Character class syntax [: :] is reserved for future extensions, Ill-formed
6501 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6502 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6503 to mean "${$}<digit>" is deprecated
6504
6505 =item Reporting Bugs
6506
6507 =item SEE ALSO
6508
6509 =item HISTORY
6510
6511 =back
6512
6513 =head2 perl56delta - what's new for perl v5.6.0
6514
6515 =over 4
6516
6517 =item DESCRIPTION
6518
6519 =item Core Enhancements
6520
6521 =over 4
6522
6523 =item Interpreter cloning, threads, and concurrency
6524
6525 =item Lexically scoped warning categories
6526
6527 =item Unicode and UTF-8 support
6528
6529 =item Support for interpolating named characters
6530
6531 =item "our" declarations
6532
6533 =item Support for strings represented as a vector of ordinals
6534
6535 =item Improved Perl version numbering system
6536
6537 =item New syntax for declaring subroutine attributes
6538
6539 =item File and directory handles can be autovivified
6540
6541 =item open() with more than two arguments
6542
6543 =item 64-bit support
6544
6545 =item Large file support
6546
6547 =item Long doubles
6548
6549 =item "more bits"
6550
6551 =item Enhanced support for sort() subroutines
6552
6553 =item C<sort $coderef @foo> allowed
6554
6555 =item File globbing implemented internally
6556
6557 =item Support for CHECK blocks
6558
6559 =item POSIX character class syntax [: :] supported
6560
6561 =item Better pseudo-random number generator
6562
6563 =item Improved C<qw//> operator
6564
6565 =item Better worst-case behavior of hashes
6566
6567 =item pack() format 'Z' supported
6568
6569 =item pack() format modifier '!' supported
6570
6571 =item pack() and unpack() support counted strings
6572
6573 =item Comments in pack() templates
6574
6575 =item Weak references
6576
6577 =item Binary numbers supported
6578
6579 =item Lvalue subroutines
6580
6581 =item Some arrows may be omitted in calls through references
6582
6583 =item Boolean assignment operators are legal lvalues
6584
6585 =item exists() is supported on subroutine names
6586
6587 =item exists() and delete() are supported on array elements
6588
6589 =item Pseudo-hashes work better
6590
6591 =item Automatic flushing of output buffers
6592
6593 =item Better diagnostics on meaningless filehandle operations
6594
6595 =item Where possible, buffered data discarded from duped input filehandle
6596
6597 =item eof() has the same old magic as <>
6598
6599 =item binmode() can be used to set :crlf and :raw modes
6600
6601 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
6602
6603 =item system(), backticks and pipe open now reflect exec() failure
6604
6605 =item Improved diagnostics
6606
6607 =item Diagnostics follow STDERR
6608
6609 =item More consistent close-on-exec behavior
6610
6611 =item syswrite() ease-of-use
6612
6613 =item Better syntax checks on parenthesized unary operators
6614
6615 =item Bit operators support full native integer width
6616
6617 =item Improved security features
6618
6619 =item More functional bareword prototype (*)
6620
6621 =item C<require> and C<do> may be overridden
6622
6623 =item $^X variables may now have names longer than one character
6624
6625 =item New variable $^C reflects C<-c> switch
6626
6627 =item New variable $^V contains Perl version as a string
6628
6629 =item Optional Y2K warnings
6630
6631 =item Arrays now always interpolate into double-quoted strings
6632
6633 =back
6634
6635 =item Modules and Pragmata
6636
6637 =over 4
6638
6639 =item Modules
6640
6641 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6642 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6643 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6644 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6645 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6646 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6647 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6648 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6649
6650 =item Pragmata
6651
6652 =back
6653
6654 =item Utility Changes
6655
6656 =over 4
6657
6658 =item dprofpp
6659
6660 =item find2perl
6661
6662 =item h2xs
6663
6664 =item perlcc
6665
6666 =item perldoc
6667
6668 =item The Perl Debugger
6669
6670 =back
6671
6672 =item Improved Documentation
6673
6674 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6675 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6676 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6677 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6678
6679 =item Performance enhancements
6680
6681 =over 4
6682
6683 =item Simple sort() using { $a <=> $b } and the like are optimized
6684
6685 =item Optimized assignments to lexical variables
6686
6687 =item Faster subroutine calls
6688
6689 =item delete(), each(), values() and hash iteration are faster
6690
6691 =back
6692
6693 =item Installation and Configuration Improvements
6694
6695 =over 4
6696
6697 =item -Dusethreads means something different
6698
6699 =item New Configure flags
6700
6701 =item Threadedness and 64-bitness now more daring
6702
6703 =item Long Doubles
6704
6705 =item -Dusemorebits
6706
6707 =item -Duselargefiles
6708
6709 =item installusrbinperl
6710
6711 =item SOCKS support
6712
6713 =item C<-A> flag
6714
6715 =item Enhanced Installation Directories
6716
6717 =back
6718
6719 =item Platform specific changes
6720
6721 =over 4
6722
6723 =item Supported platforms
6724
6725 =item DOS
6726
6727 =item OS390 (OpenEdition MVS)
6728
6729 =item VMS
6730
6731 =item Win32
6732
6733 =back
6734
6735 =item Significant bug fixes
6736
6737 =over 4
6738
6739 =item <HANDLE> on empty files
6740
6741 =item C<eval '...'> improvements
6742
6743 =item All compilation errors are true errors
6744
6745 =item Implicitly closed filehandles are safer
6746
6747 =item Behavior of list slices is more consistent
6748
6749 =item C<(\$)> prototype and C<$foo{a}>
6750
6751 =item C<goto &sub> and AUTOLOAD
6752
6753 =item C<-bareword> allowed under C<use integer>
6754
6755 =item Failures in DESTROY()
6756
6757 =item Locale bugs fixed
6758
6759 =item Memory leaks
6760
6761 =item Spurious subroutine stubs after failed subroutine calls
6762
6763 =item Taint failures under C<-U>
6764
6765 =item END blocks and the C<-c> switch
6766
6767 =item Potential to leak DATA filehandles
6768
6769 =back
6770
6771 =item New or Changed Diagnostics
6772
6773 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6774 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6775 / cannot take a count, / must be followed by a, A or Z, / must be followed
6776 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6777 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6778 passed through, /%s/ should probably be written as "%s", %s() called too
6779 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6780 argument is not a HASH or ARRAY element or slice, %s argument is not a
6781 subroutine name, %s package attribute may clash with future reserved word:
6782 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6783 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6784 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6785 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6786 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6787 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6788 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6789 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6790 weaken a nonreference, Character class [:%s:] unknown, Character class
6791 syntax [%s] belongs inside character classes, Constant is not %s reference,
6792 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6793 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6794 "local" instead of "our"?), Document contains no data, entering effective
6795 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6796 output, flock() on closed filehandle %s, Global symbol "%s" requires
6797 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6798 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6799 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6800 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6801 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6802 separator character %s in attribute list, Invalid separator character %s in
6803 subroutine attribute list, leaving effective %s failed, Lvalue subs
6804 returning %s not implemented yet, Method %s not permitted, Missing
6805 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6806 No %s specified for -%c, No package name allowed for variable %s in "our",
6807 No space allowed after -%c, no UTC offset information; assuming local time
6808 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6809 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6810 around "%s" list, Possible unintended interpolation of %s in string,
6811 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6812 instead, Premature end of script headers, Repeat count in pack overflows,
6813 Repeat count in unpack overflows, realloc() of freed memory ignored,
6814 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6815 zero-length expression, switching effective %s is not implemented, This
6816 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6817 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6818 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6819 escape \\%c passed through, Unterminated attribute parameter in attribute
6820 list, Unterminated attribute list, Unterminated attribute parameter in
6821 subroutine attribute list, Unterminated subroutine attribute list, Value of
6822 CLI symbol "%s" too long, Version number must be a constant number
6823
6824 =item New tests
6825
6826 =item Incompatible Changes
6827
6828 =over 4
6829
6830 =item Perl Source Incompatibilities
6831
6832 CHECK is a new keyword, Treatment of list slices of undef has changed,
6833 Format of $English::PERL_VERSION is different, Literals of the form
6834 C<1.2.3> parse differently, Possibly changed pseudo-random number
6835 generator, Hashing function for hash keys has changed, C<undef> fails on
6836 read only values, Close-on-exec bit may be set on pipe and socket handles,
6837 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6838 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6839 Text of some diagnostic output has changed, C<%@> has been removed,
6840 Parenthesized not() behaves like a list operator, Semantics of bareword
6841 prototype C<(*)> have changed, Semantics of bit operators may have changed
6842 on 64-bit platforms, More builtins taint their results
6843
6844 =item C Source Incompatibilities
6845
6846 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6847
6848 =item Compatible C Source API Changes
6849
6850 C<PATCHLEVEL> is now C<PERL_VERSION>
6851
6852 =item Binary Incompatibilities
6853
6854 =back
6855
6856 =item Known Problems
6857
6858 =over 4
6859
6860 =item Thread test failures
6861
6862 =item EBCDIC platforms not supported
6863
6864 =item In 64-bit HP-UX the lib/io_multihomed test may hang
6865
6866 =item NEXTSTEP 3.3 POSIX test failure
6867
6868 =item Tru64 (aka Digital UNIX, aka DEC OSF/1) lib/sdbm test failure with
6869 gcc
6870
6871 =item UNICOS/mk CC failures during Configure run
6872
6873 =item Arrow operator and arrays
6874
6875 =item Experimental features
6876
6877 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6878 pseudo-hash data type, The Compiler suite, Internal implementation of file
6879 globbing, The DB module, The regular expression code constructs:
6880
6881 =back
6882
6883 =item Obsolete Diagnostics
6884
6885 Character class syntax [: :] is reserved for future extensions, Ill-formed
6886 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6887 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6888 to mean "${$}<digit>" is deprecated
6889
6890 =item Reporting Bugs
6891
6892 =item SEE ALSO
6893
6894 =item HISTORY
6895
6896 =back
6897
6898 =head2 perl5005delta - what's new for perl5.005
6899
6900 =over 4
6901
6902 =item DESCRIPTION
6903
6904 =item About the new versioning system
6905
6906 =item Incompatible Changes
6907
6908 =over 4
6909
6910 =item WARNING:  This version is not binary compatible with Perl 5.004.
6911
6912 =item Default installation structure has changed
6913
6914 =item Perl Source Compatibility
6915
6916 =item C Source Compatibility
6917
6918 =item Binary Compatibility
6919
6920 =item Security fixes may affect compatibility
6921
6922 =item Relaxed new mandatory warnings introduced in 5.004
6923
6924 =item Licensing
6925
6926 =back
6927
6928 =item Core Changes
6929
6930 =over 4
6931
6932 =item Threads
6933
6934 =item Compiler
6935
6936 =item Regular Expressions
6937
6938 Many new and improved optimizations, Many bug fixes, New regular expression
6939 constructs, New operator for precompiled regular expressions, Other
6940 improvements, Incompatible changes
6941
6942 =item   Improved malloc()
6943
6944 =item Quicksort is internally implemented
6945
6946 =item Reliable signals
6947
6948 =item Reliable stack pointers
6949
6950 =item More generous treatment of carriage returns
6951
6952 =item Memory leaks
6953
6954 =item Better support for multiple interpreters
6955
6956 =item Behavior of local() on array and hash elements is now well-defined
6957
6958 =item C<%!> is transparently tied to the L<Errno> module
6959
6960 =item Pseudo-hashes are supported
6961
6962 =item C<EXPR foreach EXPR> is supported
6963
6964 =item Keywords can be globally overridden
6965
6966 =item C<$^E> is meaningful on Win32
6967
6968 =item C<foreach (1..1000000)> optimized
6969
6970 =item C<Foo::> can be used as implicitly quoted package name
6971
6972 =item C<exists $Foo::{Bar::}> tests existence of a package
6973
6974 =item Better locale support
6975
6976 =item Experimental support for 64-bit platforms
6977
6978 =item prototype() returns useful results on builtins
6979
6980 =item Extended support for exception handling
6981
6982 =item Re-blessing in DESTROY() supported for chaining DESTROY() methods
6983
6984 =item All C<printf> format conversions are handled internally
6985
6986 =item New C<INIT> keyword
6987
6988 =item New C<lock> keyword
6989
6990 =item New C<qr//> operator
6991
6992 =item C<our> is now a reserved word
6993
6994 =item Tied arrays are now fully supported
6995
6996 =item Tied handles support is better
6997
6998 =item 4th argument to substr
6999
7000 =item Negative LENGTH argument to splice
7001
7002 =item Magic lvalues are now more magical
7003
7004 =item <> now reads in records
7005
7006 =back
7007
7008 =item Supported Platforms
7009
7010 =over 4
7011
7012 =item New Platforms
7013
7014 =item Changes in existing support
7015
7016 =back
7017
7018 =item Modules and Pragmata
7019
7020 =over 4
7021
7022 =item New Modules
7023
7024 B, Data::Dumper, Dumpvalue, Errno, File::Spec, ExtUtils::Installed,
7025 ExtUtils::Packlist, Fatal, IPC::SysV, Test, Tie::Array, Tie::Handle,
7026 Thread, attrs, fields, re
7027
7028 =item Changes in existing modules
7029
7030 Benchmark, Carp, CGI, Fcntl, Math::Complex, Math::Trig, POSIX, DB_File,
7031 MakeMaker, CPAN, Cwd
7032
7033 =back
7034
7035 =item Utility Changes
7036
7037 =item Documentation Changes
7038
7039 =item New Diagnostics
7040
7041 Ambiguous call resolved as CORE::%s(), qualify as such or use &, Bad index
7042 while coercing array into hash, Bareword "%s" refers to nonexistent
7043 package, Can't call method "%s" on an undefined value, Can't check
7044 filesystem of script "%s" for nosuid, Can't coerce array into hash, Can't
7045 goto subroutine from an eval-string, Can't localize pseudo-hash element,
7046 Can't use %%! because Errno.pm is not available, Cannot find an opnumber
7047 for "%s", Character class syntax [. .] is reserved for future extensions,
7048 Character class syntax [: :] is reserved for future extensions, Character
7049 class syntax [= =] is reserved for future extensions, %s: Eval-group in
7050 insecure regular expression, %s: Eval-group not allowed, use re 'eval', %s:
7051 Eval-group not allowed at run time, Explicit blessing to '' (assuming
7052 package main), Illegal hex digit ignored, No such array field, No such
7053 field "%s" in variable %s of type %s, Out of memory during ridiculously
7054 large request, Range iterator outside integer range, Recursive inheritance
7055 detected while looking for method '%s' %s, Reference found where even-sized
7056 list expected, Undefined value assigned to typeglob, Use of reserved word
7057 "%s" is deprecated, perl: warning: Setting locale failed
7058
7059 =item Obsolete Diagnostics
7060
7061 Can't mktemp(), Can't write to temp file for B<-e>: %s, Cannot open
7062 temporary file, regexp too big
7063
7064 =item Configuration Changes
7065
7066 =item BUGS
7067
7068 =item SEE ALSO
7069
7070 =item HISTORY
7071
7072 =back
7073
7074 =head2 perl5004delta - what's new for perl5.004
7075
7076 =over 4
7077
7078 =item DESCRIPTION
7079
7080 =item Supported Environments
7081
7082 =item Core Changes
7083
7084 =over 4
7085
7086 =item List assignment to %ENV works
7087
7088 =item Change to "Can't locate Foo.pm in @INC" error
7089
7090 =item Compilation option: Binary compatibility with 5.003
7091
7092 =item $PERL5OPT environment variable
7093
7094 =item Limitations on B<-M>, B<-m>, and B<-T> options
7095
7096 =item More precise warnings
7097
7098 =item Deprecated: Inherited C<AUTOLOAD> for non-methods
7099
7100 =item Previously deprecated %OVERLOAD is no longer usable
7101
7102 =item Subroutine arguments created only when they're modified
7103
7104 =item Group vector changeable with C<$)>
7105
7106 =item Fixed parsing of $$<digit>, &$<digit>, etc.
7107
7108 =item Fixed localization of $<digit>, $&, etc.
7109
7110 =item No resetting of $. on implicit close
7111
7112 =item C<wantarray> may return undef
7113
7114 =item C<eval EXPR> determines value of EXPR in scalar context
7115
7116 =item Changes to tainting checks
7117
7118 No glob() or <*>, No spawning if tainted $CDPATH, $ENV, $BASH_ENV, No
7119 spawning if tainted $TERM doesn't look like a terminal name
7120
7121 =item New Opcode module and revised Safe module
7122
7123 =item Embedding improvements
7124
7125 =item Internal change: FileHandle class based on IO::* classes
7126
7127 =item Internal change: PerlIO abstraction interface
7128
7129 =item New and changed syntax
7130
7131 $coderef->(PARAMS)
7132
7133 =item New and changed builtin constants
7134
7135 __PACKAGE__
7136
7137 =item New and changed builtin variables
7138
7139 $^E, $^H, $^M
7140
7141 =item New and changed builtin functions
7142
7143 delete on slices, flock, printf and sprintf, keys as an lvalue, my() in
7144 Control Structures, pack() and unpack(), sysseek(), use VERSION, use Module
7145 VERSION LIST, prototype(FUNCTION), srand, $_ as Default, C<m//gc> does not
7146 reset search position on failure, C<m//x> ignores whitespace before ?*+{},
7147 nested C<sub{}> closures work now, formats work right on changing lexicals
7148
7149 =item New builtin methods
7150
7151 isa(CLASS), can(METHOD), VERSION( [NEED] )
7152
7153 =item TIEHANDLE now supported
7154
7155 TIEHANDLE classname, LIST, PRINT this, LIST, PRINTF this, LIST, READ this
7156 LIST, READLINE this, GETC this, DESTROY this
7157
7158 =item Malloc enhancements
7159
7160 -DPERL_EMERGENCY_SBRK, -DPACK_MALLOC, -DTWO_POT_OPTIMIZE
7161
7162 =item Miscellaneous efficiency enhancements
7163
7164 =back
7165
7166 =item Support for More Operating Systems
7167
7168 =over 4
7169
7170 =item Win32
7171
7172 =item Plan 9
7173
7174 =item QNX
7175
7176 =item AmigaOS
7177
7178 =back
7179
7180 =item Pragmata
7181
7182 use autouse MODULE => qw(sub1 sub2 sub3), use blib, use blib 'dir', use
7183 constant NAME => VALUE, use locale, use ops, use vmsish
7184
7185 =item Modules
7186
7187 =over 4
7188
7189 =item Required Updates
7190
7191 =item Installation directories
7192
7193 =item Module information summary
7194
7195 =item Fcntl
7196
7197 =item IO
7198
7199 =item Math::Complex
7200
7201 =item Math::Trig
7202
7203 =item DB_File
7204
7205 =item Net::Ping
7206
7207 =item Object-oriented overrides for builtin operators
7208
7209 =back
7210
7211 =item Utility Changes
7212
7213 =over 4
7214
7215 =item pod2html
7216
7217 Sends converted HTML to standard output
7218
7219 =item xsubpp
7220
7221 C<void> XSUBs now default to returning nothing
7222
7223 =back
7224
7225 =item C Language API Changes
7226
7227 C<gv_fetchmethod> and C<perl_call_sv>, C<perl_eval_pv>, Extended API for
7228 manipulating hashes
7229
7230 =item Documentation Changes
7231
7232 L<perldelta>, L<perlfaq>, L<perllocale>, L<perltoot>, L<perlapio>,
7233 L<perlmodlib>, L<perldebug>, L<perlsec>
7234
7235 =item New Diagnostics
7236
7237 "my" variable %s masks earlier declaration in same scope, %s argument is
7238 not a HASH element or slice, Allocation too large: %lx, Allocation too
7239 large, Applying %s to %s will act on scalar(%s), Attempt to free
7240 nonexistent shared string, Attempt to use reference as lvalue in substr,
7241 Bareword "%s" refers to nonexistent package, Can't redefine active sort
7242 subroutine %s, Can't use bareword ("%s") as %s ref while "strict refs" in
7243 use, Cannot resolve method `%s' overloading `%s' in package `%s', Constant
7244 subroutine %s redefined, Constant subroutine %s undefined, Copy method did
7245 not return a reference, Died, Exiting pseudo-block via %s, Identifier too
7246 long, Illegal character %s (carriage return), Illegal switch in PERL5OPT:
7247 %s, Integer overflow in hex number, Integer overflow in octal number,
7248 internal error: glob failed, Invalid conversion in %s: "%s", Invalid type
7249 in pack: '%s', Invalid type in unpack: '%s', Name "%s::%s" used only once:
7250 possible typo, Null picture in formline, Offset outside string, Out of
7251 memory!, Out of memory during request for %s, panic: frexp, Possible
7252 attempt to put comments in qw() list, Possible attempt to separate words
7253 with commas, Scalar value @%s{%s} better written as $%s{%s}, Stub found
7254 while resolving method `%s' overloading `%s' in %s, Too late for "B<-T>"
7255 option, untie attempted while %d inner references still exist, Unrecognized
7256 character %s, Unsupported function fork, Use of "$$<digit>" to mean
7257 "${$}<digit>" is deprecated, Value of %s can be "0"; test with defined(),
7258 Variable "%s" may be unavailable, Variable "%s" will not stay shared,
7259 Warning: something's wrong, Ill-formed logical name |%s| in prime_env_iter,
7260 Got an error from DosAllocMem, Malformed PERLLIB_PREFIX, PERL_SH_DIR too
7261 long, Process terminated by SIG%s
7262
7263 =item BUGS
7264
7265 =item SEE ALSO
7266
7267 =item HISTORY
7268
7269 =back
7270
7271 =head2 perlartistic - the Perl Artistic License
7272
7273 =over 4
7274
7275 =item SYNOPSIS
7276
7277 =item DESCRIPTION
7278
7279 =item The "Artistic License"
7280
7281 =over 4
7282
7283 =item Preamble
7284
7285 =item Definitions
7286
7287 "Package", "Standard Version", "Copyright Holder", "You", "Reasonable
7288 copying fee", "Freely Available"
7289
7290 =item Conditions
7291
7292 a), b), c), d), a), b), c), d)
7293
7294 =back
7295
7296 =back
7297
7298 =head2 perlgpl - the GNU General Public License, version 2
7299
7300 =over 4
7301
7302 =item SYNOPSIS
7303
7304 =back
7305
7306 =over 4
7307
7308 =item DESCRIPTION
7309
7310 =item GNU GENERAL PUBLIC LICENSE
7311
7312 =back
7313
7314 =head2 perlaix, README.aix - Perl version 5 on IBM Unix (AIX) systems
7315
7316 =over 4
7317
7318 =item DESCRIPTION
7319
7320 =over 4
7321
7322 =item Compiling Perl 5 on AIX
7323
7324 =item OS level
7325
7326 =item Building Dynamic Extensions on AIX
7327
7328 =item The IBM ANSI C Compiler
7329
7330 =item Using GNU's gcc for building perl
7331
7332 =item Using Large Files with Perl
7333
7334 =item Threaded Perl
7335
7336 =item 64-bit Perl
7337
7338 =item AIX 4.2 and extensions using C++ with statics
7339
7340 =back
7341
7342 =item AUTHOR
7343
7344 =item DATE
7345
7346 =back
7347
7348 =head2 perlamiga - Perl under Amiga OS
7349
7350 =over 4
7351
7352 =item NOTE
7353
7354 =item SYNOPSIS
7355
7356 =back
7357
7358 =over 4
7359
7360 =item DESCRIPTION
7361
7362 =over 4
7363
7364 =item Prerequisites for Compiling Perl on AmigaOS
7365
7366 B<Unix emulation for AmigaOS: ixemul.library>, B<Version of Amiga OS>
7367
7368 =item Starting Perl programs under AmigaOS
7369
7370 =item Shortcomings of Perl under AmigaOS
7371
7372 =back
7373
7374 =item INSTALLATION
7375
7376 =item Accessing documentation
7377
7378 =over 4
7379
7380 =item Manpages for Perl on AmigaOS
7381
7382 =item Perl HTML Documentation on AmigaOS
7383
7384 =item Perl GNU Info Files on AmigaOS
7385
7386 =item Perl LaTeX Documentation on AmigaOS
7387
7388 =back
7389
7390 =item BUILDING PERL ON AMIGAOS
7391
7392 =over 4
7393
7394 =item Build Prerequisites for Perl on AmigaOS
7395
7396 =item Getting the Perl Source for AmigaOS
7397
7398 =item Making Perl on AmigaOS
7399
7400 =item Testing Perl on AmigaOS
7401
7402 =item Installing the built Perl on AmigaOS
7403
7404 =back
7405
7406 =item PERL 5.8.0 BROKEN IN AMIGAOS
7407
7408 =item AUTHORS
7409
7410 =item SEE ALSO
7411
7412 =back
7413
7414 =head2 perlapollo, README.apollo - Perl version 5 on Apollo DomainOS
7415
7416 =over 4
7417
7418 =item DESCRIPTION
7419
7420 =item AUTHOR
7421
7422 =back
7423
7424 =head2 perlbeos, README.beos - Perl version 5 on BeOS
7425
7426 =over 4
7427
7428 =item DESCRIPTION
7429
7430 =over 4
7431
7432 =item General Issues with Perl on BeOS
7433
7434 =item BeOS Release-specific Notes
7435
7436 R4 x86, R4 PPC
7437
7438 =item Contact Information
7439
7440 =item Update 2002-05-30
7441
7442 =back
7443
7444 =back
7445
7446 =head2 perlbs2000, README.BS2000 - building and installing Perl for BS2000.
7447
7448 =over 4
7449
7450 =item SYNOPSIS
7451
7452 =item DESCRIPTION
7453
7454 =over 4
7455
7456 =item gzip on BS2000
7457
7458 =item bison on BS2000
7459
7460 =item Unpacking Perl Distribution on BS2000
7461
7462 =item Compiling Perl on BS2000
7463
7464 =item Testing Perl on BS2000
7465
7466 =item Installing Perl on BS2000
7467
7468 =item Using Perl in the Posix-Shell of BS2000
7469
7470 =item Using Perl in "native" BS2000
7471
7472 =item Floating point anomalies on BS2000
7473
7474 =back
7475
7476 =item AUTHORS
7477
7478 =item SEE ALSO
7479
7480 =over 4
7481
7482 =item Mailing list
7483
7484 =back
7485
7486 =item HISTORY
7487
7488 =back
7489
7490 =over 4
7491
7492 =item Name
7493
7494 =item Description
7495
7496 =item Build
7497
7498 =over 4
7499
7500 =item Tools & SDK
7501
7502 Microsoft Embedded Visual Tools, Microsoft Visual C++, Rainer Keuchel's
7503 celib-sources, Rainer Keuchel's console-sources
7504
7505 =item Make
7506
7507 go to ./wince subdirectory, edit file compile.bat, run    compile.bat, run 
7508   compile.bat dist
7509
7510 =back
7511
7512 =item Acknowledgements
7513
7514 =item AUTHORS
7515
7516 =back
7517
7518 =head2 perlcygwin, README.cygwin - Perl for Cygwin
7519
7520 =over 4
7521
7522 =item SYNOPSIS
7523
7524 =item PREREQUISITES FOR COMPILING PERL ON CYGWIN
7525
7526 =over 4
7527
7528 =item Cygwin = GNU+Cygnus+Windows (Don't leave UNIX without it)
7529
7530 =item Cygwin Configuration
7531
7532 C<PATH>, I<nroff>, Permissions
7533
7534 =back
7535
7536 =item CONFIGURE PERL ON CYGWIN
7537
7538 =over 4
7539
7540 =item Stripping Perl Binaries on Cygwin
7541
7542 =item Optional Libraries for Perl on Cygwin
7543
7544 C<-lcrypt>, C<-lgdbm> (C<use GDBM_File>), C<-ldb> (C<use DB_File>),
7545 C<-lcygipc> (C<use IPC::SysV>), C<-lutil>
7546
7547 =item Configure-time Options for Perl on Cygwin
7548
7549 C<-Uusedl>, C<-Uusemymalloc>, C<-Uuseperlio>, C<-Dusemultiplicity>,
7550 C<-Duse64bitint>, C<-Duselongdouble>, C<-Dusethreads>, C<-Duselargefiles>,
7551 C<-Dmksymlinks>
7552
7553 =item Suspicious Warnings on Cygwin
7554
7555 I<dlsym()>, Win9x and C<d_eofnblk>, Compiler/Preprocessor defines
7556
7557 =back
7558
7559 =item MAKE ON CYGWIN
7560
7561 =over 4
7562
7563 =item Errors on Cygwin
7564
7565 =item ld2 on Cygwin
7566
7567 =back
7568
7569 =item TEST ON CYGWIN
7570
7571 =over 4
7572
7573 =item File Permissions on Cygwin
7574
7575 =item NDBM_File and ODBM_File do not work on FAT filesystems
7576
7577 =item C<fork()> failures in io_* tests
7578
7579 =item Script Portability on Cygwin
7580
7581 Pathnames, Text/Binary, PerlIO, F<.exe>, C<chown()>, Miscellaneous
7582
7583 =back
7584
7585 =item INSTALL PERL ON CYGWIN
7586
7587 =item MANIFEST ON CYGWIN
7588
7589 Documentation, Build, Configure, Make, Install, Tests, Compiled Perl
7590 Source, Compiled Module Source, Perl Modules/Scripts
7591
7592 =item BUGS ON CYGWIN
7593
7594 =item AUTHORS
7595
7596 =item HISTORY
7597
7598 =back
7599
7600 =head2 perldgux - Perl under DG/UX.
7601
7602 =over 4
7603
7604 =item SYNOPSIS
7605
7606 =back
7607
7608 =over 4
7609
7610 =item DESCRIPTION
7611
7612 =item BUILDING PERL ON DG/UX
7613
7614 =over 4
7615
7616 =item Non-threaded Perl on DG/UX
7617
7618 =item Threaded Perl on DG/UX
7619
7620 =item Testing Perl on DG/UX
7621
7622 =item Installing the built perl on DG/UX
7623
7624 =back
7625
7626 =item AUTHOR
7627
7628 =item SEE ALSO
7629
7630 =back
7631
7632 =head2 perldos - Perl under DOS, W31, W95.
7633
7634 =over 4
7635
7636 =item SYNOPSIS
7637
7638 =item DESCRIPTION
7639
7640 =over 4
7641
7642 =item Prerequisites for Compiling Perl on DOS
7643
7644 DJGPP, Pthreads
7645
7646 =item Shortcomings of Perl under DOS
7647
7648 =item Building Perl on DOS
7649
7650 =item Testing Perl on DOS
7651
7652 =item Installation of Perl on DOS
7653
7654 =back
7655
7656 =item BUILDING AND INSTALLING MODULES ON DOS
7657
7658 =over 4
7659
7660 =item Building Prerequisites for Perl on DOS
7661
7662 =item Unpacking CPAN Modules on DOS
7663
7664 =item Building Non-XS Modules on DOS
7665
7666 =item Building XS Modules on DOS
7667
7668 =back
7669
7670 =item AUTHOR
7671
7672 =item SEE ALSO
7673
7674 =back
7675
7676 =head2 perlepoc, README.epoc - Perl for EPOC
7677
7678 =over 4
7679
7680 =item SYNOPSIS
7681
7682 =item INTRODUCTION
7683
7684 =item INSTALLING PERL ON EPOC
7685
7686 =item STARTING PERL ON EPOC
7687
7688 =over 4
7689
7690 =item Editors on Epoc
7691
7692 =item Features of Perl on Epoc
7693
7694 =item Restrictions of Perl on Epoc
7695
7696 =item Compiling Perl 5 on the EPOC cross compiling environment
7697
7698 =back
7699
7700 =item SUPPORT STATUS OF PERL ON EPOC
7701
7702 =item AUTHOR
7703
7704 =item LAST UPDATE
7705
7706 =back
7707
7708 =head2 perlfreebsd, README.freebsd - Perl version 5 on FreeBSD systems
7709
7710 =over 4
7711
7712 =item DESCRIPTION
7713
7714 =over 4
7715
7716 =item FreeBSD core dumps from readdir_r with ithreads
7717
7718 =item $^X doesn't always contain a full path in FreeBSD
7719
7720 =item Perl will no longer be part of "base FreeBSD"
7721
7722 =back
7723
7724 =item AUTHOR
7725
7726 =back
7727
7728 =head2 perlhpux, README.hpux - Perl version 5 on Hewlett-Packard Unix
7729 (HP-UX) systems
7730
7731 =over 4
7732
7733 =item DESCRIPTION
7734
7735 =over 4
7736
7737 =item Using perl as shipped with HP-UX
7738
7739 =item Using perl from HP's porting centre
7740
7741 =item Compiling Perl 5 on HP-UX
7742
7743 =item PA-RISC
7744
7745 =item PA-RISC 1.0
7746
7747 =item PA-RISC 1.1
7748
7749 =item PA-RISC 2.0
7750
7751 =item Itanium
7752
7753 =item Portability Between PA-RISC Versions
7754
7755 =item Itanium Processor Family and HP-UX
7756
7757 =item Building Dynamic Extensions on HP-UX
7758
7759 =item The HP ANSI C Compiler
7760
7761 =item The GNU C Compiler
7762
7763 =item Using Large Files with Perl on HP-UX
7764
7765 =item Threaded Perl on HP-UX
7766
7767 =item 64-bit Perl on HP-UX
7768
7769 =item Oracle on HP-UX
7770
7771 =item GDBM and Threads on HP-UX
7772
7773 =item NFS filesystems and utime(2) on HP-UX
7774
7775 =item perl -P and // and HP-UX
7776
7777 =item HP-UX Kernel Parameters (maxdsiz) for Compiling Perl
7778
7779 =back
7780
7781 =item nss_delete core dump from op/pwent or op/grent
7782
7783 =item AUTHOR
7784
7785 =item DATE
7786
7787 =back
7788
7789 =head2 perlhurd, README.hurd - Perl version 5 on Hurd
7790
7791 =over 4
7792
7793 =item DESCRIPTION
7794
7795 =over 4
7796
7797 =item Known Problems with Perl on Hurd 
7798
7799 =back
7800
7801 =item AUTHOR
7802
7803 =back
7804
7805 =head2 perlirix, README.irix - Perl version 5 on Irix systems
7806
7807 =over 4
7808
7809 =item DESCRIPTION
7810
7811 =over 4
7812
7813 =item Building 32-bit Perl in Irix
7814
7815 =item Building 64-bit Perl in Irix
7816
7817 =item About Compiler Versions of Irix
7818
7819 =item Linker Problems in Irix
7820
7821 =item Malloc in Irix
7822
7823 =item Building with threads in Irix
7824
7825 =item Irix 5.3
7826
7827 =back
7828
7829 =item AUTHOR
7830
7831 =back
7832
7833 =head2 perlmachten, README.machten - Perl version 5 on Power MachTen
7834 systems
7835
7836 =over 4
7837
7838 =item DESCRIPTION
7839
7840 =over 4
7841
7842 =item Compiling Perl 5 on MachTen
7843
7844 =item Failures during C<make test> on MachTen
7845
7846 op/lexassign.t, pragma/warnings.t
7847
7848 =item Building external modules on MachTen
7849
7850 =back
7851
7852 =item AUTHOR
7853
7854 =item DATE
7855
7856 =back
7857
7858 =head2 perlmacos, README.macos - Perl under Mac OS (Classic)
7859
7860 =over 4
7861
7862 =item SYNOPSIS
7863
7864 =item DESCRIPTION
7865
7866 =item AUTHOR
7867
7868 =item DATE
7869
7870 =back
7871
7872 =head2 perlmacosx, README.macosx - Perl under Mac OS X
7873
7874 =over 4
7875
7876 =item SYNOPSIS
7877
7878 =item DESCRIPTION
7879
7880 =over 4
7881
7882 =item Installation Prefix
7883
7884 =item libperl and Prebinding
7885
7886 =item Updating Panther
7887
7888 =item Known problems
7889
7890 =item MacPerl
7891
7892 =item Carbon
7893
7894 =item Cocoa
7895
7896 =back
7897
7898 =item AUTHOR
7899
7900 =item DATE
7901
7902 =back
7903
7904 =head2 perlmint, README.mint - Perl version 5 on Atari MiNT
7905
7906 =over 4
7907
7908 =item DESCRIPTION
7909
7910 =item Known problems with Perl on MiNT
7911
7912 =item AUTHOR
7913
7914 =back
7915
7916 =head2 perlmpeix, README.mpeix - Perl/iX for HP e3000 MPE
7917
7918 =over 4
7919
7920 =item SYNOPSIS
7921
7922 =item NOTE
7923
7924 =item Binary distribution from HP
7925
7926 =item What's New in Perl for MPE/iX
7927
7928 =item Welcome to Perl/iX
7929
7930 =item System Requirements for Perl/iX
7931
7932 =item How to Obtain Perl/iX
7933
7934 =item Perl/iX Distribution Contents Highlights
7935
7936 README, INSTALL, LIBSHP3K, PERL, .cpan/, lib/, man/,
7937 public_html/feedback.cgi, src/perl-5.6.0-mpe
7938
7939 =item How to Compile Perl/iX
7940
7941  4,  6
7942
7943 =item Getting Started with Perl/iX
7944
7945 =item MPE/iX Implementation Considerations
7946
7947 =item Known Perl/iX Bugs Under Investigation
7948
7949 =item Perl/iX To-Do List
7950
7951 =item Perl/iX Change History
7952
7953 =item AUTHOR
7954
7955 =item Name
7956
7957 =item Description
7958
7959 =item Build
7960
7961 =over 4
7962
7963 =item Tools & SDK
7964
7965 =item Setup
7966
7967 SetNWBld.bat, Buildtype.bat
7968
7969 =item Make
7970
7971 =item Interpreter
7972
7973 =item Extensions
7974
7975 =back
7976
7977 =item Install
7978
7979 =item Build new extensions
7980
7981 =item Acknowledgements
7982
7983 =item Authors
7984
7985 =item Date
7986
7987 =back
7988
7989 =head2 perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
7990
7991 =over 4
7992
7993 =item SYNOPSIS
7994
7995 =back
7996
7997 =over 4
7998
7999 =item DESCRIPTION
8000
8001 =over 4
8002
8003 =item Target
8004
8005 =item Other OSes
8006
8007 =item Prerequisites
8008
8009 EMX, RSX, HPFS, pdksh
8010
8011 =item Starting Perl programs under OS/2 (and DOS and...)
8012
8013 =item Starting OS/2 (and DOS) programs under Perl
8014
8015 =back
8016
8017 =item Frequently asked questions
8018
8019 =over 4
8020
8021 =item "It does not work"
8022
8023 =item I cannot run external programs
8024
8025 =item I cannot embed perl into my program, or use F<perl.dll> from my
8026 program. 
8027
8028 Is your program EMX-compiled with C<-Zmt -Zcrtdll>?, Did you use
8029 L<ExtUtils::Embed>?
8030
8031 =item C<``> and pipe-C<open> do not work under DOS.
8032
8033 =item Cannot start C<find.exe "pattern" file>
8034
8035 =back
8036
8037 =item INSTALLATION
8038
8039 =over 4
8040
8041 =item Automatic binary installation
8042
8043 C<PERL_BADLANG>, C<PERL_BADFREE>, F<Config.pm>
8044
8045 =item Manual binary installation
8046
8047 Perl VIO and PM executables (dynamically linked), Perl_ VIO executable
8048 (statically linked), Executables for Perl utilities, Main Perl library,
8049 Additional Perl modules, Tools to compile Perl modules, Manpages for Perl
8050 and utilities, Manpages for Perl modules, Source for Perl documentation,
8051 Perl manual in F<.INF> format, Pdksh
8052
8053 =item B<Warning>
8054
8055 =back
8056
8057 =item Accessing documentation
8058
8059 =over 4
8060
8061 =item OS/2 F<.INF> file
8062
8063 =item Plain text
8064
8065 =item Manpages
8066
8067 =item HTML
8068
8069 =item GNU C<info> files
8070
8071 =item F<PDF> files
8072
8073 =item C<LaTeX> docs
8074
8075 =back
8076
8077 =item BUILD
8078
8079 =over 4
8080
8081 =item The short story
8082
8083 =item Prerequisites
8084
8085 =item Getting perl source
8086
8087 =item Application of the patches
8088
8089 =item Hand-editing
8090
8091 =item Making
8092
8093 =item Testing
8094
8095 A lot of C<bad free>, Process terminated by SIGTERM/SIGINT, F<op/fs.t>,
8096 F<op/stat.t>
8097
8098 =item Installing the built perl
8099
8100 =item C<a.out>-style build
8101
8102 =back
8103
8104 =item Build FAQ
8105
8106 =over 4
8107
8108 =item Some C</> became C<\> in pdksh.
8109
8110 =item C<'errno'> - unresolved external
8111
8112 =item Problems with tr or sed
8113
8114 =item Some problem (forget which ;-)
8115
8116 =item Library ... not found
8117
8118 =item Segfault in make
8119
8120 =item op/sprintf test failure
8121
8122 =back
8123
8124 =item Specific (mis)features of OS/2 port
8125
8126 =over 4
8127
8128 =item C<setpriority>, C<getpriority>
8129
8130 =item C<system()>
8131
8132 =item C<extproc> on the first line
8133
8134 =item Additional modules:
8135
8136 =item Prebuilt methods:
8137
8138 C<File::Copy::syscopy>, C<DynaLoader::mod2fname>,  C<Cwd::current_drive()>,
8139  C<Cwd::sys_chdir(name)>,  C<Cwd::change_drive(name)>, 
8140 C<Cwd::sys_is_absolute(name)>,  C<Cwd::sys_is_rooted(name)>, 
8141 C<Cwd::sys_is_relative(name)>,  C<Cwd::sys_cwd(name)>, 
8142 C<Cwd::sys_abspath(name, dir)>,  C<Cwd::extLibpath([type])>, 
8143 C<Cwd::extLibpath_set( path [, type ] )>,
8144 C<OS2::Error(do_harderror,do_exception)>, C<OS2::Errors2Drive(drive)>,
8145 OS2::SysInfo(), OS2::BootDrive(), C<OS2::MorphPM(serve)>,
8146 C<OS2::UnMorphPM(serve)>, C<OS2::Serve_Messages(force)>,
8147 C<OS2::Process_Messages(force [, cnt])>, C<OS2::_control87(new,mask)>,
8148 OS2::get_control87(), C<OS2::set_control87_em(new=MCW_EM,mask=MCW_EM)>,
8149 C<OS2::DLLname([how [, \&xsub]])>
8150
8151 =item Prebuilt variables:
8152
8153 $OS2::emx_rev, $OS2::emx_env, $OS2::os_ver, $OS2::is_aout, $OS2::can_fork,
8154 $OS2::nsyserror
8155
8156 =item Misfeatures
8157
8158 =item Modifications
8159
8160 C<popen>, C<tmpnam>, C<tmpfile>, C<ctermid>, C<stat>, C<mkdir>, C<rmdir>,
8161 C<flock>
8162
8163 =item Identifying DLLs
8164
8165 =item Centralized management of resources
8166
8167 C<HAB>, C<HMQ>, Treating errors reported by OS/2 API,
8168 C<CheckOSError(expr)>, C<CheckWinError(expr)>, C<SaveWinError(expr)>,
8169 C<SaveCroakWinError(expr,die,name1,name2)>, C<WinError_2_Perl_rc>,
8170 C<FillWinError>, C<FillOSError(rc)>, Loading DLLs and ordinals in DLLs
8171
8172 =back
8173
8174 =item Perl flavors
8175
8176 =over 4
8177
8178 =item F<perl.exe>
8179
8180 =item F<perl_.exe>
8181
8182 =item F<perl__.exe>
8183
8184 =item F<perl___.exe>
8185
8186 =item Why strange names?
8187
8188 =item Why dynamic linking?
8189
8190 =item Why chimera build?
8191
8192 =back
8193
8194 =item ENVIRONMENT
8195
8196 =over 4
8197
8198 =item C<PERLLIB_PREFIX>
8199
8200 =item C<PERL_BADLANG>
8201
8202 =item C<PERL_BADFREE>
8203
8204 =item C<PERL_SH_DIR>
8205
8206 =item C<USE_PERL_FLOCK>
8207
8208 =item C<TMP> or C<TEMP>
8209
8210 =back
8211
8212 =item Evolution
8213
8214 =over 4
8215
8216 =item Text-mode filehandles
8217
8218 =item Priorities
8219
8220 =item DLL name mangling: pre 5.6.2
8221
8222 =item DLL name mangling: 5.6.2 and beyond
8223
8224 Global DLLs, specific DLLs, C<BEGINLIBPATH> and C<ENDLIBPATH>, F<.> from
8225 C<LIBPATH>
8226
8227 =item DLL forwarder generation
8228
8229 =item Threading
8230
8231 =item Calls to external programs
8232
8233 =item Memory allocation
8234
8235 =item Threads
8236
8237 C<COND_WAIT>, F<os2.c>
8238
8239 =back
8240
8241 =item BUGS
8242
8243 =back
8244
8245 =over 4
8246
8247 =item AUTHOR
8248
8249 =item SEE ALSO
8250
8251 =back
8252
8253 =head2 perlos390, README.os390 - building and installing Perl for OS/390
8254 and z/OS
8255
8256 =over 4
8257
8258 =item SYNOPSIS
8259
8260 =item DESCRIPTION
8261
8262 =over 4
8263
8264 =item Tools
8265
8266 =item Unpacking Perl distribution on OS/390
8267
8268 =item Setup and utilities for Perl on OS/390
8269
8270 =item Configure Perl on OS/390
8271
8272 =item Build, Test, Install Perl on OS/390
8273
8274 =item Build Anomalies with Perl on OS/390
8275
8276 =item Testing Anomalies with Perl on OS/390
8277
8278 =item Installation Anomalies with Perl on OS/390
8279
8280 =item Usage Hints for Perl on OS/390
8281
8282 =item Floating Point Anomalies with Perl on OS/390
8283
8284 =item Modules and Extensions for Perl on OS/390
8285
8286 =back
8287
8288 =item AUTHORS
8289
8290 =item SEE ALSO
8291
8292 =over 4
8293
8294 =item Mailing list for Perl on OS/390
8295
8296 =back
8297
8298 =item HISTORY
8299
8300 =back
8301
8302 =head2 perlos400, README.os400 - Perl version 5 on OS/400
8303
8304 =over 4
8305
8306 =item DESCRIPTION
8307
8308 =over 4
8309
8310 =item Compiling Perl for OS/400 PASE
8311
8312 =item Installing Perl in OS/400 PASE
8313
8314 =item Using Perl in OS/400 PASE
8315
8316 =item Known Problems
8317
8318 =item Perl on ILE
8319
8320 =back
8321
8322 =item AUTHORS
8323
8324 =back
8325
8326 =head2 perlplan9 - Plan 9-specific documentation for Perl
8327
8328 =over 4
8329
8330 =item DESCRIPTION
8331
8332 =over 4
8333
8334 =item Invoking Perl
8335
8336 =item What's in Plan 9 Perl
8337
8338 =item What's not in Plan 9 Perl
8339
8340 =item Perl5 Functions not currently supported in Plan 9 Perl
8341
8342 =item Signals in Plan 9 Perl
8343
8344 =back
8345
8346 =item COMPILING AND INSTALLING PERL ON PLAN 9
8347
8348 =over 4
8349
8350 =item Installing Perl Documentation on Plan 9
8351
8352 =back
8353
8354 =item BUGS
8355
8356 =item Revision date
8357
8358 =item AUTHOR
8359
8360 =back
8361
8362 =head2 perlqnx, README.qnx - Perl version 5 on QNX
8363
8364 =over 4
8365
8366 =item DESCRIPTION
8367
8368 =over 4
8369
8370 =item Required Software for Compiling Perl on QNX4
8371
8372 /bin/sh, ar, nm, cpp, make
8373
8374 =item Outstanding Issues with Perl on QNX4
8375
8376 =item QNX auxiliary files
8377
8378 qnx/ar, qnx/cpp
8379
8380 =item Outstanding issues with perl under QNX6
8381
8382 =back
8383
8384 =item AUTHOR
8385
8386 =back
8387
8388 =head2 perlsolaris, README.solaris - Perl version 5 on Solaris systems
8389
8390 =over 4
8391
8392 =item DESCRIPTION
8393
8394 =over 4
8395
8396 =item Solaris Version Numbers.
8397
8398 =back
8399
8400 =item RESOURCES
8401
8402 Solaris FAQ, Precompiled Binaries, Solaris Documentation
8403
8404 =item SETTING UP
8405
8406 =over 4
8407
8408 =item File Extraction Problems on Solaris.
8409
8410 =item Compiler and Related Tools on Solaris.
8411
8412 =item Environment for Compiling perl on Solaris
8413
8414 =back
8415
8416 =item RUN CONFIGURE.
8417
8418 =over 4
8419
8420 =item 64-bit perl on Solaris.
8421
8422 =item Threads in perl on Solaris.
8423
8424 =item Malloc Issues with perl on Solaris.
8425
8426 =back
8427
8428 =item MAKE PROBLEMS.
8429
8430 Dynamic Loading Problems With GNU as and GNU ld, ld.so.1: ./perl: fatal:
8431 relocation error:, dlopen: stub interception failed, #error "No
8432 DATAMODEL_NATIVE specified", sh: ar: not found
8433
8434 =item MAKE TEST
8435
8436 =over 4
8437
8438 =item op/stat.t test 4 in Solaris
8439
8440 =item nss_delete core dump from op/pwent or op/grent
8441
8442 =back
8443
8444 =item PREBUILT BINARIES OF PERL FOR SOLARIS.
8445
8446 =item RUNTIME ISSUES FOR PERL ON SOLARIS.
8447
8448 =over 4
8449
8450 =item Limits on Numbers of Open Files on Solaris.
8451
8452 =back
8453
8454 =item SOLARIS-SPECIFIC MODULES.
8455
8456 =item SOLARIS-SPECIFIC PROBLEMS WITH MODULES.
8457
8458 =over 4
8459
8460 =item Proc::ProcessTable on Solaris
8461
8462 =item BSD::Resource on Solaris
8463
8464 =item Net::SSLeay on Solaris
8465
8466 =back
8467
8468 =item AUTHOR
8469
8470 =item LAST MODIFIED
8471
8472 =back
8473
8474 =head2 perltru64, README.tru64 - Perl version 5 on Tru64 (formerly known as
8475 Digital UNIX formerly known as DEC OSF/1) systems
8476
8477 =over 4
8478
8479 =item DESCRIPTION
8480
8481 =over 4
8482
8483 =item Compiling Perl 5 on Tru64
8484
8485 =item Using Large Files with Perl on Tru64
8486
8487 =item Threaded Perl on Tru64
8488
8489 =item Long Doubles on Tru64
8490
8491 =item DB_File tests failing on Tru64
8492
8493 =item 64-bit Perl on Tru64
8494
8495 =item Warnings about floating-point overflow when compiling Perl on Tru64
8496
8497 =back
8498
8499 =item Testing Perl on Tru64
8500
8501 =item ext/ODBM_File/odbm Test Failing With Static Builds
8502
8503 =item Perl Fails Because Of Unresolved Symbol sockatmark
8504
8505 =item AUTHOR
8506
8507 =back
8508
8509 =head2 perluts - Perl under UTS
8510
8511 =over 4
8512
8513 =item SYNOPSIS
8514
8515 =item DESCRIPTION
8516
8517 =item BUILDING PERL ON UTS
8518
8519 =item Installing the built perl on UTS
8520
8521 =item AUTHOR
8522
8523 =back
8524
8525 =head2 perlvmesa, README.vmesa - building and installing Perl for VM/ESA.
8526
8527 =over 4
8528
8529 =item SYNOPSIS
8530
8531 =item DESCRIPTION
8532
8533 =over 4
8534
8535 =item Unpacking Perl Distribution on VM/ESA
8536
8537 =item Setup Perl and utilities on VM/ESA
8538
8539 =item Configure Perl on VM/ESA
8540
8541 =item Testing Anomalies of Perl on VM/ESA
8542
8543 =item Usage Hints for Perl on VM/ESA
8544
8545 =back
8546
8547 =item AUTHORS
8548
8549 =item SEE ALSO
8550
8551 =over 4
8552
8553 =item Mailing list for Perl on VM/ESA
8554
8555 =back
8556
8557 =back
8558
8559 =head2 perlvms - VMS-specific documentation for Perl
8560
8561 =over 4
8562
8563 =item DESCRIPTION
8564
8565 =item Installation
8566
8567 =item Organization of Perl Images
8568
8569 =over 4
8570
8571 =item Core Images
8572
8573 =item Perl Extensions
8574
8575 =item Installing static extensions
8576
8577 =item Installing dynamic extensions
8578
8579 =back
8580
8581 =item File specifications
8582
8583 =over 4
8584
8585 =item Syntax
8586
8587 =item Wildcard expansion
8588
8589 =item Pipes
8590
8591 =back
8592
8593 =item PERL5LIB and PERLLIB
8594
8595 =item Command line
8596
8597 =over 4
8598
8599 =item I/O redirection and backgrounding
8600
8601 =item Command line switches
8602
8603 -i, -S, -u
8604
8605 =back
8606
8607 =item Perl functions
8608
8609 File tests, backticks, binmode FILEHANDLE, crypt PLAINTEXT, USER, dump,
8610 exec LIST, fork, getpwent, getpwnam, getpwuid, gmtime, kill, qx//, select
8611 (system call), stat EXPR, system LIST, time, times, unlink LIST, utime
8612 LIST, waitpid PID,FLAGS
8613
8614 =item Perl variables
8615
8616 %ENV, CRTL_ENV, CLISYM_[LOCAL], Any other string, $!, $^E, $?, $|
8617
8618 =item Standard modules with VMS-specific differences
8619
8620 =over 4
8621
8622 =item SDBM_File
8623
8624 =back
8625
8626 =item Revision date
8627
8628 =item AUTHOR
8629
8630 =back
8631
8632 =head2 perlvos, README.vos - Perl for Stratus VOS
8633
8634 =over 4
8635
8636 =item SYNOPSIS
8637
8638 =item BUILDING PERL FOR VOS
8639
8640 =item INSTALLING PERL IN VOS
8641
8642 =item USING PERL IN VOS
8643
8644 =over 4
8645
8646 =item Restrictions of Perl on VOS
8647
8648 =item Handling of underflow and overflow
8649
8650 =back
8651
8652 =item TEST STATUS
8653
8654 =item SUPPORT STATUS
8655
8656 =item AUTHOR
8657
8658 =item LAST UPDATE
8659
8660 =back
8661
8662 =head2 perlwin32 - Perl under Windows
8663
8664 =over 4
8665
8666 =item SYNOPSIS
8667
8668 =item DESCRIPTION
8669
8670 =over 4
8671
8672 =item Setting Up Perl on Win32
8673
8674 Make, Command Shell, Borland C++, Microsoft Visual C++, Microsoft Platform
8675 SDK 64-bit Compiler, MinGW32 with gcc, MinGW release 1
8676
8677 =item Building
8678
8679 =item Testing Perl on Win32
8680
8681 =item Installation of Perl on Win32
8682
8683 =item Usage Hints for Perl on Win32
8684
8685 Environment Variables, File Globbing, Using perl from the command line,
8686 Building Extensions, Command-line Wildcard Expansion, Win32 Specific
8687 Extensions, Notes on 64-bit Windows
8688
8689 =item Running Perl Scripts
8690
8691 Miscellaneous Things
8692
8693 =back
8694
8695 =item BUGS AND CAVEATS
8696
8697 =item AUTHORS
8698
8699 Gary Ng E<lt>71564.1743@CompuServe.COME<gt>, Gurusamy Sarathy
8700 E<lt>gsar@activestate.comE<gt>, Nick Ing-Simmons
8701 E<lt>nick@ing-simmons.netE<gt>
8702
8703 =item SEE ALSO
8704
8705 =item HISTORY
8706
8707 =back
8708
8709 =head1 PRAGMA DOCUMENTATION
8710
8711 =head2 attrs - set/get attributes of a subroutine (deprecated)
8712
8713 =over 4
8714
8715 =item SYNOPSIS
8716
8717 =item DESCRIPTION
8718
8719 method, locked
8720
8721 =back
8722
8723 =head2 re - Perl pragma to alter regular expression behaviour
8724
8725 =over 4
8726
8727 =item SYNOPSIS
8728
8729 =item DESCRIPTION
8730
8731 =back
8732
8733 =head2 threadshared::shared, threads::shared - Perl extension for sharing
8734 data structures between threads
8735
8736 =over 4
8737
8738 =item SYNOPSIS
8739
8740 =item DESCRIPTION
8741
8742 =item EXPORT
8743
8744 =item FUNCTIONS
8745
8746 share VARIABLE, lock VARIABLE, cond_wait VARIABLE, cond_signal VARIABLE,
8747 cond_broadcast VARIABLE
8748
8749 =item NOTES
8750
8751 =item BUGS
8752
8753 =item AUTHOR
8754
8755 =item SEE ALSO
8756
8757 =back
8758
8759 =head2 threads - Perl extension allowing use of interpreter based threads
8760 from perl
8761
8762 =over 4
8763
8764 =item SYNOPSIS
8765
8766 =item DESCRIPTION
8767
8768 $thread = threads->create(function, LIST), $thread->join, $thread->detach,
8769 threads->self, $thread->tid, threads->object( tid ), threads->yield();,
8770 threads->list();, async BLOCK;
8771
8772 =item WARNINGS
8773
8774 A thread exited while %d other threads were still running
8775
8776 =item TODO
8777
8778 =item BUGS
8779
8780 Parent-Child threads, Returning objects, Creating threads inside BEGIN
8781 blocks, PERL_OLD_SIGNALS are not threadsafe, will not be
8782
8783 =item AUTHOR and COPYRIGHT
8784
8785 =item SEE ALSO
8786
8787 =back
8788
8789 =head2 assertions - select assertions in blocks of code
8790
8791 =over 4
8792
8793 =item SYNOPSIS
8794
8795 =item DESCRIPTION
8796
8797 =item SEE ALSO
8798
8799 =item AUTHOR
8800
8801 =item COPYRIGHT AND LICENSE
8802
8803 =back
8804
8805 =head2 assertions::activate - activate assertions
8806
8807 =over 4
8808
8809 =item SYNOPSIS
8810
8811 =item DESCRIPTION
8812
8813 =item SEE ALSO
8814
8815 =item AUTHOR
8816
8817 =item COPYRIGHT AND LICENSE
8818
8819 =back
8820
8821 =head2 attributes - get/set subroutine or variable attributes
8822
8823 =over 4
8824
8825 =item SYNOPSIS
8826
8827 =item DESCRIPTION
8828
8829 =over 4
8830
8831 =item Built-in Attributes
8832
8833 locked, method, lvalue
8834
8835 =item Available Subroutines
8836
8837 get, reftype
8838
8839 =item Package-specific Attribute Handling
8840
8841 FETCH_I<type>_ATTRIBUTES, MODIFY_I<type>_ATTRIBUTES
8842
8843 =item Syntax of Attribute Lists
8844
8845 =back
8846
8847 =item EXPORTS
8848
8849 =over 4
8850
8851 =item Default exports
8852
8853 =item Available exports
8854
8855 =item Export tags defined
8856
8857 =back
8858
8859 =item EXAMPLES
8860
8861 =item SEE ALSO
8862
8863 =back
8864
8865 =head2 autouse - postpone load of modules until a function is used
8866
8867 =over 4
8868
8869 =item SYNOPSIS
8870
8871 =item DESCRIPTION
8872
8873 =item WARNING
8874
8875 =item AUTHOR
8876
8877 =item SEE ALSO
8878
8879 =back
8880
8881 =head2 base - Establish IS-A relationship with base class at compile time
8882
8883 =over 4
8884
8885 =item SYNOPSIS
8886
8887 =item DESCRIPTION
8888
8889 =item HISTORY
8890
8891 =item SEE ALSO
8892
8893 =back
8894
8895 =head2 bigint - Transparent BigInteger support for Perl
8896
8897 =over 4
8898
8899 =item SYNOPSIS
8900
8901 =item DESCRIPTION
8902
8903 =over 4
8904
8905 =item OPTIONS
8906
8907 a or accuracy, p or precision, t or trace, l or lib, v or version
8908
8909 =item MATH LIBRARY
8910
8911 =item INTERNAL FORMAT
8912
8913 =item SIGN
8914
8915 =item METHODS
8916
8917 =item CAVEAT
8918
8919 =back
8920
8921 =item MODULES USED
8922
8923 =item EXAMPLES
8924
8925 =item LICENSE
8926
8927 =item SEE ALSO
8928
8929 =item AUTHORS
8930
8931 =back
8932
8933 =head2 bignum - Transparent BigNumber support for Perl
8934
8935 =over 4
8936
8937 =item SYNOPSIS
8938
8939 =item DESCRIPTION
8940
8941 =over 4
8942
8943 =item OPTIONS
8944
8945 a or accuracy, p or precision, t or trace, l or lib, v or version
8946
8947 =item METHODS
8948
8949 =item CAVEAT
8950
8951 inf(), NaN(), upgrade()
8952
8953 =item MATH LIBRARY
8954
8955 =item INTERNAL FORMAT
8956
8957 =item SIGN
8958
8959 =back
8960
8961 =item MODULES USED
8962
8963 =item EXAMPLES
8964
8965 =item LICENSE
8966
8967 =item SEE ALSO
8968
8969 =item AUTHORS
8970
8971 =back
8972
8973 =head2 bigrat - Transparent BigNumber/BigRationale support for Perl
8974
8975 =over 4
8976
8977 =item SYNOPSIS
8978
8979 =item DESCRIPTION
8980
8981 =over 4
8982
8983 =item MODULES USED
8984
8985 =item MATH LIBRARY
8986
8987 =item SIGN
8988
8989 =item METHODS
8990
8991 =item CAVEAT
8992
8993 =back
8994
8995 =item EXAMPLES
8996
8997         perl -Mbigrat -le 'print sqrt(33)'
8998         perl -Mbigrat -le 'print 2*255'
8999         perl -Mbigrat -le 'print 4.5+2*255'
9000         perl -Mbigrat -le 'print 3/7 + 5/7 + 8/3'       
9001         perl -Mbigrat -le 'print 12->is_odd()';
9002
9003 =item LICENSE
9004
9005 =item SEE ALSO
9006
9007 =item AUTHORS
9008
9009 =back
9010
9011 =head2 blib - Use MakeMaker's uninstalled version of a package
9012
9013 =over 4
9014
9015 =item SYNOPSIS
9016
9017 =item DESCRIPTION
9018
9019 =item BUGS
9020
9021 =item AUTHOR
9022
9023 =back
9024
9025 =head2 bytes - Perl pragma to force byte semantics rather than character
9026 semantics
9027
9028 =over 4
9029
9030 =item SYNOPSIS
9031
9032 =item DESCRIPTION
9033
9034 =item SEE ALSO
9035
9036 =back
9037
9038 =head2 charnames - define character names for C<\N{named}> string literal
9039 escapes
9040
9041 =over 4
9042
9043 =item SYNOPSIS
9044
9045 =item DESCRIPTION
9046
9047 =item CUSTOM TRANSLATORS
9048
9049 =item CUSTOM ALIASES
9050
9051 =over 4
9052
9053 =item Anonymous hashes
9054
9055 =item Alias file
9056
9057 =item Alias shortcut
9058
9059 =back
9060
9061 =item charnames::viacode(code)
9062
9063 =item charnames::vianame(name)
9064
9065 =item ALIASES
9066
9067 =item ILLEGAL CHARACTERS
9068
9069 =item BUGS
9070
9071 =back
9072
9073 =head2 constant - Perl pragma to declare constants
9074
9075 =over 4
9076
9077 =item SYNOPSIS
9078
9079 =item DESCRIPTION
9080
9081 =item NOTES
9082
9083 =over 4
9084
9085 =item List constants
9086
9087 =item Defining multiple constants at once
9088
9089 =item Magic constants
9090
9091 =back
9092
9093 =item TECHNICAL NOTES
9094
9095 =item BUGS
9096
9097 =item AUTHOR
9098
9099 =item COPYRIGHT
9100
9101 =back
9102
9103 =head2 diagnostics - Perl compiler pragma to force verbose warning
9104 diagnostics
9105
9106 =over 4
9107
9108 =item SYNOPSIS
9109
9110 =item DESCRIPTION
9111
9112 =over 4
9113
9114 =item The C<diagnostics> Pragma
9115
9116 =item The I<splain> Program
9117
9118 =back
9119
9120 =item EXAMPLES
9121
9122 =item INTERNALS
9123
9124 =item BUGS
9125
9126 =item AUTHOR
9127
9128 =back
9129
9130 =head2 encoding - allows you to write your script in non-ascii or non-utf8
9131
9132 =over 4
9133
9134 =item SYNOPSIS
9135
9136 =item ABSTRACT
9137
9138 =over 4
9139
9140 =item Literal Conversions
9141
9142 =item PerlIO layers for C<STD(IN|OUT)>
9143
9144 =back
9145
9146 =item FEATURES THAT REQUIRE 5.8.1
9147
9148 "NON-EUC" doublebyte encodings, tr//, DATA pseudo-filehandle
9149
9150 =item USAGE
9151
9152 use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
9153 I<ENCNAME_IN> ...] ;, use encoding I<ENCNAME> Filter=E<gt>1;, no encoding;
9154
9155 =item The Filter Option
9156
9157 =over 4
9158
9159 =item Filter-related changes at Encode version 1.87
9160
9161 =back
9162
9163 =item CAVEATS
9164
9165 =over 4
9166
9167 =item NOT SCOPED
9168
9169 =item DO NOT MIX MULTIPLE ENCODINGS
9170
9171 =item tr/// with ranges
9172
9173 Legend of characters above
9174
9175 =back
9176
9177 =item EXAMPLE - Greekperl
9178
9179 =item KNOWN PROBLEMS
9180
9181 literals in regex that are longer than 127 bytes, EBCDIC, format
9182
9183 =item HISTORY
9184
9185 =item SEE ALSO
9186
9187 =back
9188
9189 =head2 fields - compile-time class fields
9190
9191 =over 4
9192
9193 =item SYNOPSIS
9194
9195 =item DESCRIPTION
9196
9197 new, phash
9198
9199 =item SEE ALSO
9200
9201 =back
9202
9203 =head2 filetest - Perl pragma to control the filetest permission operators
9204
9205 =over 4
9206
9207 =item SYNOPSIS
9208
9209 =item DESCRIPTION
9210
9211 =over 4
9212
9213 =item subpragma access
9214
9215 =back
9216
9217 =back
9218
9219 =head2 if - C<use> a Perl module if a condition holds
9220
9221 =over 4
9222
9223 =item SYNOPSIS
9224
9225 =item DESCRIPTION
9226
9227 =item BUGS
9228
9229 =item AUTHOR
9230
9231 =back
9232
9233 =head2 integer - Perl pragma to use integer arithmetic instead of floating
9234 point
9235
9236 =over 4
9237
9238 =item SYNOPSIS
9239
9240 =item DESCRIPTION
9241
9242 =back
9243
9244 =head2 less - perl pragma to request less of something from the compiler
9245
9246 =over 4
9247
9248 =item SYNOPSIS
9249
9250 =item DESCRIPTION
9251
9252 =back
9253
9254 =head2 lib - manipulate @INC at compile time
9255
9256 =over 4
9257
9258 =item SYNOPSIS
9259
9260 =item DESCRIPTION
9261
9262 =over 4
9263
9264 =item Adding directories to @INC
9265
9266 =item Deleting directories from @INC
9267
9268 =item Restoring original @INC
9269
9270 =back
9271
9272 =item CAVEATS
9273
9274 =item NOTES
9275
9276 =item SEE ALSO
9277
9278 =item AUTHOR
9279
9280 =back
9281
9282 =head2 locale - Perl pragma to use and avoid POSIX locales for built-in
9283 operations
9284
9285 =over 4
9286
9287 =item SYNOPSIS
9288
9289 =item DESCRIPTION
9290
9291 =back
9292
9293 =head2 open - perl pragma to set default PerlIO layers for input and output
9294
9295 =over 4
9296
9297 =item SYNOPSIS
9298
9299 =item DESCRIPTION
9300
9301 =item NONPERLIO FUNCTIONALITY
9302
9303 =item IMPLEMENTATION DETAILS
9304
9305 =item SEE ALSO
9306
9307 =back
9308
9309 =head2 ops - Perl pragma to restrict unsafe operations when compiling
9310
9311 =over 4
9312
9313 =item SYNOPSIS  
9314
9315 =item DESCRIPTION
9316
9317 =item SEE ALSO
9318
9319 =back
9320
9321 =head2 overload - Package for overloading perl operations
9322
9323 =over 4
9324
9325 =item SYNOPSIS
9326
9327 =item DESCRIPTION
9328
9329 =over 4
9330
9331 =item Declaration of overloaded functions
9332
9333 =item Calling Conventions for Binary Operations
9334
9335 FALSE, TRUE, C<undef>
9336
9337 =item Calling Conventions for Unary Operations
9338
9339 =item Calling Conventions for Mutators
9340
9341 C<++> and C<-->, C<x=> and other assignment versions
9342
9343 =item Overloadable Operations
9344
9345 I<Arithmetic operations>, I<Comparison operations>, I<Bit operations>,
9346 I<Increment and decrement>, I<Transcendental functions>, I<Boolean, string
9347 and numeric conversion>, I<Iteration>, I<Dereferencing>, I<Special>
9348
9349 =item Inheritance and overloading
9350
9351 Strings as values of C<use overload> directive, Overloading of an operation
9352 is inherited by derived classes
9353
9354 =back
9355
9356 =item SPECIAL SYMBOLS FOR C<use overload>
9357
9358 =over 4
9359
9360 =item Last Resort
9361
9362 =item Fallback
9363
9364 C<undef>, TRUE, defined, but FALSE
9365
9366 =item Copy Constructor
9367
9368 B<Example>
9369
9370 =back
9371
9372 =item MAGIC AUTOGENERATION
9373
9374 I<Assignment forms of arithmetic operations>, I<Conversion operations>,
9375 I<Increment and decrement>, C<abs($a)>, I<Unary minus>, I<Negation>,
9376 I<Concatenation>, I<Comparison operations>, I<Iterator>, I<Dereferencing>,
9377 I<Copy operator>
9378
9379 =item Losing overloading
9380
9381 =item Run-time Overloading
9382
9383 =item Public functions
9384
9385 overload::StrVal(arg), overload::Overloaded(arg), overload::Method(obj,op)
9386
9387 =item Overloading constants
9388
9389 integer, float, binary, q, qr
9390
9391 =item IMPLEMENTATION
9392
9393 =item Metaphor clash
9394
9395 =item Cookbook
9396
9397 =over 4
9398
9399 =item Two-face scalars
9400
9401 =item Two-face references
9402
9403 =item Symbolic calculator
9404
9405 =item I<Really> symbolic calculator
9406
9407 =back
9408
9409 =item AUTHOR
9410
9411 =item DIAGNOSTICS
9412
9413 Odd number of arguments for overload::constant, `%s' is not an overloadable
9414 type, `%s' is not a code reference
9415
9416 =item BUGS
9417
9418 =back
9419
9420 =head2 sigtrap - Perl pragma to enable simple signal handling
9421
9422 =over 4
9423
9424 =item SYNOPSIS
9425
9426 =item DESCRIPTION
9427
9428 =item OPTIONS
9429
9430 =over 4
9431
9432 =item SIGNAL HANDLERS
9433
9434 B<stack-trace>, B<die>, B<handler> I<your-handler>
9435
9436 =item SIGNAL LISTS
9437
9438 B<normal-signals>, B<error-signals>, B<old-interface-signals>
9439
9440 =item OTHER
9441
9442 B<untrapped>, B<any>, I<signal>, I<number>
9443
9444 =back
9445
9446 =item EXAMPLES
9447
9448 =back
9449
9450 =head2 sort - perl pragma to control sort() behaviour
9451
9452 =over 4
9453
9454 =item SYNOPSIS
9455
9456 =item DESCRIPTION
9457
9458 =item CAVEATS
9459
9460 =back
9461
9462 =head2 strict - Perl pragma to restrict unsafe constructs
9463
9464 =over 4
9465
9466 =item SYNOPSIS
9467
9468 =item DESCRIPTION
9469
9470 C<strict refs>, C<strict vars>, C<strict subs>
9471
9472 =item HISTORY
9473
9474 =back
9475
9476 =head2 subs - Perl pragma to predeclare sub names
9477
9478 =over 4
9479
9480 =item SYNOPSIS
9481
9482 =item DESCRIPTION
9483
9484 =back
9485
9486 =head2 threadshared, threads::shared - Perl extension for sharing data
9487 structures between threads
9488
9489 =over 4
9490
9491 =item SYNOPSIS
9492
9493 =item DESCRIPTION
9494
9495 =item EXPORT
9496
9497 =item FUNCTIONS
9498
9499 share VARIABLE, lock VARIABLE, cond_wait VARIABLE, cond_signal VARIABLE,
9500 cond_broadcast VARIABLE
9501
9502 =item NOTES
9503
9504 =item BUGS
9505
9506 =item AUTHOR
9507
9508 =item SEE ALSO
9509
9510 =back
9511
9512 =head2 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source
9513 code
9514
9515 =over 4
9516
9517 =item SYNOPSIS
9518
9519 =item DESCRIPTION
9520
9521 =over 4
9522
9523 =item Utility functions
9524
9525 $num_octets = utf8::upgrade($string), $success = utf8::downgrade($string[,
9526 FAIL_OK]), utf8::encode($string), utf8::decode($string), $flag =
9527 utf8::is_utf8(STRING), $flag = utf8::valid(STRING)
9528
9529 =back
9530
9531 =item BUGS
9532
9533 =item SEE ALSO
9534
9535 =back
9536
9537 =head2 vars - Perl pragma to predeclare global variable names (obsolete)
9538
9539 =over 4
9540
9541 =item SYNOPSIS
9542
9543 =item DESCRIPTION
9544
9545 =back
9546
9547 =head2 version - Perl extension for Version Objects
9548
9549 =over 4
9550
9551 =item SYNOPSIS
9552
9553 =item DESCRIPTION
9554
9555 =over 4
9556
9557 =item What IS a version
9558
9559 Numeric Versions, V-String Versions
9560
9561 =item Numeric Versions
9562
9563 =item V-String Versions
9564
9565 =item Object Methods
9566
9567 New Operator, Stringification, Numification, Comparison operators, Logical
9568 Operators
9569
9570 =item Quoting
9571
9572 =item Types of Versions Objects
9573
9574 Ordinary versions, alpha versions
9575
9576 =item Replacement UNIVERSAL::VERSION
9577
9578 =back
9579
9580 =item EXPORT
9581
9582 =item AUTHOR
9583
9584 =item SEE ALSO
9585
9586 =back
9587
9588 =head2 vmsish - Perl pragma to control VMS-specific language features
9589
9590 =over 4
9591
9592 =item SYNOPSIS
9593
9594 =item DESCRIPTION
9595
9596 C<vmsish status>, C<vmsish exit>, C<vmsish time>, C<vmsish hushed>
9597
9598 =back
9599
9600 =head2 warnings - Perl pragma to control optional warnings
9601
9602 =over 4
9603
9604 =item SYNOPSIS
9605
9606 =item DESCRIPTION
9607
9608 use warnings::register, warnings::enabled(), warnings::enabled($category),
9609 warnings::enabled($object), warnings::warn($message),
9610 warnings::warn($category, $message), warnings::warn($object, $message),
9611 warnings::warnif($message), warnings::warnif($category, $message),
9612 warnings::warnif($object, $message)
9613
9614 =back
9615
9616 =head2 warnings::register - warnings import function
9617
9618 =over 4
9619
9620 =item SYNOPSIS
9621
9622 =item DESCRIPTION
9623
9624 =back
9625
9626 =head1 MODULE DOCUMENTATION
9627
9628 =head2 AnyDBM_File - provide framework for multiple DBMs
9629
9630 =over 4
9631
9632 =item SYNOPSIS
9633
9634 =item DESCRIPTION
9635
9636 =over 4
9637
9638 =item DBM Comparisons
9639
9640 [0], [1], [2], [3]
9641
9642 =back
9643
9644 =item SEE ALSO
9645
9646 =back
9647
9648 =head2 Attribute::Handlers - Simpler definition of attribute handlers
9649
9650 =over 4
9651
9652 =item VERSION
9653
9654 =item SYNOPSIS
9655
9656 =item DESCRIPTION
9657
9658 [0], [1], [2], [3], [4], [5]
9659
9660 =over 4
9661
9662 =item Typed lexicals
9663
9664 =item Type-specific attribute handlers
9665
9666 =item Non-interpretive attribute handlers
9667
9668 =item Phase-specific attribute handlers
9669
9670 =item Attributes as C<tie> interfaces
9671
9672 =back
9673
9674 =item EXAMPLES
9675
9676 =item DIAGNOSTICS
9677
9678 C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
9679 attributes>, C<Declaration of %s attribute in package %s may clash with
9680 future reserved word>, C<Can't have two ATTR specifiers on one subroutine>,
9681 C<Can't autotie a %s>, C<Internal error: %s symbol went missing>, C<Won't
9682 be able to apply END handler>
9683
9684 =item AUTHOR
9685
9686 =item BUGS
9687
9688 =item COPYRIGHT
9689
9690 =back
9691
9692 =head2 AutoLoader - load subroutines only on demand
9693
9694 =over 4
9695
9696 =item SYNOPSIS
9697
9698 =item DESCRIPTION
9699
9700 =over 4
9701
9702 =item Subroutine Stubs
9703
9704 =item Using B<AutoLoader>'s AUTOLOAD Subroutine
9705
9706 =item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
9707
9708 =item Package Lexicals
9709
9710 =item Not Using AutoLoader
9711
9712 =item B<AutoLoader> vs. B<SelfLoader>
9713
9714 =back
9715
9716 =item CAVEATS
9717
9718 =item SEE ALSO
9719
9720 =back
9721
9722 =head2 AutoSplit - split a package for autoloading
9723
9724 =over 4
9725
9726 =item SYNOPSIS
9727
9728 =item DESCRIPTION
9729
9730 $keep, $check, $modtime
9731
9732 =over 4
9733
9734 =item Multiple packages
9735
9736 =back
9737
9738 =item DIAGNOSTICS
9739
9740 =back
9741
9742 =head2 B - The Perl Compiler
9743
9744 =over 4
9745
9746 =item SYNOPSIS
9747
9748 =item DESCRIPTION
9749
9750 =item OVERVIEW
9751
9752 =item Utility Functions
9753
9754 =over 4
9755
9756 =item Functions Returning C<B::SV>, C<B::AV>, C<B::HV>, and C<B::CV>
9757 objects
9758
9759 sv_undef, sv_yes, sv_no, svref_2object(SVREF), amagic_generation, init_av,
9760 check_av, begin_av, end_av, comppadlist, regex_padav, main_cv
9761
9762 =item Functions for Examining the Symbol Table
9763
9764 walksymtable(SYMREF, METHOD, RECURSE, PREFIX)
9765
9766 =item Functions Returning C<B::OP> objects or for walking op trees
9767
9768 main_root, main_start, walkoptree(OP, METHOD), walkoptree_debug(DEBUG)
9769
9770 =item Miscellaneous Utility Functions
9771
9772 ppname(OPNUM), hash(STR), cast_I32(I), minus_c, cstring(STR),
9773 perlstring(STR), class(OBJ), threadsv_names
9774
9775 =back
9776
9777 =item OVERVIEW OF CLASSES
9778
9779 =over 4
9780
9781 =item SV-RELATED CLASSES
9782
9783 =item B::SV Methods
9784
9785 REFCNT, FLAGS, object_2svref
9786
9787 =item B::IV Methods
9788
9789 IV, IVX, UVX, int_value, needs64bits, packiv
9790
9791 =item B::NV Methods
9792
9793 NV, NVX
9794
9795 =item B::RV Methods
9796
9797 RV
9798
9799 =item B::PV Methods
9800
9801 PV, RV, PVX
9802
9803 =item B::PVMG Methods
9804
9805 MAGIC, SvSTASH
9806
9807 =item B::MAGIC Methods
9808
9809 MOREMAGIC, precomp, PRIVATE, TYPE, FLAGS, OBJ, PTR, REGEX
9810
9811 =item B::PVLV Methods
9812
9813 TARGOFF, TARGLEN, TYPE, TARG
9814
9815 =item B::BM Methods
9816
9817 USEFUL, PREVIOUS, RARE, TABLE
9818
9819 =item B::GV Methods
9820
9821 is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
9822 LINE, FILE, FILEGV, GvREFCNT, FLAGS
9823
9824 =item B::IO Methods
9825
9826 LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
9827 BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS, IsSTD
9828
9829 =item B::AV Methods
9830
9831 FILL, MAX, OFF, ARRAY, ARRAYelt, AvFLAGS
9832
9833 =item B::CV Methods
9834
9835 STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, OUTSIDE_SEQ, XSUB,
9836 XSUBANY, CvFLAGS, const_sv
9837
9838 =item B::HV Methods
9839
9840 FILL, MAX, KEYS, RITER, NAME, PMROOT, ARRAY
9841
9842 =item OP-RELATED CLASSES
9843
9844 =item B::OP Methods
9845
9846 next, sibling, name, ppaddr, desc, targ, type, seq, flags, private
9847
9848 =item B::UNOP METHOD
9849
9850 first
9851
9852 =item B::BINOP METHOD
9853
9854 last
9855
9856 =item B::LOGOP METHOD
9857
9858 other
9859
9860 =item B::LISTOP METHOD
9861
9862 children
9863
9864 =item B::PMOP Methods
9865
9866 pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, pmdynflags,
9867 pmpermflags, precomp, pmoffset
9868
9869 =item B::SVOP METHOD
9870
9871 sv, gv
9872
9873 =item B::PADOP METHOD
9874
9875 padix
9876
9877 =item B::PVOP METHOD
9878
9879 pv
9880
9881 =item B::LOOP Methods
9882
9883 redoop, nextop, lastop
9884
9885 =item B::COP Methods
9886
9887 label, stash, stashpv, file, cop_seq, arybase, line, warnings, io
9888
9889 =back
9890
9891 =item AUTHOR
9892
9893 =back
9894
9895 =head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
9896 bytecode
9897
9898 =over 4
9899
9900 =item SYNOPSIS
9901
9902 =item DESCRIPTION
9903
9904 %insn_data, @insn_name, @optype, @specialsv_name
9905
9906 =item AUTHOR
9907
9908 =back
9909
9910 =head2 B::Assembler - Assemble Perl bytecode
9911
9912 =over 4
9913
9914 =item SYNOPSIS
9915
9916 =item DESCRIPTION
9917
9918 =item AUTHORS
9919
9920 =back
9921
9922 =head2 B::Bblock - Walk basic blocks
9923
9924 =over 4
9925
9926 =item SYNOPSIS
9927
9928 =item DESCRIPTION
9929
9930 =over 4
9931
9932 =item Functions
9933
9934 B<find_leaders>
9935
9936 =back
9937
9938 =item AUTHOR
9939
9940 =back
9941
9942 =head2 B::Bytecode - Perl compiler's bytecode backend
9943
9944 =over 4
9945
9946 =item SYNOPSIS
9947
9948 =item DESCRIPTION
9949
9950 =item EXAMPLE
9951
9952 =item OPTIONS
9953
9954 B<-b>, B<-H>, B<-k>, B<-o>I<outfile>, B<-s>
9955
9956 =item KNOWN BUGS
9957
9958 =item NOTICE
9959
9960 =item AUTHORS
9961
9962 =back
9963
9964 =head2 B::C - Perl compiler's C backend
9965
9966 =over 4
9967
9968 =item SYNOPSIS
9969
9970 =item DESCRIPTION
9971
9972 =item OPTIONS
9973
9974 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-D>, B<-Do>, B<-Dc>, B<-DA>,
9975 B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fsave-data>, B<-fppaddr>, B<-fwarn-sv>,
9976 B<-fuse-script-name>, B<-fsave-sig-hash>, B<-On>, B<-O0>, B<-O1>, B<-O2>,
9977 B<-llimit>
9978
9979 =item EXAMPLES
9980
9981 =item BUGS
9982
9983 =item AUTHOR
9984
9985 =back
9986
9987 =head2 B::CC - Perl compiler's optimized C translation backend
9988
9989 =over 4
9990
9991 =item SYNOPSIS
9992
9993 =item DESCRIPTION
9994
9995 =item OPTIONS
9996
9997 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-mModulename>, B<-D>, B<-Dr>,
9998 B<-DO>, B<-Ds>, B<-Dp>, B<-Dq>, B<-Dl>, B<-Dt>, B<-f>,
9999 B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
10000
10001 =item EXAMPLES
10002
10003 =item BUGS
10004
10005 =item DIFFERENCES
10006
10007 =over 4
10008
10009 =item Loops
10010
10011 =item Context of ".."
10012
10013 =item Arithmetic
10014
10015 =item Deprecated features
10016
10017 =back
10018
10019 =item AUTHOR
10020
10021 =back
10022
10023 =head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
10024
10025 =over 4
10026
10027 =item SYNOPSIS
10028
10029 =item DESCRIPTION
10030
10031 =item EXAMPLE
10032
10033 =item OPTIONS
10034
10035 B<-basic>, B<-exec>, B<-tree>, B<-compact>, B<-loose>, B<-vt>, B<-ascii>,
10036 B<-main>, B<-base>I<n>, B<-bigendian>, B<-littleendian>, B<-concise>,
10037 B<-terse>, B<-linenoise>, B<-debug>, B<-env>
10038
10039 =item FORMATTING SPECIFICATIONS
10040
10041 B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
10042 B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
10043 B<#>I<var>, B<#>I<var>I<N>, B<~>, B<#addr>, B<#arg>, B<#class>,
10044 B<#classsym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
10045 B<#flags>, B<#flagval>, B<#hyphseq>, B<#label>, B<#lastaddr>, B<#name>,
10046 B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>, B<#private>, B<#privval>,
10047 B<#seq>, B<#seqnum>, B<#sibaddr>, B<#svaddr>, B<#svclass>, B<#svval>,
10048 B<#targ>, B<#targarg>, B<#targarglife>, B<#typenum>
10049
10050 =item ABBREVIATIONS
10051
10052 =over 4
10053
10054 =item OP flags abbreviations
10055
10056 =item OP class abbreviations
10057
10058 =back
10059
10060 =item Using B::Concise outside of the O framework
10061
10062 =item AUTHOR
10063
10064 =back
10065
10066 =head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
10067
10068 =over 4
10069
10070 =item SYNOPSIS
10071
10072 =item DESCRIPTION
10073
10074 =item AUTHOR
10075
10076 =back
10077
10078 =head2 B::Deparse - Perl compiler backend to produce perl code
10079
10080 =over 4
10081
10082 =item SYNOPSIS
10083
10084 =item DESCRIPTION
10085
10086 =item OPTIONS
10087
10088 B<-d>, B<-f>I<FILE>, B<-l>, B<-p>, B<-P>, B<-q>, B<-s>I<LETTERS>, B<C>,
10089 B<i>I<NUMBER>, B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
10090
10091 =item USING B::Deparse AS A MODULE
10092
10093 =over 4
10094
10095 =item Synopsis
10096
10097 =item Description
10098
10099 =item new
10100
10101 =item ambient_pragmas
10102
10103 strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
10104
10105 =item coderef2text
10106
10107 =back
10108
10109 =item BUGS
10110
10111 =item AUTHOR
10112
10113 =back
10114
10115 =head2 B::Disassembler - Disassemble Perl bytecode
10116
10117 =over 4
10118
10119 =item SYNOPSIS
10120
10121 =item DESCRIPTION
10122
10123 =item AUTHOR
10124
10125 =back
10126
10127 =head2 B::Lint - Perl lint
10128
10129 =over 4
10130
10131 =item SYNOPSIS
10132
10133 =item DESCRIPTION
10134
10135 =item OPTIONS AND LINT CHECKS
10136
10137 B<context>, B<implicit-read> and B<implicit-write>, B<bare-subs>,
10138 B<dollar-underscore>, B<private-names>, B<undefined-subs>,
10139 B<regexp-variables>, B<all>, B<none>
10140
10141 =item NON LINT-CHECK OPTIONS
10142
10143 B<-u Package>
10144
10145 =item BUGS
10146
10147 =item AUTHOR
10148
10149 =back
10150
10151 =head2 B::O, O - Generic interface to Perl Compiler backends
10152
10153 =over 4
10154
10155 =item SYNOPSIS
10156
10157 =item DESCRIPTION
10158
10159 =item CONVENTIONS
10160
10161 =item IMPLEMENTATION
10162
10163 =item BUGS
10164
10165 =item AUTHOR
10166
10167 =back
10168
10169 =head2 B::Showlex - Show lexical variables used in functions or files
10170
10171 =over 4
10172
10173 =item SYNOPSIS
10174
10175 =item DESCRIPTION
10176
10177 =item AUTHOR
10178
10179 =back
10180
10181 =head2 B::Stackobj - Helper module for CC backend
10182
10183 =over 4
10184
10185 =item SYNOPSIS
10186
10187 =item DESCRIPTION
10188
10189 =item AUTHOR
10190
10191 =back
10192
10193 =head2 B::Stash - show what stashes are loaded
10194
10195 =head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
10196
10197 =over 4
10198
10199 =item SYNOPSIS
10200
10201 =item DESCRIPTION
10202
10203 =item AUTHOR
10204
10205 =back
10206
10207 =head2 B::Xref - Generates cross reference reports for Perl programs
10208
10209 =over 4
10210
10211 =item SYNOPSIS
10212
10213 =item DESCRIPTION
10214
10215 =item OPTIONS
10216
10217 C<-oFILENAME>, C<-r>, C<-d>, C<-D[tO]>
10218
10219 =item BUGS
10220
10221 =item AUTHOR
10222
10223 =back
10224
10225 =head2 Bblock, B::Bblock - Walk basic blocks
10226
10227 =over 4
10228
10229 =item SYNOPSIS
10230
10231 =item DESCRIPTION
10232
10233 =over 4
10234
10235 =item Functions
10236
10237 B<find_leaders>
10238
10239 =back
10240
10241 =item AUTHOR
10242
10243 =back
10244
10245 =head2 Benchmark - benchmark running times of Perl code
10246
10247 =over 4
10248
10249 =item SYNOPSIS
10250
10251 =item DESCRIPTION
10252
10253 =over 4
10254
10255 =item Methods
10256
10257 new, debug, iters
10258
10259 =item Standard Exports
10260
10261 timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
10262 timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
10263 TIMEDIFF, [ STYLE, [ FORMAT ] ] )
10264
10265 =item Optional Exports
10266
10267 clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUNT, CODEHASHREF, [
10268 STYLE ] ), cmpthese ( RESULTSHASHREF, [ STYLE ] ), countit(TIME, CODE),
10269 disablecache ( ), enablecache ( ), timesum ( T1, T2 )
10270
10271 =item :hireswallclock
10272
10273 =back
10274
10275 =item NOTES
10276
10277 =item EXAMPLES
10278
10279 =item INHERITANCE
10280
10281 =item CAVEATS
10282
10283 =item SEE ALSO
10284
10285 =item AUTHORS
10286
10287 =item MODIFICATION HISTORY
10288
10289 =back
10290
10291 =head2 ByteLoader - load byte compiled perl code
10292
10293 =over 4
10294
10295 =item SYNOPSIS
10296
10297 =item DESCRIPTION
10298
10299 =item AUTHOR
10300
10301 =item SEE ALSO
10302
10303 =back
10304
10305 =head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend
10306
10307 =over 4
10308
10309 =item SYNOPSIS
10310
10311 =item DESCRIPTION
10312
10313 =item EXAMPLE
10314
10315 =item OPTIONS
10316
10317 B<-b>, B<-H>, B<-k>, B<-o>I<outfile>, B<-s>
10318
10319 =item KNOWN BUGS
10320
10321 =item NOTICE
10322
10323 =item AUTHORS
10324
10325 =back
10326
10327 =head2 CGI - Simple Common Gateway Interface Class
10328
10329 =over 4
10330
10331 =item SYNOPSIS
10332
10333 =item ABSTRACT
10334
10335 =item DESCRIPTION
10336
10337 =over 4
10338
10339 =item PROGRAMMING STYLE
10340
10341 =item CALLING CGI.PM ROUTINES
10342
10343 =item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
10344
10345 =item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
10346
10347 =item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
10348
10349 =item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
10350
10351 =item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
10352
10353 =item SETTING THE VALUE(S) OF A NAMED PARAMETER:
10354
10355 =item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
10356
10357 =item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
10358
10359 =item DELETING A PARAMETER COMPLETELY:
10360
10361 =item DELETING ALL PARAMETERS:
10362
10363 =item DIRECT ACCESS TO THE PARAMETER LIST:
10364
10365 =item FETCHING THE PARAMETER LIST AS A HASH:
10366
10367 =item SAVING THE STATE OF THE SCRIPT TO A FILE:
10368
10369 =item RETRIEVING CGI ERRORS
10370
10371 =item USING THE FUNCTION-ORIENTED INTERFACE
10372
10373 B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:html4>, B<:netscape>, B<:html>,
10374 B<:standard>, B<:all>
10375
10376 =item PRAGMAS
10377
10378 -any, -compile, -nosticky, -no_undef_params, -no_xhtml, -nph,
10379 -newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
10380 -private_tempfiles
10381
10382 =item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
10383
10384 1. start_table() (generates a <table> tag), 2. end_table() (generates a
10385 </table> tag), 3. start_ul() (generates a <ul> tag), 4. end_ul() (generates
10386 a </ul> tag)
10387
10388 =back
10389
10390 =item GENERATING DYNAMIC DOCUMENTS
10391
10392 =over 4
10393
10394 =item CREATING A STANDARD HTTP HEADER:
10395
10396 =item GENERATING A REDIRECTION HEADER
10397
10398 =item CREATING THE HTML DOCUMENT HEADER
10399
10400 B<Parameters:>, 4, 5, 6..
10401
10402 =item ENDING THE HTML DOCUMENT:
10403
10404 =item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
10405
10406 =item OBTAINING THE SCRIPT'S URL
10407
10408 B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
10409 (B<-query_string>), B<-base>
10410
10411 =item MIXING POST AND URL PARAMETERS
10412
10413 =back
10414
10415 =item CREATING STANDARD HTML ELEMENTS:
10416
10417 =over 4
10418
10419 =item PROVIDING ARGUMENTS TO HTML SHORTCUTS
10420
10421 =item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
10422
10423 =item HTML SHORTCUTS AND LIST INTERPOLATION
10424
10425 =item NON-STANDARD HTML SHORTCUTS
10426
10427 =item AUTOESCAPING HTML
10428
10429 $escaped_string = escapeHTML("unescaped string");, $charset =
10430 charset([$charset]);, $flag = autoEscape([$flag]);
10431
10432 =item PRETTY-PRINTING HTML
10433
10434 =back
10435
10436 =item CREATING FILL-OUT FORMS:
10437
10438 =over 4
10439
10440 =item CREATING AN ISINDEX TAG
10441
10442 =item STARTING AND ENDING A FORM
10443
10444 B<application/x-www-form-urlencoded>, B<multipart/form-data>
10445
10446 =item CREATING A TEXT FIELD
10447
10448 B<Parameters>
10449
10450 =item CREATING A BIG TEXT FIELD
10451
10452 =item CREATING A PASSWORD FIELD
10453
10454 =item CREATING A FILE UPLOAD FIELD
10455
10456 B<Parameters>
10457
10458 =item CREATING A POPUP MENU
10459
10460 =item CREATING AN OPTION GROUP
10461
10462 =item CREATING A SCROLLING LIST
10463
10464 B<Parameters:>
10465
10466 =item CREATING A GROUP OF RELATED CHECKBOXES
10467
10468 B<Parameters:>
10469
10470 =item CREATING A STANDALONE CHECKBOX
10471
10472 B<Parameters:>
10473
10474 =item CREATING A RADIO BUTTON GROUP
10475
10476 B<Parameters:>
10477
10478 =item CREATING A SUBMIT BUTTON 
10479
10480 B<Parameters:>
10481
10482 =item CREATING A RESET BUTTON
10483
10484 =item CREATING A DEFAULT BUTTON
10485
10486 =item CREATING A HIDDEN FIELD
10487
10488 B<Parameters:>
10489
10490 =item CREATING A CLICKABLE IMAGE BUTTON
10491
10492 B<Parameters:>, 3. The third option (-align, optional) is an alignment
10493 type, and may be TOP, BOTTOM or MIDDLE
10494
10495 =item CREATING A JAVASCRIPT ACTION BUTTON
10496
10497 =back
10498
10499 =item HTTP COOKIES
10500
10501 1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
10502 B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
10503
10504 =item WORKING WITH FRAMES
10505
10506 1. Create a <Frameset> document, 2. Specify the destination for the
10507 document in the HTTP header, 3. Specify the destination for the document in
10508 the <form> tag
10509
10510 =item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
10511
10512 =item DEBUGGING
10513
10514 =over 4
10515
10516 =item DUMPING OUT ALL THE NAME/VALUE PAIRS
10517
10518 =back
10519
10520 =item FETCHING ENVIRONMENT VARIABLES
10521
10522 B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
10523 B<path_translated()>, B<remote_host()>, B<script_name()> Return the script
10524 name as a partial URL, for self-refering scripts, B<referer()>, B<auth_type
10525 ()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
10526 B<server_software ()>, B<remote_user ()>, B<user_name ()>,
10527 B<request_method()>, B<content_type()>, B<http()>, B<https()>
10528
10529 =item USING NPH SCRIPTS
10530
10531 In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
10532 parameters
10533
10534 =item Server Push
10535
10536 multipart_init(), multipart_start(), multipart_end(), multipart_final()
10537
10538 =item Avoiding Denial of Service Attacks
10539
10540 B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
10541 basis>, B<2. Globally for all scripts>
10542
10543 =item COMPATIBILITY WITH CGI-LIB.PL
10544
10545 =item AUTHOR INFORMATION
10546
10547 =item CREDITS
10548
10549 Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
10550 (james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
10551 (mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
10552 (jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
10553 (applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
10554 (tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
10555 (tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
10556 MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
10557 (kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
10558 Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
10559 MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
10560 ...and many many more..
10561
10562 =item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
10563
10564 =item BUGS
10565
10566 =item SEE ALSO
10567
10568 =back
10569
10570 =head2 CGI::Apache - Backward compatibility module for CGI.pm
10571
10572 =over 4
10573
10574 =item SYNOPSIS
10575
10576 =item ABSTRACT
10577
10578 =item DESCRIPTION
10579
10580 =item AUTHOR INFORMATION
10581
10582 =item BUGS
10583
10584 =item SEE ALSO
10585
10586 =back
10587
10588 =head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
10589 other) error log
10590
10591 =over 4
10592
10593 =item SYNOPSIS
10594
10595 =item DESCRIPTION
10596
10597 =item REDIRECTING ERROR MESSAGES
10598
10599 =item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
10600
10601 =over 4
10602
10603 =item Changing the default message
10604
10605 =back
10606
10607 =item MAKING WARNINGS APPEAR AS HTML COMMENTS
10608
10609 =item OVERRIDING THE NAME OF THE PROGRAM
10610
10611 =item AUTHORS
10612
10613 =item SEE ALSO
10614
10615 =back
10616
10617 =head2 CGI::Cookie - Interface to Netscape Cookies
10618
10619 =over 4
10620
10621 =item SYNOPSIS
10622
10623 =item DESCRIPTION
10624
10625 =item USING CGI::Cookie
10626
10627 B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
10628
10629 =over 4
10630
10631 =item Creating New Cookies
10632
10633 =item Sending the Cookie to the Browser
10634
10635 =item Recovering Previous Cookies
10636
10637 =item Manipulating Cookies
10638
10639 B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
10640
10641 =back
10642
10643 =item AUTHOR INFORMATION
10644
10645 =item BUGS
10646
10647 =item SEE ALSO
10648
10649 =back
10650
10651 =head2 CGI::Fast - CGI Interface for Fast CGI
10652
10653 =over 4
10654
10655 =item SYNOPSIS
10656
10657 =item DESCRIPTION
10658
10659 =item OTHER PIECES OF THE PUZZLE
10660
10661 =item WRITING FASTCGI PERL SCRIPTS
10662
10663 =item INSTALLING FASTCGI SCRIPTS
10664
10665 =item USING FASTCGI SCRIPTS AS CGI SCRIPTS
10666
10667 =item EXTERNAL FASTCGI SERVER INVOCATION
10668
10669 FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
10670
10671 =item CAVEATS
10672
10673 =item AUTHOR INFORMATION
10674
10675 =item BUGS
10676
10677 =item SEE ALSO
10678
10679 =back
10680
10681 =head2 CGI::Pretty - module to produce nicely formatted HTML code
10682
10683 =over 4
10684
10685 =item SYNOPSIS
10686
10687 =item DESCRIPTION
10688
10689 =over 4
10690
10691 =item Tags that won't be formatted
10692
10693 =item Customizing the Indenting
10694
10695 =back
10696
10697 =item BUGS
10698
10699 =item AUTHOR
10700
10701 =item SEE ALSO
10702
10703 =back
10704
10705 =head2 CGI::Push - Simple Interface to Server Push
10706
10707 =over 4
10708
10709 =item SYNOPSIS
10710
10711 =item DESCRIPTION
10712
10713 =item USING CGI::Push
10714
10715 -next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
10716
10717 =over 4
10718
10719 =item Heterogeneous Pages
10720
10721 =item Changing the Page Delay on the Fly
10722
10723 =back
10724
10725 =item INSTALLING CGI::Push SCRIPTS
10726
10727 =item AUTHOR INFORMATION
10728
10729 =item BUGS
10730
10731 =item SEE ALSO
10732
10733 =back
10734
10735 =head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
10736
10737 =over 4
10738
10739 =item SYNOPSIS
10740
10741 =item ABSTRACT
10742
10743 =item DESCRIPTION
10744
10745 =item AUTHOR INFORMATION
10746
10747 =item BUGS
10748
10749 =item SEE ALSO
10750
10751 =back
10752
10753 =head2 CGI::Util - Internal utilities used by CGI module
10754
10755 =over 4
10756
10757 =item SYNOPSIS
10758
10759 =item DESCRIPTION
10760
10761 =item AUTHOR INFORMATION
10762
10763 =item SEE ALSO
10764
10765 =back
10766
10767 =head2 CPAN - query, download and build perl modules from CPAN sites
10768
10769 =over 4
10770
10771 =item SYNOPSIS
10772
10773 =item STATUS
10774
10775 =item DESCRIPTION
10776
10777 =over 4
10778
10779 =item Interactive Mode
10780
10781 Searching for authors, bundles, distribution files and modules, make, test,
10782 install, clean  modules or distributions, get, readme, look module or
10783 distribution, ls author, Signals
10784
10785 =item CPAN::Shell
10786
10787 =item autobundle
10788
10789 =item recompile
10790
10791 =item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
10792
10793 =item Programmer's interface
10794
10795 expand($type,@things), expandany(@things), Programming Examples
10796
10797 =item Methods in the other Classes
10798
10799 CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
10800 CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
10801 CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
10802 CPAN::Bundle::clean(), CPAN::Bundle::contains(),
10803 CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
10804 CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
10805 CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
10806 CPAN::Bundle::readme(), CPAN::Bundle::test(),
10807 CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
10808 CPAN::Distribution::clean(), CPAN::Distribution::containsmods(),
10809 CPAN::Distribution::cvs_import(), CPAN::Distribution::dir(),
10810 CPAN::Distribution::force($method,@args), CPAN::Distribution::get(),
10811 CPAN::Distribution::install(), CPAN::Distribution::isa_perl(),
10812 CPAN::Distribution::look(), CPAN::Distribution::make(),
10813 CPAN::Distribution::prereq_pm(), CPAN::Distribution::readme(),
10814 CPAN::Distribution::test(), CPAN::Distribution::uptodate(),
10815 CPAN::Index::force_reload(), CPAN::Index::reload(), CPAN::InfoObj::dump(),
10816 CPAN::Module::as_glimpse(), CPAN::Module::as_string(),
10817 CPAN::Module::clean(), CPAN::Module::cpan_file(),
10818 CPAN::Module::cpan_version(), CPAN::Module::cvs_import(),
10819 CPAN::Module::description(), CPAN::Module::force($method,@args),
10820 CPAN::Module::get(), CPAN::Module::inst_file(),
10821 CPAN::Module::inst_version(), CPAN::Module::install(),
10822 CPAN::Module::look(), CPAN::Module::make(),
10823 CPAN::Module::manpage_headline(), CPAN::Module::readme(),
10824 CPAN::Module::test(), CPAN::Module::uptodate(), CPAN::Module::userid()
10825
10826 =item Cache Manager
10827
10828 =item Bundles
10829
10830 =item Prerequisites
10831
10832 =item Finding packages and VERSION
10833
10834 =item Debugging
10835
10836 =item Floppy, Zip, Offline Mode
10837
10838 =back
10839
10840 =item CONFIGURATION
10841
10842 C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
10843 E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
10844 optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
10845 [unshift|push|splice] E<lt>listE<gt>>
10846
10847 =over 4
10848
10849 =item Note on urllist parameter's format
10850
10851 =item urllist parameter has CD-ROM support
10852
10853 =back
10854
10855 =item SECURITY
10856
10857 =item EXPORT
10858
10859 =item POPULATE AN INSTALLATION WITH LOTS OF MODULES
10860
10861 =item WORKING WITH CPAN.pm BEHIND FIREWALLS
10862
10863 =over 4
10864
10865 =item Three basic types of firewalls
10866
10867 http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
10868
10869 =item Configuring lynx or ncftp for going through a firewall
10870
10871 =back
10872
10873 =item FAQ
10874
10875 1), 2), 3), 4), 5), 6), 7), 8), 9), 10)
10876
10877 =item BUGS
10878
10879 =item AUTHOR
10880
10881 =item TRANSLATIONS
10882
10883 =item SEE ALSO
10884
10885 =back
10886
10887 =head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
10888
10889 =over 4
10890
10891 =item SYNOPSIS
10892
10893 =item DESCRIPTION
10894
10895 =back
10896
10897 =head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
10898 module
10899
10900 =over 4
10901
10902 =item SYNOPSIS
10903
10904 =item DESCRIPTION
10905
10906 =item  SEE ALSO
10907
10908 =back
10909
10910 =head2 Carp, carp    - warn of errors (from perspective of caller)
10911
10912 =over 4
10913
10914 =item SYNOPSIS
10915
10916 =item DESCRIPTION
10917
10918 =over 4
10919
10920 =item Forcing a Stack Trace
10921
10922 =back
10923
10924 =item BUGS
10925
10926 =back
10927
10928 =head2 Carp::Heavy, Carp heavy machinery - no user serviceable parts inside
10929
10930 =head2 Class::ISA -- report the search path for a class's ISA tree
10931
10932 =over 4
10933
10934 =item SYNOPSIS
10935
10936 =item DESCRIPTION
10937
10938 =item FUNCTIONS
10939
10940 the function Class::ISA::super_path($CLASS), the function
10941 Class::ISA::self_and_super_path($CLASS), the function
10942 Class::ISA::self_and_super_versions($CLASS)
10943
10944 =item CAUTIONARY NOTES
10945
10946 =item COPYRIGHT
10947
10948 =item AUTHOR
10949
10950 =back
10951
10952 =head2 Class::Struct - declare struct-like datatypes as Perl classes
10953
10954 =over 4
10955
10956 =item SYNOPSIS
10957
10958 =item DESCRIPTION
10959
10960 =over 4
10961
10962 =item The C<struct()> function
10963
10964 =item Class Creation at Compile Time
10965
10966 =item Element Types and Accessor Methods
10967
10968 Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
10969 C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
10970
10971 =item Initializing with C<new>
10972
10973 =back
10974
10975 =item EXAMPLES
10976
10977 Example 1, Example 2, Example 3
10978
10979 =item Author and Modification History
10980
10981 =back
10982
10983 =head2 Config - access Perl configuration information
10984
10985 =over 4
10986
10987 =item SYNOPSIS
10988
10989 =item DESCRIPTION
10990
10991 myconfig(), config_sh(), config_re($regex), config_vars(@names)
10992
10993 =item EXAMPLE
10994
10995 =item WARNING
10996
10997 =item GLOSSARY
10998
10999 =over 4
11000
11001 =item _
11002
11003 C<_a>, C<_exe>, C<_o>
11004
11005 =item a
11006
11007 C<afs>, C<afsroot>, C<alignbytes>, C<ansi2knr>, C<aphostname>,
11008 C<api_revision>, C<api_subversion>, C<api_version>, C<api_versionstring>,
11009 C<ar>, C<archlib>, C<archlibexp>, C<archname64>, C<archname>, C<archobjs>,
11010 C<asctime_r_proto>, C<awk>
11011
11012 =item b
11013
11014 C<baserev>, C<bash>, C<bin>, C<binexp>, C<bison>, C<byacc>, C<byteorder>
11015
11016 =item c
11017
11018 C<c>, C<castflags>, C<cat>, C<cc>, C<cccdlflags>, C<ccdlflags>, C<ccflags>,
11019 C<ccflags_uselargefiles>, C<ccname>, C<ccsymbols>, C<ccversion>, C<cf_by>,
11020 C<cf_email>, C<cf_time>, C<charsize>, C<chgrp>, C<chmod>, C<chown>,
11021 C<clocktype>, C<comm>, C<compress>, C<contains>, C<cp>, C<cpio>, C<cpp>,
11022 C<cpp_stuff>, C<cppccsymbols>, C<cppflags>, C<cpplast>, C<cppminus>,
11023 C<cpprun>, C<cppstdin>, C<cppsymbols>, C<crypt_r_proto>, C<cryptlib>,
11024 C<csh>, C<ctermid_r_proto>, C<ctime_r_proto>
11025
11026 =item d
11027
11028 C<d__fwalk>, C<d_access>, C<d_accessx>, C<d_aintl>, C<d_alarm>,
11029 C<d_archlib>, C<d_asctime_r>, C<d_atolf>, C<d_atoll>, C<d_attribut>,
11030 C<d_bcmp>, C<d_bcopy>, C<d_bsd>, C<d_bsdgetpgrp>, C<d_bsdsetpgrp>,
11031 C<d_bzero>, C<d_casti32>, C<d_castneg>, C<d_charvspr>, C<d_chown>,
11032 C<d_chroot>, C<d_chsize>, C<d_class>, C<d_closedir>, C<d_cmsghdr_s>,
11033 C<d_const>, C<d_copysignl>, C<d_crypt>, C<d_crypt_r>, C<d_csh>,
11034 C<d_ctermid_r>, C<d_ctime_r>, C<d_cuserid>, C<d_dbl_dig>,
11035 C<d_dbminitproto>, C<d_difftime>, C<d_dirfd>, C<d_dirnamlen>, C<d_dlerror>,
11036 C<d_dlopen>, C<d_dlsymun>, C<d_dosuid>, C<d_drand48_r>, C<d_drand48proto>,
11037 C<d_dup2>, C<d_eaccess>, C<d_endgrent>, C<d_endgrent_r>, C<d_endhent>,
11038 C<d_endhostent_r>, C<d_endnent>, C<d_endnetent_r>, C<d_endpent>,
11039 C<d_endprotoent_r>, C<d_endpwent>, C<d_endpwent_r>, C<d_endsent>,
11040 C<d_endservent_r>, C<d_eofnblk>, C<d_eunice>, C<d_faststdio>, C<d_fchdir>,
11041 C<d_fchmod>, C<d_fchown>, C<d_fcntl>, C<d_fcntl_can_lock>, C<d_fd_macros>,
11042 C<d_fd_set>, C<d_fds_bits>, C<d_fgetpos>, C<d_finite>, C<d_finitel>,
11043 C<d_flexfnam>, C<d_flock>, C<d_flockproto>, C<d_fork>, C<d_fp_class>,
11044 C<d_fpathconf>, C<d_fpclass>, C<d_fpclassify>, C<d_fpclassl>,
11045 C<d_fpos64_t>, C<d_frexpl>, C<d_fs_data_s>, C<d_fseeko>, C<d_fsetpos>,
11046 C<d_fstatfs>, C<d_fstatvfs>, C<d_fsync>, C<d_ftello>, C<d_ftime>,
11047 C<d_Gconvert>, C<d_getcwd>, C<d_getespwnam>, C<d_getfsstat>, C<d_getgrent>,
11048 C<d_getgrent_r>, C<d_getgrgid_r>, C<d_getgrnam_r>, C<d_getgrps>,
11049 C<d_gethbyaddr>, C<d_gethbyname>, C<d_gethent>, C<d_gethname>,
11050 C<d_gethostbyaddr_r>, C<d_gethostbyname_r>, C<d_gethostent_r>,
11051 C<d_gethostprotos>, C<d_getitimer>, C<d_getlogin>, C<d_getlogin_r>,
11052 C<d_getmnt>, C<d_getmntent>, C<d_getnbyaddr>, C<d_getnbyname>,
11053 C<d_getnent>, C<d_getnetbyaddr_r>, C<d_getnetbyname_r>, C<d_getnetent_r>,
11054 C<d_getnetprotos>, C<d_getpagsz>, C<d_getpbyname>, C<d_getpbynumber>,
11055 C<d_getpent>, C<d_getpgid>, C<d_getpgrp2>, C<d_getpgrp>, C<d_getppid>,
11056 C<d_getprior>, C<d_getprotobyname_r>, C<d_getprotobynumber_r>,
11057 C<d_getprotoent_r>, C<d_getprotoprotos>, C<d_getprpwnam>, C<d_getpwent>,
11058 C<d_getpwent_r>, C<d_getpwnam_r>, C<d_getpwuid_r>, C<d_getsbyname>,
11059 C<d_getsbyport>, C<d_getsent>, C<d_getservbyname_r>, C<d_getservbyport_r>,
11060 C<d_getservent_r>, C<d_getservprotos>, C<d_getspnam>, C<d_getspnam_r>,
11061 C<d_gettimeod>, C<d_gmtime_r>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>,
11062 C<d_htonl>, C<d_ilogbl>, C<d_index>, C<d_inetaton>, C<d_int64_t>,
11063 C<d_isascii>, C<d_isfinite>, C<d_isinf>, C<d_isnan>, C<d_isnanl>,
11064 C<d_killpg>, C<d_lchown>, C<d_ldbl_dig>, C<d_link>, C<d_localtime_r>,
11065 C<d_locconv>, C<d_lockf>, C<d_longdbl>, C<d_longlong>, C<d_lseekproto>,
11066 C<d_lstat>, C<d_madvise>, C<d_mblen>, C<d_mbstowcs>, C<d_mbtowc>,
11067 C<d_memchr>, C<d_memcmp>, C<d_memcpy>, C<d_memmove>, C<d_memset>,
11068 C<d_mkdir>, C<d_mkdtemp>, C<d_mkfifo>, C<d_mkstemp>, C<d_mkstemps>,
11069 C<d_mktime>, C<d_mmap>, C<d_modfl>, C<d_modfl_pow32_bug>, C<d_modflproto>,
11070 C<d_mprotect>, C<d_msg>, C<d_msg_ctrunc>, C<d_msg_dontroute>, C<d_msg_oob>,
11071 C<d_msg_peek>, C<d_msg_proxy>, C<d_msgctl>, C<d_msgget>, C<d_msghdr_s>,
11072 C<d_msgrcv>, C<d_msgsnd>, C<d_msync>, C<d_munmap>, C<d_mymalloc>,
11073 C<d_nice>, C<d_nl_langinfo>, C<d_nv_preserves_uv>, C<d_off64_t>,
11074 C<d_old_pthread_create_joinable>, C<d_oldpthreads>, C<d_oldsock>,
11075 C<d_open3>, C<d_pathconf>, C<d_pause>, C<d_perl_otherlibdirs>,
11076 C<d_phostname>, C<d_pipe>, C<d_poll>, C<d_portable>, C<d_PRId64>,
11077 C<d_PRIeldbl>, C<d_PRIEUldbl>, C<d_PRIfldbl>, C<d_PRIFUldbl>,
11078 C<d_PRIgldbl>, C<d_PRIGUldbl>, C<d_PRIi64>, C<d_PRIo64>, C<d_PRIu64>,
11079 C<d_PRIx64>, C<d_PRIXU64>, C<d_procselfexe>, C<d_pthread_atfork>,
11080 C<d_pthread_attr_setscope>, C<d_pthread_yield>, C<d_pwage>, C<d_pwchange>,
11081 C<d_pwclass>, C<d_pwcomment>, C<d_pwexpire>, C<d_pwgecos>, C<d_pwpasswd>,
11082 C<d_pwquota>, C<d_qgcvt>, C<d_quad>, C<d_random_r>, C<d_readdir64_r>,
11083 C<d_readdir>, C<d_readdir_r>, C<d_readlink>, C<d_readv>, C<d_recvmsg>,
11084 C<d_rename>, C<d_rewinddir>, C<d_rmdir>, C<d_safebcpy>, C<d_safemcpy>,
11085 C<d_sanemcmp>, C<d_sbrkproto>, C<d_scalbnl>, C<d_sched_yield>,
11086 C<d_scm_rights>, C<d_SCNfldbl>, C<d_seekdir>, C<d_select>, C<d_sem>,
11087 C<d_semctl>, C<d_semctl_semid_ds>, C<d_semctl_semun>, C<d_semget>,
11088 C<d_semop>, C<d_sendmsg>, C<d_setegid>, C<d_seteuid>, C<d_setgrent>,
11089 C<d_setgrent_r>, C<d_setgrps>, C<d_sethent>, C<d_sethostent_r>,
11090 C<d_setitimer>, C<d_setlinebuf>, C<d_setlocale>, C<d_setlocale_r>,
11091 C<d_setnent>, C<d_setnetent_r>, C<d_setpent>, C<d_setpgid>, C<d_setpgrp2>,
11092 C<d_setpgrp>, C<d_setprior>, C<d_setproctitle>, C<d_setprotoent_r>,
11093 C<d_setpwent>, C<d_setpwent_r>, C<d_setregid>, C<d_setresgid>,
11094 C<d_setresuid>, C<d_setreuid>, C<d_setrgid>, C<d_setruid>, C<d_setsent>,
11095 C<d_setservent_r>, C<d_setsid>, C<d_setvbuf>, C<d_sfio>, C<d_shm>,
11096 C<d_shmat>, C<d_shmatprototype>, C<d_shmctl>, C<d_shmdt>, C<d_shmget>,
11097 C<d_sigaction>, C<d_sigprocmask>, C<d_sigsetjmp>, C<d_sockatmark>,
11098 C<d_sockatmarkproto>, C<d_socket>, C<d_socklen_t>, C<d_sockpair>,
11099 C<d_socks5_init>, C<d_sqrtl>, C<d_srand48_r>, C<d_srandom_r>,
11100 C<d_sresgproto>, C<d_sresuproto>, C<d_statblks>, C<d_statfs_f_flags>,
11101 C<d_statfs_s>, C<d_statvfs>, C<d_stdio_cnt_lval>, C<d_stdio_ptr_lval>,
11102 C<d_stdio_ptr_lval_nochange_cnt>, C<d_stdio_ptr_lval_sets_cnt>,
11103 C<d_stdio_stream_array>, C<d_stdiobase>, C<d_stdstdio>, C<d_strchr>,
11104 C<d_strcoll>, C<d_strctcpy>, C<d_strerrm>, C<d_strerror>, C<d_strerror_r>,
11105 C<d_strftime>, C<d_strtod>, C<d_strtol>, C<d_strtold>, C<d_strtoll>,
11106 C<d_strtoq>, C<d_strtoul>, C<d_strtoull>, C<d_strtouq>, C<d_strxfrm>,
11107 C<d_suidsafe>, C<d_symlink>, C<d_syscall>, C<d_syscallproto>, C<d_sysconf>,
11108 C<d_sysernlst>, C<d_syserrlst>, C<d_system>, C<d_tcgetpgrp>,
11109 C<d_tcsetpgrp>, C<d_telldir>, C<d_telldirproto>, C<d_time>, C<d_times>,
11110 C<d_tm_tm_gmtoff>, C<d_tm_tm_zone>, C<d_tmpnam_r>, C<d_truncate>,
11111 C<d_ttyname_r>, C<d_tzname>, C<d_u32align>, C<d_ualarm>, C<d_umask>,
11112 C<d_uname>, C<d_union_semun>, C<d_unordered>, C<d_usleep>,
11113 C<d_usleepproto>, C<d_ustat>, C<d_vendorarch>, C<d_vendorbin>,
11114 C<d_vendorlib>, C<d_vendorscript>, C<d_vfork>, C<d_void_closedir>,
11115 C<d_voidsig>, C<d_voidtty>, C<d_volatile>, C<d_vprintf>, C<d_wait4>,
11116 C<d_waitpid>, C<d_wcstombs>, C<d_wctomb>, C<d_writev>, C<d_xenix>, C<date>,
11117 C<db_hashtype>, C<db_prefixtype>, C<db_version_major>, C<db_version_minor>,
11118 C<db_version_patch>, C<defvoidused>, C<direntrytype>, C<dlext>, C<dlsrc>,
11119 C<doublesize>, C<drand01>, C<drand48_r_proto>, C<dynamic_ext>
11120
11121 =item e
11122
11123 C<eagain>, C<ebcdic>, C<echo>, C<egrep>, C<emacs>, C<endgrent_r_proto>,
11124 C<endhostent_r_proto>, C<endnetent_r_proto>, C<endprotoent_r_proto>,
11125 C<endpwent_r_proto>, C<endservent_r_proto>, C<eunicefix>, C<exe_ext>,
11126 C<expr>, C<extensions>, C<extras>
11127
11128 =item f
11129
11130 C<fflushall>, C<fflushNULL>, C<find>, C<firstmakefile>, C<flex>,
11131 C<fpossize>, C<fpostype>, C<freetype>, C<from>, C<full_ar>, C<full_csh>,
11132 C<full_sed>
11133
11134 =item g
11135
11136 C<gccansipedantic>, C<gccosandvers>, C<gccversion>, C<getgrent_r_proto>,
11137 C<getgrgid_r_proto>, C<getgrnam_r_proto>, C<gethostbyaddr_r_proto>,
11138 C<gethostbyname_r_proto>, C<gethostent_r_proto>, C<getlogin_r_proto>,
11139 C<getnetbyaddr_r_proto>, C<getnetbyname_r_proto>, C<getnetent_r_proto>,
11140 C<getprotobyname_r_proto>, C<getprotobynumber_r_proto>,
11141 C<getprotoent_r_proto>, C<getpwent_r_proto>, C<getpwnam_r_proto>,
11142 C<getpwuid_r_proto>, C<getservbyname_r_proto>, C<getservbyport_r_proto>,
11143 C<getservent_r_proto>, C<getspnam_r_proto>, C<gidformat>, C<gidsign>,
11144 C<gidsize>, C<gidtype>, C<glibpth>, C<gmake>, C<gmtime_r_proto>,
11145 C<gnulibc_version>, C<grep>, C<groupcat>, C<groupstype>, C<gzip>
11146
11147 =item h
11148
11149 C<h_fcntl>, C<h_sysfile>, C<hint>, C<hostcat>, C<html1dir>, C<html1direxp>,
11150 C<html3dir>, C<html3direxp>
11151
11152 =item i
11153
11154 C<i16size>, C<i16type>, C<i32size>, C<i32type>, C<i64size>, C<i64type>,
11155 C<i8size>, C<i8type>, C<i_arpainet>, C<i_bsdioctl>, C<i_crypt>, C<i_db>,
11156 C<i_dbm>, C<i_dirent>, C<i_dld>, C<i_dlfcn>, C<i_fcntl>, C<i_float>,
11157 C<i_fp>, C<i_fp_class>, C<i_gdbm>, C<i_grp>, C<i_ieeefp>, C<i_inttypes>,
11158 C<i_langinfo>, C<i_libutil>, C<i_limits>, C<i_locale>, C<i_machcthr>,
11159 C<i_malloc>, C<i_math>, C<i_memory>, C<i_mntent>, C<i_ndbm>, C<i_netdb>,
11160 C<i_neterrno>, C<i_netinettcp>, C<i_niin>, C<i_poll>, C<i_prot>,
11161 C<i_pthread>, C<i_pwd>, C<i_rpcsvcdbm>, C<i_sfio>, C<i_sgtty>, C<i_shadow>,
11162 C<i_socks>, C<i_stdarg>, C<i_stddef>, C<i_stdlib>, C<i_string>,
11163 C<i_sunmath>, C<i_sysaccess>, C<i_sysdir>, C<i_sysfile>, C<i_sysfilio>,
11164 C<i_sysin>, C<i_sysioctl>, C<i_syslog>, C<i_sysmman>, C<i_sysmode>,
11165 C<i_sysmount>, C<i_sysndir>, C<i_sysparam>, C<i_sysresrc>, C<i_syssecrt>,
11166 C<i_sysselct>, C<i_syssockio>, C<i_sysstat>, C<i_sysstatfs>,
11167 C<i_sysstatvfs>, C<i_systime>, C<i_systimek>, C<i_systimes>, C<i_systypes>,
11168 C<i_sysuio>, C<i_sysun>, C<i_sysutsname>, C<i_sysvfs>, C<i_syswait>,
11169 C<i_termio>, C<i_termios>, C<i_time>, C<i_unistd>, C<i_ustat>, C<i_utime>,
11170 C<i_values>, C<i_varargs>, C<i_varhdr>, C<i_vfork>,
11171 C<ignore_versioned_solibs>, C<inc_version_list>, C<inc_version_list_init>,
11172 C<incpath>, C<inews>, C<installarchlib>, C<installbin>, C<installhtml1dir>,
11173 C<installhtml3dir>, C<installman1dir>, C<installman3dir>, C<installprefix>,
11174 C<installprefixexp>, C<installprivlib>, C<installscript>,
11175 C<installsitearch>, C<installsitebin>, C<installsitehtml1dir>,
11176 C<installsitehtml3dir>, C<installsitelib>, C<installsiteman1dir>,
11177 C<installsiteman3dir>, C<installsitescript>, C<installstyle>,
11178 C<installusrbinperl>, C<installvendorarch>, C<installvendorbin>,
11179 C<installvendorhtml1dir>, C<installvendorhtml3dir>, C<installvendorlib>,
11180 C<installvendorman1dir>, C<installvendorman3dir>, C<installvendorscript>,
11181 C<intsize>, C<issymlink>, C<ivdformat>, C<ivsize>, C<ivtype>
11182
11183 =item k
11184
11185 C<known_extensions>, C<ksh>
11186
11187 =item l
11188
11189 C<ld>, C<lddlflags>, C<ldflags>, C<ldflags_uselargefiles>, C<ldlibpthname>,
11190 C<less>, C<lib_ext>, C<libc>, C<libperl>, C<libpth>, C<libs>, C<libsdirs>,
11191 C<libsfiles>, C<libsfound>, C<libspath>, C<libswanted>,
11192 C<libswanted_uselargefiles>, C<line>, C<lint>, C<lkflags>, C<ln>, C<lns>,
11193 C<localtime_r_proto>, C<locincpth>, C<loclibpth>, C<longdblsize>,
11194 C<longlongsize>, C<longsize>, C<lp>, C<lpr>, C<ls>, C<lseeksize>,
11195 C<lseektype>
11196
11197 =item m
11198
11199 C<mail>, C<mailx>, C<make>, C<make_set_make>, C<mallocobj>, C<mallocsrc>,
11200 C<malloctype>, C<man1dir>, C<man1direxp>, C<man1ext>, C<man3dir>,
11201 C<man3direxp>, C<man3ext>
11202
11203 =item M
11204
11205 C<Mcc>, C<mips_type>, C<mistrustnm>, C<mkdir>, C<mmaptype>, C<modetype>,
11206 C<more>, C<multiarch>, C<mv>, C<myarchname>, C<mydomain>, C<myhostname>,
11207 C<myuname>
11208
11209 =item n
11210
11211 C<n>, C<need_va_copy>, C<netdb_hlen_type>, C<netdb_host_type>,
11212 C<netdb_name_type>, C<netdb_net_type>, C<nm>, C<nm_opt>, C<nm_so_opt>,
11213 C<nonxs_ext>, C<nroff>, C<nv_preserves_uv_bits>, C<nveformat>,
11214 C<nvEUformat>, C<nvfformat>, C<nvFUformat>, C<nvgformat>, C<nvGUformat>,
11215 C<nvsize>, C<nvtype>
11216
11217 =item o
11218
11219 C<o_nonblock>, C<obj_ext>, C<old_pthread_create_joinable>, C<optimize>,
11220 C<orderlib>, C<osname>, C<osvers>, C<otherlibdirs>
11221
11222 =item p
11223
11224 C<package>, C<pager>, C<passcat>, C<patchlevel>, C<path_sep>, C<perl5>,
11225 C<perl>, C<perl_patchlevel>
11226
11227 =item P
11228
11229 C<PERL_REVISION>, C<PERL_SUBVERSION>, C<PERL_VERSION>, C<perladmin>,
11230 C<perllibs>, C<perlpath>, C<pg>, C<phostname>, C<pidtype>, C<plibpth>,
11231 C<pm_apiversion>, C<pmake>, C<pr>, C<prefix>, C<prefixexp>, C<privlib>,
11232 C<privlibexp>, C<procselfexe>, C<prototype>, C<ptrsize>
11233
11234 =item q
11235
11236 C<quadkind>, C<quadtype>
11237
11238 =item r
11239
11240 C<randbits>, C<randfunc>, C<random_r_proto>, C<randseedtype>, C<ranlib>,
11241 C<rd_nodata>, C<readdir64_r_proto>, C<readdir_r_proto>, C<revision>, C<rm>,
11242 C<rmail>, C<run>, C<runnm>
11243
11244 =item s
11245
11246 C<sched_yield>, C<scriptdir>, C<scriptdirexp>, C<sed>, C<seedfunc>,
11247 C<selectminbits>, C<selecttype>, C<sendmail>, C<setgrent_r_proto>,
11248 C<sethostent_r_proto>, C<setlocale_r_proto>, C<setnetent_r_proto>,
11249 C<setprotoent_r_proto>, C<setpwent_r_proto>, C<setservent_r_proto>, C<sh>,
11250 C<shar>, C<sharpbang>, C<shmattype>, C<shortsize>, C<shrpenv>, C<shsharp>,
11251 C<sig_count>, C<sig_name>, C<sig_name_init>, C<sig_num>, C<sig_num_init>,
11252 C<sig_size>, C<signal_t>, C<sitearch>, C<sitearchexp>, C<sitebin>,
11253 C<sitebinexp>, C<sitehtml1dir>, C<sitehtml1direxp>, C<sitehtml3dir>,
11254 C<sitehtml3direxp>, C<sitelib>, C<sitelib_stem>, C<sitelibexp>,
11255 C<siteman1dir>, C<siteman1direxp>, C<siteman3dir>, C<siteman3direxp>,
11256 C<siteprefix>, C<siteprefixexp>, C<sitescript>, C<sitescriptexp>,
11257 C<sizesize>, C<sizetype>, C<sleep>, C<smail>, C<so>, C<sockethdr>,
11258 C<socketlib>, C<socksizetype>, C<sort>, C<spackage>, C<spitshell>,
11259 C<sPRId64>, C<sPRIeldbl>, C<sPRIEUldbl>, C<sPRIfldbl>, C<sPRIFUldbl>,
11260 C<sPRIgldbl>, C<sPRIGUldbl>, C<sPRIi64>, C<sPRIo64>, C<sPRIu64>,
11261 C<sPRIx64>, C<sPRIXU64>, C<srand48_r_proto>, C<srandom_r_proto>, C<src>,
11262 C<sSCNfldbl>, C<ssizetype>, C<startperl>, C<startsh>, C<static_ext>,
11263 C<stdchar>, C<stdio_base>, C<stdio_bufsiz>, C<stdio_cnt>, C<stdio_filbuf>,
11264 C<stdio_ptr>, C<stdio_stream_array>, C<strerror_r_proto>, C<strings>,
11265 C<submit>, C<subversion>, C<sysman>
11266
11267 =item t
11268
11269 C<tail>, C<tar>, C<targetarch>, C<tbl>, C<tee>, C<test>, C<timeincl>,
11270 C<timetype>, C<tmpnam_r_proto>, C<to>, C<touch>, C<tr>, C<trnl>, C<troff>,
11271 C<ttyname_r_proto>
11272
11273 =item u
11274
11275 C<u16size>, C<u16type>, C<u32size>, C<u32type>, C<u64size>, C<u64type>,
11276 C<u8size>, C<u8type>, C<uidformat>, C<uidsign>, C<uidsize>, C<uidtype>,
11277 C<uname>, C<uniq>, C<uquadtype>, C<use5005threads>, C<use64bitall>,
11278 C<use64bitint>, C<usecrosscompile>, C<usedl>, C<usefaststdio>,
11279 C<useithreads>, C<uselargefiles>, C<uselongdouble>, C<usemorebits>,
11280 C<usemultiplicity>, C<usemymalloc>, C<usenm>, C<useopcode>, C<useperlio>,
11281 C<useposix>, C<usereentrant>, C<usesfio>, C<useshrplib>, C<usesocks>,
11282 C<usethreads>, C<usevendorprefix>, C<usevfork>, C<usrinc>, C<uuname>,
11283 C<uvoformat>, C<uvsize>, C<uvtype>, C<uvuformat>, C<uvxformat>,
11284 C<uvXUformat>
11285
11286 =item v
11287
11288 C<vendorarch>, C<vendorarchexp>, C<vendorbin>, C<vendorbinexp>,
11289 C<vendorhtml1dir>, C<vendorhtml1direxp>, C<vendorhtml3dir>,
11290 C<vendorhtml3direxp>, C<vendorlib>, C<vendorlib_stem>, C<vendorlibexp>,
11291 C<vendorman1dir>, C<vendorman1direxp>, C<vendorman3dir>,
11292 C<vendorman3direxp>, C<vendorprefix>, C<vendorprefixexp>, C<vendorscript>,
11293 C<vendorscriptexp>, C<version>, C<version_patchlevel_string>,
11294 C<versiononly>, C<vi>, C<voidflags>
11295
11296 =item x
11297
11298 C<xlibpth>, C<xs_apiversion>
11299
11300 =item y
11301
11302 C<yacc>, C<yaccflags>
11303
11304 =item z
11305
11306 C<zcat>, C<zip>
11307
11308 =back
11309
11310 =item NOTE
11311
11312 =back
11313
11314 =head2 Cwd - get pathname of current working directory
11315
11316 =over 4
11317
11318 =item SYNOPSIS
11319
11320 =item DESCRIPTION
11321
11322 =over 4
11323
11324 =item getcwd and friends
11325
11326 getcwd, cwd, fastcwd, fastgetcwd
11327
11328 =item abs_path and friends
11329
11330 abs_path, realpath, fast_abs_path
11331
11332 =item $ENV{PWD}
11333
11334 =back
11335
11336 =item NOTES
11337
11338 =item SEE ALSO
11339
11340 =back
11341
11342 =head2 DB - programmatic interface to the Perl debugging API (draft,
11343 subject to
11344 change)
11345
11346 =over 4
11347
11348 =item SYNOPSIS
11349
11350 =item DESCRIPTION
11351
11352 =over 4
11353
11354 =item Global Variables
11355
11356  $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace,  @DB::args, 
11357 @DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
11358 $DB::lineno
11359
11360 =item API Methods
11361
11362 CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
11363 CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
11364
11365 =item Client Callback Methods
11366
11367 CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
11368 CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
11369 CLIENT->output(LIST)
11370
11371 =back
11372
11373 =item BUGS
11374
11375 =item AUTHOR
11376
11377 =back
11378
11379 =head2 DB_File - Perl5 access to Berkeley DB version 1.x
11380
11381 =over 4
11382
11383 =item SYNOPSIS
11384
11385 =item DESCRIPTION
11386
11387 B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
11388
11389 =over 4
11390
11391 =item Using DB_File with Berkeley DB version 2 or greater
11392
11393 =item Interface to Berkeley DB
11394
11395 =item Opening a Berkeley DB Database File
11396
11397 =item Default Parameters
11398
11399 =item In Memory Databases
11400
11401 =back
11402
11403 =item DB_HASH
11404
11405 =over 4
11406
11407 =item A Simple Example
11408
11409 =back
11410
11411 =item DB_BTREE
11412
11413 =over 4
11414
11415 =item Changing the BTREE sort order
11416
11417 =item Handling Duplicate Keys 
11418
11419 =item The get_dup() Method
11420
11421 =item The find_dup() Method
11422
11423 =item The del_dup() Method
11424
11425 =item Matching Partial Keys 
11426
11427 =back
11428
11429 =item DB_RECNO
11430
11431 =over 4
11432
11433 =item The 'bval' Option
11434
11435 =item A Simple Example
11436
11437 =item Extra RECNO Methods
11438
11439 B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
11440 B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
11441 length, elements);>
11442
11443 =item Another Example
11444
11445 =back
11446
11447 =item THE API INTERFACE
11448
11449 B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
11450 $X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
11451 $flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
11452 $value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
11453
11454 =item DBM FILTERS
11455
11456 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
11457 B<filter_fetch_value>
11458
11459 =over 4
11460
11461 =item The Filter
11462
11463 =item An Example -- the NULL termination problem.
11464
11465 =item Another Example -- Key is a C int.
11466
11467 =back
11468
11469 =item HINTS AND TIPS 
11470
11471 =over 4
11472
11473 =item Locking: The Trouble with fd
11474
11475 =item Safe ways to lock a database
11476
11477 B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
11478
11479 =item Sharing Databases With C Applications
11480
11481 =item The untie() Gotcha
11482
11483 =back
11484
11485 =item COMMON QUESTIONS
11486
11487 =over 4
11488
11489 =item Why is there Perl source in my database?
11490
11491 =item How do I store complex data structures with DB_File?
11492
11493 =item What does "Invalid Argument" mean?
11494
11495 =item What does "Bareword 'DB_File' not allowed" mean? 
11496
11497 =back
11498
11499 =item REFERENCES
11500
11501 =item HISTORY
11502
11503 =item BUGS
11504
11505 =item AVAILABILITY
11506
11507 =item COPYRIGHT
11508
11509 =item SEE ALSO
11510
11511 =item AUTHOR
11512
11513 =back
11514
11515 =head2 Data::Dumper - stringified perl data structures, suitable for both
11516 printing and C<eval>
11517
11518 =over 4
11519
11520 =item SYNOPSIS
11521
11522 =item DESCRIPTION
11523
11524 =over 4
11525
11526 =item Methods
11527
11528 I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
11529 I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
11530 I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
11531 I<$OBJ>->Reset
11532
11533 =item Functions
11534
11535 Dumper(I<LIST>)
11536
11537 =item Configuration Variables or Methods
11538
11539 =item Exports
11540
11541 Dumper
11542
11543 =back
11544
11545 =item EXAMPLES
11546
11547 =item BUGS
11548
11549 =over 4
11550
11551 =item NOTE
11552
11553 =back
11554
11555 =item AUTHOR
11556
11557 =item VERSION
11558
11559 =item SEE ALSO
11560
11561 =back
11562
11563 =head2 Devel::DProf - a Perl code profiler
11564
11565 =over 4
11566
11567 =item SYNOPSIS
11568
11569 =item DESCRIPTION
11570
11571 =item PROFILE FORMAT
11572
11573 =item AUTOLOAD
11574
11575 =item ENVIRONMENT
11576
11577 =item BUGS
11578
11579 =item SEE ALSO
11580
11581 =back
11582
11583 =head2 Devel::PPPort - Perl/Pollution/Portability
11584
11585 =over 4
11586
11587 =item SYNOPSIS
11588
11589 =item DESCRIPTION
11590
11591 =over 4
11592
11593 =item WriteFile
11594
11595 =back
11596
11597 =item ppport.h
11598
11599 =item AUTHOR
11600
11601 =item SEE ALSO
11602
11603 =back
11604
11605 =head2 Devel::Peek - A data debugging tool for the XS programmer
11606
11607 =over 4
11608
11609 =item SYNOPSIS
11610
11611 =item DESCRIPTION
11612
11613 =over 4
11614
11615 =item Runtime debugging
11616
11617 =item Memory footprint debugging
11618
11619 =back
11620
11621 =item EXAMPLES
11622
11623 =over 4
11624
11625 =item A simple scalar string
11626
11627 =item A simple scalar number
11628
11629 =item A simple scalar with an extra reference
11630
11631 =item A reference to a simple scalar
11632
11633 =item A reference to an array
11634
11635 =item A reference to a hash
11636
11637 =item Dumping a large array or hash
11638
11639 =item A reference to an SV which holds a C pointer
11640
11641 =item A reference to a subroutine
11642
11643 =back
11644
11645 =item EXPORTS
11646
11647 =item BUGS
11648
11649 =item AUTHOR
11650
11651 =item SEE ALSO
11652
11653 =back
11654
11655 =head2 Devel::SelfStubber - generate stubs for a SelfLoading module
11656
11657 =over 4
11658
11659 =item SYNOPSIS
11660
11661 =item DESCRIPTION
11662
11663 =back
11664
11665 =head2 Digest:: - Modules that calculate message digests
11666
11667 =over 4
11668
11669 =item SYNOPSIS
11670
11671 =item DESCRIPTION
11672
11673 I<binary>, I<hex>, I<base64>
11674
11675 =item OO INTERFACE
11676
11677 $ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
11678 Digest::XXX->new($arg,...), $other_ctx = $ctx->clone, $ctx->reset,
11679 $ctx->add($data,...), $ctx->addfile($io_handle), $ctx->digest,
11680 $ctx->hexdigest, $ctx->b64digest
11681
11682 =item SEE ALSO
11683
11684 =item AUTHOR
11685
11686 =back
11687
11688 =head2 Digest::MD5 - Perl interface to the MD5 Algorithm
11689
11690 =over 4
11691
11692 =item SYNOPSIS
11693
11694 =item DESCRIPTION
11695
11696 =item FUNCTIONS
11697
11698 md5($data,...), md5_hex($data,...), md5_base64($data,...)
11699
11700 =item METHODS
11701
11702 $md5 = Digest::MD5->new, $md5->reset, $md5->clone, $md5->add($data,...),
11703 $md5->addfile($io_handle), $md5->digest, $md5->hexdigest, $md5->b64digest
11704
11705 =item EXAMPLES
11706
11707 =item SEE ALSO
11708
11709 =item COPYRIGHT
11710
11711 =item AUTHORS
11712
11713 =back
11714
11715 =head2 DirHandle - supply object methods for directory handles
11716
11717 =over 4
11718
11719 =item SYNOPSIS
11720
11721 =item DESCRIPTION
11722
11723 =item NOTES
11724
11725 =back
11726
11727 =head2 Dumpvalue - provides screen dump of Perl data.
11728
11729 =over 4
11730
11731 =item SYNOPSIS
11732
11733 =item DESCRIPTION
11734
11735 =over 4
11736
11737 =item Creation
11738
11739 C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
11740 C<dumpDBFiles>, C<dumpPackages>, C<dumpReused>, C<tick>, C<quoteHighBit>,
11741 C<printUndef>, C<usageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
11742 stopDbSignal
11743
11744 =item Methods
11745
11746 dumpValue, dumpValues, stringify, dumpvars, set_quote, set_unctrl,
11747 compactDump, veryCompact, set, get
11748
11749 =back
11750
11751 =back
11752
11753 =head2 DynaLoader - Dynamically load C libraries into Perl code
11754
11755 =over 4
11756
11757 =item SYNOPSIS
11758
11759 =item DESCRIPTION
11760
11761 @dl_library_path, @dl_resolve_using, @dl_require_symbols, @dl_librefs,
11762 @dl_modules, dl_error(), $dl_debug, dl_findfile(), dl_expandspec(),
11763 dl_load_file(), dl_unload_file(), dl_load_flags(), dl_find_symbol(),
11764 dl_find_symbol_anywhere(), dl_undef_symbols(), dl_install_xsub(),
11765 bootstrap()
11766
11767 =item AUTHOR
11768
11769 =back
11770
11771 =head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
11772 Perl code
11773
11774 =over 4
11775
11776 =item SYNOPSIS
11777
11778 =item DESCRIPTION
11779
11780 =over 4
11781
11782 =item Migration from C<DynaLoader>
11783
11784 =item Backward compatible boilerplate
11785
11786 =back
11787
11788 =item Order of initialization: early load()
11789
11790 =over 4
11791
11792 =item The most hairy case
11793
11794 =back
11795
11796 =item LIMITATIONS
11797
11798 =item AUTHOR
11799
11800 =back
11801
11802 =head2 Encode - character encodings
11803
11804 =over 4
11805
11806 =item SYNOPSIS
11807
11808 =over 4
11809
11810 =item Table of Contents
11811
11812 =back
11813
11814 =item DESCRIPTION
11815
11816 =over 4
11817
11818 =item TERMINOLOGY
11819
11820 =back
11821
11822 =item PERL ENCODING API
11823
11824 $octets  = encode(ENCODING, $string [, CHECK]), $string = decode(ENCODING,
11825 $octets [, CHECK]), [$length =] from_to($octets, FROM_ENC, TO_ENC [,
11826 CHECK]), $octets = encode_utf8($string);, $string = decode_utf8($octets [,
11827 CHECK]);
11828
11829 =over 4
11830
11831 =item Listing available encodings
11832
11833 =item Defining Aliases
11834
11835 =back
11836
11837 =item Encoding via PerlIO
11838
11839 =item Handling Malformed Data
11840
11841 I<CHECK> = Encode::FB_DEFAULT ( == 0), I<CHECK> = Encode::FB_CROAK ( == 1),
11842 I<CHECK> = Encode::FB_QUIET, I<CHECK> = Encode::FB_WARN, perlqq mode
11843 (I<CHECK> = Encode::FB_PERLQQ), HTML charref mode (I<CHECK> =
11844 Encode::FB_HTMLCREF), XML charref mode (I<CHECK> = Encode::FB_XMLCREF), The
11845 bitmask
11846
11847 =over 4
11848
11849 =item Unimplemented fallback schemes
11850
11851 =back
11852
11853 =item Defining Encodings
11854
11855 =item The UTF-8 flag
11856
11857 Goal #1:, Goal #2:, Goal #3:, Goal #4:
11858
11859 =over 4
11860
11861 =item Messing with Perl's Internals
11862
11863 is_utf8(STRING [, CHECK]), _utf8_on(STRING), _utf8_off(STRING)
11864
11865 =back
11866
11867 =item SEE ALSO
11868
11869 =item MAINTAINER
11870
11871 =back
11872
11873 =head2 Encode::Alias - alias definitions to encodings
11874
11875 =over 4
11876
11877 =item SYNOPSIS
11878
11879 =item DESCRIPTION
11880
11881 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
11882 reference, e.g.:
11883
11884 =over 4
11885
11886 =item Alias overloading
11887
11888 =back
11889
11890 =item SEE ALSO
11891
11892 =back
11893
11894 =head2 Encode::Byte - Single Byte Encodings
11895
11896 =over 4
11897
11898 =item SYNOPSIS
11899
11900 =item ABSTRACT
11901
11902 =item DESCRIPTION
11903
11904 =item SEE ALSO
11905
11906 =back
11907
11908 =head2 Encode::CJKConstants -- Internally used by Encode::??::ISO_2022_*
11909
11910 =head2 Encode::CN - China-based Chinese Encodings
11911
11912 =over 4
11913
11914 =item SYNOPSIS
11915
11916 =item DESCRIPTION
11917
11918 =item NOTES
11919
11920 =item BUGS
11921
11922 =item SEE ALSO
11923
11924 =back
11925
11926 =head2 Encode::CN::HZ -- internally used by Encode::CN
11927
11928 =head2 Encode::Config -- internally used by Encode
11929
11930 =head2 Encode::EBCDIC - EBCDIC Encodings
11931
11932 =over 4
11933
11934 =item SYNOPSIS
11935
11936 =item ABSTRACT
11937
11938 =item DESCRIPTION
11939
11940 =item SEE ALSO
11941
11942 =back
11943
11944 =head2 Encode::Encoding - Encode Implementation Base Class
11945
11946 =over 4
11947
11948 =item SYNOPSIS
11949
11950 =item DESCRIPTION
11951
11952 =over 4
11953
11954 =item Methods you should implement
11955
11956 -E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
11957 -E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
11958
11959 =item Other methods defined in Encode::Encodings
11960
11961 -E<gt>name, -E<gt>renew, -E<gt>perlio_ok(), -E<gt>needs_lines()
11962
11963 =item Example: Encode::ROT13
11964
11965 =back
11966
11967 =item Why the heck Encode API is different?
11968
11969 =over 4
11970
11971 =item Compiled Encodings
11972
11973 =back
11974
11975 =item SEE ALSO
11976
11977 Scheme 1, Scheme 2, Other Schemes
11978
11979 =back
11980
11981 =head2 Encode::Guess -- Guesses encoding from data
11982
11983 =over 4
11984
11985 =item SYNOPSIS
11986
11987 =item ABSTRACT
11988
11989 =item DESCRIPTION
11990
11991 Encode::Guess->set_suspects, Encode::Guess->add_suspects,
11992 Encode::decode("Guess" ...), Encode::Guess->guess($data),
11993 guess_encoding($data, [, I<list of suspects>])
11994
11995 =item CAVEATS
11996
11997 =item TO DO
11998
11999 =item SEE ALSO
12000
12001 =back
12002
12003 =head2 Encode::JP - Japanese Encodings
12004
12005 =over 4
12006
12007 =item SYNOPSIS
12008
12009 =item ABSTRACT
12010
12011 =item DESCRIPTION
12012
12013 =item Note on ISO-2022-JP(-1)?
12014
12015 =item BUGS
12016
12017 =item SEE ALSO
12018
12019 =back
12020
12021 =head2 Encode::JP::H2Z -- internally used by Encode::JP::2022_JP*
12022
12023 =head2 Encode::JP::JIS7 -- internally used by Encode::JP
12024
12025 =head2 Encode::KR - Korean Encodings
12026
12027 =over 4
12028
12029 =item SYNOPSIS
12030
12031 =item DESCRIPTION
12032
12033 =item BUGS
12034
12035 =item SEE ALSO
12036
12037 =back
12038
12039 =head2 Encode::KR::2022_KR -- internally used by Encode::KR
12040
12041 =head2 Encode::MIME::Header -- MIME 'B' and 'Q' header encoding
12042
12043 =over 4
12044
12045 =item SYNOPSIS
12046
12047 =item ABSTRACT
12048
12049 =item DESCRIPTION
12050
12051 =item BUGS
12052
12053 =item SEE ALSO
12054
12055 =back
12056
12057 =head2 Encode::PerlIO -- a detailed document on Encode and PerlIO
12058
12059 =over 4
12060
12061 =item Overview
12062
12063 =item How does it work?
12064
12065 =item Line Buffering
12066
12067 =over 4
12068
12069 =item How can I tell whether my encoding fully supports PerlIO ?
12070
12071 =back
12072
12073 =item SEE ALSO
12074
12075 =back
12076
12077 =head2 Encode::Supported -- Encodings supported by Encode
12078
12079 =over 4
12080
12081 =item DESCRIPTION
12082
12083 =over 4
12084
12085 =item Encoding Names
12086
12087 =back
12088
12089 =item Supported Encodings
12090
12091 =over 4
12092
12093 =item Built-in Encodings
12094
12095 =item Encode::Unicode -- other Unicode encodings
12096
12097 =item Encode::Byte -- Extended ASCII
12098
12099 ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
12100 the Cyrillic world, gsm0338 - Hentai Latin 1
12101
12102 =item CJK: Chinese, Japanese, Korean (Multibyte)
12103
12104 Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
12105 Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
12106 Encode::JIS2K -- JIS X 0213 encodings via CPAN
12107
12108 =item Miscellaneous encodings
12109
12110 Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
12111
12112 =back
12113
12114 =item Unsupported encodings
12115
12116   ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
12117 Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
12118 System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
12119 Various Mac encodings, (Mac) Indic encodings
12120
12121 =item Encoding vs. Charset -- terminology
12122
12123 =item Encoding Classification (by Anton Tagunov and Dan Kogai)
12124
12125 =over 4
12126
12127 =item Microsoft-related naming mess
12128
12129 KS_C_5601-1987, GB2312, Big5, Shift_JIS
12130
12131 =back
12132
12133 =item Glossary
12134
12135 character repertoire, coded character set (CCS), character encoding scheme
12136 (CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
12137 UTF-16
12138
12139 =item See Also
12140
12141 =item References
12142
12143 ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
12144 RFC, UC, Unicode Glossary
12145
12146 =over 4
12147
12148 =item Other Notable Sites
12149
12150 czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
12151 "Introduction to i18n"
12152
12153 =item Offline sources
12154
12155 C<CJKV Information Processing> by Ken Lunde
12156
12157 =back
12158
12159 =back
12160
12161 =head2 Encode::Symbol - Symbol Encodings
12162
12163 =over 4
12164
12165 =item SYNOPSIS
12166
12167 =item ABSTRACT
12168
12169 =item DESCRIPTION
12170
12171 =item SEE ALSO
12172
12173 =back
12174
12175 =head2 Encode::TW - Taiwan-based Chinese Encodings
12176
12177 =over 4
12178
12179 =item SYNOPSIS
12180
12181 =item DESCRIPTION
12182
12183 =item NOTES
12184
12185 =item BUGS
12186
12187 =item SEE ALSO
12188
12189 =back
12190
12191 =head2 Encode::Unicode -- Various Unicode Transformation Formats
12192
12193 =over 4
12194
12195 =item SYNOPSIS
12196
12197 =item ABSTRACT
12198
12199 L<http://www.unicode.org/glossary/> says:, Quick Reference
12200
12201 =item Size, Endianness, and BOM
12202
12203 =over 4
12204
12205 =item by size
12206
12207 =item by endianness
12208
12209 BOM as integer when fetched in network byte order
12210
12211 =back
12212
12213 =item Surrogate Pairs
12214
12215 =item SEE ALSO
12216
12217 =back
12218
12219 =head2 Encode::Unicode::UTF7 -- UTF-7 encoding
12220
12221 =over 4
12222
12223 =item SYNOPSIS
12224
12225 =item ABSTRACT
12226
12227 =item In Practice
12228
12229 =item SEE ALSO
12230
12231 =back
12232
12233 =head2 Encode::lib::Encode::Alias, Encode::Alias - alias definitions to
12234 encodings
12235
12236 =over 4
12237
12238 =item SYNOPSIS
12239
12240 =item DESCRIPTION
12241
12242 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
12243 reference, e.g.:
12244
12245 =over 4
12246
12247 =item Alias overloading
12248
12249 =back
12250
12251 =item SEE ALSO
12252
12253 =back
12254
12255 =head2 Encode::lib::Encode::CJKConstants, Encode::CJKConstants.pm --
12256 Internally used by Encode::??::ISO_2022_*
12257
12258 =head2 Encode::lib::Encode::CN::HZ, Encode::CN::HZ -- internally used by
12259 Encode::CN
12260
12261 =head2 Encode::lib::Encode::Config, Encode::Config -- internally used by
12262 Encode
12263
12264 =head2 Encode::lib::Encode::Encoding, Encode::Encoding - Encode
12265 Implementation Base Class
12266
12267 =over 4
12268
12269 =item SYNOPSIS
12270
12271 =item DESCRIPTION
12272
12273 =over 4
12274
12275 =item Methods you should implement
12276
12277 -E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
12278 -E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
12279
12280 =item Other methods defined in Encode::Encodings
12281
12282 -E<gt>name, -E<gt>renew, -E<gt>perlio_ok(), -E<gt>needs_lines()
12283
12284 =item Example: Encode::ROT13
12285
12286 =back
12287
12288 =item Why the heck Encode API is different?
12289
12290 =over 4
12291
12292 =item Compiled Encodings
12293
12294 =back
12295
12296 =item SEE ALSO
12297
12298 Scheme 1, Scheme 2, Other Schemes
12299
12300 =back
12301
12302 =head2 Encode::lib::Encode::Guess, Encode::Guess -- Guesses encoding from
12303 data
12304
12305 =over 4
12306
12307 =item SYNOPSIS
12308
12309 =item ABSTRACT
12310
12311 =item DESCRIPTION
12312
12313 Encode::Guess->set_suspects, Encode::Guess->add_suspects,
12314 Encode::decode("Guess" ...), Encode::Guess->guess($data),
12315 guess_encoding($data, [, I<list of suspects>])
12316
12317 =item CAVEATS
12318
12319 =item TO DO
12320
12321 =item SEE ALSO
12322
12323 =back
12324
12325 =head2 Encode::lib::Encode::JP::H2Z, Encode::JP::H2Z -- internally used by
12326 Encode::JP::2022_JP*
12327
12328 =head2 Encode::lib::Encode::JP::JIS7, Encode::JP::JIS7 -- internally used
12329 by Encode::JP
12330
12331 =head2 Encode::lib::Encode::KR::2022_KR, Encode::KR::2022_KR -- internally
12332 used by Encode::KR
12333
12334 =head2 Encode::lib::Encode::MIME::Header, Encode::MIME::Header -- MIME 'B'
12335 and 'Q' header encoding
12336
12337 =over 4
12338
12339 =item SYNOPSIS
12340
12341 =item ABSTRACT
12342
12343 =item DESCRIPTION
12344
12345 =item BUGS
12346
12347 =item SEE ALSO
12348
12349 =back
12350
12351 =head2 Encode::lib::Encode::PerlIO, Encode::PerlIO -- a detailed document
12352 on Encode and PerlIO
12353
12354 =over 4
12355
12356 =item Overview
12357
12358 =item How does it work?
12359
12360 =item Line Buffering
12361
12362 =over 4
12363
12364 =item How can I tell whether my encoding fully supports PerlIO ?
12365
12366 =back
12367
12368 =item SEE ALSO
12369
12370 =back
12371
12372 =head2 Encode::lib::Encode::Supported, Encode::Supported -- Encodings
12373 supported by Encode
12374
12375 =over 4
12376
12377 =item DESCRIPTION
12378
12379 =over 4
12380
12381 =item Encoding Names
12382
12383 =back
12384
12385 =item Supported Encodings
12386
12387 =over 4
12388
12389 =item Built-in Encodings
12390
12391 =item Encode::Unicode -- other Unicode encodings
12392
12393 =item Encode::Byte -- Extended ASCII
12394
12395 ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
12396 the Cyrillic world, gsm0338 - Hentai Latin 1
12397
12398 =item CJK: Chinese, Japanese, Korean (Multibyte)
12399
12400 Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
12401 Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
12402 Encode::JIS2K -- JIS X 0213 encodings via CPAN
12403
12404 =item Miscellaneous encodings
12405
12406 Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
12407
12408 =back
12409
12410 =item Unsupported encodings
12411
12412   ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
12413 Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
12414 System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
12415 Various Mac encodings, (Mac) Indic encodings
12416
12417 =item Encoding vs. Charset -- terminology
12418
12419 =item Encoding Classification (by Anton Tagunov and Dan Kogai)
12420
12421 =over 4
12422
12423 =item Microsoft-related naming mess
12424
12425 KS_C_5601-1987, GB2312, Big5, Shift_JIS
12426
12427 =back
12428
12429 =item Glossary
12430
12431 character repertoire, coded character set (CCS), character encoding scheme
12432 (CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
12433 UTF-16
12434
12435 =item See Also
12436
12437 =item References
12438
12439 ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
12440 RFC, UC, Unicode Glossary
12441
12442 =over 4
12443
12444 =item Other Notable Sites
12445
12446 czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
12447 "Introduction to i18n"
12448
12449 =item Offline sources
12450
12451 C<CJKV Information Processing> by Ken Lunde
12452
12453 =back
12454
12455 =back
12456
12457 =head2 Encode::lib::Encode::Unicode::UTF7, Encode::Unicode::UTF7 -- UTF-7
12458 encoding
12459
12460 =over 4
12461
12462 =item SYNOPSIS
12463
12464 =item ABSTRACT
12465
12466 =item In Practice
12467
12468 =item SEE ALSO
12469
12470 =back
12471
12472 =head2 Encode::lib::Encoder, Encode::Encoder -- Object Oriented Encoder
12473
12474 =over 4
12475
12476 =item SYNOPSIS
12477
12478 =item ABSTRACT
12479
12480 =item Description
12481
12482 =over 4
12483
12484 =item Predefined Methods
12485
12486 $e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
12487 $e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
12488 $e-E<gt>bytes([$encoding])
12489
12490 =item Example: base64 transcoder
12491
12492 =item Operator Overloading
12493
12494 =back
12495
12496 =item SEE ALSO
12497
12498 =back
12499
12500 =head2 Encodencoding, encoding - allows you to write your script in
12501 non-ascii or non-utf8
12502
12503 =over 4
12504
12505 =item SYNOPSIS
12506
12507 =item ABSTRACT
12508
12509 =over 4
12510
12511 =item Literal Conversions
12512
12513 =item PerlIO layers for C<STD(IN|OUT)>
12514
12515 =back
12516
12517 =item FEATURES THAT REQUIRE 5.8.1
12518
12519 "NON-EUC" doublebyte encodings, tr//, DATA pseudo-filehandle
12520
12521 =item USAGE
12522
12523 use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
12524 I<ENCNAME_IN> ...] ;, use encoding I<ENCNAME> Filter=E<gt>1;, no encoding;
12525
12526 =item The Filter Option
12527
12528 =over 4
12529
12530 =item Filter-related changes at Encode version 1.87
12531
12532 =back
12533
12534 =item CAVEATS
12535
12536 =over 4
12537
12538 =item NOT SCOPED
12539
12540 =item DO NOT MIX MULTIPLE ENCODINGS
12541
12542 =item tr/// with ranges
12543
12544 Legend of characters above
12545
12546 =back
12547
12548 =item EXAMPLE - Greekperl
12549
12550 =item KNOWN PROBLEMS
12551
12552 literals in regex that are longer than 127 bytes, EBCDIC, format
12553
12554 =item HISTORY
12555
12556 =item SEE ALSO
12557
12558 =back
12559
12560 =head2 Encoder, Encode::Encoder -- Object Oriented Encoder
12561
12562 =over 4
12563
12564 =item SYNOPSIS
12565
12566 =item ABSTRACT
12567
12568 =item Description
12569
12570 =over 4
12571
12572 =item Predefined Methods
12573
12574 $e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
12575 $e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
12576 $e-E<gt>bytes([$encoding])
12577
12578 =item Example: base64 transcoder
12579
12580 =item Operator Overloading
12581
12582 =back
12583
12584 =item SEE ALSO
12585
12586 =back
12587
12588 =head2 English - use nice English (or awk) names for ugly punctuation
12589 variables
12590
12591 =over 4
12592
12593 =item SYNOPSIS
12594
12595 =item DESCRIPTION
12596
12597 =item PERFORMANCE
12598
12599 =back
12600
12601 =head2 Env - perl module that imports environment variables as scalars or
12602 arrays
12603
12604 =over 4
12605
12606 =item SYNOPSIS
12607
12608 =item DESCRIPTION
12609
12610 =item LIMITATIONS
12611
12612 =item AUTHOR
12613
12614 =back
12615
12616 =head2 Errno - System errno constants
12617
12618 =over 4
12619
12620 =item SYNOPSIS
12621
12622 =item DESCRIPTION
12623
12624 =item CAVEATS
12625
12626 =item AUTHOR
12627
12628 =item COPYRIGHT
12629
12630 =back
12631
12632 =head2 Exporter - Implements default import method for modules
12633
12634 =over 4
12635
12636 =item SYNOPSIS
12637
12638 =item DESCRIPTION
12639
12640 =over 4
12641
12642 =item How to Export
12643
12644 =item Selecting What To Export
12645
12646 =item How to Import
12647
12648 C<use ModuleName;>, C<use ModuleName ();>, C<use ModuleName qw(...);>
12649
12650 =back
12651
12652 =item Advanced features
12653
12654 =over 4
12655
12656 =item Specialised Import Lists
12657
12658 =item Exporting without using Exporter's import method
12659
12660 =item Module Version Checking
12661
12662 =item Managing Unknown Symbols
12663
12664 =item Tag Handling Utility Functions
12665
12666 =item Generating combined tags
12667
12668 =item C<AUTOLOAD>ed Constants
12669
12670 =back
12671
12672 =back
12673
12674 =head2 Exporter::Heavy - Exporter guts
12675
12676 =over 4
12677
12678 =item SYNOPSIS
12679
12680 =item DESCRIPTION
12681
12682 =back
12683
12684 =head2 ExtUtils::Command - utilities to replace common UNIX commands in
12685 Makefiles etc.
12686
12687 =over 4
12688
12689 =item SYNOPSIS
12690
12691 =item DESCRIPTION
12692
12693 =back
12694
12695 cat
12696
12697 eqtime src dst
12698
12699 rm_rf files...
12700
12701 rm_f files...
12702
12703 touch files ..
12704
12705 mv source... destination
12706
12707 cp source... destination
12708
12709 chmod mode files..
12710
12711 mkpath directory..
12712
12713 test_f file
12714
12715 =over 4
12716
12717 =item BUGS
12718
12719 =item SEE ALSO 
12720
12721 =item AUTHOR
12722
12723 =back
12724
12725 =head2 ExtUtils::Command::MM - Commands for the MM's to use in Makefiles
12726
12727 =over 4
12728
12729 =item SYNOPSIS
12730
12731 =item DESCRIPTION
12732
12733 B<test_harness>
12734
12735 =back
12736
12737 B<pod2man>
12738
12739 B<warn_if_old_packlist>
12740
12741 B<perllocal_install>
12742
12743 B<uninstall>
12744
12745 =head2 ExtUtils::Constant - generate XS code to import C header constants
12746
12747 =over 4
12748
12749 =item SYNOPSIS
12750
12751 =item DESCRIPTION
12752
12753 =item USAGE
12754
12755 IV, UV, NV, PV, PVN, SV, YES, NO, UNDEF
12756
12757 =item FUNCTIONS
12758
12759 =back
12760
12761 C_stringify NAME
12762
12763 perl_stringify NAME
12764
12765 constant_types
12766
12767 memEQ_clause NAME, CHECKED_AT, INDENT
12768
12769 assign INDENT, TYPE, PRE, POST, VALUE..
12770
12771 return_clause
12772
12773 switch_clause INDENT, NAMELEN, ITEMHASH, ITEM..
12774
12775 params WHAT
12776
12777 dump_names
12778
12779 dogfood
12780
12781 C_constant, name, type, value, macro, default, pre, post, def_pre =item
12782 def_post, utf8
12783
12784 XS_constant PACKAGE, TYPES, SUBNAME, C_SUBNAME
12785
12786 autoload PACKAGE, VERSION, AUTOLOADER
12787
12788 WriteMakefileSnippet
12789
12790 WriteConstants ATTRIBUTE =E<gt> VALUE [, ...], NAME, DEFAULT_TYPE,
12791 BREAKOUT_AT, NAMES, C_FILE, XS_FILE, SUBNAME, C_SUBNAME
12792
12793 =over 4
12794
12795 =item AUTHOR
12796
12797 =back
12798
12799 =head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
12800
12801 =over 4
12802
12803 =item SYNOPSIS
12804
12805 =item DESCRIPTION
12806
12807 =item @EXPORT
12808
12809 =item FUNCTIONS
12810
12811 xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
12812 ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
12813
12814 =item EXAMPLES
12815
12816 =item SEE ALSO
12817
12818 =item AUTHOR
12819
12820 =back
12821
12822 =head2 ExtUtils::Install - install files from here to there
12823
12824 =over 4
12825
12826 =item SYNOPSIS
12827
12828 =item DESCRIPTION
12829
12830 =over 4
12831
12832 =item Functions
12833
12834 B<install>
12835
12836 =back
12837
12838 =back
12839
12840 B<install_default> I<DISCOURAGED>
12841
12842 B<uninstall>
12843
12844 B<pm_to_blib>
12845
12846 _autosplit
12847
12848 =over 4
12849
12850 =item ENVIRONMENT
12851
12852 B<PERL_INSTALL_ROOT>
12853
12854 =item AUTHOR
12855
12856 =item LICENSE
12857
12858 =back
12859
12860 =head2 ExtUtils::Installed - Inventory management of installed modules
12861
12862 =over 4
12863
12864 =item SYNOPSIS
12865
12866 =item DESCRIPTION
12867
12868 =item USAGE
12869
12870 =item FUNCTIONS
12871
12872 new(), modules(), files(), directories(), directory_tree(), validate(),
12873 packlist(), version()
12874
12875 =item EXAMPLE
12876
12877 =item AUTHOR
12878
12879 =back
12880
12881 =head2 ExtUtils::Liblist - determine libraries to use and how to use them
12882
12883 =over 4
12884
12885 =item SYNOPSIS
12886
12887 =item DESCRIPTION
12888
12889 For static extensions, For dynamic extensions at build/link time, For
12890 dynamic extensions at load time
12891
12892 =over 4
12893
12894 =item EXTRALIBS
12895
12896 =item LDLOADLIBS and LD_RUN_PATH
12897
12898 =item BSLOADLIBS
12899
12900 =back
12901
12902 =item PORTABILITY
12903
12904 =over 4
12905
12906 =item VMS implementation
12907
12908 =item Win32 implementation
12909
12910 =back
12911
12912 =item SEE ALSO
12913
12914 =back
12915
12916 =head2 ExtUtils::MM - OS adjusted ExtUtils::MakeMaker subclass
12917
12918 =over 4
12919
12920 =item SYNOPSIS
12921
12922 =item DESCRIPTION
12923
12924 =back
12925
12926 =head2 ExtUtils::MM_Any - Platform agnostic MM methods
12927
12928 =over 4
12929
12930 =item SYNOPSIS
12931
12932 =item DESCRIPTION
12933
12934 =item Inherently Cross-Platform Methods
12935
12936 installvars
12937
12938 =back
12939
12940 os_flavor_is
12941
12942 =over 4
12943
12944 =item File::Spec wrappers
12945
12946 catfile
12947
12948 =back
12949
12950 =over 4
12951
12952 =item Thought To Be Cross-Platform Methods
12953
12954 B<split_command>
12955
12956 =back
12957
12958 B<echo>
12959
12960 init_VERSION
12961
12962 wraplist
12963
12964 manifypods
12965
12966 manifypods_target
12967
12968 makemakerdflt_target
12969
12970 special_targets
12971
12972 POD2MAN_macro
12973
12974 test_via_harness
12975
12976 test_via_script
12977
12978 libscan
12979
12980 tool_autosplit
12981
12982 all_target
12983
12984 metafile_target
12985
12986 metafile_addtomanifest_target
12987
12988 =over 4
12989
12990 =item Abstract methods
12991
12992 oneliner, B<quote_literal>, B<escape_newlines>, max_exec_len,
12993 B<init_others>, init_DIRFILESEP, init_linker, init_platform,
12994 platform_constants
12995
12996 =back
12997
12998 os_flavor
12999
13000 =over 4
13001
13002 =item AUTHOR
13003
13004 =back
13005
13006 =head2 ExtUtils::MM_BeOS - methods to override UN*X behaviour in
13007 ExtUtils::MakeMaker
13008
13009 =over 4
13010
13011 =item SYNOPSIS
13012
13013 =item DESCRIPTION
13014
13015 =back
13016
13017 os_flavor (o)
13018
13019 init_linker
13020
13021 =head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
13022 ExtUtils::MakeMaker
13023
13024 =over 4
13025
13026 =item SYNOPSIS
13027
13028 =item DESCRIPTION
13029
13030 os_flavor (o)
13031
13032 =back
13033
13034 cflags (o)
13035
13036 replace_manpage_separator (o)
13037
13038 init_linker
13039
13040 =head2 ExtUtils::MM_DOS - DOS specific subclass of ExtUtils::MM_Unix
13041
13042 =over 4
13043
13044 =item SYNOPSIS
13045
13046 =item DESCRIPTION
13047
13048 =over 4
13049
13050 =item Overridden methods
13051
13052 os_flavor
13053
13054 =back
13055
13056 =back
13057
13058 B<replace_manpage_separator>
13059
13060 =over 4
13061
13062 =item AUTHOR
13063
13064 =item SEE ALSO
13065
13066 =back
13067
13068 =head2 ExtUtils::MM_MacOS - methods to override UN*X behaviour in
13069 ExtUtils::MakeMaker
13070
13071 =over 4
13072
13073 =item SYNOPSIS
13074
13075 =item DESCRIPTION
13076
13077 =back
13078
13079 maybe_command
13080
13081 guess_name
13082
13083 macify
13084
13085 patternify
13086
13087 init_main
13088
13089 init_others
13090
13091 init_platform, platform_constants
13092
13093 init_dirscan
13094
13095 init_VERSION (o)
13096
13097 special_targets (o)
13098
13099 static (o)
13100
13101 dlsyms (o)
13102
13103 dynamic (o)
13104
13105 clean (o)
13106
13107 clean_subdirs_target
13108
13109 realclean (o)
13110
13111 realclean_subdirs_target
13112
13113 rulez (o)
13114
13115 processPL (o)
13116
13117 os_flavor
13118
13119 =head2 ExtUtils::MM_NW5 - methods to override UN*X behaviour in
13120 ExtUtils::MakeMaker
13121
13122 =over 4
13123
13124 =item SYNOPSIS
13125
13126 =item DESCRIPTION
13127
13128 =back
13129
13130 os_flavor
13131
13132 init_platform (o), platform_constants
13133
13134 const_cccmd (o)
13135
13136 static_lib (o)
13137
13138 dynamic_lib (o)
13139
13140 =head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
13141 ExtUtils::MakeMaker
13142
13143 =over 4
13144
13145 =item SYNOPSIS
13146
13147 =item DESCRIPTION
13148
13149 =item METHODS
13150
13151 init_dist (o)
13152
13153 =back
13154
13155 init_linker
13156
13157 os_flavor
13158
13159 =head2 ExtUtils::MM_UWIN - U/WIN specific subclass of ExtUtils::MM_Unix
13160
13161 =over 4
13162
13163 =item SYNOPSIS
13164
13165 =item DESCRIPTION
13166
13167 =over 4
13168
13169 =item Overridden methods
13170
13171 os_flavor
13172
13173 =back
13174
13175 =back
13176
13177 B<replace_manpage_separator>
13178
13179 =over 4
13180
13181 =item AUTHOR
13182
13183 =item SEE ALSO
13184
13185 =back
13186
13187 =head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
13188
13189 =over 4
13190
13191 =item SYNOPSIS
13192
13193 =item DESCRIPTION
13194
13195 =item METHODS
13196
13197 =back
13198
13199 =over 4
13200
13201 =item Methods
13202
13203 os_flavor (o)
13204
13205 =back
13206
13207 c_o (o)
13208
13209 cflags (o)
13210
13211 clean (o)
13212
13213 clean_subdirs_target
13214
13215 const_cccmd (o)
13216
13217 const_config (o)
13218
13219 const_loadlibs (o)
13220
13221 constants (o)
13222
13223 depend (o)
13224
13225 dir_target (o)
13226
13227 init_DEST
13228
13229 init_dist
13230
13231 dist (o)
13232
13233 dist_basics (o)
13234
13235 dist_ci (o)
13236
13237 dist_core (o)
13238
13239 B<dist_target>
13240
13241 B<tardist_target>
13242
13243 B<zipdist_target>
13244
13245 B<tarfile_target>
13246
13247 zipfile_target
13248
13249 uutardist_target
13250
13251 shdist_target
13252
13253 distdir
13254
13255 dist_test
13256
13257 dlsyms (o)
13258
13259 dynamic (o)
13260
13261 dynamic_bs (o)
13262
13263 dynamic_lib (o)
13264
13265 exescan
13266
13267 extliblist
13268
13269 find_perl
13270
13271 find_tests
13272
13273 =over 4
13274
13275 =item Methods to actually produce chunks of text for the Makefile
13276
13277 fixin
13278
13279 =back
13280
13281 force (o)
13282
13283 guess_name
13284
13285 has_link_code
13286
13287 init_dirscan
13288
13289 init_DIRFILESEP
13290
13291 init_main
13292
13293 init_others
13294
13295 init_INST
13296
13297 init_INSTALL
13298
13299 init_linker
13300
13301 init_lib2arch
13302
13303 init_PERL
13304
13305 init_platform (o), platform_constants (o)
13306
13307 init_PERM
13308
13309 init_xs
13310
13311 install (o)
13312
13313 installbin (o)
13314
13315 linkext (o)
13316
13317 lsdir
13318
13319 macro (o)
13320
13321 makeaperl (o)
13322
13323 makefile (o)
13324
13325 maybe_command
13326
13327 needs_linking (o)
13328
13329 nicetext
13330
13331 parse_abstract
13332
13333 parse_version
13334
13335 pasthru (o)
13336
13337 perl_script
13338
13339 perldepend (o)
13340
13341 perm_rw (o)
13342
13343 perm_rwx (o)
13344
13345 pm_to_blib
13346
13347 post_constants (o)
13348
13349 post_initialize (o)
13350
13351 postamble (o)
13352
13353 ppd
13354
13355 prefixify
13356
13357 processPL (o)
13358
13359 quote_paren
13360
13361 realclean (o)
13362
13363 realclean_subdirs_target
13364
13365 replace_manpage_separator
13366
13367 oneliner (o)
13368
13369 quote_literal
13370
13371 escape_newlines
13372
13373 max_exec_len
13374
13375 static (o)
13376
13377 static_lib (o)
13378
13379 staticmake (o)
13380
13381 subdir_x (o)
13382
13383 subdirs (o)
13384
13385 test (o)
13386
13387 test_via_harness (override)
13388
13389 test_via_script (override)
13390
13391 tools_other (o)
13392
13393 tool_xsubpp (o)
13394
13395 all_target
13396
13397 top_targets (o)
13398
13399 writedoc
13400
13401 xs_c (o)
13402
13403 xs_cpp (o)
13404
13405 xs_o (o)
13406
13407 =over 4
13408
13409 =item SEE ALSO
13410
13411 =back
13412
13413 =head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
13414 ExtUtils::MakeMaker
13415
13416 =over 4
13417
13418 =item SYNOPSIS
13419
13420 =item DESCRIPTION
13421
13422 =over 4
13423
13424 =item Methods always loaded
13425
13426 wraplist
13427
13428 =back
13429
13430 =back
13431
13432 =over 4
13433
13434 =item Methods
13435
13436 guess_name (override)
13437
13438 =back
13439
13440 find_perl (override)
13441
13442 maybe_command (override)
13443
13444 perl_script (override)
13445
13446 replace_manpage_separator
13447
13448 init_DEST
13449
13450 init_DIRFILESEP
13451
13452 init_main (override)
13453
13454 init_others (override)
13455
13456 init_platform (override)
13457
13458 platform_constants
13459
13460 init_VERSION (override)
13461
13462 constants (override)
13463
13464 special_targets
13465
13466 cflags (override)
13467
13468 const_cccmd (override)
13469
13470 tool_sxubpp (override)
13471
13472 tools_other (override)
13473
13474 init_dist (override)
13475
13476 c_o (override)
13477
13478 xs_c (override)
13479
13480 xs_o (override)
13481
13482 dlsyms (override)
13483
13484 dynamic_lib (override)
13485
13486 dynamic_bs (override)
13487
13488 static_lib (override)
13489
13490 processPL (override)
13491
13492 installbin (override)
13493
13494 subdir_x (override)
13495
13496 clean (override)
13497
13498 clean_subdirs_target
13499
13500 realclean (override)
13501
13502 zipfile_target (o), tarfile_target (o), shdist_target (o)
13503
13504 dist_test (override)
13505
13506 install (override)
13507
13508 perldepend (override)
13509
13510 makefile (override)
13511
13512 find_tests (override)
13513
13514 test (override)
13515
13516 makeaperl (override)
13517
13518 nicetext (override)
13519
13520 prefixify (override)
13521
13522 oneliner (o)
13523
13524 B<echo> (o)
13525
13526 quote_literal
13527
13528 escape_newlines
13529
13530 max_exec_len
13531
13532 init_linker (o)
13533
13534 eliminate_macros
13535
13536 fixpath
13537
13538 os_flavor
13539
13540 =head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
13541 ExtUtils::MakeMaker
13542
13543 =over 4
13544
13545 =item SYNOPSIS
13546
13547 =item DESCRIPTION
13548
13549 =back
13550
13551 =over 4
13552
13553 =item Overridden methods
13554
13555 B<dlsyms>
13556
13557 =back
13558
13559 replace_manpage_separator
13560
13561 B<maybe_command>
13562
13563 B<find_tests>
13564
13565 B<init_DIRFILESEP>
13566
13567 B<init_others>
13568
13569 init_platform (o), platform_constants (o)
13570
13571 special_targets (o)
13572
13573 static_lib (o)
13574
13575 dynamic_lib (o)
13576
13577 clean
13578
13579 init_linker
13580
13581 perl_script
13582
13583 xs_o (o)
13584
13585 pasthru (o)
13586
13587 oneliner (o)
13588
13589 max_exec_len
13590
13591 os_flavor
13592
13593 =head2 ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X
13594
13595 =over 4
13596
13597 =item SYNOPSIS
13598
13599 =item DESCRIPTION
13600
13601 =over 4
13602
13603 =item Overriden methods
13604
13605 dist_test
13606
13607 =back
13608
13609 =back
13610
13611 subdir_x
13612
13613 xs_c
13614
13615 xs_cpp
13616
13617 xs_o
13618
13619 clean_subdirs_target
13620
13621 realclean_subdirs_target
13622
13623 os_flavor
13624
13625 =over 4
13626
13627 =item AUTHOR
13628
13629 =back
13630
13631 =head2 ExtUtils::MY - ExtUtils::MakeMaker subclass for customization
13632
13633 =over 4
13634
13635 =item SYNOPSIS
13636
13637 =item DESCRIPTION
13638
13639 =back
13640
13641 =head2 ExtUtils::MakeMaker - Create a module Makefile
13642
13643 =over 4
13644
13645 =item SYNOPSIS
13646
13647 =item DESCRIPTION
13648
13649 =over 4
13650
13651 =item How To Write A Makefile.PL
13652
13653 =item Default Makefile Behaviour
13654
13655 =item make test
13656
13657 =item make testdb
13658
13659 =item make install
13660
13661 =item PREFIX and LIB attribute
13662
13663 =item AFS users
13664
13665 =item Static Linking of a new Perl Binary
13666
13667 =item Determination of Perl Library and Installation Locations
13668
13669 =item Which architecture dependent directory?
13670
13671 =item Using Attributes and Parameters
13672
13673 ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CCFLAGS, CONFIG,
13674 CONFIGURE, DEFINE, DESTDIR, DIR, DISTNAME, DISTVNAME, DL_FUNCS, DL_VARS,
13675 EXCLUDE_EXT, EXE_FILES, FIRST_MAKEFILE, FULLPERL, FULLPERLRUN,
13676 FULLPERLRUNINST, FUNCLIST, H, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB,
13677 INSTALLBIN, INSTALLDIRS, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB,
13678 INSTALLSCRIPT, INSTALLSITEARCH, INSTALLSITEBIN, INSTALLSITELIB,
13679 INSTALLSITEMAN1DIR, INSTALLSITEMAN3DIR, INSTALLVENDORARCH,
13680 INSTALLVENDORBIN, INSTALLVENDORLIB, INSTALLVENDORMAN1DIR,
13681 INSTALLVENDORMAN3DIR, INST_ARCHLIB, INST_BIN, INST_LIB, INST_MAN1DIR,
13682 INST_MAN3DIR, INST_SCRIPT, LD, LDDLFLAGS, LDFROM, LIB, LIBPERL_A, LIBS,
13683 LINKTYPE, MAKEAPERL, MAKEFILE_OLD, MAN1PODS, MAN3PODS, MAP_TARGET,
13684 MYEXTLIB, NAME, NEEDS_LINKING, NOECHO, NORECURS, NO_META, NO_VC, OBJECT,
13685 OPTIMIZE, PERL, PERL_CORE, PERLMAINCC, PERL_ARCHLIB, PERL_LIB,
13686 PERL_MALLOC_OK, PERLPREFIX, PERLRUN, PERLRUNINST, PERL_SRC, PERM_RW,
13687 PERM_RWX, PL_FILES, PM, PMLIBDIRS, PM_FILTER, POLLUTE, PPM_INSTALL_EXEC,
13688 PPM_INSTALL_SCRIPT, PREFIX, PREREQ_FATAL, PREREQ_PM, PREREQ_PRINT,
13689 PRINT_PREREQ, SITEPREFIX, SKIP, TYPEMAPS, VENDORPREFIX, VERBINST, VERSION,
13690 VERSION_FROM, VERSION_SYM, XS, XSOPT, XSPROTOARG, XS_VERSION
13691
13692 =item Additional lowercase attributes
13693
13694 clean, depend, dist, dynamic_lib, linkext, macro, postamble, realclean,
13695 test, tool_autosplit
13696
13697 =item Overriding MakeMaker Methods
13698
13699 =item The End Of Cargo Cult Programming
13700
13701 C<<MAN3PODS => ' '>>
13702
13703 =item Hintsfile support
13704
13705 =item Distribution Support
13706
13707    make distcheck,    make skipcheck,    make distclean,    make manifest, 
13708   make distdir,   make disttest,    make tardist,    make dist,    make
13709 uutardist,    make shdist,    make zipdist,    make ci
13710
13711 =item Module Meta-Data
13712
13713 =item Disabling an extension
13714
13715 =item Other Handy Functions
13716
13717 prompt
13718
13719 =back
13720
13721 =item ENVIRONMENT
13722
13723 PERL_MM_OPT, PERL_MM_USE_DEFAULT
13724
13725 =item SEE ALSO
13726
13727 =item AUTHORS
13728
13729 =item LICENSE
13730
13731 =back
13732
13733 =head2 ExtUtils::MakeMaker::FAQ - Frequently Asked Questions About
13734 MakeMaker
13735
13736 =over 4
13737
13738 =item DESCRIPTION
13739
13740 =over 4
13741
13742 =item Philosophy and History
13743
13744 Why not just use <insert other build config tool here>?, What's
13745 Module::Build and how does it relate to MakeMaker?, pure perl.  no make, no
13746 shell commands, easier to customize, cleaner internals, less cruft
13747
13748 =item Module Writing
13749
13750 How do I keep my $VERSION up to date without resetting it manually?, What's
13751 this F<META.yml> thing and how did it get in my F<MANIFEST>?!
13752
13753 =item XS
13754
13755 How to I prevent "object version X.XX does not match bootstrap parameter
13756 Y.YY" errors?, How do I make two or more XS files coexist in the same
13757 directory?
13758
13759 =back
13760
13761 =item PATCHING
13762
13763 =item AUTHOR
13764
13765 =item SEE ALSO
13766
13767 =back
13768
13769 =head2 ExtUtils::MakeMaker::Tutorial - Writing a module with MakeMaker
13770
13771 =over 4
13772
13773 =item SYNOPSIS
13774
13775 =item DESCRIPTION
13776
13777 =over 4
13778
13779 =item The Mantra
13780
13781 =item The Layout
13782
13783 Makefile.PL, MANIFEST, lib/, t/, Changes, README, INSTALL, MANIFEST.SKIP,
13784 bin/
13785
13786 =back
13787
13788 =item SEE ALSO
13789
13790 =back
13791
13792 =head2 ExtUtils::MakeMaker::bytes - Version agnostic bytes.pm
13793
13794 =over 4
13795
13796 =item SYNOPSIS
13797
13798 =item DESCRIPTION
13799
13800 =back
13801
13802 =head2 ExtUtils::MakeMaker::vmsish - Platform agnostic vmsish.pm
13803
13804 =over 4
13805
13806 =item SYNOPSIS
13807
13808 =item DESCRIPTION
13809
13810 =back
13811
13812 =head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
13813
13814 =over 4
13815
13816 =item SYNOPSIS
13817
13818 =item DESCRIPTION
13819
13820 =over 4
13821
13822 =item Functions
13823
13824 mkmanifest
13825
13826 =back
13827
13828 =back
13829
13830 manifind
13831
13832 manicheck
13833
13834 filecheck
13835
13836 fullcheck
13837
13838 skipcheck
13839
13840 maniread
13841
13842 manicopy
13843
13844 maniadd
13845
13846 =over 4
13847
13848 =item MANIFEST
13849
13850 =item MANIFEST.SKIP
13851
13852 =item EXPORT_OK
13853
13854 =item GLOBAL VARIABLES
13855
13856 =back
13857
13858 =over 4
13859
13860 =item DIAGNOSTICS
13861
13862 C<Not in MANIFEST:> I<file>, C<Skipping> I<file>, C<No such file:> I<file>,
13863 C<MANIFEST:> I<$!>, C<Added to MANIFEST:> I<file>
13864
13865 =item ENVIRONMENT
13866
13867 B<PERL_MM_MANIFEST_DEBUG>
13868
13869 =item SEE ALSO
13870
13871 =item AUTHOR
13872
13873 =back
13874
13875 =head2 ExtUtils::Miniperl, writemain - write the C code for perlmain.c
13876
13877 =over 4
13878
13879 =item SYNOPSIS
13880
13881 =item DESCRIPTION
13882
13883 =item SEE ALSO
13884
13885 =back
13886
13887 =head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
13888
13889 =over 4
13890
13891 =item SYNOPSIS
13892
13893 =item DESCRIPTION
13894
13895 =back
13896
13897 =head2 ExtUtils::Mksymlists - write linker options files for dynamic
13898 extension
13899
13900 =over 4
13901
13902 =item SYNOPSIS
13903
13904 =item DESCRIPTION
13905
13906 DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
13907
13908 =item AUTHOR
13909
13910 =item REVISION
13911
13912 =back
13913
13914 =head2 ExtUtils::Packlist - manage .packlist files
13915
13916 =over 4
13917
13918 =item SYNOPSIS
13919
13920 =item DESCRIPTION
13921
13922 =item USAGE
13923
13924 =item FUNCTIONS
13925
13926 new(), read(), write(), validate(), packlist_file()
13927
13928 =item EXAMPLE
13929
13930 =item AUTHOR
13931
13932 =back
13933
13934 =head2 ExtUtils::testlib - add blib/* directories to @INC
13935
13936 =over 4
13937
13938 =item SYNOPSIS
13939
13940 =item DESCRIPTION
13941
13942 =back
13943
13944 =head2 Fatal - replace functions with equivalents which succeed or die
13945
13946 =over 4
13947
13948 =item SYNOPSIS
13949
13950 =item DESCRIPTION
13951
13952 =item AUTHOR
13953
13954 =back
13955
13956 =head2 Fcntl - load the C Fcntl.h defines
13957
13958 =over 4
13959
13960 =item SYNOPSIS
13961
13962 =item DESCRIPTION
13963
13964 =item NOTE
13965
13966 =item EXPORTED SYMBOLS
13967
13968 =back
13969
13970 =head2 File::Basename, fileparse - split a pathname into pieces
13971
13972 =over 4
13973
13974 =item SYNOPSIS
13975
13976 =item DESCRIPTION
13977
13978 fileparse_set_fstype, fileparse
13979
13980 =item EXAMPLES
13981
13982 C<basename>, C<dirname>
13983
13984 =back
13985
13986 =head2 File::CheckTree, validate - run many filetest checks on a tree
13987
13988 =over 4
13989
13990 =item SYNOPSIS
13991
13992 =item DESCRIPTION
13993
13994 =item AUTHOR
13995
13996 =item HISTORY
13997
13998 =back
13999
14000 =head2 File::Compare - Compare files or filehandles
14001
14002 =over 4
14003
14004 =item SYNOPSIS
14005
14006 =item DESCRIPTION
14007
14008 =item RETURN
14009
14010 =item AUTHOR
14011
14012 =back
14013
14014 =head2 File::Copy - Copy files or filehandles
14015
14016 =over 4
14017
14018 =item SYNOPSIS
14019
14020 =item DESCRIPTION
14021
14022 =over 4
14023
14024 =item Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
14025
14026 rmscopy($from,$to[,$date_flag])
14027
14028 =back
14029
14030 =item RETURN
14031
14032 =item NOTES
14033
14034 =item AUTHOR
14035
14036 =back
14037
14038 =head2 File::DosGlob - DOS like globbing and then some
14039
14040 =over 4
14041
14042 =item SYNOPSIS
14043
14044 =item DESCRIPTION
14045
14046 =item NOTES
14047
14048 =item EXPORTS (by request only)
14049
14050 =item BUGS
14051
14052 =item AUTHOR
14053
14054 =item HISTORY
14055
14056 =item SEE ALSO
14057
14058 =back
14059
14060 =head2 File::Find - Traverse a directory tree.
14061
14062 =over 4
14063
14064 =item SYNOPSIS
14065
14066 =item DESCRIPTION
14067
14068 B<find>, B<finddepth>
14069
14070 =over 4
14071
14072 =item %options
14073
14074 C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
14075 C<follow_fast>, C<follow_skip>, C<dangling_symlinks>, C<no_chdir>,
14076 C<untaint>, C<untaint_pattern>, C<untaint_skip>
14077
14078 =item The wanted function
14079
14080 C<$File::Find::dir> is the current directory name,, C<$_> is the current
14081 filename within that directory, C<$File::Find::name> is the complete
14082 pathname to the file
14083
14084 =back
14085
14086 =item WARNINGS
14087
14088 =item CAVEAT
14089
14090 $dont_use_nlink, symlinks
14091
14092 =item NOTES
14093
14094 =item HISTORY
14095
14096 =back
14097
14098 =head2 File::Glob - Perl extension for BSD glob routine
14099
14100 =over 4
14101
14102 =item SYNOPSIS
14103
14104 =item DESCRIPTION
14105
14106 C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
14107 C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
14108 C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
14109
14110 =item DIAGNOSTICS
14111
14112 C<GLOB_NOSPACE>, C<GLOB_ABEND>
14113
14114 =item NOTES
14115
14116 =item AUTHOR
14117
14118 =back
14119
14120 =head2 File::Path - create or remove directory trees
14121
14122 =over 4
14123
14124 =item SYNOPSIS
14125
14126 =item DESCRIPTION
14127
14128 =item DIAGNOSTICS
14129
14130 =item AUTHORS
14131
14132 =back
14133
14134 =head2 File::Spec - portably perform operations on file names
14135
14136 =over 4
14137
14138 =item SYNOPSIS
14139
14140 =item DESCRIPTION
14141
14142 =item METHODS
14143
14144 canonpath, catdir, catfile, curdir, devnull, rootdir, tmpdir, updir,
14145 no_upwards, case_tolerant, file_name_is_absolute, path, join, splitpath,
14146 splitdir, catpath(), abs2rel, rel2abs()
14147
14148 =item SEE ALSO
14149
14150 =item AUTHORS
14151
14152 =back
14153
14154 =head2 File::Spec::Cygwin - methods for Cygwin file specs
14155
14156 =over 4
14157
14158 =item SYNOPSIS
14159
14160 =item DESCRIPTION
14161
14162 =back
14163
14164 canonpath
14165
14166 file_name_is_absolute
14167
14168 tmpdir (override)
14169
14170 =head2 File::Spec::Epoc - methods for Epoc file specs
14171
14172 =over 4
14173
14174 =item SYNOPSIS
14175
14176 =item DESCRIPTION
14177
14178 =item AUTHORS
14179
14180 =back
14181
14182 canonpath()
14183
14184 =over 4
14185
14186 =item SEE ALSO
14187
14188 =back
14189
14190 =head2 File::Spec::Functions - portably perform operations on file names
14191
14192 =over 4
14193
14194 =item SYNOPSIS
14195
14196 =item DESCRIPTION
14197
14198 =over 4
14199
14200 =item Exports
14201
14202 =back
14203
14204 =item SEE ALSO
14205
14206 =back
14207
14208 =head2 File::Spec::Mac - File::Spec for Mac OS (Classic)
14209
14210 =over 4
14211
14212 =item SYNOPSIS
14213
14214 =item DESCRIPTION
14215
14216 =item METHODS
14217
14218 canonpath
14219
14220 =back
14221
14222 catdir()
14223
14224 catfile
14225
14226 curdir
14227
14228 devnull
14229
14230 rootdir
14231
14232 tmpdir
14233
14234 updir
14235
14236 file_name_is_absolute
14237
14238 path
14239
14240 splitpath
14241
14242 splitdir
14243
14244 catpath
14245
14246 abs2rel
14247
14248 rel2abs
14249
14250 =over 4
14251
14252 =item AUTHORS
14253
14254 =item SEE ALSO
14255
14256 =back
14257
14258 =head2 File::Spec::OS2 - methods for OS/2 file specs
14259
14260 =over 4
14261
14262 =item SYNOPSIS
14263
14264 =item DESCRIPTION
14265
14266 tmpdir, splitpath
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