Unknown discipline ':utf8' w/ maint perl w/o perlio
[p5sagit/p5-mst-13.2.git] / pod / perltoc.pod
1
2 # !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
3 # This file is autogenerated by buildtoc from all the other pods.
4 # Edit those files and run buildtoc --build-toc to effect changes.
5
6 =head1 NAME
7
8 perltoc - perl documentation table of contents
9
10 =head1 DESCRIPTION
11
12 This page provides a brief table of contents for the rest of the Perl
13 documentation set.  It is meant to be scanned quickly or grepped
14 through to locate the proper section you're looking for.
15
16 =head1 BASIC DOCUMENTATION
17
18 =head2 perl - Practical Extraction and Report Language
19
20 =over 4
21
22 =item SYNOPSIS
23
24 =over 4
25
26 =item Overview
27
28 =item Tutorials
29
30 =item Reference Manual
31
32 =item Internals and C Language Interface
33
34 =item Miscellaneous
35
36 =item Language-Specific
37
38 =item Platform-Specific
39
40 =back
41
42 =item DESCRIPTION
43
44 =item AVAILABILITY
45
46 =item ENVIRONMENT
47
48 =item AUTHOR
49
50 =item FILES
51
52 =item SEE ALSO
53
54 =item DIAGNOSTICS
55
56 =item BUGS
57
58 =item NOTES
59
60 =back
61
62 =head2 perlintro -- a brief introduction and overview of Perl
63
64 =over 4
65
66 =item DESCRIPTION
67
68 =over 4
69
70 =item What is Perl?
71
72 =item Running Perl programs
73
74 =item Basic syntax overview
75
76 =item Perl variable types
77
78 Scalars, Arrays, Hashes
79
80 =item Variable scoping
81
82 =item Conditional and looping constructs
83
84 if, while, for, foreach
85
86 =item Builtin operators and functions
87
88 Arithmetic, Numeric comparison, String comparison, Boolean logic,
89 Miscellaneous
90
91 =item Files and I/O
92
93 =item Regular expressions
94
95 Simple matching, Simple substitution, More complex regular expressions,
96 Parentheses for capturing, Other regexp features
97
98 =item Writing subroutines
99
100 =item OO Perl
101
102 =item Using Perl modules
103
104 =back
105
106 =item AUTHOR
107
108 =back
109
110 =head2 perlreftut - Mark's very short tutorial about references
111
112 =over 4
113
114 =item DESCRIPTION
115
116 =item Who Needs Complicated Data Structures?
117
118 =item The Solution
119
120 =item Syntax
121
122 =over 4
123
124 =item Making References
125
126 =item Using References
127
128 =item An Example
129
130 =item Arrow Rule
131
132 =back
133
134 =item Solution
135
136 =item The Rest
137
138 =item Summary
139
140 =item Credits
141
142 =over 4
143
144 =item Distribution Conditions
145
146 =back
147
148 =back
149
150 =head2 perldsc - Perl Data Structures Cookbook
151
152 =over 4
153
154 =item DESCRIPTION
155
156 arrays of arrays, hashes of arrays, arrays of hashes, hashes of hashes,
157 more elaborate constructs
158
159 =item REFERENCES
160
161 =item COMMON MISTAKES
162
163 =item CAVEAT ON PRECEDENCE
164
165 =item WHY YOU SHOULD ALWAYS C<use strict>
166
167 =item DEBUGGING
168
169 =item CODE EXAMPLES
170
171 =item ARRAYS OF ARRAYS
172
173 =over 4
174
175 =item Declaration of an ARRAY OF ARRAYS
176
177 =item Generation of an ARRAY OF ARRAYS
178
179 =item Access and Printing of an ARRAY OF ARRAYS
180
181 =back
182
183 =item HASHES OF ARRAYS
184
185 =over 4
186
187 =item Declaration of a HASH OF ARRAYS
188
189 =item Generation of a HASH OF ARRAYS
190
191 =item Access and Printing of a HASH OF ARRAYS
192
193 =back
194
195 =item ARRAYS OF HASHES
196
197 =over 4
198
199 =item Declaration of an ARRAY OF HASHES
200
201 =item Generation of an ARRAY OF HASHES
202
203 =item Access and Printing of an ARRAY OF HASHES
204
205 =back
206
207 =item HASHES OF HASHES
208
209 =over 4
210
211 =item Declaration of a HASH OF HASHES
212
213 =item Generation of a HASH OF HASHES
214
215 =item Access and Printing of a HASH OF HASHES
216
217 =back
218
219 =item MORE ELABORATE RECORDS
220
221 =over 4
222
223 =item Declaration of MORE ELABORATE RECORDS
224
225 =item Declaration of a HASH OF COMPLEX RECORDS
226
227 =item Generation of a HASH OF COMPLEX RECORDS
228
229 =back
230
231 =item Database Ties
232
233 =item SEE ALSO
234
235 =item AUTHOR
236
237 =back
238
239 =head2 perllol - Manipulating Arrays of Arrays in Perl
240
241 =over 4
242
243 =item DESCRIPTION
244
245 =over 4
246
247 =item Declaration and Access of Arrays of Arrays
248
249 =item Growing Your Own
250
251 =item Access and Printing
252
253 =item Slices
254
255 =back
256
257 =item SEE ALSO
258
259 =item AUTHOR
260
261 =back
262
263 =head2 perlrequick - Perl regular expressions quick start
264
265 =over 4
266
267 =item DESCRIPTION
268
269 =item The Guide
270
271 =over 4
272
273 =item Simple word matching
274
275 =item Using character classes
276
277 =item Matching this or that
278
279 =item Grouping things and hierarchical matching
280
281 =item Extracting matches
282
283 =item Matching repetitions
284
285 =item More matching
286
287 =item Search and replace
288
289 =item The split operator
290
291 =back
292
293 =item BUGS
294
295 =item SEE ALSO
296
297 =item AUTHOR AND COPYRIGHT
298
299 =over 4
300
301 =item Acknowledgments
302
303 =back
304
305 =back
306
307 =head2 perlretut - Perl regular expressions tutorial
308
309 =over 4
310
311 =item DESCRIPTION
312
313 =item Part 1: The basics
314
315 =over 4
316
317 =item Simple word matching
318
319 =item Using character classes
320
321 =item Matching this or that
322
323 =item Grouping things and hierarchical matching
324
325 =item Extracting matches
326
327 =item Matching repetitions
328
329 =item Building a regexp
330
331 =item Using regular expressions in Perl
332
333 =back
334
335 =item Part 2: Power tools
336
337 =over 4
338
339 =item More on characters, strings, and character classes
340
341 =item Compiling and saving regular expressions
342
343 =item Embedding comments and modifiers in a regular expression
344
345 =item Non-capturing groupings
346
347 =item Looking ahead and looking behind
348
349 =item Using independent subexpressions to prevent backtracking
350
351 =item Conditional expressions
352
353 =item A bit of magic: executing Perl code in a regular expression
354
355 =item Pragmas and debugging
356
357 =back
358
359 =item BUGS
360
361 =item SEE ALSO
362
363 =item AUTHOR AND COPYRIGHT
364
365 =over 4
366
367 =item Acknowledgments
368
369 =back
370
371 =back
372
373 =head2 perlboot - Beginner's Object-Oriented Tutorial
374
375 =over 4
376
377 =item DESCRIPTION
378
379 =over 4
380
381 =item If we could talk to the animals...
382
383 =item Introducing the method invocation arrow
384
385 =item Invoking a barnyard
386
387 =item The extra parameter of method invocation
388
389 =item Calling a second method to simplify things
390
391 =item Inheriting the windpipes
392
393 =item A few notes about @ISA
394
395 =item Overriding the methods
396
397 =item Starting the search from a different place
398
399 =item The SUPER way of doing things
400
401 =item Where we're at so far...
402
403 =item A horse is a horse, of course of course -- or is it?
404
405 =item Invoking an instance method
406
407 =item Accessing the instance data
408
409 =item How to build a horse
410
411 =item Inheriting the constructor
412
413 =item Making a method work with either classes or instances
414
415 =item Adding parameters to a method
416
417 =item More interesting instances
418
419 =item A horse of a different color
420
421 =item Summary
422
423 =back
424
425 =item SEE ALSO
426
427 =item COPYRIGHT
428
429 =back
430
431 =head2 perltoot - Tom's object-oriented tutorial for perl
432
433 =over 4
434
435 =item DESCRIPTION
436
437 =item Creating a Class
438
439 =over 4
440
441 =item Object Representation
442
443 =item Class Interface
444
445 =item Constructors and Instance Methods
446
447 =item Planning for the Future: Better Constructors
448
449 =item Destructors
450
451 =item Other Object Methods
452
453 =back
454
455 =item Class Data
456
457 =over 4
458
459 =item Accessing Class Data
460
461 =item Debugging Methods
462
463 =item Class Destructors
464
465 =item Documenting the Interface
466
467 =back
468
469 =item Aggregation
470
471 =item Inheritance
472
473 =over 4
474
475 =item Overridden Methods
476
477 =item Multiple Inheritance
478
479 =item UNIVERSAL: The Root of All Objects
480
481 =back
482
483 =item Alternate Object Representations
484
485 =over 4
486
487 =item Arrays as Objects
488
489 =item Closures as Objects
490
491 =back
492
493 =item AUTOLOAD: Proxy Methods
494
495 =over 4
496
497 =item Autoloaded Data Methods
498
499 =item Inherited Autoloaded Data Methods
500
501 =back
502
503 =item Metaclassical Tools
504
505 =over 4
506
507 =item Class::Struct
508
509 =item Data Members as Variables
510
511 =back
512
513 =item NOTES
514
515 =over 4
516
517 =item Object Terminology
518
519 =back
520
521 =item SEE ALSO
522
523 =item AUTHOR AND COPYRIGHT
524
525 =item COPYRIGHT
526
527 =over 4
528
529 =item Acknowledgments
530
531 =back
532
533 =back
534
535 =head2 perltooc - Tom's OO Tutorial for Class Data in Perl
536
537 =over 4
538
539 =item DESCRIPTION
540
541 =item Class Data in a Can
542
543 =item Class Data as Package Variables
544
545 =over 4
546
547 =item Putting All Your Eggs in One Basket
548
549 =item Inheritance Concerns
550
551 =item The Eponymous Meta-Object
552
553 =item Indirect References to Class Data
554
555 =item Monadic Classes
556
557 =item Translucent Attributes
558
559 =back
560
561 =item Class Data as Lexical Variables
562
563 =over 4
564
565 =item Privacy and Responsibility 
566
567 =item File-Scoped Lexicals
568
569 =item More Inheritance Concerns
570
571 =item Locking the Door and Throwing Away the Key
572
573 =item Translucency Revisited
574
575 =back
576
577 =item NOTES
578
579 =item SEE ALSO
580
581 =item AUTHOR AND COPYRIGHT
582
583 =item ACKNOWLEDGEMENTS
584
585 =item HISTORY
586
587 =back
588
589 =head2 perlbot - Bag'o Object Tricks (the BOT)
590
591 =over 4
592
593 =item DESCRIPTION
594
595 =item OO SCALING TIPS
596
597 =item INSTANCE VARIABLES
598
599 =item SCALAR INSTANCE VARIABLES
600
601 =item INSTANCE VARIABLE INHERITANCE
602
603 =item OBJECT RELATIONSHIPS
604
605 =item OVERRIDING SUPERCLASS METHODS
606
607 =item USING RELATIONSHIP WITH SDBM
608
609 =item THINKING OF CODE REUSE
610
611 =item CLASS CONTEXT AND THE OBJECT
612
613 =item INHERITING A CONSTRUCTOR
614
615 =item DELEGATION
616
617 =item SEE ALSO
618
619 =back
620
621 =head2 perlstyle - Perl style guide
622
623 =over 4
624
625 =item DESCRIPTION
626
627 =back
628
629 =head2 perlcheat - Perl 5 Cheat Sheet
630
631 =over 4
632
633 =item DESCRIPTION
634
635 =over 4
636
637 =item The sheet
638
639 =back
640
641 =item ACKNOWLEDGEMENTS
642
643 =item AUTHOR
644
645 =item SEE ALSO
646
647 =back
648
649 =head2 perltrap - Perl traps for the unwary
650
651 =over 4
652
653 =item DESCRIPTION
654
655 =over 4
656
657 =item Awk Traps
658
659 =item C/C++ Traps
660
661 =item Sed Traps
662
663 =item Shell Traps
664
665 =item Perl Traps
666
667 =item Perl4 to Perl5 Traps
668
669 Discontinuance, Deprecation, and BugFix traps, Parsing Traps, Numerical
670 Traps, General data type traps, Context Traps - scalar, list contexts,
671 Precedence Traps, General Regular Expression Traps using s///, etc,
672 Subroutine, Signal, Sorting Traps, OS Traps, DBM Traps, Unclassified Traps
673
674 =item Discontinuance, Deprecation, and BugFix traps
675
676 Discontinuance, Deprecation, BugFix, Discontinuance, Discontinuance,
677 Discontinuance, BugFix, Discontinuance, Discontinuance, BugFix,
678 Discontinuance, Deprecation, Discontinuance, Discontinuance
679
680 =item Parsing Traps
681
682 Parsing, Parsing, Parsing, Parsing, Parsing
683
684 =item Numerical Traps
685
686 Numerical, Numerical, Numerical, Bitwise string ops
687
688 =item General data type traps
689
690 (Arrays), (Arrays), (Hashes), (Globs), (Globs), (Scalar String),
691 (Constants), (Scalars), (Variable Suicide)
692
693 =item Context Traps - scalar, list contexts
694
695 (list context), (scalar context), (scalar context), (list, builtin)
696
697 =item Precedence Traps
698
699 Precedence, Precedence, Precedence, Precedence, Precedence, Precedence,
700 Precedence
701
702 =item General Regular Expression Traps using s///, etc.
703
704 Regular Expression, Regular Expression, Regular Expression, Regular
705 Expression, Regular Expression, Regular Expression, Regular Expression,
706 Regular Expression, Regular Expression
707
708 =item Subroutine, Signal, Sorting Traps
709
710 (Signals), (Sort Subroutine), warn() won't let you specify a filehandle
711
712 =item OS Traps
713
714 (SysV), (SysV)
715
716 =item Interpolation Traps
717
718 Interpolation, Interpolation, Interpolation, Interpolation, Interpolation,
719 Interpolation, Interpolation, Interpolation, Interpolation
720
721 =item DBM Traps
722
723 DBM, DBM
724
725 =item Unclassified Traps
726
727 C<require>/C<do> trap using returned value, C<split> on empty string with
728 LIMIT specified
729
730 =back
731
732 =back
733
734 =head2 perldebtut - Perl debugging tutorial
735
736 =over 4
737
738 =item DESCRIPTION
739
740 =item use strict
741
742 =item Looking at data and -w and v
743
744 =item help
745
746 =item Stepping through code
747
748 =item Placeholder for a, w, t, T
749
750 =item REGULAR EXPRESSIONS
751
752 =item OUTPUT TIPS
753
754 =item CGI
755
756 =item GUIs
757
758 =item SUMMARY
759
760 =item SEE ALSO
761
762 =item AUTHOR
763
764 =item CONTRIBUTORS
765
766 =back
767
768 =head2 perlfaq - frequently asked questions about Perl ($Date: 2003/01/31
769 17:37:17 $)
770
771 =over 4
772
773 =item DESCRIPTION
774
775 =over 4
776
777 =item Where to get the perlfaq
778
779 =item How to contribute to the perlfaq
780
781 =item What will happen if you mail your Perl programming problems to the
782 authors
783
784 =back
785
786 =item Credits
787
788 =item Author and Copyright Information
789
790 =over 4
791
792 =item Bundled Distributions
793
794 =item Disclaimer
795
796 =back
797
798 =item Table of Contents
799
800 perlfaq  - this document, perlfaq1 - General Questions About Perl, perlfaq2
801 - Obtaining and Learning about Perl, perlfaq3 - Programming Tools, perlfaq4
802 - Data Manipulation, perlfaq5 - Files and Formats, perlfaq6 - Regular
803 Expressions, perlfaq7 - General Perl Language Issues, perlfaq8 - System
804 Interaction, perlfaq9 - Networking
805
806 =item The Questions
807
808 =over 4
809
810 =item L<perlfaq1>: General Questions About Perl
811
812 =item L<perlfaq2>: Obtaining and Learning about Perl
813
814 =item L<perlfaq3>: Programming Tools
815
816 =item L<perlfaq4>: Data Manipulation
817
818 =item L<perlfaq5>: Files and Formats
819
820 =item L<perlfaq6>: Regular Expressions
821
822 =item L<perlfaq7>: General Perl Language Issues
823
824 =item L<perlfaq8>: System Interaction
825
826 =item L<perlfaq9>: Networking
827
828 =back
829
830 =back
831
832 =head2 perlfaq1 - General Questions About Perl ($Revision: 1.12 $, $Date:
833 2003/07/09 15:47:28 $)
834
835 =over 4
836
837 =item DESCRIPTION
838
839 =over 4
840
841 =item What is Perl?
842
843 =item Who supports Perl?  Who develops it?  Why is it free?
844
845 =item Which version of Perl should I use?
846
847 =item What are perl4 and perl5?
848
849 =item What is Ponie?
850
851 =item What is perl6?
852
853 =item How stable is Perl?
854
855 =item Is Perl difficult to learn?
856
857 =item How does Perl compare with other languages like Java, Python, REXX,
858 Scheme, or Tcl?
859
860 =item Can I do [task] in Perl?
861
862 =item When shouldn't I program in Perl?
863
864 =item What's the difference between "perl" and "Perl"?
865
866 =item Is it a Perl program or a Perl script?
867
868 =item What is a JAPH?
869
870 =item Where can I get a list of Larry Wall witticisms?
871
872 =item How can I convince my sysadmin/supervisor/employees to use version
873 5/5.6.1/Perl instead of some other language?
874
875 =back
876
877 =item AUTHOR AND COPYRIGHT
878
879 =back
880
881 =head2 perlfaq2 - Obtaining and Learning about Perl ($Revision: 1.20 $,
882 $Date: 2003/01/26 17:50:56 $)
883
884 =over 4
885
886 =item DESCRIPTION
887
888 =over 4
889
890 =item What machines support Perl?  Where do I get it?
891
892 =item How can I get a binary version of Perl?
893
894 =item I don't have a C compiler on my system.  How can I compile perl?
895
896 =item I copied the Perl binary from one machine to another, but scripts
897 don't work.
898
899 =item I grabbed the sources and tried to compile but gdbm/dynamic
900 loading/malloc/linking/... failed.  How do I make it work?
901
902 =item What modules and extensions are available for Perl?  What is CPAN? 
903 What does CPAN/src/... mean?
904
905 =item Is there an ISO or ANSI certified version of Perl?
906
907 =item Where can I get information on Perl?
908
909 =item What are the Perl newsgroups on Usenet?  Where do I post questions?
910
911 =item Where should I post source code?
912
913 =item Perl Books
914
915 References, Tutorials, Task-Oriented, Special Topics
916
917 =item Perl in Magazines
918
919 =item Perl on the Net: FTP and WWW Access
920
921 =item What mailing lists are there for Perl?
922
923 =item Archives of comp.lang.perl.misc
924
925 =item Where can I buy a commercial version of Perl?
926
927 =item Where do I send bug reports?
928
929 =item What is perl.com? Perl Mongers? pm.org? perl.org? cpan.org?
930
931 =back
932
933 =item AUTHOR AND COPYRIGHT
934
935 =back
936
937 =head2 perlfaq3 - Programming Tools ($Revision: 1.33 $, $Date: 2003/01/31
938 17:34:56 $)
939
940 =over 4
941
942 =item DESCRIPTION
943
944 =over 4
945
946 =item How do I do (anything)?
947
948 =item How can I use Perl interactively?
949
950 =item Is there a Perl shell?
951
952 =item How do I find which modules are installed on my system?
953
954 =item How do I debug my Perl programs?
955
956 =item How do I profile my Perl programs?
957
958 =item How do I cross-reference my Perl programs?
959
960 =item Is there a pretty-printer (formatter) for Perl?
961
962 =item Is there a ctags for Perl?
963
964 =item Is there an IDE or Windows Perl Editor?
965
966 Komodo, The Object System, Open Perl IDE, PerlBuilder, visiPerl+, OptiPerl,
967 GNU Emacs, MicroEMACS, XEmacs, Jed, Elvis, Vile, Vim, Codewright,
968 MultiEdit, SlickEdit, Bash, Ksh, Tcsh, Zsh, BBEdit and BBEdit Lite, Alpha
969
970 =item Where can I get Perl macros for vi?
971
972 =item Where can I get perl-mode for emacs?
973
974 =item How can I use curses with Perl?
975
976 =item How can I use X or Tk with Perl?
977
978 =item How can I generate simple menus without using CGI or Tk?
979
980 =item How can I make my Perl program run faster?
981
982 =item How can I make my Perl program take less memory?
983
984 Don't slurp!, Use map and grep selectively, Avoid unnecessary quotes and
985 stringification, Pass by reference, Tie large variables to disk
986
987 =item Is it safe to return a reference to local or lexical data?
988
989 =item How can I free an array or hash so my program shrinks?
990
991 =item How can I make my CGI script more efficient?
992
993 =item How can I hide the source for my Perl program?
994
995 =item How can I compile my Perl program into byte code or C?
996
997 =item How can I compile Perl into Java?
998
999 =item How can I get C<#!perl> to work on [MS-DOS,NT,...]?
1000
1001 =item Can I write useful Perl programs on the command line?
1002
1003 =item Why don't Perl one-liners work on my DOS/Mac/VMS system?
1004
1005 =item Where can I learn about CGI or Web programming in Perl?
1006
1007 =item Where can I learn about object-oriented Perl programming?
1008
1009 =item Where can I learn about linking C with Perl? [h2xs, xsubpp]
1010
1011 =item I've read perlembed, perlguts, etc., but I can't embed perl in
1012 my C program; what am I doing wrong?
1013
1014 =item When I tried to run my script, I got this message. What does it mean?
1015
1016 =item What's MakeMaker?
1017
1018 =back
1019
1020 =item AUTHOR AND COPYRIGHT
1021
1022 =back
1023
1024 =head2 perlfaq4 - Data Manipulation ($Revision: 1.44 $, $Date: 2003/07/28
1025 17:35:21 $)
1026
1027 =over 4
1028
1029 =item DESCRIPTION
1030
1031 =item Data: Numbers
1032
1033 =over 4
1034
1035 =item Why am I getting long decimals (eg, 19.9499999999999) instead of the
1036 numbers I should be getting (eg, 19.95)?
1037
1038 =item Why isn't my octal data interpreted correctly?
1039
1040 =item Does Perl have a round() function?  What about ceil() and floor()? 
1041 Trig functions?
1042
1043 =item How do I convert between numeric representations?
1044
1045 How do I convert hexadecimal into decimal, How do I convert from decimal to
1046 hexadecimal, How do I convert from octal to decimal, How do I convert from
1047 decimal to octal, How do I convert from binary to decimal, How do I convert
1048 from decimal to binary
1049
1050 =item Why doesn't & work the way I want it to?
1051
1052 =item How do I multiply matrices?
1053
1054 =item How do I perform an operation on a series of integers?
1055
1056 =item How can I output Roman numerals?
1057
1058 =item Why aren't my random numbers random?
1059
1060 =item How do I get a random number between X and Y?
1061
1062 =back
1063
1064 =item Data: Dates
1065
1066 =over 4
1067
1068 =item How do I find the day or week of the year?
1069
1070 =item How do I find the current century or millennium?
1071
1072 =item How can I compare two dates and find the difference?
1073
1074 =item How can I take a string and turn it into epoch seconds?
1075
1076 =item How can I find the Julian Day?
1077
1078 =item How do I find yesterday's date?
1079
1080 =item Does Perl have a Year 2000 problem?  Is Perl Y2K compliant?
1081
1082 =back
1083
1084 =item Data: Strings
1085
1086 =over 4
1087
1088 =item How do I validate input?
1089
1090 =item How do I unescape a string?
1091
1092 =item How do I remove consecutive pairs of characters?
1093
1094 =item How do I expand function calls in a string?
1095
1096 =item How do I find matching/nesting anything?
1097
1098 =item How do I reverse a string?
1099
1100 =item How do I expand tabs in a string?
1101
1102 =item How do I reformat a paragraph?
1103
1104 =item How can I access or change N characters of a string?
1105
1106 =item How do I change the Nth occurrence of something?
1107
1108 =item How can I count the number of occurrences of a substring within a
1109 string?
1110
1111 =item How do I capitalize all the words on one line?
1112
1113 =item How can I split a [character] delimited string except when inside
1114 [character]?
1115
1116 =item How do I strip blank space from the beginning/end of a string?
1117
1118 =item How do I pad a string with blanks or pad a number with zeroes?
1119
1120 =item How do I extract selected columns from a string?
1121
1122 =item How do I find the soundex value of a string?
1123
1124 =item How can I expand variables in text strings?
1125
1126 =item What's wrong with always quoting "$vars"?
1127
1128 =item Why don't my E<lt>E<lt>HERE documents work?
1129
1130 There must be no space after the E<lt>E<lt> part, There (probably) should
1131 be a semicolon at the end, You can't (easily) have any space in front of
1132 the tag
1133
1134 =back
1135
1136 =item Data: Arrays
1137
1138 =over 4
1139
1140 =item What is the difference between a list and an array?
1141
1142 =item What is the difference between $array[1] and @array[1]?
1143
1144 =item How can I remove duplicate elements from a list or array?
1145
1146 a), b), c), d), e)
1147
1148 =item How can I tell whether a certain element is contained in a list or
1149 array?
1150
1151 =item How do I compute the difference of two arrays?  How do I compute the
1152 intersection of two arrays?
1153
1154 =item How do I test whether two arrays or hashes are equal?
1155
1156 =item How do I find the first array element for which a condition is true?
1157
1158 =item How do I handle linked lists?
1159
1160 =item How do I handle circular lists?
1161
1162 =item How do I shuffle an array randomly?
1163
1164 =item How do I process/modify each element of an array?
1165
1166 =item How do I select a random element from an array?
1167
1168 =item How do I permute N elements of a list?
1169
1170 =item How do I sort an array by (anything)?
1171
1172 =item How do I manipulate arrays of bits?
1173
1174 =item Why does defined() return true on empty arrays and hashes?
1175
1176 =back
1177
1178 =item Data: Hashes (Associative Arrays)
1179
1180 =over 4
1181
1182 =item How do I process an entire hash?
1183
1184 =item What happens if I add or remove keys from a hash while iterating over
1185 it?
1186
1187 =item How do I look up a hash element by value?
1188
1189 =item How can I know how many entries are in a hash?
1190
1191 =item How do I sort a hash (optionally by value instead of key)?
1192
1193 =item How can I always keep my hash sorted?
1194
1195 =item What's the difference between "delete" and "undef" with hashes?
1196
1197 =item Why don't my tied hashes make the defined/exists distinction?
1198
1199 =item How do I reset an each() operation part-way through?
1200
1201 =item How can I get the unique keys from two hashes?
1202
1203 =item How can I store a multidimensional array in a DBM file?
1204
1205 =item How can I make my hash remember the order I put elements into it?
1206
1207 =item Why does passing a subroutine an undefined element in a hash create
1208 it?
1209
1210 =item How can I make the Perl equivalent of a C structure/C++ class/hash or
1211 array of hashes or arrays?
1212
1213 =item How can I use a reference as a hash key?
1214
1215 =back
1216
1217 =item Data: Misc
1218
1219 =over 4
1220
1221 =item How do I handle binary data correctly?
1222
1223 =item How do I determine whether a scalar is a number/whole/integer/float?
1224
1225 =item How do I keep persistent data across program calls?
1226
1227 =item How do I print out or copy a recursive data structure?
1228
1229 =item How do I define methods for every class/object?
1230
1231 =item How do I verify a credit card checksum?
1232
1233 =item How do I pack arrays of doubles or floats for XS code?
1234
1235 =back
1236
1237 =item AUTHOR AND COPYRIGHT
1238
1239 =back
1240
1241 =head2 perlfaq5 - Files and Formats ($Revision: 1.28 $, $Date: 2003/01/26
1242 17:45:46 $)
1243
1244 =over 4
1245
1246 =item DESCRIPTION
1247
1248 =over 4
1249
1250 =item How do I flush/unbuffer an output filehandle?  Why must I do this?
1251
1252 =item How do I change one line in a file/delete a line in a file/insert a
1253 line in the middle of a file/append to the beginning of a file?
1254
1255 =item How do I count the number of lines in a file?
1256
1257 =item How can I use Perl's C<-i> option from within a program?
1258
1259 =item How do I make a temporary file name?
1260
1261 =item How can I manipulate fixed-record-length files?
1262
1263 =item How can I make a filehandle local to a subroutine?  How do I pass
1264 filehandles between subroutines?  How do I make an array of filehandles?
1265
1266 =item How can I use a filehandle indirectly?
1267
1268 =item How can I set up a footer format to be used with write()?
1269
1270 =item How can I write() into a string?
1271
1272 =item How can I output my numbers with commas added?
1273
1274 =item How can I translate tildes (~) in a filename?
1275
1276 =item How come when I open a file read-write it wipes it out?
1277
1278 =item Why do I sometimes get an "Argument list too long" when I use
1279 E<lt>*E<gt>?
1280
1281 =item Is there a leak/bug in glob()?
1282
1283 =item How can I open a file with a leading ">" or trailing blanks?
1284
1285 =item How can I reliably rename a file?
1286
1287 =item How can I lock a file?
1288
1289 =item Why can't I just open(FH, "E<gt>file.lock")?
1290
1291 =item I still don't get locking.  I just want to increment the number in
1292 the file.  How can I do this?
1293
1294 =item All I want to do is append a small amount of text to the end of a
1295 file.  Do I still have to use locking?
1296
1297 =item How do I randomly update a binary file?
1298
1299 =item How do I get a file's timestamp in perl?
1300
1301 =item How do I set a file's timestamp in perl?
1302
1303 =item How do I print to more than one file at once?
1304
1305 =item How can I read in an entire file all at once?
1306
1307 =item How can I read in a file by paragraphs?
1308
1309 =item How can I read a single character from a file?  From the keyboard?
1310
1311 =item How can I tell whether there's a character waiting on a filehandle?
1312
1313 =item How do I do a C<tail -f> in perl?
1314
1315 =item How do I dup() a filehandle in Perl?
1316
1317 =item How do I close a file descriptor by number?
1318
1319 =item Why can't I use "C:\temp\foo" in DOS paths?  Why doesn't
1320 `C:\temp\foo.exe` work?
1321
1322 =item Why doesn't glob("*.*") get all the files?
1323
1324 =item Why does Perl let me delete read-only files?  Why does C<-i> clobber
1325 protected files?  Isn't this a bug in Perl?
1326
1327 =item How do I select a random line from a file?
1328
1329 =item Why do I get weird spaces when I print an array of lines?
1330
1331 =back
1332
1333 =item AUTHOR AND COPYRIGHT
1334
1335 =back
1336
1337 =head2 perlfaq6 - Regular Expressions ($Revision: 1.20 $, $Date: 2003/01/03
1338 20:05:28 $)
1339
1340 =over 4
1341
1342 =item DESCRIPTION
1343
1344 =over 4
1345
1346 =item How can I hope to use regular expressions without creating illegible
1347 and unmaintainable code?
1348
1349 Comments Outside the Regex, Comments Inside the Regex, Different Delimiters
1350
1351 =item I'm having trouble matching over more than one line.  What's wrong?
1352
1353 =item How can I pull out lines between two patterns that are themselves on
1354 different lines?
1355
1356 =item I put a regular expression into $/ but it didn't work. What's wrong?
1357
1358 =item How do I substitute case insensitively on the LHS while preserving
1359 case on the RHS?
1360
1361 =item How can I make C<\w> match national character sets?
1362
1363 =item How can I match a locale-smart version of C</[a-zA-Z]/>?
1364
1365 =item How can I quote a variable to use in a regex?
1366
1367 =item What is C</o> really for?
1368
1369 =item How do I use a regular expression to strip C style comments from a
1370 file?
1371
1372 =item Can I use Perl regular expressions to match balanced text?
1373
1374 =item What does it mean that regexes are greedy?  How can I get around it?
1375
1376 =item How do I process each word on each line?
1377
1378 =item How can I print out a word-frequency or line-frequency summary?
1379
1380 =item How can I do approximate matching?
1381
1382 =item How do I efficiently match many regular expressions at once?
1383
1384 =item Why don't word-boundary searches with C<\b> work for me?
1385
1386 =item Why does using $&, $`, or $' slow my program down?
1387
1388 =item What good is C<\G> in a regular expression?
1389
1390 =item Are Perl regexes DFAs or NFAs?  Are they POSIX compliant?
1391
1392 =item What's wrong with using grep in a void context?
1393
1394 =item How can I match strings with multibyte characters?
1395
1396 =item How do I match a pattern that is supplied by the user?
1397
1398 =back
1399
1400 =item AUTHOR AND COPYRIGHT
1401
1402 =back
1403
1404 =head2 perlfaq7 - General Perl Language Issues ($Revision: 1.15 $, $Date:
1405 2003/07/24 02:17:21 $)
1406
1407 =over 4
1408
1409 =item DESCRIPTION
1410
1411 =over 4
1412
1413 =item Can I get a BNF/yacc/RE for the Perl language?
1414
1415 =item What are all these $@%&* punctuation signs, and how do I know when to
1416 use them?
1417
1418 =item Do I always/never have to quote my strings or use semicolons and
1419 commas?
1420
1421 =item How do I skip some return values?
1422
1423 =item How do I temporarily block warnings?
1424
1425 =item What's an extension?
1426
1427 =item Why do Perl operators have different precedence than C operators?
1428
1429 =item How do I declare/create a structure?
1430
1431 =item How do I create a module?
1432
1433 =item How do I create a class?
1434
1435 =item How can I tell if a variable is tainted?
1436
1437 =item What's a closure?
1438
1439 =item What is variable suicide and how can I prevent it?
1440
1441 =item How can I pass/return a {Function, FileHandle, Array, Hash, Method,
1442 Regex}?
1443
1444 Passing Variables and Functions, Passing Filehandles, Passing Regexes,
1445 Passing Methods
1446
1447 =item How do I create a static variable?
1448
1449 =item What's the difference between dynamic and lexical (static) scoping? 
1450 Between local() and my()?
1451
1452 =item How can I access a dynamic variable while a similarly named lexical
1453 is in scope?
1454
1455 =item What's the difference between deep and shallow binding?
1456
1457 =item Why doesn't "my($foo) = E<lt>FILEE<gt>;" work right?
1458
1459 =item How do I redefine a builtin function, operator, or method?
1460
1461 =item What's the difference between calling a function as &foo and foo()?
1462
1463 =item How do I create a switch or case statement?
1464
1465 =item How can I catch accesses to undefined variables, functions, or
1466 methods?
1467
1468 =item Why can't a method included in this same file be found?
1469
1470 =item How can I find out my current package?
1471
1472 =item How can I comment out a large block of perl code?
1473
1474 =item How do I clear a package?
1475
1476 =item How can I use a variable as a variable name?
1477
1478 =item What does "bad interpreter" mean?
1479
1480 =back
1481
1482 =item AUTHOR AND COPYRIGHT
1483
1484 =back
1485
1486 =head2 perlfaq8 - System Interaction ($Revision: 1.17 $, $Date: 2003/01/26
1487 17:44:04 $)
1488
1489 =over 4
1490
1491 =item DESCRIPTION
1492
1493 =over 4
1494
1495 =item How do I find out which operating system I'm running under?
1496
1497 =item How come exec() doesn't return?
1498
1499 =item How do I do fancy stuff with the keyboard/screen/mouse?
1500
1501 Keyboard, Screen, Mouse
1502
1503 =item How do I print something out in color?
1504
1505 =item How do I read just one key without waiting for a return key?
1506
1507 =item How do I check whether input is ready on the keyboard?
1508
1509 =item How do I clear the screen?
1510
1511 =item How do I get the screen size?
1512
1513 =item How do I ask the user for a password?
1514
1515 =item How do I read and write the serial port?
1516
1517 lockfiles, open mode, end of line, flushing output, non-blocking input
1518
1519 =item How do I decode encrypted password files?
1520
1521 =item How do I start a process in the background?
1522
1523 STDIN, STDOUT, and STDERR are shared, Signals, Zombies
1524
1525 =item How do I trap control characters/signals?
1526
1527 =item How do I modify the shadow password file on a Unix system?
1528
1529 =item How do I set the time and date?
1530
1531 =item How can I sleep() or alarm() for under a second?
1532
1533 =item How can I measure time under a second?
1534
1535 =item How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
1536
1537 =item Why doesn't my sockets program work under System V (Solaris)?  What
1538 does the error message "Protocol not supported" mean?
1539
1540 =item How can I call my system's unique C functions from Perl?
1541
1542 =item Where do I get the include files to do ioctl() or syscall()?
1543
1544 =item Why do setuid perl scripts complain about kernel problems?
1545
1546 =item How can I open a pipe both to and from a command?
1547
1548 =item Why can't I get the output of a command with system()?
1549
1550 =item How can I capture STDERR from an external command?
1551
1552 =item Why doesn't open() return an error when a pipe open fails?
1553
1554 =item What's wrong with using backticks in a void context?
1555
1556 =item How can I call backticks without shell processing?
1557
1558 =item Why can't my script read from STDIN after I gave it EOF (^D on Unix,
1559 ^Z on MS-DOS)?
1560
1561 =item How can I convert my shell script to perl?
1562
1563 =item Can I use perl to run a telnet or ftp session?
1564
1565 =item How can I write expect in Perl?
1566
1567 =item Is there a way to hide perl's command line from programs such as
1568 "ps"?
1569
1570 =item I {changed directory, modified my environment} in a perl script.  How
1571 come the change disappeared when I exited the script?  How do I get my
1572 changes to be visible?
1573
1574 Unix
1575
1576 =item How do I close a process's filehandle without waiting for it to
1577 complete?
1578
1579 =item How do I fork a daemon process?
1580
1581 =item How do I find out if I'm running interactively or not?
1582
1583 =item How do I timeout a slow event?
1584
1585 =item How do I set CPU limits?
1586
1587 =item How do I avoid zombies on a Unix system?
1588
1589 =item How do I use an SQL database?
1590
1591 =item How do I make a system() exit on control-C?
1592
1593 =item How do I open a file without blocking?
1594
1595 =item How do I install a module from CPAN?
1596
1597 =item What's the difference between require and use?
1598
1599 =item How do I keep my own module/library directory?
1600
1601 =item How do I add the directory my program lives in to the module/library
1602 search path?
1603
1604 =item How do I add a directory to my include path at runtime?
1605
1606 =item What is socket.ph and where do I get it?
1607
1608 =back
1609
1610 =item AUTHOR AND COPYRIGHT
1611
1612 =back
1613
1614 =head2 perlfaq9 - Networking ($Revision: 1.15 $, $Date: 2003/01/31 17:36:57
1615 $)
1616
1617 =over 4
1618
1619 =item DESCRIPTION
1620
1621 =over 4
1622
1623 =item What is the correct form of response from a CGI script?
1624
1625 =item My CGI script runs from the command line but not the browser.  (500
1626 Server Error)
1627
1628 =item How can I get better error messages from a CGI program?
1629
1630 =item How do I remove HTML from a string?
1631
1632 =item How do I extract URLs?
1633
1634 =item How do I download a file from the user's machine?  How do I open a
1635 file on another machine?
1636
1637 =item How do I make a pop-up menu in HTML?
1638
1639 =item How do I fetch an HTML file?
1640
1641 =item How do I automate an HTML form submission?
1642
1643 =item How do I decode or create those %-encodings on the web?
1644
1645 =item How do I redirect to another page?
1646
1647 =item How do I put a password on my web pages?
1648
1649 =item How do I edit my .htpasswd and .htgroup files with Perl?
1650
1651 =item How do I make sure users can't enter values into a form that cause my
1652 CGI script to do bad things?
1653
1654 =item How do I parse a mail header?
1655
1656 =item How do I decode a CGI form?
1657
1658 =item How do I check a valid mail address?
1659
1660 =item How do I decode a MIME/BASE64 string?
1661
1662 =item How do I return the user's mail address?
1663
1664 =item How do I send mail?
1665
1666 =item How do I use MIME to make an attachment to a mail message?
1667
1668 =item How do I read mail?
1669
1670 =item How do I find out my hostname/domainname/IP address?
1671
1672 =item How do I fetch a news article or the active newsgroups?
1673
1674 =item How do I fetch/put an FTP file?
1675
1676 =item How can I do RPC in Perl?
1677
1678 =back
1679
1680 =item AUTHOR AND COPYRIGHT
1681
1682 =back
1683
1684 =head2 perlsyn - Perl syntax
1685
1686 =over 4
1687
1688 =item DESCRIPTION
1689
1690 =over 4
1691
1692 =item Declarations
1693
1694 =item Comments
1695
1696 =item Simple Statements
1697
1698 =item Compound Statements
1699
1700 =item Loop Control
1701
1702 =item For Loops
1703
1704 =item Foreach Loops
1705
1706 =item Basic BLOCKs and Switch Statements
1707
1708 =item Goto
1709
1710 =item PODs: Embedded Documentation
1711
1712 =item Plain Old Comments (Not!)
1713
1714 =back
1715
1716 =back
1717
1718 =head2 perldata - Perl data types
1719
1720 =over 4
1721
1722 =item DESCRIPTION
1723
1724 =over 4
1725
1726 =item Variable names
1727
1728 =item Context
1729
1730 =item Scalar values
1731
1732 =item Scalar value constructors
1733
1734 =item List value constructors
1735
1736 =item Subscripts
1737
1738 =item Slices
1739
1740 =item Typeglobs and Filehandles
1741
1742 =back
1743
1744 =item SEE ALSO
1745
1746 =back
1747
1748 =head2 perlop - Perl operators and precedence
1749
1750 =over 4
1751
1752 =item SYNOPSIS
1753
1754 =item DESCRIPTION
1755
1756 =over 4
1757
1758 =item Terms and List Operators (Leftward)
1759
1760 =item The Arrow Operator
1761
1762 =item Auto-increment and Auto-decrement
1763
1764 =item Exponentiation
1765
1766 =item Symbolic Unary Operators
1767
1768 =item Binding Operators
1769
1770 =item Multiplicative Operators
1771
1772 =item Additive Operators
1773
1774 =item Shift Operators
1775
1776 =item Named Unary Operators
1777
1778 =item Relational Operators
1779
1780 =item Equality Operators
1781
1782 =item Bitwise And
1783
1784 =item Bitwise Or and Exclusive Or
1785
1786 =item C-style Logical And
1787
1788 =item C-style Logical Or
1789
1790 =item C-style Logical Defined-Or
1791
1792 =item Range Operators
1793
1794 =item Conditional Operator
1795
1796 =item Assignment Operators
1797
1798 =item Comma Operator
1799
1800 =item List Operators (Rightward)
1801
1802 =item Logical Not
1803
1804 =item Logical And
1805
1806 =item Logical or, Defined or, and Exclusive Or
1807
1808 =item C Operators Missing From Perl
1809
1810 unary &, unary *, (TYPE)
1811
1812 =item Quote and Quote-like Operators
1813
1814 =item Regexp Quote-Like Operators
1815
1816 ?PATTERN?, m/PATTERN/cgimosx, /PATTERN/cgimosx, q/STRING/, C<'STRING'>,
1817 qq/STRING/, "STRING", qr/STRING/imosx, qx/STRING/, `STRING`, qw/STRING/,
1818 s/PATTERN/REPLACEMENT/egimosx, tr/SEARCHLIST/REPLACEMENTLIST/cds,
1819 y/SEARCHLIST/REPLACEMENTLIST/cds, <<EOF
1820
1821 =item Gory details of parsing quoted constructs
1822
1823 Finding the end, Removal of backslashes before delimiters, Interpolation,
1824 C<<<'EOF'>, C<m''>, C<s'''>, C<tr///>, C<y///>, C<''>, C<q//>, C<"">,
1825 C<``>, C<qq//>, C<qx//>, C<< <file*glob> >>, C<?RE?>, C</RE/>, C<m/RE/>,
1826 C<s/RE/foo/>,, Interpolation of regular expressions, Optimization of
1827 regular expressions
1828
1829 =item I/O Operators
1830
1831 =item Constant Folding
1832
1833 =item Bitwise String Operators
1834
1835 =item Integer Arithmetic
1836
1837 =item Floating-point Arithmetic
1838
1839 =item Bigger Numbers
1840
1841 =back
1842
1843 =back
1844
1845 =head2 perlsub - Perl subroutines
1846
1847 =over 4
1848
1849 =item SYNOPSIS
1850
1851 =item DESCRIPTION
1852
1853 =over 4
1854
1855 =item Private Variables via my()
1856
1857 =item Persistent Private Variables
1858
1859 =item Temporary Values via local()
1860
1861 =item Lvalue subroutines
1862
1863 Lvalue subroutines are EXPERIMENTAL
1864
1865 =item Passing Symbol Table Entries (typeglobs)
1866
1867 =item When to Still Use local()
1868
1869 =item Pass by Reference
1870
1871 =item Prototypes
1872
1873 =item Constant Functions
1874
1875 =item Overriding Built-in Functions
1876
1877 =item Autoloading
1878
1879 =item Subroutine Attributes
1880
1881 =back
1882
1883 =item SEE ALSO
1884
1885 =back
1886
1887 =head2 perlfunc - Perl builtin functions
1888
1889 =over 4
1890
1891 =item DESCRIPTION
1892
1893 =over 4
1894
1895 =item Perl Functions by Category
1896
1897 Functions for SCALARs or strings, Regular expressions and pattern matching,
1898 Numeric functions, Functions for real @ARRAYs, Functions for list data,
1899 Functions for real %HASHes, Input and output functions, Functions for fixed
1900 length data or records, Functions for filehandles, files, or directories,
1901 Keywords related to the control flow of your perl program, Keywords related
1902 to scoping, Miscellaneous functions, Functions for processes and process
1903 groups, Keywords related to perl modules, Keywords related to classes and
1904 object-orientedness, Low-level socket functions, System V interprocess
1905 communication functions, Fetching user and group info, Fetching network
1906 info, Time-related functions, Functions new in perl5, Functions obsoleted
1907 in perl5
1908
1909 =item Portability
1910
1911 =item Alphabetical Listing of Perl Functions
1912
1913 -I<X> FILEHANDLE, -I<X> EXPR, -I<X>, abs VALUE, abs, accept
1914 NEWSOCKET,GENERICSOCKET, alarm SECONDS, alarm, atan2 Y,X, bind SOCKET,NAME,
1915 binmode FILEHANDLE, LAYER, binmode FILEHANDLE, bless REF,CLASSNAME, bless
1916 REF, caller EXPR, caller, chdir EXPR, chmod LIST, chomp VARIABLE, chomp(
1917 LIST ), chomp, chop VARIABLE, chop( LIST ), chop, chown LIST, chr NUMBER,
1918 chr, chroot FILENAME, chroot, close FILEHANDLE, close, closedir DIRHANDLE,
1919 connect SOCKET,NAME, continue BLOCK, cos EXPR, cos, crypt PLAINTEXT,SALT,
1920 dbmclose HASH, dbmopen HASH,DBNAME,MASK, defined EXPR, defined, delete
1921 EXPR, die LIST, do BLOCK, do SUBROUTINE(LIST), do EXPR, dump LABEL, dump,
1922 each HASH, eof FILEHANDLE, eof (), eof, eval EXPR, eval BLOCK, exec LIST,
1923 exec PROGRAM LIST, exists EXPR, exit EXPR, exp EXPR, exp, fcntl
1924 FILEHANDLE,FUNCTION,SCALAR, fileno FILEHANDLE, flock FILEHANDLE,OPERATION,
1925 fork, format, formline PICTURE,LIST, getc FILEHANDLE, getc, getlogin,
1926 getpeername SOCKET, getpgrp PID, getppid, getpriority WHICH,WHO, getpwnam
1927 NAME, getgrnam NAME, gethostbyname NAME, getnetbyname NAME, getprotobyname
1928 NAME, getpwuid UID, getgrgid GID, getservbyname NAME,PROTO, gethostbyaddr
1929 ADDR,ADDRTYPE, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
1930 getservbyport PORT,PROTO, getpwent, getgrent, gethostent, getnetent,
1931 getprotoent, getservent, setpwent, setgrent, sethostent STAYOPEN, setnetent
1932 STAYOPEN, setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent,
1933 endhostent, endnetent, endprotoent, endservent, getsockname SOCKET,
1934 getsockopt SOCKET,LEVEL,OPTNAME, glob EXPR, glob, gmtime EXPR, goto LABEL,
1935 goto EXPR, goto &NAME, grep BLOCK LIST, grep EXPR,LIST, hex EXPR, hex,
1936 import, index STR,SUBSTR,POSITION, index STR,SUBSTR, int EXPR, int, ioctl
1937 FILEHANDLE,FUNCTION,SCALAR, join EXPR,LIST, keys HASH, kill SIGNAL, LIST,
1938 last LABEL, last, lc EXPR, lc, lcfirst EXPR, lcfirst, length EXPR, length,
1939 link OLDFILE,NEWFILE, listen SOCKET,QUEUESIZE, local EXPR, localtime EXPR,
1940 lock THING, log EXPR, log, lstat EXPR, lstat, m//, map BLOCK LIST, map
1941 EXPR,LIST, mkdir FILENAME,MASK, mkdir FILENAME, msgctl ID,CMD,ARG, msgget
1942 KEY,FLAGS, msgrcv ID,VAR,SIZE,TYPE,FLAGS, msgsnd ID,MSG,FLAGS, my EXPR, my
1943 TYPE EXPR, my EXPR : ATTRS, my TYPE EXPR : ATTRS, next LABEL, next, no
1944 Module VERSION LIST, no Module VERSION, no Module LIST, no Module, oct
1945 EXPR, oct, open FILEHANDLE,EXPR, open FILEHANDLE,MODE,EXPR, open
1946 FILEHANDLE,MODE,EXPR,LIST, open FILEHANDLE,MODE,REFERENCE, open FILEHANDLE,
1947 opendir DIRHANDLE,EXPR, ord EXPR, ord, our EXPR, our EXPR TYPE, our EXPR :
1948 ATTRS, our TYPE EXPR : ATTRS, pack TEMPLATE,LIST, package NAMESPACE,
1949 package, pipe READHANDLE,WRITEHANDLE, pop ARRAY, pop, pos SCALAR, pos,
1950 print FILEHANDLE LIST, print LIST, print, printf FILEHANDLE FORMAT, LIST,
1951 printf FORMAT, LIST, prototype FUNCTION, push ARRAY,LIST, q/STRING/,
1952 qq/STRING/, qr/STRING/, qx/STRING/, qw/STRING/, quotemeta EXPR, quotemeta,
1953 rand EXPR, rand, read FILEHANDLE,SCALAR,LENGTH,OFFSET, read
1954 FILEHANDLE,SCALAR,LENGTH, readdir DIRHANDLE, readline EXPR, readlink EXPR,
1955 readlink, readpipe EXPR, recv SOCKET,SCALAR,LENGTH,FLAGS, redo LABEL, redo,
1956 ref EXPR, ref, rename OLDNAME,NEWNAME, require VERSION, require EXPR,
1957 require, reset EXPR, reset, return EXPR, return, reverse LIST, rewinddir
1958 DIRHANDLE, rindex STR,SUBSTR,POSITION, rindex STR,SUBSTR, rmdir FILENAME,
1959 rmdir, s///, scalar EXPR, seek FILEHANDLE,POSITION,WHENCE, seekdir
1960 DIRHANDLE,POS, select FILEHANDLE, select, select RBITS,WBITS,EBITS,TIMEOUT,
1961 semctl ID,SEMNUM,CMD,ARG, semget KEY,NSEMS,FLAGS, semop KEY,OPSTRING, send
1962 SOCKET,MSG,FLAGS,TO, send SOCKET,MSG,FLAGS, setpgrp PID,PGRP, setpriority
1963 WHICH,WHO,PRIORITY, setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL, shift ARRAY,
1964 shift, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS, shmread ID,VAR,POS,SIZE,
1965 shmwrite ID,STRING,POS,SIZE, shutdown SOCKET,HOW, sin EXPR, sin, sleep
1966 EXPR, sleep, socket SOCKET,DOMAIN,TYPE,PROTOCOL, socketpair
1967 SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, sort SUBNAME LIST, sort BLOCK LIST,
1968 sort LIST, splice ARRAY,OFFSET,LENGTH,LIST, splice ARRAY,OFFSET,LENGTH,
1969 splice ARRAY,OFFSET, splice ARRAY, split /PATTERN/,EXPR,LIMIT, split
1970 /PATTERN/,EXPR, split /PATTERN/, split, sprintf FORMAT, LIST, format
1971 parameter index, flags, vector flag, (minimum) width, precision, or maximum
1972 width, size, order of arguments, sqrt EXPR, sqrt, srand EXPR, srand, stat
1973 FILEHANDLE, stat EXPR, stat, study SCALAR, study, sub NAME BLOCK, sub NAME
1974 (PROTO) BLOCK, sub NAME : ATTRS BLOCK, sub NAME (PROTO) : ATTRS BLOCK,
1975 substr EXPR,OFFSET,LENGTH,REPLACEMENT, substr EXPR,OFFSET,LENGTH, substr
1976 EXPR,OFFSET, symlink OLDFILE,NEWFILE, syscall NUMBER, LIST, sysopen
1977 FILEHANDLE,FILENAME,MODE, sysopen FILEHANDLE,FILENAME,MODE,PERMS, sysread
1978 FILEHANDLE,SCALAR,LENGTH,OFFSET, sysread FILEHANDLE,SCALAR,LENGTH, sysseek
1979 FILEHANDLE,POSITION,WHENCE, system LIST, system PROGRAM LIST, syswrite
1980 FILEHANDLE,SCALAR,LENGTH,OFFSET, syswrite FILEHANDLE,SCALAR,LENGTH,
1981 syswrite FILEHANDLE,SCALAR, tell FILEHANDLE, tell, telldir DIRHANDLE, tie
1982 VARIABLE,CLASSNAME,LIST, tied VARIABLE, time, times, tr///, truncate
1983 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, uc EXPR, uc, ucfirst EXPR,
1984 ucfirst, umask EXPR, umask, undef EXPR, undef, unlink LIST, unlink, unpack
1985 TEMPLATE,EXPR, unpack TEMPLATE, untie VARIABLE, unshift ARRAY,LIST, use
1986 Module VERSION LIST, use Module VERSION, use Module LIST, use Module, use
1987 VERSION, utime LIST, values HASH, vec EXPR,OFFSET,BITS, wait, waitpid
1988 PID,FLAGS, wantarray, warn LIST, write FILEHANDLE, write EXPR, write, y///
1989
1990 =back
1991
1992 =back
1993
1994 =head2 perlopentut - tutorial on opening things in Perl
1995
1996 =over 4
1997
1998 =item DESCRIPTION
1999
2000 =item Open E<agrave> la shell
2001
2002 =over 4
2003
2004 =item Simple Opens
2005
2006 =item Indirect Filehandles
2007
2008 =item Pipe Opens
2009
2010 =item The Minus File
2011
2012 =item Mixing Reads and Writes
2013
2014 =item Filters 
2015
2016 =back
2017
2018 =item Open E<agrave> la C
2019
2020 =over 4
2021
2022 =item Permissions E<agrave> la mode
2023
2024 =back
2025
2026 =item Obscure Open Tricks
2027
2028 =over 4
2029
2030 =item Re-Opening Files (dups)
2031
2032 =item Dispelling the Dweomer
2033
2034 =item Paths as Opens
2035
2036 =item Single Argument Open
2037
2038 =item Playing with STDIN and STDOUT
2039
2040 =back
2041
2042 =item Other I/O Issues
2043
2044 =over 4
2045
2046 =item Opening Non-File Files
2047
2048 =item Opening Named Pipes
2049
2050 =item Opening Sockets
2051
2052 =item Binary Files
2053
2054 =item File Locking
2055
2056 =item IO Layers
2057
2058 =back
2059
2060 =item SEE ALSO 
2061
2062 =item AUTHOR and COPYRIGHT
2063
2064 =item HISTORY
2065
2066 =back
2067
2068 =head2 perlpacktut - tutorial on C<pack> and C<unpack>
2069
2070 =over 4
2071
2072 =item DESCRIPTION
2073
2074 =item The Basic Principle
2075
2076 =item Packing Text
2077
2078 =item Packing Numbers
2079
2080 =over 4
2081
2082 =item Integers
2083
2084 =item Unpacking a Stack Frame
2085
2086 =item How to Eat an Egg on a Net
2087
2088 =item Floating point Numbers
2089
2090 =back
2091
2092 =item Exotic Templates
2093
2094 =over 4
2095
2096 =item Bit Strings
2097
2098 =item Uuencoding
2099
2100 =item Doing Sums
2101
2102 =item  Unicode
2103
2104 =item Another Portable Binary Encoding
2105
2106 =back
2107
2108 =item Template Grouping
2109
2110 =item Lengths and Widths
2111
2112 =over 4
2113
2114 =item String Lengths
2115
2116 =item Dynamic Templates
2117
2118 =item Counting Repetitions
2119
2120 =back
2121
2122 =item Packing and Unpacking C Structures
2123
2124 =over 4
2125
2126 =item The Alignment Pit
2127
2128 =item Alignment, Take 2
2129
2130 =item Alignment, Take 3
2131
2132 =item Pointers for How to Use Them
2133
2134 =back
2135
2136 =item Pack Recipes
2137
2138 =item Funnies Section
2139
2140 =item Authors
2141
2142 =back
2143
2144 =head2 perlpod - the Plain Old Documentation format
2145
2146 =over 4
2147
2148 =item DESCRIPTION
2149
2150 =over 4
2151
2152 =item Ordinary Paragraph
2153
2154 =item Verbatim Paragraph
2155
2156 =item Command Paragraph
2157
2158 C<=head1 I<Heading Text>>, C<=head2 I<Heading Text>>, C<=head3 I<Heading
2159 Text>>, C<=head4 I<Heading Text>>, C<=over I<indentlevel>>, C<=item
2160 I<stuff...>>, C<=back>, C<=cut>, C<=pod>, C<=begin I<formatname>>, C<=end
2161 I<formatname>>, C<=for I<formatname> I<text...>>, C<=encoding
2162 I<encodingname>>
2163
2164 =item Formatting Codes
2165
2166 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
2167 C<CE<lt>codeE<gt>> -- code text, C<LE<lt>nameE<gt>> -- a hyperlink,
2168 C<EE<lt>escapeE<gt>> -- a character escape, C<FE<lt>filenameE<gt>> -- used
2169 for filenames, C<SE<lt>textE<gt>> -- text contains non-breaking spaces,
2170 C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a null
2171 (zero-effect) formatting code
2172
2173 =item The Intent
2174
2175 =item Embedding Pods in Perl Modules
2176
2177 =item Hints for Writing Pod
2178
2179 =back
2180
2181 =item SEE ALSO
2182
2183 =item AUTHOR
2184
2185 =back
2186
2187 =head2 perlpodspec - Plain Old Documentation: format specification and
2188 notes
2189
2190 =over 4
2191
2192 =item DESCRIPTION
2193
2194 =item Pod Definitions
2195
2196 =item Pod Commands
2197
2198 "=head1", "=head2", "=head3", "=head4", "=pod", "=cut", "=over", "=item",
2199 "=back", "=begin formatname", "=end formatname", "=for formatname text...",
2200 "=encoding encodingname"
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, $;, $#,
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, Thailand
3672
3673 =item Central America
3674
3675 Costa Rica
3676
3677 =item Europe
3678
3679 Austria, Belgium, Bosnia and Herzegovina, Bulgaria, Croatia, Czech
3680 Republic, Denmark, Estonia, Finland, France, Germany, Greece, Hungary,
3681 Iceland, Ireland, Italy, Latvia, Lithuania, Netherlands, Norway, Poland,
3682 Portugal, Romania, Russia, Slovakia, Slovenia, Spain, Sweden, Switzerland,
3683 Turkey, Ukraine, United 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 Indiana, Kentucky, Massachusetts, Michigan, Nevada, New Jersey, New York,
3690 North Carolina, Oklahoma, Oregon, Pennsylvania, Tennessee, Texas, Utah,
3691 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 UTF-8 string?
4489
4490 =item How does UTF-8 represent Unicode characters?
4491
4492 =item How does Perl store UTF-8 strings?
4493
4494 =item How do I convert a string to UTF-8?
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_UV, XSRETURN_YES, XST_mIV, XST_mNO, XST_mNV, XST_mPV, XST_mUNDEF,
4694 XST_mYES
4695
4696 =item SV Flags
4697
4698 svtype, SVt_IV, SVt_NV, SVt_PV, SVt_PVAV, SVt_PVCV, SVt_PVHV, SVt_PVMG
4699
4700 =item SV Manipulation Functions
4701
4702 get_sv, looks_like_number, newRV_inc, newRV_noinc, newSV, newSViv, newSVnv,
4703 newSVpv, newSVpvf, newSVpvn, newSVpvn_share, newSVrv, newSVsv, newSVuv,
4704 SvCUR, SvCUR_set, SvEND, SvGROW, SvIOK, SvIOKp, SvIOK_notUV, SvIOK_off,
4705 SvIOK_on, SvIOK_only, SvIOK_only_UV, SvIOK_UV, SvIsCOW,
4706 SvIsCOW_shared_hash, SvIV, SvIVX, SvIVx, SvLEN, SvNIOK, SvNIOKp,
4707 SvNIOK_off, SvNOK, SvNOKp, SvNOK_off, SvNOK_on, SvNOK_only, SvNV, SvNVx,
4708 SvNVX, SvOK, SvOOK, SvPOK, SvPOKp, SvPOK_off, SvPOK_on, SvPOK_only,
4709 SvPOK_only_UTF8, SvPV, SvPVbyte, SvPVbytex, SvPVbytex_force,
4710 SvPVbyte_force, SvPVbyte_nolen, SvPVutf8, SvPVutf8x, SvPVutf8x_force,
4711 SvPVutf8_force, SvPVutf8_nolen, SvPVX, SvPVx, SvPV_force, SvPV_force_nomg,
4712 SvPV_nolen, SvREFCNT, SvREFCNT_dec, SvREFCNT_inc, SvROK, SvROK_off,
4713 SvROK_on, SvRV, SvSTASH, SvTAINT, SvTAINTED, SvTAINTED_off, SvTAINTED_on,
4714 SvTRUE, SvTYPE, SvUNLOCK, SvUOK, SvUPGRADE, SvUTF8, SvUTF8_off, SvUTF8_on,
4715 SvUV, SvUVX, SvUVx, SvVOK, sv_2bool, sv_2cv, sv_2io, sv_2iv, sv_2mortal,
4716 sv_2nv, sv_2pvbyte, sv_2pvbyte_nolen, sv_2pvutf8, sv_2pvutf8_nolen,
4717 sv_2pv_flags, sv_2pv_nolen, sv_2uv, sv_backoff, sv_bless, sv_catpv,
4718 sv_catpvf, sv_catpvf_mg, sv_catpvn, sv_catpvn_flags, sv_catpvn_mg,
4719 sv_catpv_mg, sv_catsv, sv_catsv_flags, sv_catsv_mg, sv_chop, sv_clear,
4720 sv_cmp, sv_cmp_locale, sv_collxfrm, sv_copypv, sv_dec, sv_derived_from,
4721 sv_eq, sv_force_normal, sv_force_normal_flags, sv_free, sv_gets, sv_grow,
4722 sv_inc, sv_insert, sv_isa, sv_isobject, sv_iv, sv_len, sv_len_utf8,
4723 sv_magic, sv_magicext, sv_mortalcopy, sv_newmortal, sv_newref, sv_nv,
4724 sv_pos_b2u, sv_pos_u2b, sv_pv, sv_pvbyte, sv_pvbyten, sv_pvbyten_force,
4725 sv_pvn, sv_pvn_force, sv_pvn_force_flags, sv_pvutf8, sv_pvutf8n,
4726 sv_pvutf8n_force, sv_reftype, sv_replace, sv_report_used, sv_reset,
4727 sv_rvweaken, sv_setiv, sv_setiv_mg, sv_setnv, sv_setnv_mg, sv_setpv,
4728 sv_setpvf, sv_setpvf_mg, sv_setpviv, sv_setpviv_mg, sv_setpvn,
4729 sv_setpvn_mg, sv_setpv_mg, sv_setref_iv, sv_setref_nv, sv_setref_pv,
4730 sv_setref_pvn, sv_setref_uv, sv_setsv, sv_setsv_flags, sv_setsv_mg,
4731 sv_setuv, sv_setuv_mg, sv_taint, sv_tainted, sv_true, sv_unmagic, sv_unref,
4732 sv_unref_flags, sv_untaint, sv_upgrade, sv_usepvn, sv_usepvn_mg,
4733 sv_utf8_decode, sv_utf8_downgrade, sv_utf8_encode, sv_utf8_upgrade,
4734 sv_utf8_upgrade_flags, sv_uv, sv_vcatpvfn, sv_vsetpvfn
4735
4736 =item Unicode Support
4737
4738 bytes_from_utf8, bytes_to_utf8, ibcmp_utf8, is_utf8_char, is_utf8_string,
4739 is_utf8_string_loc, pv_uni_display, sv_cat_decode, sv_recode_to_utf8,
4740 sv_uni_display, to_utf8_case, to_utf8_fold, to_utf8_lower, to_utf8_title,
4741 to_utf8_upper, utf8n_to_uvchr, utf8n_to_uvuni, utf8_distance, utf8_hop,
4742 utf8_length, utf8_to_bytes, utf8_to_uvchr, utf8_to_uvuni, uvchr_to_utf8,
4743 uvuni_to_utf8_flags
4744
4745 =item Variables created by C<xsubpp> and C<xsubpp> internal functions
4746
4747 ax, CLASS, dAX, dITEMS, dXSARGS, dXSI32, items, ix, newXSproto, RETVAL, ST,
4748 THIS, XS, XSRETURN_EMPTY, XS_VERSION, XS_VERSION_BOOTCHECK
4749
4750 =item Warning and Dieing
4751
4752 croak, warn
4753
4754 =item AUTHORS
4755
4756 =item SEE ALSO
4757
4758 =back
4759
4760 =head2 perlintern - autogenerated documentation of purely B<internal>
4761                  Perl functions
4762
4763 =over 4
4764
4765 =item DESCRIPTION
4766
4767 =item CV reference counts and CvOUTSIDE
4768
4769 CvWEAKOUTSIDE
4770
4771 =item Functions in file pad.h
4772
4773 CX_CURPAD_SAVE, CX_CURPAD_SV, PAD_BASE_SV, PAD_CLONE_VARS,
4774 PAD_COMPNAME_FLAGS, PAD_COMPNAME_GEN, PAD_COMPNAME_OURSTASH,
4775 PAD_COMPNAME_PV, PAD_COMPNAME_TYPE, PAD_DUP, PAD_RESTORE_LOCAL,
4776 PAD_SAVE_LOCAL, PAD_SAVE_SETNULLPAD, PAD_SETSV, PAD_SET_CUR, PAD_SV,
4777 PAD_SVl, SAVECLEARSV, SAVECOMPPAD, SAVEPADSV
4778
4779 =item Functions in file pp_ctl.c
4780
4781 find_runcv
4782
4783 =item Global Variables
4784
4785 PL_DBsingle, PL_DBsub, PL_DBtrace, PL_dowarn, PL_last_in_gv, PL_ofs_sv,
4786 PL_rs
4787
4788 =item GV Functions
4789
4790 is_gv_magical
4791
4792 =item IO Functions
4793
4794 start_glob
4795
4796 =item Pad Data Structures
4797
4798 CvPADLIST, cv_clone, cv_dump, do_dump_pad, intro_my, pad_add_anon,
4799 pad_add_name, pad_alloc, pad_block_start, pad_check_dup, pad_findlex,
4800 pad_findmy, pad_fixup_inner_anons, pad_free, pad_leavemy, pad_new,
4801 pad_push, pad_reset, pad_setsv, pad_swipe, pad_tidy, pad_undef
4802
4803 =item Stack Manipulation Macros
4804
4805 djSP, LVRET
4806
4807 =item SV Manipulation Functions
4808
4809 report_uninit, sv_add_arena, sv_clean_all, sv_clean_objs, sv_free_arenas
4810
4811 =item AUTHORS
4812
4813 =item SEE ALSO
4814
4815 =back
4816
4817 =head2 perliol - C API for Perl's implementation of IO in Layers.
4818
4819 =over 4
4820
4821 =item SYNOPSIS
4822
4823 =item DESCRIPTION
4824
4825 =over 4
4826
4827 =item History and Background
4828
4829 =item Layers vs Disciplines
4830
4831 =item Data Structures
4832
4833 =item Functions and Attributes
4834
4835 =item Per-instance Data
4836
4837 =item Layers in action.
4838
4839 =item Per-instance flag bits
4840
4841 PERLIO_F_EOF, PERLIO_F_CANWRITE,  PERLIO_F_CANREAD, PERLIO_F_ERROR,
4842 PERLIO_F_TRUNCATE, PERLIO_F_APPEND, PERLIO_F_CRLF, PERLIO_F_UTF8,
4843 PERLIO_F_UNBUF, PERLIO_F_WRBUF, PERLIO_F_RDBUF, PERLIO_F_LINEBUF,
4844 PERLIO_F_TEMP, PERLIO_F_OPEN, PERLIO_F_FASTGETS
4845
4846 =item Methods in Detail
4847
4848 fsize, name, size, kind, PERLIO_K_BUFFERED, PERLIO_K_RAW, PERLIO_K_CANCRLF,
4849 PERLIO_K_FASTGETS, PERLIO_K_MULTIARG, Pushed, Popped, Open, Binmode,
4850 Getarg, Fileno, Dup, Read, Write, Seek, Tell, Close, Flush, Fill, Eof,
4851 Error,  Clearerr, Setlinebuf, Get_base, Get_bufsiz, Get_ptr, Get_cnt,
4852 Set_ptrcnt
4853
4854 =item Implementing PerlIO Layers
4855
4856 C implementations, Perl implementations
4857
4858 =item Core Layers
4859
4860 "unix", "perlio", "stdio", "crlf", "mmap", "pending", "raw", "utf8"
4861
4862 =item Extension Layers
4863
4864 ":encoding", ":scalar", ":via"
4865
4866 =back
4867
4868 =item TODO
4869
4870 =back
4871
4872 =head2 perlapio - perl's IO abstraction interface.
4873
4874 =over 4
4875
4876 =item SYNOPSIS
4877
4878 =item DESCRIPTION
4879
4880 1. USE_STDIO, 2. USE_SFIO, 3. USE_PERLIO, B<PerlIO_stdin()>,
4881 B<PerlIO_stdout()>, B<PerlIO_stderr()>, B<PerlIO_open(path, mode)>,
4882 B<PerlIO_fdopen(fd,mode)>, B<PerlIO_reopen(path,mode,f)>,
4883 B<PerlIO_printf(f,fmt,...)>, B<PerlIO_vprintf(f,fmt,a)>,
4884 B<PerlIO_stdoutf(fmt,...)>, B<PerlIO_read(f,buf,count)>,
4885 B<PerlIO_write(f,buf,count)>, B<PerlIO_close(f)>, B<PerlIO_puts(f,s)>,
4886 B<PerlIO_putc(f,c)>, B<PerlIO_ungetc(f,c)>, B<PerlIO_getc(f)>,
4887 B<PerlIO_eof(f)>, B<PerlIO_error(f)>, B<PerlIO_fileno(f)>,
4888 B<PerlIO_clearerr(f)>, B<PerlIO_flush(f)>, B<PerlIO_seek(f,offset,whence)>,
4889 B<PerlIO_tell(f)>, B<PerlIO_getpos(f,p)>, B<PerlIO_setpos(f,p)>,
4890 B<PerlIO_rewind(f)>, B<PerlIO_tmpfile()>, B<PerlIO_setlinebuf(f)>
4891
4892 =over 4
4893
4894 =item Co-existence with stdio
4895
4896 B<PerlIO_importFILE(f,mode)>, B<PerlIO_exportFILE(f,mode)>,
4897 B<PerlIO_releaseFILE(p,f)>, B<PerlIO_findFILE(f)>
4898
4899 =item "Fast gets" Functions
4900
4901 B<PerlIO_fast_gets(f)>, B<PerlIO_has_cntptr(f)>, B<PerlIO_get_cnt(f)>,
4902 B<PerlIO_get_ptr(f)>, B<PerlIO_set_ptrcnt(f,p,c)>, B<PerlIO_canset_cnt(f)>,
4903 B<PerlIO_set_cnt(f,c)>, B<PerlIO_has_base(f)>, B<PerlIO_get_base(f)>,
4904 B<PerlIO_get_bufsiz(f)>
4905
4906 =item Other Functions
4907
4908 PerlIO_apply_layers(f,mode,layers), PerlIO_binmode(f,ptype,imode,layers),
4909 'E<lt>' read, 'E<gt>' write, '+' read/write, PerlIO_debug(fmt,...)
4910
4911 =back
4912
4913 =back
4914
4915 =head2 perlhack - How to hack at the Perl internals
4916
4917 =over 4
4918
4919 =item DESCRIPTION
4920
4921 Does concept match the general goals of Perl?, Where is the
4922 implementation?, Backwards compatibility, Could it be a module instead?, Is
4923 the feature generic enough?, Does it potentially introduce new bugs?, Does
4924 it preclude other desirable features?, Is the implementation robust?, Is
4925 the implementation generic enough to be portable?, Is the implementation
4926 tested?, Is there enough documentation?, Is there another way to do it?,
4927 Does it create too much work?, Patches speak louder than words
4928
4929 =over 4
4930
4931 =item Keeping in sync
4932
4933 rsync'ing the source tree, Using rsync over the LAN, Using pushing over the
4934 NFS, rsync'ing the patches
4935
4936 =item Why rsync the source tree
4937
4938 It's easier to rsync the source tree, It's more reliable
4939
4940 =item Why rsync the patches
4941
4942 It's easier to rsync the patches, It's a good reference, Finding a start
4943 point, Finding how to fix a bug, Finding the source of misbehaviour
4944
4945 =item Perlbug administration
4946
4947 =item Submitting patches
4948
4949 L<perlguts>, L<perlxstut> and L<perlxs>, L<perlapi>,
4950 F<Porting/pumpkin.pod>, The perl5-porters FAQ
4951
4952 =item Finding Your Way Around
4953
4954 Core modules, Tests, Documentation, Configure, Interpreter
4955
4956 =item Elements of the interpreter
4957
4958 Startup, Parsing, Optimization, Running
4959
4960 =item Internal Variable Types
4961
4962 =item Op Trees
4963
4964 =item Stacks
4965
4966 Argument stack, Mark stack, Save stack
4967
4968 =item Millions of Macros
4969
4970 =item The .i Targets
4971
4972 =item Poking at Perl
4973
4974 =item Using a source-level debugger
4975
4976 run [args], break function_name, break source.c:xxx, step, next, continue,
4977 finish, 'enter', print
4978
4979 =item gdb macro support
4980
4981 =item Dumping Perl Data Structures
4982
4983 =item Patching
4984
4985 =item Patching a core module
4986
4987 =item Adding a new function to the core
4988
4989 =item Writing a test
4990
4991 F<t/base/>, F<t/cmd/>, F<t/comp/>, F<t/io/>, F<t/lib/>, F<t/op/>,
4992 F<t/pod/>, F<t/run/>, F<t/uni/>, F<t/win32/>, F<t/x2p>, t/base t/comp,
4993 t/cmd t/run t/io t/op, t/lib ext lib
4994
4995 =item Special Make Test Targets
4996
4997 coretest, test.deparse, minitest, test.valgrind check.valgrind
4998 utest.valgrind ucheck.valgrind, test.third check.third utest.third
4999 ucheck.third, test.torture torturetest, utest ucheck test.utf8 check.utf8,
5000 test_harness
5001
5002 =item Running tests by hand
5003
5004 PERL_CORE=1, PERL_DESTRUCT_LEVEL=2, PERL, PERL_SKIP_TTY_TEST
5005
5006 =back
5007
5008 =item EXTERNAL TOOLS FOR DEBUGGING PERL
5009
5010 =over 4
5011
5012 =item Rational Software's Purify
5013
5014 =item Purify on Unix
5015
5016 -Accflags=-DPURIFY, -Doptimize='-g', -Uusemymalloc, -Dusemultiplicity
5017
5018 =item Purify on NT
5019
5020 DEFINES, USE_MULTI = define, #PERL_MALLOC = define, CFG = Debug
5021
5022 =item valgrind
5023
5024 =item Compaq's/Digital's/HP's Third Degree
5025
5026 =item PERL_DESTRUCT_LEVEL
5027
5028 =item Profiling
5029
5030 =item Gprof Profiling
5031
5032 -a, -b, -e routine, -f routine, -s, -z
5033
5034 =item GCC gcov Profiling
5035
5036 =item Pixie Profiling
5037
5038 -h, -l, -p[rocedures], -h[eavy], -i[nvocations], -l[ines], -testcoverage,
5039 -z[ero]
5040
5041 =item Miscellaneous tricks
5042
5043 =item CONCLUSION
5044
5045 I<The Road goes ever on and on, down from the door where it began.>
5046
5047 =back
5048
5049 =item AUTHOR
5050
5051 =back
5052
5053 =head2 perlbook - Perl book information
5054
5055 =over 4
5056
5057 =item DESCRIPTION
5058
5059 =back
5060
5061 =head2 perltodo - Perl TO-DO List
5062
5063 =over 4
5064
5065 =item DESCRIPTION
5066
5067 =item To do during 5.6.x
5068
5069 =over 4
5070
5071 =item Support for I/O disciplines
5072
5073 =item Autoload bytes.pm
5074
5075 =item Make "\u{XXXX}" et al work
5076
5077 =item Create a char *sv_pvprintify(sv, STRLEN *lenp, UV flags)
5078
5079 =item Overloadable regex assertions
5080
5081 =item Unicode
5082
5083 =item Work out exit/die semantics for threads
5084
5085 =item Better support for nonpreemptive threading systems like GNU pth
5086
5087 =item Typed lexicals for compiler
5088
5089 =item Compiler workarounds for Win32
5090
5091 =item AUTOLOADing in the compiler
5092
5093 =item Fixing comppadlist when compiling
5094
5095 =item Cleaning up exported namespace
5096
5097 =item Complete signal handling
5098
5099 =item Out-of-source builds
5100
5101 =item POSIX realtime support
5102
5103 =item UNIX98 support
5104
5105 =item IPv6 Support
5106
5107 =item Long double conversion
5108
5109 =item Locales
5110
5111 =item Arithmetic on non-Arabic numerals
5112
5113 =item POSIX Unicode character classes
5114
5115 =item Factoring out common suffices/prefices in regexps (trie optimization)
5116
5117 =item Security audit shipped utilities
5118
5119 =item Sort out the uid-setting mess
5120
5121 =item Custom opcodes
5122
5123 =item DLL Versioning
5124
5125 =item Introduce @( and @)
5126
5127 =item Floating point handling
5128
5129 =item IV/UV preservation
5130
5131 =item Replace pod2html with something using Pod::Parser
5132
5133 =item Automate module testing on CPAN
5134
5135 =item sendmsg and recvmsg
5136
5137 =item Rewrite perlre documentation
5138
5139 =item Convert example code to IO::Handle filehandles
5140
5141 =item Document Win32 choices
5142
5143 =item Check new modules
5144
5145 =item Make roffitall find pods and libs itself
5146
5147 =back
5148
5149 =item To do at some point
5150
5151 =over 4
5152
5153 =item Remove regular expression recursion
5154
5155 =item Memory leaks after failed eval
5156
5157 =item bitfields in pack
5158
5159 =item Cross compilation
5160
5161 =item Perl preprocessor / macros
5162
5163 =item Perl lexer in Perl
5164
5165 =item Using POSIX calls internally
5166
5167 =item -i rename file when changed
5168
5169 =item All ARGV input should act like E<lt>E<gt>
5170
5171 =item Support for rerunning debugger
5172
5173 =item Test Suite for the Debugger
5174
5175 =item my sub foo { }
5176
5177 =item One-pass global destruction
5178
5179 =item Rewrite regexp parser
5180
5181 =item Cache recently used regexps
5182
5183 =item Cross-compilation support
5184
5185 =item Bit-shifting bitvectors
5186
5187 =item debugger pragma
5188
5189 =item use less pragma
5190
5191 =item switch structures
5192
5193 =item Cache eval tree
5194
5195 =item rcatmaybe
5196
5197 =item Shrink opcode tables
5198
5199 =item Optimize away @_
5200
5201 =item Prototypes versus indirect objects
5202
5203 =item Install HTML
5204
5205 =item Prototype method calls
5206
5207 =item Return context prototype declarations
5208
5209 =item magic_setisa
5210
5211 =item Garbage collection
5212
5213 =item IO tutorial
5214
5215 =item Rewrite perldoc
5216
5217 =item Install .3p manpages
5218
5219 =item Unicode tutorial
5220
5221 =item Update POSIX.pm for 1003.1-2
5222
5223 =item Retargetable installation
5224
5225 =item POSIX emulation on non-POSIX systems
5226
5227 =item Rename Win32 headers
5228
5229 =item Finish off lvalue functions
5230
5231 =item Update sprintf documentation
5232
5233 =item Use fchown/fchmod internally
5234
5235 =item Make v-strings overloaded objects
5236
5237 =item Allow restricted hash assignment
5238
5239 =item Should overload be inheritable?
5240
5241 =item Taint rethink
5242
5243 =item Perform correctly when XSUBs call subroutines that exit via
5244 goto(LABEL) and friends
5245
5246 =back
5247
5248 =item Vague ideas
5249
5250 =over 4
5251
5252 =item ref() in list context
5253
5254 =item Make tr/// return histogram of characters in list context
5255
5256 =item Compile to real threaded code
5257
5258 =item Structured types
5259
5260 =item Modifiable $1 et al.
5261
5262 =item Procedural interfaces for IO::*, etc.
5263
5264 =item RPC modules
5265
5266 =item Attach/detach debugger from running program
5267
5268 =item GUI::Native
5269
5270 =item foreach(reverse ...)
5271
5272 =item Constant function cache
5273
5274 =item Approximate regular expression matching
5275
5276 =back
5277
5278 =item Ongoing
5279
5280 =over 4
5281
5282 =item Update guts documentation
5283
5284 =item Add more tests
5285
5286 =item Update auxiliary tools
5287
5288 =item Create debugging macros
5289
5290 =item truncate to the people
5291
5292 =item Unicode in Filenames
5293
5294 =back
5295
5296 =item Unicode in %ENV
5297
5298 =item Recently done things
5299
5300 =over 4
5301
5302 =item Alternative RE syntax module
5303
5304 =item Safe signal handling
5305
5306 =item Tie Modules
5307
5308 =item gettimeofday
5309
5310 =item setitimer and getimiter
5311
5312 =item Testing __DIE__ hook
5313
5314 =item CPP equivalent in Perl
5315
5316 =item Explicit switch statements
5317
5318 =item autocroak
5319
5320 =item UTF/EBCDIC
5321
5322 =item UTF Regexes
5323
5324 =item perlcc to produce executable
5325
5326 =item END blocks saved in compiled output
5327
5328 =item Secure temporary file module
5329
5330 =item Integrate Time::HiRes
5331
5332 =item Turn Cwd into XS
5333
5334 =item Mmap for input
5335
5336 =item Byte to/from UTF-8 and UTF-8 to/from local conversion
5337
5338 =item Add sockatmark support
5339
5340 =item Mailing list archives
5341
5342 =item Bug tracking
5343
5344 =item Integrate MacPerl
5345
5346 =item Web "nerve center" for Perl
5347
5348 =item Regular expression tutorial
5349
5350 =item Debugging Tutorial
5351
5352 =item Integrate new modules
5353
5354 =item Integrate profiler
5355
5356 =item Y2K error detection
5357
5358 =item Regular expression debugger
5359
5360 =item POD checker
5361
5362 =item "Dynamic" lexicals
5363
5364 =item Cache precompiled modules
5365
5366 =back
5367
5368 =item Deprecated Wishes
5369
5370 =over 4
5371
5372 =item Loop control on do{}
5373
5374 =item Lexically scoped typeglobs
5375
5376 =item format BOTTOM
5377
5378 =item report HANDLE
5379
5380 =item Generalised want()/caller())
5381
5382 =item Named prototypes
5383
5384 =item Built-in globbing
5385
5386 =item Regression tests for suidperl
5387
5388 =item Cached hash values
5389
5390 =item Add compression modules
5391
5392 =item Reorganise documentation into tutorials/references
5393
5394 =item Remove distinction between functions and operators
5395
5396 =item Make XS easier to use
5397
5398 =item Make embedding easier to use
5399
5400 =item man for perl
5401
5402 =item my $Package::variable
5403
5404 =item "or" tests defined, not truth
5405
5406 =item "class"-based lexicals
5407
5408 =item byteperl
5409
5410 =item Lazy evaluation / tail recursion removal
5411
5412 =item Make "use utf8" the default
5413
5414 =item Unicode collation and normalization
5415
5416 =item pack/unpack tutorial
5417
5418 =back
5419
5420 =back
5421
5422 =head2 perldoc - Look up Perl documentation in Pod format.
5423
5424 =over 4
5425
5426 =item SYNOPSIS
5427
5428 =item DESCRIPTION
5429
5430 =item OPTIONS
5431
5432 B<-h>, B<-v>, B<-t>, B<-u>, B<-m> I<module>, B<-l>, B<-F>, B<-f>
5433 I<perlfunc>, B<-q> I<perlfaq-search-regexp>, B<-T>, B<-d>
5434 I<destination-filename>, B<-o> I<output-formatname>, B<-M> I<module-name>,
5435 B<-w> I<option:value> or B<-w> I<option>, B<-X>,
5436 B<PageName|ModuleName|ProgramName>, B<-n> I<some-formatter>, B<-r>, B<-i>,
5437 B<-V>
5438
5439 =item SECURITY
5440
5441 =item ENVIRONMENT
5442
5443 =item AUTHOR
5444
5445 =back
5446
5447 =head2 perlhist - the Perl history records
5448
5449 =over 4
5450
5451 =item DESCRIPTION
5452
5453 =item INTRODUCTION
5454
5455 =item THE KEEPERS OF THE PUMPKIN
5456
5457 =over 4
5458
5459 =item PUMPKIN?
5460
5461 =back
5462
5463 =item THE RECORDS
5464
5465 =over 4
5466
5467 =item SELECTED RELEASE SIZES
5468
5469 =item SELECTED PATCH SIZES
5470
5471 =back
5472
5473 =item THE KEEPERS OF THE RECORDS
5474
5475 =back
5476
5477 =head2 perldelta - what is new for perl v5.9.0
5478
5479 =over 4
5480
5481 =item DESCRIPTION
5482
5483 =item Incompatible Changes
5484
5485 =over 4
5486
5487 =item The C<$*> variable has been removed
5488
5489 =back
5490
5491 =item Core Enhancements
5492
5493 =over 4
5494
5495 =item Tied Arrays with Negative Array Indices
5496
5497 =back
5498
5499 =item Modules and Pragmata
5500
5501 =item Utility Changes
5502
5503 =item New Documentation
5504
5505 =item Performance Enhancements
5506
5507 =item Installation and Configuration Improvements
5508
5509 =item Selected Bug Fixes
5510
5511 =item New or Changed Diagnostics
5512
5513 =item Changed Internals
5514
5515 =item New Tests
5516
5517 =item Known Problems
5518
5519 =item Platform Specific Problems
5520
5521 =item Reporting Bugs
5522
5523 =item SEE ALSO
5524
5525 =back
5526
5527 =head2 perl58delta, perldelta - what is new for perl v5.8.0
5528
5529 =over 4
5530
5531 =item DESCRIPTION
5532
5533 =item Highlights In 5.8.0
5534
5535 =item Incompatible Changes
5536
5537 =over 4
5538
5539 =item Binary Incompatibility
5540
5541 =item 64-bit platforms and malloc
5542
5543 =item AIX Dynaloading
5544
5545 =item Attributes for C<my> variables now handled at run-time
5546
5547 =item Socket Extension Dynamic in VMS
5548
5549 =item IEEE-format Floating Point Default on OpenVMS Alpha
5550
5551 =item New Unicode Semantics (no more C<use utf8>, almost)
5552
5553 =item New Unicode Properties
5554
5555 =item REF(...) Instead Of SCALAR(...)
5556
5557 =item pack/unpack D/F recycled
5558
5559 =item glob() now returns filenames in alphabetical order
5560
5561 =item Deprecations
5562
5563 =back
5564
5565 =item Core Enhancements
5566
5567 =over 4
5568
5569 =item Unicode Overhaul
5570
5571 =item PerlIO is Now The Default
5572
5573 =item ithreads
5574
5575 =item Restricted Hashes
5576
5577 =item Safe Signals
5578
5579 =item Understanding of Numbers
5580
5581 =item Arrays now always interpolate into double-quoted strings [561]
5582
5583 =item Miscellaneous Changes
5584
5585 =back
5586
5587 =item Modules and Pragmata
5588
5589 =over 4
5590
5591 =item New Modules and Pragmata
5592
5593 =item Updated And Improved Modules and Pragmata
5594
5595 =back
5596
5597 =item Utility Changes
5598
5599 =item New Documentation
5600
5601 =item Performance Enhancements
5602
5603 =item Installation and Configuration Improvements
5604
5605 =over 4
5606
5607 =item Generic Improvements
5608
5609 =item New Or Improved Platforms
5610
5611 =back
5612
5613 =item Selected Bug Fixes
5614
5615 =over 4
5616
5617 =item Platform Specific Changes and Fixes
5618
5619 =back
5620
5621 =item New or Changed Diagnostics
5622
5623 =item Changed Internals
5624
5625 =item Security Vulnerability Closed [561]
5626
5627 =item New Tests
5628
5629 =item Known Problems
5630
5631 =over 4
5632
5633 =item The Compiler Suite Is Still Very Experimental
5634
5635 =item Localising Tied Arrays and Hashes Is Broken
5636
5637 =item Building Extensions Can Fail Because Of Largefiles
5638
5639 =item Modifying $_ Inside for(..)
5640
5641 =item mod_perl 1.26 Doesn't Build With Threaded Perl
5642
5643 =item lib/ftmp-security tests warn 'system possibly insecure'
5644
5645 =item libwww-perl (LWP) fails base/date #51
5646
5647 =item PDL failing some tests
5648
5649 =item Perl_get_sv
5650
5651 =item Self-tying Problems
5652
5653 =item ext/threads/t/libc
5654
5655 =item Failure of Thread (5.005-style) tests
5656
5657 =item Timing problems
5658
5659 =item Tied/Magical Array/Hash Elements Do Not Autovivify
5660
5661 =item Unicode in package/class and subroutine names does not work
5662
5663 =back
5664
5665 =item Platform Specific Problems
5666
5667 =over 4
5668
5669 =item AIX
5670
5671 =item Alpha systems with old gccs fail several tests
5672
5673 =item AmigaOS
5674
5675 =item BeOS
5676
5677 =item Cygwin "unable to remap"
5678
5679 =item Cygwin ndbm tests fail on FAT
5680
5681 =item DJGPP Failures
5682
5683 =item FreeBSD built with ithreads coredumps reading large directories
5684
5685 =item FreeBSD Failing locale Test 117 For ISO 8859-15 Locales
5686
5687 =item IRIX fails ext/List/Util/t/shuffle.t or Digest::MD5
5688
5689 =item HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5690
5691 =item Linux with glibc 2.2.5 fails t/op/int subtest #6 with -Duse64bitint
5692
5693 =item Linux With Sfio Fails op/misc Test 48
5694
5695 =item Mac OS X
5696
5697 =item Mac OS X dyld undefined symbols
5698
5699 =item OS/2 Test Failures
5700
5701 =item op/sprintf tests 91, 129, and 130
5702
5703 =item SCO
5704
5705 =item Solaris 2.5
5706
5707 =item Solaris x86 Fails Tests With -Duse64bitint
5708
5709 =item SUPER-UX (NEC SX)
5710
5711 =item Term::ReadKey not working on Win32
5712
5713 =item UNICOS/mk
5714
5715 =item UTS
5716
5717 =item VOS (Stratus)
5718
5719 =item VMS
5720
5721 =item Win32
5722
5723 =item XML::Parser not working
5724
5725 =item z/OS (OS/390)
5726
5727 =item Unicode Support on EBCDIC Still Spotty
5728
5729 =item Seen In Perl 5.7 But Gone Now
5730
5731 =back
5732
5733 =item Reporting Bugs
5734
5735 =item SEE ALSO
5736
5737 =item HISTORY
5738
5739 =back
5740
5741 =head2 perl573delta - what's new for perl v5.7.3
5742
5743 =over 4
5744
5745 =item DESCRIPTION
5746
5747 =item Changes
5748
5749 =item Reporting Bugs
5750
5751 =item SEE ALSO
5752
5753 =item HISTORY
5754
5755 =back
5756
5757 =head2 perl572delta - what's new for perl v5.7.2
5758
5759 =over 4
5760
5761 =item DESCRIPTION
5762
5763 =item Security Vulnerability Closed
5764
5765 =item Incompatible Changes
5766
5767 =over 4
5768
5769 =item 64-bit platforms and malloc
5770
5771 =item AIX Dynaloading
5772
5773 =item Socket Extension Dynamic in VMS
5774
5775 =item Different Definition of the Unicode Character Classes \p{In...}
5776
5777 =item Deprecations
5778
5779 =back
5780
5781 =item Core Enhancements
5782
5783 =item Modules and Pragmata
5784
5785 =over 4
5786
5787 =item New Modules and Distributions
5788
5789 =item Updated And Improved Modules and Pragmata
5790
5791 =back
5792
5793 =item Utility Changes
5794
5795 =item New Documentation
5796
5797 =item Installation and Configuration Improvements
5798
5799 =over 4
5800
5801 =item New Or Improved Platforms
5802
5803 =item Generic Improvements
5804
5805 =back
5806
5807 =item Selected Bug Fixes
5808
5809 =over 4
5810
5811 =item Platform Specific Changes and Fixes
5812
5813 =back
5814
5815 =item New or Changed Diagnostics
5816
5817 =item Source Code Enhancements
5818
5819 =over 4
5820
5821 =item MAGIC constants
5822
5823 =item Better commented code
5824
5825 =item Regex pre-/post-compilation items matched up
5826
5827 =item gcc -Wall
5828
5829 =back
5830
5831 =item New Tests
5832
5833 =item Known Problems
5834
5835 =over 4
5836
5837 =item AIX
5838
5839 =item Amiga Perl Invoking Mystery
5840
5841 =item lib/ftmp-security tests warn 'system possibly insecure'
5842
5843 =item Cygwin intermittent failures of lib/Memoize/t/expire_file 11 and 12
5844
5845 =item HP-UX lib/io_multihomed Fails When LP64-Configured
5846
5847 =item  HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5848
5849 =item Linux With Sfio Fails op/misc Test 48
5850
5851 =item OS/390
5852
5853 =item op/sprintf tests 129 and 130
5854
5855 =item  Failure of Thread tests
5856
5857 =item UNICOS
5858
5859 =item UTS
5860
5861 =item VMS
5862
5863 =item Win32
5864
5865 =item Localising a Tied Variable Leaks Memory
5866
5867 =item Self-tying of Arrays and Hashes Is Forbidden
5868
5869 =item Variable Attributes are not Currently Usable for Tieing
5870
5871 =item Building Extensions Can Fail Because Of Largefiles
5872
5873 =item The Compiler Suite Is Still Experimental
5874
5875 =item The Long Double Support is Still Experimental
5876
5877 =back
5878
5879 =item Reporting Bugs
5880
5881 =item SEE ALSO
5882
5883 =item HISTORY
5884
5885 =back
5886
5887 =head2 perl571delta - what's new for perl v5.7.1
5888
5889 =over 4
5890
5891 =item DESCRIPTION
5892
5893 =item Security Vulnerability Closed
5894
5895 =item Incompatible Changes
5896
5897 =item Core Enhancements
5898
5899 =over 4
5900
5901 =item AUTOLOAD Is Now Lvaluable
5902
5903 =item PerlIO is Now The Default
5904
5905 =item Signals Are Now Safe
5906
5907 =back
5908
5909 =item Modules and Pragmata
5910
5911 =over 4
5912
5913 =item New Modules
5914
5915 =item Updated And Improved Modules and Pragmata
5916
5917 =back
5918
5919 =item Performance Enhancements
5920
5921 =item Utility Changes
5922
5923 =item New Documentation
5924
5925 =over 4
5926
5927 =item perlclib
5928
5929 =item perliol
5930
5931 =item README.aix
5932
5933 =item README.bs2000
5934
5935 =item README.macos
5936
5937 =item README.mpeix
5938
5939 =item README.solaris
5940
5941 =item README.vos
5942
5943 =item Porting/repository.pod
5944
5945 =back
5946
5947 =item Installation and Configuration Improvements
5948
5949 =over 4
5950
5951 =item New Or Improved Platforms
5952
5953 =item Generic Improvements
5954
5955 d_cmsghdr, d_fcntl_can_lock, d_fsync, d_getitimer, d_getpagsz, d_msghdr_s,
5956 need_va_copy, d_readv, d_recvmsg, d_sendmsg, sig_size, d_sockatmark,
5957 d_strtoq, d_u32align, d_ualarm, d_usleep
5958
5959 =back
5960
5961 =item Selected Bug Fixes
5962
5963 =over 4
5964
5965 =item Platform Specific Changes and Fixes
5966
5967 =back
5968
5969 =item New or Changed Diagnostics
5970
5971 =item Changed Internals
5972
5973 =item New Tests
5974
5975 =item Known Problems
5976
5977 =over 4
5978
5979 =item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
5980
5981 =item lib/ftmp-security tests warn 'system possibly insecure'
5982
5983 =item lib/io_multihomed Fails In LP64-Configured HP-UX
5984
5985 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5986
5987 =item lib/b test 19
5988
5989 =item Linux With Sfio Fails op/misc Test 48
5990
5991 =item sigaction test 13 in VMS
5992
5993 =item sprintf tests 129 and 130
5994
5995 =item  Failure of Thread tests
5996
5997 =item Localising a Tied Variable Leaks Memory
5998
5999 =item Self-tying of Arrays and Hashes Is Forbidden
6000
6001 =item Building Extensions Can Fail Because Of Largefiles
6002
6003 =item The Compiler Suite Is Still Experimental
6004
6005 =back
6006
6007 =item Reporting Bugs
6008
6009 =item SEE ALSO
6010
6011 =item HISTORY
6012
6013 =back
6014
6015 =head2 perl570delta - what's new for perl v5.7.0
6016
6017 =over 4
6018
6019 =item DESCRIPTION
6020
6021 =item Security Vulnerability Closed
6022
6023 =item Incompatible Changes
6024
6025 =item Core Enhancements
6026
6027 =item Modules and Pragmata
6028
6029 =over 4
6030
6031 =item New Modules
6032
6033 =item Updated And Improved Modules and Pragmata
6034
6035 =back
6036
6037 =item Utility Changes
6038
6039 =item New Documentation
6040
6041 =item Performance Enhancements
6042
6043 =item Installation and Configuration Improvements
6044
6045 =over 4
6046
6047 =item Generic Improvements
6048
6049 =back
6050
6051 =item Selected Bug Fixes
6052
6053 =over 4
6054
6055 =item Platform Specific Changes and Fixes
6056
6057 =back
6058
6059 =item New or Changed Diagnostics
6060
6061 =item Changed Internals
6062
6063 =item Known Problems
6064
6065 =over 4
6066
6067 =item Unicode Support Still Far From Perfect
6068
6069 =item EBCDIC Still A Lost Platform
6070
6071 =item Building Extensions Can Fail Because Of Largefiles
6072
6073 =item ftmp-security tests warn 'system possibly insecure'
6074
6075 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
6076
6077 =item Long Doubles Still Don't Work In Solaris
6078
6079 =item Linux With Sfio Fails op/misc Test 48
6080
6081 =item Storable tests fail in some platforms
6082
6083 =item Threads Are Still Experimental
6084
6085 =item The Compiler Suite Is Still Experimental
6086
6087 =back
6088
6089 =item Reporting Bugs
6090
6091 =item SEE ALSO
6092
6093 =item HISTORY
6094
6095 =back
6096
6097 =head2 perl561delta - what's new for perl v5.6.x
6098
6099 =over 4
6100
6101 =item DESCRIPTION
6102
6103 =item Summary of changes between 5.6.0 and 5.6.1
6104
6105 =over 4
6106
6107 =item Security Issues
6108
6109 =item Core bug fixes
6110
6111 C<UNIVERSAL::isa()>, Memory leaks, Numeric conversions, qw(a\\b), caller(),
6112 Bugs in regular expressions, "slurp" mode, Autovivification of symbolic
6113 references to special variables, Lexical warnings, Spurious warnings and
6114 errors, glob(), Tainting, sort(), #line directives, Subroutine prototypes,
6115 map(), Debugger, PERL5OPT, chop(), Unicode support, 64-bit support,
6116 Compiler, Lvalue subroutines, IO::Socket, File::Find, xsubpp, C<no
6117 Module;>, Tests
6118
6119 =item Core features
6120
6121 =item Configuration issues
6122
6123 =item Documentation
6124
6125 =item Bundled modules
6126
6127 B::Concise, File::Temp, Pod::LaTeX, Pod::Text::Overstrike, CGI, CPAN,
6128 Class::Struct, DB_File, Devel::Peek, File::Find, Getopt::Long, IO::Poll,
6129 IPC::Open3, Math::BigFloat, Math::Complex, Net::Ping, Opcode, Pod::Parser,
6130 Pod::Text, SDBM_File, Sys::Syslog, Tie::RefHash, Tie::SubstrHash
6131
6132 =item Platform-specific improvements
6133
6134 NCR MP-RAS, NonStop-UX
6135
6136 =back
6137
6138 =item Core Enhancements
6139
6140 =over 4
6141
6142 =item Interpreter cloning, threads, and concurrency
6143
6144 =item Lexically scoped warning categories
6145
6146 =item Unicode and UTF-8 support
6147
6148 =item Support for interpolating named characters
6149
6150 =item "our" declarations
6151
6152 =item Support for strings represented as a vector of ordinals
6153
6154 =item Improved Perl version numbering system
6155
6156 =item New syntax for declaring subroutine attributes
6157
6158 =item File and directory handles can be autovivified
6159
6160 =item open() with more than two arguments
6161
6162 =item 64-bit support
6163
6164 =item Large file support
6165
6166 =item Long doubles
6167
6168 =item "more bits"
6169
6170 =item Enhanced support for sort() subroutines
6171
6172 =item C<sort $coderef @foo> allowed
6173
6174 =item File globbing implemented internally
6175
6176 =item Support for CHECK blocks
6177
6178 =item POSIX character class syntax [: :] supported
6179
6180 =item Better pseudo-random number generator
6181
6182 =item Improved C<qw//> operator
6183
6184 =item Better worst-case behavior of hashes
6185
6186 =item pack() format 'Z' supported
6187
6188 =item pack() format modifier '!' supported
6189
6190 =item pack() and unpack() support counted strings
6191
6192 =item Comments in pack() templates
6193
6194 =item Weak references
6195
6196 =item Binary numbers supported
6197
6198 =item Lvalue subroutines
6199
6200 =item Some arrows may be omitted in calls through references
6201
6202 =item Boolean assignment operators are legal lvalues
6203
6204 =item exists() is supported on subroutine names
6205
6206 =item exists() and delete() are supported on array elements
6207
6208 =item Pseudo-hashes work better
6209
6210 =item Automatic flushing of output buffers
6211
6212 =item Better diagnostics on meaningless filehandle operations
6213
6214 =item Where possible, buffered data discarded from duped input filehandle
6215
6216 =item eof() has the same old magic as <>
6217
6218 =item binmode() can be used to set :crlf and :raw modes
6219
6220 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
6221
6222 =item system(), backticks and pipe open now reflect exec() failure
6223
6224 =item Improved diagnostics
6225
6226 =item Diagnostics follow STDERR
6227
6228 =item More consistent close-on-exec behavior
6229
6230 =item syswrite() ease-of-use
6231
6232 =item Better syntax checks on parenthesized unary operators
6233
6234 =item Bit operators support full native integer width
6235
6236 =item Improved security features
6237
6238 =item More functional bareword prototype (*)
6239
6240 =item C<require> and C<do> may be overridden
6241
6242 =item $^X variables may now have names longer than one character
6243
6244 =item New variable $^C reflects C<-c> switch
6245
6246 =item New variable $^V contains Perl version as a string
6247
6248 =item Optional Y2K warnings
6249
6250 =item Arrays now always interpolate into double-quoted strings
6251
6252 =back
6253
6254 =item Modules and Pragmata
6255
6256 =over 4
6257
6258 =item Modules
6259
6260 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6261 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6262 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6263 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6264 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6265 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6266 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6267 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6268
6269 =item Pragmata
6270
6271 =back
6272
6273 =item Utility Changes
6274
6275 =over 4
6276
6277 =item dprofpp
6278
6279 =item find2perl
6280
6281 =item h2xs
6282
6283 =item perlcc
6284
6285 =item perldoc
6286
6287 =item The Perl Debugger
6288
6289 =back
6290
6291 =item Improved Documentation
6292
6293 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6294 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6295 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6296 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6297
6298 =item Performance enhancements
6299
6300 =over 4
6301
6302 =item Simple sort() using { $a <=> $b } and the like are optimized
6303
6304 =item Optimized assignments to lexical variables
6305
6306 =item Faster subroutine calls
6307
6308 =item delete(), each(), values() and hash iteration are faster
6309
6310 =back
6311
6312 =item Installation and Configuration Improvements
6313
6314 =over 4
6315
6316 =item -Dusethreads means something different
6317
6318 =item New Configure flags
6319
6320 =item Threadedness and 64-bitness now more daring
6321
6322 =item Long Doubles
6323
6324 =item -Dusemorebits
6325
6326 =item -Duselargefiles
6327
6328 =item installusrbinperl
6329
6330 =item SOCKS support
6331
6332 =item C<-A> flag
6333
6334 =item Enhanced Installation Directories
6335
6336 =item gcc automatically tried if 'cc' does not seem to be working
6337
6338 =back
6339
6340 =item Platform specific changes
6341
6342 =over 4
6343
6344 =item Supported platforms
6345
6346 =item DOS
6347
6348 =item OS390 (OpenEdition MVS)
6349
6350 =item VMS
6351
6352 =item Win32
6353
6354 =back
6355
6356 =item Significant bug fixes
6357
6358 =over 4
6359
6360 =item <HANDLE> on empty files
6361
6362 =item C<eval '...'> improvements
6363
6364 =item All compilation errors are true errors
6365
6366 =item Implicitly closed filehandles are safer
6367
6368 =item Behavior of list slices is more consistent
6369
6370 =item C<(\$)> prototype and C<$foo{a}>
6371
6372 =item C<goto &sub> and AUTOLOAD
6373
6374 =item C<-bareword> allowed under C<use integer>
6375
6376 =item Failures in DESTROY()
6377
6378 =item Locale bugs fixed
6379
6380 =item Memory leaks
6381
6382 =item Spurious subroutine stubs after failed subroutine calls
6383
6384 =item Taint failures under C<-U>
6385
6386 =item END blocks and the C<-c> switch
6387
6388 =item Potential to leak DATA filehandles
6389
6390 =back
6391
6392 =item New or Changed Diagnostics
6393
6394 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6395 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6396 / cannot take a count, / must be followed by a, A or Z, / must be followed
6397 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6398 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6399 passed through, /%s/ should probably be written as "%s", %s() called too
6400 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6401 argument is not a HASH or ARRAY element or slice, %s argument is not a
6402 subroutine name, %s package attribute may clash with future reserved word:
6403 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6404 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6405 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6406 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6407 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6408 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6409 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6410 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6411 weaken a nonreference, Character class [:%s:] unknown, Character class
6412 syntax [%s] belongs inside character classes, Constant is not %s reference,
6413 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6414 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6415 "local" instead of "our"?), Document contains no data, entering effective
6416 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6417 output, flock() on closed filehandle %s, Global symbol "%s" requires
6418 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6419 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6420 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6421 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6422 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6423 separator character %s in attribute list, Invalid separator character %s in
6424 subroutine attribute list, leaving effective %s failed, Lvalue subs
6425 returning %s not implemented yet, Method %s not permitted, Missing
6426 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6427 No %s specified for -%c, No package name allowed for variable %s in "our",
6428 No space allowed after -%c, no UTC offset information; assuming local time
6429 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6430 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6431 around "%s" list, Possible unintended interpolation of %s in string,
6432 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6433 instead, Premature end of script headers, Repeat count in pack overflows,
6434 Repeat count in unpack overflows, realloc() of freed memory ignored,
6435 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6436 zero-length expression, switching effective %s is not implemented, This
6437 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6438 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6439 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6440 escape \\%c passed through, Unterminated attribute parameter in attribute
6441 list, Unterminated attribute list, Unterminated attribute parameter in
6442 subroutine attribute list, Unterminated subroutine attribute list, Value of
6443 CLI symbol "%s" too long, Version number must be a constant number
6444
6445 =item New tests
6446
6447 =item Incompatible Changes
6448
6449 =over 4
6450
6451 =item Perl Source Incompatibilities
6452
6453 CHECK is a new keyword, Treatment of list slices of undef has changed,
6454 Format of $English::PERL_VERSION is different, Literals of the form
6455 C<1.2.3> parse differently, Possibly changed pseudo-random number
6456 generator, Hashing function for hash keys has changed, C<undef> fails on
6457 read only values, Close-on-exec bit may be set on pipe and socket handles,
6458 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6459 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6460 Text of some diagnostic output has changed, C<%@> has been removed,
6461 Parenthesized not() behaves like a list operator, Semantics of bareword
6462 prototype C<(*)> have changed, Semantics of bit operators may have changed
6463 on 64-bit platforms, More builtins taint their results
6464
6465 =item C Source Incompatibilities
6466
6467 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6468
6469 =item Compatible C Source API Changes
6470
6471 C<PATCHLEVEL> is now C<PERL_VERSION>
6472
6473 =item Binary Incompatibilities
6474
6475 =back
6476
6477 =item Known Problems
6478
6479 =over 4
6480
6481 =item Localizing a tied hash element may leak memory
6482
6483 =item Known test failures
6484
6485 =item EBCDIC platforms not fully supported
6486
6487 =item UNICOS/mk CC failures during Configure run
6488
6489 =item Arrow operator and arrays
6490
6491 =item Experimental features
6492
6493 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6494 pseudo-hash data type, The Compiler suite, Internal implementation of file
6495 globbing, The DB module, The regular expression code constructs:
6496
6497 =back
6498
6499 =item Obsolete Diagnostics
6500
6501 Character class syntax [: :] is reserved for future extensions, Ill-formed
6502 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6503 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6504 to mean "${$}<digit>" is deprecated
6505
6506 =item Reporting Bugs
6507
6508 =item SEE ALSO
6509
6510 =item HISTORY
6511
6512 =back
6513
6514 =head2 perl56delta - what's new for perl v5.6.0
6515
6516 =over 4
6517
6518 =item DESCRIPTION
6519
6520 =item Core Enhancements
6521
6522 =over 4
6523
6524 =item Interpreter cloning, threads, and concurrency
6525
6526 =item Lexically scoped warning categories
6527
6528 =item Unicode and UTF-8 support
6529
6530 =item Support for interpolating named characters
6531
6532 =item "our" declarations
6533
6534 =item Support for strings represented as a vector of ordinals
6535
6536 =item Improved Perl version numbering system
6537
6538 =item New syntax for declaring subroutine attributes
6539
6540 =item File and directory handles can be autovivified
6541
6542 =item open() with more than two arguments
6543
6544 =item 64-bit support
6545
6546 =item Large file support
6547
6548 =item Long doubles
6549
6550 =item "more bits"
6551
6552 =item Enhanced support for sort() subroutines
6553
6554 =item C<sort $coderef @foo> allowed
6555
6556 =item File globbing implemented internally
6557
6558 =item Support for CHECK blocks
6559
6560 =item POSIX character class syntax [: :] supported
6561
6562 =item Better pseudo-random number generator
6563
6564 =item Improved C<qw//> operator
6565
6566 =item Better worst-case behavior of hashes
6567
6568 =item pack() format 'Z' supported
6569
6570 =item pack() format modifier '!' supported
6571
6572 =item pack() and unpack() support counted strings
6573
6574 =item Comments in pack() templates
6575
6576 =item Weak references
6577
6578 =item Binary numbers supported
6579
6580 =item Lvalue subroutines
6581
6582 =item Some arrows may be omitted in calls through references
6583
6584 =item Boolean assignment operators are legal lvalues
6585
6586 =item exists() is supported on subroutine names
6587
6588 =item exists() and delete() are supported on array elements
6589
6590 =item Pseudo-hashes work better
6591
6592 =item Automatic flushing of output buffers
6593
6594 =item Better diagnostics on meaningless filehandle operations
6595
6596 =item Where possible, buffered data discarded from duped input filehandle
6597
6598 =item eof() has the same old magic as <>
6599
6600 =item binmode() can be used to set :crlf and :raw modes
6601
6602 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
6603
6604 =item system(), backticks and pipe open now reflect exec() failure
6605
6606 =item Improved diagnostics
6607
6608 =item Diagnostics follow STDERR
6609
6610 =item More consistent close-on-exec behavior
6611
6612 =item syswrite() ease-of-use
6613
6614 =item Better syntax checks on parenthesized unary operators
6615
6616 =item Bit operators support full native integer width
6617
6618 =item Improved security features
6619
6620 =item More functional bareword prototype (*)
6621
6622 =item C<require> and C<do> may be overridden
6623
6624 =item $^X variables may now have names longer than one character
6625
6626 =item New variable $^C reflects C<-c> switch
6627
6628 =item New variable $^V contains Perl version as a string
6629
6630 =item Optional Y2K warnings
6631
6632 =item Arrays now always interpolate into double-quoted strings
6633
6634 =back
6635
6636 =item Modules and Pragmata
6637
6638 =over 4
6639
6640 =item Modules
6641
6642 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6643 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6644 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6645 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6646 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6647 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6648 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6649 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6650
6651 =item Pragmata
6652
6653 =back
6654
6655 =item Utility Changes
6656
6657 =over 4
6658
6659 =item dprofpp
6660
6661 =item find2perl
6662
6663 =item h2xs
6664
6665 =item perlcc
6666
6667 =item perldoc
6668
6669 =item The Perl Debugger
6670
6671 =back
6672
6673 =item Improved Documentation
6674
6675 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6676 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6677 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6678 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6679
6680 =item Performance enhancements
6681
6682 =over 4
6683
6684 =item Simple sort() using { $a <=> $b } and the like are optimized
6685
6686 =item Optimized assignments to lexical variables
6687
6688 =item Faster subroutine calls
6689
6690 =item delete(), each(), values() and hash iteration are faster
6691
6692 =back
6693
6694 =item Installation and Configuration Improvements
6695
6696 =over 4
6697
6698 =item -Dusethreads means something different
6699
6700 =item New Configure flags
6701
6702 =item Threadedness and 64-bitness now more daring
6703
6704 =item Long Doubles
6705
6706 =item -Dusemorebits
6707
6708 =item -Duselargefiles
6709
6710 =item installusrbinperl
6711
6712 =item SOCKS support
6713
6714 =item C<-A> flag
6715
6716 =item Enhanced Installation Directories
6717
6718 =back
6719
6720 =item Platform specific changes
6721
6722 =over 4
6723
6724 =item Supported platforms
6725
6726 =item DOS
6727
6728 =item OS390 (OpenEdition MVS)
6729
6730 =item VMS
6731
6732 =item Win32
6733
6734 =back
6735
6736 =item Significant bug fixes
6737
6738 =over 4
6739
6740 =item <HANDLE> on empty files
6741
6742 =item C<eval '...'> improvements
6743
6744 =item All compilation errors are true errors
6745
6746 =item Implicitly closed filehandles are safer
6747
6748 =item Behavior of list slices is more consistent
6749
6750 =item C<(\$)> prototype and C<$foo{a}>
6751
6752 =item C<goto &sub> and AUTOLOAD
6753
6754 =item C<-bareword> allowed under C<use integer>
6755
6756 =item Failures in DESTROY()
6757
6758 =item Locale bugs fixed
6759
6760 =item Memory leaks
6761
6762 =item Spurious subroutine stubs after failed subroutine calls
6763
6764 =item Taint failures under C<-U>
6765
6766 =item END blocks and the C<-c> switch
6767
6768 =item Potential to leak DATA filehandles
6769
6770 =back
6771
6772 =item New or Changed Diagnostics
6773
6774 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6775 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6776 / cannot take a count, / must be followed by a, A or Z, / must be followed
6777 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6778 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6779 passed through, /%s/ should probably be written as "%s", %s() called too
6780 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6781 argument is not a HASH or ARRAY element or slice, %s argument is not a
6782 subroutine name, %s package attribute may clash with future reserved word:
6783 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6784 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6785 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6786 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6787 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6788 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6789 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6790 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6791 weaken a nonreference, Character class [:%s:] unknown, Character class
6792 syntax [%s] belongs inside character classes, Constant is not %s reference,
6793 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6794 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6795 "local" instead of "our"?), Document contains no data, entering effective
6796 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6797 output, flock() on closed filehandle %s, Global symbol "%s" requires
6798 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6799 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6800 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6801 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6802 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6803 separator character %s in attribute list, Invalid separator character %s in
6804 subroutine attribute list, leaving effective %s failed, Lvalue subs
6805 returning %s not implemented yet, Method %s not permitted, Missing
6806 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6807 No %s specified for -%c, No package name allowed for variable %s in "our",
6808 No space allowed after -%c, no UTC offset information; assuming local time
6809 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6810 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6811 around "%s" list, Possible unintended interpolation of %s in string,
6812 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6813 instead, Premature end of script headers, Repeat count in pack overflows,
6814 Repeat count in unpack overflows, realloc() of freed memory ignored,
6815 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6816 zero-length expression, switching effective %s is not implemented, This
6817 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6818 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6819 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6820 escape \\%c passed through, Unterminated attribute parameter in attribute
6821 list, Unterminated attribute list, Unterminated attribute parameter in
6822 subroutine attribute list, Unterminated subroutine attribute list, Value of
6823 CLI symbol "%s" too long, Version number must be a constant number
6824
6825 =item New tests
6826
6827 =item Incompatible Changes
6828
6829 =over 4
6830
6831 =item Perl Source Incompatibilities
6832
6833 CHECK is a new keyword, Treatment of list slices of undef has changed,
6834 Format of $English::PERL_VERSION is different, Literals of the form
6835 C<1.2.3> parse differently, Possibly changed pseudo-random number
6836 generator, Hashing function for hash keys has changed, C<undef> fails on
6837 read only values, Close-on-exec bit may be set on pipe and socket handles,
6838 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6839 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6840 Text of some diagnostic output has changed, C<%@> has been removed,
6841 Parenthesized not() behaves like a list operator, Semantics of bareword
6842 prototype C<(*)> have changed, Semantics of bit operators may have changed
6843 on 64-bit platforms, More builtins taint their results
6844
6845 =item C Source Incompatibilities
6846
6847 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6848
6849 =item Compatible C Source API Changes
6850
6851 C<PATCHLEVEL> is now C<PERL_VERSION>
6852
6853 =item Binary Incompatibilities
6854
6855 =back
6856
6857 =item Known Problems
6858
6859 =over 4
6860
6861 =item Thread test failures
6862
6863 =item EBCDIC platforms not supported
6864
6865 =item In 64-bit HP-UX the lib/io_multihomed test may hang
6866
6867 =item NEXTSTEP 3.3 POSIX test failure
6868
6869 =item Tru64 (aka Digital UNIX, aka DEC OSF/1) lib/sdbm test failure with
6870 gcc
6871
6872 =item UNICOS/mk CC failures during Configure run
6873
6874 =item Arrow operator and arrays
6875
6876 =item Experimental features
6877
6878 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6879 pseudo-hash data type, The Compiler suite, Internal implementation of file
6880 globbing, The DB module, The regular expression code constructs:
6881
6882 =back
6883
6884 =item Obsolete Diagnostics
6885
6886 Character class syntax [: :] is reserved for future extensions, Ill-formed
6887 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6888 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6889 to mean "${$}<digit>" is deprecated
6890
6891 =item Reporting Bugs
6892
6893 =item SEE ALSO
6894
6895 =item HISTORY
6896
6897 =back
6898
6899 =head2 perl5005delta - what's new for perl5.005
6900
6901 =over 4
6902
6903 =item DESCRIPTION
6904
6905 =item About the new versioning system
6906
6907 =item Incompatible Changes
6908
6909 =over 4
6910
6911 =item WARNING:  This version is not binary compatible with Perl 5.004.
6912
6913 =item Default installation structure has changed
6914
6915 =item Perl Source Compatibility
6916
6917 =item C Source Compatibility
6918
6919 =item Binary Compatibility
6920
6921 =item Security fixes may affect compatibility
6922
6923 =item Relaxed new mandatory warnings introduced in 5.004
6924
6925 =item Licensing
6926
6927 =back
6928
6929 =item Core Changes
6930
6931 =over 4
6932
6933 =item Threads
6934
6935 =item Compiler
6936
6937 =item Regular Expressions
6938
6939 Many new and improved optimizations, Many bug fixes, New regular expression
6940 constructs, New operator for precompiled regular expressions, Other
6941 improvements, Incompatible changes
6942
6943 =item   Improved malloc()
6944
6945 =item Quicksort is internally implemented
6946
6947 =item Reliable signals
6948
6949 =item Reliable stack pointers
6950
6951 =item More generous treatment of carriage returns
6952
6953 =item Memory leaks
6954
6955 =item Better support for multiple interpreters
6956
6957 =item Behavior of local() on array and hash elements is now well-defined
6958
6959 =item C<%!> is transparently tied to the L<Errno> module
6960
6961 =item Pseudo-hashes are supported
6962
6963 =item C<EXPR foreach EXPR> is supported
6964
6965 =item Keywords can be globally overridden
6966
6967 =item C<$^E> is meaningful on Win32
6968
6969 =item C<foreach (1..1000000)> optimized
6970
6971 =item C<Foo::> can be used as implicitly quoted package name
6972
6973 =item C<exists $Foo::{Bar::}> tests existence of a package
6974
6975 =item Better locale support
6976
6977 =item Experimental support for 64-bit platforms
6978
6979 =item prototype() returns useful results on builtins
6980
6981 =item Extended support for exception handling
6982
6983 =item Re-blessing in DESTROY() supported for chaining DESTROY() methods
6984
6985 =item All C<printf> format conversions are handled internally
6986
6987 =item New C<INIT> keyword
6988
6989 =item New C<lock> keyword
6990
6991 =item New C<qr//> operator
6992
6993 =item C<our> is now a reserved word
6994
6995 =item Tied arrays are now fully supported
6996
6997 =item Tied handles support is better
6998
6999 =item 4th argument to substr
7000
7001 =item Negative LENGTH argument to splice
7002
7003 =item Magic lvalues are now more magical
7004
7005 =item <> now reads in records
7006
7007 =back
7008
7009 =item Supported Platforms
7010
7011 =over 4
7012
7013 =item New Platforms
7014
7015 =item Changes in existing support
7016
7017 =back
7018
7019 =item Modules and Pragmata
7020
7021 =over 4
7022
7023 =item New Modules
7024
7025 B, Data::Dumper, Dumpvalue, Errno, File::Spec, ExtUtils::Installed,
7026 ExtUtils::Packlist, Fatal, IPC::SysV, Test, Tie::Array, Tie::Handle,
7027 Thread, attrs, fields, re
7028
7029 =item Changes in existing modules
7030
7031 Benchmark, Carp, CGI, Fcntl, Math::Complex, Math::Trig, POSIX, DB_File,
7032 MakeMaker, CPAN, Cwd
7033
7034 =back
7035
7036 =item Utility Changes
7037
7038 =item Documentation Changes
7039
7040 =item New Diagnostics
7041
7042 Ambiguous call resolved as CORE::%s(), qualify as such or use &, Bad index
7043 while coercing array into hash, Bareword "%s" refers to nonexistent
7044 package, Can't call method "%s" on an undefined value, Can't check
7045 filesystem of script "%s" for nosuid, Can't coerce array into hash, Can't
7046 goto subroutine from an eval-string, Can't localize pseudo-hash element,
7047 Can't use %%! because Errno.pm is not available, Cannot find an opnumber
7048 for "%s", Character class syntax [. .] is reserved for future extensions,
7049 Character class syntax [: :] is reserved for future extensions, Character
7050 class syntax [= =] is reserved for future extensions, %s: Eval-group in
7051 insecure regular expression, %s: Eval-group not allowed, use re 'eval', %s:
7052 Eval-group not allowed at run time, Explicit blessing to '' (assuming
7053 package main), Illegal hex digit ignored, No such array field, No such
7054 field "%s" in variable %s of type %s, Out of memory during ridiculously
7055 large request, Range iterator outside integer range, Recursive inheritance
7056 detected while looking for method '%s' %s, Reference found where even-sized
7057 list expected, Undefined value assigned to typeglob, Use of reserved word
7058 "%s" is deprecated, perl: warning: Setting locale failed
7059
7060 =item Obsolete Diagnostics
7061
7062 Can't mktemp(), Can't write to temp file for B<-e>: %s, Cannot open
7063 temporary file, regexp too big
7064
7065 =item Configuration Changes
7066
7067 =item BUGS
7068
7069 =item SEE ALSO
7070
7071 =item HISTORY
7072
7073 =back
7074
7075 =head2 perl5004delta - what's new for perl5.004
7076
7077 =over 4
7078
7079 =item DESCRIPTION
7080
7081 =item Supported Environments
7082
7083 =item Core Changes
7084
7085 =over 4
7086
7087 =item List assignment to %ENV works
7088
7089 =item Change to "Can't locate Foo.pm in @INC" error
7090
7091 =item Compilation option: Binary compatibility with 5.003
7092
7093 =item $PERL5OPT environment variable
7094
7095 =item Limitations on B<-M>, B<-m>, and B<-T> options
7096
7097 =item More precise warnings
7098
7099 =item Deprecated: Inherited C<AUTOLOAD> for non-methods
7100
7101 =item Previously deprecated %OVERLOAD is no longer usable
7102
7103 =item Subroutine arguments created only when they're modified
7104
7105 =item Group vector changeable with C<$)>
7106
7107 =item Fixed parsing of $$<digit>, &$<digit>, etc.
7108
7109 =item Fixed localization of $<digit>, $&, etc.
7110
7111 =item No resetting of $. on implicit close
7112
7113 =item C<wantarray> may return undef
7114
7115 =item C<eval EXPR> determines value of EXPR in scalar context
7116
7117 =item Changes to tainting checks
7118
7119 No glob() or <*>, No spawning if tainted $CDPATH, $ENV, $BASH_ENV, No
7120 spawning if tainted $TERM doesn't look like a terminal name
7121
7122 =item New Opcode module and revised Safe module
7123
7124 =item Embedding improvements
7125
7126 =item Internal change: FileHandle class based on IO::* classes
7127
7128 =item Internal change: PerlIO abstraction interface
7129
7130 =item New and changed syntax
7131
7132 $coderef->(PARAMS)
7133
7134 =item New and changed builtin constants
7135
7136 __PACKAGE__
7137
7138 =item New and changed builtin variables
7139
7140 $^E, $^H, $^M
7141
7142 =item New and changed builtin functions
7143
7144 delete on slices, flock, printf and sprintf, keys as an lvalue, my() in
7145 Control Structures, pack() and unpack(), sysseek(), use VERSION, use Module
7146 VERSION LIST, prototype(FUNCTION), srand, $_ as Default, C<m//gc> does not
7147 reset search position on failure, C<m//x> ignores whitespace before ?*+{},
7148 nested C<sub{}> closures work now, formats work right on changing lexicals
7149
7150 =item New builtin methods
7151
7152 isa(CLASS), can(METHOD), VERSION( [NEED] )
7153
7154 =item TIEHANDLE now supported
7155
7156 TIEHANDLE classname, LIST, PRINT this, LIST, PRINTF this, LIST, READ this
7157 LIST, READLINE this, GETC this, DESTROY this
7158
7159 =item Malloc enhancements
7160
7161 -DPERL_EMERGENCY_SBRK, -DPACK_MALLOC, -DTWO_POT_OPTIMIZE
7162
7163 =item Miscellaneous efficiency enhancements
7164
7165 =back
7166
7167 =item Support for More Operating Systems
7168
7169 =over 4
7170
7171 =item Win32
7172
7173 =item Plan 9
7174
7175 =item QNX
7176
7177 =item AmigaOS
7178
7179 =back
7180
7181 =item Pragmata
7182
7183 use autouse MODULE => qw(sub1 sub2 sub3), use blib, use blib 'dir', use
7184 constant NAME => VALUE, use locale, use ops, use vmsish
7185
7186 =item Modules
7187
7188 =over 4
7189
7190 =item Required Updates
7191
7192 =item Installation directories
7193
7194 =item Module information summary
7195
7196 =item Fcntl
7197
7198 =item IO
7199
7200 =item Math::Complex
7201
7202 =item Math::Trig
7203
7204 =item DB_File
7205
7206 =item Net::Ping
7207
7208 =item Object-oriented overrides for builtin operators
7209
7210 =back
7211
7212 =item Utility Changes
7213
7214 =over 4
7215
7216 =item pod2html
7217
7218 Sends converted HTML to standard output
7219
7220 =item xsubpp
7221
7222 C<void> XSUBs now default to returning nothing
7223
7224 =back
7225
7226 =item C Language API Changes
7227
7228 C<gv_fetchmethod> and C<perl_call_sv>, C<perl_eval_pv>, Extended API for
7229 manipulating hashes
7230
7231 =item Documentation Changes
7232
7233 L<perldelta>, L<perlfaq>, L<perllocale>, L<perltoot>, L<perlapio>,
7234 L<perlmodlib>, L<perldebug>, L<perlsec>
7235
7236 =item New Diagnostics
7237
7238 "my" variable %s masks earlier declaration in same scope, %s argument is
7239 not a HASH element or slice, Allocation too large: %lx, Allocation too
7240 large, Applying %s to %s will act on scalar(%s), Attempt to free
7241 nonexistent shared string, Attempt to use reference as lvalue in substr,
7242 Bareword "%s" refers to nonexistent package, Can't redefine active sort
7243 subroutine %s, Can't use bareword ("%s") as %s ref while "strict refs" in
7244 use, Cannot resolve method `%s' overloading `%s' in package `%s', Constant
7245 subroutine %s redefined, Constant subroutine %s undefined, Copy method did
7246 not return a reference, Died, Exiting pseudo-block via %s, Identifier too
7247 long, Illegal character %s (carriage return), Illegal switch in PERL5OPT:
7248 %s, Integer overflow in hex number, Integer overflow in octal number,
7249 internal error: glob failed, Invalid conversion in %s: "%s", Invalid type
7250 in pack: '%s', Invalid type in unpack: '%s', Name "%s::%s" used only once:
7251 possible typo, Null picture in formline, Offset outside string, Out of
7252 memory!, Out of memory during request for %s, panic: frexp, Possible
7253 attempt to put comments in qw() list, Possible attempt to separate words
7254 with commas, Scalar value @%s{%s} better written as $%s{%s}, Stub found
7255 while resolving method `%s' overloading `%s' in %s, Too late for "B<-T>"
7256 option, untie attempted while %d inner references still exist, Unrecognized
7257 character %s, Unsupported function fork, Use of "$$<digit>" to mean
7258 "${$}<digit>" is deprecated, Value of %s can be "0"; test with defined(),
7259 Variable "%s" may be unavailable, Variable "%s" will not stay shared,
7260 Warning: something's wrong, Ill-formed logical name |%s| in prime_env_iter,
7261 Got an error from DosAllocMem, Malformed PERLLIB_PREFIX, PERL_SH_DIR too
7262 long, Process terminated by SIG%s
7263
7264 =item BUGS
7265
7266 =item SEE ALSO
7267
7268 =item HISTORY
7269
7270 =back
7271
7272 =head2 perlartistic - the Perl Artistic License
7273
7274 =over 4
7275
7276 =item SYNOPSIS
7277
7278 =item DESCRIPTION
7279
7280 =item The "Artistic License"
7281
7282 =over 4
7283
7284 =item Preamble
7285
7286 =item Definitions
7287
7288 "Package", "Standard Version", "Copyright Holder", "You", "Reasonable
7289 copying fee", "Freely Available"
7290
7291 =item Conditions
7292
7293 a), b), c), d), a), b), c), d)
7294
7295 =back
7296
7297 =back
7298
7299 =head2 perlgpl - the GNU General Public License, version 2
7300
7301 =over 4
7302
7303 =item SYNOPSIS
7304
7305 =back
7306
7307 =over 4
7308
7309 =item DESCRIPTION
7310
7311 =item GNU GENERAL PUBLIC LICENSE
7312
7313 =back
7314
7315 =head2 perlaix, README.aix - Perl version 5 on IBM Unix (AIX) systems
7316
7317 =over 4
7318
7319 =item DESCRIPTION
7320
7321 =over 4
7322
7323 =item Compiling Perl 5 on AIX
7324
7325 =item OS level
7326
7327 =item Building Dynamic Extensions on AIX
7328
7329 =item The IBM ANSI C Compiler
7330
7331 =item The usenm option
7332
7333 =item Using GNU's gcc for building perl
7334
7335 =item Using Large Files with Perl
7336
7337 =item Threaded Perl
7338
7339 =item 64-bit Perl
7340
7341 =item AIX 4.2 and extensions using C++ with statics
7342
7343 =back
7344
7345 =item AUTHOR
7346
7347 =item DATE
7348
7349 =back
7350
7351 =head2 perlamiga - Perl under Amiga OS
7352
7353 =over 4
7354
7355 =item NOTE
7356
7357 =item SYNOPSIS
7358
7359 =back
7360
7361 =over 4
7362
7363 =item DESCRIPTION
7364
7365 =over 4
7366
7367 =item Prerequisites for Compiling Perl on AmigaOS
7368
7369 B<Unix emulation for AmigaOS: ixemul.library>, B<Version of Amiga OS>
7370
7371 =item Starting Perl programs under AmigaOS
7372
7373 =item Shortcomings of Perl under AmigaOS
7374
7375 =back
7376
7377 =item INSTALLATION
7378
7379 =item Accessing documentation
7380
7381 =over 4
7382
7383 =item Manpages for Perl on AmigaOS
7384
7385 =item Perl HTML Documentation on AmigaOS
7386
7387 =item Perl GNU Info Files on AmigaOS
7388
7389 =item Perl LaTeX Documentation on AmigaOS
7390
7391 =back
7392
7393 =item BUILDING PERL ON AMIGAOS
7394
7395 =over 4
7396
7397 =item Build Prerequisites for Perl on AmigaOS
7398
7399 =item Getting the Perl Source for AmigaOS
7400
7401 =item Making Perl on AmigaOS
7402
7403 =item Testing Perl on AmigaOS
7404
7405 =item Installing the built Perl on AmigaOS
7406
7407 =back
7408
7409 =item PERL 5.8.0 BROKEN IN AMIGAOS
7410
7411 =item AUTHORS
7412
7413 =item SEE ALSO
7414
7415 =back
7416
7417 =head2 perlapollo, README.apollo - Perl version 5 on Apollo DomainOS
7418
7419 =over 4
7420
7421 =item DESCRIPTION
7422
7423 =item AUTHOR
7424
7425 =back
7426
7427 =head2 perlbeos, README.beos - Perl version 5 on BeOS
7428
7429 =over 4
7430
7431 =item DESCRIPTION
7432
7433 =over 4
7434
7435 =item General Issues with Perl on BeOS
7436
7437 =item BeOS Release-specific Notes
7438
7439 R4 x86, R4 PPC
7440
7441 =item Contact Information
7442
7443 =item Update 2002-05-30
7444
7445 =back
7446
7447 =back
7448
7449 =head2 perlbs2000, README.BS2000 - building and installing Perl for BS2000.
7450
7451 =over 4
7452
7453 =item SYNOPSIS
7454
7455 =item DESCRIPTION
7456
7457 =over 4
7458
7459 =item gzip on BS2000
7460
7461 =item bison on BS2000
7462
7463 =item Unpacking Perl Distribution on BS2000
7464
7465 =item Compiling Perl on BS2000
7466
7467 =item Testing Perl on BS2000
7468
7469 =item Installing Perl on BS2000
7470
7471 =item Using Perl in the Posix-Shell of BS2000
7472
7473 =item Using Perl in "native" BS2000
7474
7475 =item Floating point anomalies on BS2000
7476
7477 =item Using PerlIO and different encodings on ASCII and EBCDIC partitions
7478
7479 =back
7480
7481 =item AUTHORS
7482
7483 =item SEE ALSO
7484
7485 =over 4
7486
7487 =item Mailing list
7488
7489 =back
7490
7491 =item HISTORY
7492
7493 =back
7494
7495 =over 4
7496
7497 =item Name
7498
7499 =item Description
7500
7501 =item Build
7502
7503 =over 4
7504
7505 =item Tools & SDK
7506
7507 Microsoft Embedded Visual Tools, Microsoft Visual C++, Rainer Keuchel's
7508 celib-sources, Rainer Keuchel's console-sources
7509
7510 =item Make
7511
7512 go to ./wince subdirectory, edit file compile.bat, run    compile.bat, run 
7513   compile.bat dist
7514
7515 =back
7516
7517 =item Acknowledgements
7518
7519 =item AUTHORS
7520
7521 =back
7522
7523 =head2 perlcygwin, README.cygwin - Perl for Cygwin
7524
7525 =over 4
7526
7527 =item SYNOPSIS
7528
7529 =item PREREQUISITES FOR COMPILING PERL ON CYGWIN
7530
7531 =over 4
7532
7533 =item Cygwin = GNU+Cygnus+Windows (Don't leave UNIX without it)
7534
7535 =item Cygwin Configuration
7536
7537 C<PATH>, I<nroff>, Permissions
7538
7539 =back
7540
7541 =item CONFIGURE PERL ON CYGWIN
7542
7543 =over 4
7544
7545 =item Stripping Perl Binaries on Cygwin
7546
7547 =item Optional Libraries for Perl on Cygwin
7548
7549 C<-lcrypt>, C<-lgdbm> (C<use GDBM_File>), C<-ldb> (C<use DB_File>),
7550 C<-lcygipc> (C<use IPC::SysV>), C<-lutil>
7551
7552 =item Configure-time Options for Perl on Cygwin
7553
7554 C<-Uusedl>, C<-Uusemymalloc>, C<-Uuseperlio>, C<-Dusemultiplicity>,
7555 C<-Duse64bitint>, C<-Duselongdouble>, C<-Dusethreads>, C<-Duselargefiles>,
7556 C<-Dmksymlinks>
7557
7558 =item Suspicious Warnings on Cygwin
7559
7560 I<dlsym()>, Win9x and C<d_eofnblk>, Compiler/Preprocessor defines
7561
7562 =back
7563
7564 =item MAKE ON CYGWIN
7565
7566 =over 4
7567
7568 =item Errors on Cygwin
7569
7570 =item ld2 on Cygwin
7571
7572 =back
7573
7574 =item TEST ON CYGWIN
7575
7576 =over 4
7577
7578 =item File Permissions on Cygwin
7579
7580 =item NDBM_File and ODBM_File do not work on FAT filesystems
7581
7582 =item C<fork()> failures in io_* tests
7583
7584 =item Script Portability on Cygwin
7585
7586 Pathnames, Text/Binary, PerlIO, F<.exe>, C<chown()>, Miscellaneous
7587
7588 =back
7589
7590 =item INSTALL PERL ON CYGWIN
7591
7592 =item MANIFEST ON CYGWIN
7593
7594 Documentation, Build, Configure, Make, Install, Tests, Compiled Perl
7595 Source, Compiled Module Source, Perl Modules/Scripts
7596
7597 =item BUGS ON CYGWIN
7598
7599 =item AUTHORS
7600
7601 =item HISTORY
7602
7603 =back
7604
7605 =head2 perldgux - Perl under DG/UX.
7606
7607 =over 4
7608
7609 =item SYNOPSIS
7610
7611 =back
7612
7613 =over 4
7614
7615 =item DESCRIPTION
7616
7617 =item BUILDING PERL ON DG/UX
7618
7619 =over 4
7620
7621 =item Non-threaded Perl on DG/UX
7622
7623 =item Threaded Perl on DG/UX
7624
7625 =item Testing Perl on DG/UX
7626
7627 =item Installing the built perl on DG/UX
7628
7629 =back
7630
7631 =item AUTHOR
7632
7633 =item SEE ALSO
7634
7635 =back
7636
7637 =head2 perldos - Perl under DOS, W31, W95.
7638
7639 =over 4
7640
7641 =item SYNOPSIS
7642
7643 =item DESCRIPTION
7644
7645 =over 4
7646
7647 =item Prerequisites for Compiling Perl on DOS
7648
7649 DJGPP, Pthreads
7650
7651 =item Shortcomings of Perl under DOS
7652
7653 =item Building Perl on DOS
7654
7655 =item Testing Perl on DOS
7656
7657 =item Installation of Perl on DOS
7658
7659 =back
7660
7661 =item BUILDING AND INSTALLING MODULES ON DOS
7662
7663 =over 4
7664
7665 =item Building Prerequisites for Perl on DOS
7666
7667 =item Unpacking CPAN Modules on DOS
7668
7669 =item Building Non-XS Modules on DOS
7670
7671 =item Building XS Modules on DOS
7672
7673 =back
7674
7675 =item AUTHOR
7676
7677 =item SEE ALSO
7678
7679 =back
7680
7681 =head2 perlepoc, README.epoc - Perl for EPOC
7682
7683 =over 4
7684
7685 =item SYNOPSIS
7686
7687 =item INTRODUCTION
7688
7689 =item INSTALLING PERL ON EPOC
7690
7691 =item STARTING PERL ON EPOC
7692
7693 =over 4
7694
7695 =item Editors on Epoc
7696
7697 =item Features of Perl on Epoc
7698
7699 =item Restrictions of Perl on Epoc
7700
7701 =item Compiling Perl 5 on the EPOC cross compiling environment
7702
7703 =back
7704
7705 =item SUPPORT STATUS OF PERL ON EPOC
7706
7707 =item AUTHOR
7708
7709 =item LAST UPDATE
7710
7711 =back
7712
7713 =head2 perlfreebsd, README.freebsd - Perl version 5 on FreeBSD systems
7714
7715 =over 4
7716
7717 =item DESCRIPTION
7718
7719 =over 4
7720
7721 =item FreeBSD core dumps from readdir_r with ithreads
7722
7723 =item $^X doesn't always contain a full path in FreeBSD
7724
7725 =item Perl will no longer be part of "base FreeBSD"
7726
7727 =back
7728
7729 =item AUTHOR
7730
7731 =back
7732
7733 =head2 perlhpux, README.hpux - Perl version 5 on Hewlett-Packard Unix
7734 (HP-UX) systems
7735
7736 =over 4
7737
7738 =item DESCRIPTION
7739
7740 =over 4
7741
7742 =item Using perl as shipped with HP-UX
7743
7744 =item Using perl from HP's porting centre
7745
7746 =item Compiling Perl 5 on HP-UX
7747
7748 =item PA-RISC
7749
7750 =item PA-RISC 1.0
7751
7752 =item PA-RISC 1.1
7753
7754 =item PA-RISC 2.0
7755
7756 =item Itanium
7757
7758 =item Portability Between PA-RISC Versions
7759
7760 =item Itanium Processor Family and HP-UX
7761
7762 =item Building Dynamic Extensions on HP-UX
7763
7764 =item The HP ANSI C Compiler
7765
7766 =item The GNU C Compiler
7767
7768 =item Using Large Files with Perl on HP-UX
7769
7770 =item Threaded Perl on HP-UX
7771
7772 =item 64-bit Perl on HP-UX
7773
7774 =item Oracle on HP-UX
7775
7776 =item GDBM and Threads on HP-UX
7777
7778 =item NFS filesystems and utime(2) on HP-UX
7779
7780 =item perl -P and // and HP-UX
7781
7782 =item HP-UX Kernel Parameters (maxdsiz) for Compiling Perl
7783
7784 =back
7785
7786 =item nss_delete core dump from op/pwent or op/grent
7787
7788 =item AUTHOR
7789
7790 =item DATE
7791
7792 =back
7793
7794 =head2 perlhurd, README.hurd - Perl version 5 on Hurd
7795
7796 =over 4
7797
7798 =item DESCRIPTION
7799
7800 =over 4
7801
7802 =item Known Problems with Perl on Hurd 
7803
7804 =back
7805
7806 =item AUTHOR
7807
7808 =back
7809
7810 =head2 perlirix, README.irix - Perl version 5 on Irix systems
7811
7812 =over 4
7813
7814 =item DESCRIPTION
7815
7816 =over 4
7817
7818 =item Building 32-bit Perl in Irix
7819
7820 =item Building 64-bit Perl in Irix
7821
7822 =item About Compiler Versions of Irix
7823
7824 =item Linker Problems in Irix
7825
7826 =item Malloc in Irix
7827
7828 =item Building with threads in Irix
7829
7830 =item Irix 5.3
7831
7832 =back
7833
7834 =item AUTHOR
7835
7836 =back
7837
7838 =head2 perlmachten, README.machten - Perl version 5 on Power MachTen
7839 systems
7840
7841 =over 4
7842
7843 =item DESCRIPTION
7844
7845 =over 4
7846
7847 =item Compiling Perl 5 on MachTen
7848
7849 =item Failures during C<make test> on MachTen
7850
7851 op/lexassign.t, pragma/warnings.t
7852
7853 =item Building external modules on MachTen
7854
7855 =back
7856
7857 =item AUTHOR
7858
7859 =item DATE
7860
7861 =back
7862
7863 =head2 perlmacos, README.macos - Perl under Mac OS (Classic)
7864
7865 =over 4
7866
7867 =item SYNOPSIS
7868
7869 =item DESCRIPTION
7870
7871 =item AUTHOR
7872
7873 =item DATE
7874
7875 =back
7876
7877 =head2 perlmacosx, README.macosx - Perl under Mac OS X
7878
7879 =over 4
7880
7881 =item SYNOPSIS
7882
7883 =item DESCRIPTION
7884
7885 =over 4
7886
7887 =item Installation Prefix
7888
7889 =item libperl and Prebinding
7890
7891 =item Updating Panther
7892
7893 =item Known problems
7894
7895 =item MacPerl
7896
7897 =item Carbon
7898
7899 =item Cocoa
7900
7901 =back
7902
7903 =item Starting From Scratch
7904
7905 =item AUTHOR
7906
7907 =item DATE
7908
7909 =back
7910
7911 =head2 perlmint, README.mint - Perl version 5 on Atari MiNT
7912
7913 =over 4
7914
7915 =item DESCRIPTION
7916
7917 =item Known problems with Perl on MiNT
7918
7919 =item AUTHOR
7920
7921 =back
7922
7923 =head2 perlmpeix, README.mpeix - Perl/iX for HP e3000 MPE
7924
7925 =over 4
7926
7927 =item SYNOPSIS
7928
7929 =item NOTE
7930
7931 =item Binary distribution from HP
7932
7933 =item What's New in Perl for MPE/iX
7934
7935 =item Welcome to Perl/iX
7936
7937 =item System Requirements for Perl/iX
7938
7939 =item How to Obtain Perl/iX
7940
7941 =item Perl/iX Distribution Contents Highlights
7942
7943 README, INSTALL, LIBSHP3K, PERL, .cpan/, lib/, man/,
7944 public_html/feedback.cgi, src/perl-5.6.0-mpe
7945
7946 =item How to Compile Perl/iX
7947
7948  4,  6
7949
7950 =item Getting Started with Perl/iX
7951
7952 =item MPE/iX Implementation Considerations
7953
7954 =item Known Perl/iX Bugs Under Investigation
7955
7956 =item Perl/iX To-Do List
7957
7958 =item Perl/iX Change History
7959
7960 =item AUTHOR
7961
7962 =item Name
7963
7964 =item Description
7965
7966 =item Build
7967
7968 =over 4
7969
7970 =item Tools & SDK
7971
7972 =item Setup
7973
7974 SetNWBld.bat, Buildtype.bat
7975
7976 =item Make
7977
7978 =item Interpreter
7979
7980 =item Extensions
7981
7982 =back
7983
7984 =item Install
7985
7986 =item Build new extensions
7987
7988 =item Acknowledgements
7989
7990 =item Authors
7991
7992 =item Date
7993
7994 =back
7995
7996 =head2 perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
7997
7998 =over 4
7999
8000 =item SYNOPSIS
8001
8002 =back
8003
8004 =over 4
8005
8006 =item DESCRIPTION
8007
8008 =over 4
8009
8010 =item Target
8011
8012 =item Other OSes
8013
8014 =item Prerequisites
8015
8016 EMX, RSX, HPFS, pdksh
8017
8018 =item Starting Perl programs under OS/2 (and DOS and...)
8019
8020 =item Starting OS/2 (and DOS) programs under Perl
8021
8022 =back
8023
8024 =item Frequently asked questions
8025
8026 =over 4
8027
8028 =item "It does not work"
8029
8030 =item I cannot run external programs
8031
8032 =item I cannot embed perl into my program, or use F<perl.dll> from my
8033 program. 
8034
8035 Is your program EMX-compiled with C<-Zmt -Zcrtdll>?, Did you use
8036 L<ExtUtils::Embed>?
8037
8038 =item C<``> and pipe-C<open> do not work under DOS.
8039
8040 =item Cannot start C<find.exe "pattern" file>
8041
8042 =back
8043
8044 =item INSTALLATION
8045
8046 =over 4
8047
8048 =item Automatic binary installation
8049
8050 C<PERL_BADLANG>, C<PERL_BADFREE>, F<Config.pm>
8051
8052 =item Manual binary installation
8053
8054 Perl VIO and PM executables (dynamically linked), Perl_ VIO executable
8055 (statically linked), Executables for Perl utilities, Main Perl library,
8056 Additional Perl modules, Tools to compile Perl modules, Manpages for Perl
8057 and utilities, Manpages for Perl modules, Source for Perl documentation,
8058 Perl manual in F<.INF> format, Pdksh
8059
8060 =item B<Warning>
8061
8062 =back
8063
8064 =item Accessing documentation
8065
8066 =over 4
8067
8068 =item OS/2 F<.INF> file
8069
8070 =item Plain text
8071
8072 =item Manpages
8073
8074 =item HTML
8075
8076 =item GNU C<info> files
8077
8078 =item F<PDF> files
8079
8080 =item C<LaTeX> docs
8081
8082 =back
8083
8084 =item BUILD
8085
8086 =over 4
8087
8088 =item The short story
8089
8090 =item Prerequisites
8091
8092 =item Getting perl source
8093
8094 =item Application of the patches
8095
8096 =item Hand-editing
8097
8098 =item Making
8099
8100 =item Testing
8101
8102 A lot of C<bad free>, Process terminated by SIGTERM/SIGINT, F<op/fs.t>,
8103 F<op/stat.t>
8104
8105 =item Installing the built perl
8106
8107 =item C<a.out>-style build
8108
8109 =back
8110
8111 =item Build FAQ
8112
8113 =over 4
8114
8115 =item Some C</> became C<\> in pdksh.
8116
8117 =item C<'errno'> - unresolved external
8118
8119 =item Problems with tr or sed
8120
8121 =item Some problem (forget which ;-)
8122
8123 =item Library ... not found
8124
8125 =item Segfault in make
8126
8127 =item op/sprintf test failure
8128
8129 =back
8130
8131 =item Specific (mis)features of OS/2 port
8132
8133 =over 4
8134
8135 =item C<setpriority>, C<getpriority>
8136
8137 =item C<system()>
8138
8139 =item C<extproc> on the first line
8140
8141 =item Additional modules:
8142
8143 =item Prebuilt methods:
8144
8145 C<File::Copy::syscopy>, C<DynaLoader::mod2fname>,  C<Cwd::current_drive()>,
8146  C<Cwd::sys_chdir(name)>,  C<Cwd::change_drive(name)>, 
8147 C<Cwd::sys_is_absolute(name)>,  C<Cwd::sys_is_rooted(name)>, 
8148 C<Cwd::sys_is_relative(name)>,  C<Cwd::sys_cwd(name)>, 
8149 C<Cwd::sys_abspath(name, dir)>,  C<Cwd::extLibpath([type])>, 
8150 C<Cwd::extLibpath_set( path [, type ] )>,
8151 C<OS2::Error(do_harderror,do_exception)>, C<OS2::Errors2Drive(drive)>,
8152 OS2::SysInfo(), OS2::BootDrive(), C<OS2::MorphPM(serve)>,
8153 C<OS2::UnMorphPM(serve)>, C<OS2::Serve_Messages(force)>,
8154 C<OS2::Process_Messages(force [, cnt])>, C<OS2::_control87(new,mask)>,
8155 OS2::get_control87(), C<OS2::set_control87_em(new=MCW_EM,mask=MCW_EM)>,
8156 C<OS2::DLLname([how [, \&xsub]])>
8157
8158 =item Prebuilt variables:
8159
8160 $OS2::emx_rev, $OS2::emx_env, $OS2::os_ver, $OS2::is_aout, $OS2::can_fork,
8161 $OS2::nsyserror
8162
8163 =item Misfeatures
8164
8165 =item Modifications
8166
8167 C<popen>, C<tmpnam>, C<tmpfile>, C<ctermid>, C<stat>, C<mkdir>, C<rmdir>,
8168 C<flock>
8169
8170 =item Identifying DLLs
8171
8172 =item Centralized management of resources
8173
8174 C<HAB>, C<HMQ>, Treating errors reported by OS/2 API,
8175 C<CheckOSError(expr)>, C<CheckWinError(expr)>, C<SaveWinError(expr)>,
8176 C<SaveCroakWinError(expr,die,name1,name2)>, C<WinError_2_Perl_rc>,
8177 C<FillWinError>, C<FillOSError(rc)>, Loading DLLs and ordinals in DLLs
8178
8179 =back
8180
8181 =item Perl flavors
8182
8183 =over 4
8184
8185 =item F<perl.exe>
8186
8187 =item F<perl_.exe>
8188
8189 =item F<perl__.exe>
8190
8191 =item F<perl___.exe>
8192
8193 =item Why strange names?
8194
8195 =item Why dynamic linking?
8196
8197 =item Why chimera build?
8198
8199 =back
8200
8201 =item ENVIRONMENT
8202
8203 =over 4
8204
8205 =item C<PERLLIB_PREFIX>
8206
8207 =item C<PERL_BADLANG>
8208
8209 =item C<PERL_BADFREE>
8210
8211 =item C<PERL_SH_DIR>
8212
8213 =item C<USE_PERL_FLOCK>
8214
8215 =item C<TMP> or C<TEMP>
8216
8217 =back
8218
8219 =item Evolution
8220
8221 =over 4
8222
8223 =item Text-mode filehandles
8224
8225 =item Priorities
8226
8227 =item DLL name mangling: pre 5.6.2
8228
8229 =item DLL name mangling: 5.6.2 and beyond
8230
8231 Global DLLs, specific DLLs, C<BEGINLIBPATH> and C<ENDLIBPATH>, F<.> from
8232 C<LIBPATH>
8233
8234 =item DLL forwarder generation
8235
8236 =item Threading
8237
8238 =item Calls to external programs
8239
8240 =item Memory allocation
8241
8242 =item Threads
8243
8244 C<COND_WAIT>, F<os2.c>
8245
8246 =back
8247
8248 =item BUGS
8249
8250 =back
8251
8252 =over 4
8253
8254 =item AUTHOR
8255
8256 =item SEE ALSO
8257
8258 =back
8259
8260 =head2 perlos390, README.os390 - building and installing Perl for OS/390
8261 and z/OS
8262
8263 =over 4
8264
8265 =item SYNOPSIS
8266
8267 =item DESCRIPTION
8268
8269 =over 4
8270
8271 =item Tools
8272
8273 =item Unpacking Perl distribution on OS/390
8274
8275 =item Setup and utilities for Perl on OS/390
8276
8277 =item Configure Perl on OS/390
8278
8279 =item Build, Test, Install Perl on OS/390
8280
8281 =item Build Anomalies with Perl on OS/390
8282
8283 =item Testing Anomalies with Perl on OS/390
8284
8285 =item Installation Anomalies with Perl on OS/390
8286
8287 =item Usage Hints for Perl on OS/390
8288
8289 =item Floating Point Anomalies with Perl on OS/390
8290
8291 =item Modules and Extensions for Perl on OS/390
8292
8293 =back
8294
8295 =item AUTHORS
8296
8297 =item SEE ALSO
8298
8299 =over 4
8300
8301 =item Mailing list for Perl on OS/390
8302
8303 =back
8304
8305 =item HISTORY
8306
8307 =back
8308
8309 =head2 perlos400, README.os400 - Perl version 5 on OS/400
8310
8311 =over 4
8312
8313 =item DESCRIPTION
8314
8315 =over 4
8316
8317 =item Compiling Perl for OS/400 PASE
8318
8319 =item Installing Perl in OS/400 PASE
8320
8321 =item Using Perl in OS/400 PASE
8322
8323 =item Known Problems
8324
8325 =item Perl on ILE
8326
8327 =back
8328
8329 =item AUTHORS
8330
8331 =back
8332
8333 =head2 perlplan9 - Plan 9-specific documentation for Perl
8334
8335 =over 4
8336
8337 =item DESCRIPTION
8338
8339 =over 4
8340
8341 =item Invoking Perl
8342
8343 =item What's in Plan 9 Perl
8344
8345 =item What's not in Plan 9 Perl
8346
8347 =item Perl5 Functions not currently supported in Plan 9 Perl
8348
8349 =item Signals in Plan 9 Perl
8350
8351 =back
8352
8353 =item COMPILING AND INSTALLING PERL ON PLAN 9
8354
8355 =over 4
8356
8357 =item Installing Perl Documentation on Plan 9
8358
8359 =back
8360
8361 =item BUGS
8362
8363 =item Revision date
8364
8365 =item AUTHOR
8366
8367 =back
8368
8369 =head2 perlqnx, README.qnx - Perl version 5 on QNX
8370
8371 =over 4
8372
8373 =item DESCRIPTION
8374
8375 =over 4
8376
8377 =item Required Software for Compiling Perl on QNX4
8378
8379 /bin/sh, ar, nm, cpp, make
8380
8381 =item Outstanding Issues with Perl on QNX4
8382
8383 =item QNX auxiliary files
8384
8385 qnx/ar, qnx/cpp
8386
8387 =item Outstanding issues with perl under QNX6
8388
8389 =back
8390
8391 =item AUTHOR
8392
8393 =back
8394
8395 =head2 perlsolaris, README.solaris - Perl version 5 on Solaris systems
8396
8397 =over 4
8398
8399 =item DESCRIPTION
8400
8401 =over 4
8402
8403 =item Solaris Version Numbers.
8404
8405 =back
8406
8407 =item RESOURCES
8408
8409 Solaris FAQ, Precompiled Binaries, Solaris Documentation
8410
8411 =item SETTING UP
8412
8413 =over 4
8414
8415 =item File Extraction Problems on Solaris.
8416
8417 =item Compiler and Related Tools on Solaris.
8418
8419 =item Environment for Compiling perl on Solaris
8420
8421 =back
8422
8423 =item RUN CONFIGURE.
8424
8425 =over 4
8426
8427 =item 64-bit perl on Solaris.
8428
8429 =item Threads in perl on Solaris.
8430
8431 =item Malloc Issues with perl on Solaris.
8432
8433 =back
8434
8435 =item MAKE PROBLEMS.
8436
8437 Dynamic Loading Problems With GNU as and GNU ld, ld.so.1: ./perl: fatal:
8438 relocation error:, dlopen: stub interception failed, #error "No
8439 DATAMODEL_NATIVE specified", sh: ar: not found
8440
8441 =item MAKE TEST
8442
8443 =over 4
8444
8445 =item op/stat.t test 4 in Solaris
8446
8447 =item nss_delete core dump from op/pwent or op/grent
8448
8449 =back
8450
8451 =item PREBUILT BINARIES OF PERL FOR SOLARIS.
8452
8453 =item RUNTIME ISSUES FOR PERL ON SOLARIS.
8454
8455 =over 4
8456
8457 =item Limits on Numbers of Open Files on Solaris.
8458
8459 =back
8460
8461 =item SOLARIS-SPECIFIC MODULES.
8462
8463 =item SOLARIS-SPECIFIC PROBLEMS WITH MODULES.
8464
8465 =over 4
8466
8467 =item Proc::ProcessTable on Solaris
8468
8469 =item BSD::Resource on Solaris
8470
8471 =item Net::SSLeay on Solaris
8472
8473 =back
8474
8475 =item SunOS 4.x
8476
8477 =item AUTHOR
8478
8479 =item LAST MODIFIED
8480
8481 =back
8482
8483 =head2 perltru64, README.tru64 - Perl version 5 on Tru64 (formerly known as
8484 Digital UNIX formerly known as DEC OSF/1) systems
8485
8486 =over 4
8487
8488 =item DESCRIPTION
8489
8490 =over 4
8491
8492 =item Compiling Perl 5 on Tru64
8493
8494 =item Using Large Files with Perl on Tru64
8495
8496 =item Threaded Perl on Tru64
8497
8498 =item Long Doubles on Tru64
8499
8500 =item DB_File tests failing on Tru64
8501
8502 =item 64-bit Perl on Tru64
8503
8504 =item Warnings about floating-point overflow when compiling Perl on Tru64
8505
8506 =back
8507
8508 =item Testing Perl on Tru64
8509
8510 =item ext/ODBM_File/odbm Test Failing With Static Builds
8511
8512 =item Perl Fails Because Of Unresolved Symbol sockatmark
8513
8514 =item AUTHOR
8515
8516 =back
8517
8518 =head2 perluts - Perl under UTS
8519
8520 =over 4
8521
8522 =item SYNOPSIS
8523
8524 =item DESCRIPTION
8525
8526 =item BUILDING PERL ON UTS
8527
8528 =item Installing the built perl on UTS
8529
8530 =item AUTHOR
8531
8532 =back
8533
8534 =head2 perlvmesa, README.vmesa - building and installing Perl for VM/ESA.
8535
8536 =over 4
8537
8538 =item SYNOPSIS
8539
8540 =item DESCRIPTION
8541
8542 =over 4
8543
8544 =item Unpacking Perl Distribution on VM/ESA
8545
8546 =item Setup Perl and utilities on VM/ESA
8547
8548 =item Configure Perl on VM/ESA
8549
8550 =item Testing Anomalies of Perl on VM/ESA
8551
8552 =item Usage Hints for Perl on VM/ESA
8553
8554 =back
8555
8556 =item AUTHORS
8557
8558 =item SEE ALSO
8559
8560 =over 4
8561
8562 =item Mailing list for Perl on VM/ESA
8563
8564 =back
8565
8566 =back
8567
8568 =head2 perlvms - VMS-specific documentation for Perl
8569
8570 =over 4
8571
8572 =item DESCRIPTION
8573
8574 =item Installation
8575
8576 =item Organization of Perl Images
8577
8578 =over 4
8579
8580 =item Core Images
8581
8582 =item Perl Extensions
8583
8584 =item Installing static extensions
8585
8586 =item Installing dynamic extensions
8587
8588 =back
8589
8590 =item File specifications
8591
8592 =over 4
8593
8594 =item Syntax
8595
8596 =item Wildcard expansion
8597
8598 =item Pipes
8599
8600 =back
8601
8602 =item PERL5LIB and PERLLIB
8603
8604 =item Command line
8605
8606 =over 4
8607
8608 =item I/O redirection and backgrounding
8609
8610 =item Command line switches
8611
8612 -i, -S, -u
8613
8614 =back
8615
8616 =item Perl functions
8617
8618 File tests, backticks, binmode FILEHANDLE, crypt PLAINTEXT, USER, dump,
8619 exec LIST, fork, getpwent, getpwnam, getpwuid, gmtime, kill, qx//, select
8620 (system call), stat EXPR, system LIST, time, times, unlink LIST, utime
8621 LIST, waitpid PID,FLAGS
8622
8623 =item Perl variables
8624
8625 %ENV, CRTL_ENV, CLISYM_[LOCAL], Any other string, $!, $^E, $?, $|
8626
8627 =item Standard modules with VMS-specific differences
8628
8629 =over 4
8630
8631 =item SDBM_File
8632
8633 =back
8634
8635 =item Revision date
8636
8637 =item AUTHOR
8638
8639 =back
8640
8641 =head2 perlvos, README.vos - Perl for Stratus VOS
8642
8643 =over 4
8644
8645 =item SYNOPSIS
8646
8647 =item BUILDING PERL FOR VOS
8648
8649 =item INSTALLING PERL IN VOS
8650
8651 =item USING PERL IN VOS
8652
8653 =over 4
8654
8655 =item Restrictions of Perl on VOS
8656
8657 =item Handling of underflow and overflow
8658
8659 =back
8660
8661 =item TEST STATUS
8662
8663 =item SUPPORT STATUS
8664
8665 =item AUTHOR
8666
8667 =item LAST UPDATE
8668
8669 =back
8670
8671 =head2 perlwin32 - Perl under Windows
8672
8673 =over 4
8674
8675 =item SYNOPSIS
8676
8677 =item DESCRIPTION
8678
8679 =over 4
8680
8681 =item Setting Up Perl on Win32
8682
8683 Make, Command Shell, Borland C++, Microsoft Visual C++, Microsoft Platform
8684 SDK 64-bit Compiler, MinGW32 with gcc, MinGW release 1
8685
8686 =item Building
8687
8688 =item Testing Perl on Win32
8689
8690 =item Installation of Perl on Win32
8691
8692 =item Usage Hints for Perl on Win32
8693
8694 Environment Variables, File Globbing, Using perl from the command line,
8695 Building Extensions, Command-line Wildcard Expansion, Win32 Specific
8696 Extensions, Notes on 64-bit Windows
8697
8698 =item Running Perl Scripts
8699
8700 Miscellaneous Things
8701
8702 =back
8703
8704 =item BUGS AND CAVEATS
8705
8706 =item AUTHORS
8707
8708 Gary Ng E<lt>71564.1743@CompuServe.COME<gt>, Gurusamy Sarathy
8709 E<lt>gsar@activestate.comE<gt>, Nick Ing-Simmons
8710 E<lt>nick@ing-simmons.netE<gt>
8711
8712 =item SEE ALSO
8713
8714 =item HISTORY
8715
8716 =back
8717
8718 =head1 PRAGMA DOCUMENTATION
8719
8720 =head2 attrs - set/get attributes of a subroutine (deprecated)
8721
8722 =over 4
8723
8724 =item SYNOPSIS
8725
8726 =item DESCRIPTION
8727
8728 method, locked
8729
8730 =back
8731
8732 =head2 re - Perl pragma to alter regular expression behaviour
8733
8734 =over 4
8735
8736 =item SYNOPSIS
8737
8738 =item DESCRIPTION
8739
8740 =back
8741
8742 =head2 threadshared::shared, threads::shared - Perl extension for sharing
8743 data structures between threads
8744
8745 =over 4
8746
8747 =item SYNOPSIS
8748
8749 =item DESCRIPTION
8750
8751 =item EXPORT
8752
8753 =item FUNCTIONS
8754
8755 share VARIABLE, lock VARIABLE, cond_wait VARIABLE, cond_signal VARIABLE,
8756 cond_broadcast VARIABLE
8757
8758 =item NOTES
8759
8760 =item BUGS
8761
8762 =item AUTHOR
8763
8764 =item SEE ALSO
8765
8766 =back
8767
8768 =head2 threads - Perl extension allowing use of interpreter based threads
8769 from perl
8770
8771 =over 4
8772
8773 =item SYNOPSIS
8774
8775 =item DESCRIPTION
8776
8777 $thread = threads->create(function, LIST), $thread->join, $thread->detach,
8778 threads->self, $thread->tid, threads->object( tid ), threads->yield();,
8779 threads->list();, async BLOCK;
8780
8781 =item WARNINGS
8782
8783 A thread exited while %d other threads were still running
8784
8785 =item TODO
8786
8787 =item BUGS
8788
8789 Parent-Child threads, Returning objects, Creating threads inside BEGIN
8790 blocks, PERL_OLD_SIGNALS are not threadsafe, will not be
8791
8792 =item AUTHOR and COPYRIGHT
8793
8794 =item SEE ALSO
8795
8796 =back
8797
8798 =head2 assertions - select assertions in blocks of code
8799
8800 =over 4
8801
8802 =item SYNOPSIS
8803
8804 =item DESCRIPTION
8805
8806 =item SEE ALSO
8807
8808 =item AUTHOR
8809
8810 =item COPYRIGHT AND LICENSE
8811
8812 =back
8813
8814 =head2 assertions::activate - activate assertions
8815
8816 =over 4
8817
8818 =item SYNOPSIS
8819
8820 =item DESCRIPTION
8821
8822 =item SEE ALSO
8823
8824 =item AUTHOR
8825
8826 =item COPYRIGHT AND LICENSE
8827
8828 =back
8829
8830 =head2 attributes - get/set subroutine or variable attributes
8831
8832 =over 4
8833
8834 =item SYNOPSIS
8835
8836 =item DESCRIPTION
8837
8838 =over 4
8839
8840 =item Built-in Attributes
8841
8842 locked, method, lvalue
8843
8844 =item Available Subroutines
8845
8846 get, reftype
8847
8848 =item Package-specific Attribute Handling
8849
8850 FETCH_I<type>_ATTRIBUTES, MODIFY_I<type>_ATTRIBUTES
8851
8852 =item Syntax of Attribute Lists
8853
8854 =back
8855
8856 =item EXPORTS
8857
8858 =over 4
8859
8860 =item Default exports
8861
8862 =item Available exports
8863
8864 =item Export tags defined
8865
8866 =back
8867
8868 =item EXAMPLES
8869
8870 =item SEE ALSO
8871
8872 =back
8873
8874 =head2 autouse - postpone load of modules until a function is used
8875
8876 =over 4
8877
8878 =item SYNOPSIS
8879
8880 =item DESCRIPTION
8881
8882 =item WARNING
8883
8884 =item AUTHOR
8885
8886 =item SEE ALSO
8887
8888 =back
8889
8890 =head2 base - Establish IS-A relationship with base class at compile time
8891
8892 =over 4
8893
8894 =item SYNOPSIS
8895
8896 =item DESCRIPTION
8897
8898 =item HISTORY
8899
8900 =item CAVEATS
8901
8902 =item SEE ALSO
8903
8904 =back
8905
8906 =head2 bigint - Transparent BigInteger support for Perl
8907
8908 =over 4
8909
8910 =item SYNOPSIS
8911
8912 =item DESCRIPTION
8913
8914 =over 4
8915
8916 =item OPTIONS
8917
8918 a or accuracy, p or precision, t or trace, l or lib, v or version
8919
8920 =item MATH LIBRARY
8921
8922 =item INTERNAL FORMAT
8923
8924 =item SIGN
8925
8926 =item METHODS
8927
8928 =item CAVEAT
8929
8930 =back
8931
8932 =item MODULES USED
8933
8934 =item EXAMPLES
8935
8936 =item LICENSE
8937
8938 =item SEE ALSO
8939
8940 =item AUTHORS
8941
8942 =back
8943
8944 =head2 bignum - Transparent BigNumber support for Perl
8945
8946 =over 4
8947
8948 =item SYNOPSIS
8949
8950 =item DESCRIPTION
8951
8952 =over 4
8953
8954 =item OPTIONS
8955
8956 a or accuracy, p or precision, t or trace, l or lib, v or version
8957
8958 =item METHODS
8959
8960 =item CAVEAT
8961
8962 inf(), NaN(), upgrade()
8963
8964 =item MATH LIBRARY
8965
8966 =item INTERNAL FORMAT
8967
8968 =item SIGN
8969
8970 =back
8971
8972 =item MODULES USED
8973
8974 =item EXAMPLES
8975
8976 =item LICENSE
8977
8978 =item SEE ALSO
8979
8980 =item AUTHORS
8981
8982 =back
8983
8984 =head2 bigrat - Transparent BigNumber/BigRational support for Perl
8985
8986 =over 4
8987
8988 =item SYNOPSIS
8989
8990 =item DESCRIPTION
8991
8992 =over 4
8993
8994 =item MODULES USED
8995
8996 =item MATH LIBRARY
8997
8998 =item SIGN
8999
9000 =item METHODS
9001
9002 =item CAVEAT
9003
9004 =back
9005
9006 =item EXAMPLES
9007
9008         perl -Mbigrat -le 'print sqrt(33)'
9009         perl -Mbigrat -le 'print 2*255'
9010         perl -Mbigrat -le 'print 4.5+2*255'
9011         perl -Mbigrat -le 'print 3/7 + 5/7 + 8/3'       
9012         perl -Mbigrat -le 'print 12->is_odd()';
9013
9014 =item LICENSE
9015
9016 =item SEE ALSO
9017
9018 =item AUTHORS
9019
9020 =back
9021
9022 =head2 blib - Use MakeMaker's uninstalled version of a package
9023
9024 =over 4
9025
9026 =item SYNOPSIS
9027
9028 =item DESCRIPTION
9029
9030 =item BUGS
9031
9032 =item AUTHOR
9033
9034 =back
9035
9036 =head2 bytes - Perl pragma to force byte semantics rather than character
9037 semantics
9038
9039 =over 4
9040
9041 =item SYNOPSIS
9042
9043 =item DESCRIPTION
9044
9045 =item LIMITATIONS
9046
9047 =item SEE ALSO
9048
9049 =back
9050
9051 =head2 charnames - define character names for C<\N{named}> string literal
9052 escapes
9053
9054 =over 4
9055
9056 =item SYNOPSIS
9057
9058 =item DESCRIPTION
9059
9060 =item CUSTOM TRANSLATORS
9061
9062 =item CUSTOM ALIASES
9063
9064 =over 4
9065
9066 =item Anonymous hashes
9067
9068 =item Alias file
9069
9070 =item Alias shortcut
9071
9072 =back
9073
9074 =item charnames::viacode(code)
9075
9076 =item charnames::vianame(name)
9077
9078 =item ALIASES
9079
9080 =item ILLEGAL CHARACTERS
9081
9082 =item BUGS
9083
9084 =back
9085
9086 =head2 constant - Perl pragma to declare constants
9087
9088 =over 4
9089
9090 =item SYNOPSIS
9091
9092 =item DESCRIPTION
9093
9094 =item NOTES
9095
9096 =over 4
9097
9098 =item List constants
9099
9100 =item Defining multiple constants at once
9101
9102 =item Magic constants
9103
9104 =back
9105
9106 =item TECHNICAL NOTES
9107
9108 =item BUGS
9109
9110 =item AUTHOR
9111
9112 =item COPYRIGHT
9113
9114 =back
9115
9116 =head2 diagnostics - Perl compiler pragma to force verbose warning
9117 diagnostics
9118
9119 =over 4
9120
9121 =item SYNOPSIS
9122
9123 =item DESCRIPTION
9124
9125 =over 4
9126
9127 =item The C<diagnostics> Pragma
9128
9129 =item The I<splain> Program
9130
9131 =back
9132
9133 =item EXAMPLES
9134
9135 =item INTERNALS
9136
9137 =item BUGS
9138
9139 =item AUTHOR
9140
9141 =back
9142
9143 =head2 encoding - allows you to write your script in non-ascii or non-utf8
9144
9145 =over 4
9146
9147 =item SYNOPSIS
9148
9149 =item ABSTRACT
9150
9151 =over 4
9152
9153 =item Literal Conversions
9154
9155 =item PerlIO layers for C<STD(IN|OUT)>
9156
9157 =back
9158
9159 =item FEATURES THAT REQUIRE 5.8.1
9160
9161 "NON-EUC" doublebyte encodings, tr//, DATA pseudo-filehandle
9162
9163 =item USAGE
9164
9165 use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
9166 I<ENCNAME_IN> ...] ;, use encoding I<ENCNAME> Filter=E<gt>1;, no encoding;
9167
9168 =item The Filter Option
9169
9170 =over 4
9171
9172 =item Filter-related changes at Encode version 1.87
9173
9174 =back
9175
9176 =item CAVEATS
9177
9178 =over 4
9179
9180 =item NOT SCOPED
9181
9182 =item DO NOT MIX MULTIPLE ENCODINGS
9183
9184 =item tr/// with ranges
9185
9186 Legend of characters above
9187
9188 =back
9189
9190 =item EXAMPLE - Greekperl
9191
9192 =item KNOWN PROBLEMS
9193
9194 literals in regex that are longer than 127 bytes, EBCDIC, format
9195
9196 =item HISTORY
9197
9198 =item SEE ALSO
9199
9200 =back
9201
9202 =head2 fields - compile-time class fields
9203
9204 =over 4
9205
9206 =item SYNOPSIS
9207
9208 =item DESCRIPTION
9209
9210 new, phash
9211
9212 =item SEE ALSO
9213
9214 =back
9215
9216 =head2 filetest - Perl pragma to control the filetest permission operators
9217
9218 =over 4
9219
9220 =item SYNOPSIS
9221
9222 =item DESCRIPTION
9223
9224 =over 4
9225
9226 =item subpragma access
9227
9228 =back
9229
9230 =back
9231
9232 =head2 if - C<use> a Perl module if a condition holds
9233
9234 =over 4
9235
9236 =item SYNOPSIS
9237
9238 =item DESCRIPTION
9239
9240 =item BUGS
9241
9242 =item AUTHOR
9243
9244 =back
9245
9246 =head2 integer - Perl pragma to use integer arithmetic instead of floating
9247 point
9248
9249 =over 4
9250
9251 =item SYNOPSIS
9252
9253 =item DESCRIPTION
9254
9255 =back
9256
9257 =head2 less - perl pragma to request less of something from the compiler
9258
9259 =over 4
9260
9261 =item SYNOPSIS
9262
9263 =item DESCRIPTION
9264
9265 =back
9266
9267 =head2 lib - manipulate @INC at compile time
9268
9269 =over 4
9270
9271 =item SYNOPSIS
9272
9273 =item DESCRIPTION
9274
9275 =over 4
9276
9277 =item Adding directories to @INC
9278
9279 =item Deleting directories from @INC
9280
9281 =item Restoring original @INC
9282
9283 =back
9284
9285 =item CAVEATS
9286
9287 =item NOTES
9288
9289 =item SEE ALSO
9290
9291 =item AUTHOR
9292
9293 =back
9294
9295 =head2 locale - Perl pragma to use and avoid POSIX locales for built-in
9296 operations
9297
9298 =over 4
9299
9300 =item SYNOPSIS
9301
9302 =item DESCRIPTION
9303
9304 =back
9305
9306 =head2 open - perl pragma to set default PerlIO layers for input and output
9307
9308 =over 4
9309
9310 =item SYNOPSIS
9311
9312 =item DESCRIPTION
9313
9314 =item NONPERLIO FUNCTIONALITY
9315
9316 =item IMPLEMENTATION DETAILS
9317
9318 =item SEE ALSO
9319
9320 =back
9321
9322 =head2 ops - Perl pragma to restrict unsafe operations when compiling
9323
9324 =over 4
9325
9326 =item SYNOPSIS  
9327
9328 =item DESCRIPTION
9329
9330 =item SEE ALSO
9331
9332 =back
9333
9334 =head2 overload - Package for overloading perl operations
9335
9336 =over 4
9337
9338 =item SYNOPSIS
9339
9340 =item DESCRIPTION
9341
9342 =over 4
9343
9344 =item Declaration of overloaded functions
9345
9346 =item Calling Conventions for Binary Operations
9347
9348 FALSE, TRUE, C<undef>
9349
9350 =item Calling Conventions for Unary Operations
9351
9352 =item Calling Conventions for Mutators
9353
9354 C<++> and C<-->, C<x=> and other assignment versions
9355
9356 =item Overloadable Operations
9357
9358 I<Arithmetic operations>, I<Comparison operations>, I<Bit operations>,
9359 I<Increment and decrement>, I<Transcendental functions>, I<Boolean, string
9360 and numeric conversion>, I<Iteration>, I<Dereferencing>, I<Special>
9361
9362 =item Inheritance and overloading
9363
9364 Strings as values of C<use overload> directive, Overloading of an operation
9365 is inherited by derived classes
9366
9367 =back
9368
9369 =item SPECIAL SYMBOLS FOR C<use overload>
9370
9371 =over 4
9372
9373 =item Last Resort
9374
9375 =item Fallback
9376
9377 C<undef>, TRUE, defined, but FALSE
9378
9379 =item Copy Constructor
9380
9381 B<Example>
9382
9383 =back
9384
9385 =item MAGIC AUTOGENERATION
9386
9387 I<Assignment forms of arithmetic operations>, I<Conversion operations>,
9388 I<Increment and decrement>, C<abs($a)>, I<Unary minus>, I<Negation>,
9389 I<Concatenation>, I<Comparison operations>, I<Iterator>, I<Dereferencing>,
9390 I<Copy operator>
9391
9392 =item Losing overloading
9393
9394 =item Run-time Overloading
9395
9396 =item Public functions
9397
9398 overload::StrVal(arg), overload::Overloaded(arg), overload::Method(obj,op)
9399
9400 =item Overloading constants
9401
9402 integer, float, binary, q, qr
9403
9404 =item IMPLEMENTATION
9405
9406 =item Metaphor clash
9407
9408 =item Cookbook
9409
9410 =over 4
9411
9412 =item Two-face scalars
9413
9414 =item Two-face references
9415
9416 =item Symbolic calculator
9417
9418 =item I<Really> symbolic calculator
9419
9420 =back
9421
9422 =item AUTHOR
9423
9424 =item DIAGNOSTICS
9425
9426 Odd number of arguments for overload::constant, `%s' is not an overloadable
9427 type, `%s' is not a code reference
9428
9429 =item BUGS
9430
9431 =back
9432
9433 =head2 sigtrap - Perl pragma to enable simple signal handling
9434
9435 =over 4
9436
9437 =item SYNOPSIS
9438
9439 =item DESCRIPTION
9440
9441 =item OPTIONS
9442
9443 =over 4
9444
9445 =item SIGNAL HANDLERS
9446
9447 B<stack-trace>, B<die>, B<handler> I<your-handler>
9448
9449 =item SIGNAL LISTS
9450
9451 B<normal-signals>, B<error-signals>, B<old-interface-signals>
9452
9453 =item OTHER
9454
9455 B<untrapped>, B<any>, I<signal>, I<number>
9456
9457 =back
9458
9459 =item EXAMPLES
9460
9461 =back
9462
9463 =head2 sort - perl pragma to control sort() behaviour
9464
9465 =over 4
9466
9467 =item SYNOPSIS
9468
9469 =item DESCRIPTION
9470
9471 =item CAVEATS
9472
9473 =back
9474
9475 =head2 strict - Perl pragma to restrict unsafe constructs
9476
9477 =over 4
9478
9479 =item SYNOPSIS
9480
9481 =item DESCRIPTION
9482
9483 C<strict refs>, C<strict vars>, C<strict subs>
9484
9485 =item HISTORY
9486
9487 =back
9488
9489 =head2 subs - Perl pragma to predeclare sub names
9490
9491 =over 4
9492
9493 =item SYNOPSIS
9494
9495 =item DESCRIPTION
9496
9497 =back
9498
9499 =head2 threadshared, threads::shared - Perl extension for sharing data
9500 structures between threads
9501
9502 =over 4
9503
9504 =item SYNOPSIS
9505
9506 =item DESCRIPTION
9507
9508 =item EXPORT
9509
9510 =item FUNCTIONS
9511
9512 share VARIABLE, lock VARIABLE, cond_wait VARIABLE, cond_signal VARIABLE,
9513 cond_broadcast VARIABLE
9514
9515 =item NOTES
9516
9517 =item BUGS
9518
9519 =item AUTHOR
9520
9521 =item SEE ALSO
9522
9523 =back
9524
9525 =head2 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source
9526 code
9527
9528 =over 4
9529
9530 =item SYNOPSIS
9531
9532 =item DESCRIPTION
9533
9534 =over 4
9535
9536 =item Utility functions
9537
9538 $num_octets = utf8::upgrade($string), $success = utf8::downgrade($string[,
9539 FAIL_OK]), utf8::encode($string), utf8::decode($string), $flag =
9540 utf8::is_utf8(STRING), $flag = utf8::valid(STRING)
9541
9542 =back
9543
9544 =item BUGS
9545
9546 =item SEE ALSO
9547
9548 =back
9549
9550 =head2 vars - Perl pragma to predeclare global variable names (obsolete)
9551
9552 =over 4
9553
9554 =item SYNOPSIS
9555
9556 =item DESCRIPTION
9557
9558 =back
9559
9560 =head2 version - Perl extension for Version Objects
9561
9562 =over 4
9563
9564 =item SYNOPSIS
9565
9566 =item DESCRIPTION
9567
9568 =over 4
9569
9570 =item What IS a version
9571
9572 Numeric Versions, V-String Versions
9573
9574 =item Numeric Versions
9575
9576 =item V-String Versions
9577
9578 =item Object Methods
9579
9580 New Operator, Stringification, Numification, Comparison operators, Logical
9581 Operators
9582
9583 =item Quoting
9584
9585 =item Types of Versions Objects
9586
9587 Ordinary versions, alpha versions
9588
9589 =item Replacement UNIVERSAL::VERSION
9590
9591 =back
9592
9593 =item EXPORT
9594
9595 =item AUTHOR
9596
9597 =item SEE ALSO
9598
9599 =back
9600
9601 =head2 vmsish - Perl pragma to control VMS-specific language features
9602
9603 =over 4
9604
9605 =item SYNOPSIS
9606
9607 =item DESCRIPTION
9608
9609 C<vmsish status>, C<vmsish exit>, C<vmsish time>, C<vmsish hushed>
9610
9611 =back
9612
9613 =head2 warnings - Perl pragma to control optional warnings
9614
9615 =over 4
9616
9617 =item SYNOPSIS
9618
9619 =item DESCRIPTION
9620
9621 use warnings::register, warnings::enabled(), warnings::enabled($category),
9622 warnings::enabled($object), warnings::warn($message),
9623 warnings::warn($category, $message), warnings::warn($object, $message),
9624 warnings::warnif($message), warnings::warnif($category, $message),
9625 warnings::warnif($object, $message)
9626
9627 =back
9628
9629 =head2 warnings::register - warnings import function
9630
9631 =over 4
9632
9633 =item SYNOPSIS
9634
9635 =item DESCRIPTION
9636
9637 =back
9638
9639 =head1 MODULE DOCUMENTATION
9640
9641 =head2 AnyDBM_File - provide framework for multiple DBMs
9642
9643 =over 4
9644
9645 =item SYNOPSIS
9646
9647 =item DESCRIPTION
9648
9649 =over 4
9650
9651 =item DBM Comparisons
9652
9653 [0], [1], [2], [3]
9654
9655 =back
9656
9657 =item SEE ALSO
9658
9659 =back
9660
9661 =head2 Attribute::Handlers - Simpler definition of attribute handlers
9662
9663 =over 4
9664
9665 =item VERSION
9666
9667 =item SYNOPSIS
9668
9669 =item DESCRIPTION
9670
9671 [0], [1], [2], [3], [4], [5]
9672
9673 =over 4
9674
9675 =item Typed lexicals
9676
9677 =item Type-specific attribute handlers
9678
9679 =item Non-interpretive attribute handlers
9680
9681 =item Phase-specific attribute handlers
9682
9683 =item Attributes as C<tie> interfaces
9684
9685 =back
9686
9687 =item EXAMPLES
9688
9689 =item DIAGNOSTICS
9690
9691 C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
9692 attributes>, C<Declaration of %s attribute in package %s may clash with
9693 future reserved word>, C<Can't have two ATTR specifiers on one subroutine>,
9694 C<Can't autotie a %s>, C<Internal error: %s symbol went missing>, C<Won't
9695 be able to apply END handler>
9696
9697 =item AUTHOR
9698
9699 =item BUGS
9700
9701 =item COPYRIGHT
9702
9703 =back
9704
9705 =head2 AutoLoader - load subroutines only on demand
9706
9707 =over 4
9708
9709 =item SYNOPSIS
9710
9711 =item DESCRIPTION
9712
9713 =over 4
9714
9715 =item Subroutine Stubs
9716
9717 =item Using B<AutoLoader>'s AUTOLOAD Subroutine
9718
9719 =item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
9720
9721 =item Package Lexicals
9722
9723 =item Not Using AutoLoader
9724
9725 =item B<AutoLoader> vs. B<SelfLoader>
9726
9727 =back
9728
9729 =item CAVEATS
9730
9731 =item SEE ALSO
9732
9733 =back
9734
9735 =head2 AutoSplit - split a package for autoloading
9736
9737 =over 4
9738
9739 =item SYNOPSIS
9740
9741 =item DESCRIPTION
9742
9743 $keep, $check, $modtime
9744
9745 =over 4
9746
9747 =item Multiple packages
9748
9749 =back
9750
9751 =item DIAGNOSTICS
9752
9753 =back
9754
9755 =head2 B - The Perl Compiler
9756
9757 =over 4
9758
9759 =item SYNOPSIS
9760
9761 =item DESCRIPTION
9762
9763 =item OVERVIEW
9764
9765 =item Utility Functions
9766
9767 =over 4
9768
9769 =item Functions Returning C<B::SV>, C<B::AV>, C<B::HV>, and C<B::CV>
9770 objects
9771
9772 sv_undef, sv_yes, sv_no, svref_2object(SVREF), amagic_generation, init_av,
9773 check_av, begin_av, end_av, comppadlist, regex_padav, main_cv
9774
9775 =item Functions for Examining the Symbol Table
9776
9777 walksymtable(SYMREF, METHOD, RECURSE, PREFIX)
9778
9779 =item Functions Returning C<B::OP> objects or for walking op trees
9780
9781 main_root, main_start, walkoptree(OP, METHOD), walkoptree_debug(DEBUG)
9782
9783 =item Miscellaneous Utility Functions
9784
9785 ppname(OPNUM), hash(STR), cast_I32(I), minus_c, cstring(STR),
9786 perlstring(STR), class(OBJ), threadsv_names
9787
9788 =back
9789
9790 =item OVERVIEW OF CLASSES
9791
9792 =over 4
9793
9794 =item SV-RELATED CLASSES
9795
9796 =item B::SV Methods
9797
9798 REFCNT, FLAGS, object_2svref
9799
9800 =item B::IV Methods
9801
9802 IV, IVX, UVX, int_value, needs64bits, packiv
9803
9804 =item B::NV Methods
9805
9806 NV, NVX
9807
9808 =item B::RV Methods
9809
9810 RV
9811
9812 =item B::PV Methods
9813
9814 PV, RV, PVX
9815
9816 =item B::PVMG Methods
9817
9818 MAGIC, SvSTASH
9819
9820 =item B::MAGIC Methods
9821
9822 MOREMAGIC, precomp, PRIVATE, TYPE, FLAGS, OBJ, PTR, REGEX
9823
9824 =item B::PVLV Methods
9825
9826 TARGOFF, TARGLEN, TYPE, TARG
9827
9828 =item B::BM Methods
9829
9830 USEFUL, PREVIOUS, RARE, TABLE
9831
9832 =item B::GV Methods
9833
9834 is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
9835 LINE, FILE, FILEGV, GvREFCNT, FLAGS
9836
9837 =item B::IO Methods
9838
9839 LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
9840 BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS, IsSTD
9841
9842 =item B::AV Methods
9843
9844 FILL, MAX, OFF, ARRAY, ARRAYelt, AvFLAGS
9845
9846 =item B::CV Methods
9847
9848 STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, OUTSIDE_SEQ, XSUB,
9849 XSUBANY, CvFLAGS, const_sv
9850
9851 =item B::HV Methods
9852
9853 FILL, MAX, KEYS, RITER, NAME, PMROOT, ARRAY
9854
9855 =item OP-RELATED CLASSES
9856
9857 =item B::OP Methods
9858
9859 next, sibling, name, ppaddr, desc, targ, type, seq, flags, private
9860
9861 =item B::UNOP METHOD
9862
9863 first
9864
9865 =item B::BINOP METHOD
9866
9867 last
9868
9869 =item B::LOGOP METHOD
9870
9871 other
9872
9873 =item B::LISTOP METHOD
9874
9875 children
9876
9877 =item B::PMOP Methods
9878
9879 pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, pmdynflags,
9880 pmpermflags, precomp, pmoffset
9881
9882 =item B::SVOP METHOD
9883
9884 sv, gv
9885
9886 =item B::PADOP METHOD
9887
9888 padix
9889
9890 =item B::PVOP METHOD
9891
9892 pv
9893
9894 =item B::LOOP Methods
9895
9896 redoop, nextop, lastop
9897
9898 =item B::COP Methods
9899
9900 label, stash, stashpv, file, cop_seq, arybase, line, warnings, io
9901
9902 =back
9903
9904 =item AUTHOR
9905
9906 =back
9907
9908 =head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
9909 bytecode
9910
9911 =over 4
9912
9913 =item SYNOPSIS
9914
9915 =item DESCRIPTION
9916
9917 %insn_data, @insn_name, @optype, @specialsv_name
9918
9919 =item AUTHOR
9920
9921 =back
9922
9923 =head2 B::Assembler - Assemble Perl bytecode
9924
9925 =over 4
9926
9927 =item SYNOPSIS
9928
9929 =item DESCRIPTION
9930
9931 =item AUTHORS
9932
9933 =back
9934
9935 =head2 B::Bblock - Walk basic blocks
9936
9937 =over 4
9938
9939 =item SYNOPSIS
9940
9941 =item DESCRIPTION
9942
9943 =over 4
9944
9945 =item Functions
9946
9947 B<find_leaders>
9948
9949 =back
9950
9951 =item AUTHOR
9952
9953 =back
9954
9955 =head2 B::Bytecode - Perl compiler's bytecode backend
9956
9957 =over 4
9958
9959 =item SYNOPSIS
9960
9961 =item DESCRIPTION
9962
9963 =item EXAMPLE
9964
9965 =item OPTIONS
9966
9967 B<-b>, B<-H>, B<-k>, B<-o>I<outfile>, B<-s>
9968
9969 =item KNOWN BUGS
9970
9971 =item NOTICE
9972
9973 =item AUTHORS
9974
9975 =back
9976
9977 =head2 B::C - Perl compiler's C backend
9978
9979 =over 4
9980
9981 =item SYNOPSIS
9982
9983 =item DESCRIPTION
9984
9985 =item OPTIONS
9986
9987 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-D>, B<-Do>, B<-Dc>, B<-DA>,
9988 B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fsave-data>, B<-fppaddr>, B<-fwarn-sv>,
9989 B<-fuse-script-name>, B<-fsave-sig-hash>, B<-On>, B<-O0>, B<-O1>, B<-O2>,
9990 B<-llimit>
9991
9992 =item EXAMPLES
9993
9994 =item BUGS
9995
9996 =item AUTHOR
9997
9998 =back
9999
10000 =head2 B::CC - Perl compiler's optimized C translation backend
10001
10002 =over 4
10003
10004 =item SYNOPSIS
10005
10006 =item DESCRIPTION
10007
10008 =item OPTIONS
10009
10010 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-mModulename>, B<-D>, B<-Dr>,
10011 B<-DO>, B<-Ds>, B<-Dp>, B<-Dq>, B<-Dl>, B<-Dt>, B<-f>,
10012 B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
10013
10014 =item EXAMPLES
10015
10016 =item BUGS
10017
10018 =item DIFFERENCES
10019
10020 =over 4
10021
10022 =item Loops
10023
10024 =item Context of ".."
10025
10026 =item Arithmetic
10027
10028 =item Deprecated features
10029
10030 =back
10031
10032 =item AUTHOR
10033
10034 =back
10035
10036 =head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
10037
10038 =over 4
10039
10040 =item SYNOPSIS
10041
10042 =item DESCRIPTION
10043
10044 =item EXAMPLE
10045
10046 =item OPTIONS
10047
10048 B<-basic>, B<-exec>, B<-tree>, B<-compact>, B<-loose>, B<-vt>, B<-ascii>,
10049 B<-main>, B<-base>I<n>, B<-bigendian>, B<-littleendian>, B<-concise>,
10050 B<-terse>, B<-linenoise>, B<-debug>, B<-env>
10051
10052 =item FORMATTING SPECIFICATIONS
10053
10054 B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
10055 B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
10056 B<#>I<var>, B<#>I<var>I<N>, B<~>, B<#addr>, B<#arg>, B<#class>,
10057 B<#classsym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
10058 B<#flags>, B<#flagval>, B<#hyphseq>, B<#label>, B<#lastaddr>, B<#name>,
10059 B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>, B<#private>, B<#privval>,
10060 B<#seq>, B<#seqnum>, B<#sibaddr>, B<#svaddr>, B<#svclass>, B<#svval>,
10061 B<#targ>, B<#targarg>, B<#targarglife>, B<#typenum>
10062
10063 =item ABBREVIATIONS
10064
10065 =over 4
10066
10067 =item OP flags abbreviations
10068
10069 =item OP class abbreviations
10070
10071 =back
10072
10073 =item Using B::Concise outside of the O framework
10074
10075 =item AUTHOR
10076
10077 =back
10078
10079 =head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
10080
10081 =over 4
10082
10083 =item SYNOPSIS
10084
10085 =item DESCRIPTION
10086
10087 =item AUTHOR
10088
10089 =back
10090
10091 =head2 B::Deparse - Perl compiler backend to produce perl code
10092
10093 =over 4
10094
10095 =item SYNOPSIS
10096
10097 =item DESCRIPTION
10098
10099 =item OPTIONS
10100
10101 B<-d>, B<-f>I<FILE>, B<-l>, B<-p>, B<-P>, B<-q>, B<-s>I<LETTERS>, B<C>,
10102 B<i>I<NUMBER>, B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
10103
10104 =item USING B::Deparse AS A MODULE
10105
10106 =over 4
10107
10108 =item Synopsis
10109
10110 =item Description
10111
10112 =item new
10113
10114 =item ambient_pragmas
10115
10116 strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
10117
10118 =item coderef2text
10119
10120 =back
10121
10122 =item BUGS
10123
10124 =item AUTHOR
10125
10126 =back
10127
10128 =head2 B::Disassembler - Disassemble Perl bytecode
10129
10130 =over 4
10131
10132 =item SYNOPSIS
10133
10134 =item DESCRIPTION
10135
10136 =item AUTHOR
10137
10138 =back
10139
10140 =head2 B::Lint - Perl lint
10141
10142 =over 4
10143
10144 =item SYNOPSIS
10145
10146 =item DESCRIPTION
10147
10148 =item OPTIONS AND LINT CHECKS
10149
10150 B<context>, B<implicit-read> and B<implicit-write>, B<bare-subs>,
10151 B<dollar-underscore>, B<private-names>, B<undefined-subs>,
10152 B<regexp-variables>, B<all>, B<none>
10153
10154 =item NON LINT-CHECK OPTIONS
10155
10156 B<-u Package>
10157
10158 =item BUGS
10159
10160 =item AUTHOR
10161
10162 =back
10163
10164 =head2 B::O, O - Generic interface to Perl Compiler backends
10165
10166 =over 4
10167
10168 =item SYNOPSIS
10169
10170 =item DESCRIPTION
10171
10172 =item CONVENTIONS
10173
10174 =item IMPLEMENTATION
10175
10176 =item BUGS
10177
10178 =item AUTHOR
10179
10180 =back
10181
10182 =head2 B::Showlex - Show lexical variables used in functions or files
10183
10184 =over 4
10185
10186 =item SYNOPSIS
10187
10188 =item DESCRIPTION
10189
10190 =item AUTHOR
10191
10192 =back
10193
10194 =head2 B::Stackobj - Helper module for CC backend
10195
10196 =over 4
10197
10198 =item SYNOPSIS
10199
10200 =item DESCRIPTION
10201
10202 =item AUTHOR
10203
10204 =back
10205
10206 =head2 B::Stash - show what stashes are loaded
10207
10208 =head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
10209
10210 =over 4
10211
10212 =item SYNOPSIS
10213
10214 =item DESCRIPTION
10215
10216 =item AUTHOR
10217
10218 =back
10219
10220 =head2 B::Xref - Generates cross reference reports for Perl programs
10221
10222 =over 4
10223
10224 =item SYNOPSIS
10225
10226 =item DESCRIPTION
10227
10228 =item OPTIONS
10229
10230 C<-oFILENAME>, C<-r>, C<-d>, C<-D[tO]>
10231
10232 =item BUGS
10233
10234 =item AUTHOR
10235
10236 =back
10237
10238 =head2 Bblock, B::Bblock - Walk basic blocks
10239
10240 =over 4
10241
10242 =item SYNOPSIS
10243
10244 =item DESCRIPTION
10245
10246 =over 4
10247
10248 =item Functions
10249
10250 B<find_leaders>
10251
10252 =back
10253
10254 =item AUTHOR
10255
10256 =back
10257
10258 =head2 Benchmark - benchmark running times of Perl code
10259
10260 =over 4
10261
10262 =item SYNOPSIS
10263
10264 =item DESCRIPTION
10265
10266 =over 4
10267
10268 =item Methods
10269
10270 new, debug, iters
10271
10272 =item Standard Exports
10273
10274 timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
10275 timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
10276 TIMEDIFF, [ STYLE, [ FORMAT ] ] )
10277
10278 =item Optional Exports
10279
10280 clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUNT, CODEHASHREF, [
10281 STYLE ] ), cmpthese ( RESULTSHASHREF, [ STYLE ] ), countit(TIME, CODE),
10282 disablecache ( ), enablecache ( ), timesum ( T1, T2 )
10283
10284 =item :hireswallclock
10285
10286 =back
10287
10288 =item NOTES
10289
10290 =item EXAMPLES
10291
10292 =item INHERITANCE
10293
10294 =item CAVEATS
10295
10296 =item SEE ALSO
10297
10298 =item AUTHORS
10299
10300 =item MODIFICATION HISTORY
10301
10302 =back
10303
10304 =head2 ByteLoader - load byte compiled perl code
10305
10306 =over 4
10307
10308 =item SYNOPSIS
10309
10310 =item DESCRIPTION
10311
10312 =item AUTHOR
10313
10314 =item SEE ALSO
10315
10316 =back
10317
10318 =head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend
10319
10320 =over 4
10321
10322 =item SYNOPSIS
10323
10324 =item DESCRIPTION
10325
10326 =item EXAMPLE
10327
10328 =item OPTIONS
10329
10330 B<-b>, B<-H>, B<-k>, B<-o>I<outfile>, B<-s>
10331
10332 =item KNOWN BUGS
10333
10334 =item NOTICE
10335
10336 =item AUTHORS
10337
10338 =back
10339
10340 =head2 CGI - Simple Common Gateway Interface Class
10341
10342 =over 4
10343
10344 =item SYNOPSIS
10345
10346 =item ABSTRACT
10347
10348 =item DESCRIPTION
10349
10350 =over 4
10351
10352 =item PROGRAMMING STYLE
10353
10354 =item CALLING CGI.PM ROUTINES
10355
10356 =item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
10357
10358 =item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
10359
10360 =item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
10361
10362 =item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
10363
10364 =item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
10365
10366 =item SETTING THE VALUE(S) OF A NAMED PARAMETER:
10367
10368 =item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
10369
10370 =item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
10371
10372 =item DELETING A PARAMETER COMPLETELY:
10373
10374 =item DELETING ALL PARAMETERS:
10375
10376 =item DIRECT ACCESS TO THE PARAMETER LIST:
10377
10378 =item FETCHING THE PARAMETER LIST AS A HASH:
10379
10380 =item SAVING THE STATE OF THE SCRIPT TO A FILE:
10381
10382 =item RETRIEVING CGI ERRORS
10383
10384 =item USING THE FUNCTION-ORIENTED INTERFACE
10385
10386 B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:html4>, B<:netscape>, B<:html>,
10387 B<:standard>, B<:all>
10388
10389 =item PRAGMAS
10390
10391 -any, -compile, -nosticky, -no_undef_params, -no_xhtml, -nph,
10392 -newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
10393 -private_tempfiles
10394
10395 =item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
10396
10397 1. start_table() (generates a <table> tag), 2. end_table() (generates a
10398 </table> tag), 3. start_ul() (generates a <ul> tag), 4. end_ul() (generates
10399 a </ul> tag)
10400
10401 =back
10402
10403 =item GENERATING DYNAMIC DOCUMENTS
10404
10405 =over 4
10406
10407 =item CREATING A STANDARD HTTP HEADER:
10408
10409 =item GENERATING A REDIRECTION HEADER
10410
10411 =item CREATING THE HTML DOCUMENT HEADER
10412
10413 B<Parameters:>, 4, 5, 6..
10414
10415 =item ENDING THE HTML DOCUMENT:
10416
10417 =item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
10418
10419 =item OBTAINING THE SCRIPT'S URL
10420
10421 B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
10422 (B<-query_string>), B<-base>
10423
10424 =item MIXING POST AND URL PARAMETERS
10425
10426 =back
10427
10428 =item CREATING STANDARD HTML ELEMENTS:
10429
10430 =over 4
10431
10432 =item PROVIDING ARGUMENTS TO HTML SHORTCUTS
10433
10434 =item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
10435
10436 =item HTML SHORTCUTS AND LIST INTERPOLATION
10437
10438 =item NON-STANDARD HTML SHORTCUTS
10439
10440 =item AUTOESCAPING HTML
10441
10442 $escaped_string = escapeHTML("unescaped string");, $charset =
10443 charset([$charset]);, $flag = autoEscape([$flag]);
10444
10445 =item PRETTY-PRINTING HTML
10446
10447 =back
10448
10449 =item CREATING FILL-OUT FORMS:
10450
10451 =over 4
10452
10453 =item CREATING AN ISINDEX TAG
10454
10455 =item STARTING AND ENDING A FORM
10456
10457 B<application/x-www-form-urlencoded>, B<multipart/form-data>
10458
10459 =item CREATING A TEXT FIELD
10460
10461 B<Parameters>
10462
10463 =item CREATING A BIG TEXT FIELD
10464
10465 =item CREATING A PASSWORD FIELD
10466
10467 =item CREATING A FILE UPLOAD FIELD
10468
10469 B<Parameters>
10470
10471 =item CREATING A POPUP MENU
10472
10473 =item CREATING AN OPTION GROUP
10474
10475 =item CREATING A SCROLLING LIST
10476
10477 B<Parameters:>
10478
10479 =item CREATING A GROUP OF RELATED CHECKBOXES
10480
10481 B<Parameters:>
10482
10483 =item CREATING A STANDALONE CHECKBOX
10484
10485 B<Parameters:>
10486
10487 =item CREATING A RADIO BUTTON GROUP
10488
10489 B<Parameters:>
10490
10491 =item CREATING A SUBMIT BUTTON 
10492
10493 B<Parameters:>
10494
10495 =item CREATING A RESET BUTTON
10496
10497 =item CREATING A DEFAULT BUTTON
10498
10499 =item CREATING A HIDDEN FIELD
10500
10501 B<Parameters:>
10502
10503 =item CREATING A CLICKABLE IMAGE BUTTON
10504
10505 B<Parameters:>, 3. The third option (-align, optional) is an alignment
10506 type, and may be TOP, BOTTOM or MIDDLE
10507
10508 =item CREATING A JAVASCRIPT ACTION BUTTON
10509
10510 =back
10511
10512 =item HTTP COOKIES
10513
10514 1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
10515 B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
10516
10517 =item WORKING WITH FRAMES
10518
10519 1. Create a <Frameset> document, 2. Specify the destination for the
10520 document in the HTTP header, 3. Specify the destination for the document in
10521 the <form> tag
10522
10523 =item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
10524
10525 =item DEBUGGING
10526
10527 =over 4
10528
10529 =item DUMPING OUT ALL THE NAME/VALUE PAIRS
10530
10531 =back
10532
10533 =item FETCHING ENVIRONMENT VARIABLES
10534
10535 B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
10536 B<path_translated()>, B<remote_host()>, B<script_name()> Return the script
10537 name as a partial URL, for self-refering scripts, B<referer()>, B<auth_type
10538 ()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
10539 B<server_software ()>, B<remote_user ()>, B<user_name ()>,
10540 B<request_method()>, B<content_type()>, B<http()>, B<https()>
10541
10542 =item USING NPH SCRIPTS
10543
10544 In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
10545 parameters
10546
10547 =item Server Push
10548
10549 multipart_init(), multipart_start(), multipart_end(), multipart_final()
10550
10551 =item Avoiding Denial of Service Attacks
10552
10553 B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
10554 basis>, B<2. Globally for all scripts>
10555
10556 =item COMPATIBILITY WITH CGI-LIB.PL
10557
10558 =item AUTHOR INFORMATION
10559
10560 =item CREDITS
10561
10562 Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
10563 (james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
10564 (mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
10565 (jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
10566 (applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
10567 (tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
10568 (tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
10569 MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
10570 (kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
10571 Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
10572 MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
10573 ...and many many more..
10574
10575 =item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
10576
10577 =item BUGS
10578
10579 =item SEE ALSO
10580
10581 =back
10582
10583 =head2 CGI::Apache - Backward compatibility module for CGI.pm
10584
10585 =over 4
10586
10587 =item SYNOPSIS
10588
10589 =item ABSTRACT
10590
10591 =item DESCRIPTION
10592
10593 =item AUTHOR INFORMATION
10594
10595 =item BUGS
10596
10597 =item SEE ALSO
10598
10599 =back
10600
10601 =head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
10602 other) error log
10603
10604 =over 4
10605
10606 =item SYNOPSIS
10607
10608 =item DESCRIPTION
10609
10610 =item REDIRECTING ERROR MESSAGES
10611
10612 =item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
10613
10614 =over 4
10615
10616 =item Changing the default message
10617
10618 =back
10619
10620 =item MAKING WARNINGS APPEAR AS HTML COMMENTS
10621
10622 =item OVERRIDING THE NAME OF THE PROGRAM
10623
10624 =item AUTHORS
10625
10626 =item SEE ALSO
10627
10628 =back
10629
10630 =head2 CGI::Cookie - Interface to Netscape Cookies
10631
10632 =over 4
10633
10634 =item SYNOPSIS
10635
10636 =item DESCRIPTION
10637
10638 =item USING CGI::Cookie
10639
10640 B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
10641
10642 =over 4
10643
10644 =item Creating New Cookies
10645
10646 =item Sending the Cookie to the Browser
10647
10648 =item Recovering Previous Cookies
10649
10650 =item Manipulating Cookies
10651
10652 B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
10653
10654 =back
10655
10656 =item AUTHOR INFORMATION
10657
10658 =item BUGS
10659
10660 =item SEE ALSO
10661
10662 =back
10663
10664 =head2 CGI::Fast - CGI Interface for Fast CGI
10665
10666 =over 4
10667
10668 =item SYNOPSIS
10669
10670 =item DESCRIPTION
10671
10672 =item OTHER PIECES OF THE PUZZLE
10673
10674 =item WRITING FASTCGI PERL SCRIPTS
10675
10676 =item INSTALLING FASTCGI SCRIPTS
10677
10678 =item USING FASTCGI SCRIPTS AS CGI SCRIPTS
10679
10680 =item EXTERNAL FASTCGI SERVER INVOCATION
10681
10682 FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
10683
10684 =item CAVEATS
10685
10686 =item AUTHOR INFORMATION
10687
10688 =item BUGS
10689
10690 =item SEE ALSO
10691
10692 =back
10693
10694 =head2 CGI::Pretty - module to produce nicely formatted HTML code
10695
10696 =over 4
10697
10698 =item SYNOPSIS
10699
10700 =item DESCRIPTION
10701
10702 =over 4
10703
10704 =item Tags that won't be formatted
10705
10706 =item Customizing the Indenting
10707
10708 =back
10709
10710 =item BUGS
10711
10712 =item AUTHOR
10713
10714 =item SEE ALSO
10715
10716 =back
10717
10718 =head2 CGI::Push - Simple Interface to Server Push
10719
10720 =over 4
10721
10722 =item SYNOPSIS
10723
10724 =item DESCRIPTION
10725
10726 =item USING CGI::Push
10727
10728 -next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
10729
10730 =over 4
10731
10732 =item Heterogeneous Pages
10733
10734 =item Changing the Page Delay on the Fly
10735
10736 =back
10737
10738 =item INSTALLING CGI::Push SCRIPTS
10739
10740 =item AUTHOR INFORMATION
10741
10742 =item BUGS
10743
10744 =item SEE ALSO
10745
10746 =back
10747
10748 =head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
10749
10750 =over 4
10751
10752 =item SYNOPSIS
10753
10754 =item ABSTRACT
10755
10756 =item DESCRIPTION
10757
10758 =item AUTHOR INFORMATION
10759
10760 =item BUGS
10761
10762 =item SEE ALSO
10763
10764 =back
10765
10766 =head2 CGI::Util - Internal utilities used by CGI module
10767
10768 =over 4
10769
10770 =item SYNOPSIS
10771
10772 =item DESCRIPTION
10773
10774 =item AUTHOR INFORMATION
10775
10776 =item SEE ALSO
10777
10778 =back
10779
10780 =head2 CPAN - query, download and build perl modules from CPAN sites
10781
10782 =over 4
10783
10784 =item SYNOPSIS
10785
10786 =item STATUS
10787
10788 =item DESCRIPTION
10789
10790 =over 4
10791
10792 =item Interactive Mode
10793
10794 Searching for authors, bundles, distribution files and modules, make, test,
10795 install, clean  modules or distributions, get, readme, look module or
10796 distribution, ls author, Signals
10797
10798 =item CPAN::Shell
10799
10800 =item autobundle
10801
10802 =item recompile
10803
10804 =item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
10805
10806 =item Programmer's interface
10807
10808 expand($type,@things), expandany(@things), Programming Examples
10809
10810 =item Methods in the other Classes
10811
10812 CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
10813 CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
10814 CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
10815 CPAN::Bundle::clean(), CPAN::Bundle::contains(),
10816 CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
10817 CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
10818 CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
10819 CPAN::Bundle::readme(), CPAN::Bundle::test(),
10820 CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
10821 CPAN::Distribution::clean(), CPAN::Distribution::containsmods(),
10822 CPAN::Distribution::cvs_import(), CPAN::Distribution::dir(),
10823 CPAN::Distribution::force($method,@args), CPAN::Distribution::get(),
10824 CPAN::Distribution::install(), CPAN::Distribution::isa_perl(),
10825 CPAN::Distribution::look(), CPAN::Distribution::make(),
10826 CPAN::Distribution::prereq_pm(), CPAN::Distribution::readme(),
10827 CPAN::Distribution::test(), CPAN::Distribution::uptodate(),
10828 CPAN::Index::force_reload(), CPAN::Index::reload(), CPAN::InfoObj::dump(),
10829 CPAN::Module::as_glimpse(), CPAN::Module::as_string(),
10830 CPAN::Module::clean(), CPAN::Module::cpan_file(),
10831 CPAN::Module::cpan_version(), CPAN::Module::cvs_import(),
10832 CPAN::Module::description(), CPAN::Module::force($method,@args),
10833 CPAN::Module::get(), CPAN::Module::inst_file(),
10834 CPAN::Module::inst_version(), CPAN::Module::install(),
10835 CPAN::Module::look(), CPAN::Module::make(),
10836 CPAN::Module::manpage_headline(), CPAN::Module::readme(),
10837 CPAN::Module::test(), CPAN::Module::uptodate(), CPAN::Module::userid()
10838
10839 =item Cache Manager
10840
10841 =item Bundles
10842
10843 =item Prerequisites
10844
10845 =item Finding packages and VERSION
10846
10847 =item Debugging
10848
10849 =item Floppy, Zip, Offline Mode
10850
10851 =back
10852
10853 =item CONFIGURATION
10854
10855 C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
10856 E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
10857 optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
10858 [unshift|push|splice] E<lt>listE<gt>>
10859
10860 =over 4
10861
10862 =item Note on urllist parameter's format
10863
10864 =item urllist parameter has CD-ROM support
10865
10866 =back
10867
10868 =item SECURITY
10869
10870 =item EXPORT
10871
10872 =item POPULATE AN INSTALLATION WITH LOTS OF MODULES
10873
10874 =item WORKING WITH CPAN.pm BEHIND FIREWALLS
10875
10876 =over 4
10877
10878 =item Three basic types of firewalls
10879
10880 http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
10881
10882 =item Configuring lynx or ncftp for going through a firewall
10883
10884 =back
10885
10886 =item FAQ
10887
10888 1), 2), 3), 4), 5), 6), 7), 8), 9), 10)
10889
10890 =item BUGS
10891
10892 =item AUTHOR
10893
10894 =item TRANSLATIONS
10895
10896 =item SEE ALSO
10897
10898 =back
10899
10900 =head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
10901
10902 =over 4
10903
10904 =item SYNOPSIS
10905
10906 =item DESCRIPTION
10907
10908 =back
10909
10910 =head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
10911 module
10912
10913 =over 4
10914
10915 =item SYNOPSIS
10916
10917 =item DESCRIPTION
10918
10919 =item  SEE ALSO
10920
10921 =back
10922
10923 =head2 Carp, carp    - warn of errors (from perspective of caller)
10924
10925 =over 4
10926
10927 =item SYNOPSIS
10928
10929 =item DESCRIPTION
10930
10931 =over 4
10932
10933 =item Forcing a Stack Trace
10934
10935 =back
10936
10937 =item BUGS
10938
10939 =back
10940
10941 =head2 Carp::Heavy, Carp heavy machinery - no user serviceable parts inside
10942
10943 =head2 Class::ISA -- report the search path for a class's ISA tree
10944
10945 =over 4
10946
10947 =item SYNOPSIS
10948
10949 =item DESCRIPTION
10950
10951 =item FUNCTIONS
10952
10953 the function Class::ISA::super_path($CLASS), the function
10954 Class::ISA::self_and_super_path($CLASS), the function
10955 Class::ISA::self_and_super_versions($CLASS)
10956
10957 =item CAUTIONARY NOTES
10958
10959 =item COPYRIGHT
10960
10961 =item AUTHOR
10962
10963 =back
10964
10965 =head2 Class::Struct - declare struct-like datatypes as Perl classes
10966
10967 =over 4
10968
10969 =item SYNOPSIS
10970
10971 =item DESCRIPTION
10972
10973 =over 4
10974
10975 =item The C<struct()> function
10976
10977 =item Class Creation at Compile Time
10978
10979 =item Element Types and Accessor Methods
10980
10981 Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
10982 C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
10983
10984 =item Initializing with C<new>
10985
10986 =back
10987
10988 =item EXAMPLES
10989
10990 Example 1, Example 2, Example 3
10991
10992 =item Author and Modification History
10993
10994 =back
10995
10996 =head2 Config - access Perl configuration information
10997
10998 =over 4
10999
11000 =item SYNOPSIS
11001
11002 =item DESCRIPTION
11003
11004 myconfig(), config_sh(), config_re($regex), config_vars(@names)
11005
11006 =item EXAMPLE
11007
11008 =item WARNING
11009
11010 =item GLOSSARY
11011
11012 =over 4
11013
11014 =item _
11015
11016 C<_a>, C<_exe>, C<_o>
11017
11018 =item a
11019
11020 C<afs>, C<afsroot>, C<alignbytes>, C<ansi2knr>, C<aphostname>,
11021 C<api_revision>, C<api_subversion>, C<api_version>, C<api_versionstring>,
11022 C<ar>, C<archlib>, C<archlibexp>, C<archname64>, C<archname>, C<archobjs>,
11023 C<asctime_r_proto>, C<awk>
11024
11025 =item b
11026
11027 C<baserev>, C<bash>, C<bin>, C<binexp>, C<bison>, C<byacc>, C<byteorder>
11028
11029 =item c
11030
11031 C<c>, C<castflags>, C<cat>, C<cc>, C<cccdlflags>, C<ccdlflags>, C<ccflags>,
11032 C<ccflags_uselargefiles>, C<ccname>, C<ccsymbols>, C<ccversion>, C<cf_by>,
11033 C<cf_email>, C<cf_time>, C<charsize>, C<chgrp>, C<chmod>, C<chown>,
11034 C<clocktype>, C<comm>, C<compress>, C<contains>, C<cp>, C<cpio>, C<cpp>,
11035 C<cpp_stuff>, C<cppccsymbols>, C<cppflags>, C<cpplast>, C<cppminus>,
11036 C<cpprun>, C<cppstdin>, C<cppsymbols>, C<crypt_r_proto>, C<cryptlib>,
11037 C<csh>, C<ctermid_r_proto>, C<ctime_r_proto>
11038
11039 =item d
11040
11041 C<d__fwalk>, C<d_access>, C<d_accessx>, C<d_aintl>, C<d_alarm>,
11042 C<d_archlib>, C<d_asctime_r>, C<d_atolf>, C<d_atoll>, C<d_attribut>,
11043 C<d_bcmp>, C<d_bcopy>, C<d_bsd>, C<d_bsdgetpgrp>, C<d_bsdsetpgrp>,
11044 C<d_bzero>, C<d_casti32>, C<d_castneg>, C<d_charvspr>, C<d_chown>,
11045 C<d_chroot>, C<d_chsize>, C<d_class>, C<d_closedir>, C<d_cmsghdr_s>,
11046 C<d_const>, C<d_copysignl>, C<d_crypt>, C<d_crypt_r>, C<d_csh>,
11047 C<d_ctermid_r>, C<d_ctime_r>, C<d_cuserid>, C<d_dbl_dig>,
11048 C<d_dbminitproto>, C<d_difftime>, C<d_dirfd>, C<d_dirnamlen>, C<d_dlerror>,
11049 C<d_dlopen>, C<d_dlsymun>, C<d_dosuid>, C<d_drand48_r>, C<d_drand48proto>,
11050 C<d_dup2>, C<d_eaccess>, C<d_endgrent>, C<d_endgrent_r>, C<d_endhent>,
11051 C<d_endhostent_r>, C<d_endnent>, C<d_endnetent_r>, C<d_endpent>,
11052 C<d_endprotoent_r>, C<d_endpwent>, C<d_endpwent_r>, C<d_endsent>,
11053 C<d_endservent_r>, C<d_eofnblk>, C<d_eunice>, C<d_faststdio>, C<d_fchdir>,
11054 C<d_fchmod>, C<d_fchown>, C<d_fcntl>, C<d_fcntl_can_lock>, C<d_fd_macros>,
11055 C<d_fd_set>, C<d_fds_bits>, C<d_fgetpos>, C<d_finite>, C<d_finitel>,
11056 C<d_flexfnam>, C<d_flock>, C<d_flockproto>, C<d_fork>, C<d_fp_class>,
11057 C<d_fpathconf>, C<d_fpclass>, C<d_fpclassify>, C<d_fpclassl>,
11058 C<d_fpos64_t>, C<d_frexpl>, C<d_fs_data_s>, C<d_fseeko>, C<d_fsetpos>,
11059 C<d_fstatfs>, C<d_fstatvfs>, C<d_fsync>, C<d_ftello>, C<d_ftime>,
11060 C<d_Gconvert>, C<d_getcwd>, C<d_getespwnam>, C<d_getfsstat>, C<d_getgrent>,
11061 C<d_getgrent_r>, C<d_getgrgid_r>, C<d_getgrnam_r>, C<d_getgrps>,
11062 C<d_gethbyaddr>, C<d_gethbyname>, C<d_gethent>, C<d_gethname>,
11063 C<d_gethostbyaddr_r>, C<d_gethostbyname_r>, C<d_gethostent_r>,
11064 C<d_gethostprotos>, C<d_getitimer>, C<d_getlogin>, C<d_getlogin_r>,
11065 C<d_getmnt>, C<d_getmntent>, C<d_getnbyaddr>, C<d_getnbyname>,
11066 C<d_getnent>, C<d_getnetbyaddr_r>, C<d_getnetbyname_r>, C<d_getnetent_r>,
11067 C<d_getnetprotos>, C<d_getpagsz>, C<d_getpbyname>, C<d_getpbynumber>,
11068 C<d_getpent>, C<d_getpgid>, C<d_getpgrp2>, C<d_getpgrp>, C<d_getppid>,
11069 C<d_getprior>, C<d_getprotobyname_r>, C<d_getprotobynumber_r>,
11070 C<d_getprotoent_r>, C<d_getprotoprotos>, C<d_getprpwnam>, C<d_getpwent>,
11071 C<d_getpwent_r>, C<d_getpwnam_r>, C<d_getpwuid_r>, C<d_getsbyname>,
11072 C<d_getsbyport>, C<d_getsent>, C<d_getservbyname_r>, C<d_getservbyport_r>,
11073 C<d_getservent_r>, C<d_getservprotos>, C<d_getspnam>, C<d_getspnam_r>,
11074 C<d_gettimeod>, C<d_gmtime_r>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>,
11075 C<d_htonl>, C<d_ilogbl>, C<d_index>, C<d_inetaton>, C<d_int64_t>,
11076 C<d_isascii>, C<d_isfinite>, C<d_isinf>, C<d_isnan>, C<d_isnanl>,
11077 C<d_killpg>, C<d_lchown>, C<d_ldbl_dig>, C<d_link>, C<d_localtime_r>,
11078 C<d_locconv>, C<d_lockf>, C<d_longdbl>, C<d_longlong>, C<d_lseekproto>,
11079 C<d_lstat>, C<d_madvise>, C<d_mblen>, C<d_mbstowcs>, C<d_mbtowc>,
11080 C<d_memchr>, C<d_memcmp>, C<d_memcpy>, C<d_memmove>, C<d_memset>,
11081 C<d_mkdir>, C<d_mkdtemp>, C<d_mkfifo>, C<d_mkstemp>, C<d_mkstemps>,
11082 C<d_mktime>, C<d_mmap>, C<d_modfl>, C<d_modfl_pow32_bug>, C<d_modflproto>,
11083 C<d_mprotect>, C<d_msg>, C<d_msg_ctrunc>, C<d_msg_dontroute>, C<d_msg_oob>,
11084 C<d_msg_peek>, C<d_msg_proxy>, C<d_msgctl>, C<d_msgget>, C<d_msghdr_s>,
11085 C<d_msgrcv>, C<d_msgsnd>, C<d_msync>, C<d_munmap>, C<d_mymalloc>,
11086 C<d_nice>, C<d_nl_langinfo>, C<d_nv_preserves_uv>, C<d_off64_t>,
11087 C<d_old_pthread_create_joinable>, C<d_oldpthreads>, C<d_oldsock>,
11088 C<d_open3>, C<d_pathconf>, C<d_pause>, C<d_perl_otherlibdirs>,
11089 C<d_phostname>, C<d_pipe>, C<d_poll>, C<d_portable>, C<d_PRId64>,
11090 C<d_PRIeldbl>, C<d_PRIEUldbl>, C<d_PRIfldbl>, C<d_PRIFUldbl>,
11091 C<d_PRIgldbl>, C<d_PRIGUldbl>, C<d_PRIi64>, C<d_PRIo64>, C<d_PRIu64>,
11092 C<d_PRIx64>, C<d_PRIXU64>, C<d_procselfexe>, C<d_pthread_atfork>,
11093 C<d_pthread_attr_setscope>, C<d_pthread_yield>, C<d_pwage>, C<d_pwchange>,
11094 C<d_pwclass>, C<d_pwcomment>, C<d_pwexpire>, C<d_pwgecos>, C<d_pwpasswd>,
11095 C<d_pwquota>, C<d_qgcvt>, C<d_quad>, C<d_random_r>, C<d_readdir64_r>,
11096 C<d_readdir>, C<d_readdir_r>, C<d_readlink>, C<d_readv>, C<d_recvmsg>,
11097 C<d_rename>, C<d_rewinddir>, C<d_rmdir>, C<d_safebcpy>, C<d_safemcpy>,
11098 C<d_sanemcmp>, C<d_sbrkproto>, C<d_scalbnl>, C<d_sched_yield>,
11099 C<d_scm_rights>, C<d_SCNfldbl>, C<d_seekdir>, C<d_select>, C<d_sem>,
11100 C<d_semctl>, C<d_semctl_semid_ds>, C<d_semctl_semun>, C<d_semget>,
11101 C<d_semop>, C<d_sendmsg>, C<d_setegid>, C<d_seteuid>, C<d_setgrent>,
11102 C<d_setgrent_r>, C<d_setgrps>, C<d_sethent>, C<d_sethostent_r>,
11103 C<d_setitimer>, C<d_setlinebuf>, C<d_setlocale>, C<d_setlocale_r>,
11104 C<d_setnent>, C<d_setnetent_r>, C<d_setpent>, C<d_setpgid>, C<d_setpgrp2>,
11105 C<d_setpgrp>, C<d_setprior>, C<d_setproctitle>, C<d_setprotoent_r>,
11106 C<d_setpwent>, C<d_setpwent_r>, C<d_setregid>, C<d_setresgid>,
11107 C<d_setresuid>, C<d_setreuid>, C<d_setrgid>, C<d_setruid>, C<d_setsent>,
11108 C<d_setservent_r>, C<d_setsid>, C<d_setvbuf>, C<d_sfio>, C<d_shm>,
11109 C<d_shmat>, C<d_shmatprototype>, C<d_shmctl>, C<d_shmdt>, C<d_shmget>,
11110 C<d_sigaction>, C<d_sigprocmask>, C<d_sigsetjmp>, C<d_sockatmark>,
11111 C<d_sockatmarkproto>, C<d_socket>, C<d_socklen_t>, C<d_sockpair>,
11112 C<d_socks5_init>, C<d_sqrtl>, C<d_srand48_r>, C<d_srandom_r>,
11113 C<d_sresgproto>, C<d_sresuproto>, C<d_statblks>, C<d_statfs_f_flags>,
11114 C<d_statfs_s>, C<d_statvfs>, C<d_stdio_cnt_lval>, C<d_stdio_ptr_lval>,
11115 C<d_stdio_ptr_lval_nochange_cnt>, C<d_stdio_ptr_lval_sets_cnt>,
11116 C<d_stdio_stream_array>, C<d_stdiobase>, C<d_stdstdio>, C<d_strchr>,
11117 C<d_strcoll>, C<d_strctcpy>, C<d_strerrm>, C<d_strerror>, C<d_strerror_r>,
11118 C<d_strftime>, C<d_strtod>, C<d_strtol>, C<d_strtold>, C<d_strtoll>,
11119 C<d_strtoq>, C<d_strtoul>, C<d_strtoull>, C<d_strtouq>, C<d_strxfrm>,
11120 C<d_suidsafe>, C<d_symlink>, C<d_syscall>, C<d_syscallproto>, C<d_sysconf>,
11121 C<d_sysernlst>, C<d_syserrlst>, C<d_system>, C<d_tcgetpgrp>,
11122 C<d_tcsetpgrp>, C<d_telldir>, C<d_telldirproto>, C<d_time>, C<d_times>,
11123 C<d_tm_tm_gmtoff>, C<d_tm_tm_zone>, C<d_tmpnam_r>, C<d_truncate>,
11124 C<d_ttyname_r>, C<d_tzname>, C<d_u32align>, C<d_ualarm>, C<d_umask>,
11125 C<d_uname>, C<d_union_semun>, C<d_unordered>, C<d_usleep>,
11126 C<d_usleepproto>, C<d_ustat>, C<d_vendorarch>, C<d_vendorbin>,
11127 C<d_vendorlib>, C<d_vendorscript>, C<d_vfork>, C<d_void_closedir>,
11128 C<d_voidsig>, C<d_voidtty>, C<d_volatile>, C<d_vprintf>, C<d_wait4>,
11129 C<d_waitpid>, C<d_wcstombs>, C<d_wctomb>, C<d_writev>, C<d_xenix>, C<date>,
11130 C<db_hashtype>, C<db_prefixtype>, C<db_version_major>, C<db_version_minor>,
11131 C<db_version_patch>, C<defvoidused>, C<direntrytype>, C<dlext>, C<dlsrc>,
11132 C<doublesize>, C<drand01>, C<drand48_r_proto>, C<dynamic_ext>
11133
11134 =item e
11135
11136 C<eagain>, C<ebcdic>, C<echo>, C<egrep>, C<emacs>, C<endgrent_r_proto>,
11137 C<endhostent_r_proto>, C<endnetent_r_proto>, C<endprotoent_r_proto>,
11138 C<endpwent_r_proto>, C<endservent_r_proto>, C<eunicefix>, C<exe_ext>,
11139 C<expr>, C<extensions>, C<extras>
11140
11141 =item f
11142
11143 C<fflushall>, C<fflushNULL>, C<find>, C<firstmakefile>, C<flex>,
11144 C<fpossize>, C<fpostype>, C<freetype>, C<from>, C<full_ar>, C<full_csh>,
11145 C<full_sed>
11146
11147 =item g
11148
11149 C<gccansipedantic>, C<gccosandvers>, C<gccversion>, C<getgrent_r_proto>,
11150 C<getgrgid_r_proto>, C<getgrnam_r_proto>, C<gethostbyaddr_r_proto>,
11151 C<gethostbyname_r_proto>, C<gethostent_r_proto>, C<getlogin_r_proto>,
11152 C<getnetbyaddr_r_proto>, C<getnetbyname_r_proto>, C<getnetent_r_proto>,
11153 C<getprotobyname_r_proto>, C<getprotobynumber_r_proto>,
11154 C<getprotoent_r_proto>, C<getpwent_r_proto>, C<getpwnam_r_proto>,
11155 C<getpwuid_r_proto>, C<getservbyname_r_proto>, C<getservbyport_r_proto>,
11156 C<getservent_r_proto>, C<getspnam_r_proto>, C<gidformat>, C<gidsign>,
11157 C<gidsize>, C<gidtype>, C<glibpth>, C<gmake>, C<gmtime_r_proto>,
11158 C<gnulibc_version>, C<grep>, C<groupcat>, C<groupstype>, C<gzip>
11159
11160 =item h
11161
11162 C<h_fcntl>, C<h_sysfile>, C<hint>, C<hostcat>, C<html1dir>, C<html1direxp>,
11163 C<html3dir>, C<html3direxp>
11164
11165 =item i
11166
11167 C<i16size>, C<i16type>, C<i32size>, C<i32type>, C<i64size>, C<i64type>,
11168 C<i8size>, C<i8type>, C<i_arpainet>, C<i_bsdioctl>, C<i_crypt>, C<i_db>,
11169 C<i_dbm>, C<i_dirent>, C<i_dld>, C<i_dlfcn>, C<i_fcntl>, C<i_float>,
11170 C<i_fp>, C<i_fp_class>, C<i_gdbm>, C<i_grp>, C<i_ieeefp>, C<i_inttypes>,
11171 C<i_langinfo>, C<i_libutil>, C<i_limits>, C<i_locale>, C<i_machcthr>,
11172 C<i_malloc>, C<i_math>, C<i_memory>, C<i_mntent>, C<i_ndbm>, C<i_netdb>,
11173 C<i_neterrno>, C<i_netinettcp>, C<i_niin>, C<i_poll>, C<i_prot>,
11174 C<i_pthread>, C<i_pwd>, C<i_rpcsvcdbm>, C<i_sfio>, C<i_sgtty>, C<i_shadow>,
11175 C<i_socks>, C<i_stdarg>, C<i_stddef>, C<i_stdlib>, C<i_string>,
11176 C<i_sunmath>, C<i_sysaccess>, C<i_sysdir>, C<i_sysfile>, C<i_sysfilio>,
11177 C<i_sysin>, C<i_sysioctl>, C<i_syslog>, C<i_sysmman>, C<i_sysmode>,
11178 C<i_sysmount>, C<i_sysndir>, C<i_sysparam>, C<i_sysresrc>, C<i_syssecrt>,
11179 C<i_sysselct>, C<i_syssockio>, C<i_sysstat>, C<i_sysstatfs>,
11180 C<i_sysstatvfs>, C<i_systime>, C<i_systimek>, C<i_systimes>, C<i_systypes>,
11181 C<i_sysuio>, C<i_sysun>, C<i_sysutsname>, C<i_sysvfs>, C<i_syswait>,
11182 C<i_termio>, C<i_termios>, C<i_time>, C<i_unistd>, C<i_ustat>, C<i_utime>,
11183 C<i_values>, C<i_varargs>, C<i_varhdr>, C<i_vfork>,
11184 C<ignore_versioned_solibs>, C<inc_version_list>, C<inc_version_list_init>,
11185 C<incpath>, C<inews>, C<installarchlib>, C<installbin>, C<installhtml1dir>,
11186 C<installhtml3dir>, C<installman1dir>, C<installman3dir>, C<installprefix>,
11187 C<installprefixexp>, C<installprivlib>, C<installscript>,
11188 C<installsitearch>, C<installsitebin>, C<installsitehtml1dir>,
11189 C<installsitehtml3dir>, C<installsitelib>, C<installsiteman1dir>,
11190 C<installsiteman3dir>, C<installsitescript>, C<installstyle>,
11191 C<installusrbinperl>, C<installvendorarch>, C<installvendorbin>,
11192 C<installvendorhtml1dir>, C<installvendorhtml3dir>, C<installvendorlib>,
11193 C<installvendorman1dir>, C<installvendorman3dir>, C<installvendorscript>,
11194 C<intsize>, C<issymlink>, C<ivdformat>, C<ivsize>, C<ivtype>
11195
11196 =item k
11197
11198 C<known_extensions>, C<ksh>
11199
11200 =item l
11201
11202 C<ld>, C<lddlflags>, C<ldflags>, C<ldflags_uselargefiles>, C<ldlibpthname>,
11203 C<less>, C<lib_ext>, C<libc>, C<libperl>, C<libpth>, C<libs>, C<libsdirs>,
11204 C<libsfiles>, C<libsfound>, C<libspath>, C<libswanted>,
11205 C<libswanted_uselargefiles>, C<line>, C<lint>, C<lkflags>, C<ln>, C<lns>,
11206 C<localtime_r_proto>, C<locincpth>, C<loclibpth>, C<longdblsize>,
11207 C<longlongsize>, C<longsize>, C<lp>, C<lpr>, C<ls>, C<lseeksize>,
11208 C<lseektype>
11209
11210 =item m
11211
11212 C<mail>, C<mailx>, C<make>, C<make_set_make>, C<mallocobj>, C<mallocsrc>,
11213 C<malloctype>, C<man1dir>, C<man1direxp>, C<man1ext>, C<man3dir>,
11214 C<man3direxp>, C<man3ext>
11215
11216 =item M
11217
11218 C<Mcc>, C<mips_type>, C<mistrustnm>, C<mkdir>, C<mmaptype>, C<modetype>,
11219 C<more>, C<multiarch>, C<mv>, C<myarchname>, C<mydomain>, C<myhostname>,
11220 C<myuname>
11221
11222 =item n
11223
11224 C<n>, C<need_va_copy>, C<netdb_hlen_type>, C<netdb_host_type>,
11225 C<netdb_name_type>, C<netdb_net_type>, C<nm>, C<nm_opt>, C<nm_so_opt>,
11226 C<nonxs_ext>, C<nroff>, C<nv_preserves_uv_bits>, C<nveformat>,
11227 C<nvEUformat>, C<nvfformat>, C<nvFUformat>, C<nvgformat>, C<nvGUformat>,
11228 C<nvsize>, C<nvtype>
11229
11230 =item o
11231
11232 C<o_nonblock>, C<obj_ext>, C<old_pthread_create_joinable>, C<optimize>,
11233 C<orderlib>, C<osname>, C<osvers>, C<otherlibdirs>
11234
11235 =item p
11236
11237 C<package>, C<pager>, C<passcat>, C<patchlevel>, C<path_sep>, C<perl5>,
11238 C<perl>, C<perl_patchlevel>
11239
11240 =item P
11241
11242 C<PERL_REVISION>, C<PERL_SUBVERSION>, C<PERL_VERSION>, C<perladmin>,
11243 C<perllibs>, C<perlpath>, C<pg>, C<phostname>, C<pidtype>, C<plibpth>,
11244 C<pm_apiversion>, C<pmake>, C<pr>, C<prefix>, C<prefixexp>, C<privlib>,
11245 C<privlibexp>, C<procselfexe>, C<prototype>, C<ptrsize>
11246
11247 =item q
11248
11249 C<quadkind>, C<quadtype>
11250
11251 =item r
11252
11253 C<randbits>, C<randfunc>, C<random_r_proto>, C<randseedtype>, C<ranlib>,
11254 C<rd_nodata>, C<readdir64_r_proto>, C<readdir_r_proto>, C<revision>, C<rm>,
11255 C<rmail>, C<run>, C<runnm>
11256
11257 =item s
11258
11259 C<sched_yield>, C<scriptdir>, C<scriptdirexp>, C<sed>, C<seedfunc>,
11260 C<selectminbits>, C<selecttype>, C<sendmail>, C<setgrent_r_proto>,
11261 C<sethostent_r_proto>, C<setlocale_r_proto>, C<setnetent_r_proto>,
11262 C<setprotoent_r_proto>, C<setpwent_r_proto>, C<setservent_r_proto>, C<sh>,
11263 C<shar>, C<sharpbang>, C<shmattype>, C<shortsize>, C<shrpenv>, C<shsharp>,
11264 C<sig_count>, C<sig_name>, C<sig_name_init>, C<sig_num>, C<sig_num_init>,
11265 C<sig_size>, C<signal_t>, C<sitearch>, C<sitearchexp>, C<sitebin>,
11266 C<sitebinexp>, C<sitehtml1dir>, C<sitehtml1direxp>, C<sitehtml3dir>,
11267 C<sitehtml3direxp>, C<sitelib>, C<sitelib_stem>, C<sitelibexp>,
11268 C<siteman1dir>, C<siteman1direxp>, C<siteman3dir>, C<siteman3direxp>,
11269 C<siteprefix>, C<siteprefixexp>, C<sitescript>, C<sitescriptexp>,
11270 C<sizesize>, C<sizetype>, C<sleep>, C<smail>, C<so>, C<sockethdr>,
11271 C<socketlib>, C<socksizetype>, C<sort>, C<spackage>, C<spitshell>,
11272 C<sPRId64>, C<sPRIeldbl>, C<sPRIEUldbl>, C<sPRIfldbl>, C<sPRIFUldbl>,
11273 C<sPRIgldbl>, C<sPRIGUldbl>, C<sPRIi64>, C<sPRIo64>, C<sPRIu64>,
11274 C<sPRIx64>, C<sPRIXU64>, C<srand48_r_proto>, C<srandom_r_proto>, C<src>,
11275 C<sSCNfldbl>, C<ssizetype>, C<startperl>, C<startsh>, C<static_ext>,
11276 C<stdchar>, C<stdio_base>, C<stdio_bufsiz>, C<stdio_cnt>, C<stdio_filbuf>,
11277 C<stdio_ptr>, C<stdio_stream_array>, C<strerror_r_proto>, C<strings>,
11278 C<submit>, C<subversion>, C<sysman>
11279
11280 =item t
11281
11282 C<tail>, C<tar>, C<targetarch>, C<tbl>, C<tee>, C<test>, C<timeincl>,
11283 C<timetype>, C<tmpnam_r_proto>, C<to>, C<touch>, C<tr>, C<trnl>, C<troff>,
11284 C<ttyname_r_proto>
11285
11286 =item u
11287
11288 C<u16size>, C<u16type>, C<u32size>, C<u32type>, C<u64size>, C<u64type>,
11289 C<u8size>, C<u8type>, C<uidformat>, C<uidsign>, C<uidsize>, C<uidtype>,
11290 C<uname>, C<uniq>, C<uquadtype>, C<use5005threads>, C<use64bitall>,
11291 C<use64bitint>, C<usecrosscompile>, C<usedl>, C<usefaststdio>,
11292 C<useithreads>, C<uselargefiles>, C<uselongdouble>, C<usemorebits>,
11293 C<usemultiplicity>, C<usemymalloc>, C<usenm>, C<useopcode>, C<useperlio>,
11294 C<useposix>, C<usereentrant>, C<usesfio>, C<useshrplib>, C<usesocks>,
11295 C<usethreads>, C<usevendorprefix>, C<usevfork>, C<usrinc>, C<uuname>,
11296 C<uvoformat>, C<uvsize>, C<uvtype>, C<uvuformat>, C<uvxformat>,
11297 C<uvXUformat>
11298
11299 =item v
11300
11301 C<vendorarch>, C<vendorarchexp>, C<vendorbin>, C<vendorbinexp>,
11302 C<vendorhtml1dir>, C<vendorhtml1direxp>, C<vendorhtml3dir>,
11303 C<vendorhtml3direxp>, C<vendorlib>, C<vendorlib_stem>, C<vendorlibexp>,
11304 C<vendorman1dir>, C<vendorman1direxp>, C<vendorman3dir>,
11305 C<vendorman3direxp>, C<vendorprefix>, C<vendorprefixexp>, C<vendorscript>,
11306 C<vendorscriptexp>, C<version>, C<version_patchlevel_string>,
11307 C<versiononly>, C<vi>, C<voidflags>
11308
11309 =item x
11310
11311 C<xlibpth>, C<xs_apiversion>
11312
11313 =item y
11314
11315 C<yacc>, C<yaccflags>
11316
11317 =item z
11318
11319 C<zcat>, C<zip>
11320
11321 =back
11322
11323 =item NOTE
11324
11325 =back
11326
11327 =head2 Cwd - get pathname of current working directory
11328
11329 =over 4
11330
11331 =item SYNOPSIS
11332
11333 =item DESCRIPTION
11334
11335 =over 4
11336
11337 =item getcwd and friends
11338
11339 getcwd, cwd, fastcwd, fastgetcwd
11340
11341 =item abs_path and friends
11342
11343 abs_path, realpath, fast_abs_path
11344
11345 =item $ENV{PWD}
11346
11347 =back
11348
11349 =item NOTES
11350
11351 =item SEE ALSO
11352
11353 =back
11354
11355 =head2 DB - programmatic interface to the Perl debugging API (draft,
11356 subject to
11357 change)
11358
11359 =over 4
11360
11361 =item SYNOPSIS
11362
11363 =item DESCRIPTION
11364
11365 =over 4
11366
11367 =item Global Variables
11368
11369  $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace,  @DB::args, 
11370 @DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
11371 $DB::lineno
11372
11373 =item API Methods
11374
11375 CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
11376 CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
11377
11378 =item Client Callback Methods
11379
11380 CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
11381 CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
11382 CLIENT->output(LIST)
11383
11384 =back
11385
11386 =item BUGS
11387
11388 =item AUTHOR
11389
11390 =back
11391
11392 =head2 DB_File - Perl5 access to Berkeley DB version 1.x
11393
11394 =over 4
11395
11396 =item SYNOPSIS
11397
11398 =item DESCRIPTION
11399
11400 B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
11401
11402 =over 4
11403
11404 =item Using DB_File with Berkeley DB version 2 or greater
11405
11406 =item Interface to Berkeley DB
11407
11408 =item Opening a Berkeley DB Database File
11409
11410 =item Default Parameters
11411
11412 =item In Memory Databases
11413
11414 =back
11415
11416 =item DB_HASH
11417
11418 =over 4
11419
11420 =item A Simple Example
11421
11422 =back
11423
11424 =item DB_BTREE
11425
11426 =over 4
11427
11428 =item Changing the BTREE sort order
11429
11430 =item Handling Duplicate Keys 
11431
11432 =item The get_dup() Method
11433
11434 =item The find_dup() Method
11435
11436 =item The del_dup() Method
11437
11438 =item Matching Partial Keys 
11439
11440 =back
11441
11442 =item DB_RECNO
11443
11444 =over 4
11445
11446 =item The 'bval' Option
11447
11448 =item A Simple Example
11449
11450 =item Extra RECNO Methods
11451
11452 B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
11453 B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
11454 length, elements);>
11455
11456 =item Another Example
11457
11458 =back
11459
11460 =item THE API INTERFACE
11461
11462 B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
11463 $X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
11464 $flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
11465 $value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
11466
11467 =item DBM FILTERS
11468
11469 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
11470 B<filter_fetch_value>
11471
11472 =over 4
11473
11474 =item The Filter
11475
11476 =item An Example -- the NULL termination problem.
11477
11478 =item Another Example -- Key is a C int.
11479
11480 =back
11481
11482 =item HINTS AND TIPS 
11483
11484 =over 4
11485
11486 =item Locking: The Trouble with fd
11487
11488 =item Safe ways to lock a database
11489
11490 B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
11491
11492 =item Sharing Databases With C Applications
11493
11494 =item The untie() Gotcha
11495
11496 =back
11497
11498 =item COMMON QUESTIONS
11499
11500 =over 4
11501
11502 =item Why is there Perl source in my database?
11503
11504 =item How do I store complex data structures with DB_File?
11505
11506 =item What does "Invalid Argument" mean?
11507
11508 =item What does "Bareword 'DB_File' not allowed" mean? 
11509
11510 =back
11511
11512 =item REFERENCES
11513
11514 =item HISTORY
11515
11516 =item BUGS
11517
11518 =item AVAILABILITY
11519
11520 =item COPYRIGHT
11521
11522 =item SEE ALSO
11523
11524 =item AUTHOR
11525
11526 =back
11527
11528 =head2 Data::Dumper - stringified perl data structures, suitable for both
11529 printing and C<eval>
11530
11531 =over 4
11532
11533 =item SYNOPSIS
11534
11535 =item DESCRIPTION
11536
11537 =over 4
11538
11539 =item Methods
11540
11541 I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
11542 I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
11543 I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
11544 I<$OBJ>->Reset
11545
11546 =item Functions
11547
11548 Dumper(I<LIST>)
11549
11550 =item Configuration Variables or Methods
11551
11552 =item Exports
11553
11554 Dumper
11555
11556 =back
11557
11558 =item EXAMPLES
11559
11560 =item BUGS
11561
11562 =over 4
11563
11564 =item NOTE
11565
11566 =back
11567
11568 =item AUTHOR
11569
11570 =item VERSION
11571
11572 =item SEE ALSO
11573
11574 =back
11575
11576 =head2 Devel::DProf - a Perl code profiler
11577
11578 =over 4
11579
11580 =item SYNOPSIS
11581
11582 =item DESCRIPTION
11583
11584 =item PROFILE FORMAT
11585
11586 =item AUTOLOAD
11587
11588 =item ENVIRONMENT
11589
11590 =item BUGS
11591
11592 =item SEE ALSO
11593
11594 =back
11595
11596 =head2 Devel::PPPort - Perl/Pollution/Portability
11597
11598 =over 4
11599
11600 =item SYNOPSIS
11601
11602 =item DESCRIPTION
11603
11604 =over 4
11605
11606 =item WriteFile
11607
11608 =back
11609
11610 =item ppport.h
11611
11612 =item AUTHOR
11613
11614 =item SEE ALSO
11615
11616 =back
11617
11618 =head2 Devel::Peek - A data debugging tool for the XS programmer
11619
11620 =over 4
11621
11622 =item SYNOPSIS
11623
11624 =item DESCRIPTION
11625
11626 =over 4
11627
11628 =item Runtime debugging
11629
11630 =item Memory footprint debugging
11631
11632 =back
11633
11634 =item EXAMPLES
11635
11636 =over 4
11637
11638 =item A simple scalar string
11639
11640 =item A simple scalar number
11641
11642 =item A simple scalar with an extra reference
11643
11644 =item A reference to a simple scalar
11645
11646 =item A reference to an array
11647
11648 =item A reference to a hash
11649
11650 =item Dumping a large array or hash
11651
11652 =item A reference to an SV which holds a C pointer
11653
11654 =item A reference to a subroutine
11655
11656 =back
11657
11658 =item EXPORTS
11659
11660 =item BUGS
11661
11662 =item AUTHOR
11663
11664 =item SEE ALSO
11665
11666 =back
11667
11668 =head2 Devel::SelfStubber - generate stubs for a SelfLoading module
11669
11670 =over 4
11671
11672 =item SYNOPSIS
11673
11674 =item DESCRIPTION
11675
11676 =back
11677
11678 =head2 Digest:: - Modules that calculate message digests
11679
11680 =over 4
11681
11682 =item SYNOPSIS
11683
11684 =item DESCRIPTION
11685
11686 I<binary>, I<hex>, I<base64>
11687
11688 =item OO INTERFACE
11689
11690 $ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
11691 Digest::XXX->new($arg,...), $other_ctx = $ctx->clone, $ctx->reset,
11692 $ctx->add($data,...), $ctx->addfile($io_handle), $ctx->digest,
11693 $ctx->hexdigest, $ctx->b64digest
11694
11695 =item SEE ALSO
11696
11697 =item AUTHOR
11698
11699 =back
11700
11701 =head2 Digest::MD5 - Perl interface to the MD5 Algorithm
11702
11703 =over 4
11704
11705 =item SYNOPSIS
11706
11707 =item DESCRIPTION
11708
11709 =item FUNCTIONS
11710
11711 md5($data,...), md5_hex($data,...), md5_base64($data,...)
11712
11713 =item METHODS
11714
11715 $md5 = Digest::MD5->new, $md5->reset, $md5->clone, $md5->add($data,...),
11716 $md5->addfile($io_handle), $md5->digest, $md5->hexdigest, $md5->b64digest
11717
11718 =item EXAMPLES
11719
11720 =item SEE ALSO
11721
11722 =item COPYRIGHT
11723
11724 =item AUTHORS
11725
11726 =back
11727
11728 =head2 DirHandle - supply object methods for directory handles
11729
11730 =over 4
11731
11732 =item SYNOPSIS
11733
11734 =item DESCRIPTION
11735
11736 =item NOTES
11737
11738 =back
11739
11740 =head2 Dumpvalue - provides screen dump of Perl data.
11741
11742 =over 4
11743
11744 =item SYNOPSIS
11745
11746 =item DESCRIPTION
11747
11748 =over 4
11749
11750 =item Creation
11751
11752 C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
11753 C<dumpDBFiles>, C<dumpPackages>, C<dumpReused>, C<tick>, C<quoteHighBit>,
11754 C<printUndef>, C<usageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
11755 stopDbSignal
11756
11757 =item Methods
11758
11759 dumpValue, dumpValues, stringify, dumpvars, set_quote, set_unctrl,
11760 compactDump, veryCompact, set, get
11761
11762 =back
11763
11764 =back
11765
11766 =head2 DynaLoader - Dynamically load C libraries into Perl code
11767
11768 =over 4
11769
11770 =item SYNOPSIS
11771
11772 =item DESCRIPTION
11773
11774 @dl_library_path, @dl_resolve_using, @dl_require_symbols, @dl_librefs,
11775 @dl_modules, dl_error(), $dl_debug, dl_findfile(), dl_expandspec(),
11776 dl_load_file(), dl_unload_file(), dl_load_flags(), dl_find_symbol(),
11777 dl_find_symbol_anywhere(), dl_undef_symbols(), dl_install_xsub(),
11778 bootstrap()
11779
11780 =item AUTHOR
11781
11782 =back
11783
11784 =head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
11785 Perl code
11786
11787 =over 4
11788
11789 =item SYNOPSIS
11790
11791 =item DESCRIPTION
11792
11793 =over 4
11794
11795 =item Migration from C<DynaLoader>
11796
11797 =item Backward compatible boilerplate
11798
11799 =back
11800
11801 =item Order of initialization: early load()
11802
11803 =over 4
11804
11805 =item The most hairy case
11806
11807 =back
11808
11809 =item LIMITATIONS
11810
11811 =item AUTHOR
11812
11813 =back
11814
11815 =head2 Encode - character encodings
11816
11817 =over 4
11818
11819 =item SYNOPSIS
11820
11821 =over 4
11822
11823 =item Table of Contents
11824
11825 =back
11826
11827 =item DESCRIPTION
11828
11829 =over 4
11830
11831 =item TERMINOLOGY
11832
11833 =back
11834
11835 =item PERL ENCODING API
11836
11837 $octets  = encode(ENCODING, $string [, CHECK]), $string = decode(ENCODING,
11838 $octets [, CHECK]), [$length =] from_to($octets, FROM_ENC, TO_ENC [,
11839 CHECK]), $octets = encode_utf8($string);, $string = decode_utf8($octets [,
11840 CHECK]);
11841
11842 =over 4
11843
11844 =item Listing available encodings
11845
11846 =item Defining Aliases
11847
11848 =back
11849
11850 =item Encoding via PerlIO
11851
11852 =item Handling Malformed Data
11853
11854 I<CHECK> = Encode::FB_DEFAULT ( == 0), I<CHECK> = Encode::FB_CROAK ( == 1),
11855 I<CHECK> = Encode::FB_QUIET, I<CHECK> = Encode::FB_WARN, perlqq mode
11856 (I<CHECK> = Encode::FB_PERLQQ), HTML charref mode (I<CHECK> =
11857 Encode::FB_HTMLCREF), XML charref mode (I<CHECK> = Encode::FB_XMLCREF), The
11858 bitmask
11859
11860 =over 4
11861
11862 =item Unimplemented fallback schemes
11863
11864 =back
11865
11866 =item Defining Encodings
11867
11868 =item The UTF-8 flag
11869
11870 Goal #1:, Goal #2:, Goal #3:, Goal #4:
11871
11872 =over 4
11873
11874 =item Messing with Perl's Internals
11875
11876 is_utf8(STRING [, CHECK]), _utf8_on(STRING), _utf8_off(STRING)
11877
11878 =back
11879
11880 =item SEE ALSO
11881
11882 =item MAINTAINER
11883
11884 =back
11885
11886 =head2 Encode::Alias - alias definitions to encodings
11887
11888 =over 4
11889
11890 =item SYNOPSIS
11891
11892 =item DESCRIPTION
11893
11894 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
11895 reference, e.g.:
11896
11897 =over 4
11898
11899 =item Alias overloading
11900
11901 =back
11902
11903 =item SEE ALSO
11904
11905 =back
11906
11907 =head2 Encode::Byte - Single Byte Encodings
11908
11909 =over 4
11910
11911 =item SYNOPSIS
11912
11913 =item ABSTRACT
11914
11915 =item DESCRIPTION
11916
11917 =item SEE ALSO
11918
11919 =back
11920
11921 =head2 Encode::CJKConstants -- Internally used by Encode::??::ISO_2022_*
11922
11923 =head2 Encode::CN - China-based Chinese Encodings
11924
11925 =over 4
11926
11927 =item SYNOPSIS
11928
11929 =item DESCRIPTION
11930
11931 =item NOTES
11932
11933 =item BUGS
11934
11935 =item SEE ALSO
11936
11937 =back
11938
11939 =head2 Encode::CN::HZ -- internally used by Encode::CN
11940
11941 =head2 Encode::Config -- internally used by Encode
11942
11943 =head2 Encode::EBCDIC - EBCDIC Encodings
11944
11945 =over 4
11946
11947 =item SYNOPSIS
11948
11949 =item ABSTRACT
11950
11951 =item DESCRIPTION
11952
11953 =item SEE ALSO
11954
11955 =back
11956
11957 =head2 Encode::Encoding - Encode Implementation Base Class
11958
11959 =over 4
11960
11961 =item SYNOPSIS
11962
11963 =item DESCRIPTION
11964
11965 =over 4
11966
11967 =item Methods you should implement
11968
11969 -E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
11970 -E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
11971
11972 =item Other methods defined in Encode::Encodings
11973
11974 -E<gt>name, -E<gt>renew, -E<gt>perlio_ok(), -E<gt>needs_lines()
11975
11976 =item Example: Encode::ROT13
11977
11978 =back
11979
11980 =item Why the heck Encode API is different?
11981
11982 =over 4
11983
11984 =item Compiled Encodings
11985
11986 =back
11987
11988 =item SEE ALSO
11989
11990 Scheme 1, Scheme 2, Other Schemes
11991
11992 =back
11993
11994 =head2 Encode::Guess -- Guesses encoding from data
11995
11996 =over 4
11997
11998 =item SYNOPSIS
11999
12000 =item ABSTRACT
12001
12002 =item DESCRIPTION
12003
12004 Encode::Guess->set_suspects, Encode::Guess->add_suspects,
12005 Encode::decode("Guess" ...), Encode::Guess->guess($data),
12006 guess_encoding($data, [, I<list of suspects>])
12007
12008 =item CAVEATS
12009
12010 =item TO DO
12011
12012 =item SEE ALSO
12013
12014 =back
12015
12016 =head2 Encode::JP - Japanese Encodings
12017
12018 =over 4
12019
12020 =item SYNOPSIS
12021
12022 =item ABSTRACT
12023
12024 =item DESCRIPTION
12025
12026 =item Note on ISO-2022-JP(-1)?
12027
12028 =item BUGS
12029
12030 =item SEE ALSO
12031
12032 =back
12033
12034 =head2 Encode::JP::H2Z -- internally used by Encode::JP::2022_JP*
12035
12036 =head2 Encode::JP::JIS7 -- internally used by Encode::JP
12037
12038 =head2 Encode::KR - Korean Encodings
12039
12040 =over 4
12041
12042 =item SYNOPSIS
12043
12044 =item DESCRIPTION
12045
12046 =item BUGS
12047
12048 =item SEE ALSO
12049
12050 =back
12051
12052 =head2 Encode::KR::2022_KR -- internally used by Encode::KR
12053
12054 =head2 Encode::MIME::Header -- MIME 'B' and 'Q' header encoding
12055
12056 =over 4
12057
12058 =item SYNOPSIS
12059
12060 =item ABSTRACT
12061
12062 =item DESCRIPTION
12063
12064 =item BUGS
12065
12066 =item SEE ALSO
12067
12068 =back
12069
12070 =head2 Encode::PerlIO -- a detailed document on Encode and PerlIO
12071
12072 =over 4
12073
12074 =item Overview
12075
12076 =item How does it work?
12077
12078 =item Line Buffering
12079
12080 =over 4
12081
12082 =item How can I tell whether my encoding fully supports PerlIO ?
12083
12084 =back
12085
12086 =item SEE ALSO
12087
12088 =back
12089
12090 =head2 Encode::Supported -- Encodings supported by Encode
12091
12092 =over 4
12093
12094 =item DESCRIPTION
12095
12096 =over 4
12097
12098 =item Encoding Names
12099
12100 =back
12101
12102 =item Supported Encodings
12103
12104 =over 4
12105
12106 =item Built-in Encodings
12107
12108 =item Encode::Unicode -- other Unicode encodings
12109
12110 =item Encode::Byte -- Extended ASCII
12111
12112 ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
12113 the Cyrillic world, gsm0338 - Hentai Latin 1
12114
12115 =item CJK: Chinese, Japanese, Korean (Multibyte)
12116
12117 Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
12118 Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
12119 Encode::JIS2K -- JIS X 0213 encodings via CPAN
12120
12121 =item Miscellaneous encodings
12122
12123 Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
12124
12125 =back
12126
12127 =item Unsupported encodings
12128
12129   ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
12130 Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
12131 System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
12132 Various Mac encodings, (Mac) Indic encodings
12133
12134 =item Encoding vs. Charset -- terminology
12135
12136 =item Encoding Classification (by Anton Tagunov and Dan Kogai)
12137
12138 =over 4
12139
12140 =item Microsoft-related naming mess
12141
12142 KS_C_5601-1987, GB2312, Big5, Shift_JIS
12143
12144 =back
12145
12146 =item Glossary
12147
12148 character repertoire, coded character set (CCS), character encoding scheme
12149 (CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
12150 UTF-16
12151
12152 =item See Also
12153
12154 =item References
12155
12156 ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
12157 RFC, UC, Unicode Glossary
12158
12159 =over 4
12160
12161 =item Other Notable Sites
12162
12163 czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
12164 "Introduction to i18n"
12165
12166 =item Offline sources
12167
12168 C<CJKV Information Processing> by Ken Lunde
12169
12170 =back
12171
12172 =back
12173
12174 =head2 Encode::Symbol - Symbol Encodings
12175
12176 =over 4
12177
12178 =item SYNOPSIS
12179
12180 =item ABSTRACT
12181
12182 =item DESCRIPTION
12183
12184 =item SEE ALSO
12185
12186 =back
12187
12188 =head2 Encode::TW - Taiwan-based Chinese Encodings
12189
12190 =over 4
12191
12192 =item SYNOPSIS
12193
12194 =item DESCRIPTION
12195
12196 =item NOTES
12197
12198 =item BUGS
12199
12200 =item SEE ALSO
12201
12202 =back
12203
12204 =head2 Encode::Unicode -- Various Unicode Transformation Formats
12205
12206 =over 4
12207
12208 =item SYNOPSIS
12209
12210 =item ABSTRACT
12211
12212 L<http://www.unicode.org/glossary/> says:, Quick Reference
12213
12214 =item Size, Endianness, and BOM
12215
12216 =over 4
12217
12218 =item by size
12219
12220 =item by endianness
12221
12222 BOM as integer when fetched in network byte order
12223
12224 =back
12225
12226 =item Surrogate Pairs
12227
12228 =item SEE ALSO
12229
12230 =back
12231
12232 =head2 Encode::Unicode::UTF7 -- UTF-7 encoding
12233
12234 =over 4
12235
12236 =item SYNOPSIS
12237
12238 =item ABSTRACT
12239
12240 =item In Practice
12241
12242 =item SEE ALSO
12243
12244 =back
12245
12246 =head2 Encode::lib::Encode::Alias, Encode::Alias - alias definitions to
12247 encodings
12248
12249 =over 4
12250
12251 =item SYNOPSIS
12252
12253 =item DESCRIPTION
12254
12255 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
12256 reference, e.g.:
12257
12258 =over 4
12259
12260 =item Alias overloading
12261
12262 =back
12263
12264 =item SEE ALSO
12265
12266 =back
12267
12268 =head2 Encode::lib::Encode::CJKConstants, Encode::CJKConstants.pm --
12269 Internally used by Encode::??::ISO_2022_*
12270
12271 =head2 Encode::lib::Encode::CN::HZ, Encode::CN::HZ -- internally used by
12272 Encode::CN
12273
12274 =head2 Encode::lib::Encode::Config, Encode::Config -- internally used by
12275 Encode
12276
12277 =head2 Encode::lib::Encode::Encoding, Encode::Encoding - Encode
12278 Implementation Base Class
12279
12280 =over 4
12281
12282 =item SYNOPSIS
12283
12284 =item DESCRIPTION
12285
12286 =over 4
12287
12288 =item Methods you should implement
12289
12290 -E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
12291 -E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
12292
12293 =item Other methods defined in Encode::Encodings
12294
12295 -E<gt>name, -E<gt>renew, -E<gt>perlio_ok(), -E<gt>needs_lines()
12296
12297 =item Example: Encode::ROT13
12298
12299 =back
12300
12301 =item Why the heck Encode API is different?
12302
12303 =over 4
12304
12305 =item Compiled Encodings
12306
12307 =back
12308
12309 =item SEE ALSO
12310
12311 Scheme 1, Scheme 2, Other Schemes
12312
12313 =back
12314
12315 =head2 Encode::lib::Encode::Guess, Encode::Guess -- Guesses encoding from
12316 data
12317
12318 =over 4
12319
12320 =item SYNOPSIS
12321
12322 =item ABSTRACT
12323
12324 =item DESCRIPTION
12325
12326 Encode::Guess->set_suspects, Encode::Guess->add_suspects,
12327 Encode::decode("Guess" ...), Encode::Guess->guess($data),
12328 guess_encoding($data, [, I<list of suspects>])
12329
12330 =item CAVEATS
12331
12332 =item TO DO
12333
12334 =item SEE ALSO
12335
12336 =back
12337
12338 =head2 Encode::lib::Encode::JP::H2Z, Encode::JP::H2Z -- internally used by
12339 Encode::JP::2022_JP*
12340
12341 =head2 Encode::lib::Encode::JP::JIS7, Encode::JP::JIS7 -- internally used
12342 by Encode::JP
12343
12344 =head2 Encode::lib::Encode::KR::2022_KR, Encode::KR::2022_KR -- internally
12345 used by Encode::KR
12346
12347 =head2 Encode::lib::Encode::MIME::Header, Encode::MIME::Header -- MIME 'B'
12348 and 'Q' header encoding
12349
12350 =over 4
12351
12352 =item SYNOPSIS
12353
12354 =item ABSTRACT
12355
12356 =item DESCRIPTION
12357
12358 =item BUGS
12359
12360 =item SEE ALSO
12361
12362 =back
12363
12364 =head2 Encode::lib::Encode::PerlIO, Encode::PerlIO -- a detailed document
12365 on Encode and PerlIO
12366
12367 =over 4
12368
12369 =item Overview
12370
12371 =item How does it work?
12372
12373 =item Line Buffering
12374
12375 =over 4
12376
12377 =item How can I tell whether my encoding fully supports PerlIO ?
12378
12379 =back
12380
12381 =item SEE ALSO
12382
12383 =back
12384
12385 =head2 Encode::lib::Encode::Supported, Encode::Supported -- Encodings
12386 supported by Encode
12387
12388 =over 4
12389
12390 =item DESCRIPTION
12391
12392 =over 4
12393
12394 =item Encoding Names
12395
12396 =back
12397
12398 =item Supported Encodings
12399
12400 =over 4
12401
12402 =item Built-in Encodings
12403
12404 =item Encode::Unicode -- other Unicode encodings
12405
12406 =item Encode::Byte -- Extended ASCII
12407
12408 ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
12409 the Cyrillic world, gsm0338 - Hentai Latin 1
12410
12411 =item CJK: Chinese, Japanese, Korean (Multibyte)
12412
12413 Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
12414 Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
12415 Encode::JIS2K -- JIS X 0213 encodings via CPAN
12416
12417 =item Miscellaneous encodings
12418
12419 Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
12420
12421 =back
12422
12423 =item Unsupported encodings
12424
12425   ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
12426 Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
12427 System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
12428 Various Mac encodings, (Mac) Indic encodings
12429
12430 =item Encoding vs. Charset -- terminology
12431
12432 =item Encoding Classification (by Anton Tagunov and Dan Kogai)
12433
12434 =over 4
12435
12436 =item Microsoft-related naming mess
12437
12438 KS_C_5601-1987, GB2312, Big5, Shift_JIS
12439
12440 =back
12441
12442 =item Glossary
12443
12444 character repertoire, coded character set (CCS), character encoding scheme
12445 (CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
12446 UTF-16
12447
12448 =item See Also
12449
12450 =item References
12451
12452 ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
12453 RFC, UC, Unicode Glossary
12454
12455 =over 4
12456
12457 =item Other Notable Sites
12458
12459 czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
12460 "Introduction to i18n"
12461
12462 =item Offline sources
12463
12464 C<CJKV Information Processing> by Ken Lunde
12465
12466 =back
12467
12468 =back
12469
12470 =head2 Encode::lib::Encode::Unicode::UTF7, Encode::Unicode::UTF7 -- UTF-7
12471 encoding
12472
12473 =over 4
12474
12475 =item SYNOPSIS
12476
12477 =item ABSTRACT
12478
12479 =item In Practice
12480
12481 =item SEE ALSO
12482
12483 =back
12484
12485 =head2 Encode::lib::Encoder, Encode::Encoder -- Object Oriented Encoder
12486
12487 =over 4
12488
12489 =item SYNOPSIS
12490
12491 =item ABSTRACT
12492
12493 =item Description
12494
12495 =over 4
12496
12497 =item Predefined Methods
12498
12499 $e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
12500 $e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
12501 $e-E<gt>bytes([$encoding])
12502
12503 =item Example: base64 transcoder
12504
12505 =item Operator Overloading
12506
12507 =back
12508
12509 =item SEE ALSO
12510
12511 =back
12512
12513 =head2 Encodencoding, encoding - allows you to write your script in
12514 non-ascii or non-utf8
12515
12516 =over 4
12517
12518 =item SYNOPSIS
12519
12520 =item ABSTRACT
12521
12522 =over 4
12523
12524 =item Literal Conversions
12525
12526 =item PerlIO layers for C<STD(IN|OUT)>
12527
12528 =back
12529
12530 =item FEATURES THAT REQUIRE 5.8.1
12531
12532 "NON-EUC" doublebyte encodings, tr//, DATA pseudo-filehandle
12533
12534 =item USAGE
12535
12536 use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
12537 I<ENCNAME_IN> ...] ;, use encoding I<ENCNAME> Filter=E<gt>1;, no encoding;
12538
12539 =item The Filter Option
12540
12541 =over 4
12542
12543 =item Filter-related changes at Encode version 1.87
12544
12545 =back
12546
12547 =item CAVEATS
12548
12549 =over 4
12550
12551 =item NOT SCOPED
12552
12553 =item DO NOT MIX MULTIPLE ENCODINGS
12554
12555 =item tr/// with ranges
12556
12557 Legend of characters above
12558
12559 =back
12560
12561 =item EXAMPLE - Greekperl
12562
12563 =item KNOWN PROBLEMS
12564
12565 literals in regex that are longer than 127 bytes, EBCDIC, format
12566
12567 =item HISTORY
12568
12569 =item SEE ALSO
12570
12571 =back
12572
12573 =head2 Encoder, Encode::Encoder -- Object Oriented Encoder
12574
12575 =over 4
12576
12577 =item SYNOPSIS
12578
12579 =item ABSTRACT
12580
12581 =item Description
12582
12583 =over 4
12584
12585 =item Predefined Methods
12586
12587 $e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
12588 $e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
12589 $e-E<gt>bytes([$encoding])
12590
12591 =item Example: base64 transcoder
12592
12593 =item Operator Overloading
12594
12595 =back
12596
12597 =item SEE ALSO
12598
12599 =back
12600
12601 =head2 English - use nice English (or awk) names for ugly punctuation
12602 variables
12603
12604 =over 4
12605
12606 =item SYNOPSIS
12607
12608 =item DESCRIPTION
12609
12610 =item PERFORMANCE
12611
12612 =back
12613
12614 =head2 Env - perl module that imports environment variables as scalars or
12615 arrays
12616
12617 =over 4
12618
12619 =item SYNOPSIS
12620
12621 =item DESCRIPTION
12622
12623 =item LIMITATIONS
12624
12625 =item AUTHOR
12626
12627 =back
12628
12629 =head2 Errno - System errno constants
12630
12631 =over 4
12632
12633 =item SYNOPSIS
12634
12635 =item DESCRIPTION
12636
12637 =item CAVEATS
12638
12639 =item AUTHOR
12640
12641 =item COPYRIGHT
12642
12643 =back
12644
12645 =head2 Exporter - Implements default import method for modules
12646
12647 =over 4
12648
12649 =item SYNOPSIS
12650
12651 =item DESCRIPTION
12652
12653 =over 4
12654
12655 =item How to Export
12656
12657 =item Selecting What To Export
12658
12659 =item How to Import
12660
12661 C<use ModuleName;>, C<use ModuleName ();>, C<use ModuleName qw(...);>
12662
12663 =back
12664
12665 =item Advanced features
12666
12667 =over 4
12668
12669 =item Specialised Import Lists
12670
12671 =item Exporting without using Exporter's import method
12672
12673 =item Module Version Checking
12674
12675 =item Managing Unknown Symbols
12676
12677 =item Tag Handling Utility Functions
12678
12679 =item Generating combined tags
12680
12681 =item C<AUTOLOAD>ed Constants
12682
12683 =back
12684
12685 =back
12686
12687 =head2 Exporter::Heavy - Exporter guts
12688
12689 =over 4
12690
12691 =item SYNOPSIS
12692
12693 =item DESCRIPTION
12694
12695 =back
12696
12697 =head2 ExtUtils::Command - utilities to replace common UNIX commands in
12698 Makefiles etc.
12699
12700 =over 4
12701
12702 =item SYNOPSIS
12703
12704 =item DESCRIPTION
12705
12706 =back
12707
12708 cat
12709
12710 eqtime src dst
12711
12712 rm_rf files...
12713
12714 rm_f files...
12715
12716 touch files ..
12717
12718 mv source... destination
12719
12720 cp source... destination
12721
12722 chmod mode files..
12723
12724 mkpath directory..
12725
12726 test_f file
12727
12728 =over 4
12729
12730 =item BUGS
12731
12732 =item SEE ALSO 
12733
12734 =item AUTHOR
12735
12736 =back
12737
12738 =head2 ExtUtils::Command::MM - Commands for the MM's to use in Makefiles
12739
12740 =over 4
12741
12742 =item SYNOPSIS
12743
12744 =item DESCRIPTION
12745
12746 B<test_harness>
12747
12748 =back
12749
12750 B<pod2man>
12751
12752 B<warn_if_old_packlist>
12753
12754 B<perllocal_install>
12755
12756 B<uninstall>
12757
12758 =head2 ExtUtils::Constant - generate XS code to import C header constants
12759
12760 =over 4
12761
12762 =item SYNOPSIS
12763
12764 =item DESCRIPTION
12765
12766 =item USAGE
12767
12768 IV, UV, NV, PV, PVN, SV, YES, NO, UNDEF
12769
12770 =item FUNCTIONS
12771
12772 =back
12773
12774 C_stringify NAME
12775
12776 perl_stringify NAME
12777
12778 constant_types
12779
12780 memEQ_clause NAME, CHECKED_AT, INDENT
12781
12782 assign INDENT, TYPE, PRE, POST, VALUE..
12783
12784 return_clause
12785
12786 switch_clause INDENT, NAMELEN, ITEMHASH, ITEM..
12787
12788 params WHAT
12789
12790 dump_names
12791
12792 dogfood
12793
12794 C_constant, name, type, value, macro, default, pre, post, def_pre =item
12795 def_post, utf8
12796
12797 XS_constant PACKAGE, TYPES, SUBNAME, C_SUBNAME
12798
12799 autoload PACKAGE, VERSION, AUTOLOADER
12800
12801 WriteMakefileSnippet
12802
12803 WriteConstants ATTRIBUTE =E<gt> VALUE [, ...], NAME, DEFAULT_TYPE,
12804 BREAKOUT_AT, NAMES, C_FILE, XS_FILE, SUBNAME, C_SUBNAME
12805
12806 =over 4
12807
12808 =item AUTHOR
12809
12810 =back
12811
12812 =head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
12813
12814 =over 4
12815
12816 =item SYNOPSIS
12817
12818 =item DESCRIPTION
12819
12820 =item @EXPORT
12821
12822 =item FUNCTIONS
12823
12824 xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
12825 ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
12826
12827 =item EXAMPLES
12828
12829 =item SEE ALSO
12830
12831 =item AUTHOR
12832
12833 =back
12834
12835 =head2 ExtUtils::Install - install files from here to there
12836
12837 =over 4
12838
12839 =item SYNOPSIS
12840
12841 =item DESCRIPTION
12842
12843 =over 4
12844
12845 =item Functions
12846
12847 B<install>
12848
12849 =back
12850
12851 =back
12852
12853 B<install_default> I<DISCOURAGED>
12854
12855 B<uninstall>
12856
12857 B<pm_to_blib>
12858
12859 _autosplit
12860
12861 =over 4
12862
12863 =item ENVIRONMENT
12864
12865 B<PERL_INSTALL_ROOT>
12866
12867 =item AUTHOR
12868
12869 =item LICENSE
12870
12871 =back
12872
12873 =head2 ExtUtils::Installed - Inventory management of installed modules
12874
12875 =over 4
12876
12877 =item SYNOPSIS
12878
12879 =item DESCRIPTION
12880
12881 =item USAGE
12882
12883 =item FUNCTIONS
12884
12885 new(), modules(), files(), directories(), directory_tree(), validate(),
12886 packlist(), version()
12887
12888 =item EXAMPLE
12889
12890 =item AUTHOR
12891
12892 =back
12893
12894 =head2 ExtUtils::Liblist - determine libraries to use and how to use them
12895
12896 =over 4
12897
12898 =item SYNOPSIS
12899
12900 =item DESCRIPTION
12901
12902 For static extensions, For dynamic extensions at build/link time, For
12903 dynamic extensions at load time
12904
12905 =over 4
12906
12907 =item EXTRALIBS
12908
12909 =item LDLOADLIBS and LD_RUN_PATH
12910
12911 =item BSLOADLIBS
12912
12913 =back
12914
12915 =item PORTABILITY
12916
12917 =over 4
12918
12919 =item VMS implementation
12920
12921 =item Win32 implementation
12922
12923 =back
12924
12925 =item SEE ALSO
12926
12927 =back
12928
12929 =head2 ExtUtils::MM - OS adjusted ExtUtils::MakeMaker subclass
12930
12931 =over 4
12932
12933 =item SYNOPSIS
12934
12935 =item DESCRIPTION
12936
12937 =back
12938
12939 =head2 ExtUtils::MM_Any - Platform agnostic MM methods
12940
12941 =over 4
12942
12943 =item SYNOPSIS
12944
12945 =item DESCRIPTION
12946
12947 =item Inherently Cross-Platform Methods
12948
12949 installvars
12950
12951 =back
12952
12953 os_flavor_is
12954
12955 =over 4
12956
12957 =item File::Spec wrappers
12958
12959 catfile
12960
12961 =back
12962
12963 =over 4
12964
12965 =item Thought To Be Cross-Platform Methods
12966
12967 B<split_command>
12968
12969 =back
12970
12971 B<echo>
12972
12973 init_VERSION
12974
12975 wraplist
12976
12977 manifypods
12978
12979 manifypods_target
12980
12981 makemakerdflt_target
12982
12983 special_targets
12984
12985 POD2MAN_macro
12986
12987 test_via_harness
12988
12989 test_via_script
12990
12991 libscan
12992
12993 tool_autosplit
12994
12995 all_target
12996
12997 metafile_target
12998
12999 metafile_addtomanifest_target
13000
13001 =over 4
13002
13003 =item Abstract methods
13004
13005 oneliner, B<quote_literal>, B<escape_newlines>, max_exec_len,
13006 B<init_others>, init_DIRFILESEP, init_linker, init_platform,
13007 platform_constants
13008
13009 =back
13010
13011 os_flavor
13012
13013 =over 4
13014
13015 =item AUTHOR
13016
13017 =back
13018
13019 =head2 ExtUtils::MM_BeOS - methods to override UN*X behaviour in
13020 ExtUtils::MakeMaker
13021
13022 =over 4
13023
13024 =item SYNOPSIS
13025
13026 =item DESCRIPTION
13027
13028 =back
13029
13030 os_flavor (o)
13031
13032 init_linker
13033
13034 =head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
13035 ExtUtils::MakeMaker
13036
13037 =over 4
13038
13039 =item SYNOPSIS
13040
13041 =item DESCRIPTION
13042
13043 os_flavor (o)
13044
13045 =back
13046
13047 cflags (o)
13048
13049 replace_manpage_separator (o)
13050
13051 init_linker
13052
13053 =head2 ExtUtils::MM_DOS - DOS specific subclass of ExtUtils::MM_Unix
13054
13055 =over 4
13056
13057 =item SYNOPSIS
13058
13059 =item DESCRIPTION
13060
13061 =over 4
13062
13063 =item Overridden methods
13064
13065 os_flavor
13066
13067 =back
13068
13069 =back
13070
13071 B<replace_manpage_separator>
13072
13073 =over 4
13074
13075 =item AUTHOR
13076
13077 =item SEE ALSO
13078
13079 =back
13080
13081 =head2 ExtUtils::MM_MacOS - methods to override UN*X behaviour in
13082 ExtUtils::MakeMaker
13083
13084 =over 4
13085
13086 =item SYNOPSIS
13087
13088 =item DESCRIPTION
13089
13090 =back
13091
13092 maybe_command
13093
13094 guess_name
13095
13096 macify
13097
13098 patternify
13099
13100 init_main
13101
13102 init_others
13103
13104 init_platform, platform_constants
13105
13106 init_dirscan
13107
13108 init_VERSION (o)
13109
13110 special_targets (o)
13111
13112 static (o)
13113
13114 dlsyms (o)
13115
13116 dynamic (o)
13117
13118 clean (o)
13119
13120 clean_subdirs_target
13121
13122 realclean (o)
13123
13124 realclean_subdirs_target
13125
13126 rulez (o)
13127
13128 processPL (o)
13129
13130 os_flavor
13131
13132 =head2 ExtUtils::MM_NW5 - methods to override UN*X behaviour in
13133 ExtUtils::MakeMaker
13134
13135 =over 4
13136
13137 =item SYNOPSIS
13138
13139 =item DESCRIPTION
13140
13141 =back
13142
13143 os_flavor
13144
13145 init_platform (o), platform_constants
13146
13147 const_cccmd (o)
13148
13149 static_lib (o)
13150
13151 dynamic_lib (o)
13152
13153 =head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
13154 ExtUtils::MakeMaker
13155
13156 =over 4
13157
13158 =item SYNOPSIS
13159
13160 =item DESCRIPTION
13161
13162 =item METHODS
13163
13164 init_dist (o)
13165
13166 =back
13167
13168 init_linker
13169
13170 os_flavor
13171
13172 =head2 ExtUtils::MM_UWIN - U/WIN specific subclass of ExtUtils::MM_Unix
13173
13174 =over 4
13175
13176 =item SYNOPSIS
13177
13178 =item DESCRIPTION
13179
13180 =over 4
13181
13182 =item Overridden methods
13183
13184 os_flavor
13185
13186 =back
13187
13188 =back
13189
13190 B<replace_manpage_separator>
13191
13192 =over 4
13193
13194 =item AUTHOR
13195
13196 =item SEE ALSO
13197
13198 =back
13199
13200 =head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
13201
13202 =over 4
13203
13204 =item SYNOPSIS
13205
13206 =item DESCRIPTION
13207
13208 =item METHODS
13209
13210 =back
13211
13212 =over 4
13213
13214 =item Methods
13215
13216 os_flavor (o)
13217
13218 =back
13219
13220 c_o (o)
13221
13222 cflags (o)
13223
13224 clean (o)
13225
13226 clean_subdirs_target
13227
13228 const_cccmd (o)
13229
13230 const_config (o)
13231
13232 const_loadlibs (o)
13233
13234 constants (o)
13235
13236 depend (o)
13237
13238 dir_target (o)
13239
13240 init_DEST
13241
13242 init_dist
13243
13244 dist (o)
13245
13246 dist_basics (o)
13247
13248 dist_ci (o)
13249
13250 dist_core (o)
13251
13252 B<dist_target>
13253
13254 B<tardist_target>
13255
13256 B<zipdist_target>
13257
13258 B<tarfile_target>
13259
13260 zipfile_target
13261
13262 uutardist_target
13263
13264 shdist_target
13265
13266 distdir
13267
13268 dist_test
13269
13270 dlsyms (o)
13271
13272 dynamic (o)
13273
13274 dynamic_bs (o)
13275
13276 dynamic_lib (o)
13277
13278 exescan
13279
13280 extliblist
13281
13282 find_perl
13283
13284 find_tests
13285
13286 =over 4
13287
13288 =item Methods to actually produce chunks of text for the Makefile
13289
13290 fixin
13291
13292 =back
13293
13294 force (o)
13295
13296 guess_name
13297
13298 has_link_code
13299
13300 init_dirscan
13301
13302 init_DIRFILESEP
13303
13304 init_main
13305
13306 init_others
13307
13308 init_INST
13309
13310 init_INSTALL
13311
13312 init_linker
13313
13314 init_lib2arch
13315
13316 init_PERL
13317
13318 init_platform (o), platform_constants (o)
13319
13320 init_PERM
13321
13322 init_xs
13323
13324 install (o)
13325
13326 installbin (o)
13327
13328 linkext (o)
13329
13330 lsdir
13331
13332 macro (o)
13333
13334 makeaperl (o)
13335
13336 makefile (o)
13337
13338 maybe_command
13339
13340 needs_linking (o)
13341
13342 nicetext
13343
13344 parse_abstract
13345
13346 parse_version
13347
13348 pasthru (o)
13349
13350 perl_script
13351
13352 perldepend (o)
13353
13354 perm_rw (o)
13355
13356 perm_rwx (o)
13357
13358 pm_to_blib
13359
13360 post_constants (o)
13361
13362 post_initialize (o)
13363
13364 postamble (o)
13365
13366 ppd
13367
13368 prefixify
13369
13370 processPL (o)
13371
13372 quote_paren
13373
13374 realclean (o)
13375
13376 realclean_subdirs_target
13377
13378 replace_manpage_separator
13379
13380 oneliner (o)
13381
13382 quote_literal
13383
13384 escape_newlines
13385
13386 max_exec_len
13387
13388 static (o)
13389
13390 static_lib (o)
13391
13392 staticmake (o)
13393
13394 subdir_x (o)
13395
13396 subdirs (o)
13397
13398 test (o)
13399
13400 test_via_harness (override)
13401
13402 test_via_script (override)
13403
13404 tools_other (o)
13405
13406 tool_xsubpp (o)
13407
13408 all_target
13409
13410 top_targets (o)
13411
13412 writedoc
13413
13414 xs_c (o)
13415
13416 xs_cpp (o)
13417
13418 xs_o (o)
13419
13420 =over 4
13421
13422 =item SEE ALSO
13423
13424 =back
13425
13426 =head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
13427 ExtUtils::MakeMaker
13428
13429 =over 4
13430
13431 =item SYNOPSIS
13432
13433 =item DESCRIPTION
13434
13435 =over 4
13436
13437 =item Methods always loaded
13438
13439 wraplist
13440
13441 =back
13442
13443 =back
13444
13445 =over 4
13446
13447 =item Methods
13448
13449 guess_name (override)
13450
13451 =back
13452
13453 find_perl (override)
13454
13455 maybe_command (override)
13456
13457 perl_script (override)
13458
13459 replace_manpage_separator
13460
13461 init_DEST
13462
13463 init_DIRFILESEP
13464
13465 init_main (override)
13466
13467 init_others (override)
13468
13469 init_platform (override)
13470
13471 platform_constants
13472
13473 init_VERSION (override)
13474
13475 constants (override)
13476
13477 special_targets
13478
13479 cflags (override)
13480
13481 const_cccmd (override)
13482
13483 tool_sxubpp (override)
13484
13485 tools_other (override)
13486
13487 init_dist (override)
13488
13489 c_o (override)
13490
13491 xs_c (override)
13492
13493 xs_o (override)
13494
13495 dlsyms (override)
13496
13497 dynamic_lib (override)
13498
13499 dynamic_bs (override)
13500
13501 static_lib (override)
13502
13503 processPL (override)
13504
13505 installbin (override)
13506
13507 subdir_x (override)
13508
13509 clean (override)
13510
13511 clean_subdirs_target
13512
13513 realclean (override)
13514
13515 zipfile_target (o), tarfile_target (o), shdist_target (o)
13516
13517 dist_test (override)
13518
13519 install (override)
13520
13521 perldepend (override)
13522
13523 makefile (override)
13524
13525 find_tests (override)
13526
13527 test (override)
13528
13529 makeaperl (override)
13530
13531 nicetext (override)
13532
13533 prefixify (override)
13534
13535 oneliner (o)
13536
13537 B<echo> (o)
13538
13539 quote_literal
13540
13541 escape_newlines
13542
13543 max_exec_len
13544
13545 init_linker (o)
13546
13547 eliminate_macros
13548
13549 fixpath
13550
13551 os_flavor
13552
13553 =head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
13554 ExtUtils::MakeMaker
13555
13556 =over 4
13557
13558 =item SYNOPSIS
13559
13560 =item DESCRIPTION
13561
13562 =back
13563
13564 =over 4
13565
13566 =item Overridden methods
13567
13568 B<dlsyms>
13569
13570 =back
13571
13572 replace_manpage_separator
13573
13574 B<maybe_command>
13575
13576 B<find_tests>
13577
13578 B<init_DIRFILESEP>
13579
13580 B<init_others>
13581
13582 init_platform (o), platform_constants (o)
13583
13584 special_targets (o)
13585
13586 static_lib (o)
13587
13588 dynamic_lib (o)
13589
13590 clean
13591
13592 init_linker
13593
13594 perl_script
13595
13596 xs_o (o)
13597
13598 pasthru (o)
13599
13600 oneliner (o)
13601
13602 max_exec_len
13603
13604 os_flavor
13605
13606 =head2 ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X
13607
13608 =over 4
13609
13610 =item SYNOPSIS
13611
13612 =item DESCRIPTION
13613
13614 =over 4
13615
13616 =item Overriden methods
13617
13618 dist_test
13619
13620 =back
13621
13622 =back
13623
13624 subdir_x
13625
13626 xs_c
13627
13628 xs_cpp
13629
13630 xs_o
13631
13632 clean_subdirs_target
13633
13634 realclean_subdirs_target
13635
13636 os_flavor
13637
13638 =over 4
13639
13640 =item AUTHOR
13641
13642 =back
13643
13644 =head2 ExtUtils::MY - ExtUtils::MakeMaker subclass for customization
13645
13646 =over 4
13647
13648 =item SYNOPSIS
13649
13650 =item DESCRIPTION
13651
13652 =back
13653
13654 =head2 ExtUtils::MakeMaker - Create a module Makefile
13655
13656 =over 4
13657
13658 =item SYNOPSIS
13659
13660 =item DESCRIPTION
13661
13662 =over 4
13663
13664 =item How To Write A Makefile.PL
13665
13666 =item Default Makefile Behaviour
13667
13668 =item make test
13669
13670 =item make testdb
13671
13672 =item make install
13673
13674 =item PREFIX and LIB attribute
13675
13676 =item AFS users
13677
13678 =item Static Linking of a new Perl Binary
13679
13680 =item Determination of Perl Library and Installation Locations
13681
13682 =item Which architecture dependent directory?
13683
13684 =item Using Attributes and Parameters
13685
13686 ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CCFLAGS, CONFIG,
13687 CONFIGURE, DEFINE, DESTDIR, DIR, DISTNAME, DISTVNAME, DL_FUNCS, DL_VARS,
13688 EXCLUDE_EXT, EXE_FILES, FIRST_MAKEFILE, FULLPERL, FULLPERLRUN,
13689 FULLPERLRUNINST, FUNCLIST, H, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB,
13690 INSTALLBIN, INSTALLDIRS, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB,
13691 INSTALLSCRIPT, INSTALLSITEARCH, INSTALLSITEBIN, INSTALLSITELIB,
13692 INSTALLSITEMAN1DIR, INSTALLSITEMAN3DIR, INSTALLVENDORARCH,
13693 INSTALLVENDORBIN, INSTALLVENDORLIB, INSTALLVENDORMAN1DIR,
13694 INSTALLVENDORMAN3DIR, INST_ARCHLIB, INST_BIN, INST_LIB, INST_MAN1DIR,
13695 INST_MAN3DIR, INST_SCRIPT, LD, LDDLFLAGS, LDFROM, LIB, LIBPERL_A, LIBS,
13696 LINKTYPE, MAKEAPERL, MAKEFILE_OLD, MAN1PODS, MAN3PODS, MAP_TARGET,
13697 MYEXTLIB, NAME, NEEDS_LINKING, NOECHO, NORECURS, NO_META, NO_VC, OBJECT,
13698 OPTIMIZE, PERL, PERL_CORE, PERLMAINCC, PERL_ARCHLIB, PERL_LIB,
13699 PERL_MALLOC_OK, PERLPREFIX, PERLRUN, PERLRUNINST, PERL_SRC, PERM_RW,
13700 PERM_RWX, PL_FILES, PM, PMLIBDIRS, PM_FILTER, POLLUTE, PPM_INSTALL_EXEC,
13701 PPM_INSTALL_SCRIPT, PREFIX, PREREQ_FATAL, PREREQ_PM, PREREQ_PRINT,
13702 PRINT_PREREQ, SITEPREFIX, SKIP, TYPEMAPS, VENDORPREFIX, VERBINST, VERSION,
13703 VERSION_FROM, VERSION_SYM, XS, XSOPT, XSPROTOARG, XS_VERSION
13704
13705 =item Additional lowercase attributes
13706
13707 clean, depend, dist, dynamic_lib, linkext, macro, postamble, realclean,
13708 test, tool_autosplit
13709
13710 =item Overriding MakeMaker Methods
13711
13712 =item The End Of Cargo Cult Programming
13713
13714 C<<MAN3PODS => ' '>>
13715
13716 =item Hintsfile support
13717
13718 =item Distribution Support
13719
13720    make distcheck,    make skipcheck,    make distclean,    make manifest, 
13721   make distdir,   make disttest,    make tardist,    make dist,    make
13722 uutardist,    make shdist,    make zipdist,    make ci
13723
13724 =item Module Meta-Data
13725
13726 =item Disabling an extension
13727
13728 =item Other Handy Functions
13729
13730 prompt
13731
13732 =back
13733
13734 =item ENVIRONMENT
13735
13736 PERL_MM_OPT, PERL_MM_USE_DEFAULT
13737
13738 =item SEE ALSO
13739
13740 =item AUTHORS
13741
13742 =item LICENSE
13743
13744 =back
13745
13746 =head2 ExtUtils::MakeMaker::FAQ - Frequently Asked Questions About
13747 MakeMaker
13748
13749 =over 4
13750
13751 =item DESCRIPTION
13752
13753 =over 4
13754
13755 =item Philosophy and History
13756
13757 Why not just use <insert other build config tool here>?, What's
13758 Module::Build and how does it relate to MakeMaker?, pure perl.  no make, no
13759 shell commands, easier to customize, cleaner internals, less cruft
13760
13761 =item Module Writing
13762
13763 How do I keep my $VERSION up to date without resetting it manually?, What's
13764 this F<META.yml> thing and how did it get in my F<MANIFEST>?!
13765
13766 =item XS
13767
13768 How to I prevent "object version X.XX does not match bootstrap parameter
13769 Y.YY" errors?, How do I make two or more XS files coexist in the same
13770 directory?
13771
13772 =back
13773
13774 =item PATCHING
13775
13776 =item AUTHOR
13777
13778 =item SEE ALSO
13779
13780 =back
13781
13782 =head2 ExtUtils::MakeMaker::Tutorial - Writing a module with MakeMaker
13783
13784 =over 4
13785
13786 =item SYNOPSIS
13787
13788 =item DESCRIPTION
13789
13790 =over 4
13791
13792 =item The Mantra
13793
13794 =item The Layout
13795
13796 Makefile.PL, MANIFEST, lib/, t/, Changes, README, INSTALL, MANIFEST.SKIP,
13797 bin/
13798
13799 =back
13800
13801 =item SEE ALSO
13802
13803 =back
13804
13805 =head2 ExtUtils::MakeMaker::bytes - Version agnostic bytes.pm
13806
13807 =over 4
13808
13809 =item SYNOPSIS
13810
13811 =item DESCRIPTION
13812
13813 =back
13814
13815 =head2 ExtUtils::MakeMaker::vmsish - Platform agnostic vmsish.pm
13816
13817 =over 4
13818
13819 =item SYNOPSIS
13820
13821 =item DESCRIPTION
13822
13823 =back
13824
13825 =head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
13826
13827 =over 4
13828
13829 =item SYNOPSIS
13830
13831 =item DESCRIPTION
13832
13833 =over 4
13834
13835 =item Functions
13836
13837 mkmanifest
13838
13839 =back
13840
13841 =back
13842
13843 manifind
13844
13845 manicheck
13846
13847 filecheck
13848
13849 fullcheck
13850
13851 skipcheck
13852
13853 maniread
13854
13855 manicopy
13856
13857 maniadd
13858
13859 =over 4
13860
13861 =item MANIFEST
13862
13863 =item MANIFEST.SKIP
13864
13865 =item EXPORT_OK
13866
13867 =item GLOBAL VARIABLES
13868
13869 =back
13870
13871 =over 4
13872
13873 =item DIAGNOSTICS
13874
13875 C<Not in MANIFEST:> I<file>, C<Skipping> I<file>, C<No such file:> I<file>,
13876 C<MANIFEST:> I<$!>, C<Added to MANIFEST:> I<file>
13877
13878 =item ENVIRONMENT
13879
13880 B<PERL_MM_MANIFEST_DEBUG>
13881
13882 =item SEE ALSO
13883
13884 =item AUTHOR
13885
13886 =back
13887
13888 =head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
13889
13890 =over 4
13891
13892 =item SYNOPSIS
13893
13894 =item DESCRIPTION
13895
13896 =back
13897
13898 =head2 ExtUtils::Mksymlists - write linker options files for dynamic
13899 extension
13900
13901 =over 4
13902
13903 =item SYNOPSIS
13904
13905 =item DESCRIPTION
13906
13907 DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
13908
13909 =item AUTHOR
13910
13911 =item REVISION
13912
13913 =back
13914
13915 =head2 ExtUtils::Packlist - manage .packlist files
13916
13917 =over 4
13918
13919 =item SYNOPSIS
13920
13921 =item DESCRIPTION
13922
13923 =item USAGE
13924
13925 =item FUNCTIONS
13926
13927 new(), read(), write(), validate(), packlist_file()
13928
13929 =item EXAMPLE
13930
13931 =item AUTHOR
13932
13933 =back
13934
13935 =head2 ExtUtils::testlib - add blib/* directories to @INC
13936
13937 =over 4
13938
13939 =item SYNOPSIS
13940
13941 =item DESCRIPTION
13942
13943 =back
13944
13945 =head2 Fatal - replace functions with equivalents which succeed or die
13946
13947 =over 4
13948
13949 =item SYNOPSIS
13950
13951 =item DESCRIPTION
13952
13953 =item AUTHOR
13954
13955 =back
13956
13957 =head2 Fcntl - load the C Fcntl.h defines
13958
13959 =over 4
13960
13961 =item SYNOPSIS
13962
13963 =item DESCRIPTION
13964
13965 =item NOTE
13966
13967 =item EXPORTED SYMBOLS
13968
13969 =back
13970
13971 =head2 File::Basename, fileparse - split a pathname into pieces
13972
13973 =over 4
13974
13975 =item SYNOPSIS
13976
13977 =item DESCRIPTION
13978
13979 fileparse_set_fstype, fileparse
13980
13981 =item EXAMPLES
13982
13983 C<basename>, C<dirname>
13984
13985 =back
13986
13987 =head2 File::CheckTree, validate - run many filetest checks on a tree
13988
13989 =over 4
13990
13991 =item SYNOPSIS
13992
13993 =item DESCRIPTION
13994
13995 =item AUTHOR
13996
13997 =item HISTORY
13998
13999 =back
14000
14001 =head2 File::Compare - Compare files or filehandles
14002
14003 =over 4
14004
14005 =item SYNOPSIS
14006
14007 =item DESCRIPTION
14008
14009 =item RETURN
14010
14011 =item AUTHOR
14012
14013 =back
14014
14015 =head2 File::Copy - Copy files or filehandles
14016
14017 =over 4
14018
14019 =item SYNOPSIS
14020
14021 =item DESCRIPTION
14022
14023 =over 4
14024
14025 =item Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
14026
14027 rmscopy($from,$to[,$date_flag])
14028
14029 =back
14030
14031 =item RETURN
14032
14033 =item NOTES
14034
14035 =item AUTHOR
14036
14037 =back
14038
14039 =head2 File::DosGlob - DOS like globbing and then some
14040
14041 =over 4
14042
14043 =item SYNOPSIS
14044
14045 =item DESCRIPTION
14046
14047 =item NOTES
14048
14049 =item EXPORTS (by request only)
14050
14051 =item BUGS
14052
14053 =item AUTHOR
14054
14055 =item HISTORY
14056
14057 =item SEE ALSO
14058
14059 =back
14060
14061 =head2 File::Find - Traverse a directory tree.
14062
14063 =over 4
14064
14065 =item SYNOPSIS
14066
14067 =item DESCRIPTION
14068
14069 B<find>, B<finddepth>
14070
14071 =over 4
14072
14073 =item %options
14074
14075 C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
14076 C<follow_fast>, C<follow_skip>, C<dangling_symlinks>, C<no_chdir>,
14077 C<untaint>, C<untaint_pattern>, C<untaint_skip>
14078
14079 =item The wanted function
14080
14081 C<$File::Find::dir> is the current directory name,, C<$_> is the current
14082 filename within that directory, C<$File::Find::name> is the complete
14083 pathname to the file
14084
14085 =back
14086
14087 =item WARNINGS
14088
14089 =item CAVEAT
14090
14091 $dont_use_nlink, symlinks
14092
14093 =item NOTES
14094
14095 =item HISTORY
14096
14097 =back
14098
14099 =head2 File::Glob - Perl extension for BSD glob routine
14100
14101 =over 4
14102
14103 =item SYNOPSIS
14104
14105 =item DESCRIPTION
14106
14107 C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
14108 C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
14109 C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
14110
14111 =item DIAGNOSTICS
14112
14113 C<GLOB_NOSPACE>, C<GLOB_ABEND>
14114
14115 =item NOTES
14116
14117 =item AUTHOR
14118
14119 =back
14120
14121 =head2 File::Path - create or remove directory trees
14122
14123 =over 4
14124
14125 =item SYNOPSIS
14126
14127 =item DESCRIPTION
14128
14129 =item DIAGNOSTICS
14130
14131 =item AUTHORS
14132
14133 =back
14134
14135 =head2 File::Spec - portably perform operations on file names
14136
14137 =over 4
14138
14139 =item SYNOPSIS
14140
14141 =item DESCRIPTION
14142
14143 =item METHODS
14144
14145 canonpath, catdir, catfile, curdir, devnull, rootdir, tmpdir, updir,
14146 no_upwards, case_tolerant, file_name_is_absolute, path, join, splitpath,
14147 splitdir, catpath(), abs2rel, rel2abs()
14148
14149 =item SEE ALSO
14150
14151 =item AUTHORS
14152
14153 =back
14154
14155 =head2 File::Spec::Cygwin - methods for Cygwin file specs
14156
14157 =over 4
14158
14159 =item SYNOPSIS
14160
14161 =item DESCRIPTION
14162
14163 =back
14164
14165 canonpath
14166
14167 file_name_is_absolute
14168
14169 tmpdir (override)
14170
14171 =head2 File::Spec::Epoc - methods for Epoc file specs
14172
14173 =over 4
14174
14175 =item SYNOPSIS
14176
14177 =item DESCRIPTION
14178
14179 =item AUTHORS
14180
14181 =back
14182
14183 canonpath()
14184
14185 =over 4
14186
14187 =item SEE ALSO
14188
14189 =back
14190
14191 =head2 File::Spec::Functions - portably perform operations on file names
14192
14193 =over 4
14194
14195 =item SYNOPSIS
14196
14197 =item DESCRIPTION
14198
14199 =over 4
14200
14201 =item Exports
14202
14203 =back
14204
14205 =item SEE ALSO
14206
14207 =back
14208
14209 =head2 File::Spec::Mac - File::Spec for Mac OS (Classic)
14210
14211 =over 4
14212
14213 =item SYNOPSIS
14214
14215 =item DESCRIPTION
14216
14217 =item METHODS
14218
14219 canonpath
14220
14221 =back
14222
14223 catdir()
14224
14225 catfile
14226
14227 curdir
14228
14229 devnull
14230
14231 rootdir
14232
14233 tmpdir
14234
14235 updir
14236
14237 file_name_is_absolute
14238
14239 path
14240
14241 splitpath
14242
14243 splitdir
14244
14245 catpath
14246
14247 abs2rel
14248
14249 rel2abs
14250
14251 =over 4
14252
14253 =item AUTHORS
14254
14255 =item SEE ALSO
14256
14257 =back
14258
14259 =head2 File::Spec::OS2 - methods for OS/2 file specs
14260
14261 =over 4
14262
14263 =item SYNOPSIS
14264
14265 =item DESCRIPTION
14266
14267 tmpdir, splitpath
14268
14269 =back
14270
14271 =head2 File::Spec::Unix - File::Spec for Unix, base for other File::Spec
14272 modules
14273
14274 =over 4
14275
14276 =item SYNOPSIS
14277
14278 =item DESCRIPTION
14279
14280 =item METHODS
14281
14282 canonpath()
14283
14284 =back
14285
14286 catdir()
14287
14288 catfile
14289
14290 curdir
14291
14292 devnull
14293
14294 rootdir
14295
14296 tmpdir
14297
14298 updir
14299
14300 no_upwards
14301
14302 case_tolerant
14303
14304 file_name_is_absolute
14305
14306 path
14307
14308 join
14309
14310 splitpath
14311
14312 splitdir
14313
14314 catpath()
14315
14316 abs2rel
14317
14318 rel2abs()
14319
14320 =over 4
14321
14322 =item SEE ALSO
14323
14324 =back
14325
14326 =head2 File::Spec::VMS - methods for VMS file specs
14327
14328 =over 4
14329
14330 =item SYNOPSIS
14331
14332 =item DESCRIPTION
14333
14334 eliminate_macros
14335
14336 =back
14337
14338 fixpath
14339
14340 =over 4
14341
14342 =item Methods always loaded
14343
14344 canonpath (override)
14345
14346 =back
14347
14348 catdir
14349
14350 catfile
14351
14352 curdir (override)
14353
14354 devnull (override)
14355
14356 rootdir (override)
14357
14358 tmpdir (override)
14359
14360 updir (override)
14361
14362 case_tolerant (override)
14363
14364 path (override)
14365
14366 file_name_is_absolute (override)
14367
14368 splitpath (override)
14369
14370 splitdir (override)
14371
14372 catpath (override)
14373
14374 abs2rel (override)
14375
14376 rel2abs (override)
14377
14378 =over 4
14379
14380 =item SEE ALSO
14381
14382 =back
14383
14384 =head2 File::Spec::Win32 - methods for Win32 file specs
14385
14386 =over 4
14387
14388 =item SYNOPSIS
14389
14390 =item DESCRIPTION
14391
14392 devnull
14393
14394 =back
14395
14396 tmpdir
14397
14398 catfile
14399
14400 canonpath
14401
14402 splitpath
14403
14404 splitdir
14405
14406 catpath
14407
14408 =over 4
14409
14410 =item Note For File::Spec::Win32 Maintainers
14411
14412 =back
14413
14414 =over 4
14415
14416 =item SEE ALSO
14417
14418 =back
14419
14420 =head2 File::Temp - return name and handle of a temporary file safely
14421
14422 =over 4
14423
14424 =item PORTABILITY
14425
14426 =item SYNOPSIS
14427
14428 =item DESCRIPTION
14429
14430 =back
14431
14432 =over 4
14433
14434 =item OO INTERFACE
14435
14436 B<new>
14437
14438 =back
14439
14440 B<filename>
14441
14442 B<DESTROY>
14443
14444 =over 4
14445
14446 =item FUNCTIONS
14447
14448 B<tempfile>
14449
14450 =back
14451
14452 B<tempdir>
14453
14454 =over 4
14455
14456 =item MKTEMP FUNCTIONS
14457
14458 B<mkstemp>
14459
14460 =back
14461
14462 B<mkstemps>
14463
14464 B<mkdtemp>
14465
14466 B<mktemp>
14467
14468 =over 4
14469
14470 =item POSIX FUNCTIONS
14471
14472 B<tmpnam>
14473
14474 =back
14475
14476 B<tmpfile>
14477
14478 =over 4
14479
14480 =item ADDITIONAL FUNCTIONS
14481
14482 B<tempnam>
14483
14484 =back
14485
14486 =over 4
14487
14488 =item UTILITY FUNCTIONS
14489
14490 B<unlink0>
14491
14492 =back
14493
14494 B<cmpstat>
14495
14496 B<unlink1>
14497
14498 =over 4
14499
14500 =item PACKAGE VARIABLES
14501
14502 B<safe_level>, STANDARD, MEDIUM, HIGH
14503
14504 =back
14505
14506 TopSystemUID
14507
14508 =over 4
14509
14510 =item WARNING
14511
14512 =over 4
14513
14514 =item Temporary files and NFS
14515
14516 =back
14517
14518 =item HISTORY
14519
14520 =item SEE ALSO
14521
14522 =item AUTHOR
14523
14524 =back
14525
14526 =head2 File::stat - by-name interface to Perl's built-in stat() functions
14527
14528 =over 4
14529
14530 =item SYNOPSIS
14531
14532 =item DESCRIPTION
14533
14534 =item BUGS
14535
14536 =item NOTE
14537
14538 =item AUTHOR
14539
14540 =back
14541
14542 =head2 FileCache - keep more files open than the system permits
14543
14544 =over 4
14545
14546 =item SYNOPSIS
14547
14548 =item DESCRIPTION
14549
14550 cacheout EXPR, cacheout MODE, EXPR
14551
14552 =item CAVEATS
14553
14554 =item BUGS
14555
14556 =item NOTES
14557
14558 =back
14559
14560 =head2 FileHandle - supply object methods for filehandles
14561
14562 =over 4
14563
14564 =item SYNOPSIS
14565
14566 =item DESCRIPTION
14567
14568 $fh->print, $fh->printf, $fh->getline, $fh->getlines
14569
14570 =item SEE ALSO
14571
14572 =back
14573
14574 =head2 Filter::Simple - Simplified source filtering
14575
14576 =over 4
14577
14578 =item SYNOPSIS
14579
14580 =item DESCRIPTION
14581
14582 =over 4
14583
14584 =item The Problem
14585
14586 =item A Solution
14587
14588 =item Disabling or changing <no> behaviour
14589
14590 =item All-in-one interface
14591
14592 =item Filtering only specific components of source code
14593
14594 C<"code">, C<"executable">, C<"quotelike">, C<"string">, C<"regex">,
14595 C<"all">
14596
14597 =item Filtering only the code parts of source code
14598
14599 Most source code ceases to be grammatically correct when it is broken up
14600 into the pieces between string literals and regexes. So the C<'code'>
14601 component filter behaves slightly differently from the other partial
14602 filters
14603 described in the previous section.
14604
14605 =item Using Filter::Simple with an explicit C<import> subroutine
14606
14607 =item Using Filter::Simple and Exporter together
14608
14609 =item How it works
14610
14611 =back
14612
14613 =item AUTHOR
14614
14615 =item COPYRIGHT
14616
14617 =back
14618
14619 =head2 Filter::Util::Call - Perl Source Filter Utility Module
14620
14621 =over 4
14622
14623 =item SYNOPSIS
14624
14625 =item DESCRIPTION
14626
14627 =over 4
14628
14629 =item B<use Filter::Util::Call>
14630
14631 =item B<import()>
14632
14633 =item B<filter() and anonymous sub>
14634
14635 B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
14636
14637 =back
14638
14639 =item EXAMPLES
14640
14641 =over 4
14642
14643 =item Example 1: A simple filter.
14644
14645 =item Example 2: Using the context
14646
14647 =item Example 3: Using the context within the filter
14648
14649 =item Example 4: Using filter_del
14650
14651 =back
14652
14653 =item Filter::Simple
14654
14655 =item AUTHOR
14656
14657 =item DATE
14658
14659 =back
14660
14661 =head2 FindBin - Locate directory of original perl script
14662
14663 =over 4
14664
14665 =item SYNOPSIS
14666
14667 =item DESCRIPTION
14668
14669 =item EXPORTABLE VARIABLES
14670
14671 =item KNOWN ISSUES
14672
14673 =item KNOWN BUGS
14674
14675 =item AUTHORS
14676
14677 =item COPYRIGHT
14678
14679 =back
14680
14681 =head2 GDBM_File - Perl5 access to the gdbm library.
14682
14683 =over 4
14684
14685 =item SYNOPSIS
14686
14687 =item DESCRIPTION
14688
14689 =item AVAILABILITY
14690
14691 =item BUGS
14692
14693 =item SEE ALSO
14694
14695 =back
14696
14697 =head2 Getopt::Long - Extended processing of command line options
14698
14699 =over 4
14700
14701 =item SYNOPSIS
14702
14703 =item DESCRIPTION
14704
14705 =item Command Line Options, an Introduction
14706
14707 =item Getting Started with Getopt::Long
14708
14709 =over 4
14710
14711 =item Simple options
14712
14713 =item A little bit less simple options
14714
14715 =item Mixing command line option with other arguments
14716
14717 =item Options with values
14718
14719 =item Options with multiple values
14720
14721 =item Options with hash values
14722
14723 =item User-defined subroutines to handle options
14724
14725 =item Options with multiple names
14726
14727 =item Case and abbreviations
14728
14729 =item Summary of Option Specifications
14730
14731 !, +, s, i, o, f, : I<type> [ I<desttype> ], : I<number> [ I<desttype> ], :
14732 + [ I<desttype> ]
14733
14734 =back
14735
14736 =item Advanced Possibilities
14737
14738 =over 4
14739
14740 =item Object oriented interface
14741
14742 =item Thread Safety
14743
14744 =item Documentation and help texts
14745
14746 =item Storing options in a hash
14747
14748 =item Bundling
14749
14750 =item The lonesome dash
14751
14752 =item Argument callback
14753
14754 =back
14755
14756 =item Configuring Getopt::Long
14757
14758 default, posix_default, auto_abbrev, getopt_compat, gnu_compat, gnu_getopt,
14759 require_order, permute, bundling (default: disabled), bundling_override
14760 (default: disabled), ignore_case  (default: enabled), ignore_case_always
14761 (default: disabled), auto_version (default:disabled), auto_help
14762 (default:disabled), pass_through (default: disabled), prefix,
14763 prefix_pattern, debug (default: disabled)
14764
14765 =item Exportable Methods
14766
14767 VersionMessage, C<-message>, C<-msg>, C<-exitval>, C<-output>, HelpMessage
14768
14769 =item Return values and Errors
14770
14771 =item Legacy
14772
14773 =over 4
14774
14775 =item Default destinations
14776
14777 =item Alternative option starters
14778
14779 =item Configuration variables
14780
14781 =back
14782
14783 =item Trouble Shooting
14784
14785 =over 4
14786
14787 =item Warning: Ignoring '!' modifier for short option
14788
14789 =item GetOptions does not return a false result when an option is not
14790 supplied
14791
14792 =item GetOptions does not split the command line correctly
14793
14794 =item Undefined subroutine &main::GetOptions called
14795
14796 =item How do I put a "-?" option into a Getopt::Long?
14797
14798 =back
14799
14800 =item AUTHOR
14801
14802 =item COPYRIGHT AND DISCLAIMER
14803
14804 =back
14805
14806 =head2 Getopt::Std, getopt - Process single-character switches with switch
14807 clustering
14808
14809 =over 4
14810
14811 =item SYNOPSIS
14812
14813 =item DESCRIPTION
14814
14815 =item C<--help> and C<--version>
14816
14817 =back
14818
14819 =head2 Hash::Util - A selection of general-utility hash subroutines
14820
14821 =over 4
14822
14823 =item SYNOPSIS
14824
14825 =item DESCRIPTION
14826
14827 =over 4
14828
14829 =item Restricted hashes
14830
14831 lock_keys, unlock_keys
14832
14833 =back
14834
14835 =back
14836
14837 lock_value, unlock_value
14838
14839 B<lock_hash>, B<unlock_hash>
14840
14841 B<hash_seed>
14842
14843 =over 4
14844
14845 =item CAVEATS
14846
14847 =item AUTHOR
14848
14849 =item SEE ALSO
14850
14851 =back
14852
14853 =head2 I18N::Collate - compare 8-bit scalar data according to the current
14854 locale
14855
14856 =over 4
14857
14858 =item SYNOPSIS
14859
14860 =item DESCRIPTION
14861
14862 =back
14863
14864 =head2 I18N::LangTags - functions for dealing with RFC3066-style language
14865 tags
14866
14867 =over 4
14868
14869 =item SYNOPSIS
14870
14871 =item DESCRIPTION
14872
14873 =back
14874
14875 the function is_language_tag($lang1)
14876
14877 the function extract_language_tags($whatever)
14878
14879 the function same_language_tag($lang1, $lang2)
14880
14881 the function similarity_language_tag($lang1, $lang2)
14882
14883 the function is_dialect_of($lang1, $lang2)
14884
14885 the function super_languages($lang1)
14886
14887 the function locale2language_tag($locale_identifier)
14888
14889 the function encode_language_tag($lang1)
14890
14891 the function alternate_language_tags($lang1)
14892
14893 the function @langs = panic_languages(@accept_languages)
14894
14895 =over 4
14896
14897 =item ABOUT LOWERCASING
14898
14899 =item ABOUT UNICODE PLAINTEXT LANGUAGE TAGS
14900
14901 =item SEE ALSO
14902
14903 =item COPYRIGHT
14904
14905 =item AUTHOR
14906
14907 =back
14908
14909 =head2 I18N::LangTags::List -- tags and names for human languages
14910
14911 =over 4
14912
14913 =item SYNOPSIS
14914
14915 =item DESCRIPTION
14916
14917 =item ABOUT LANGUAGE TAGS
14918
14919 =item LIST OF LANGUAGES
14920
14921 {ab} : Abkhazian, {ace} : Achinese, {ach} : Acoli, {ada} : Adangme, {ady} :
14922 Adyghe, {aa} : Afar, {afh} : Afrihili, {af} : Afrikaans, [{afa} :
14923 Afro-Asiatic (Other)], {ak} : Akan, {akk} : Akkadian, {sq} : Albanian,
14924 {ale} : Aleut, [{alg} : Algonquian languages], [{tut} : Altaic (Other)],
14925 {am} : Amharic, {i-ami} : Ami, [{apa} : Apache languages], {ar} : Arabic,
14926 {arc} : Aramaic, {arp} : Arapaho, {arn} : Araucanian, {arw} : Arawak, {hy}
14927 : Armenian, {an} : Aragonese, [{art} : Artificial (Other)], {ast} :
14928 Asturian, {as} : Assamese, [{ath} : Athapascan languages], [{aus} :
14929 Australian languages], [{map} : Austronesian (Other)], {av} : Avaric, {ae}
14930 : Avestan, {awa} : Awadhi, {ay} : Aymara, {az} : Azerbaijani, {ban} :
14931 Balinese, [{bat} : Baltic (Other)], {bal} : Baluchi, {bm} : Bambara, [{bai}
14932 : Bamileke languages], {bad} : Banda, [{bnt} : Bantu (Other)], {bas} :
14933 Basa, {ba} : Bashkir, {eu} : Basque, {btk} : Batak (Indonesia), {bej} :
14934 Beja, {be} : Belarusian, {bem} : Bemba, {bn} : Bengali, [{ber} : Berber
14935 (Other)], {bho} : Bhojpuri, {bh} : Bihari, {bik} : Bikol, {bin} : Bini,
14936 {bi} : Bislama, {bs} : Bosnian, {bra} : Braj, {br} : Breton, {bug} :
14937 Buginese, {bg} : Bulgarian, {i-bnn} : Bunun, {bua} : Buriat, {my} :
14938 Burmese, {cad} : Caddo, {car} : Carib, {ca} : Catalan, [{cau} : Caucasian
14939 (Other)], {ceb} : Cebuano, [{cel} : Celtic (Other)], [{cai} : Central
14940 American Indian (Other)], {chg} : Chagatai, [{cmc} : Chamic languages],
14941 {ch} : Chamorro, {ce} : Chechen, {chr} : Cherokee, {chy} : Cheyenne, {chb}
14942 : Chibcha, {ny} : Chichewa, {zh} : Chinese, {chn} : Chinook Jargon, {chp} :
14943 Chipewyan, {cho} : Choctaw, {cu} : Church Slavic, {chk} : Chuukese, {cv} :
14944 Chuvash, {cop} : Coptic, {kw} : Cornish, {co} : Corsican, {cr} : Cree,
14945 {mus} : Creek, [{cpe} : English-based Creoles and pidgins (Other)], [{cpf}
14946 : French-based Creoles and pidgins (Other)], [{cpp} : Portuguese-based
14947 Creoles and pidgins (Other)], [{crp} : Creoles and pidgins (Other)], {hr} :
14948 Croatian, [{cus} : Cushitic (Other)], {cs} : Czech, {dak} : Dakota, {da} :
14949 Danish, {dar} : Dargwa, {day} : Dayak, {i-default} : Default (Fallthru)
14950 Language, {del} : Delaware, {din} : Dinka, {dv} : Divehi, {doi} : Dogri,
14951 {dgr} : Dogrib, [{dra} : Dravidian (Other)], {dua} : Duala, {nl} : Dutch,
14952 {dum} : Middle Dutch (ca.1050-1350), {dyu} : Dyula, {dz} : Dzongkha, {efi}
14953 : Efik, {egy} : Ancient Egyptian, {eka} : Ekajuk, {elx} : Elamite, {en} :
14954 English, {enm} : Old English (1100-1500), {ang} : Old English
14955 (ca.450-1100), {i-enochian} : Enochian (Artificial), {myv} : Erzya, {eo} :
14956 Esperanto, {et} : Estonian, {ee} : Ewe, {ewo} : Ewondo, {fan} : Fang, {fat}
14957 : Fanti, {fo} : Faroese, {fj} : Fijian, {fi} : Finnish, [{fiu} :
14958 Finno-Ugrian (Other)], {fon} : Fon, {fr} : French, {frm} : Middle French
14959 (ca.1400-1600), {fro} : Old French (842-ca.1400), {fy} : Frisian, {fur} :
14960 Friulian, {ff} : Fulah, {gaa} : Ga, {gd} : Scots Gaelic, {gl} : Gallegan,
14961 {lg} : Ganda, {gay} : Gayo, {gba} : Gbaya, {gez} : Geez, {ka} : Georgian,
14962 {de} : German, {gmh} : Middle High German (ca.1050-1500), {goh} : Old High
14963 German (ca.750-1050), [{gem} : Germanic (Other)], {gil} : Gilbertese, {gon}
14964 : Gondi, {gor} : Gorontalo, {got} : Gothic, {grb} : Grebo, {grc} : Ancient
14965 Greek, {el} : Modern Greek, {gn} : Guarani, {gu} : Gujarati, {gwi} :
14966 Gwich'in, {hai} : Haida, {ht} : Haitian, {ha} : Hausa, {haw} : Hawaiian,
14967 {he} : Hebrew, {hz} : Herero, {hil} : Hiligaynon, {him} : Himachali, {hi} :
14968 Hindi, {ho} : Hiri Motu, {hit} : Hittite, {hmn} : Hmong, {hu} : Hungarian,
14969 {hup} : Hupa, {iba} : Iban, {is} : Icelandic, {io} : Ido, {ig} : Igbo,
14970 {ijo} : Ijo, {ilo} : Iloko, [{inc} : Indic (Other)], [{ine} : Indo-European
14971 (Other)], {id} : Indonesian, {inh} : Ingush, {ia} : Interlingua
14972 (International Auxiliary Language Association), {ie} : Interlingue, {iu} :
14973 Inuktitut, {ik} : Inupiaq, [{ira} : Iranian (Other)], {ga} : Irish, {mga} :
14974 Middle Irish (900-1200), {sga} : Old Irish (to 900), [{iro} : Iroquoian
14975 languages], {it} : Italian, {ja} : Japanese, {jv} : Javanese, {jrb} :
14976 Judeo-Arabic, {jpr} : Judeo-Persian, {kbd} : Kabardian, {kab} : Kabyle,
14977 {kac} : Kachin, {kl} : Kalaallisut, {xal} : Kalmyk, {kam} : Kamba, {kn} :
14978 Kannada, {kr} : Kanuri, {krc} : Karachay-Balkar, {kaa} : Kara-Kalpak, {kar}
14979 : Karen, {ks} : Kashmiri, {csb} : Kashubian, {kaw} : Kawi, {kk} : Kazakh,
14980 {kha} : Khasi, {km} : Khmer, [{khi} : Khoisan (Other)], {kho} : Khotanese,
14981 {ki} : Kikuyu, {kmb} : Kimbundu, {rw} : Kinyarwanda, {ky} : Kirghiz,
14982 {i-klingon} : Klingon, {kv} : Komi, {kg} : Kongo, {kok} : Konkani, {ko} :
14983 Korean, {kos} : Kosraean, {kpe} : Kpelle, {kro} : Kru, {kj} : Kuanyama,
14984 {kum} : Kumyk, {ku} : Kurdish, {kru} : Kurukh, {kut} : Kutenai, {lad} :
14985 Ladino, {lah} : Lahnda, {lam} : Lamba, {lo} : Lao, {la} : Latin, {lv} :
14986 Latvian, {lb} : Letzeburgesch, {lez} : Lezghian, {li} : Limburgish, {ln} :
14987 Lingala, {lt} : Lithuanian, {nds} : Low German, {art-lojban} : Lojban
14988 (Artificial), {loz} : Lozi, {lu} : Luba-Katanga, {lua} : Luba-Lulua, {lui}
14989 : Luiseno, {lun} : Lunda, {luo} : Luo (Kenya and Tanzania), {lus} : Lushai,
14990 {mk} : Macedonian, {mad} : Madurese, {mag} : Magahi, {mai} : Maithili,
14991 {mak} : Makasar, {mg} : Malagasy, {ms} : Malay, {ml} : Malayalam, {mt} :
14992 Maltese, {mnc} : Manchu, {mdr} : Mandar, {man} : Mandingo, {mni} :
14993 Manipuri, [{mno} : Manobo languages], {gv} : Manx, {mi} : Maori, {mr} :
14994 Marathi, {chm} : Mari, {mh} : Marshall, {mwr} : Marwari, {mas} : Masai,
14995 [{myn} : Mayan languages], {men} : Mende, {mic} : Micmac, {min} :
14996 Minangkabau, {i-mingo} : Mingo, [{mis} : Miscellaneous languages], {moh} :
14997 Mohawk, {mdf} : Moksha, {mo} : Moldavian, [{mkh} : Mon-Khmer (Other)],
14998 {lol} : Mongo, {mn} : Mongolian, {mos} : Mossi, [{mul} : Multiple
14999 languages], [{mun} : Munda languages], {nah} : Nahuatl, {nap} : Neapolitan,
15000 {na} : Nauru, {nv} : Navajo, {nd} : North Ndebele, {nr} : South Ndebele,
15001 {ng} : Ndonga, {ne} : Nepali, {new} : Newari, {nia} : Nias, [{nic} :
15002 Niger-Kordofanian (Other)], [{ssa} : Nilo-Saharan (Other)], {niu} : Niuean,
15003 {nog} : Nogai, {non} : Old Norse, [{nai} : North American Indian], {no} :
15004 Norwegian, {nb} : Norwegian Bokmal, {nn} : Norwegian Nynorsk, [{nub} :
15005 Nubian languages], {nym} : Nyamwezi, {nyn} : Nyankole, {nyo} : Nyoro, {nzi}
15006 : Nzima, {oc} : Occitan (post 1500), {oj} : Ojibwa, {or} : Oriya, {om} :
15007 Oromo, {osa} : Osage, {os} : Ossetian; Ossetic, [{oto} : Otomian
15008 languages], {pal} : Pahlavi, {i-pwn} : Paiwan, {pau} : Palauan, {pi} :
15009 Pali, {pam} : Pampanga, {pag} : Pangasinan, {pa} : Panjabi, {pap} :
15010 Papiamento, [{paa} : Papuan (Other)], {fa} : Persian, {peo} : Old Persian
15011 (ca.600-400 B.C.), [{phi} : Philippine (Other)], {phn} : Phoenician, {pon}
15012 : Pohnpeian, {pl} : Polish, {pt} : Portuguese, [{pra} : Prakrit languages],
15013 {pro} : Old Provencal (to 1500), {ps} : Pushto, {qu} : Quechua, {rm} :
15014 Raeto-Romance, {raj} : Rajasthani, {rap} : Rapanui, {rar} : Rarotongan,
15015 [{qaa - qtz} : Reserved for local use.], [{roa} : Romance (Other)], {ro} :
15016 Romanian, {rom} : Romany, {rn} : Rundi, {ru} : Russian, [{sal} : Salishan
15017 languages], {sam} : Samaritan Aramaic, {se} : Northern Sami, {sma} :
15018 Southern Sami, {smn} : Inari Sami, {smj} : Lule Sami, {sms} : Skolt Sami,
15019 [{smi} : Sami languages (Other)], {sm} : Samoan, {sad} : Sandawe, {sg} :
15020 Sango, {sa} : Sanskrit, {sat} : Santali, {sc} : Sardinian, {sas} : Sasak,
15021 {sco} : Scots, {sel} : Selkup, [{sem} : Semitic (Other)], {sr} : Serbian,
15022 {srr} : Serer, {shn} : Shan, {sn} : Shona, {sid} : Sidamo, {sgn-...} : Sign
15023 Languages, {bla} : Siksika, {sd} : Sindhi, {si} : Sinhalese, [{sit} :
15024 Sino-Tibetan (Other)], [{sio} : Siouan languages], {den} : Slave
15025 (Athapascan), [{sla} : Slavic (Other)], {sk} : Slovak, {sl} : Slovenian,
15026 {sog} : Sogdian, {so} : Somali, {son} : Songhai, {snk} : Soninke, {wen} :
15027 Sorbian languages, {nso} : Northern Sotho, {st} : Southern Sotho, [{sai} :
15028 South American Indian (Other)], {es} : Spanish, {suk} : Sukuma, {sux} :
15029 Sumerian, {su} : Sundanese, {sus} : Susu, {sw} : Swahili, {ss} : Swati,
15030 {sv} : Swedish, {syr} : Syriac, {tl} : Tagalog, {ty} : Tahitian, [{tai} :
15031 Tai (Other)], {tg} : Tajik, {tmh} : Tamashek, {ta} : Tamil, {i-tao} : Tao,
15032 {tt} : Tatar, {i-tay} : Tayal, {te} : Telugu, {ter} : Tereno, {tet} :
15033 Tetum, {th} : Thai, {bo} : Tibetan, {tig} : Tigre, {ti} : Tigrinya, {tem} :
15034 Timne, {tiv} : Tiv, {tli} : Tlingit, {tpi} : Tok Pisin, {tkl} : Tokelau,
15035 {tog} : Tonga (Nyasa), {to} : Tonga (Tonga Islands), {tsi} : Tsimshian,
15036 {ts} : Tsonga, {i-tsu} : Tsou, {tn} : Tswana, {tum} : Tumbuka, [{tup} :
15037 Tupi languages], {tr} : Turkish, {ota} : Ottoman Turkish (1500-1928), {crh}
15038 : Crimean Turkish, {tk} : Turkmen, {tvl} : Tuvalu, {tyv} : Tuvinian, {tw} :
15039 Twi, {udm} : Udmurt, {uga} : Ugaritic, {ug} : Uighur, {uk} : Ukrainian,
15040 {umb} : Umbundu, {und} : Undetermined, {ur} : Urdu, {uz} : Uzbek, {vai} :
15041 Vai, {ve} : Venda, {vi} : Vietnamese, {vo} : Volapuk, {vot} : Votic, [{wak}
15042 : Wakashan languages], {wa} : Walloon, {wal} : Walamo, {war} : Waray, {was}
15043 : Washo, {cy} : Welsh, {wo} : Wolof, {x-...} : Unregistered (Semi-Private
15044 Use), {xh} : Xhosa, {sah} : Yakut, {yao} : Yao, {yap} : Yapese, {ii} :
15045 Sichuan Yi, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik languages], {znd}
15046 : Zande, [{zap} : Zapotec], {zen} : Zenaga, {za} : Zhuang, {zu} : Zulu,
15047 {zun} : Zuni
15048
15049 =item SEE ALSO
15050
15051 =item COPYRIGHT AND DISCLAIMER
15052
15053 =item AUTHOR
15054
15055 =back
15056
15057 =head2 I18N::Langinfo - query locale information
15058
15059 =over 4
15060
15061 =item SYNOPSIS
15062
15063 =item DESCRIPTION
15064
15065 =over 4
15066
15067 =item EXPORT
15068
15069 =back
15070
15071 =item SEE ALSO
15072
15073 =item AUTHOR
15074
15075 =item COPYRIGHT AND LICENSE
15076
15077 =back
15078
15079 =head2 IO - load various IO modules
15080
15081 =over 4
15082
15083 =item SYNOPSIS
15084
15085 =item DESCRIPTION
15086
15087 =item DEPRECATED
15088
15089 =back
15090
15091 =head2 IO::Dir - supply object methods for directory handles
15092
15093 =over 4
15094
15095 =item SYNOPSIS
15096
15097 =item DESCRIPTION
15098
15099 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
15100 rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
15101
15102 =item SEE ALSO
15103
15104 =item AUTHOR
15105
15106 =item COPYRIGHT
15107
15108 =back
15109
15110 =head2 IO::File - supply object methods for filehandles
15111
15112 =over 4
15113
15114 =item SYNOPSIS
15115
15116 =item DESCRIPTION
15117
15118 =item CONSTRUCTOR
15119
15120 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
15121
15122 =item METHODS
15123
15124 open( FILENAME [,MODE [,PERMS]] ), open( FILENAME, IOLAYERS )
15125
15126 =item SEE ALSO
15127
15128 =item HISTORY
15129
15130 =back
15131
15132 =head2 IO::Handle - supply object methods for I/O handles
15133
15134 =over 4
15135
15136 =item SYNOPSIS
15137
15138 =item DESCRIPTION
15139
15140 =item CONSTRUCTOR
15141
15142 new (), new_from_fd ( FD, MODE )
15143
15144 =item METHODS
15145
15146 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
15147 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
15148 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
15149 $io->blocking ( [ BOOL ] ), $io->untaint
15150
15151 =item NOTE
15152
15153 =item SEE ALSO
15154
15155 =item BUGS
15156
15157 =item HISTORY
15158
15159 =back
15160
15161 =head2 IO::Pipe - supply object methods for pipes
15162
15163 =over 4
15164
15165 =item SYNOPSIS
15166
15167 =item DESCRIPTION
15168
15169 =item CONSTRUCTOR
15170
15171 new ( [READER, WRITER] )
15172
15173 =item METHODS
15174
15175 reader ([ARGS]), writer ([ARGS]), handles ()
15176
15177 =item SEE ALSO
15178
15179 =item AUTHOR
15180
15181 =item COPYRIGHT
15182
15183 =back
15184
15185 =head2 IO::Poll - Object interface to system poll call
15186
15187 =over 4
15188
15189 =item SYNOPSIS
15190
15191 =item DESCRIPTION
15192
15193 =item METHODS
15194
15195 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
15196 IO ), handles( [ EVENT_MASK ] )
15197
15198 =item SEE ALSO
15199
15200 =item AUTHOR
15201
15202 =item COPYRIGHT
15203
15204 =back
15205
15206 =head2 IO::Seekable - supply seek based methods for I/O objects
15207
15208 =over 4
15209
15210 =item SYNOPSIS
15211
15212 =item DESCRIPTION
15213
15214 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
15215 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
15216 $io->tell
15217
15218 =item SEE ALSO
15219
15220 =item HISTORY
15221
15222 =back
15223
15224 =head2 IO::Select - OO interface to the select system call
15225
15226 =over 4
15227
15228 =item SYNOPSIS
15229
15230 =item DESCRIPTION
15231
15232 =item CONSTRUCTOR
15233
15234 new ( [ HANDLES ] )
15235
15236 =item METHODS
15237
15238 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
15239 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
15240 count (), bits(), select ( READ, WRITE, EXCEPTION [, TIMEOUT ] )
15241
15242 =item EXAMPLE
15243
15244 =item AUTHOR
15245
15246 =item COPYRIGHT
15247
15248 =back
15249
15250 =head2 IO::Socket - Object interface to socket communications
15251
15252 =over 4
15253
15254 =item SYNOPSIS
15255
15256 =item DESCRIPTION
15257
15258 =item CONSTRUCTOR
15259
15260 new ( [ARGS] )
15261
15262 =item METHODS
15263
15264 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
15265 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
15266
15267 =item SEE ALSO
15268
15269 =item AUTHOR
15270
15271 =item COPYRIGHT
15272
15273 =back
15274
15275 =head2 IO::Socket::INET - Object interface for AF_INET domain sockets
15276
15277 =over 4
15278
15279 =item SYNOPSIS
15280
15281 =item DESCRIPTION
15282
15283 =item CONSTRUCTOR
15284
15285 new ( [ARGS] )
15286
15287 =over 4
15288
15289 =item METHODS
15290
15291 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
15292 ()
15293
15294 =back
15295
15296 =item SEE ALSO
15297
15298 =item AUTHOR
15299
15300 =item COPYRIGHT
15301
15302 =back
15303
15304 =head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
15305
15306 =over 4
15307
15308 =item SYNOPSIS
15309
15310 =item DESCRIPTION
15311
15312 =item CONSTRUCTOR
15313
15314 new ( [ARGS] )
15315
15316 =item METHODS
15317
15318 hostpath(), peerpath()
15319
15320 =item SEE ALSO
15321
15322 =item AUTHOR
15323
15324 =item COPYRIGHT
15325
15326 =back
15327
15328 =head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
15329 handles
15330
15331 =over 4
15332
15333 =item SYNOPSIS
15334
15335 =item DESCRIPTION
15336
15337 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
15338 rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
15339
15340 =item SEE ALSO
15341
15342 =item AUTHOR
15343
15344 =item COPYRIGHT
15345
15346 =back
15347
15348 =head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
15349
15350 =over 4
15351
15352 =item SYNOPSIS
15353
15354 =item DESCRIPTION
15355
15356 =item CONSTRUCTOR
15357
15358 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
15359
15360 =item METHODS
15361
15362 open( FILENAME [,MODE [,PERMS]] ), open( FILENAME, IOLAYERS )
15363
15364 =item SEE ALSO
15365
15366 =item HISTORY
15367
15368 =back
15369
15370 =head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
15371 handles
15372
15373 =over 4
15374
15375 =item SYNOPSIS
15376
15377 =item DESCRIPTION
15378
15379 =item CONSTRUCTOR
15380
15381 new (), new_from_fd ( FD, MODE )
15382
15383 =item METHODS
15384
15385 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
15386 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
15387 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
15388 $io->blocking ( [ BOOL ] ), $io->untaint
15389
15390 =item NOTE
15391
15392 =item SEE ALSO
15393
15394 =item BUGS
15395
15396 =item HISTORY
15397
15398 =back
15399
15400 =head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
15401
15402 =over 4
15403
15404 =item SYNOPSIS
15405
15406 =item DESCRIPTION
15407
15408 =item CONSTRUCTOR
15409
15410 new ( [READER, WRITER] )
15411
15412 =item METHODS
15413
15414 reader ([ARGS]), writer ([ARGS]), handles ()
15415
15416 =item SEE ALSO
15417
15418 =item AUTHOR
15419
15420 =item COPYRIGHT
15421
15422 =back
15423
15424 =head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
15425
15426 =over 4
15427
15428 =item SYNOPSIS
15429
15430 =item DESCRIPTION
15431
15432 =item METHODS
15433
15434 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
15435 IO ), handles( [ EVENT_MASK ] )
15436
15437 =item SEE ALSO
15438
15439 =item AUTHOR
15440
15441 =item COPYRIGHT
15442
15443 =back
15444
15445 =head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
15446 I/O objects
15447
15448 =over 4
15449
15450 =item SYNOPSIS
15451
15452 =item DESCRIPTION
15453
15454 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
15455 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
15456 $io->tell
15457
15458 =item SEE ALSO
15459
15460 =item HISTORY
15461
15462 =back
15463
15464 =head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
15465 call
15466
15467 =over 4
15468
15469 =item SYNOPSIS
15470
15471 =item DESCRIPTION
15472
15473 =item CONSTRUCTOR
15474
15475 new ( [ HANDLES ] )
15476
15477 =item METHODS
15478
15479 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
15480 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
15481 count (), bits(), select ( READ, WRITE, EXCEPTION [, TIMEOUT ] )
15482
15483 =item EXAMPLE
15484
15485 =item AUTHOR
15486
15487 =item COPYRIGHT
15488
15489 =back
15490
15491 =head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
15492 communications
15493
15494 =over 4
15495
15496 =item SYNOPSIS
15497
15498 =item DESCRIPTION
15499
15500 =item CONSTRUCTOR
15501
15502 new ( [ARGS] )
15503
15504 =item METHODS
15505
15506 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
15507 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
15508
15509 =item SEE ALSO
15510
15511 =item AUTHOR
15512
15513 =item COPYRIGHT
15514
15515 =back
15516
15517 =head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
15518 AF_INET domain sockets
15519
15520 =over 4
15521
15522 =item SYNOPSIS
15523
15524 =item DESCRIPTION
15525
15526 =item CONSTRUCTOR
15527
15528 new ( [ARGS] )
15529
15530 =over 4
15531
15532 =item METHODS
15533
15534 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
15535 ()
15536
15537 =back
15538
15539 =item SEE ALSO
15540
15541 =item AUTHOR
15542
15543 =item COPYRIGHT
15544
15545 =back
15546
15547 =head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
15548 AF_UNIX domain sockets
15549
15550 =over 4
15551
15552 =item SYNOPSIS
15553
15554 =item DESCRIPTION
15555
15556 =item CONSTRUCTOR
15557
15558 new ( [ARGS] )
15559
15560 =item METHODS
15561
15562 hostpath(), peerpath()
15563
15564 =item SEE ALSO
15565
15566 =item AUTHOR
15567
15568 =item COPYRIGHT
15569
15570 =back
15571
15572 =head2 IPC::Msg - SysV Msg IPC object class
15573
15574 =over 4
15575
15576 =item SYNOPSIS
15577
15578 =item DESCRIPTION
15579
15580 =item METHODS
15581
15582 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
15583 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
15584 FLAGS ] ), stat
15585
15586 =item SEE ALSO
15587
15588 =item AUTHOR
15589
15590 =item COPYRIGHT
15591
15592 =back
15593
15594 =head2 IPC::Open2, open2 - open a process for both reading and writing
15595
15596 =over 4
15597
15598 =item SYNOPSIS
15599
15600 =item DESCRIPTION
15601
15602 =item WARNING 
15603
15604 =item SEE ALSO
15605
15606 =back
15607
15608 =head2 IPC::Open3, open3 - open a process for reading, writing, and error
15609 handling
15610
15611 =over 4
15612
15613 =item SYNOPSIS
15614
15615 =item DESCRIPTION
15616
15617 =item WARNING
15618
15619 =back
15620
15621 =head2 IPC::Semaphore - SysV Semaphore IPC object class
15622
15623 =over 4
15624
15625 =item SYNOPSIS
15626
15627 =item DESCRIPTION
15628
15629 =item METHODS
15630
15631 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
15632 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
15633 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
15634 , VALUE ), stat
15635
15636 =item SEE ALSO
15637
15638 =item AUTHOR
15639
15640 =item COPYRIGHT
15641
15642 =back
15643
15644 =head2 IPC::SysV - SysV IPC constants
15645
15646 =over 4
15647
15648 =item SYNOPSIS
15649
15650 =item DESCRIPTION
15651
15652 ftok( PATH, ID )
15653
15654 =item SEE ALSO
15655
15656 =item AUTHORS
15657
15658 =item COPYRIGHT
15659
15660 =back
15661
15662 =head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
15663
15664 =over 4
15665
15666 =item SYNOPSIS
15667
15668 =item DESCRIPTION
15669
15670 =item METHODS
15671
15672 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
15673 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
15674 FLAGS ] ), stat
15675
15676 =item SEE ALSO
15677
15678 =item AUTHOR
15679
15680 =item COPYRIGHT
15681
15682 =back
15683
15684 =head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
15685 class
15686
15687 =over 4
15688
15689 =item SYNOPSIS
15690
15691 =item DESCRIPTION
15692
15693 =item METHODS
15694
15695 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
15696 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
15697 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
15698 , VALUE ), stat
15699
15700 =item SEE ALSO
15701
15702 =item AUTHOR
15703
15704 =item COPYRIGHT
15705
15706 =back
15707
15708 =head2 List::Util - A selection of general-utility list subroutines
15709
15710 =over 4
15711
15712 =item SYNOPSIS
15713
15714 =item DESCRIPTION
15715
15716 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
15717 BLOCK LIST, shuffle LIST, sum LIST
15718
15719 =item KNOWN BUGS
15720
15721 =item SUGGESTED ADDITIONS
15722
15723 =item COPYRIGHT
15724
15725 =back
15726
15727 =head2 List::Utilib::List::Util, List::Util - A selection of
15728 general-utility list subroutines
15729
15730 =over 4
15731
15732 =item SYNOPSIS
15733
15734 =item DESCRIPTION
15735
15736 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
15737 BLOCK LIST, shuffle LIST, sum LIST
15738
15739 =item KNOWN BUGS
15740
15741 =item SUGGESTED ADDITIONS
15742
15743 =item COPYRIGHT
15744
15745 =back
15746
15747 =head2 List::Utilib::Scalar::Util, Scalar::Util - A selection of
15748 general-utility scalar subroutines
15749
15750 =over 4
15751
15752 =item SYNOPSIS
15753
15754 =item DESCRIPTION
15755
15756 blessed EXPR, dualvar NUM, STRING, isvstring EXPR, isweak EXPR,
15757 looks_like_number EXPR, openhandle FH, refaddr EXPR, reftype EXPR,
15758 set_prototype CODEREF, PROTOTYPE, tainted EXPR, weaken REF
15759
15760 =item KNOWN BUGS
15761
15762 =item COPYRIGHT
15763
15764 =item BLATANT PLUG
15765
15766 =back
15767
15768 =head2 Locale::Constants - constants for Locale codes
15769
15770 =over 4
15771
15772 =item SYNOPSIS
15773
15774 =item DESCRIPTION
15775
15776 =item KNOWN BUGS AND LIMITATIONS
15777
15778 =item SEE ALSO
15779
15780 Locale::Language, Locale::Country, Locale::Script, Locale::Currency
15781
15782 =item AUTHOR
15783
15784 =item COPYRIGHT
15785
15786 =back
15787
15788 =head2 Locale::Country - ISO codes for country identification (ISO 3166)
15789
15790 =over 4
15791
15792 =item SYNOPSIS
15793
15794 =item DESCRIPTION
15795
15796 B<alpha-2>, B<alpha-3>, B<numeric>
15797
15798 =item CONVERSION ROUTINES
15799
15800 code2country( CODE, [ CODESET ] ), country2code( STRING, [ CODESET ] ),
15801 country_code2code( CODE, CODESET, CODESET )
15802
15803 =item QUERY ROUTINES
15804
15805 C<all_country_codes( [ CODESET ] )>, C<all_country_names( [ CODESET ] )>
15806
15807 =item SEMI-PRIVATE ROUTINES
15808
15809 =over 4
15810
15811 =item alias_code
15812
15813 =item rename_country
15814
15815 =back
15816
15817 =item EXAMPLES
15818
15819 =item DOMAIN NAMES
15820
15821 =item KNOWN BUGS AND LIMITATIONS
15822
15823 =item SEE ALSO
15824
15825 Locale::Language, Locale::Script, Locale::Currency, Locale::SubCountry, ISO
15826 3166-1, http://www.iso.org/iso/en/prods-services/iso3166ma/index.html,
15827 http://www.egt.ie/standards/iso3166/iso3166-1-en.html,
15828 http://www.cia.gov/cia/publications/factbook/docs/app-d-1.html
15829
15830 =item AUTHOR
15831
15832 =item COPYRIGHT
15833
15834 =back
15835
15836 =head2 Locale::Currency - ISO three letter codes for currency
15837 identification (ISO 4217)
15838
15839 =over 4
15840
15841 =item SYNOPSIS
15842
15843 =item DESCRIPTION
15844
15845 XTS, XXX
15846
15847 =item CONVERSION ROUTINES
15848
15849 code2currency(), currency2code()
15850
15851 =item QUERY ROUTINES
15852
15853 C<all_currency_codes()>, C<all_currency_names()>
15854
15855 =item EXAMPLES
15856
15857 =item KNOWN BUGS AND LIMITATIONS
15858
15859 =item SEE ALSO
15860
15861 Locale::Country, Locale::Script, ISO 4217:1995,
15862 http://www.bsi-global.com/iso4217currency
15863
15864 =item AUTHOR
15865
15866 =item COPYRIGHT
15867
15868 =back
15869
15870 =head2 Locale::Language - ISO two letter codes for language identification
15871 (ISO 639)
15872
15873 =over 4
15874
15875 =item SYNOPSIS
15876
15877 =item DESCRIPTION
15878
15879 =item CONVERSION ROUTINES
15880
15881 code2language(), language2code()
15882
15883 =item QUERY ROUTINES
15884
15885 C<all_language_codes()>, C<all_language_names()>
15886
15887 =item EXAMPLES
15888
15889 =item KNOWN BUGS AND LIMITATIONS
15890
15891 =item SEE ALSO
15892
15893 Locale::Country, Locale::Script, Locale::Currency, ISO 639:1988 (E/F),
15894 http://lcweb.loc.gov/standards/iso639-2/langhome.html
15895
15896 =item AUTHOR
15897
15898 =item COPYRIGHT
15899
15900 =back
15901
15902 =head2 Locale::Maketext - framework for localization
15903
15904 =over 4
15905
15906 =item SYNOPSIS
15907
15908 =item DESCRIPTION
15909
15910 =item QUICK OVERVIEW
15911
15912 =item METHODS
15913
15914 =over 4
15915
15916 =item Construction Methods
15917
15918 =item The "maketext" Method
15919
15920 $lh->fail_with I<or> $lh->fail_with(I<PARAM>), $lh->failure_handler_auto
15921
15922 =item Utility Methods
15923
15924 $language->quant($number, $singular), $language->quant($number, $singular,
15925 $plural), $language->quant($number, $singular, $plural, $negative),
15926 $language->numf($number), $language->sprintf($format, @items),
15927 $language->language_tag(), $language->encoding()
15928
15929 =item Language Handle Attributes and Internals
15930
15931 =back
15932
15933 =item LANGUAGE CLASS HIERARCHIES
15934
15935 =item ENTRIES IN EACH LEXICON
15936
15937 =item BRACKET NOTATION
15938
15939 =item AUTO LEXICONS
15940
15941 =item CONTROLLING LOOKUP FAILURE
15942
15943 =item HOW TO USE MAKETEXT
15944
15945 =item SEE ALSO
15946
15947 =item COPYRIGHT AND DISCLAIMER
15948
15949 =item AUTHOR
15950
15951 =back
15952
15953 =head2 Locale::Maketext::TPJ13 -- article about software localization
15954
15955 =over 4
15956
15957 =item SYNOPSIS
15958
15959 =item DESCRIPTION
15960
15961 =item Localization and Perl: gettext breaks, Maketext fixes
15962
15963 =over 4
15964
15965 =item A Localization Horror Story: It Could Happen To You
15966
15967 =item The Linguistic View
15968
15969 =item Breaking gettext
15970
15971 =item Replacing gettext
15972
15973 =item Buzzwords: Abstraction and Encapsulation
15974
15975 =item Buzzword: Isomorphism
15976
15977 =item Buzzword: Inheritance
15978
15979 =item Buzzword: Concision
15980
15981 =item The Devil in the Details
15982
15983 =item The Proof in the Pudding: Localizing Web Sites
15984
15985 =item References
15986
15987 =back
15988
15989 =back
15990
15991 =head2 Locale::Script - ISO codes for script identification (ISO 15924)
15992
15993 =over 4
15994
15995 =item SYNOPSIS
15996
15997 =item DESCRIPTION
15998
15999 B<alpha-2>, B<alpha-3>, B<numeric>
16000
16001 =over 4
16002
16003 =item SPECIAL CODES
16004
16005 =back
16006
16007 =item CONVERSION ROUTINES
16008
16009 code2script( CODE, [ CODESET ] ), script2code( STRING, [ CODESET ] ),
16010 script_code2code( CODE, CODESET, CODESET )
16011
16012 =item QUERY ROUTINES
16013
16014 C<all_script_codes ( [ CODESET ] )>, C<all_script_names ( [ CODESET ] )>
16015
16016 =item EXAMPLES
16017
16018 =item KNOWN BUGS AND LIMITATIONS
16019
16020 =item SEE ALSO
16021
16022 Locale::Language, Locale::Currency, Locale::Country, ISO 15924,
16023 http://www.evertype.com/standards/iso15924/
16024
16025 =item AUTHOR
16026
16027 =item COPYRIGHT
16028
16029 =back
16030
16031 =head2 MIME::Base64 - Encoding and decoding of base64 strings
16032
16033 =over 4
16034
16035 =item SYNOPSIS
16036
16037 =item DESCRIPTION
16038
16039 encode_base64($str), encode_base64($str, $eol);, decode_base64($str)
16040
16041 =item DIAGNOSTICS
16042
16043 Premature end of base64 data, Premature padding of base64 data
16044
16045 =item EXAMPLES
16046
16047 =item COPYRIGHT
16048
16049 =back
16050
16051 =head2 MIME::Base64::QuotedPrint, MIME::QuotedPrint - Encoding and decoding
16052 of quoted-printable strings
16053
16054 =over 4
16055
16056 =item SYNOPSIS
16057
16058 =item DESCRIPTION
16059
16060 encode_qp($str), encode_qp($str, $eol), decode_qp($str);
16061
16062 =item COPYRIGHT
16063
16064 =back
16065
16066 =head2 MIME::QuotedPrint - Encoding and decoding of quoted-printable
16067 strings
16068
16069 =over 4
16070
16071 =item SYNOPSIS
16072
16073 =item DESCRIPTION
16074
16075 encode_qp($str), encode_qp($str, $eol), decode_qp($str);
16076
16077 =item COPYRIGHT
16078
16079 =back
16080
16081 =head2 Math::BigFloat - Arbitrary size floating point math package
16082
16083 =over 4
16084
16085 =item SYNOPSIS
16086
16087 =item DESCRIPTION
16088
16089 =over 4
16090
16091 =item Canonical notation
16092
16093 =item Output
16094
16095 =item C<mantissa()>, C<exponent()> and C<parts()>
16096
16097 =item Accuracy vs. Precision
16098
16099 =item Rounding
16100
16101 ffround ( +$scale ), ffround ( -$scale ), ffround ( 0 ), fround  ( +$scale
16102 ), fround  ( -$scale ) and fround ( 0 )
16103
16104 =back
16105
16106 =item EXAMPLES
16107
16108   # not ready yet
16109
16110 =item Autocreating constants
16111
16112 =over 4
16113
16114 =item Math library
16115
16116 =item Using Math::BigInt::Lite
16117
16118 =back
16119
16120 =item BUGS
16121
16122 =item CAVEATS
16123
16124 stringify, bstr(), bdiv, Modifying and =, bpow
16125
16126 =item SEE ALSO
16127
16128 =item LICENSE
16129
16130 =item AUTHORS
16131
16132 =back
16133
16134 =head2 Math::BigInt - Arbitrary size integer math package
16135
16136 =over 4
16137
16138 =item SYNOPSIS
16139
16140 =item DESCRIPTION
16141
16142 Input, Output
16143
16144 =item METHODS
16145
16146 =over 4
16147
16148 =item config
16149
16150 =item accuracy
16151
16152 =item precision
16153
16154 =item brsft
16155
16156 =item new
16157
16158 =item bnan
16159
16160 =item bzero
16161
16162 =item binf
16163
16164 =item bone
16165
16166 =item is_one()/is_zero()/is_nan()/is_inf()
16167
16168 =item is_positive()/is_negative()
16169
16170         $x->is_positive();              # true if >= 0
16171         $x->is_negative();              # true if <  0
16172
16173 =item is_odd()/is_even()/is_int()
16174
16175 =item bcmp
16176
16177 =item bacmp
16178
16179 =item sign
16180
16181 =item bcmp
16182
16183 =item bneg
16184
16185 =item babs
16186
16187 =item bnorm
16188
16189 =item bnot
16190
16191 =item binc
16192
16193 =item bdec
16194
16195 =item badd
16196
16197 =item bsub
16198
16199 =item bmul
16200
16201 =item bdiv
16202
16203 =item bmod
16204
16205 =item bmodinv
16206
16207 =item bmodpow
16208
16209 =item bpow
16210
16211 =item blsft
16212
16213 =item brsft
16214
16215 =item band
16216
16217 =item bior
16218
16219 =item bxor
16220
16221 =item bnot
16222
16223 =item bsqrt
16224
16225 =item bfac
16226
16227 =item round
16228
16229 =item bround
16230
16231 =item bfround
16232
16233 =item bfloor
16234
16235 =item bceil
16236
16237 =item bgcd
16238
16239 =item blcm
16240
16241 =item exponent
16242
16243 =item mantissa
16244
16245 =item parts
16246
16247 =item copy
16248
16249 =item as_number
16250
16251 =item bsstr
16252
16253 =item as_hex
16254
16255 =item as_bin
16256
16257 =back
16258
16259 =item ACCURACY and PRECISION
16260
16261 =over 4
16262
16263 =item Precision P
16264
16265 =item Accuracy A
16266
16267 =item Fallback F
16268
16269 =item Rounding mode R
16270
16271 'trunc', 'even', 'odd', '+inf', '-inf', 'zero', Precision, Accuracy
16272 (significant digits), Setting/Accessing, Creating numbers, Usage,
16273 Precedence, Overriding globals, Local settings, Rounding, Default values,
16274 Remarks
16275
16276 =back
16277
16278 =item INTERNALS
16279
16280 =over 4
16281
16282 =item MATH LIBRARY
16283
16284 =item SIGN
16285
16286 =item mantissa(), exponent() and parts()
16287
16288 =back
16289
16290 =item EXAMPLES
16291
16292   use Math::BigInt;
16293
16294 =item Autocreating constants
16295
16296 =item PERFORMANCE
16297
16298 =over 4
16299
16300 =item Alternative math libraries
16301
16302 =item SUBCLASSING
16303
16304 =back
16305
16306 =item Subclassing Math::BigInt
16307
16308 =item UPGRADING
16309
16310 =over 4
16311
16312 =item Auto-upgrade
16313
16314 bsqrt(), div(), blog()
16315
16316 =back
16317
16318 =item BUGS
16319
16320 broot() does not work, Out of Memory!, Fails to load Calc on Perl prior
16321 5.6.0
16322
16323 =item CAVEATS
16324
16325 stringify, bstr(), bsstr() and 'cmp', int(), length, bdiv, infinity
16326 handling, Modifying and =, bpow, Overloading -$x, Mixing different object
16327 types, bsqrt(), brsft()
16328
16329 =item LICENSE
16330
16331 =item SEE ALSO
16332
16333 =item AUTHORS
16334
16335 =back
16336
16337 =head2 Math::BigInt::Calc - Pure Perl module to support Math::BigInt
16338
16339 =over 4
16340
16341 =item SYNOPSIS
16342
16343 =item DESCRIPTION
16344
16345 =item STORAGE
16346
16347 =item METHODS
16348
16349 =item WRAP YOUR OWN
16350
16351 =item LICENSE
16352
16353 This program is free software; you may redistribute it and/or modify it
16354 under
16355 the same terms as Perl itself. 
16356
16357 =item AUTHORS
16358
16359 =item SEE ALSO
16360
16361 =back
16362
16363 =head2 Math::BigInt::Scalar - Pure Perl module to test Math::BigInt with
16364 scalars
16365
16366 =over 4
16367
16368 =item SYNOPSIS
16369
16370 =item DESCRIPTION
16371
16372 =item LICENSE
16373
16374 This program is free software; you may redistribute it and/or modify it
16375 under
16376 the same terms as Perl itself. 
16377
16378 =item AUTHOR
16379
16380 =item SEE ALSO
16381
16382 =back
16383
16384 =head2 Math::BigRat - arbitrarily big rationals
16385
16386 =over 4
16387
16388 =item SYNOPSIS
16389
16390 =item DESCRIPTION
16391
16392 =over 4
16393
16394 =item MATH LIBRARY
16395
16396 =back
16397
16398 =item METHODS
16399
16400 =over 4
16401
16402 =item new()
16403
16404 =item numerator()
16405
16406 =item denominator()
16407
16408         $d = $x->denominator();
16409
16410 =item parts()
16411
16412 =item as_number()
16413
16414 =item bfac()
16415
16416 =item blog()
16417
16418 =item bround()/round()/bfround()
16419
16420 =item bmod()
16421
16422 =item is_one()
16423
16424 =item is_zero()
16425
16426 =item is_positive()
16427
16428 =item is_negative()
16429
16430 =item is_int()
16431
16432 =item is_odd()
16433
16434 =item is_even()
16435
16436 =item bceil()
16437
16438 =item bfloor()
16439
16440         $x->bfloor();
16441
16442 =item config
16443
16444 =back
16445
16446 =item BUGS
16447
16448 inf handling (partial), NaN handling (partial), rounding (not implemented
16449 except for bceil/bfloor), $x ** $y where $y is not an integer
16450
16451 =item LICENSE
16452
16453 =item SEE ALSO
16454
16455 =item AUTHORS
16456
16457 =back
16458
16459 =head2 Math::Complex - complex numbers and associated mathematical
16460 functions
16461
16462 =over 4
16463
16464 =item SYNOPSIS
16465
16466 =item DESCRIPTION
16467
16468 =item OPERATIONS
16469
16470 =item CREATION
16471
16472 =item STRINGIFICATION
16473
16474 =over 4
16475
16476 =item CHANGED IN PERL 5.6
16477
16478 =back
16479
16480 =item USAGE
16481
16482 =item ERRORS DUE TO DIVISION BY ZERO OR LOGARITHM OF ZERO
16483
16484 =item ERRORS DUE TO INDIGESTIBLE ARGUMENTS
16485
16486 =item BUGS
16487
16488 =item AUTHORS
16489
16490 =back
16491
16492 =head2 Math::Trig - trigonometric functions
16493
16494 =over 4
16495
16496 =item SYNOPSIS
16497
16498 =item DESCRIPTION
16499
16500 =item TRIGONOMETRIC FUNCTIONS
16501
16502 B<tan>
16503
16504 =over 4
16505
16506 =item ERRORS DUE TO DIVISION BY ZERO
16507
16508 =item SIMPLE (REAL) ARGUMENTS, COMPLEX RESULTS
16509
16510 =back
16511
16512 =item PLANE ANGLE CONVERSIONS
16513
16514 =item RADIAL COORDINATE CONVERSIONS
16515
16516 =over 4
16517
16518 =item COORDINATE SYSTEMS
16519
16520 =item 3-D ANGLE CONVERSIONS
16521
16522 cartesian_to_cylindrical, cartesian_to_spherical, cylindrical_to_cartesian,
16523 cylindrical_to_spherical, spherical_to_cartesian, spherical_to_cylindrical
16524
16525 =back
16526
16527 =item GREAT CIRCLE DISTANCES AND DIRECTIONS
16528
16529 =item EXAMPLES
16530
16531 =over 4
16532
16533 =item CAVEAT FOR GREAT CIRCLE FORMULAS
16534
16535 =back
16536
16537 =item BUGS
16538
16539 =item AUTHORS
16540
16541 =back
16542
16543 =head2 Memoize - Make functions faster by trading space for time
16544
16545 =over 4
16546
16547 =item SYNOPSIS
16548
16549 =item DESCRIPTION
16550
16551 =item DETAILS
16552
16553 =item OPTIONS
16554
16555 =over 4
16556
16557 =item INSTALL
16558
16559 =item NORMALIZER
16560
16561 =item C<SCALAR_CACHE>, C<LIST_CACHE>
16562
16563 C<MEMORY>, C<HASH>, C<TIE>, C<FAULT>, C<MERGE>
16564
16565 =back
16566
16567 =item OTHER FACILITIES
16568
16569 =over 4
16570
16571 =item C<unmemoize>
16572
16573 =item C<flush_cache>
16574
16575 =back
16576
16577 =item CAVEATS
16578
16579 =item PERSISTENT CACHE SUPPORT
16580
16581 =item EXPIRATION SUPPORT
16582
16583 =item BUGS
16584
16585 =item MAILING LIST
16586
16587 =item AUTHOR
16588
16589 =item COPYRIGHT AND LICENSE
16590
16591 =item THANK YOU
16592
16593 =back
16594
16595 =head2 Memoize::AnyDBM_File - glue to provide EXISTS for AnyDBM_File for
16596 Storable use
16597
16598 =over 4
16599
16600 =item DESCRIPTION
16601
16602 =back
16603
16604 =head2 Memoize::Expire - Plug-in module for automatic expiration of
16605 memoized values
16606
16607 =over 4
16608
16609 =item SYNOPSIS
16610
16611 =item DESCRIPTION
16612
16613 =item INTERFACE
16614
16615  TIEHASH,  EXISTS,  STORE
16616
16617 =item ALTERNATIVES
16618
16619 =item CAVEATS
16620
16621 =item AUTHOR
16622
16623 =item SEE ALSO
16624
16625 =back
16626
16627 =head2 Memoize::ExpireFile - test for Memoize expiration semantics
16628
16629 =over 4
16630
16631 =item DESCRIPTION
16632
16633 =back
16634
16635 =head2 Memoize::ExpireTest - test for Memoize expiration semantics
16636
16637 =over 4
16638
16639 =item DESCRIPTION
16640
16641 =back
16642
16643 =head2 Memoize::NDBM_File - glue to provide EXISTS for NDBM_File for
16644 Storable use
16645
16646 =over 4
16647
16648 =item DESCRIPTION
16649
16650 =back
16651
16652 =head2 Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for
16653 Storable use
16654
16655 =over 4
16656
16657 =item DESCRIPTION
16658
16659 =back
16660
16661 =head2 Memoize::Storable - store Memoized data in Storable database
16662
16663 =over 4
16664
16665 =item DESCRIPTION
16666
16667 =back
16668
16669 =head2 NDBM_File - Tied access to ndbm files
16670
16671 =over 4
16672
16673 =item SYNOPSIS
16674
16675 =item DESCRIPTION
16676
16677 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
16678
16679 =item DIAGNOSTICS
16680
16681 =over 4
16682
16683 =item C<ndbm store returned -1, errno 22, key "..." at ...>
16684
16685 =back
16686
16687 =item BUGS AND WARNINGS
16688
16689 =back
16690
16691 =head2 NEXT - Provide a pseudo-class NEXT (et al) that allows method
16692 redispatch
16693
16694 =over 4
16695
16696 =item SYNOPSIS
16697
16698 =item DESCRIPTION
16699
16700 =over 4
16701
16702 =item Enforcing redispatch
16703
16704 =item Avoiding repetitions
16705
16706 =item Invoking all versions of a method with a single call
16707
16708 =item Using C<EVERY> methods
16709
16710 =back
16711
16712 =item AUTHOR
16713
16714 =item BUGS AND IRRITATIONS
16715
16716 =item COPYRIGHT
16717
16718 =back
16719
16720 =head2 Net::Cmd - Network Command class (as used by FTP, SMTP etc)
16721
16722 =over 4
16723
16724 =item SYNOPSIS
16725
16726 =item DESCRIPTION
16727
16728 =item USER METHODS
16729
16730 debug ( VALUE ), message (), code (), ok (), status (), datasend ( DATA ),
16731 dataend ()
16732
16733 =item CLASS METHODS
16734
16735 debug_print ( DIR, TEXT ), debug_text ( TEXT ), command ( CMD [, ARGS, ...
16736 ]), unsupported (), response (), parse_response ( TEXT ), getline (),
16737 ungetline ( TEXT ), rawdatasend ( DATA ), read_until_dot (), tied_fh ()
16738
16739 =item EXPORTS
16740
16741 =item AUTHOR
16742
16743 =item COPYRIGHT
16744
16745 =back
16746
16747 =head2 Net::Config - Local configuration data for libnet
16748
16749 =over 4
16750
16751 =item SYNOPSYS
16752
16753 =item DESCRIPTION
16754
16755 =item METHODS
16756
16757 requires_firewall HOST
16758
16759 =item NetConfig VALUES
16760
16761 nntp_hosts, snpp_hosts, pop3_hosts, smtp_hosts, ph_hosts, daytime_hosts,
16762 time_hosts, inet_domain, ftp_firewall, ftp_firewall_type, ftp_ext_passive,
16763 ftp_int_pasive, local_netmask, test_hosts, test_exists
16764
16765 =back
16766
16767 =head2 Net::Domain - Attempt to evaluate the current host's internet name
16768 and domain
16769
16770 =over 4
16771
16772 =item SYNOPSIS
16773
16774 =item DESCRIPTION
16775
16776 hostfqdn (), hostname (), hostdomain ()
16777
16778 =item AUTHOR
16779
16780 =item COPYRIGHT
16781
16782 =back
16783
16784 =head2 Net::FTP - FTP Client class
16785
16786 =over 4
16787
16788 =item SYNOPSIS
16789
16790 =item DESCRIPTION
16791
16792 =item OVERVIEW
16793
16794 =item CONSTRUCTOR
16795
16796 new (HOST [,OPTIONS])
16797
16798 =item METHODS
16799
16800 login ([LOGIN [,PASSWORD [, ACCOUNT] ] ]), authorize ( [AUTH [, RESP]]),
16801 site (ARGS), type (TYPE [, ARGS]), ascii ([ARGS]) binary([ARGS])
16802 ebcdic([ARGS]) byte([ARGS]), rename ( OLDNAME, NEWNAME ), delete ( FILENAME
16803 ), cwd ( [ DIR ] ), cdup (), pwd (), restart ( WHERE ), rmdir ( DIR ),
16804 mkdir ( DIR [, RECURSE ]), ls ( [ DIR ] ), alloc ( SIZE [, RECORD_SIZE] ),
16805 dir ( [ DIR ] ), get ( REMOTE_FILE [, LOCAL_FILE [, WHERE]] ), put (
16806 LOCAL_FILE [, REMOTE_FILE ] ), put_unique ( LOCAL_FILE [, REMOTE_FILE ] ),
16807 append ( LOCAL_FILE [, REMOTE_FILE ] ), unique_name (), mdtm ( FILE ), size
16808 ( FILE ), supported ( CMD ), hash ( [FILEHANDLE_GLOB_REF],[
16809 BYTES_PER_HASH_MARK] ), nlst ( [ DIR ] ), list ( [ DIR ] ), retr ( FILE ),
16810 stor ( FILE ), stou ( FILE ), appe ( FILE ), port ( [ PORT ] ), pasv (),
16811 pasv_xfer ( SRC_FILE, DEST_SERVER [, DEST_FILE ] ), pasv_xfer_unique (
16812 SRC_FILE, DEST_SERVER [, DEST_FILE ] ), pasv_wait ( NON_PASV_SERVER ),
16813 abort (), quit ()
16814
16815 =over 4
16816
16817 =item Methods for the adventurous
16818
16819 quot (CMD [,ARGS])
16820
16821 =back
16822
16823 =item THE dataconn CLASS
16824
16825 read ( BUFFER, SIZE [, TIMEOUT ] ), write ( BUFFER, SIZE [, TIMEOUT ] ),
16826 bytes_read (), abort (), close ()
16827
16828 =item UNIMPLEMENTED
16829
16830 B<SMNT>, B<HELP>, B<MODE>, B<SYST>, B<STAT>, B<STRU>, B<REIN>
16831
16832 =item REPORTING BUGS
16833
16834 =item AUTHOR
16835
16836 =item SEE ALSO
16837
16838 =item USE EXAMPLES
16839
16840 http://www.csh.rit.edu/~adam/Progs/autoftp-2.0.tar.gz
16841
16842 =item CREDITS
16843
16844 =item COPYRIGHT
16845
16846 =back
16847
16848 =head2 Net::NNTP - NNTP Client class
16849
16850 =over 4
16851
16852 =item SYNOPSIS
16853
16854 =item DESCRIPTION
16855
16856 =item CONSTRUCTOR
16857
16858 new ( [ HOST ] [, OPTIONS ])
16859
16860 =item METHODS
16861
16862 article ( [ MSGID|MSGNUM ], [FH] ), body ( [ MSGID|MSGNUM ], [FH] ), head (
16863 [ MSGID|MSGNUM ], [FH] ), articlefh ( [ MSGID|MSGNUM ] ), bodyfh ( [
16864 MSGID|MSGNUM ] ), headfh ( [ MSGID|MSGNUM ] ), nntpstat ( [ MSGID|MSGNUM ]
16865 ), group ( [ GROUP ] ), ihave ( MSGID [, MESSAGE ]), last (), date (),
16866 postok (), authinfo ( USER, PASS ), list (), newgroups ( SINCE [,
16867 DISTRIBUTIONS ]), newnews ( SINCE [, GROUPS [, DISTRIBUTIONS ]]), next (),
16868 post ( [ MESSAGE ] ), postfh (), slave (), quit ()
16869
16870 =over 4
16871
16872 =item Extension methods
16873
16874 newsgroups ( [ PATTERN ] ), distributions (), subscriptions (),
16875 overview_fmt (), active_times (), active ( [ PATTERN ] ), xgtitle ( PATTERN
16876 ), xhdr ( HEADER, MESSAGE-SPEC ), xover ( MESSAGE-SPEC ), xpath (
16877 MESSAGE-ID ), xpat ( HEADER, PATTERN, MESSAGE-SPEC), xrover, listgroup ( [
16878 GROUP ] ), reader
16879
16880 =back
16881
16882 =item UNSUPPORTED
16883
16884 =item DEFINITIONS
16885
16886 MESSAGE-SPEC, PATTERN, Examples, C<[^]-]>, C<*bdc>, C<[0-9a-zA-Z]>, C<a??d>
16887
16888 =item SEE ALSO
16889
16890 =item AUTHOR
16891
16892 =item COPYRIGHT
16893
16894 =back
16895
16896 =head2 Net::POP3 - Post Office Protocol 3 Client class (RFC1939)
16897
16898 =over 4
16899
16900 =item SYNOPSIS
16901
16902 =item DESCRIPTION
16903
16904 =item CONSTRUCTOR
16905
16906 new ( [ HOST, ] [ OPTIONS ] )
16907
16908 =item METHODS
16909
16910 user ( USER ), pass ( PASS ), login ( [ USER [, PASS ]] ), apop ( [ USER [,
16911 PASS ]] ), top ( MSGNUM [, NUMLINES ] ), list ( [ MSGNUM ] ), get ( MSGNUM
16912 [, FH ] ), getfh ( MSGNUM ), last (), popstat (), ping ( USER ), uidl ( [
16913 MSGNUM ] ), delete ( MSGNUM ), reset (), quit ()
16914
16915 =item NOTES
16916
16917 =item SEE ALSO
16918
16919 =item AUTHOR
16920
16921 =item COPYRIGHT
16922
16923 =back
16924
16925 =head2 Net::Ping - check a remote host for reachability
16926
16927 =over 4
16928
16929 =item SYNOPSIS
16930
16931 =item DESCRIPTION
16932
16933 =over 4
16934
16935 =item Functions
16936
16937 Net::Ping->new([$proto [, $def_timeout [, $bytes [, $device [, $tos
16938 ]]]]]);, $p->ping($host [, $timeout]);, $p->source_verify( { 0 | 1 } );,
16939 $p->service_check( { 0 | 1 } );, $p->tcp_service_check( { 0 | 1 } );,
16940 $p->hires( { 0 | 1 } );, $p->bind($local_addr);, $p->open($host);, $p->ack(
16941 [ $host ] );, $p->nack( $failed_ack_host );, $p->close();, pingecho($host
16942 [, $timeout]);
16943
16944 =back
16945
16946 =item NOTES
16947
16948 =item INSTALL
16949
16950 =item BUGS
16951
16952 =item AUTHORS
16953
16954 =item COPYRIGHT
16955
16956 =back
16957
16958 =head2 Net::SMTP - Simple Mail Transfer Protocol Client
16959
16960 =over 4
16961
16962 =item SYNOPSIS
16963
16964 =item DESCRIPTION
16965
16966 =item EXAMPLES
16967
16968 =item CONSTRUCTOR
16969
16970 new Net::SMTP [ HOST, ] [ OPTIONS ]
16971
16972 =item METHODS
16973
16974 banner (), domain (), hello ( DOMAIN ), etrn ( DOMAIN ), auth ( USERNAME,
16975 PASSWORD ), mail ( ADDRESS [, OPTIONS] ), send ( ADDRESS ), send_or_mail (
16976 ADDRESS ), send_and_mail ( ADDRESS ), reset (), recipient ( ADDRESS [,
16977 ADDRESS [ ...]] [, OPTIONS ] ), to ( ADDRESS [, ADDRESS [...]] ), cc (
16978 ADDRESS [, ADDRESS [...]] ), bcc ( ADDRESS [, ADDRESS [...]] ), data ( [
16979 DATA ] ), expand ( ADDRESS ), verify ( ADDRESS ), help ( [ $subject ] ),
16980 quit ()
16981
16982 =item ADDRESSES
16983
16984 =item SEE ALSO
16985
16986 =item AUTHOR
16987
16988 =item COPYRIGHT
16989
16990 =back
16991
16992 =head2 Net::Time - time and daytime network client interface
16993
16994 =over 4
16995
16996 =item SYNOPSIS
16997
16998 =item DESCRIPTION
16999
17000 inet_time ( [HOST [, PROTOCOL [, TIMEOUT]]]), inet_daytime ( [HOST [,
17001 PROTOCOL [, TIMEOUT]]])
17002
17003 =item AUTHOR
17004
17005 =item COPYRIGHT
17006
17007 =back
17008
17009 =head2 Net::hostent - by-name interface to Perl's built-in gethost*()
17010 functions
17011
17012 =over 4
17013
17014 =item SYNOPSIS
17015
17016 =item DESCRIPTION
17017
17018 =item EXAMPLES
17019
17020 =item NOTE
17021
17022 =item AUTHOR
17023
17024 =back
17025
17026 =head2 Net::libnetFAQ, libnetFAQ - libnet Frequently Asked Questions
17027
17028 =over 4
17029
17030 =item DESCRIPTION
17031
17032 =over 4
17033
17034 =item Where to get this document
17035
17036 =item How to contribute to this document
17037
17038 =back
17039
17040 =item Author and Copyright Information
17041
17042 =over 4
17043
17044 =item Disclaimer
17045
17046 =back
17047
17048 =item Obtaining and installing libnet
17049
17050 =over 4
17051
17052 =item What is libnet ?
17053
17054 =item Which version of perl do I need ?
17055
17056 =item What other modules do I need ?
17057
17058 =item What machines support libnet ?
17059
17060 =item Where can I get the latest libnet release
17061
17062 =back
17063
17064 =item Using Net::FTP
17065
17066 =over 4
17067
17068 =item How do I download files from an FTP server ?
17069
17070 =item How do I transfer files in binary mode ?
17071
17072 =item How can I get the size of a file on a remote FTP server ?
17073
17074 =item How can I get the modification time of a file on a remote FTP server
17075 ?
17076
17077 =item How can I change the permissions of a file on a remote server ?
17078
17079 =item Can I do a reget operation like the ftp command ?
17080
17081 =item How do I get a directory listing from an FTP server ?
17082
17083 =item Changing directory to "" does not fail ?
17084
17085 =item I am behind a SOCKS firewall, but the Firewall option does not work ?
17086
17087 =item I am behind an FTP proxy firewall, but cannot access machines outside
17088 ?
17089
17090 =item My ftp proxy firewall does not listen on port 21
17091
17092 =item Is it possible to change the file permissions of a file on an FTP
17093 server ?
17094
17095 =item I have seen scripts call a method message, but cannot find it
17096 documented ?
17097
17098 =item Why does Net::FTP not implement mput and mget methods
17099
17100 =back
17101
17102 =item Using Net::SMTP
17103
17104 =over 4
17105
17106 =item Why can't the part of an Email address after the @ be used as the
17107 hostname ?
17108
17109 =item Why does Net::SMTP not do DNS MX lookups ?
17110
17111 =item The verify method always returns true ?
17112
17113 =back
17114
17115 =item Debugging scripts
17116
17117 =over 4
17118
17119 =item How can I debug my scripts that use Net::* modules ?
17120
17121 =back
17122
17123 =item AUTHOR AND COPYRIGHT
17124
17125 =back
17126
17127 =head2 Net::netent - by-name interface to Perl's built-in getnet*()
17128 functions
17129
17130 =over 4
17131
17132 =item SYNOPSIS
17133
17134 =item DESCRIPTION
17135
17136 =item EXAMPLES
17137
17138 =item NOTE
17139
17140 =item AUTHOR
17141
17142 =back
17143
17144 =head2 Net::protoent - by-name interface to Perl's built-in getproto*()
17145 functions
17146
17147 =over 4
17148
17149 =item SYNOPSIS
17150
17151 =item DESCRIPTION
17152
17153 =item NOTE
17154
17155 =item AUTHOR
17156
17157 =back
17158
17159 =head2 Net::servent - by-name interface to Perl's built-in getserv*()
17160 functions
17161
17162 =over 4
17163
17164 =item SYNOPSIS
17165
17166 =item DESCRIPTION
17167
17168 =item EXAMPLES
17169
17170 =item NOTE
17171
17172 =item AUTHOR
17173
17174 =back
17175
17176 =head2 Netrc, Net::Netrc - OO interface to users netrc file
17177
17178 =over 4
17179
17180 =item SYNOPSIS
17181
17182 =item DESCRIPTION
17183
17184 =item THE .netrc FILE
17185
17186 machine name, default, login name, password string, account string, macdef
17187 name
17188
17189 =item CONSTRUCTOR
17190
17191 lookup ( MACHINE [, LOGIN ])
17192
17193 =item METHODS
17194
17195 login (), password (), account (), lpa ()
17196
17197 =item AUTHOR
17198
17199 =item SEE ALSO
17200
17201 =item COPYRIGHT
17202
17203 =back
17204
17205 =head2 O - Generic interface to Perl Compiler backends
17206
17207 =over 4
17208
17209 =item SYNOPSIS
17210
17211 =item DESCRIPTION
17212
17213 =item CONVENTIONS
17214
17215 =item IMPLEMENTATION
17216
17217 =item BUGS
17218
17219 =item AUTHOR
17220
17221 =back
17222
17223 =head2 ODBM_File - Tied access to odbm files
17224
17225 =over 4
17226
17227 =item SYNOPSIS
17228
17229 =item DESCRIPTION
17230
17231 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
17232
17233 =item DIAGNOSTICS
17234
17235 =over 4
17236
17237 =item C<odbm store returned -1, errno 22, key "..." at ...>
17238
17239 =back
17240
17241 =item BUGS AND WARNINGS
17242
17243 =back
17244
17245 =head2 Opcode - Disable named opcodes when compiling perl code
17246
17247 =over 4
17248
17249 =item SYNOPSIS
17250
17251 =item DESCRIPTION
17252
17253 =item NOTE
17254
17255 =item WARNING
17256
17257 =item Operator Names and Operator Lists
17258
17259 an operator name (opname), an operator tag name (optag), a negated opname
17260 or optag, an operator set (opset)
17261
17262 =item Opcode Functions
17263
17264 opcodes, opset (OP, ...), opset_to_ops (OPSET), opset_to_hex (OPSET),
17265 full_opset, empty_opset, invert_opset (OPSET), verify_opset (OPSET, ...),
17266 define_optag (OPTAG, OPSET), opmask_add (OPSET), opmask, opdesc (OP, ...),
17267 opdump (PAT)
17268
17269 =item Manipulating Opsets
17270
17271 =item TO DO (maybe)
17272
17273 =back
17274
17275 =over 4
17276
17277 =item Predefined Opcode Tags
17278
17279 :base_core, :base_mem, :base_loop, :base_io, :base_orig, :base_math,
17280 :base_thread, :default, :filesys_read, :sys_db, :browse, :filesys_open,
17281 :filesys_write, :subprocess, :ownprocess, :others, :still_to_be_decided,
17282 :dangerous
17283
17284 =item SEE ALSO
17285
17286 =item AUTHORS
17287
17288 =back
17289
17290 =head2 Opcode::Safe, Safe - Compile and execute code in restricted
17291 compartments
17292
17293 =over 4
17294
17295 =item SYNOPSIS
17296
17297 =item DESCRIPTION
17298
17299 a new namespace, an operator mask
17300
17301 =item WARNING
17302
17303 =over 4
17304
17305 =item RECENT CHANGES
17306
17307 =item Methods in class Safe
17308
17309 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
17310 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
17311 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
17312 root (NAMESPACE), mask (MASK)
17313
17314 =item Some Safety Issues
17315
17316 Memory, CPU, Snooping, Signals, State Changes
17317
17318 =item AUTHOR
17319
17320 =back
17321
17322 =back
17323
17324 =head2 Opcode::ops, ops - Perl pragma to restrict unsafe operations when
17325 compiling
17326
17327 =over 4
17328
17329 =item SYNOPSIS  
17330
17331 =item DESCRIPTION
17332
17333 =item SEE ALSO
17334
17335 =back
17336
17337 =head2 POSIX - Perl interface to IEEE Std 1003.1
17338
17339 =over 4
17340
17341 =item SYNOPSIS
17342
17343 =item DESCRIPTION
17344
17345 =item NOTE
17346
17347 =item CAVEATS 
17348
17349 =item FUNCTIONS
17350
17351 _exit, abort, abs, access, acos, alarm, asctime, asin, assert, atan, atan2,
17352 atexit, atof, atoi, atol, bsearch, calloc, ceil, chdir, chmod, chown,
17353 clearerr, clock, close, closedir, cos, cosh, creat, ctermid, ctime,
17354 cuserid, difftime, div, dup, dup2, errno, execl, execle, execlp, execv,
17355 execve, execvp, exit, exp, fabs, fclose, fcntl, fdopen, feof, ferror,
17356 fflush, fgetc, fgetpos, fgets, fileno, floor, fmod, fopen, fork, fpathconf,
17357 fprintf, fputc, fputs, fread, free, freopen, frexp, fscanf, fseek, fsetpos,
17358 fstat, fsync, ftell, fwrite, getc, getchar, getcwd, getegid, getenv,
17359 geteuid, getgid, getgrgid, getgrnam, getgroups, getlogin, getpgrp, getpid,
17360 getppid, getpwnam, getpwuid, gets, getuid, gmtime, isalnum, isalpha,
17361 isatty, iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace,
17362 isupper, isxdigit, kill, labs, ldexp, ldiv, link, localeconv, localtime,
17363 log, log10, longjmp, lseek, malloc, mblen, mbstowcs, mbtowc, memchr,
17364 memcmp, memcpy, memmove, memset, mkdir, mkfifo, mktime, modf, nice,
17365 offsetof, open, opendir, pathconf, pause, perror, pipe, pow, printf, putc,
17366 putchar, puts, qsort, raise, rand, read, readdir, realloc, remove, rename,
17367 rewind, rewinddir, rmdir, scanf, setgid, setjmp, setlocale, setpgid,
17368 setsid, setuid, sigaction, siglongjmp, sigpending, sigprocmask, sigsetjmp,
17369 sigsuspend, sin, sinh, sleep, sprintf, sqrt, srand, sscanf, stat, strcat,
17370 strchr, strcmp, strcoll, strcpy, strcspn, strerror, strftime, strlen,
17371 strncat, strncmp, strncpy, strpbrk, strrchr, strspn, strstr, strtod,
17372 strtok, strtol, strtoul, strxfrm, sysconf, system, tan, tanh, tcdrain,
17373 tcflow, tcflush, tcgetpgrp, tcsendbreak, tcsetpgrp, time, times, tmpfile,
17374 tmpnam, tolower, toupper, ttyname, tzname, tzset, umask, uname, ungetc,
17375 unlink, utime, vfprintf, vprintf, vsprintf, wait, waitpid, wcstombs,
17376 wctomb, write
17377
17378 =item CLASSES
17379
17380 =over 4
17381
17382 =item POSIX::SigAction
17383
17384 new, handler, mask, flags, safe
17385
17386 =item POSIX::SigSet
17387
17388 new, addset, delset, emptyset, fillset, ismember
17389
17390 =item POSIX::Termios
17391
17392 new, getattr, getcc, getcflag, getiflag, getispeed, getlflag, getoflag,
17393 getospeed, setattr, setcc, setcflag, setiflag, setispeed, setlflag,
17394 setoflag, setospeed, Baud rate values, Terminal interface values, c_cc
17395 field values, c_cflag field values, c_iflag field values, c_lflag field
17396 values, c_oflag field values
17397
17398 =back
17399
17400 =item PATHNAME CONSTANTS
17401
17402 Constants
17403
17404 =item POSIX CONSTANTS
17405
17406 Constants
17407
17408 =item SYSTEM CONFIGURATION
17409
17410 Constants
17411
17412 =item ERRNO
17413
17414 Constants
17415
17416 =item FCNTL
17417
17418 Constants
17419
17420 =item FLOAT
17421
17422 Constants
17423
17424 =item LIMITS
17425
17426 Constants
17427
17428 =item LOCALE
17429
17430 Constants
17431
17432 =item MATH
17433
17434 Constants
17435
17436 =item SIGNAL
17437
17438 Constants
17439
17440 =item STAT
17441
17442 Constants, Macros
17443
17444 =item STDLIB
17445
17446 Constants
17447
17448 =item STDIO
17449
17450 Constants
17451
17452 =item TIME
17453
17454 Constants
17455
17456 =item UNISTD
17457
17458 Constants
17459
17460 =item WAIT
17461
17462 Constants, WNOHANG, WUNTRACED, Macros, WIFEXITED, WEXITSTATUS, WIFSIGNALED,
17463 WTERMSIG, WIFSTOPPED, WSTOPSIG
17464
17465 =back
17466
17467 =head2 PerlIO - On demand loader for PerlIO layers and root of PerlIO::*
17468 name space
17469
17470 =over 4
17471
17472 =item SYNOPSIS
17473
17474 =item DESCRIPTION
17475
17476 unix, stdio, perlio, crlf, utf8, bytes, raw, pop
17477
17478 =over 4
17479
17480 =item Custom Layers
17481
17482 :encoding, :via
17483
17484 =item Alternatives to raw
17485
17486 =item Defaults and how to override them
17487
17488 =item Querying the layers of filehandle
17489
17490 =back
17491
17492 =item AUTHOR
17493
17494 =item SEE ALSO
17495
17496 =back
17497
17498 =head2 PerlIO::encoding - encoding layer
17499
17500 =over 4
17501
17502 =item SYNOPSIS
17503
17504 =item DESCRIPTION
17505
17506 =item SEE ALSO
17507
17508 =back
17509
17510 =head2 PerlIO::scalar - in-memory IO, scalar IO
17511
17512 =over 4
17513
17514 =item SYNOPSIS
17515
17516 =item DESCRIPTION
17517
17518 =item IMPLEMENTATION NOTE
17519
17520 =back
17521
17522 =head2 PerlIO::via - Helper class for PerlIO layers implemented in perl
17523
17524 =over 4
17525
17526 =item SYNOPSIS
17527
17528 =item DESCRIPTION
17529
17530 =item EXPECTED METHODS
17531
17532 $class->PUSHED([$mode[,$fh]]), $obj->POPPED([$fh]),
17533 $obj->UTF8($bellowFlag,[$fh]), $obj->OPEN($path,$mode[,$fh]),
17534 $obj->BINMODE([,$fh]), $obj->FDOPEN($fd[,$fh]),
17535 $obj->SYSOPEN($path,$imode,$perm,[,$fh]), $obj->FILENO($fh),
17536 $obj->READ($buffer,$len,$fh), $obj->WRITE($buffer,$fh), $obj->FILL($fh),
17537 $obj->CLOSE($fh), $obj->SEEK($posn,$whence,$fh), $obj->TELL($fh),
17538 $obj->UNREAD($buffer,$fh), $obj->FLUSH($fh), $obj->SETLINEBUF($fh),
17539 $obj->CLEARERR($fh), $obj->ERROR($fh), $obj->EOF($fh)
17540
17541 =item EXAMPLES
17542
17543 =over 4
17544
17545 =item Example - a Hexadecimal Handle
17546
17547 =back
17548
17549 =back
17550
17551 =head2 PerlIO::via::QuotedPrint - PerlIO layer for quoted-printable strings
17552
17553 =over 4
17554
17555 =item SYNOPSIS
17556
17557 =item DESCRIPTION
17558
17559 =item SEE ALSO
17560
17561 =item ACKNOWLEDGEMENTS
17562
17563 =item COPYRIGHT
17564
17565 =back
17566
17567 =head2 Pod::Checker, podchecker() - check pod documents for syntax errors
17568
17569 =over 4
17570
17571 =item SYNOPSIS
17572
17573 =item OPTIONS/ARGUMENTS
17574
17575 =over 4
17576
17577 =item podchecker()
17578
17579 B<-warnings> =E<gt> I<val>
17580
17581 =back
17582
17583 =item DESCRIPTION
17584
17585 =item DIAGNOSTICS
17586
17587 =over 4
17588
17589 =item Errors
17590
17591 empty =headn, =over on line I<N> without closing =back, =item without
17592 previous =over, =back without previous =over, No argument for =begin, =end
17593 without =begin, Nested =begin's, =for without formatter specification,
17594 unresolved internal link I<NAME>, Unknown command "I<CMD>", Unknown
17595 interior-sequence "I<SEQ>", nested commands
17596 I<CMD>E<lt>...I<CMD>E<lt>...E<gt>...E<gt>, garbled entity I<STRING>, Entity
17597 number out of range, malformed link LE<lt>E<gt>, nonempty ZE<lt>E<gt>,
17598 empty XE<lt>E<gt>, Spurious text after =pod / =cut, Spurious character(s)
17599 after =back
17600
17601 =item Warnings
17602
17603 multiple occurrence of link target I<name>, line containing nothing but
17604 whitespace in paragraph, file does not start with =head, previous =item has
17605 no contents, preceding non-item paragraph(s), =item type mismatch (I<one>
17606 vs. I<two>), I<N> unescaped C<E<lt>E<gt>> in paragraph, Unknown entity, No
17607 items in =over, No argument for =item, empty section in previous paragraph,
17608 Verbatim paragraph in NAME section, =headI<n> without preceding higher
17609 level
17610
17611 =item Hyperlinks
17612
17613 ignoring leading/trailing whitespace in link, (section) in '$page'
17614 deprecated, alternative text/node '%s' contains non-escaped | or /
17615
17616 =back
17617
17618 =item RETURN VALUE
17619
17620 =item EXAMPLES
17621
17622 =item INTERFACE
17623
17624 =back
17625
17626 C<Pod::Checker-E<gt>new( %options )>
17627
17628 C<$checker-E<gt>poderror( @args )>, C<$checker-E<gt>poderror( {%opts},
17629 @args )>
17630
17631 C<$checker-E<gt>num_errors()>
17632
17633 C<$checker-E<gt>num_warnings()>
17634
17635 C<$checker-E<gt>name()>
17636
17637 C<$checker-E<gt>node()>
17638
17639 C<$checker-E<gt>idx()>
17640
17641 C<$checker-E<gt>hyperlink()>
17642
17643 =over 4
17644
17645 =item AUTHOR
17646
17647 =back
17648
17649 =head2 Pod::Find - find POD documents in directory trees
17650
17651 =over 4
17652
17653 =item SYNOPSIS
17654
17655 =item DESCRIPTION
17656
17657 =back
17658
17659 =over 4
17660
17661 =item C<pod_find( { %opts } , @directories )>
17662
17663 C<-verbose =E<gt> 1>, C<-perl =E<gt> 1>, C<-script =E<gt> 1>, C<-inc =E<gt>
17664 1>
17665
17666 =back
17667
17668 =over 4
17669
17670 =item C<simplify_name( $str )>
17671
17672 =back
17673
17674 =over 4
17675
17676 =item C<pod_where( { %opts }, $pod )>
17677
17678 C<-inc =E<gt> 1>, C<-dirs =E<gt> [ $dir1, $dir2, ... ]>, C<-verbose =E<gt>
17679 1>
17680
17681 =back
17682
17683 =over 4
17684
17685 =item C<contains_pod( $file , $verbose )>
17686
17687 =back
17688
17689 =over 4
17690
17691 =item AUTHOR
17692
17693 =item SEE ALSO
17694
17695 =back
17696
17697 =head2 Pod::Html - module to convert pod files to HTML
17698
17699 =over 4
17700
17701 =item SYNOPSIS
17702
17703 =item DESCRIPTION
17704
17705 =item ARGUMENTS
17706
17707 backlink, cachedir, css, flush, header, help, htmldir, htmlroot, index,
17708 infile, libpods, netscape, outfile, podpath, podroot, quiet, recurse,
17709 title, verbose
17710
17711 =item EXAMPLE
17712
17713 =item ENVIRONMENT
17714
17715 =item AUTHOR
17716
17717 =item SEE ALSO
17718
17719 =item COPYRIGHT
17720
17721 =back
17722
17723 =head2 Pod::InputObjects - objects representing POD input paragraphs,
17724 commands, etc.
17725
17726 =over 4
17727
17728 =item SYNOPSIS
17729
17730 =item REQUIRES
17731
17732 =item EXPORTS
17733
17734 =item DESCRIPTION
17735
17736 package B<Pod::InputSource>, package B<Pod::Paragraph>, package
17737 B<Pod::InteriorSequence>, package B<Pod::ParseTree>
17738
17739 =back
17740
17741 =over 4
17742
17743 =item B<Pod::InputSource>
17744
17745 =back
17746
17747 =over 4
17748
17749 =item B<new()>
17750
17751 =back
17752
17753 =over 4
17754
17755 =item B<name()>
17756
17757 =back
17758
17759 =over 4
17760
17761 =item B<handle()>
17762
17763 =back
17764
17765 =over 4
17766
17767 =item B<was_cutting()>
17768
17769 =back
17770
17771 =over 4
17772
17773 =item B<Pod::Paragraph>
17774
17775 =back
17776
17777 =over 4
17778
17779 =item Pod::Paragraph-E<gt>B<new()>
17780
17781 =back
17782
17783 =over 4
17784
17785 =item $pod_para-E<gt>B<cmd_name()>
17786
17787 =back
17788
17789 =over 4
17790
17791 =item $pod_para-E<gt>B<text()>
17792
17793 =back
17794
17795 =over 4
17796
17797 =item $pod_para-E<gt>B<raw_text()>
17798
17799 =back
17800
17801 =over 4
17802
17803 =item $pod_para-E<gt>B<cmd_prefix()>
17804
17805 =back
17806
17807 =over 4
17808
17809 =item $pod_para-E<gt>B<cmd_separator()>
17810
17811 =back
17812
17813 =over 4
17814
17815 =item $pod_para-E<gt>B<parse_tree()>
17816
17817 =back
17818
17819 =over 4
17820
17821 =item $pod_para-E<gt>B<file_line()>
17822
17823 =back
17824
17825 =over 4
17826
17827 =item B<Pod::InteriorSequence>
17828
17829 =back
17830
17831 =over 4
17832
17833 =item Pod::InteriorSequence-E<gt>B<new()>
17834
17835 =back
17836
17837 =over 4
17838
17839 =item $pod_seq-E<gt>B<cmd_name()>
17840
17841 =back
17842
17843 =over 4
17844
17845 =item $pod_seq-E<gt>B<prepend()>
17846
17847 =back
17848
17849 =over 4
17850
17851 =item $pod_seq-E<gt>B<append()>
17852
17853 =back
17854
17855 =over 4
17856
17857 =item $pod_seq-E<gt>B<nested()>
17858
17859 =back
17860
17861 =over 4
17862
17863 =item $pod_seq-E<gt>B<raw_text()>
17864
17865 =back
17866
17867 =over 4
17868
17869 =item $pod_seq-E<gt>B<left_delimiter()>
17870
17871 =back
17872
17873 =over 4
17874
17875 =item $pod_seq-E<gt>B<right_delimiter()>
17876
17877 =back
17878
17879 =over 4
17880
17881 =item $pod_seq-E<gt>B<parse_tree()>
17882
17883 =back
17884
17885 =over 4
17886
17887 =item $pod_seq-E<gt>B<file_line()>
17888
17889 =back
17890
17891 =over 4
17892
17893 =item Pod::InteriorSequence::B<DESTROY()>
17894
17895 =back
17896
17897 =over 4
17898
17899 =item B<Pod::ParseTree>
17900
17901 =back
17902
17903 =over 4
17904
17905 =item Pod::ParseTree-E<gt>B<new()>
17906
17907 =back
17908
17909 =over 4
17910
17911 =item $ptree-E<gt>B<top()>
17912
17913 =back
17914
17915 =over 4
17916
17917 =item $ptree-E<gt>B<children()>
17918
17919 =back
17920
17921 =over 4
17922
17923 =item $ptree-E<gt>B<prepend()>
17924
17925 =back
17926
17927 =over 4
17928
17929 =item $ptree-E<gt>B<append()>
17930
17931 =back
17932
17933 =over 4
17934
17935 =item $ptree-E<gt>B<raw_text()>
17936
17937 =back
17938
17939 =over 4
17940
17941 =item Pod::ParseTree::B<DESTROY()>
17942
17943 =back
17944
17945 =over 4
17946
17947 =item SEE ALSO
17948
17949 =item AUTHOR
17950
17951 =back
17952
17953 =head2 Pod::LaTeX - Convert Pod data to formatted Latex
17954
17955 =over 4
17956
17957 =item SYNOPSIS
17958
17959 =item DESCRIPTION
17960
17961 =back
17962
17963 =over 4
17964
17965 =item OBJECT METHODS
17966
17967 C<initialize>
17968
17969 =back
17970
17971 =over 4
17972
17973 =item Data Accessors
17974
17975 B<AddPreamble>
17976
17977 =back
17978
17979 B<AddPostamble>
17980
17981 B<Head1Level>
17982
17983 B<Label>
17984
17985 B<LevelNoNum>
17986
17987 B<MakeIndex>
17988
17989 B<ReplaceNAMEwithSection>
17990
17991 B<StartWithNewPage>
17992
17993 B<TableOfContents>
17994
17995 B<UniqueLabels>
17996
17997 B<UserPreamble>
17998
17999 B<UserPostamble>
18000
18001 B<Lists>
18002
18003 =over 4
18004
18005 =item Subclassed methods
18006
18007 =back
18008
18009 B<begin_pod>
18010
18011 B<end_pod>
18012
18013 B<command>
18014
18015 B<verbatim>
18016
18017 B<textblock>
18018
18019 B<interior_sequence>
18020
18021 =over 4
18022
18023 =item List Methods
18024
18025 B<begin_list>
18026
18027 =back
18028
18029 B<end_list>
18030
18031 B<add_item>
18032
18033 =over 4
18034
18035 =item Methods for headings
18036
18037 B<head>
18038
18039 =back
18040
18041 =over 4
18042
18043 =item Internal methods
18044
18045 B<_output>
18046
18047 =back
18048
18049 B<_replace_special_chars>
18050
18051 B<_replace_special_chars_late>
18052
18053 B<_create_label>
18054
18055 B<_create_index>
18056
18057 B<_clean_latex_commands>
18058
18059 B<_split_delimited>
18060
18061 =over 4
18062
18063 =item NOTES
18064
18065 =item SEE ALSO
18066
18067 =item AUTHORS
18068
18069 =item COPYRIGHT
18070
18071 =item REVISION
18072
18073 =back
18074
18075 =head2 Pod::Man - Convert POD data to formatted *roff input
18076
18077 =over 4
18078
18079 =item SYNOPSIS
18080
18081 =item DESCRIPTION
18082
18083 center, date, fixed, fixedbold, fixeditalic, fixedbolditalic, name, quotes,
18084 release, section
18085
18086 =item DIAGNOSTICS
18087
18088 roff font should be 1 or 2 chars, not "%s", Invalid link %s, Invalid quote
18089 specification "%s", %s:%d: Unknown command paragraph "%s", %s:%d: Unknown
18090 escape EE<lt>%sE<gt>, %s:%d: Unknown formatting code %s, %s:%d: Unmatched
18091 =back
18092
18093 =item BUGS
18094
18095 =item CAVEATS
18096
18097 =item SEE ALSO
18098
18099 =item AUTHOR
18100
18101 =item COPYRIGHT AND LICENSE
18102
18103 =back
18104
18105 =head2 Pod::ParseLink - Parse an LE<lt>E<gt> formatting code in POD text
18106
18107 =over 4
18108
18109 =item SYNOPSIS
18110
18111 =item DESCRIPTION
18112
18113 =item SEE ALSO
18114
18115 =item AUTHOR
18116
18117 =item COPYRIGHT AND LICENSE
18118
18119 =back
18120
18121 =head2 Pod::ParseUtils - helpers for POD parsing and conversion
18122
18123 =over 4
18124
18125 =item SYNOPSIS
18126
18127 =item DESCRIPTION
18128
18129 =back
18130
18131 =over 4
18132
18133 =item Pod::List
18134
18135 Pod::List-E<gt>new()
18136
18137 =back
18138
18139 $list-E<gt>file()
18140
18141 $list-E<gt>start()
18142
18143 $list-E<gt>indent()
18144
18145 $list-E<gt>type()
18146
18147 $list-E<gt>rx()
18148
18149 $list-E<gt>item()
18150
18151 $list-E<gt>parent()
18152
18153 $list-E<gt>tag()
18154
18155 =over 4
18156
18157 =item Pod::Hyperlink
18158
18159 Pod::Hyperlink-E<gt>new()
18160
18161 =back
18162
18163 $link-E<gt>parse($string)
18164
18165 $link-E<gt>markup($string)
18166
18167 $link-E<gt>text()
18168
18169 $link-E<gt>warning()
18170
18171 $link-E<gt>file(), $link-E<gt>line()
18172
18173 $link-E<gt>page()
18174
18175 $link-E<gt>node()
18176
18177 $link-E<gt>alttext()
18178
18179 $link-E<gt>type()
18180
18181 $link-E<gt>link()
18182
18183 =over 4
18184
18185 =item Pod::Cache
18186
18187 Pod::Cache-E<gt>new()
18188
18189 =back
18190
18191 $cache-E<gt>item()
18192
18193 $cache-E<gt>find_page($name)
18194
18195 =over 4
18196
18197 =item Pod::Cache::Item
18198
18199 Pod::Cache::Item-E<gt>new()
18200
18201 =back
18202
18203 $cacheitem-E<gt>page()
18204
18205 $cacheitem-E<gt>description()
18206
18207 $cacheitem-E<gt>path()
18208
18209 $cacheitem-E<gt>file()
18210
18211 $cacheitem-E<gt>nodes()
18212
18213 $cacheitem-E<gt>find_node($name)
18214
18215 $cacheitem-E<gt>idx()
18216
18217 =over 4
18218
18219 =item AUTHOR
18220
18221 =item SEE ALSO
18222
18223 =back
18224
18225 =head2 Pod::Parser - base class for creating POD filters and translators
18226
18227 =over 4
18228
18229 =item SYNOPSIS
18230
18231 =item REQUIRES
18232
18233 =item EXPORTS
18234
18235 =item DESCRIPTION
18236
18237 =item QUICK OVERVIEW
18238
18239 =item PARSING OPTIONS
18240
18241 B<-want_nonPODs> (default: unset), B<-process_cut_cmd> (default: unset),
18242 B<-warnings> (default: unset)
18243
18244 =back
18245
18246 =over 4
18247
18248 =item RECOMMENDED SUBROUTINE/METHOD OVERRIDES
18249
18250 =back
18251
18252 =over 4
18253
18254 =item B<command()>
18255
18256 C<$cmd>, C<$text>, C<$line_num>, C<$pod_para>
18257
18258 =back
18259
18260 =over 4
18261
18262 =item B<verbatim()>
18263
18264 C<$text>, C<$line_num>, C<$pod_para>
18265
18266 =back
18267
18268 =over 4
18269
18270 =item B<textblock()>
18271
18272 C<$text>, C<$line_num>, C<$pod_para>
18273
18274 =back
18275
18276 =over 4
18277
18278 =item B<interior_sequence()>
18279
18280 =back
18281
18282 =over 4
18283
18284 =item OPTIONAL SUBROUTINE/METHOD OVERRIDES
18285
18286 =back
18287
18288 =over 4
18289
18290 =item B<new()>
18291
18292 =back
18293
18294 =over 4
18295
18296 =item B<initialize()>
18297
18298 =back
18299
18300 =over 4
18301
18302 =item B<begin_pod()>
18303
18304 =back
18305
18306 =over 4
18307
18308 =item B<begin_input()>
18309
18310 =back
18311
18312 =over 4
18313
18314 =item B<end_input()>
18315
18316 =back
18317
18318 =over 4
18319
18320 =item B<end_pod()>
18321
18322 =back
18323
18324 =over 4
18325
18326 =item B<preprocess_line()>
18327
18328 =back
18329
18330 =over 4
18331
18332 =item B<preprocess_paragraph()>
18333
18334 =back
18335
18336 =over 4
18337
18338 =item METHODS FOR PARSING AND PROCESSING
18339
18340 =back
18341
18342 =over 4
18343
18344 =item B<parse_text()>
18345
18346 B<-expand_seq> =E<gt> I<code-ref>|I<method-name>, B<-expand_text> =E<gt>
18347 I<code-ref>|I<method-name>, B<-expand_ptree> =E<gt>
18348 I<code-ref>|I<method-name>
18349
18350 =back
18351
18352 =over 4
18353
18354 =item B<interpolate()>
18355
18356 =back
18357
18358 =over 4
18359
18360 =item B<parse_paragraph()>
18361
18362 =back
18363
18364 =over 4
18365
18366 =item B<parse_from_filehandle()>
18367
18368 =back
18369
18370 =over 4
18371
18372 =item B<parse_from_file()>
18373
18374 =back
18375
18376 =over 4
18377
18378 =item ACCESSOR METHODS
18379
18380 =back
18381
18382 =over 4
18383
18384 =item B<errorsub()>
18385
18386 =back
18387
18388 =over 4
18389
18390 =item B<cutting()>
18391
18392 =back
18393
18394 =over 4
18395
18396 =item B<parseopts()>
18397
18398 =back
18399
18400 =over 4
18401
18402 =item B<output_file()>
18403
18404 =back
18405
18406 =over 4
18407
18408 =item B<output_handle()>
18409
18410 =back
18411
18412 =over 4
18413
18414 =item B<input_file()>
18415
18416 =back
18417
18418 =over 4
18419
18420 =item B<input_handle()>
18421
18422 =back
18423
18424 =over 4
18425
18426 =item B<input_streams()>
18427
18428 =back
18429
18430 =over 4
18431
18432 =item B<top_stream()>
18433
18434 =back
18435
18436 =over 4
18437
18438 =item PRIVATE METHODS AND DATA
18439
18440 =back
18441
18442 =over 4
18443
18444 =item B<_push_input_stream()>
18445
18446 =back
18447
18448 =over 4
18449
18450 =item B<_pop_input_stream()>
18451
18452 =back
18453
18454 =over 4
18455
18456 =item TREE-BASED PARSING
18457
18458 =item SEE ALSO
18459
18460 =item AUTHOR
18461
18462 =back
18463
18464 =head2 Pod::Perldoc::ToChecker - let Perldoc check Pod for errors
18465
18466 =over 4
18467
18468 =item SYNOPSIS
18469
18470 =item DESCRIPTION
18471
18472 =item SEE ALSO
18473
18474 =item COPYRIGHT AND DISCLAIMERS
18475
18476 =item AUTHOR
18477
18478 =back
18479
18480 =head2 Pod::Perldoc::ToMan - let Perldoc render Pod as man pages
18481
18482 =over 4
18483
18484 =item SYNOPSIS
18485
18486 =item DESCRIPTION
18487
18488 =item CAVEAT
18489
18490 =item SEE ALSO
18491
18492 =item COPYRIGHT AND DISCLAIMERS
18493
18494 =item AUTHOR
18495
18496 =back
18497
18498 =head2 Pod::Perldoc::ToNroff - let Perldoc convert Pod to nroff
18499
18500 =over 4
18501
18502 =item SYNOPSIS
18503
18504 =item DESCRIPTION
18505
18506 =item CAVEAT
18507
18508 =item SEE ALSO
18509
18510 =item COPYRIGHT AND DISCLAIMERS
18511
18512 =item AUTHOR
18513
18514 =back
18515
18516 =head2 Pod::Perldoc::ToPod - let Perldoc render Pod as ... Pod!
18517
18518 =over 4
18519
18520 =item SYNOPSIS
18521
18522 =item DESCRIPTION
18523
18524 =item SEE ALSO
18525
18526 =item COPYRIGHT AND DISCLAIMERS
18527
18528 =item AUTHOR
18529
18530 =back
18531
18532 =head2 Pod::Perldoc::ToRtf - let Perldoc render Pod as RTF
18533
18534 =over 4
18535
18536 =item SYNOPSIS
18537
18538 =item DESCRIPTION
18539
18540 =item SEE ALSO
18541
18542 =item COPYRIGHT AND DISCLAIMERS
18543
18544 =item AUTHOR
18545
18546 =back
18547
18548 =head2 Pod::Perldoc::ToText - let Perldoc render Pod as plaintext
18549
18550 =over 4
18551
18552 =item SYNOPSIS
18553
18554 =item DESCRIPTION
18555
18556 =item CAVEAT
18557
18558 =item SEE ALSO
18559
18560 =item COPYRIGHT AND DISCLAIMERS
18561
18562 =item AUTHOR
18563
18564 =back
18565
18566 =head2 Pod::Perldoc::ToTk - let Perldoc use Tk::Pod to render Pod
18567
18568 =over 4
18569
18570 =item SYNOPSIS
18571
18572 =item DESCRIPTION
18573
18574 =item SEE ALSO
18575
18576 =item AUTHOR
18577
18578 =back
18579
18580 =head2 Pod::Perldoc::ToXml - let Perldoc render Pod as XML
18581
18582 =over 4
18583
18584 =item SYNOPSIS
18585
18586 =item DESCRIPTION
18587
18588 =item SEE ALSO
18589
18590 =item COPYRIGHT AND DISCLAIMERS
18591
18592 =item AUTHOR
18593
18594 =back
18595
18596 =head2 Pod::PlainText - Convert POD data to formatted ASCII text
18597
18598 =over 4
18599
18600 =item SYNOPSIS
18601
18602 =item DESCRIPTION
18603
18604 alt, indent, loose, sentence, width
18605
18606 =item DIAGNOSTICS
18607
18608 Bizarre space in item, Can't open %s for reading: %s, Unknown escape: %s,
18609 Unknown sequence: %s, Unmatched =back
18610
18611 =item RESTRICTIONS
18612
18613 =item NOTES
18614
18615 =item SEE ALSO
18616
18617 =item AUTHOR
18618
18619 =back
18620
18621 =head2 Pod::Plainer - Perl extension for converting Pod to old style Pod.
18622
18623 =over 4
18624
18625 =item SYNOPSIS
18626
18627 =item DESCRIPTION
18628
18629 =over 4
18630
18631 =item EXPORT
18632
18633 =back
18634
18635 =item AUTHOR
18636
18637 =item SEE ALSO
18638
18639 =back
18640
18641 =head2 Pod::Select, podselect() - extract selected sections of POD from
18642 input
18643
18644 =over 4
18645
18646 =item SYNOPSIS
18647
18648 =item REQUIRES
18649
18650 =item EXPORTS
18651
18652 =item DESCRIPTION
18653
18654 =item SECTION SPECIFICATIONS
18655
18656 =item RANGE SPECIFICATIONS
18657
18658 =back
18659
18660 =over 4
18661
18662 =item OBJECT METHODS
18663
18664 =back
18665
18666 =over 4
18667
18668 =item B<curr_headings()>
18669
18670 =back
18671
18672 =over 4
18673
18674 =item B<select()>
18675
18676 =back
18677
18678 =over 4
18679
18680 =item B<add_selection()>
18681
18682 =back
18683
18684 =over 4
18685
18686 =item B<clear_selections()>
18687
18688 =back
18689
18690 =over 4
18691
18692 =item B<match_section()>
18693
18694 =back
18695
18696 =over 4
18697
18698 =item B<is_selected()>
18699
18700 =back
18701
18702 =over 4
18703
18704 =item EXPORTED FUNCTIONS
18705
18706 =back
18707
18708 =over 4
18709
18710 =item B<podselect()>
18711
18712 B<-output>, B<-sections>, B<-ranges>
18713
18714 =back
18715
18716 =over 4
18717
18718 =item PRIVATE METHODS AND DATA
18719
18720 =back
18721
18722 =over 4
18723
18724 =item B<_compile_section_spec()>
18725
18726 =back
18727
18728 =over 4
18729
18730 =item $self->{_SECTION_HEADINGS}
18731
18732 =back
18733
18734 =over 4
18735
18736 =item $self->{_SELECTED_SECTIONS}
18737
18738 =back
18739
18740 =over 4
18741
18742 =item SEE ALSO
18743
18744 =item AUTHOR
18745
18746 =back
18747
18748 =head2 Pod::Text - Convert POD data to formatted ASCII text
18749
18750 =over 4
18751
18752 =item SYNOPSIS
18753
18754 =item DESCRIPTION
18755
18756 alt, code, indent, loose, margin, quotes, sentence, width
18757
18758 =item DIAGNOSTICS
18759
18760 Bizarre space in item, Item called without tag, Can't open %s for reading:
18761 %s, Invalid quote specification "%s", %s:%d: Unknown command paragraph: %s,
18762 %s:%d: Unknown escape: %s, %s:%d: Unknown formatting code: %s, %s:%d:
18763 Unmatched =back
18764
18765 =item RESTRICTIONS
18766
18767 =item NOTES
18768
18769 =item SEE ALSO
18770
18771 =item AUTHOR
18772
18773 =item COPYRIGHT AND LICENSE
18774
18775 =back
18776
18777 =head2 Pod::Text::Color - Convert POD data to formatted color ASCII text
18778
18779 =over 4
18780
18781 =item SYNOPSIS
18782
18783 =item DESCRIPTION
18784
18785 =item BUGS
18786
18787 =item SEE ALSO
18788
18789 =item AUTHOR
18790
18791 =item COPYRIGHT AND LICENSE
18792
18793 =back
18794
18795 =head2 Pod::Text::Overstrike - Convert POD data to formatted overstrike
18796 text
18797
18798 =over 4
18799
18800 =item SYNOPSIS
18801
18802 =item DESCRIPTION
18803
18804 =item BUGS
18805
18806 =item SEE ALSO
18807
18808 =item AUTHOR
18809
18810 =item COPYRIGHT AND LICENSE
18811
18812 =back
18813
18814 =head2 Pod::Text::Termcap - Convert POD data to ASCII text with format
18815 escapes
18816
18817 =over 4
18818
18819 =item SYNOPSIS
18820
18821 =item DESCRIPTION
18822
18823 =item NOTES
18824
18825 =item SEE ALSO
18826
18827 =item AUTHOR
18828
18829 =item COPYRIGHT AND LICENSE
18830
18831 =back
18832
18833 =head2 Pod::Usage, pod2usage() - print a usage message from embedded pod
18834 documentation
18835
18836 =over 4
18837
18838 =item SYNOPSIS
18839
18840 =item ARGUMENTS
18841
18842 C<-message>, C<-msg>, C<-exitval>, C<-verbose>, C<-output>, C<-input>,
18843 C<-pathlist>
18844
18845 =item DESCRIPTION
18846
18847 =item EXAMPLES
18848
18849 =over 4
18850
18851 =item Recommended Use
18852
18853 =back
18854
18855 =item CAVEATS
18856
18857 =item AUTHOR
18858
18859 =item ACKNOWLEDGEMENTS
18860
18861 =back
18862
18863 =head2 SDBM_File - Tied access to sdbm files
18864
18865 =over 4
18866
18867 =item SYNOPSIS
18868
18869 =item DESCRIPTION
18870
18871 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
18872
18873 =item DIAGNOSTICS
18874
18875 =over 4
18876
18877 =item C<sdbm store returned -1, errno 22, key "..." at ...>
18878
18879 =back
18880
18881 =item BUGS AND WARNINGS
18882
18883 =back
18884
18885 =head2 Safe - Compile and execute code in restricted compartments
18886
18887 =over 4
18888
18889 =item SYNOPSIS
18890
18891 =item DESCRIPTION
18892
18893 a new namespace, an operator mask
18894
18895 =item WARNING
18896
18897 =over 4
18898
18899 =item RECENT CHANGES
18900
18901 =item Methods in class Safe
18902
18903 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
18904 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
18905 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
18906 root (NAMESPACE), mask (MASK)
18907
18908 =item Some Safety Issues
18909
18910 Memory, CPU, Snooping, Signals, State Changes
18911
18912 =item AUTHOR
18913
18914 =back
18915
18916 =back
18917
18918 =head2 Scalar::Util - A selection of general-utility scalar subroutines
18919
18920 =over 4
18921
18922 =item SYNOPSIS
18923
18924 =item DESCRIPTION
18925
18926 blessed EXPR, dualvar NUM, STRING, isvstring EXPR, isweak EXPR,
18927 looks_like_number EXPR, openhandle FH, refaddr EXPR, reftype EXPR,
18928 set_prototype CODEREF, PROTOTYPE, tainted EXPR, weaken REF
18929
18930 =item KNOWN BUGS
18931
18932 =item COPYRIGHT
18933
18934 =item BLATANT PLUG
18935
18936 =back
18937
18938 =head2 Search::Dict, look - search for key in dictionary file
18939
18940 =over 4
18941
18942 =item SYNOPSIS
18943
18944 =item DESCRIPTION
18945
18946 =back
18947
18948 =head2 SelectSaver - save and restore selected file handle
18949
18950 =over 4
18951
18952 =item SYNOPSIS
18953
18954 =item DESCRIPTION
18955
18956 =back
18957
18958 =head2 SelfLoader - load functions only on demand
18959
18960 =over 4
18961
18962 =item SYNOPSIS
18963
18964 =item DESCRIPTION
18965
18966 =over 4
18967
18968 =item The __DATA__ token
18969
18970 =item SelfLoader autoloading
18971
18972 =item Autoloading and package lexicals
18973
18974 =item SelfLoader and AutoLoader
18975
18976 =item __DATA__, __END__, and the FOOBAR::DATA filehandle.
18977
18978 =item Classes and inherited methods.
18979
18980 =back
18981
18982 =item Multiple packages and fully qualified subroutine names
18983
18984 =back
18985
18986 =head2 Shell - run shell commands transparently within perl
18987
18988 =over 4
18989
18990 =item SYNOPSIS
18991
18992 =item DESCRIPTION
18993
18994 =over 4
18995
18996 =item OBJECT ORIENTED SYNTAX
18997
18998 =back
18999
19000 =item AUTHOR
19001
19002 =back
19003
19004 =head2 Socket, sockaddr_in, sockaddr_un, inet_aton, inet_ntoa - load the C
19005 socket.h defines and structure manipulators 
19006
19007 =over 4
19008
19009 =item SYNOPSIS
19010
19011 =item DESCRIPTION
19012
19013 inet_aton HOSTNAME, inet_ntoa IP_ADDRESS, INADDR_ANY, INADDR_BROADCAST,
19014 INADDR_LOOPBACK, INADDR_NONE, sockaddr_family SOCKADDR, sockaddr_in PORT,
19015 ADDRESS, sockaddr_in SOCKADDR_IN, pack_sockaddr_in PORT, IP_ADDRESS,
19016 unpack_sockaddr_in SOCKADDR_IN, sockaddr_un PATHNAME, sockaddr_un
19017 SOCKADDR_UN, pack_sockaddr_un PATH, unpack_sockaddr_un SOCKADDR_UN
19018
19019 =back
19020
19021 =head2 Storable - persistence for Perl data structures
19022
19023 =over 4
19024
19025 =item SYNOPSIS
19026
19027 =item DESCRIPTION
19028
19029 =item MEMORY STORE
19030
19031 =item ADVISORY LOCKING
19032
19033 =item SPEED
19034
19035 =item CANONICAL REPRESENTATION
19036
19037 =item CODE REFERENCES
19038
19039 =item FORWARD COMPATIBILITY
19040
19041 utf8 data, restricted hashes, files from future versions of Storable
19042
19043 =item ERROR REPORTING
19044
19045 =item WIZARDS ONLY
19046
19047 =over 4
19048
19049 =item Hooks
19050
19051 C<STORABLE_freeze> I<obj>, I<cloning>, C<STORABLE_thaw> I<obj>, I<cloning>,
19052 I<serialized>, ..
19053
19054 =item Predicates
19055
19056 C<Storable::last_op_in_netorder>, C<Storable::is_storing>,
19057 C<Storable::is_retrieving>
19058
19059 =item Recursion
19060
19061 =item Deep Cloning
19062
19063 =back
19064
19065 =item Storable magic
19066
19067 =item EXAMPLES
19068
19069 =item WARNING
19070
19071 =item BUGS
19072
19073 =over 4
19074
19075 =item 64 bit data in perl 5.6.0 and 5.6.1
19076
19077 =back
19078
19079 =item CREDITS
19080
19081 =item AUTHOR
19082
19083 =item SEE ALSO
19084
19085 =back
19086
19087 =head2 Switch - A switch statement for Perl
19088
19089 =over 4
19090
19091 =item VERSION
19092
19093 =item SYNOPSIS
19094
19095 =item BACKGROUND
19096
19097 =item DESCRIPTION
19098
19099 =over 4
19100
19101 =item Allowing fall-through
19102
19103 =item Automating fall-through
19104
19105 =item Alternative syntax
19106
19107 =item Higher-order Operations
19108
19109 =back
19110
19111 =item DEPENDENCIES
19112
19113 =item AUTHOR
19114
19115 =item BUGS
19116
19117 =item LIMITATION
19118
19119 =item COPYRIGHT
19120
19121 =back
19122
19123 =head2 Symbol - manipulate Perl symbols and their names
19124
19125 =over 4
19126
19127 =item SYNOPSIS
19128
19129 =item DESCRIPTION
19130
19131 =item BUGS
19132
19133 =back
19134
19135 =head2 Sys::Hostname - Try every conceivable way to get hostname
19136
19137 =over 4
19138
19139 =item SYNOPSIS
19140
19141 =item DESCRIPTION
19142
19143 =item AUTHOR
19144
19145 =back
19146
19147 =head2 Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl
19148 interface to the UNIX syslog(3) calls
19149
19150 =over 4
19151
19152 =item SYNOPSIS
19153
19154 =item DESCRIPTION
19155
19156 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
19157 setlogmask $mask_priority, setlogsock $sock_type [$stream_location] (added
19158 in 5.004_02), closelog
19159
19160 =item EXAMPLES
19161
19162 =item SEE ALSO
19163
19164 =item AUTHOR
19165
19166 =back
19167
19168 =head2 Syslog::Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog -
19169 Perl interface to the UNIX syslog(3) calls
19170
19171 =over 4
19172
19173 =item SYNOPSIS
19174
19175 =item DESCRIPTION
19176
19177 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
19178 setlogmask $mask_priority, setlogsock $sock_type [$stream_location] (added
19179 in 5.004_02), closelog
19180
19181 =item EXAMPLES
19182
19183 =item SEE ALSO
19184
19185 =item AUTHOR
19186
19187 =back
19188
19189 =head2 Term::ANSIColor - Color screen output using ANSI escape sequences
19190
19191 =over 4
19192
19193 =item SYNOPSIS
19194
19195 =item DESCRIPTION
19196
19197 =item DIAGNOSTICS
19198
19199 Bad escape sequence %s, Bareword "%s" not allowed while "strict subs" in
19200 use, Invalid attribute name %s, Name "%s" used only once: possible typo, No
19201 comma allowed after filehandle, No name for escape sequence %s
19202
19203 =item ENVIRONMENT
19204
19205 ANSI_COLORS_DISABLED
19206
19207 =item RESTRICTIONS
19208
19209 =item NOTES
19210
19211 =item SEE ALSO
19212
19213 =item AUTHORS
19214
19215 =item COPYRIGHT AND LICENSE
19216
19217 =back
19218
19219 =head2 Term::Cap - Perl termcap interface
19220
19221 =over 4
19222
19223 =item SYNOPSIS
19224
19225 =item DESCRIPTION
19226
19227 =over 4
19228
19229 =item METHODS
19230
19231 =back
19232
19233 =back
19234
19235 B<Tgetent>, OSPEED, TERM
19236
19237 B<Tpad>, B<$string>, B<$cnt>, B<$FH>
19238
19239 B<Tputs>, B<$cap>, B<$cnt>, B<$FH>
19240
19241 B<Tgoto>, B<$cap>, B<$col>, B<$row>, B<$FH>
19242
19243 B<Trequire>
19244
19245 =over 4
19246
19247 =item EXAMPLES
19248
19249 =item COPYRIGHT AND LICENSE
19250
19251 =item AUTHOR
19252
19253 =item SEE ALSO
19254
19255 =back
19256
19257 =head2 Term::Complete - Perl word completion module
19258
19259 =over 4
19260
19261 =item SYNOPSIS
19262
19263 =item DESCRIPTION
19264
19265 E<lt>tabE<gt>, ^D, ^U, E<lt>delE<gt>, E<lt>bsE<gt>
19266
19267 =item DIAGNOSTICS
19268
19269 =item BUGS
19270
19271 =item AUTHOR
19272
19273 =back
19274
19275 =head2 Term::ReadLine - Perl interface to various C<readline> packages.
19276 If no real package is found, substitutes stubs instead of basic functions.
19277
19278 =over 4
19279
19280 =item SYNOPSIS
19281
19282 =item DESCRIPTION
19283
19284 =item Minimal set of supported functions
19285
19286 C<ReadLine>, C<new>, C<readline>, C<addhistory>, C<IN>, C<OUT>, C<MinLine>,
19287 C<findConsole>, Attribs, C<Features>
19288
19289 =item Additional supported functions
19290
19291 C<tkRunning>, C<ornaments>, C<newTTY>
19292
19293 =item EXPORTS
19294
19295 =item ENVIRONMENT
19296
19297 =item CAVEATS
19298
19299 =back
19300
19301 =head2 Test - provides a simple framework for writing test scripts
19302
19303 =over 4
19304
19305 =item SYNOPSIS
19306
19307 =item DESCRIPTION
19308
19309 =item QUICK START GUIDE
19310
19311 =over 4
19312
19313 =item Functions
19314
19315 C<plan(...)>, C<tests =E<gt> I<number>>, C<todo =E<gt> [I<1,5,14>]>,
19316 C<onfail =E<gt> sub { ... }>, C<onfail =E<gt> \&some_sub>
19317
19318 =back
19319
19320 =back
19321
19322 B<_to_value>
19323
19324 C<ok(...)>
19325
19326 C<skip(I<skip_if_true>, I<args...>)>
19327
19328 =over 4
19329
19330 =item TEST TYPES
19331
19332 NORMAL TESTS, SKIPPED TESTS, TODO TESTS
19333
19334 =item ONFAIL
19335
19336 =item BUGS and CAVEATS
19337
19338 =item NOTE
19339
19340 =item SEE ALSO
19341
19342 =item AUTHOR
19343
19344 =back
19345
19346 =head2 Test::Builder - Backend for building test libraries
19347
19348 =over 4
19349
19350 =item SYNOPSIS
19351
19352 =item DESCRIPTION
19353
19354 =over 4
19355
19356 =item Construction
19357
19358 B<new>
19359
19360 =back
19361
19362 =back
19363
19364 =over 4
19365
19366 =item Setting up tests
19367
19368 B<exported_to>
19369
19370 =back
19371
19372 B<plan>
19373
19374 B<expected_tests>
19375
19376 B<no_plan>
19377
19378 B<has_plan>
19379
19380 B<skip_all>
19381
19382 =over 4
19383
19384 =item Running tests
19385
19386 B<ok>
19387
19388 =back
19389
19390 B<is_eq>, B<is_num>
19391
19392 B<isnt_eq>, B<isnt_num>
19393
19394 B<like>, B<unlike>
19395
19396 B<maybe_regex>
19397
19398 B<cmp_ok>
19399
19400 B<BAILOUT>
19401
19402 B<skip>
19403
19404 B<todo_skip>
19405
19406 B<skip_rest>
19407
19408 =over 4
19409
19410 =item Test style
19411
19412 B<level>
19413
19414 =back
19415
19416 B<use_numbers>
19417
19418 B<no_header>, B<no_ending>
19419
19420 =over 4
19421
19422 =item Output
19423
19424 B<diag>
19425
19426 =back
19427
19428 B<_print>
19429
19430 B<output>, B<failure_output>, B<todo_output>
19431
19432 =over 4
19433
19434 =item Test Status and Info
19435
19436 B<current_test>
19437
19438 =back
19439
19440 B<summary>
19441
19442 B<details>
19443
19444 B<todo>
19445
19446 B<caller>
19447
19448 B<_sanity_check>
19449
19450 B<_whoa>
19451
19452 B<_my_exit>
19453
19454 =over 4
19455
19456 =item THREADS
19457
19458 =item EXAMPLES
19459
19460 =item SEE ALSO
19461
19462 =item AUTHORS
19463
19464 =item COPYRIGHT
19465
19466 =back
19467
19468 =head2 Test::Harness - run perl standard test scripts with statistics
19469
19470 =over 4
19471
19472 =item SYNOPSIS
19473
19474 =item DESCRIPTION
19475
19476 =over 4
19477
19478 =item The test script output
19479
19480 B<'1..M'>, B<'ok', 'not ok'.  Ok?>, B<test numbers>, B<test names>,
19481 B<Skipping tests>, B<Todo tests>, B<Bail out!>, B<Comments>, B<Anything
19482 else>
19483
19484 =item Taint mode
19485
19486 =item Configuration variables.
19487
19488 B<$Test::Harness::verbose>, B<$Test::Harness::switches>
19489
19490 =item Failure
19491
19492 B<Failed Test>, B<Stat>, B<Wstat>, B<Total>, B<Fail>, B<Failed>, B<List of
19493 Failed>
19494
19495 =item Functions
19496
19497 B<runtests>
19498
19499 =back
19500
19501 =back
19502
19503 B<_all_ok>
19504
19505 B<_globdir>
19506
19507 B<_run_all_tests>
19508
19509 B<_mk_leader>
19510
19511 B<_leader_width>
19512
19513 =over 4
19514
19515 =item EXPORT
19516
19517 =item DIAGNOSTICS
19518
19519 C<All tests successful.\nFiles=%d,  Tests=%d, %s>, C<FAILED tests
19520 %s\n\tFailed %d/%d tests, %.2f%% okay.>, C<Test returned status %d (wstat
19521 %d)>, C<Failed 1 test, %.2f%% okay. %s>, C<Failed %d/%d tests, %.2f%% okay.
19522 %s>, C<FAILED--Further testing stopped: %s>
19523
19524 =item ENVIRONMENT
19525
19526 C<HARNESS_ACTIVE>, C<HARNESS_COLUMNS>, C<HARNESS_COMPILE_TEST>,
19527 C<HARNESS_FILELEAK_IN_DIR>, C<HARNESS_IGNORE_EXITCODE>, C<HARNESS_NOTTY>,
19528 C<HARNESS_OK_SLOW>, C<HARNESS_PERL_SWITCHES>, C<HARNESS_VERBOSE>
19529
19530 =item EXAMPLE
19531
19532 =item SEE ALSO
19533
19534 =item AUTHORS
19535
19536 =item LICENSE
19537
19538 =item TODO
19539
19540 =item BUGS
19541
19542 =back
19543
19544 =head2 Test::Harness::Assert - simple assert
19545
19546 =over 4
19547
19548 =item SYNOPSIS
19549
19550 =item DESCRIPTION
19551
19552 =over 4
19553
19554 =item Functions
19555
19556 B<assert>
19557
19558 =back
19559
19560 =back
19561
19562 =over 4
19563
19564 =item AUTHOR
19565
19566 =item SEE ALSO
19567
19568 =back
19569
19570 =head2 Test::Harness::Iterator - Internal Test::Harness Iterator
19571
19572 =over 4
19573
19574 =item SYNOPSIS
19575
19576 =item DESCRIPTION
19577
19578 =back
19579
19580 =head2 Test::Harness::Straps - detailed analysis of test results
19581
19582 =over 4
19583
19584 =item SYNOPSIS
19585
19586 =item DESCRIPTION
19587
19588 =item Construction
19589
19590 =over 4
19591
19592 =item C<new>
19593
19594 =back
19595
19596 =back
19597
19598 =over 4
19599
19600 =item C<_init>
19601
19602 =back
19603
19604 =over 4
19605
19606 =item Analysis
19607
19608 =over 4
19609
19610 =item C<analyze>
19611
19612 =back
19613
19614 =back
19615
19616 =over 4
19617
19618 =item C<analyze_fh>
19619
19620 =back
19621
19622 =over 4
19623
19624 =item C<analyze_file>
19625
19626 =back
19627
19628 =over 4
19629
19630 =item C<_switches>
19631
19632 =back
19633
19634 =over 4
19635
19636 =item C<_INC2PERL5LIB>
19637
19638 =back
19639
19640 =over 4
19641
19642 =item C<_filtered_INC>
19643
19644 =back
19645
19646 =over 4
19647
19648 =item C<_restore_PERL5LIB>
19649
19650 =back
19651
19652 =over 4
19653
19654 =item Parsing
19655
19656 =over 4
19657
19658 =item C<_is_comment>
19659
19660 =back
19661
19662 =back
19663
19664 =over 4
19665
19666 =item C<_is_header>
19667
19668 =back
19669
19670 =over 4
19671
19672 =item C<_is_test>
19673
19674 =back
19675
19676 =over 4
19677
19678 =item C<_is_bail_out>
19679
19680 =back
19681
19682 =over 4
19683
19684 =item C<_reset_file_state>
19685
19686 =back
19687
19688 =over 4
19689
19690 =item Results
19691
19692 =over 4
19693
19694 =item C<_detailize>
19695
19696 =back
19697
19698 =back
19699
19700 =over 4
19701
19702 =item EXAMPLES
19703
19704 =item AUTHOR
19705
19706 =item SEE ALSO
19707
19708 =back
19709
19710 =head2 Test::More - yet another framework for writing test scripts
19711
19712 =over 4
19713
19714 =item SYNOPSIS
19715
19716 =item DESCRIPTION
19717
19718 =over 4
19719
19720 =item I love it when a plan comes together
19721
19722 =back
19723
19724 =back
19725
19726 =over 4
19727
19728 =item Test names
19729
19730 =item I'm ok, you're not ok.
19731
19732 B<ok>
19733
19734 =back
19735
19736 B<is>, B<isnt>
19737
19738 B<like>
19739
19740 B<unlike>
19741
19742 B<cmp_ok>
19743
19744 B<can_ok>
19745
19746 B<isa_ok>
19747
19748 B<pass>, B<fail>
19749
19750 =over 4
19751
19752 =item Diagnostics
19753
19754 B<diag>
19755
19756 =back
19757
19758 =over 4
19759
19760 =item Module tests
19761
19762 B<use_ok>
19763
19764 =back
19765
19766 B<require_ok>
19767
19768 =over 4
19769
19770 =item Conditional tests
19771
19772 B<SKIP: BLOCK>
19773
19774 =back
19775
19776 B<TODO: BLOCK>, B<todo_skip>
19777
19778 When do I use SKIP vs. TODO?
19779
19780 =over 4
19781
19782 =item Comparison functions
19783
19784 B<is_deeply>
19785
19786 =back
19787
19788 B<eq_array>
19789
19790 B<eq_hash>
19791
19792 B<eq_set>
19793
19794 =over 4
19795
19796 =item Extending and Embedding Test::More
19797
19798 B<builder>
19799
19800 =back
19801
19802 =over 4
19803
19804 =item NOTES
19805
19806 =item BUGS and CAVEATS
19807
19808 Making your own ok(), The eq_* family has some caveats, Test::Harness
19809 upgrades
19810
19811 =item HISTORY
19812
19813 =item SEE ALSO
19814
19815 =item AUTHORS
19816
19817 =item COPYRIGHT
19818
19819 =back
19820
19821 =head2 Test::Simple - Basic utilities for writing tests.
19822
19823 =over 4
19824
19825 =item SYNOPSIS
19826
19827 =item DESCRIPTION
19828
19829 B<ok>
19830
19831 =back
19832
19833 =over 4
19834
19835 =item EXAMPLE
19836
19837 =item CAVEATS
19838
19839 =item NOTES
19840
19841 =item HISTORY
19842
19843 =item SEE ALSO
19844
19845 L<Test::More>, L<Test>, L<Test::Unit>, L<Test::Inline>, L<SelfTest>,
19846 L<Test::Harness>
19847
19848 =item AUTHORS
19849
19850 =item COPYRIGHT
19851
19852 =back
19853
19854 =head2 Test::Tutorial - A tutorial about writing really basic tests
19855
19856 =over 4
19857
19858 =item DESCRIPTION
19859
19860 =over 4
19861
19862 =item Nuts and bolts of testing.
19863
19864 =item Where to start?
19865
19866 =item Names
19867
19868 =item Test the manual
19869
19870 =item Sometimes the tests are wrong
19871
19872 =item Testing lots of values
19873
19874 =item Informative names
19875
19876 =item Skipping tests
19877
19878 =item Todo tests
19879
19880 =item Testing with taint mode.
19881
19882 =back
19883
19884 =item FOOTNOTES
19885
19886 =item AUTHORS
19887
19888 =item COPYRIGHT
19889
19890 =back
19891
19892 =head2 Text::Abbrev, abbrev - create an abbreviation table from a list
19893
19894 =over 4
19895
19896 =item SYNOPSIS
19897
19898 =item DESCRIPTION
19899
19900 =item EXAMPLE
19901
19902 =back
19903
19904 =head2 Text::Balanced - Extract delimited text sequences from strings.
19905
19906 =over 4
19907
19908 =item SYNOPSIS
19909
19910 =item DESCRIPTION
19911
19912 =over 4
19913
19914 =item General behaviour in list contexts
19915
19916 [0], [1], [2]
19917
19918 =item General behaviour in scalar and void contexts
19919
19920 =item A note about prefixes
19921
19922 =item C<extract_delimited>
19923
19924 =item C<extract_bracketed>
19925
19926 =item C<extract_variable>
19927
19928 [0], [1], [2]
19929
19930 =item C<extract_tagged>
19931
19932 C<reject =E<gt> $listref>, C<ignore =E<gt> $listref>, C<fail =E<gt> $str>,
19933 [0], [1], [2], [3], [4], [5]
19934
19935 =item C<gen_extract_tagged>
19936
19937 =item C<extract_quotelike>
19938
19939 [0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10]
19940
19941 =item C<extract_quotelike> and "here documents"
19942
19943 [0], [1], [2], [3], [4], [5], [6], [7..10]
19944
19945 =item C<extract_codeblock>
19946
19947 =item C<extract_multiple>
19948
19949 =item C<gen_delimited_pat>
19950
19951 =back
19952
19953 =item DIAGNOSTICS
19954
19955  C<Did not find a suitable bracket: "%s">,  C<Did not find prefix: /%s/>, 
19956 C<Did not find opening bracket after prefix: "%s">,  C<No quotelike
19957 operator found after prefix: "%s">,  C<Unmatched closing bracket: "%c">, 
19958 C<Unmatched opening bracket(s): "%s">, C<Unmatched embedded quote (%s)>,
19959 C<Did not find closing delimiter to match '%s'>,  C<Mismatched closing
19960 bracket: expected "%c" but found "%s">,  C<No block delimiter found after
19961 quotelike "%s">, C<Did not find leading dereferencer>, C<Bad identifier
19962 after dereferencer>, C<Did not find expected opening bracket at %s>,
19963 C<Improperly nested codeblock at %s>,  C<Missing second block for quotelike
19964 "%s">, C<No match found for opening bracket>, C<Did not find opening tag:
19965 /%s/>, C<Unable to construct closing tag to match: /%s/>, C<Found invalid
19966 nested tag: %s>, C<Found unbalanced nested tag: %s>, C<Did not find closing
19967 tag>
19968
19969 =item AUTHOR
19970
19971 =item BUGS AND IRRITATIONS
19972
19973 =item COPYRIGHT
19974
19975 =back
19976
19977 =head2 Text::ParseWords - parse text into an array of tokens or array of
19978 arrays
19979
19980 =over 4
19981
19982 =item SYNOPSIS
19983
19984 =item DESCRIPTION
19985
19986 =item EXAMPLES
19987
19988 =item AUTHORS
19989
19990 =back
19991
19992 =head2 Text::Soundex - Implementation of the Soundex Algorithm as Described
19993 by Knuth
19994
19995 =over 4
19996
19997 =item SYNOPSIS
19998
19999 =item DESCRIPTION
20000
20001 =item EXAMPLES
20002
20003 =item LIMITATIONS
20004
20005 =item AUTHOR
20006
20007 =back
20008
20009 =head2 Text::Tabs -- expand and unexpand tabs per the unix expand(1) and
20010 unexpand(1)
20011
20012 =over 4
20013
20014 =item SYNOPSIS
20015
20016 =item DESCRIPTION
20017
20018 =item BUGS
20019
20020 =item AUTHOR
20021
20022 =back
20023
20024 =head2 Text::Wrap - line wrapping to form simple paragraphs
20025
20026 =over 4
20027
20028 =item SYNOPSIS 
20029
20030 =item DESCRIPTION
20031
20032 =item OVERRIDES
20033
20034 =item EXAMPLE
20035
20036 =item AUTHOR
20037
20038 =back
20039
20040 =head2 Thread - manipulate threads in Perl (for old code only)
20041
20042 =over 4
20043
20044 =item CAVEAT
20045
20046 =item SYNOPSIS
20047
20048 =item DESCRIPTION
20049
20050 =item FUNCTIONS
20051
20052 $thread = Thread->new(\&start_sub), $thread = Thread->new(\&start_sub,
20053 LIST), lock VARIABLE, async BLOCK;, Thread->self, cond_wait VARIABLE,
20054 cond_signal VARIABLE, cond_broadcast VARIABLE, yield
20055
20056 =item METHODS
20057
20058 join, eval, detach, equal, tid, flags, done
20059
20060 =item LIMITATIONS
20061
20062 =item SEE ALSO
20063
20064 =back
20065
20066 =head2 Thread::Queue - thread-safe queues
20067
20068 =over 4
20069
20070 =item SYNOPSIS
20071
20072 =item DESCRIPTION
20073
20074 =item FUNCTIONS AND METHODS
20075
20076 new, enqueue LIST, dequeue, dequeue_nb, pending
20077
20078 =item SEE ALSO
20079
20080 =back
20081
20082 =head2 Thread::Semaphore - thread-safe semaphores
20083
20084 =over 4
20085
20086 =item SYNOPSIS
20087
20088 =item DESCRIPTION
20089
20090 =item FUNCTIONS AND METHODS
20091
20092 new, new NUMBER, down, down NUMBER, up, up NUMBER
20093
20094 =back
20095
20096 =head2 Thread::Signal - Start a thread which runs signal handlers reliably
20097 (for old code)
20098
20099 =over 4
20100
20101 =item CAVEAT
20102
20103 =item SYNOPSIS
20104
20105 =item DESCRIPTION
20106
20107 =item BUGS
20108
20109 =back
20110
20111 =head2 Thread::Specific - thread-specific keys
20112
20113 =over 4
20114
20115 =item SYNOPSIS
20116
20117 =item DESCRIPTION
20118
20119 =back
20120
20121 =head2 Tie::Array - base class for tied arrays
20122
20123 =over 4
20124
20125 =item SYNOPSIS
20126
20127 =item DESCRIPTION
20128
20129 TIEARRAY classname, LIST, STORE this, index, value, FETCH this, index,
20130 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
20131 key, DELETE this, key, CLEAR this, DESTROY this, PUSH this, LIST, POP this,
20132 SHIFT this, UNSHIFT this, LIST, SPLICE this, offset, length, LIST
20133
20134 =item CAVEATS
20135
20136 =item AUTHOR
20137
20138 =back
20139
20140 =head2 Tie::File - Access the lines of a disk file via a Perl array
20141
20142 =over 4
20143
20144 =item SYNOPSIS
20145
20146 =item DESCRIPTION
20147
20148 =over 4
20149
20150 =item C<recsep>
20151
20152 =item C<autochomp>
20153
20154 =item C<mode>
20155
20156 =item C<memory>
20157
20158 =item C<dw_size>
20159
20160 =item Option Format
20161
20162 =back
20163
20164 =item Public Methods
20165
20166 =over 4
20167
20168 =item C<flock>
20169
20170 =item C<autochomp>
20171
20172 =item C<defer>, C<flush>, C<discard>, and C<autodefer>
20173
20174 =item C<offset>
20175
20176 =back
20177
20178 =item Tying to an already-opened filehandle
20179
20180 =item Deferred Writing
20181
20182 =over 4
20183
20184 =item Autodeferring
20185
20186 =back
20187
20188 =item CONCURRENT ACCESS TO FILES
20189
20190 =item CAVEATS
20191
20192 =item SUBCLASSING
20193
20194 =item WHAT ABOUT C<DB_File>?
20195
20196 =item AUTHOR
20197
20198 =item LICENSE
20199
20200 =item WARRANTY
20201
20202 =item THANKS
20203
20204 =item TODO
20205
20206 =back
20207
20208 =head2 Tie::Handle, Tie::StdHandle  - base class definitions for tied
20209 handles
20210
20211 =over 4
20212
20213 =item SYNOPSIS
20214
20215 =item DESCRIPTION
20216
20217 TIEHANDLE classname, LIST, WRITE this, scalar, length, offset, PRINT this,
20218 LIST, PRINTF this, format, LIST, READ this, scalar, length, offset,
20219 READLINE this, GETC this, CLOSE this, OPEN this, filename, BINMODE this,
20220 EOF this, TELL this, SEEK this, offset, whence, DESTROY this
20221
20222 =item MORE INFORMATION
20223
20224 =item COMPATIBILITY
20225
20226 =back
20227
20228 =head2 Tie::Hash, Tie::StdHash, Tie::ExtraHash - base class definitions for
20229 tied hashes
20230
20231 =over 4
20232
20233 =item SYNOPSIS
20234
20235 =item DESCRIPTION
20236
20237 TIEHASH classname, LIST, STORE this, key, value, FETCH this, key, FIRSTKEY
20238 this, NEXTKEY this, lastkey, EXISTS this, key, DELETE this, key, CLEAR this
20239
20240 =item Inheriting from B<Tie::StdHash>
20241
20242 =item Inheriting from B<Tie::ExtraHash>
20243
20244 =item C<UNTIE> and C<DESTROY>
20245
20246 =item MORE INFORMATION
20247
20248 =back
20249
20250 =head2 Tie::Memoize - add data to hash when needed
20251
20252 =over 4
20253
20254 =item SYNOPSIS
20255
20256 =item DESCRIPTION
20257
20258 =item Inheriting from B<Tie::Memoize>
20259
20260 =item EXAMPLE
20261
20262 =item BUGS
20263
20264 =item AUTHOR
20265
20266 =back
20267
20268 =head2 Tie::RefHash - use references as hash keys
20269
20270 =over 4
20271
20272 =item SYNOPSIS
20273
20274 =item DESCRIPTION
20275
20276 =item EXAMPLE
20277
20278 =item AUTHOR
20279
20280 =item VERSION
20281
20282 =item SEE ALSO
20283
20284 =back
20285
20286 =head2 Tie::Scalar, Tie::StdScalar - base class definitions for tied
20287 scalars
20288
20289 =over 4
20290
20291 =item SYNOPSIS
20292
20293 =item DESCRIPTION
20294
20295 TIESCALAR classname, LIST, FETCH this, STORE this, value, DESTROY this
20296
20297 =item MORE INFORMATION
20298
20299 =back
20300
20301 =head2 Tie::SubstrHash - Fixed-table-size, fixed-key-length hashing
20302
20303 =over 4
20304
20305 =item SYNOPSIS
20306
20307 =item DESCRIPTION
20308
20309 =item CAVEATS
20310
20311 =back
20312
20313 =head2 Time::HiRes - High resolution alarm, sleep, gettimeofday, interval
20314 timers
20315
20316 =over 4
20317
20318 =item SYNOPSIS
20319
20320 =item DESCRIPTION
20321
20322 gettimeofday (), usleep ( $useconds ), ualarm ( $useconds [,
20323 $interval_useconds ] ), tv_interval, time (), sleep ( $floating_seconds ),
20324 alarm ( $floating_seconds [, $interval_floating_seconds ] ), setitimer (
20325 $which, $floating_seconds [, $interval_floating_seconds ] ), getitimer (
20326 $which )
20327
20328 =item EXAMPLES
20329
20330 =item C API
20331
20332 =item DIAGNOSTICS
20333
20334 =over 4
20335
20336 =item negative time not invented yet
20337
20338 =item internal error: useconds < 0 (unsigned ... signed ...)
20339
20340 =back
20341
20342 =item CAVEATS
20343
20344 =item AUTHORS
20345
20346 =item COPYRIGHT AND LICENSE
20347
20348 =back
20349
20350 =head2 Time::Local - efficiently compute time from local and GMT time
20351
20352 =over 4
20353
20354 =item SYNOPSIS
20355
20356 =item DESCRIPTION
20357
20358 =item IMPLEMENTATION
20359
20360 =item BUGS
20361
20362 =item SUPPORT
20363
20364 =item AUTHOR
20365
20366 =back
20367
20368 =head2 Time::gmtime - by-name interface to Perl's built-in gmtime()
20369 function
20370
20371 =over 4
20372
20373 =item SYNOPSIS
20374
20375 =item DESCRIPTION
20376
20377 =item NOTE
20378
20379 =item AUTHOR
20380
20381 =back
20382
20383 =head2 Time::localtime - by-name interface to Perl's built-in localtime()
20384 function
20385
20386 =over 4
20387
20388 =item SYNOPSIS
20389
20390 =item DESCRIPTION
20391
20392 =item NOTE
20393
20394 =item AUTHOR
20395
20396 =back
20397
20398 =head2 Time::tm - internal object used by Time::gmtime and Time::localtime
20399
20400 =over 4
20401
20402 =item SYNOPSIS
20403
20404 =item DESCRIPTION
20405
20406 =item AUTHOR
20407
20408 =back
20409
20410 =head2 UNIVERSAL - base class for ALL classes (blessed references)
20411
20412 =over 4
20413
20414 =item SYNOPSIS
20415
20416 =item DESCRIPTION
20417
20418 C<< $obj->isa( TYPE ) >>, C<< CLASS->isa( TYPE ) >>, C<isa( VAL, TYPE )>,
20419 C<TYPE>, C<$obj>, C<CLASS>, C<VAL>, C<< $obj->can( METHOD ) >>, C<<
20420 CLASS->can( METHOD ) >>, C<can( VAL, METHOD )>, C<VERSION ( [ REQUIRE ] )>
20421
20422 =item EXPORTS
20423
20424 =back
20425
20426 =head2 Unicode::Collate - Unicode Collation Algorithm
20427
20428 =over 4
20429
20430 =item SYNOPSIS
20431
20432 =item DESCRIPTION
20433
20434 =over 4
20435
20436 =item Constructor and Tailoring
20437
20438 UCA_Version, alternate, backwards, entry, ignoreName, ignoreChar, level,
20439 normalization, overrideCJK, overrideHangul, preprocess, rearrange, table,
20440 undefName, undefChar, katakana_before_hiragana, upper_before_lower
20441
20442 =item Methods for Collation
20443
20444 C<@sorted = $Collator-E<gt>sort(@not_sorted)>, C<$result =
20445 $Collator-E<gt>cmp($a, $b)>, C<$result = $Collator-E<gt>eq($a, $b)>,
20446 C<$result = $Collator-E<gt>ne($a, $b)>, C<$result = $Collator-E<gt>lt($a,
20447 $b)>, C<$result = $Collator-E<gt>le($a, $b)>, C<$result =
20448 $Collator-E<gt>gt($a, $b)>, C<$result = $Collator-E<gt>ge($a, $b)>,
20449 C<$sortKey = $Collator-E<gt>getSortKey($string)>, C<$sortKeyForm =
20450 $Collator-E<gt>viewSortKey($string)>
20451
20452 =item Methods for Searching
20453
20454 C<$position = $Collator-E<gt>index($string, $substring[, $position])>,
20455 C<($position, $length) = $Collator-E<gt>index($string, $substring[,
20456 $position])>, C<$match_ref = $Collator-E<gt>match($string, $substring)>,
20457 C<($match)   = $Collator-E<gt>match($string, $substring)>, C<@match =
20458 $Collator-E<gt>gmatch($string, $substring)>, C<$count =
20459 $Collator-E<gt>subst($string, $substring, $replacement)>, C<$count =
20460 $Collator-E<gt>gsubst($string, $substring, $replacement)>
20461
20462 =item Other Methods
20463
20464 C<%old_tailoring = $Collator-E<gt>change(%new_tailoring)>, UCA_Version,
20465 Base_Unicode_Version
20466
20467 =item EXPORT
20468
20469 =item CAVEAT
20470
20471 =item Conformance Test
20472
20473 =back
20474
20475 =item AUTHOR
20476
20477 =item SEE ALSO
20478
20479 http://www.unicode.org/reports/tr10/,
20480 http://www.unicode.org/reports/tr10/allkeys.txt,
20481 http://www.unicode.org/reports/tr10/CollationTest.html
20482 http://www.unicode.org/reports/tr10/CollationTest.zip,
20483 http://www.unicode.org/reports/tr15/, L<Unicode::Normalize>
20484
20485 =back
20486
20487 =head2 Unicode::Normalize - Unicode Normalization Forms
20488
20489 =over 4
20490
20491 =item SYNOPSIS
20492
20493 =item DESCRIPTION
20494
20495 =over 4
20496
20497 =item Normalization Forms
20498
20499 C<$NFD_string = NFD($string)>, C<$NFC_string = NFC($string)>,
20500 C<$NFKD_string = NFKD($string)>, C<$NFKC_string = NFKC($string)>,
20501 C<$normalized_string = normalize($form_name, $string)>
20502
20503 =item Decomposition and Composition
20504
20505 C<$decomposed_string = decompose($string)>, C<$decomposed_string =
20506 decompose($string, $useCompatMapping)>, C<$reordered_string  =
20507 reorder($string)>, C<$composed_string   = compose($string)>
20508
20509 =item Quick Check
20510
20511 C<$result = checkNFD($string)>, C<$result = checkNFC($string)>, C<$result =
20512 checkNFKD($string)>, C<$result = checkNFKC($string)>, C<$result =
20513 check($form_name, $string)>
20514
20515 =item Character Data
20516
20517 C<$canonical_decomposed = getCanon($codepoint)>,
20518 C<$compatibility_decomposed = getCompat($codepoint)>,
20519 C<$codepoint_composite = getComposite($codepoint_here, $codepoint_next)>,
20520 C<$combining_class = getCombinClass($codepoint)>, C<$is_exclusion =
20521 isExclusion($codepoint)>, C<$is_singleton = isSingleton($codepoint)>,
20522 C<$is_non_starter_decomposition = isNonStDecomp($codepoint)>,
20523 C<$may_be_composed_with_prev_char = isComp2nd($codepoint)>
20524
20525 =item EXPORT
20526
20527 =back
20528
20529 =item AUTHOR
20530
20531 =item SEE ALSO
20532
20533 http://www.unicode.org/unicode/reports/tr15/,
20534 http://www.unicode.org/Public/UNIDATA/DerivedNormalizationProps.txt
20535
20536 =back
20537
20538 =head2 Unicode::UCD - Unicode character database
20539
20540 =over 4
20541
20542 =item SYNOPSIS
20543
20544 =item DESCRIPTION
20545
20546 =back
20547
20548 =over 4
20549
20550 =item charinfo
20551
20552 =back
20553
20554 =over 4
20555
20556 =item charblock
20557
20558 =back
20559
20560 =over 4
20561
20562 =item charscript
20563
20564 =back
20565
20566 =over 4
20567
20568 =item charblocks
20569
20570 =back
20571
20572 =over 4
20573
20574 =item charscripts
20575
20576 =back
20577
20578 =over 4
20579
20580 =item Blocks versus Scripts
20581
20582 =item Matching Scripts and Blocks
20583
20584 =item Code Point Arguments
20585
20586 =item charinrange
20587
20588 =back
20589
20590 =over 4
20591
20592 =item compexcl
20593
20594 =back
20595
20596 =over 4
20597
20598 =item casefold
20599
20600 =back
20601
20602 =over 4
20603
20604 =item casespec
20605
20606 =back
20607
20608 =over 4
20609
20610 =item Unicode::UCD::UnicodeVersion
20611
20612 =back
20613
20614 =over 4
20615
20616 =item Implementation Note
20617
20618 =back
20619
20620 =over 4
20621
20622 =item BUGS
20623
20624 =item AUTHOR
20625
20626 =back
20627
20628 =head2 User::grent - by-name interface to Perl's built-in getgr*()
20629 functions
20630
20631 =over 4
20632
20633 =item SYNOPSIS
20634
20635 =item DESCRIPTION
20636
20637 =item NOTE
20638
20639 =item AUTHOR
20640
20641 =back
20642
20643 =head2 User::pwent - by-name interface to Perl's built-in getpw*()
20644 functions
20645
20646 =over 4
20647
20648 =item SYNOPSIS
20649
20650 =item DESCRIPTION
20651
20652 =over 4
20653
20654 =item System Specifics
20655
20656 =back
20657
20658 =item NOTE
20659
20660 =item AUTHOR
20661
20662 =item HISTORY
20663
20664 March 18th, 2000
20665
20666 =back
20667
20668 =head2 Win32 - Interfaces to some Win32 API Functions
20669
20670 =over 4
20671
20672 =item DESCRIPTION
20673
20674 =over 4
20675
20676 =item Alphabetical Listing of Win32 Functions
20677
20678 Win32::AbortSystemShutdown(MACHINE), Win32::BuildNumber(),
20679 Win32::CopyFile(FROM, TO, OVERWRITE), Win32::DomainName(),
20680 Win32::ExpandEnvironmentStrings(STRING), Win32::FormatMessage(ERRORCODE),
20681 Win32::FsType(), Win32::FreeLibrary(HANDLE), Win32::GetArchName(),
20682 Win32::GetChipName(), Win32::GetCwd(), Win32::GetFolderPath(FOLDER [,
20683 CREATE]), Win32::GetFullPathName(FILENAME), Win32::GetLastError(),
20684 Win32::GetLongPathName(PATHNAME), Win32::GetNextAvailDrive(),
20685 Win32::GetOSVersion(), Win32::GetOSName(),
20686 Win32::GetShortPathName(PATHNAME), Win32::GetProcAddress(INSTANCE,
20687 PROCNAME), Win32::GetTickCount(), Win32::InitiateSystemShutdown,
20688 Win32::IsWinNT(), Win32::IsWin95(), Win32::LoadLibrary(LIBNAME),
20689 Win32::LoginName(), Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID,
20690 SIDTYPE), Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE),
20691 Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]]), Win32::NodeName(),
20692 Win32::RegisterServer(LIBRARYNAME), Win32::SetChildShowWindow(SHOWWINDOW),
20693 Win32::SetCwd(NEWDIRECTORY), Win32::SetLastError(ERROR),
20694 Win32::Sleep(TIME), Win32::Spawn(COMMAND, ARGS, PID),
20695 Win32::UnregisterServer(LIBRARYNAME)
20696
20697 =back
20698
20699 =back
20700
20701 =head2 XSLoader - Dynamically load C libraries into Perl code
20702
20703 =over 4
20704
20705 =item SYNOPSIS
20706
20707 =item DESCRIPTION
20708
20709 =over 4
20710
20711 =item Migration from C<DynaLoader>
20712
20713 =item Backward compatible boilerplate
20714
20715 =back
20716
20717 =item Order of initialization: early load()
20718
20719 =over 4
20720
20721 =item The most hairy case
20722
20723 =back
20724
20725 =item LIMITATIONS
20726
20727 =item AUTHOR
20728
20729 =back
20730
20731 =head1 AUXILIARY DOCUMENTATION
20732
20733 Here should be listed all the extra programs' documentation, but they
20734 don't all have manual pages yet:
20735
20736 =over 4
20737
20738 =item a2p
20739
20740 =item c2ph
20741
20742 =item dprofpp
20743
20744 =item h2ph
20745
20746 =item h2xs
20747
20748 =item perlbug
20749
20750 =item perldoc
20751
20752 =item pl2pm
20753
20754 =item pod2html
20755
20756 =item pod2man
20757
20758 =item s2p
20759
20760 =item splain
20761
20762 =item xsubpp
20763
20764 =back
20765
20766 =head1 AUTHOR
20767
20768 Larry Wall <F<larry@wall.org>>, with the help of oodles
20769 of other folks.
20770