perlvar
[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.35 $, $Date: 2003/08/24
938 05:26:59 $)
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.49 $, $Date: 2003/09/20
1025 06:37:43 $)
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 is int() broken?
1039
1040 =item Why isn't my octal data interpreted correctly?
1041
1042 =item Does Perl have a round() function?  What about ceil() and floor()? 
1043 Trig functions?
1044
1045 =item How do I convert between numeric representations/bases/radixes?
1046
1047 How do I convert hexadecimal into decimal, How do I convert from decimal to
1048 hexadecimal, How do I convert from octal to decimal, How do I convert from
1049 decimal to octal, How do I convert from binary to decimal, How do I convert
1050 from decimal to binary
1051
1052 =item Why doesn't & work the way I want it to?
1053
1054 =item How do I multiply matrices?
1055
1056 =item How do I perform an operation on a series of integers?
1057
1058 =item How can I output Roman numerals?
1059
1060 =item Why aren't my random numbers random?
1061
1062 =item How do I get a random number between X and Y?
1063
1064 =back
1065
1066 =item Data: Dates
1067
1068 =over 4
1069
1070 =item How do I find the day or week of the year?
1071
1072 =item How do I find the current century or millennium?
1073
1074 =item How can I compare two dates and find the difference?
1075
1076 =item How can I take a string and turn it into epoch seconds?
1077
1078 =item How can I find the Julian Day?
1079
1080 =item How do I find yesterday's date?
1081
1082 =item Does Perl have a Year 2000 problem?  Is Perl Y2K compliant?
1083
1084 =back
1085
1086 =item Data: Strings
1087
1088 =over 4
1089
1090 =item How do I validate input?
1091
1092 =item How do I unescape a string?
1093
1094 =item How do I remove consecutive pairs of characters?
1095
1096 =item How do I expand function calls in a string?
1097
1098 =item How do I find matching/nesting anything?
1099
1100 =item How do I reverse a string?
1101
1102 =item How do I expand tabs in a string?
1103
1104 =item How do I reformat a paragraph?
1105
1106 =item How can I access or change N characters of a string?
1107
1108 =item How do I change the Nth occurrence of something?
1109
1110 =item How can I count the number of occurrences of a substring within a
1111 string?
1112
1113 =item How do I capitalize all the words on one line?
1114
1115 =item How can I split a [character] delimited string except when inside
1116 [character]?
1117
1118 =item How do I strip blank space from the beginning/end of a string?
1119
1120 =item How do I pad a string with blanks or pad a number with zeroes?
1121
1122 =item How do I extract selected columns from a string?
1123
1124 =item How do I find the soundex value of a string?
1125
1126 =item How can I expand variables in text strings?
1127
1128 =item What's wrong with always quoting "$vars"?
1129
1130 =item Why don't my E<lt>E<lt>HERE documents work?
1131
1132 There must be no space after the E<lt>E<lt> part, There (probably) should
1133 be a semicolon at the end, You can't (easily) have any space in front of
1134 the tag
1135
1136 =back
1137
1138 =item Data: Arrays
1139
1140 =over 4
1141
1142 =item What is the difference between a list and an array?
1143
1144 =item What is the difference between $array[1] and @array[1]?
1145
1146 =item How can I remove duplicate elements from a list or array?
1147
1148 a), b), c), d), e)
1149
1150 =item How can I tell whether a certain element is contained in a list or
1151 array?
1152
1153 =item How do I compute the difference of two arrays?  How do I compute the
1154 intersection of two arrays?
1155
1156 =item How do I test whether two arrays or hashes are equal?
1157
1158 =item How do I find the first array element for which a condition is true?
1159
1160 =item How do I handle linked lists?
1161
1162 =item How do I handle circular lists?
1163
1164 =item How do I shuffle an array randomly?
1165
1166 =item How do I process/modify each element of an array?
1167
1168 =item How do I select a random element from an array?
1169
1170 =item How do I permute N elements of a list?
1171
1172 =item How do I sort an array by (anything)?
1173
1174 =item How do I manipulate arrays of bits?
1175
1176 =item Why does defined() return true on empty arrays and hashes?
1177
1178 =back
1179
1180 =item Data: Hashes (Associative Arrays)
1181
1182 =over 4
1183
1184 =item How do I process an entire hash?
1185
1186 =item What happens if I add or remove keys from a hash while iterating over
1187 it?
1188
1189 =item How do I look up a hash element by value?
1190
1191 =item How can I know how many entries are in a hash?
1192
1193 =item How do I sort a hash (optionally by value instead of key)?
1194
1195 =item How can I always keep my hash sorted?
1196
1197 =item What's the difference between "delete" and "undef" with hashes?
1198
1199 =item Why don't my tied hashes make the defined/exists distinction?
1200
1201 =item How do I reset an each() operation part-way through?
1202
1203 =item How can I get the unique keys from two hashes?
1204
1205 =item How can I store a multidimensional array in a DBM file?
1206
1207 =item How can I make my hash remember the order I put elements into it?
1208
1209 =item Why does passing a subroutine an undefined element in a hash create
1210 it?
1211
1212 =item How can I make the Perl equivalent of a C structure/C++ class/hash or
1213 array of hashes or arrays?
1214
1215 =item How can I use a reference as a hash key?
1216
1217 =back
1218
1219 =item Data: Misc
1220
1221 =over 4
1222
1223 =item How do I handle binary data correctly?
1224
1225 =item How do I determine whether a scalar is a number/whole/integer/float?
1226
1227 =item How do I keep persistent data across program calls?
1228
1229 =item How do I print out or copy a recursive data structure?
1230
1231 =item How do I define methods for every class/object?
1232
1233 =item How do I verify a credit card checksum?
1234
1235 =item How do I pack arrays of doubles or floats for XS code?
1236
1237 =back
1238
1239 =item AUTHOR AND COPYRIGHT
1240
1241 =back
1242
1243 =head2 perlfaq5 - Files and Formats ($Revision: 1.28 $, $Date: 2003/01/26
1244 17:45:46 $)
1245
1246 =over 4
1247
1248 =item DESCRIPTION
1249
1250 =over 4
1251
1252 =item How do I flush/unbuffer an output filehandle?  Why must I do this?
1253
1254 =item How do I change one line in a file/delete a line in a file/insert a
1255 line in the middle of a file/append to the beginning of a file?
1256
1257 =item How do I count the number of lines in a file?
1258
1259 =item How can I use Perl's C<-i> option from within a program?
1260
1261 =item How do I make a temporary file name?
1262
1263 =item How can I manipulate fixed-record-length files?
1264
1265 =item How can I make a filehandle local to a subroutine?  How do I pass
1266 filehandles between subroutines?  How do I make an array of filehandles?
1267
1268 =item How can I use a filehandle indirectly?
1269
1270 =item How can I set up a footer format to be used with write()?
1271
1272 =item How can I write() into a string?
1273
1274 =item How can I output my numbers with commas added?
1275
1276 =item How can I translate tildes (~) in a filename?
1277
1278 =item How come when I open a file read-write it wipes it out?
1279
1280 =item Why do I sometimes get an "Argument list too long" when I use
1281 E<lt>*E<gt>?
1282
1283 =item Is there a leak/bug in glob()?
1284
1285 =item How can I open a file with a leading ">" or trailing blanks?
1286
1287 =item How can I reliably rename a file?
1288
1289 =item How can I lock a file?
1290
1291 =item Why can't I just open(FH, "E<gt>file.lock")?
1292
1293 =item I still don't get locking.  I just want to increment the number in
1294 the file.  How can I do this?
1295
1296 =item All I want to do is append a small amount of text to the end of a
1297 file.  Do I still have to use locking?
1298
1299 =item How do I randomly update a binary file?
1300
1301 =item How do I get a file's timestamp in perl?
1302
1303 =item How do I set a file's timestamp in perl?
1304
1305 =item How do I print to more than one file at once?
1306
1307 =item How can I read in an entire file all at once?
1308
1309 =item How can I read in a file by paragraphs?
1310
1311 =item How can I read a single character from a file?  From the keyboard?
1312
1313 =item How can I tell whether there's a character waiting on a filehandle?
1314
1315 =item How do I do a C<tail -f> in perl?
1316
1317 =item How do I dup() a filehandle in Perl?
1318
1319 =item How do I close a file descriptor by number?
1320
1321 =item Why can't I use "C:\temp\foo" in DOS paths?  Why doesn't
1322 `C:\temp\foo.exe` work?
1323
1324 =item Why doesn't glob("*.*") get all the files?
1325
1326 =item Why does Perl let me delete read-only files?  Why does C<-i> clobber
1327 protected files?  Isn't this a bug in Perl?
1328
1329 =item How do I select a random line from a file?
1330
1331 =item Why do I get weird spaces when I print an array of lines?
1332
1333 =back
1334
1335 =item AUTHOR AND COPYRIGHT
1336
1337 =back
1338
1339 =head2 perlfaq6 - Regular Expressions ($Revision: 1.20 $, $Date: 2003/01/03
1340 20:05:28 $)
1341
1342 =over 4
1343
1344 =item DESCRIPTION
1345
1346 =over 4
1347
1348 =item How can I hope to use regular expressions without creating illegible
1349 and unmaintainable code?
1350
1351 Comments Outside the Regex, Comments Inside the Regex, Different Delimiters
1352
1353 =item I'm having trouble matching over more than one line.  What's wrong?
1354
1355 =item How can I pull out lines between two patterns that are themselves on
1356 different lines?
1357
1358 =item I put a regular expression into $/ but it didn't work. What's wrong?
1359
1360 =item How do I substitute case insensitively on the LHS while preserving
1361 case on the RHS?
1362
1363 =item How can I make C<\w> match national character sets?
1364
1365 =item How can I match a locale-smart version of C</[a-zA-Z]/>?
1366
1367 =item How can I quote a variable to use in a regex?
1368
1369 =item What is C</o> really for?
1370
1371 =item How do I use a regular expression to strip C style comments from a
1372 file?
1373
1374 =item Can I use Perl regular expressions to match balanced text?
1375
1376 =item What does it mean that regexes are greedy?  How can I get around it?
1377
1378 =item How do I process each word on each line?
1379
1380 =item How can I print out a word-frequency or line-frequency summary?
1381
1382 =item How can I do approximate matching?
1383
1384 =item How do I efficiently match many regular expressions at once?
1385
1386 =item Why don't word-boundary searches with C<\b> work for me?
1387
1388 =item Why does using $&, $`, or $' slow my program down?
1389
1390 =item What good is C<\G> in a regular expression?
1391
1392 =item Are Perl regexes DFAs or NFAs?  Are they POSIX compliant?
1393
1394 =item What's wrong with using grep in a void context?
1395
1396 =item How can I match strings with multibyte characters?
1397
1398 =item How do I match a pattern that is supplied by the user?
1399
1400 =back
1401
1402 =item AUTHOR AND COPYRIGHT
1403
1404 =back
1405
1406 =head2 perlfaq7 - General Perl Language Issues ($Revision: 1.15 $, $Date:
1407 2003/07/24 02:17:21 $)
1408
1409 =over 4
1410
1411 =item DESCRIPTION
1412
1413 =over 4
1414
1415 =item Can I get a BNF/yacc/RE for the Perl language?
1416
1417 =item What are all these $@%&* punctuation signs, and how do I know when to
1418 use them?
1419
1420 =item Do I always/never have to quote my strings or use semicolons and
1421 commas?
1422
1423 =item How do I skip some return values?
1424
1425 =item How do I temporarily block warnings?
1426
1427 =item What's an extension?
1428
1429 =item Why do Perl operators have different precedence than C operators?
1430
1431 =item How do I declare/create a structure?
1432
1433 =item How do I create a module?
1434
1435 =item How do I create a class?
1436
1437 =item How can I tell if a variable is tainted?
1438
1439 =item What's a closure?
1440
1441 =item What is variable suicide and how can I prevent it?
1442
1443 =item How can I pass/return a {Function, FileHandle, Array, Hash, Method,
1444 Regex}?
1445
1446 Passing Variables and Functions, Passing Filehandles, Passing Regexes,
1447 Passing Methods
1448
1449 =item How do I create a static variable?
1450
1451 =item What's the difference between dynamic and lexical (static) scoping? 
1452 Between local() and my()?
1453
1454 =item How can I access a dynamic variable while a similarly named lexical
1455 is in scope?
1456
1457 =item What's the difference between deep and shallow binding?
1458
1459 =item Why doesn't "my($foo) = E<lt>FILEE<gt>;" work right?
1460
1461 =item How do I redefine a builtin function, operator, or method?
1462
1463 =item What's the difference between calling a function as &foo and foo()?
1464
1465 =item How do I create a switch or case statement?
1466
1467 =item How can I catch accesses to undefined variables, functions, or
1468 methods?
1469
1470 =item Why can't a method included in this same file be found?
1471
1472 =item How can I find out my current package?
1473
1474 =item How can I comment out a large block of perl code?
1475
1476 =item How do I clear a package?
1477
1478 =item How can I use a variable as a variable name?
1479
1480 =item What does "bad interpreter" mean?
1481
1482 =back
1483
1484 =item AUTHOR AND COPYRIGHT
1485
1486 =back
1487
1488 =head2 perlfaq8 - System Interaction ($Revision: 1.17 $, $Date: 2003/01/26
1489 17:44:04 $)
1490
1491 =over 4
1492
1493 =item DESCRIPTION
1494
1495 =over 4
1496
1497 =item How do I find out which operating system I'm running under?
1498
1499 =item How come exec() doesn't return?
1500
1501 =item How do I do fancy stuff with the keyboard/screen/mouse?
1502
1503 Keyboard, Screen, Mouse
1504
1505 =item How do I print something out in color?
1506
1507 =item How do I read just one key without waiting for a return key?
1508
1509 =item How do I check whether input is ready on the keyboard?
1510
1511 =item How do I clear the screen?
1512
1513 =item How do I get the screen size?
1514
1515 =item How do I ask the user for a password?
1516
1517 =item How do I read and write the serial port?
1518
1519 lockfiles, open mode, end of line, flushing output, non-blocking input
1520
1521 =item How do I decode encrypted password files?
1522
1523 =item How do I start a process in the background?
1524
1525 STDIN, STDOUT, and STDERR are shared, Signals, Zombies
1526
1527 =item How do I trap control characters/signals?
1528
1529 =item How do I modify the shadow password file on a Unix system?
1530
1531 =item How do I set the time and date?
1532
1533 =item How can I sleep() or alarm() for under a second?
1534
1535 =item How can I measure time under a second?
1536
1537 =item How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
1538
1539 =item Why doesn't my sockets program work under System V (Solaris)?  What
1540 does the error message "Protocol not supported" mean?
1541
1542 =item How can I call my system's unique C functions from Perl?
1543
1544 =item Where do I get the include files to do ioctl() or syscall()?
1545
1546 =item Why do setuid perl scripts complain about kernel problems?
1547
1548 =item How can I open a pipe both to and from a command?
1549
1550 =item Why can't I get the output of a command with system()?
1551
1552 =item How can I capture STDERR from an external command?
1553
1554 =item Why doesn't open() return an error when a pipe open fails?
1555
1556 =item What's wrong with using backticks in a void context?
1557
1558 =item How can I call backticks without shell processing?
1559
1560 =item Why can't my script read from STDIN after I gave it EOF (^D on Unix,
1561 ^Z on MS-DOS)?
1562
1563 =item How can I convert my shell script to perl?
1564
1565 =item Can I use perl to run a telnet or ftp session?
1566
1567 =item How can I write expect in Perl?
1568
1569 =item Is there a way to hide perl's command line from programs such as
1570 "ps"?
1571
1572 =item I {changed directory, modified my environment} in a perl script.  How
1573 come the change disappeared when I exited the script?  How do I get my
1574 changes to be visible?
1575
1576 Unix
1577
1578 =item How do I close a process's filehandle without waiting for it to
1579 complete?
1580
1581 =item How do I fork a daemon process?
1582
1583 =item How do I find out if I'm running interactively or not?
1584
1585 =item How do I timeout a slow event?
1586
1587 =item How do I set CPU limits?
1588
1589 =item How do I avoid zombies on a Unix system?
1590
1591 =item How do I use an SQL database?
1592
1593 =item How do I make a system() exit on control-C?
1594
1595 =item How do I open a file without blocking?
1596
1597 =item How do I install a module from CPAN?
1598
1599 =item What's the difference between require and use?
1600
1601 =item How do I keep my own module/library directory?
1602
1603 =item How do I add the directory my program lives in to the module/library
1604 search path?
1605
1606 =item How do I add a directory to my include path (@INC) at runtime?
1607
1608 =item What is socket.ph and where do I get it?
1609
1610 =back
1611
1612 =item AUTHOR AND COPYRIGHT
1613
1614 =back
1615
1616 =head2 perlfaq9 - Networking ($Revision: 1.15 $, $Date: 2003/01/31 17:36:57
1617 $)
1618
1619 =over 4
1620
1621 =item DESCRIPTION
1622
1623 =over 4
1624
1625 =item What is the correct form of response from a CGI script?
1626
1627 =item My CGI script runs from the command line but not the browser.  (500
1628 Server Error)
1629
1630 =item How can I get better error messages from a CGI program?
1631
1632 =item How do I remove HTML from a string?
1633
1634 =item How do I extract URLs?
1635
1636 =item How do I download a file from the user's machine?  How do I open a
1637 file on another machine?
1638
1639 =item How do I make a pop-up menu in HTML?
1640
1641 =item How do I fetch an HTML file?
1642
1643 =item How do I automate an HTML form submission?
1644
1645 =item How do I decode or create those %-encodings on the web?
1646
1647 =item How do I redirect to another page?
1648
1649 =item How do I put a password on my web pages?
1650
1651 =item How do I edit my .htpasswd and .htgroup files with Perl?
1652
1653 =item How do I make sure users can't enter values into a form that cause my
1654 CGI script to do bad things?
1655
1656 =item How do I parse a mail header?
1657
1658 =item How do I decode a CGI form?
1659
1660 =item How do I check a valid mail address?
1661
1662 =item How do I decode a MIME/BASE64 string?
1663
1664 =item How do I return the user's mail address?
1665
1666 =item How do I send mail?
1667
1668 =item How do I use MIME to make an attachment to a mail message?
1669
1670 =item How do I read mail?
1671
1672 =item How do I find out my hostname/domainname/IP address?
1673
1674 =item How do I fetch a news article or the active newsgroups?
1675
1676 =item How do I fetch/put an FTP file?
1677
1678 =item How can I do RPC in Perl?
1679
1680 =back
1681
1682 =item AUTHOR AND COPYRIGHT
1683
1684 =back
1685
1686 =head2 perlsyn - Perl syntax
1687
1688 =over 4
1689
1690 =item DESCRIPTION
1691
1692 =over 4
1693
1694 =item Declarations
1695
1696 =item Comments
1697
1698 =item Simple Statements
1699
1700 =item Compound Statements
1701
1702 =item Loop Control
1703
1704 =item For Loops
1705
1706 =item Foreach Loops
1707
1708 =item Basic BLOCKs and Switch Statements
1709
1710 =item Goto
1711
1712 =item PODs: Embedded Documentation
1713
1714 =item Plain Old Comments (Not!)
1715
1716 =back
1717
1718 =back
1719
1720 =head2 perldata - Perl data types
1721
1722 =over 4
1723
1724 =item DESCRIPTION
1725
1726 =over 4
1727
1728 =item Variable names
1729
1730 =item Context
1731
1732 =item Scalar values
1733
1734 =item Scalar value constructors
1735
1736 =item List value constructors
1737
1738 =item Subscripts
1739
1740 =item Slices
1741
1742 =item Typeglobs and Filehandles
1743
1744 =back
1745
1746 =item SEE ALSO
1747
1748 =back
1749
1750 =head2 perlop - Perl operators and precedence
1751
1752 =over 4
1753
1754 =item SYNOPSIS
1755
1756 =item DESCRIPTION
1757
1758 =over 4
1759
1760 =item Terms and List Operators (Leftward)
1761
1762 =item The Arrow Operator
1763
1764 =item Auto-increment and Auto-decrement
1765
1766 =item Exponentiation
1767
1768 =item Symbolic Unary Operators
1769
1770 =item Binding Operators
1771
1772 =item Multiplicative Operators
1773
1774 =item Additive Operators
1775
1776 =item Shift Operators
1777
1778 =item Named Unary Operators
1779
1780 =item Relational Operators
1781
1782 =item Equality Operators
1783
1784 =item Bitwise And
1785
1786 =item Bitwise Or and Exclusive Or
1787
1788 =item C-style Logical And
1789
1790 =item C-style Logical Or
1791
1792 =item C-style Logical Defined-Or
1793
1794 =item Range Operators
1795
1796 =item Conditional Operator
1797
1798 =item Assignment Operators
1799
1800 =item Comma Operator
1801
1802 =item List Operators (Rightward)
1803
1804 =item Logical Not
1805
1806 =item Logical And
1807
1808 =item Logical or, Defined or, and Exclusive Or
1809
1810 =item C Operators Missing From Perl
1811
1812 unary &, unary *, (TYPE)
1813
1814 =item Quote and Quote-like Operators
1815
1816 =item Regexp Quote-Like Operators
1817
1818 ?PATTERN?, m/PATTERN/cgimosx, /PATTERN/cgimosx, q/STRING/, C<'STRING'>,
1819 qq/STRING/, "STRING", qr/STRING/imosx, qx/STRING/, `STRING`, qw/STRING/,
1820 s/PATTERN/REPLACEMENT/egimosx, tr/SEARCHLIST/REPLACEMENTLIST/cds,
1821 y/SEARCHLIST/REPLACEMENTLIST/cds, <<EOF
1822
1823 =item Gory details of parsing quoted constructs
1824
1825 Finding the end, Removal of backslashes before delimiters, Interpolation,
1826 C<<<'EOF'>, C<m''>, C<s'''>, C<tr///>, C<y///>, C<''>, C<q//>, C<"">,
1827 C<``>, C<qq//>, C<qx//>, C<< <file*glob> >>, C<?RE?>, C</RE/>, C<m/RE/>,
1828 C<s/RE/foo/>,, Interpolation of regular expressions, Optimization of
1829 regular expressions
1830
1831 =item I/O Operators
1832
1833 =item Constant Folding
1834
1835 =item Bitwise String Operators
1836
1837 =item Integer Arithmetic
1838
1839 =item Floating-point Arithmetic
1840
1841 =item Bigger Numbers
1842
1843 =back
1844
1845 =back
1846
1847 =head2 perlsub - Perl subroutines
1848
1849 =over 4
1850
1851 =item SYNOPSIS
1852
1853 =item DESCRIPTION
1854
1855 =over 4
1856
1857 =item Private Variables via my()
1858
1859 =item Persistent Private Variables
1860
1861 =item Temporary Values via local()
1862
1863 =item Lvalue subroutines
1864
1865 Lvalue subroutines are EXPERIMENTAL
1866
1867 =item Passing Symbol Table Entries (typeglobs)
1868
1869 =item When to Still Use local()
1870
1871 =item Pass by Reference
1872
1873 =item Prototypes
1874
1875 =item Constant Functions
1876
1877 =item Overriding Built-in Functions
1878
1879 =item Autoloading
1880
1881 =item Subroutine Attributes
1882
1883 =back
1884
1885 =item SEE ALSO
1886
1887 =back
1888
1889 =head2 perlfunc - Perl builtin functions
1890
1891 =over 4
1892
1893 =item DESCRIPTION
1894
1895 =over 4
1896
1897 =item Perl Functions by Category
1898
1899 Functions for SCALARs or strings, Regular expressions and pattern matching,
1900 Numeric functions, Functions for real @ARRAYs, Functions for list data,
1901 Functions for real %HASHes, Input and output functions, Functions for fixed
1902 length data or records, Functions for filehandles, files, or directories,
1903 Keywords related to the control flow of your perl program, Keywords related
1904 to scoping, Miscellaneous functions, Functions for processes and process
1905 groups, Keywords related to perl modules, Keywords related to classes and
1906 object-orientedness, Low-level socket functions, System V interprocess
1907 communication functions, Fetching user and group info, Fetching network
1908 info, Time-related functions, Functions new in perl5, Functions obsoleted
1909 in perl5
1910
1911 =item Portability
1912
1913 =item Alphabetical Listing of Perl Functions
1914
1915 -I<X> FILEHANDLE, -I<X> EXPR, -I<X>, abs VALUE, abs, accept
1916 NEWSOCKET,GENERICSOCKET, alarm SECONDS, alarm, atan2 Y,X, bind SOCKET,NAME,
1917 binmode FILEHANDLE, LAYER, binmode FILEHANDLE, bless REF,CLASSNAME, bless
1918 REF, caller EXPR, caller, chdir EXPR, chmod LIST, chomp VARIABLE, chomp(
1919 LIST ), chomp, chop VARIABLE, chop( LIST ), chop, chown LIST, chr NUMBER,
1920 chr, chroot FILENAME, chroot, close FILEHANDLE, close, closedir DIRHANDLE,
1921 connect SOCKET,NAME, continue BLOCK, cos EXPR, cos, crypt PLAINTEXT,SALT,
1922 dbmclose HASH, dbmopen HASH,DBNAME,MASK, defined EXPR, defined, delete
1923 EXPR, die LIST, do BLOCK, do SUBROUTINE(LIST), do EXPR, dump LABEL, dump,
1924 each HASH, eof FILEHANDLE, eof (), eof, eval EXPR, eval BLOCK, exec LIST,
1925 exec PROGRAM LIST, exists EXPR, exit EXPR, exp EXPR, exp, fcntl
1926 FILEHANDLE,FUNCTION,SCALAR, fileno FILEHANDLE, flock FILEHANDLE,OPERATION,
1927 fork, format, formline PICTURE,LIST, getc FILEHANDLE, getc, getlogin,
1928 getpeername SOCKET, getpgrp PID, getppid, getpriority WHICH,WHO, getpwnam
1929 NAME, getgrnam NAME, gethostbyname NAME, getnetbyname NAME, getprotobyname
1930 NAME, getpwuid UID, getgrgid GID, getservbyname NAME,PROTO, gethostbyaddr
1931 ADDR,ADDRTYPE, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
1932 getservbyport PORT,PROTO, getpwent, getgrent, gethostent, getnetent,
1933 getprotoent, getservent, setpwent, setgrent, sethostent STAYOPEN, setnetent
1934 STAYOPEN, setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent,
1935 endhostent, endnetent, endprotoent, endservent, getsockname SOCKET,
1936 getsockopt SOCKET,LEVEL,OPTNAME, glob EXPR, glob, gmtime EXPR, goto LABEL,
1937 goto EXPR, goto &NAME, grep BLOCK LIST, grep EXPR,LIST, hex EXPR, hex,
1938 import, index STR,SUBSTR,POSITION, index STR,SUBSTR, int EXPR, int, ioctl
1939 FILEHANDLE,FUNCTION,SCALAR, join EXPR,LIST, keys HASH, kill SIGNAL, LIST,
1940 last LABEL, last, lc EXPR, lc, lcfirst EXPR, lcfirst, length EXPR, length,
1941 link OLDFILE,NEWFILE, listen SOCKET,QUEUESIZE, local EXPR, localtime EXPR,
1942 lock THING, log EXPR, log, lstat EXPR, lstat, m//, map BLOCK LIST, map
1943 EXPR,LIST, mkdir FILENAME,MASK, mkdir FILENAME, msgctl ID,CMD,ARG, msgget
1944 KEY,FLAGS, msgrcv ID,VAR,SIZE,TYPE,FLAGS, msgsnd ID,MSG,FLAGS, my EXPR, my
1945 TYPE EXPR, my EXPR : ATTRS, my TYPE EXPR : ATTRS, next LABEL, next, no
1946 Module VERSION LIST, no Module VERSION, no Module LIST, no Module, oct
1947 EXPR, oct, open FILEHANDLE,EXPR, open FILEHANDLE,MODE,EXPR, open
1948 FILEHANDLE,MODE,EXPR,LIST, open FILEHANDLE,MODE,REFERENCE, open FILEHANDLE,
1949 opendir DIRHANDLE,EXPR, ord EXPR, ord, our EXPR, our EXPR TYPE, our EXPR :
1950 ATTRS, our TYPE EXPR : ATTRS, pack TEMPLATE,LIST, package NAMESPACE,
1951 package, pipe READHANDLE,WRITEHANDLE, pop ARRAY, pop, pos SCALAR, pos,
1952 print FILEHANDLE LIST, print LIST, print, printf FILEHANDLE FORMAT, LIST,
1953 printf FORMAT, LIST, prototype FUNCTION, push ARRAY,LIST, q/STRING/,
1954 qq/STRING/, qr/STRING/, qx/STRING/, qw/STRING/, quotemeta EXPR, quotemeta,
1955 rand EXPR, rand, read FILEHANDLE,SCALAR,LENGTH,OFFSET, read
1956 FILEHANDLE,SCALAR,LENGTH, readdir DIRHANDLE, readline EXPR, readlink EXPR,
1957 readlink, readpipe EXPR, recv SOCKET,SCALAR,LENGTH,FLAGS, redo LABEL, redo,
1958 ref EXPR, ref, rename OLDNAME,NEWNAME, require VERSION, require EXPR,
1959 require, reset EXPR, reset, return EXPR, return, reverse LIST, rewinddir
1960 DIRHANDLE, rindex STR,SUBSTR,POSITION, rindex STR,SUBSTR, rmdir FILENAME,
1961 rmdir, s///, scalar EXPR, seek FILEHANDLE,POSITION,WHENCE, seekdir
1962 DIRHANDLE,POS, select FILEHANDLE, select, select RBITS,WBITS,EBITS,TIMEOUT,
1963 semctl ID,SEMNUM,CMD,ARG, semget KEY,NSEMS,FLAGS, semop KEY,OPSTRING, send
1964 SOCKET,MSG,FLAGS,TO, send SOCKET,MSG,FLAGS, setpgrp PID,PGRP, setpriority
1965 WHICH,WHO,PRIORITY, setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL, shift ARRAY,
1966 shift, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS, shmread ID,VAR,POS,SIZE,
1967 shmwrite ID,STRING,POS,SIZE, shutdown SOCKET,HOW, sin EXPR, sin, sleep
1968 EXPR, sleep, socket SOCKET,DOMAIN,TYPE,PROTOCOL, socketpair
1969 SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, sort SUBNAME LIST, sort BLOCK LIST,
1970 sort LIST, splice ARRAY,OFFSET,LENGTH,LIST, splice ARRAY,OFFSET,LENGTH,
1971 splice ARRAY,OFFSET, splice ARRAY, split /PATTERN/,EXPR,LIMIT, split
1972 /PATTERN/,EXPR, split /PATTERN/, split, sprintf FORMAT, LIST, format
1973 parameter index, flags, vector flag, (minimum) width, precision, or maximum
1974 width, size, order of arguments, sqrt EXPR, sqrt, srand EXPR, srand, stat
1975 FILEHANDLE, stat EXPR, stat, study SCALAR, study, sub NAME BLOCK, sub NAME
1976 (PROTO) BLOCK, sub NAME : ATTRS BLOCK, sub NAME (PROTO) : ATTRS BLOCK,
1977 substr EXPR,OFFSET,LENGTH,REPLACEMENT, substr EXPR,OFFSET,LENGTH, substr
1978 EXPR,OFFSET, symlink OLDFILE,NEWFILE, syscall NUMBER, LIST, sysopen
1979 FILEHANDLE,FILENAME,MODE, sysopen FILEHANDLE,FILENAME,MODE,PERMS, sysread
1980 FILEHANDLE,SCALAR,LENGTH,OFFSET, sysread FILEHANDLE,SCALAR,LENGTH, sysseek
1981 FILEHANDLE,POSITION,WHENCE, system LIST, system PROGRAM LIST, syswrite
1982 FILEHANDLE,SCALAR,LENGTH,OFFSET, syswrite FILEHANDLE,SCALAR,LENGTH,
1983 syswrite FILEHANDLE,SCALAR, tell FILEHANDLE, tell, telldir DIRHANDLE, tie
1984 VARIABLE,CLASSNAME,LIST, tied VARIABLE, time, times, tr///, truncate
1985 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, uc EXPR, uc, ucfirst EXPR,
1986 ucfirst, umask EXPR, umask, undef EXPR, undef, unlink LIST, unlink, unpack
1987 TEMPLATE,EXPR, unpack TEMPLATE, untie VARIABLE, unshift ARRAY,LIST, use
1988 Module VERSION LIST, use Module VERSION, use Module LIST, use Module, use
1989 VERSION, utime LIST, values HASH, vec EXPR,OFFSET,BITS, wait, waitpid
1990 PID,FLAGS, wantarray, warn LIST, write FILEHANDLE, write EXPR, write, y///
1991
1992 =back
1993
1994 =back
1995
1996 =head2 perlopentut - tutorial on opening things in Perl
1997
1998 =over 4
1999
2000 =item DESCRIPTION
2001
2002 =item Open E<agrave> la shell
2003
2004 =over 4
2005
2006 =item Simple Opens
2007
2008 =item Indirect Filehandles
2009
2010 =item Pipe Opens
2011
2012 =item The Minus File
2013
2014 =item Mixing Reads and Writes
2015
2016 =item Filters 
2017
2018 =back
2019
2020 =item Open E<agrave> la C
2021
2022 =over 4
2023
2024 =item Permissions E<agrave> la mode
2025
2026 =back
2027
2028 =item Obscure Open Tricks
2029
2030 =over 4
2031
2032 =item Re-Opening Files (dups)
2033
2034 =item Dispelling the Dweomer
2035
2036 =item Paths as Opens
2037
2038 =item Single Argument Open
2039
2040 =item Playing with STDIN and STDOUT
2041
2042 =back
2043
2044 =item Other I/O Issues
2045
2046 =over 4
2047
2048 =item Opening Non-File Files
2049
2050 =item Opening Named Pipes
2051
2052 =item Opening Sockets
2053
2054 =item Binary Files
2055
2056 =item File Locking
2057
2058 =item IO Layers
2059
2060 =back
2061
2062 =item SEE ALSO 
2063
2064 =item AUTHOR and COPYRIGHT
2065
2066 =item HISTORY
2067
2068 =back
2069
2070 =head2 perlpacktut - tutorial on C<pack> and C<unpack>
2071
2072 =over 4
2073
2074 =item DESCRIPTION
2075
2076 =item The Basic Principle
2077
2078 =item Packing Text
2079
2080 =item Packing Numbers
2081
2082 =over 4
2083
2084 =item Integers
2085
2086 =item Unpacking a Stack Frame
2087
2088 =item How to Eat an Egg on a Net
2089
2090 =item Floating point Numbers
2091
2092 =back
2093
2094 =item Exotic Templates
2095
2096 =over 4
2097
2098 =item Bit Strings
2099
2100 =item Uuencoding
2101
2102 =item Doing Sums
2103
2104 =item  Unicode
2105
2106 =item Another Portable Binary Encoding
2107
2108 =back
2109
2110 =item Template Grouping
2111
2112 =item Lengths and Widths
2113
2114 =over 4
2115
2116 =item String Lengths
2117
2118 =item Dynamic Templates
2119
2120 =item Counting Repetitions
2121
2122 =back
2123
2124 =item Packing and Unpacking C Structures
2125
2126 =over 4
2127
2128 =item The Alignment Pit
2129
2130 =item Alignment, Take 2
2131
2132 =item Alignment, Take 3
2133
2134 =item Pointers for How to Use Them
2135
2136 =back
2137
2138 =item Pack Recipes
2139
2140 =item Funnies Section
2141
2142 =item Authors
2143
2144 =back
2145
2146 =head2 perlpod - the Plain Old Documentation format
2147
2148 =over 4
2149
2150 =item DESCRIPTION
2151
2152 =over 4
2153
2154 =item Ordinary Paragraph
2155
2156 =item Verbatim Paragraph
2157
2158 =item Command Paragraph
2159
2160 C<=head1 I<Heading Text>>, C<=head2 I<Heading Text>>, C<=head3 I<Heading
2161 Text>>, C<=head4 I<Heading Text>>, C<=over I<indentlevel>>, C<=item
2162 I<stuff...>>, C<=back>, C<=cut>, C<=pod>, C<=begin I<formatname>>, C<=end
2163 I<formatname>>, C<=for I<formatname> I<text...>>, C<=encoding
2164 I<encodingname>>
2165
2166 =item Formatting Codes
2167
2168 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
2169 C<CE<lt>codeE<gt>> -- code text, C<LE<lt>nameE<gt>> -- a hyperlink,
2170 C<EE<lt>escapeE<gt>> -- a character escape, C<FE<lt>filenameE<gt>> -- used
2171 for filenames, C<SE<lt>textE<gt>> -- text contains non-breaking spaces,
2172 C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a null
2173 (zero-effect) formatting code
2174
2175 =item The Intent
2176
2177 =item Embedding Pods in Perl Modules
2178
2179 =item Hints for Writing Pod
2180
2181 =back
2182
2183 =item SEE ALSO
2184
2185 =item AUTHOR
2186
2187 =back
2188
2189 =head2 perlpodspec - Plain Old Documentation: format specification and
2190 notes
2191
2192 =over 4
2193
2194 =item DESCRIPTION
2195
2196 =item Pod Definitions
2197
2198 =item Pod Commands
2199
2200 "=head1", "=head2", "=head3", "=head4", "=pod", "=cut", "=over", "=item",
2201 "=back", "=begin formatname", "=end formatname", "=for formatname text...",
2202 "=encoding encodingname"
2203
2204 =item Pod Formatting Codes
2205
2206 C<IE<lt>textE<gt>> -- italic text, C<BE<lt>textE<gt>> -- bold text,
2207 C<CE<lt>codeE<gt>> -- code text, C<FE<lt>filenameE<gt>> -- style for
2208 filenames, C<XE<lt>topic nameE<gt>> -- an index entry, C<ZE<lt>E<gt>> -- a
2209 null (zero-effect) formatting code, C<LE<lt>nameE<gt>> -- a hyperlink,
2210 C<EE<lt>escapeE<gt>> -- a character escape, C<SE<lt>textE<gt>> -- text
2211 contains non-breaking spaces
2212
2213 =item Notes on Implementing Pod Processors
2214
2215 =item About LE<lt>...E<gt> Codes
2216
2217 First:, Second:, Third:, Fourth:, Fifth:, Sixth:
2218
2219 =item About =over...=back Regions
2220
2221 =item About Data Paragraphs and "=begin/=end" Regions
2222
2223 =item SEE ALSO
2224
2225 =item AUTHOR
2226
2227 =back
2228
2229 =head2 perlrun - how to execute the Perl interpreter
2230
2231 =over 4
2232
2233 =item SYNOPSIS
2234
2235 =item DESCRIPTION
2236
2237 =over 4
2238
2239 =item #! and quoting on non-Unix systems
2240
2241 OS/2, MS-DOS, Win95/NT, Macintosh, VMS
2242
2243 =item Location of Perl
2244
2245 =item Command Switches
2246
2247 B<-0>[I<octal/hexadecimal>], B<-A [I<assertions>]>, B<-a>, B<-C
2248 [I<number/list>]>, B<-c>, B<-d>, B<-d:>I<foo[=bar,baz]>, B<-D>I<letters>,
2249 B<-D>I<number>, B<-e> I<commandline>, B<-F>I<pattern>, B<-h>,
2250 B<-i>[I<extension>], B<-I>I<directory>, B<-l>[I<octnum>],
2251 B<-m>[B<->]I<module>, B<-M>[B<->]I<module>, B<-M>[B<->]I<'module ...'>,
2252 B<-[mM]>[B<->]I<module=arg[,arg]...>, B<-n>, B<-p>, B<-P>, B<-s>, B<-S>,
2253 B<-t>, B<-T>, B<-u>, B<-U>, B<-v>, B<-V>, B<-V:>I<name>, B<-w>, B<-W>,
2254 B<-X>, B<-x> I<directory>
2255
2256 =back
2257
2258 =item ENVIRONMENT
2259
2260 HOME, LOGDIR, PATH, PERL5LIB, PERL5OPT, PERLIO, :bytes, :crlf, :mmap,
2261 :perlio, :pop, :raw, :stdio, :unix, :utf8, :win32, PERLIO_DEBUG, PERLLIB,
2262 PERL5DB, PERL5SHELL (specific to the Win32 port), PERL_DEBUG_MSTATS,
2263 PERL_DESTRUCT_LEVEL, PERL_ENCODING, PERL_HASH_SEED, PERL_HASH_SEED_DEBUG,
2264 PERL_ROOT (specific to the VMS port), PERL_SIGNALS, PERL_UNICODE, SYS$LOGIN
2265 (specific to the VMS port)
2266
2267 =back
2268
2269 =head2 perldiag - various Perl diagnostics
2270
2271 =over 4
2272
2273 =item DESCRIPTION
2274
2275 =back
2276
2277 =head2 perllexwarn - Perl Lexical Warnings
2278
2279 =over 4
2280
2281 =item DESCRIPTION
2282
2283 =over 4
2284
2285 =item Default Warnings and Optional Warnings
2286
2287 =item What's wrong with B<-w> and C<$^W>
2288
2289 =item Controlling Warnings from the Command Line
2290
2291 B<-w>, B<-W>, B<-X>
2292
2293 =item Backward Compatibility
2294
2295 =item Category Hierarchy
2296
2297 =item Fatal Warnings
2298
2299 =item Reporting Warnings from a Module
2300
2301 =back
2302
2303 =item TODO
2304
2305 =item SEE ALSO
2306
2307 =item AUTHOR
2308
2309 =back
2310
2311 =head2 perldebug - Perl debugging
2312
2313 =over 4
2314
2315 =item DESCRIPTION
2316
2317 =item The Perl Debugger
2318
2319 =over 4
2320
2321 =item Debugger Commands
2322
2323 h, h [command], h h, p expr, x [maxdepth] expr, V [pkg [vars]], X [vars], y
2324 [level [vars]], T, s [expr], n [expr], r, <CR>, c [line|sub], l, l
2325 min+incr, l min-max, l line, l subname, -, v [line], f filename, /pattern/,
2326 ?pattern?, L [abw], S [[!]regex], t, t expr, b, b [line] [condition], b
2327 subname [condition], b postpone subname [condition], b load filename, b
2328 compile subname, B line, B *, a [line] command, A line, A *, w expr, W
2329 expr, W *, o, o booloption .., o anyoption? .., o option=value .., < ?, < [
2330 command ], < *, << command, > ?, > command, > *, >> command, { ?, { [
2331 command ], { *, {{ command, ! number, ! -number, ! pattern, !! cmd, source
2332 file, H -number, q or ^D, R, |dbcmd, ||dbcmd, command, m expr, M, man
2333 [manpage]
2334
2335 =item Configurable Options
2336
2337 C<recallCommand>, C<ShellBang>, C<pager>, C<tkRunning>, C<signalLevel>,
2338 C<warnLevel>, C<dieLevel>, C<AutoTrace>, C<LineInfo>, C<inhibit_exit>,
2339 C<PrintRet>, C<ornaments>, C<frame>, C<maxTraceLen>, C<windowSize>,
2340 C<arrayDepth>, C<hashDepth>, C<dumpDepth>, C<compactDump>, C<veryCompact>,
2341 C<globPrint>, C<DumpDBFiles>, C<DumpPackages>, C<DumpReused>, C<quote>,
2342 C<HighBit>, C<undefPrint>, C<UsageOnly>, C<TTY>, C<noTTY>, C<ReadLine>,
2343 C<NonStop>
2344
2345 =item Debugger input/output
2346
2347 Prompt, Multiline commands, Stack backtrace, Line Listing Format, Frame
2348 listing
2349
2350 =item Debugging compile-time statements
2351
2352 =item Debugger Customization
2353
2354 =item Readline Support
2355
2356 =item Editor Support for Debugging
2357
2358 =item The Perl Profiler
2359
2360 =back
2361
2362 =item Debugging regular expressions
2363
2364 =item Debugging memory usage
2365
2366 =item SEE ALSO
2367
2368 =item BUGS
2369
2370 =back
2371
2372 =head2 perlvar - Perl predefined variables
2373
2374 =over 4
2375
2376 =item DESCRIPTION
2377
2378 =over 4
2379
2380 =item Predefined Names
2381
2382 $ARG, $_, $a, $b, $<I<digits>>, $MATCH, $&, $PREMATCH, $`, $POSTMATCH, $',
2383 $LAST_PAREN_MATCH, $+, $^N, @LAST_MATCH_END, @+,
2384 HANDLE->input_line_number(EXPR), $INPUT_LINE_NUMBER, $NR, $,
2385 IO::Handle->input_record_separator(EXPR), $INPUT_RECORD_SEPARATOR, $RS, $/,
2386 HANDLE->autoflush(EXPR), $OUTPUT_AUTOFLUSH, $|,
2387 IO::Handle->output_field_separator EXPR, $OUTPUT_FIELD_SEPARATOR, $OFS, $,,
2388 IO::Handle->output_record_separator EXPR, $OUTPUT_RECORD_SEPARATOR, $ORS,
2389 $\, $LIST_SEPARATOR, $", $SUBSCRIPT_SEPARATOR, $SUBSEP, $;, $#,
2390 HANDLE->format_page_number(EXPR), $FORMAT_PAGE_NUMBER, $%,
2391 HANDLE->format_lines_per_page(EXPR), $FORMAT_LINES_PER_PAGE, $=,
2392 HANDLE->format_lines_left(EXPR), $FORMAT_LINES_LEFT, $-, @LAST_MATCH_START,
2393 @-, C<$`> is the same as C<substr($var, 0, $-[0])>, C<$&> is the same as
2394 C<substr($var, $-[0], $+[0] - $-[0])>, C<$'> is the same as C<substr($var,
2395 $+[0])>, C<$1> is the same as C<substr($var, $-[1], $+[1] - $-[1])>, C<$2>
2396 is the same as C<substr($var, $-[2], $+[2] - $-[2])>, C<$3> is the same as
2397 C<substr $var, $-[3], $+[3] - $-[3])>, HANDLE->format_name(EXPR),
2398 $FORMAT_NAME, $~, HANDLE->format_top_name(EXPR), $FORMAT_TOP_NAME, $^,
2399 IO::Handle->format_line_break_characters EXPR,
2400 $FORMAT_LINE_BREAK_CHARACTERS, $:, IO::Handle->format_formfeed EXPR,
2401 $FORMAT_FORMFEED, $^L, $ACCUMULATOR, $^A, $CHILD_ERROR, $?, ${^ENCODING},
2402 $OS_ERROR, $ERRNO, $!, %!, $EXTENDED_OS_ERROR, $^E, $EVAL_ERROR, $@,
2403 $PROCESS_ID, $PID, $$, $REAL_USER_ID, $UID, $<, $EFFECTIVE_USER_ID, $EUID,
2404 $>, $REAL_GROUP_ID, $GID, $(, $EFFECTIVE_GROUP_ID, $EGID, $),
2405 $PROGRAM_NAME, $0, $[, $], $COMPILING, $^C, $DEBUGGING, $^D,
2406 $SYSTEM_FD_MAX, $^F, $^H, %^H, $INPLACE_EDIT, $^I, $^M, $OSNAME, $^O,
2407 ${^OPEN}, $PERLDB, $^P, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
2408 0x100, 0x200, 0x400, $LAST_REGEXP_CODE_RESULT, $^R,
2409 $EXCEPTIONS_BEING_CAUGHT, $^S, $BASETIME, $^T, ${^TAINT}, ${^UNICODE},
2410 $PERL_VERSION, $^V, $WARNING, $^W, ${^WARNING_BITS}, $EXECUTABLE_NAME, $^X,
2411 ARGV, $ARGV, @ARGV, ARGVOUT, @F, @INC, @_, %INC, %ENV, $ENV{expr}, %SIG,
2412 $SIG{expr}
2413
2414 =item Error Indicators
2415
2416 =item Technical Note on the Syntax of Variable Names
2417
2418 =back
2419
2420 =item BUGS
2421
2422 =back
2423
2424 =head2 perlre - Perl regular expressions
2425
2426 =over 4
2427
2428 =item DESCRIPTION
2429
2430 i, m, s, x
2431
2432 =over 4
2433
2434 =item Regular Expressions
2435
2436 [1], [2], [3], cntrl, graph, print, punct, xdigit
2437
2438 =item Extended Patterns
2439
2440 C<(?#text)>, C<(?imsx-imsx)>, C<(?:pattern)>, C<(?imsx-imsx:pattern)>,
2441 C<(?=pattern)>, C<(?!pattern)>, C<(?<=pattern)>, C<(?<!pattern)>, C<(?{
2442 code })>, C<(??{ code })>, C<< (?>pattern) >>,
2443 C<(?(condition)yes-pattern|no-pattern)>, C<(?(condition)yes-pattern)>
2444
2445 =item Backtracking
2446
2447 =item Version 8 Regular Expressions
2448
2449 =item Warning on \1 vs $1
2450
2451 =item Repeated patterns matching zero-length substring
2452
2453 =item Combining pieces together
2454
2455 C<ST>, C<S|T>, C<S{REPEAT_COUNT}>, C<S{min,max}>, C<S{min,max}?>, C<S?>,
2456 C<S*>, C<S+>, C<S??>, C<S*?>, C<S+?>, C<< (?>S) >>, C<(?=S)>, C<(?<=S)>,
2457 C<(?!S)>, C<(?<!S)>, C<(??{ EXPR })>,
2458 C<(?(condition)yes-pattern|no-pattern)>
2459
2460 =item Creating custom RE engines
2461
2462 =back
2463
2464 =item BUGS
2465
2466 =item SEE ALSO
2467
2468 =back
2469
2470 =head2 perlreref - Perl Regular Expressions Reference
2471
2472 =over 4
2473
2474 =item DESCRIPTION
2475
2476 =over 4
2477
2478 =item OPERATORS
2479
2480 =item SYNTAX
2481
2482 =item ESCAPE SEQUENCES
2483
2484 =item CHARACTER CLASSES
2485
2486 =item ANCHORS
2487
2488 =item QUANTIFIERS
2489
2490 =item EXTENDED CONSTRUCTS
2491
2492 =item VARIABLES
2493
2494 =item FUNCTIONS
2495
2496 =item TERMINOLOGY
2497
2498 =back
2499
2500 =item AUTHOR
2501
2502 =item SEE ALSO
2503
2504 =item THANKS
2505
2506 =back
2507
2508 =head2 perlref - Perl references and nested data structures
2509
2510 =over 4
2511
2512 =item NOTE
2513
2514 =item DESCRIPTION
2515
2516 =over 4
2517
2518 =item Making References
2519
2520 =item Using References
2521
2522 =item Symbolic references
2523
2524 =item Not-so-symbolic references
2525
2526 =item Pseudo-hashes: Using an array as a hash
2527
2528 =item Function Templates
2529
2530 =back
2531
2532 =item WARNING
2533
2534 =item SEE ALSO
2535
2536 =back
2537
2538 =head2 perlform - Perl formats
2539
2540 =over 4
2541
2542 =item DESCRIPTION
2543
2544 =over 4
2545
2546 =item Format Variables
2547
2548 =back
2549
2550 =item NOTES
2551
2552 =over 4
2553
2554 =item Footers
2555
2556 =item Accessing Formatting Internals
2557
2558 =back
2559
2560 =item WARNINGS
2561
2562 =back
2563
2564 =head2 perlobj - Perl objects
2565
2566 =over 4
2567
2568 =item DESCRIPTION
2569
2570 =over 4
2571
2572 =item An Object is Simply a Reference
2573
2574 =item A Class is Simply a Package
2575
2576 =item A Method is Simply a Subroutine
2577
2578 =item Method Invocation
2579
2580 =item Indirect Object Syntax
2581
2582 =item Default UNIVERSAL methods
2583
2584 isa(CLASS), can(METHOD), VERSION( [NEED] )
2585
2586 =item Destructors
2587
2588 =item Summary
2589
2590 =item Two-Phased Garbage Collection
2591
2592 =back
2593
2594 =item SEE ALSO
2595
2596 =back
2597
2598 =head2 perltie - how to hide an object class in a simple variable
2599
2600 =over 4
2601
2602 =item SYNOPSIS
2603
2604 =item DESCRIPTION
2605
2606 =over 4
2607
2608 =item Tying Scalars
2609
2610 TIESCALAR classname, LIST, FETCH this, STORE this, value, UNTIE this,
2611 DESTROY this
2612
2613 =item Tying Arrays
2614
2615 TIEARRAY classname, LIST, FETCH this, index, STORE this, index, value,
2616 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
2617 key, DELETE this, key, CLEAR this, PUSH this, LIST, POP this, SHIFT this,
2618 UNSHIFT this, LIST, SPLICE this, offset, length, LIST, UNTIE this, DESTROY
2619 this
2620
2621 =item Tying Hashes
2622
2623 USER, HOME, CLOBBER, LIST, TIEHASH classname, LIST, FETCH this, key, STORE
2624 this, key, value, DELETE this, key, CLEAR this, EXISTS this, key, FIRSTKEY
2625 this, NEXTKEY this, lastkey, UNTIE this, DESTROY this
2626
2627 =item Tying FileHandles
2628
2629 TIEHANDLE classname, LIST, WRITE this, LIST, PRINT this, LIST, PRINTF this,
2630 LIST, READ this, LIST, READLINE this, GETC this, CLOSE this, UNTIE this,
2631 DESTROY this
2632
2633 =item UNTIE this
2634
2635 =item The C<untie> Gotcha
2636
2637 =back
2638
2639 =item SEE ALSO
2640
2641 =item BUGS
2642
2643 =item AUTHOR
2644
2645 =back
2646
2647 =head2 perldbmfilter - Perl DBM Filters
2648
2649 =over 4
2650
2651 =item SYNOPSIS
2652
2653 =item DESCRIPTION
2654
2655 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
2656 B<filter_fetch_value>
2657
2658 =over 4
2659
2660 =item The Filter
2661
2662 =item An Example -- the NULL termination problem.
2663
2664 =item Another Example -- Key is a C int.
2665
2666 =back
2667
2668 =item SEE ALSO
2669
2670 =item AUTHOR
2671
2672 =back
2673
2674 =head2 perlipc - Perl interprocess communication (signals, fifos, pipes,
2675 safe subprocesses, sockets, and semaphores)
2676
2677 =over 4
2678
2679 =item DESCRIPTION
2680
2681 =item Signals
2682
2683 =over 4
2684
2685 =item Handling the SIGHUP Signal in Daemons
2686
2687 =back
2688
2689 =item Named Pipes
2690
2691 =over 4
2692
2693 =item Deferred Signals (Safe Signals)
2694
2695 Long running opcodes, Interrupting IO, Restartable system calls, Signals as
2696 "faults", Signals triggered by operating system state
2697
2698 =back
2699
2700 =item Using open() for IPC
2701
2702 =over 4
2703
2704 =item Filehandles
2705
2706 =item Background Processes
2707
2708 =item Complete Dissociation of Child from Parent
2709
2710 =item Safe Pipe Opens
2711
2712 =item Bidirectional Communication with Another Process
2713
2714 =item Bidirectional Communication with Yourself
2715
2716 =back
2717
2718 =item Sockets: Client/Server Communication
2719
2720 =over 4
2721
2722 =item Internet Line Terminators
2723
2724 =item Internet TCP Clients and Servers
2725
2726 =item Unix-Domain TCP Clients and Servers
2727
2728 =back
2729
2730 =item TCP Clients with IO::Socket
2731
2732 =over 4
2733
2734 =item A Simple Client
2735
2736 C<Proto>, C<PeerAddr>, C<PeerPort>
2737
2738 =item A Webget Client
2739
2740 =item Interactive Client with IO::Socket
2741
2742 =back
2743
2744 =item TCP Servers with IO::Socket
2745
2746 Proto, LocalPort, Listen, Reuse
2747
2748 =item UDP: Message Passing
2749
2750 =item SysV IPC
2751
2752 =item NOTES
2753
2754 =item BUGS
2755
2756 =item AUTHOR
2757
2758 =item SEE ALSO
2759
2760 =back
2761
2762 =head2 perlfork - Perl's fork() emulation
2763
2764 =over 4
2765
2766 =item SYNOPSIS
2767
2768 =item DESCRIPTION
2769
2770 =over 4
2771
2772 =item Behavior of other Perl features in forked pseudo-processes
2773
2774 $$ or $PROCESS_ID, %ENV, chdir() and all other builtins that accept
2775 filenames, wait() and waitpid(), kill(), exec(), exit(), Open handles to
2776 files, directories and network sockets
2777
2778 =item Resource limits
2779
2780 =item Killing the parent process
2781
2782 =item Lifetime of the parent process and pseudo-processes
2783
2784 =item CAVEATS AND LIMITATIONS
2785
2786 BEGIN blocks, Open filehandles, Forking pipe open() not yet implemented,
2787 Global state maintained by XSUBs, Interpreter embedded in larger
2788 application, Thread-safety of extensions
2789
2790 =back
2791
2792 =item BUGS
2793
2794 =item AUTHOR
2795
2796 =item SEE ALSO
2797
2798 =back
2799
2800 =head2 perlnumber - semantics of numbers and numeric operations in Perl
2801
2802 =over 4
2803
2804 =item SYNOPSIS
2805
2806 =item DESCRIPTION
2807
2808 =item Storing numbers
2809
2810 =item Numeric operators and numeric conversions
2811
2812 =item Flavors of Perl numeric operations
2813
2814 Arithmetic operators, ++, Arithmetic operators during C<use integer>, Other
2815 mathematical operators, Bitwise operators, Bitwise operators during C<use
2816 integer>, Operators which expect an integer, Operators which expect a
2817 string
2818
2819 =item AUTHOR
2820
2821 =item SEE ALSO
2822
2823 =back
2824
2825 =head2 perlthrtut - tutorial on threads in Perl
2826
2827 =over 4
2828
2829 =item DESCRIPTION
2830
2831 =item Status
2832
2833 =item What Is A Thread Anyway?
2834
2835 =item Threaded Program Models
2836
2837 =over 4
2838
2839 =item Boss/Worker
2840
2841 =item Work Crew
2842
2843 =item Pipeline
2844
2845 =back
2846
2847 =item What kind of threads are Perl threads?
2848
2849 =item Thread-Safe Modules
2850
2851 =item Thread Basics
2852
2853 =over 4
2854
2855 =item Basic Thread Support
2856
2857 =item A Note about the Examples
2858
2859 =item Creating Threads
2860
2861 =item Waiting For A Thread To Exit
2862
2863 =item Ignoring A Thread
2864
2865 =back
2866
2867 =item Threads And Data
2868
2869 =over 4
2870
2871 =item Shared And Unshared Data
2872
2873 =item Thread Pitfalls: Races
2874
2875 =back
2876
2877 =item Synchronization and control
2878
2879 =over 4
2880
2881 =item Controlling access: lock()
2882
2883 =item A Thread Pitfall: Deadlocks
2884
2885 =item Queues: Passing Data Around
2886
2887 =item Semaphores: Synchronizing Data Access
2888
2889 =item Basic semaphores
2890
2891 =item Advanced Semaphores
2892
2893 =item cond_wait() and cond_signal()
2894
2895 =item Giving up control
2896
2897 =back
2898
2899 =item General Thread Utility Routines
2900
2901 =over 4
2902
2903 =item What Thread Am I In?
2904
2905 =item Thread IDs
2906
2907 =item Are These Threads The Same?
2908
2909 =item What Threads Are Running?
2910
2911 =back
2912
2913 =item A Complete Example
2914
2915 =item Different implementations of threads
2916
2917 =item Performance considerations
2918
2919 =item Process-scope Changes
2920
2921 =item Thread-Safety of System Libraries
2922
2923 =item Conclusion
2924
2925 =item Bibliography
2926
2927 =over 4
2928
2929 =item Introductory Texts
2930
2931 =item OS-Related References
2932
2933 =item Other References
2934
2935 =back
2936
2937 =item Acknowledgements
2938
2939 =item AUTHOR
2940
2941 =item Copyrights
2942
2943 =back
2944
2945 =head2 perlothrtut - old tutorial on threads in Perl
2946
2947 =over 4
2948
2949 =item DESCRIPTION
2950
2951 =item What Is A Thread Anyway?
2952
2953 =item Threaded Program Models
2954
2955 =over 4
2956
2957 =item Boss/Worker
2958
2959 =item Work Crew
2960
2961 =item Pipeline
2962
2963 =back
2964
2965 =item Native threads
2966
2967 =item What kind of threads are perl threads?
2968
2969 =item Threadsafe Modules
2970
2971 =item Thread Basics
2972
2973 =over 4
2974
2975 =item Basic Thread Support
2976
2977 =item Creating Threads
2978
2979 =item Giving up control
2980
2981 =item Waiting For A Thread To Exit
2982
2983 =item Errors In Threads
2984
2985 =item Ignoring A Thread
2986
2987 =back
2988
2989 =item Threads And Data
2990
2991 =over 4
2992
2993 =item Shared And Unshared Data
2994
2995 =item Thread Pitfall: Races
2996
2997 =item Controlling access: lock()
2998
2999 =item Thread Pitfall: Deadlocks
3000
3001 =item Queues: Passing Data Around
3002
3003 =back
3004
3005 =item Threads And Code
3006
3007 =over 4
3008
3009 =item Semaphores: Synchronizing Data Access
3010
3011 Basic semaphores, Advanced Semaphores
3012
3013 =item Attributes: Restricting Access To Subroutines
3014
3015 =item Subroutine Locks
3016
3017 =item Methods
3018
3019 =item Locking A Subroutine
3020
3021 =back
3022
3023 =item General Thread Utility Routines
3024
3025 =over 4
3026
3027 =item What Thread Am I In?
3028
3029 =item Thread IDs
3030
3031 =item Are These Threads The Same?
3032
3033 =item What Threads Are Running?
3034
3035 =back
3036
3037 =item A Complete Example
3038
3039 =item Conclusion
3040
3041 =item Bibliography
3042
3043 =over 4
3044
3045 =item Introductory Texts
3046
3047 =item OS-Related References
3048
3049 =item Other References
3050
3051 =back
3052
3053 =item Acknowledgements
3054
3055 =item AUTHOR
3056
3057 =item Copyrights
3058
3059 =back
3060
3061 =head2 perlport - Writing portable Perl
3062
3063 =over 4
3064
3065 =item DESCRIPTION
3066
3067 Not all Perl programs have to be portable, Nearly all of Perl already I<is>
3068 portable
3069
3070 =item ISSUES
3071
3072 =over 4
3073
3074 =item Newlines
3075
3076 =item Numbers endianness and Width
3077
3078 =item Files and Filesystems
3079
3080 =item System Interaction
3081
3082 =item Command names versus file pathnames
3083
3084 =item Networking
3085
3086 =item Interprocess Communication (IPC)
3087
3088 =item External Subroutines (XS)
3089
3090 =item Standard Modules
3091
3092 =item Time and Date
3093
3094 =item Character sets and character encoding
3095
3096 =item Internationalisation
3097
3098 =item System Resources
3099
3100 =item Security
3101
3102 =item Style
3103
3104 =back
3105
3106 =item CPAN Testers
3107
3108 Mailing list: cpan-testers@perl.org, Testing results:
3109 http://testers.cpan.org/
3110
3111 =item PLATFORMS
3112
3113 =over 4
3114
3115 =item Unix
3116
3117 =item DOS and Derivatives
3118
3119 =item S<Mac OS>
3120
3121 =item VMS
3122
3123 =item VOS
3124
3125 =item EBCDIC Platforms
3126
3127 =item Acorn RISC OS
3128
3129 =item Other perls
3130
3131 =back
3132
3133 =item FUNCTION IMPLEMENTATIONS
3134
3135 =over 4
3136
3137 =item Alphabetical Listing of Perl Functions
3138
3139 -I<X> FILEHANDLE, -I<X> EXPR, -I<X>, alarm SECONDS, alarm, binmode
3140 FILEHANDLE, chmod LIST, chown LIST, chroot FILENAME, chroot, crypt
3141 PLAINTEXT,SALT, dbmclose HASH, dbmopen HASH,DBNAME,MODE, dump LABEL, exec
3142 LIST, exit EXPR, exit, fcntl FILEHANDLE,FUNCTION,SCALAR, flock
3143 FILEHANDLE,OPERATION, fork, getlogin, getpgrp PID, getppid, getpriority
3144 WHICH,WHO, getpwnam NAME, getgrnam NAME, getnetbyname NAME, getpwuid UID,
3145 getgrgid GID, getnetbyaddr ADDR,ADDRTYPE, getprotobynumber NUMBER,
3146 getservbyport PORT,PROTO, getpwent, getgrent, gethostbyname, gethostent,
3147 getnetent, getprotoent, getservent, sethostent STAYOPEN, setnetent
3148 STAYOPEN, setprotoent STAYOPEN, setservent STAYOPEN, endpwent, endgrent,
3149 endhostent, endnetent, endprotoent, endservent, getsockopt
3150 SOCKET,LEVEL,OPTNAME, glob EXPR, glob, ioctl FILEHANDLE,FUNCTION,SCALAR,
3151 kill SIGNAL, LIST, link OLDFILE,NEWFILE, lstat FILEHANDLE, lstat EXPR,
3152 lstat, msgctl ID,CMD,ARG, msgget KEY,FLAGS, msgsnd ID,MSG,FLAGS, msgrcv
3153 ID,VAR,SIZE,TYPE,FLAGS, open FILEHANDLE,EXPR, open FILEHANDLE, pipe
3154 READHANDLE,WRITEHANDLE, readlink EXPR, readlink, select
3155 RBITS,WBITS,EBITS,TIMEOUT, semctl ID,SEMNUM,CMD,ARG, semget
3156 KEY,NSEMS,FLAGS, semop KEY,OPSTRING, setgrent, setpgrp PID,PGRP,
3157 setpriority WHICH,WHO,PRIORITY, setpwent, setsockopt
3158 SOCKET,LEVEL,OPTNAME,OPTVAL, shmctl ID,CMD,ARG, shmget KEY,SIZE,FLAGS,
3159 shmread ID,VAR,POS,SIZE, shmwrite ID,STRING,POS,SIZE, sockatmark SOCKET,
3160 socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL, stat FILEHANDLE, stat
3161 EXPR, stat, symlink OLDFILE,NEWFILE, syscall LIST, sysopen
3162 FILEHANDLE,FILENAME,MODE,PERMS, system LIST, times, truncate
3163 FILEHANDLE,LENGTH, truncate EXPR,LENGTH, umask EXPR, umask, utime LIST,
3164 wait, waitpid PID,FLAGS
3165
3166 =back
3167
3168 =item CHANGES
3169
3170 v1.49, 12 August 2002, v1.48, 02 February 2001, v1.47, 22 March 2000,
3171 v1.46, 12 February 2000, v1.45, 20 December 1999, v1.44, 19 July 1999,
3172 v1.43, 24 May 1999, v1.42, 22 May 1999, v1.41, 19 May 1999, v1.40, 11 April
3173 1999, v1.39, 11 February 1999, v1.38, 31 December 1998, v1.37, 19 December
3174 1998, v1.36, 9 September 1998, v1.35, 13 August 1998, v1.33, 06 August
3175 1998, v1.32, 05 August 1998, v1.30, 03 August 1998, v1.23, 10 July 1998
3176
3177 =item Supported Platforms
3178
3179 =item SEE ALSO
3180
3181 =item AUTHORS / CONTRIBUTORS
3182
3183 =back
3184
3185 =head2 perllocale - Perl locale handling (internationalization and
3186 localization)
3187
3188 =over 4
3189
3190 =item DESCRIPTION
3191
3192 =item PREPARING TO USE LOCALES
3193
3194 =item USING LOCALES
3195
3196 =over 4
3197
3198 =item The use locale pragma
3199
3200 =item The setlocale function
3201
3202 =item Finding locales
3203
3204 =item LOCALE PROBLEMS
3205
3206 =item Temporarily fixing locale problems
3207
3208 =item Permanently fixing locale problems
3209
3210 =item Permanently fixing your system's locale configuration
3211
3212 =item Fixing system locale configuration
3213
3214 =item The localeconv function
3215
3216 =item I18N::Langinfo
3217
3218 =back
3219
3220 =item LOCALE CATEGORIES
3221
3222 =over 4
3223
3224 =item Category LC_COLLATE: Collation
3225
3226 =item Category LC_CTYPE: Character Types
3227
3228 =item Category LC_NUMERIC: Numeric Formatting
3229
3230 =item Category LC_MONETARY: Formatting of monetary amounts
3231
3232 =item LC_TIME
3233
3234 =item Other categories
3235
3236 =back
3237
3238 =item SECURITY
3239
3240 =item ENVIRONMENT
3241
3242 PERL_BADLANG, LC_ALL, LANGUAGE, LC_CTYPE, LC_COLLATE, LC_MONETARY,
3243 LC_NUMERIC, LC_TIME, LANG
3244
3245 =item NOTES
3246
3247 =over 4
3248
3249 =item Backward compatibility
3250
3251 =item I18N:Collate obsolete
3252
3253 =item Sort speed and memory use impacts
3254
3255 =item write() and LC_NUMERIC
3256
3257 =item Freely available locale definitions
3258
3259 =item I18n and l10n
3260
3261 =item An imperfect standard
3262
3263 =back
3264
3265 =item Unicode and UTF-8
3266
3267 =item BUGS
3268
3269 =over 4
3270
3271 =item Broken systems
3272
3273 =back
3274
3275 =item SEE ALSO
3276
3277 =item HISTORY
3278
3279 =back
3280
3281 =head2 perluniintro - Perl Unicode introduction
3282
3283 =over 4
3284
3285 =item DESCRIPTION
3286
3287 =over 4
3288
3289 =item Unicode
3290
3291 =item Perl's Unicode Support
3292
3293 =item Perl's Unicode Model
3294
3295 =item Unicode and EBCDIC
3296
3297 =item Creating Unicode
3298
3299 =item Handling Unicode
3300
3301 =item Legacy Encodings
3302
3303 =item Unicode I/O
3304
3305 =item Displaying Unicode As Text
3306
3307 =item Special Cases
3308
3309 =item Advanced Topics
3310
3311 =item Miscellaneous
3312
3313 =item Questions With Answers
3314
3315 =item Hexadecimal Notation
3316
3317 =item Further Resources
3318
3319 =back
3320
3321 =item UNICODE IN OLDER PERLS
3322
3323 =item SEE ALSO
3324
3325 =item ACKNOWLEDGMENTS
3326
3327 =item AUTHOR, COPYRIGHT, AND LICENSE
3328
3329 =back
3330
3331 =head2 perlunicode - Unicode support in Perl
3332
3333 =over 4
3334
3335 =item DESCRIPTION
3336
3337 =over 4
3338
3339 =item Important Caveats
3340
3341 Input and Output Layers, Regular Expressions, C<use utf8> still needed to
3342 enable UTF-8/UTF-EBCDIC in scripts
3343
3344 =item Byte and Character Semantics
3345
3346 =item Effects of Character Semantics
3347
3348 =item Scripts
3349
3350 =item Blocks
3351
3352 =item User-Defined Character Properties
3353
3354 =item Character Encodings for Input and Output
3355
3356 =item Unicode Regular Expression Support Level
3357
3358 =item Unicode Encodings
3359
3360 =item Security Implications of Unicode
3361
3362 =item Unicode in Perl on EBCDIC
3363
3364 =item Locales
3365
3366 =item When Unicode Does Not Happen
3367
3368 =item Forcing Unicode in Perl (Or Unforcing Unicode in Perl)
3369
3370 =item Using Unicode in XS
3371
3372 =back
3373
3374 =item BUGS
3375
3376 =over 4
3377
3378 =item Interaction with Locales
3379
3380 =item Interaction with Extensions
3381
3382 =item Speed
3383
3384 =item Porting code from perl-5.6.X
3385
3386 =back
3387
3388 =item SEE ALSO
3389
3390 =back
3391
3392 =head2 perlebcdic - Considerations for running Perl on EBCDIC platforms
3393
3394 =over 4
3395
3396 =item DESCRIPTION
3397
3398 =item COMMON CHARACTER CODE SETS
3399
3400 =over 4
3401
3402 =item ASCII
3403
3404 =item ISO 8859
3405
3406 =item Latin 1 (ISO 8859-1)
3407
3408 =item EBCDIC
3409
3410 =item 13 variant characters
3411
3412 =item 0037
3413
3414 =item 1047
3415
3416 =item POSIX-BC
3417
3418 =item Unicode code points versus EBCDIC code points
3419
3420 =item Remaining Perl Unicode problems in EBCDIC
3421
3422 =item Unicode and UTF
3423
3424 =item Using Encode
3425
3426 =back
3427
3428 =item SINGLE OCTET TABLES
3429
3430 recipe 0, recipe 1, recipe 2, recipe 3, recipe 4, recipe 5, recipe 6
3431
3432 =item IDENTIFYING CHARACTER CODE SETS
3433
3434 =item CONVERSIONS
3435
3436 =over 4
3437
3438 =item tr///
3439
3440 =item iconv
3441
3442 =item C RTL
3443
3444 =back
3445
3446 =item OPERATOR DIFFERENCES
3447
3448 =item FUNCTION DIFFERENCES
3449
3450 chr(), ord(), pack(), print(), printf(), sort(), sprintf(), unpack()
3451
3452 =item REGULAR EXPRESSION DIFFERENCES
3453
3454 =item SOCKETS
3455
3456 =item SORTING
3457
3458 =over 4
3459
3460 =item Ignore ASCII vs. EBCDIC sort differences.
3461
3462 =item MONO CASE then sort data.
3463
3464 =item Convert, sort data, then re convert.
3465
3466 =item Perform sorting on one type of machine only.
3467
3468 =back
3469
3470 =item TRANSFORMATION FORMATS
3471
3472 =over 4
3473
3474 =item URL decoding and encoding
3475
3476 =item uu encoding and decoding
3477
3478 =item Quoted-Printable encoding and decoding
3479
3480 =item Caesarian ciphers
3481
3482 =back
3483
3484 =item Hashing order and checksums
3485
3486 =item I18N AND L10N
3487
3488 =item MULTI OCTET CHARACTER SETS
3489
3490 =item OS ISSUES
3491
3492 =over 4
3493
3494 =item OS/400
3495
3496 PASE, IFS access
3497
3498 =item OS/390, z/OS
3499
3500 chcp, dataset access, OS/390, z/OS iconv, locales
3501
3502 =item VM/ESA?
3503
3504 =item POSIX-BC?
3505
3506 =back
3507
3508 =item BUGS
3509
3510 =item SEE ALSO
3511
3512 =item REFERENCES
3513
3514 =item HISTORY
3515
3516 =item AUTHOR
3517
3518 =back
3519
3520 =head2 perlsec - Perl security
3521
3522 =over 4
3523
3524 =item DESCRIPTION
3525
3526 =over 4
3527
3528 =item Laundering and Detecting Tainted Data
3529
3530 =item Switches On the "#!" Line
3531
3532 =item Cleaning Up Your Path
3533
3534 =item Security Bugs
3535
3536 =item Protecting Your Programs
3537
3538 =item Unicode
3539
3540 =item Algorithmic Complexity Attacks
3541
3542 =back
3543
3544 =item SEE ALSO
3545
3546 =back
3547
3548 =head2 perlmod - Perl modules (packages and symbol tables)
3549
3550 =over 4
3551
3552 =item DESCRIPTION
3553
3554 =over 4
3555
3556 =item Packages
3557
3558 =item Symbol Tables
3559
3560 =item Package Constructors and Destructors
3561
3562 =item Perl Classes
3563
3564 =item Perl Modules
3565
3566 =item Making your module threadsafe
3567
3568 =back
3569
3570 =item SEE ALSO
3571
3572 =back
3573
3574 =head2 perlmodlib - constructing new Perl modules and finding existing ones
3575
3576 =over 4
3577
3578 =item THE PERL MODULE LIBRARY
3579
3580 =over 4
3581
3582 =item Pragmatic Modules
3583
3584 assertions, assertions::activate, attributes, attrs, autouse, base, bigint,
3585 bignum, bigrat, blib, bytes, charnames, constant, diagnostics, encoding,
3586 fields, filetest, if, integer, less, lib, locale, open, ops, overload, re,
3587 sigtrap, sort, strict, subs, threads, threads::shared, utf8, vars, version,
3588 vmsish, warnings, warnings::register
3589
3590 =item Standard Modules
3591
3592 AnyDBM_File, Attribute::Handlers, AutoLoader, AutoSplit, B, B::Asmdata,
3593 B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC, B::Concise, B::Debug,
3594 B::Deparse, B::Disassembler, B::Lint, B::Showlex, B::Stackobj, B::Stash,
3595 B::Terse, B::Xref, Benchmark, ByteLoader, CGI, CGI::Apache, CGI::Carp,
3596 CGI::Cookie, CGI::Fast, CGI::Pretty, CGI::Push, CGI::Switch, CGI::Util,
3597 CPAN, CPAN::FirstTime, CPAN::Nox, Carp, Carp::Heavy, Class::ISA,
3598 Class::Struct, Config, Cwd, DB, DB_File, Data::Dumper, Devel::DProf,
3599 Devel::PPPort, Devel::Peek, Devel::SelfStubber, Digest, Digest::MD5,
3600 DirHandle, Dumpvalue, DynaLoader, Encode, Encode::Alias, Encode::Byte,
3601 Encode::CJKConstants, Encode::CN, Encode::CN::HZ, Encode::Config,
3602 Encode::EBCDIC, Encode::Encoder, Encode::Encoding, Encode::Guess,
3603 Encode::JP, Encode::JP::H2Z, Encode::JP::JIS7, Encode::KR,
3604 Encode::KR::2022_KR, Encode::MIME::Header, Encode::PerlIO,
3605 Encode::Supported, Encode::Symbol, Encode::TW, Encode::Unicode,
3606 Encode::Unicode::UTF7, English, Env, Errno, Exporter, Exporter::Heavy,
3607 ExtUtils::Command, ExtUtils::Command::MM, ExtUtils::Constant,
3608 ExtUtils::Embed, ExtUtils::Install, ExtUtils::Installed, ExtUtils::Liblist,
3609 ExtUtils::MM, ExtUtils::MM_Any, ExtUtils::MM_BeOS, ExtUtils::MM_Cygwin,
3610 ExtUtils::MM_DOS, ExtUtils::MM_MacOS, ExtUtils::MM_NW5, ExtUtils::MM_OS2,
3611 ExtUtils::MM_UWIN, ExtUtils::MM_Unix, ExtUtils::MM_VMS, ExtUtils::MM_Win32,
3612 ExtUtils::MM_Win95, ExtUtils::MY, ExtUtils::MakeMaker,
3613 ExtUtils::MakeMaker::FAQ, ExtUtils::MakeMaker::Tutorial,
3614 ExtUtils::MakeMaker::bytes, ExtUtils::MakeMaker::vmsish,
3615 ExtUtils::Manifest, ExtUtils::Mkbootstrap, ExtUtils::Mksymlists,
3616 ExtUtils::Packlist, ExtUtils::testlib, Fatal, Fcntl, File::Basename,
3617 File::CheckTree, File::Compare, File::Copy, File::DosGlob, File::Find,
3618 File::Glob, File::Path, File::Spec, File::Spec::Cygwin, File::Spec::Epoc,
3619 File::Spec::Functions, File::Spec::Mac, File::Spec::OS2, File::Spec::Unix,
3620 File::Spec::VMS, File::Spec::Win32, File::Temp, File::stat, FileCache,
3621 FileHandle, Filter::Simple, Filter::Util::Call, FindBin, GDBM_File,
3622 Getopt::Long, Getopt::Std, Hash::Util, I18N::Collate, I18N::LangTags,
3623 I18N::LangTags::List, I18N::Langinfo, IO, IO::Dir, IO::File, IO::Handle,
3624 IO::Pipe, IO::Poll, IO::Seekable, IO::Select, IO::Socket, IO::Socket::INET,
3625 IO::Socket::UNIX, IPC::Open2, IPC::Open3, IPC::SysV, IPC::SysV::Msg,
3626 IPC::SysV::Semaphore, List::Util, Locale::Constants, Locale::Country,
3627 Locale::Currency, Locale::Language, Locale::Maketext,
3628 Locale::Maketext::TPJ13, Locale::Script, MIME::Base64,
3629 MIME::Base64::QuotedPrint, Math::BigFloat, Math::BigInt,
3630 Math::BigInt::Calc, Math::BigInt::Scalar, Math::BigRat, Math::Complex,
3631 Math::Trig, Memoize, Memoize::AnyDBM_File, Memoize::Expire,
3632 Memoize::ExpireFile, Memoize::ExpireTest, Memoize::NDBM_File,
3633 Memoize::SDBM_File, Memoize::Storable, NDBM_File, NEXT, Net::Cmd,
3634 Net::Config, Net::Domain, Net::FTP, Net::NNTP, Net::Netrc, Net::POP3,
3635 Net::Ping, Net::SMTP, Net::Time, Net::hostent, Net::libnetFAQ, Net::netent,
3636 Net::protoent, Net::servent, O, ODBM_File, Opcode, POSIX, PerlIO,
3637 PerlIO::encoding, PerlIO::scalar, PerlIO::via, PerlIO::via::QuotedPrint,
3638 Pod::Checker, Pod::Find, Pod::Functions, Pod::Html, Pod::InputObjects,
3639 Pod::LaTeX, Pod::Man, Pod::ParseLink, Pod::ParseUtils, Pod::Parser,
3640 Pod::Perldoc::ToChecker, Pod::Perldoc::ToMan, Pod::Perldoc::ToNroff,
3641 Pod::Perldoc::ToPod, Pod::Perldoc::ToRtf, Pod::Perldoc::ToText,
3642 Pod::Perldoc::ToTk, Pod::Perldoc::ToXml, Pod::PlainText, Pod::Plainer,
3643 Pod::Select, Pod::Text, Pod::Text::Color, Pod::Text::Overstrike,
3644 Pod::Text::Termcap, Pod::Usage, SDBM_File, Safe, Scalar::Util,
3645 Search::Dict, SelectSaver, SelfLoader, Shell, Socket, Storable, Switch,
3646 Symbol, Sys::Hostname, Sys::Syslog, Term::ANSIColor, Term::Cap,
3647 Term::Complete, Term::ReadLine, Test, Test::Builder, Test::Harness,
3648 Test::Harness::Assert, Test::Harness::Iterator, Test::Harness::Straps,
3649 Test::More, Test::Simple, Test::Tutorial, Text::Abbrev, Text::Balanced,
3650 Text::ParseWords, Text::Soundex, Text::Tabs, Text::Wrap, Thread,
3651 Thread::Queue, Thread::Semaphore, Thread::Signal, Thread::Specific,
3652 Tie::Array, Tie::File, Tie::Handle, Tie::Hash, Tie::Memoize, Tie::RefHash,
3653 Tie::Scalar, Tie::SubstrHash, Time::HiRes, Time::Local, Time::gmtime,
3654 Time::localtime, Time::tm, UNIVERSAL, Unicode::Collate, Unicode::Normalize,
3655 Unicode::UCD, User::grent, User::pwent, Win32, XS::APItest, XS::Typemap,
3656 XSLoader
3657
3658 =item Extension Modules
3659
3660 =back
3661
3662 =item CPAN
3663
3664 =over 4
3665
3666 =item Africa
3667
3668 South Africa
3669
3670 =item Asia
3671
3672 China, Indonesia, Israel, Japan, Malaysia, Russian Federation, Saudi
3673 Arabia, Singapore, South Korea, Taiwan, Thailand
3674
3675 =item Central America
3676
3677 Costa Rica
3678
3679 =item Europe
3680
3681 Austria, Belgium, Bosnia and Herzegovina, Bulgaria, Croatia, Czech
3682 Republic, Denmark, Estonia, Finland, France, Germany, Greece, Hungary,
3683 Iceland, Ireland, Italy, Latvia, Lithuania, Netherlands, Norway, Poland,
3684 Portugal, Romania, Russia, Slovakia, Slovenia, Spain, Sweden, Switzerland,
3685 Turkey, Ukraine, United Kingdom
3686
3687 =item North America
3688
3689 Canada, Alberta, Manitoba, Nova Scotia, Ontario, Mexico, United States,
3690 Alabama, California, Colorado, Delaware, District of Columbia, Florida,
3691 Indiana, Kentucky, Massachusetts, Michigan, Nevada, New Jersey, New York,
3692 North Carolina, Oklahoma, Oregon, Pennsylvania, Tennessee, Texas, Utah,
3693 Virginia, Washington, Wisconsin
3694
3695 =item Oceania
3696
3697 Australia, New Zealand, United States
3698
3699 =item South America
3700
3701 Argentina, Brazil, Chile
3702
3703 =item RSYNC Mirrors
3704
3705 =back
3706
3707 =item Modules: Creation, Use, and Abuse
3708
3709 =over 4
3710
3711 =item Guidelines for Module Creation
3712
3713 =item Guidelines for Converting Perl 4 Library Scripts into Modules
3714
3715 =item Guidelines for Reusing Application Code
3716
3717 =back
3718
3719 =item NOTE
3720
3721 =back
3722
3723 =head2 perlmodstyle - Perl module style guide
3724
3725 =over 4
3726
3727 =item INTRODUCTION
3728
3729 =item QUICK CHECKLIST
3730
3731 =over 4
3732
3733 =item Before you start
3734
3735 =item The API
3736
3737 =item Stability
3738
3739 =item Documentation
3740
3741 =item Release considerations
3742
3743 =back
3744
3745 =item BEFORE YOU START WRITING A MODULE
3746
3747 =over 4
3748
3749 =item Has it been done before?
3750
3751 =item Do one thing and do it well
3752
3753 =item What's in a name?
3754
3755 =back
3756
3757 =item DESIGNING AND WRITING YOUR MODULE
3758
3759 =over 4
3760
3761 =item To OO or not to OO?
3762
3763 =item Designing your API
3764
3765 Write simple routines to do simple things, Separate functionality from
3766 output, Provide sensible shortcuts and defaults, Naming conventions,
3767 Parameter passing
3768
3769 =item Strictness and warnings
3770
3771 =item Backwards compatibility
3772
3773 =item Error handling and messages
3774
3775 =back
3776
3777 =item DOCUMENTING YOUR MODULE
3778
3779 =over 4
3780
3781 =item POD
3782
3783 =item README, INSTALL, release notes, changelogs
3784
3785 perl Makefile.PL, make, make test, make install, perl Build.PL, perl Build,
3786 perl Build test, perl Build install
3787
3788 =back
3789
3790 =item RELEASE CONSIDERATIONS
3791
3792 =over 4
3793
3794 =item Version numbering
3795
3796 =item Pre-requisites
3797
3798 =item Testing
3799
3800 =item Packaging
3801
3802 =item Licensing
3803
3804 =back
3805
3806 =item COMMON PITFALLS
3807
3808 =over 4
3809
3810 =item Reinventing the wheel
3811
3812 =item Trying to do too much
3813
3814 =item Inappropriate documentation
3815
3816 =back
3817
3818 =item SEE ALSO
3819
3820 L<perlstyle>, L<perlnewmod>, L<perlpod>, L<podchecker>, Packaging Tools,
3821 Testing tools, http://pause.perl.org/, Any good book on software
3822 engineering
3823
3824 =item AUTHOR
3825
3826 =back
3827
3828 =head2 perlmodinstall - Installing CPAN Modules
3829
3830 =over 4
3831
3832 =item DESCRIPTION
3833
3834 =over 4
3835
3836 =item PREAMBLE
3837
3838 B<DECOMPRESS> the file, B<UNPACK> the file into a directory, B<BUILD> the
3839 module (sometimes unnecessary), B<INSTALL> the module
3840
3841 =back
3842
3843 =item PORTABILITY
3844
3845 =item HEY
3846
3847 =item AUTHOR
3848
3849 =item COPYRIGHT
3850
3851 =back
3852
3853 =head2 perlnewmod - preparing a new module for distribution
3854
3855 =over 4
3856
3857 =item DESCRIPTION
3858
3859 =over 4
3860
3861 =item Warning
3862
3863 =item What should I make into a module?
3864
3865 =item Step-by-step: Preparing the ground
3866
3867 Look around, Check it's new, Discuss the need, Choose a name, Check again
3868
3869 =item Step-by-step: Making the module
3870
3871 Start with F<h2xs>, Use L<strict|strict> and L<warnings|warnings>, Use
3872 L<Carp|Carp>, Use L<Exporter|Exporter> - wisely!, Use L<plain old
3873 documentation|perlpod>, Write tests, Write the README
3874
3875 =item Step-by-step: Distributing your module
3876
3877 Get a CPAN user ID, C<perl Makefile.PL; make test; make dist>, Upload the
3878 tarball, Announce to the modules list, Announce to clpa, Fix bugs!
3879
3880 =back
3881
3882 =item AUTHOR
3883
3884 =item SEE ALSO
3885
3886 =back
3887
3888 =head2 perlutil - utilities packaged with the Perl distribution
3889
3890 =over 4
3891
3892 =item DESCRIPTION
3893
3894 =over 4
3895
3896 =item DOCUMENTATION
3897
3898 L<perldoc|perldoc>, L<pod2man|pod2man> and L<pod2text|pod2text>,
3899 L<pod2html|pod2html> and L<pod2latex|pod2latex>, L<pod2usage|pod2usage>,
3900 L<podselect|podselect>, L<podchecker|podchecker>, L<splain|splain>,
3901 L<roffitall|roffitall>
3902
3903 =item CONVERTORS
3904
3905 L<a2p|a2p>, L<s2p|s2p>, L<find2perl|find2perl>
3906
3907 =item Administration
3908
3909 L<libnetcfg|libnetcfg>
3910
3911 =item Development
3912
3913 L<perlbug|perlbug>, L<h2ph|h2ph>, L<c2ph|c2ph> and L<pstruct|pstruct>,
3914 L<h2xs|h2xs>, L<dprofpp|dprofpp>, L<perlcc|perlcc>
3915
3916 =item SEE ALSO
3917
3918 =back
3919
3920 =back
3921
3922 =head2 perlcompile - Introduction to the Perl Compiler-Translator 
3923
3924 =over 4
3925
3926 =item DESCRIPTION
3927
3928 =over 4
3929
3930 =item Layout
3931
3932 B::Bytecode, B::C, B::CC, B::Lint, B::Deparse, B::Xref
3933
3934 =back
3935
3936 =item Using The Back Ends
3937
3938 =over 4
3939
3940 =item The Cross Referencing Back End
3941
3942 i, &, s, r
3943
3944 =item The Decompiling Back End
3945
3946 =item The Lint Back End
3947
3948 =item The Simple C Back End
3949
3950 =item The Bytecode Back End
3951
3952 =item The Optimized C Back End
3953
3954 =back
3955
3956 =item Module List for the Compiler Suite
3957
3958 B, O, B::Asmdata, B::Assembler, B::Bblock, B::Bytecode, B::C, B::CC,
3959 B::Concise, B::Debug, B::Deparse, B::Disassembler, B::Lint, B::Showlex,
3960 B::Stackobj, B::Stash, B::Terse, B::Xref
3961
3962 =item KNOWN PROBLEMS
3963
3964 =item AUTHOR
3965
3966 =back
3967
3968 =head2 perlfilter - Source Filters
3969
3970 =over 4
3971
3972 =item DESCRIPTION
3973
3974 =item CONCEPTS
3975
3976 =item USING FILTERS
3977
3978 =item WRITING A SOURCE FILTER
3979
3980 =item WRITING A SOURCE FILTER IN C
3981
3982 B<Decryption Filters>
3983
3984 =item CREATING A SOURCE FILTER AS A SEPARATE EXECUTABLE
3985
3986 =item WRITING A SOURCE FILTER IN PERL
3987
3988 =item USING CONTEXT: THE DEBUG FILTER
3989
3990 =item CONCLUSION
3991
3992 =item THINGS TO LOOK OUT FOR
3993
3994 Some Filters Clobber the C<DATA> Handle
3995
3996 =item REQUIREMENTS
3997
3998 =item AUTHOR
3999
4000 =item Copyrights
4001
4002 =back
4003
4004 =head2 perlembed - how to embed perl in your C program
4005
4006 =over 4
4007
4008 =item DESCRIPTION
4009
4010 =over 4
4011
4012 =item PREAMBLE
4013
4014 B<Use C from Perl?>, B<Use a Unix program from Perl?>, B<Use Perl from
4015 Perl?>, B<Use C from C?>, B<Use Perl from C?>
4016
4017 =item ROADMAP
4018
4019 =item Compiling your C program
4020
4021 =item Adding a Perl interpreter to your C program
4022
4023 =item Calling a Perl subroutine from your C program
4024
4025 =item Evaluating a Perl statement from your C program
4026
4027 =item Performing Perl pattern matches and substitutions from your C program
4028
4029 =item Fiddling with the Perl stack from your C program
4030
4031 =item Maintaining a persistent interpreter
4032
4033 =item Execution of END blocks
4034
4035 =item Maintaining multiple interpreter instances
4036
4037 =item Using Perl modules, which themselves use C libraries, from your C
4038 program
4039
4040 =back
4041
4042 =item Embedding Perl under Win32
4043
4044 =item Hiding Perl_
4045
4046 =item MORAL
4047
4048 =item AUTHOR
4049
4050 =item COPYRIGHT
4051
4052 =back
4053
4054 =head2 perldebguts - Guts of Perl debugging 
4055
4056 =over 4
4057
4058 =item DESCRIPTION
4059
4060 =item Debugger Internals
4061
4062 =over 4
4063
4064 =item Writing Your Own Debugger
4065
4066 =back
4067
4068 =item Frame Listing Output Examples
4069
4070 =item Debugging regular expressions
4071
4072 =over 4
4073
4074 =item Compile-time output
4075
4076 C<anchored> I<STRING> C<at> I<POS>, C<floating> I<STRING> C<at>
4077 I<POS1..POS2>, C<matching floating/anchored>, C<minlen>, C<stclass>
4078 I<TYPE>, C<noscan>, C<isall>, C<GPOS>, C<plus>, C<implicit>, C<with eval>,
4079 C<anchored(TYPE)>
4080
4081 =item Types of nodes
4082
4083 =item Run-time output
4084
4085 =back
4086
4087 =item Debugging Perl memory usage
4088
4089 =over 4
4090
4091 =item Using C<$ENV{PERL_DEBUG_MSTATS}>
4092
4093 C<buckets SMALLEST(APPROX)..GREATEST(APPROX)>, Free/Used, C<Total sbrk():
4094 SBRKed/SBRKs:CONTINUOUS>, C<pad: 0>, C<heads: 2192>, C<chain: 0>, C<tail:
4095 6144>
4096
4097 =item Example of using B<-DL> switch
4098
4099 C<717>, C<002>, C<054>, C<602>, C<702>, C<704>
4100
4101 =item B<-DL> details
4102
4103 C<!!!>, C<!!>, C<!>
4104
4105 =item Limitations of B<-DL> statistics
4106
4107 =back
4108
4109 =item SEE ALSO
4110
4111 =back
4112
4113 =head2 perlxstut, perlXStut - Tutorial for writing XSUBs
4114
4115 =over 4
4116
4117 =item DESCRIPTION
4118
4119 =item SPECIAL NOTES
4120
4121 =over 4
4122
4123 =item make
4124
4125 =item Version caveat
4126
4127 =item Dynamic Loading versus Static Loading
4128
4129 =back
4130
4131 =item TUTORIAL
4132
4133 =over 4
4134
4135 =item EXAMPLE 1
4136
4137 =item EXAMPLE 2
4138
4139 =item What has gone on?
4140
4141 =item Writing good test scripts
4142
4143 =item EXAMPLE 3
4144
4145 =item What's new here?
4146
4147 =item Input and Output Parameters
4148
4149 =item The XSUBPP Program
4150
4151 =item The TYPEMAP file
4152
4153 =item Warning about Output Arguments
4154
4155 =item EXAMPLE 4
4156
4157 =item What has happened here?
4158
4159 =item Anatomy of .xs file
4160
4161 =item Getting the fat out of XSUBs
4162
4163 =item More about XSUB arguments
4164
4165 =item The Argument Stack
4166
4167 =item Extending your Extension
4168
4169 =item Documenting your Extension
4170
4171 =item Installing your Extension
4172
4173 =item EXAMPLE 5
4174
4175 =item New Things in this Example
4176
4177 =item EXAMPLE 6
4178
4179 =item New Things in this Example
4180
4181 =item EXAMPLE 7 (Coming Soon)
4182
4183 =item EXAMPLE 8 (Coming Soon)
4184
4185 =item EXAMPLE 9 Passing open files to XSes
4186
4187 =item Troubleshooting these Examples
4188
4189 =back
4190
4191 =item See also
4192
4193 =item Author
4194
4195 =over 4
4196
4197 =item Last Changed
4198
4199 =back
4200
4201 =back
4202
4203 =head2 perlxs - XS language reference manual
4204
4205 =over 4
4206
4207 =item DESCRIPTION
4208
4209 =over 4
4210
4211 =item Introduction
4212
4213 =item On The Road
4214
4215 =item The Anatomy of an XSUB
4216
4217 =item The Argument Stack
4218
4219 =item The RETVAL Variable
4220
4221 =item The MODULE Keyword
4222
4223 =item The PACKAGE Keyword
4224
4225 =item The PREFIX Keyword
4226
4227 =item The OUTPUT: Keyword
4228
4229 =item The NO_OUTPUT Keyword
4230
4231 =item The CODE: Keyword
4232
4233 =item The INIT: Keyword
4234
4235 =item The NO_INIT Keyword
4236
4237 =item Initializing Function Parameters
4238
4239 =item Default Parameter Values
4240
4241 =item The PREINIT: Keyword
4242
4243 =item The SCOPE: Keyword
4244
4245 =item The INPUT: Keyword
4246
4247 =item The IN/OUTLIST/IN_OUTLIST/OUT/IN_OUT Keywords
4248
4249 =item The C<length(NAME)> Keyword
4250
4251 =item Variable-length Parameter Lists
4252
4253 =item The C_ARGS: Keyword
4254
4255 =item The PPCODE: Keyword
4256
4257 =item Returning Undef And Empty Lists
4258
4259 =item The REQUIRE: Keyword
4260
4261 =item The CLEANUP: Keyword
4262
4263 =item The POSTCALL: Keyword
4264
4265 =item The BOOT: Keyword
4266
4267 =item The VERSIONCHECK: Keyword
4268
4269 =item The PROTOTYPES: Keyword
4270
4271 =item The PROTOTYPE: Keyword
4272
4273 =item The ALIAS: Keyword
4274
4275 =item The OVERLOAD: Keyword
4276
4277 =item The FALLBACK: Keyword
4278
4279 =item The INTERFACE: Keyword
4280
4281 =item The INTERFACE_MACRO: Keyword
4282
4283 =item The INCLUDE: Keyword
4284
4285 =item The CASE: Keyword
4286
4287 =item The & Unary Operator
4288
4289 =item Inserting POD, Comments and C Preprocessor Directives
4290
4291 =item Using XS With C++
4292
4293 =item Interface Strategy
4294
4295 =item Perl Objects And C Structures
4296
4297 =item The Typemap
4298
4299 =item Safely Storing Static Data in XS
4300
4301 MY_CXT_KEY, typedef my_cxt_t, START_MY_CXT, MY_CXT_INIT, dMY_CXT, MY_CXT
4302
4303 =back
4304
4305 =item EXAMPLES
4306
4307 =item XS VERSION
4308
4309 =item AUTHOR
4310
4311 =back
4312
4313 =head2 perlclib - Internal replacements for standard C library functions
4314
4315 =over 4
4316
4317 =item DESCRIPTION
4318
4319 =over 4
4320
4321 =item Conventions
4322
4323 C<t>, C<p>, C<n>, C<s>
4324
4325 =item File Operations
4326
4327 =item File Input and Output
4328
4329 =item File Positioning
4330
4331 =item Memory Management and String Handling
4332
4333 =item Character Class Tests
4334
4335 =item F<stdlib.h> functions
4336
4337 =item Miscellaneous functions
4338
4339 =back
4340
4341 =item SEE ALSO
4342
4343 =back
4344
4345 =head2 perlguts - Introduction to the Perl API
4346
4347 =over 4
4348
4349 =item DESCRIPTION
4350
4351 =item Variables
4352
4353 =over 4
4354
4355 =item Datatypes
4356
4357 =item What is an "IV"?
4358
4359 =item Working with SVs
4360
4361 =item Offsets
4362
4363 =item What's Really Stored in an SV?
4364
4365 =item Working with AVs
4366
4367 =item Working with HVs
4368
4369 =item Hash API Extensions
4370
4371 =item AVs, HVs and undefined values
4372
4373 =item References
4374
4375 =item Blessed References and Class Objects
4376
4377 =item Creating New Variables
4378
4379 GV_ADDMULTI, GV_ADDWARN
4380
4381 =item Reference Counts and Mortality
4382
4383 =item Stashes and Globs
4384
4385 =item Double-Typed SVs
4386
4387 =item Magic Variables
4388
4389 =item Assigning Magic
4390
4391 =item Magic Virtual Tables
4392
4393 =item Finding Magic
4394
4395 =item Understanding the Magic of Tied Hashes and Arrays
4396
4397 =item Localizing changes
4398
4399 C<SAVEINT(int i)>, C<SAVEIV(IV i)>, C<SAVEI32(I32 i)>, C<SAVELONG(long i)>,
4400 C<SAVESPTR(s)>, C<SAVEPPTR(p)>, C<SAVEFREESV(SV *sv)>, C<SAVEMORTALIZESV(SV
4401 *sv)>, C<SAVEFREEOP(OP *op)>, C<SAVEFREEPV(p)>, C<SAVECLEARSV(SV *sv)>,
4402 C<SAVEDELETE(HV *hv, char *key, I32 length)>,
4403 C<SAVEDESTRUCTOR(DESTRUCTORFUNC_NOCONTEXT_t f, void *p)>,
4404 C<SAVEDESTRUCTOR_X(DESTRUCTORFUNC_t f, void *p)>, C<SAVESTACK_POS()>, C<SV*
4405 save_scalar(GV *gv)>, C<AV* save_ary(GV *gv)>, C<HV* save_hash(GV *gv)>,
4406 C<void save_item(SV *item)>, C<void save_list(SV **sarg, I32 maxsarg)>,
4407 C<SV* save_svref(SV **sptr)>, C<void save_aptr(AV **aptr)>, C<void
4408 save_hptr(HV **hptr)>
4409
4410 =back
4411
4412 =item Subroutines
4413
4414 =over 4
4415
4416 =item XSUBs and the Argument Stack
4417
4418 =item Calling Perl Routines from within C Programs
4419
4420 =item Memory Allocation
4421
4422 =item PerlIO
4423
4424 =item Putting a C value on Perl stack
4425
4426 =item Scratchpads
4427
4428 =item Scratchpads and recursion
4429
4430 =back
4431
4432 =item Compiled code
4433
4434 =over 4
4435
4436 =item Code tree
4437
4438 =item Examining the tree
4439
4440 =item Compile pass 1: check routines
4441
4442 =item Compile pass 1a: constant folding
4443
4444 =item Compile pass 2: context propagation
4445
4446 =item Compile pass 3: peephole optimization
4447
4448 =item Pluggable runops
4449
4450 =back
4451
4452 =item Examining internal data structures with the C<dump> functions
4453
4454 =item How multiple interpreters and concurrency are supported
4455
4456 =over 4
4457
4458 =item Background and PERL_IMPLICIT_CONTEXT
4459
4460 =item So what happened to dTHR?
4461
4462 =item How do I use all this in extensions?
4463
4464 =item Should I do anything special if I call perl from multiple threads?
4465
4466 =item Future Plans and PERL_IMPLICIT_SYS
4467
4468 =back
4469
4470 =item Internal Functions
4471
4472 A, p, d, s, n, r, f, M, o, j, x
4473
4474 =over 4
4475
4476 =item Formatted Printing of IVs, UVs, and NVs
4477
4478 =item Pointer-To-Integer and Integer-To-Pointer
4479
4480 =item Source Documentation
4481
4482 =back
4483
4484 =item Unicode Support
4485
4486 =over 4
4487
4488 =item What B<is> Unicode, anyway?
4489
4490 =item How can I recognise a UTF-8 string?
4491
4492 =item How does UTF-8 represent Unicode characters?
4493
4494 =item How does Perl store UTF-8 strings?
4495
4496 =item How do I convert a string to UTF-8?
4497
4498 =item Is there anything else I need to know?
4499
4500 =back
4501
4502 =item Custom Operators
4503
4504 =item AUTHORS
4505
4506 =item SEE ALSO
4507
4508 =back
4509
4510 =head2 perlcall - Perl calling conventions from C
4511
4512 =over 4
4513
4514 =item DESCRIPTION
4515
4516 An Error Handler, An Event Driven Program
4517
4518 =item THE CALL_ FUNCTIONS
4519
4520 call_sv, call_pv, call_method, call_argv
4521
4522 =item FLAG VALUES
4523
4524 =over 4
4525
4526 =item  G_VOID
4527
4528 =item  G_SCALAR
4529
4530 =item G_ARRAY
4531
4532 =item G_DISCARD
4533
4534 =item G_NOARGS
4535
4536 =item G_EVAL
4537
4538 =item G_KEEPERR
4539
4540 =item Determining the Context
4541
4542 =back
4543
4544 =item KNOWN PROBLEMS
4545
4546 =item EXAMPLES
4547
4548 =over 4
4549
4550 =item No Parameters, Nothing returned
4551
4552 =item Passing Parameters
4553
4554 =item Returning a Scalar
4555
4556 =item Returning a list of values
4557
4558 =item Returning a list in a scalar context
4559
4560 =item Returning Data from Perl via the parameter list
4561
4562 =item Using G_EVAL
4563
4564 =item Using G_KEEPERR
4565
4566 =item Using call_sv
4567
4568 =item Using call_argv
4569
4570 =item Using call_method
4571
4572 =item Using GIMME_V
4573
4574 =item Using Perl to dispose of temporaries
4575
4576 =item Strategies for storing Callback Context Information
4577
4578 1. Ignore the problem - Allow only 1 callback, 2. Create a sequence of
4579 callbacks - hard wired limit, 3. Use a parameter to map to the Perl
4580 callback
4581
4582 =item Alternate Stack Manipulation
4583
4584 =item Creating and calling an anonymous subroutine in C
4585
4586 =back
4587
4588 =item SEE ALSO
4589
4590 =item AUTHOR
4591
4592 =item DATE
4593
4594 =back
4595
4596 =head2 perlapi - autogenerated documentation for the perl public API
4597
4598 =over 4
4599
4600 =item DESCRIPTION
4601
4602 =item "Gimme" Values
4603
4604 GIMME, GIMME_V, G_ARRAY, G_DISCARD, G_EVAL, G_NOARGS, G_SCALAR, G_VOID
4605
4606 =item Array Manipulation Functions
4607
4608 AvFILL, av_clear, av_delete, av_exists, av_extend, av_fetch, av_fill,
4609 av_len, av_make, av_pop, av_push, av_shift, av_store, av_undef, av_unshift,
4610 get_av, newAV, Nullav, sortsv
4611
4612 =item Callback Functions
4613
4614 call_argv, call_method, call_pv, call_sv, ENTER, eval_pv, eval_sv,
4615 FREETMPS, LEAVE, SAVETMPS
4616
4617 =item Character classes
4618
4619 isALNUM, isALPHA, isDIGIT, isLOWER, isSPACE, isUPPER, toLOWER, toUPPER
4620
4621 =item Cloning an interpreter
4622
4623 perl_clone
4624
4625 =item CV Manipulation Functions
4626
4627 CvSTASH, get_cv, Nullcv
4628
4629 =item Embedding Functions
4630
4631 cv_undef, load_module, nothreadhook, perl_alloc, perl_construct,
4632 perl_destruct, perl_free, perl_parse, perl_run, require_pv
4633
4634 =item Functions in file pp_pack.c
4635
4636 packlist, pack_cat, unpackstring, unpack_str
4637
4638 =item Global Variables
4639
4640 PL_modglobal, PL_na, PL_sv_no, PL_sv_undef, PL_sv_yes
4641
4642 =item GV Functions
4643
4644 GvSV, gv_fetchmeth, gv_fetchmethod, gv_fetchmethod_autoload,
4645 gv_fetchmeth_autoload, gv_stashpv, gv_stashsv
4646
4647 =item Handy Values
4648
4649 HEf_SVKEY, Nullch, Nullsv
4650
4651 =item Hash Manipulation Functions
4652
4653 get_hv, HeHASH, HeKEY, HeKLEN, HePV, HeSVKEY, HeSVKEY_force, HeSVKEY_set,
4654 HeVAL, HvNAME, hv_clear, hv_delete, hv_delete_ent, hv_exists,
4655 hv_exists_ent, hv_fetch, hv_fetch_ent, hv_iterinit, hv_iterkey,
4656 hv_iterkeysv, hv_iternext, hv_iternextsv, hv_iternext_flags, hv_iterval,
4657 hv_magic, hv_store, hv_store_ent, hv_undef, newHV, Nullhv
4658
4659 =item Magical Functions
4660
4661 mg_clear, mg_copy, mg_find, mg_free, mg_get, mg_length, mg_magical, mg_set,
4662 SvGETMAGIC, SvLOCK, SvSETMAGIC, SvSetMagicSV, SvSetMagicSV_nosteal,
4663 SvSetSV, SvSetSV_nosteal, SvSHARE
4664
4665 =item Memory Management
4666
4667 Copy, Move, New, Newc, NEWSV, Newz, Poison, Renew, Renewc, Safefree,
4668 savepv, savepvn, savesharedpv, StructCopy, Zero
4669
4670 =item Miscellaneous Functions
4671
4672 fbm_compile, fbm_instr, form, getcwd_sv, new_version, scan_version, strEQ,
4673 strGE, strGT, strLE, strLT, strNE, strnEQ, strnNE, sv_nolocking,
4674 sv_nosharing, sv_nounlocking, upg_version, vcmp, vnumify, vstringify
4675
4676 =item Numeric functions
4677
4678 grok_bin, grok_hex, grok_number, grok_numeric_radix, grok_oct, scan_bin,
4679 scan_hex, scan_oct
4680
4681 =item Optree Manipulation Functions
4682
4683 cv_const_sv, newCONSTSUB, newXS
4684
4685 =item Pad Data Structures
4686
4687 pad_sv
4688
4689 =item Stack Manipulation Macros
4690
4691 dMARK, dORIGMARK, dSP, EXTEND, MARK, ORIGMARK, POPi, POPl, POPn, POPp,
4692 POPpbytex, POPpx, POPs, PUSHi, PUSHMARK, PUSHn, PUSHp, PUSHs, PUSHu,
4693 PUTBACK, SP, SPAGAIN, XPUSHi, XPUSHn, XPUSHp, XPUSHs, XPUSHu, XSRETURN,
4694 XSRETURN_IV, XSRETURN_NO, XSRETURN_NV, XSRETURN_PV, XSRETURN_UNDEF,
4695 XSRETURN_UV, XSRETURN_YES, XST_mIV, XST_mNO, XST_mNV, XST_mPV, XST_mUNDEF,
4696 XST_mYES
4697
4698 =item SV Flags
4699
4700 svtype, SVt_IV, SVt_NV, SVt_PV, SVt_PVAV, SVt_PVCV, SVt_PVHV, SVt_PVMG
4701
4702 =item SV Manipulation Functions
4703
4704 get_sv, looks_like_number, newRV_inc, newRV_noinc, newSV, newSViv, newSVnv,
4705 newSVpv, newSVpvf, newSVpvn, newSVpvn_share, newSVrv, newSVsv, newSVuv,
4706 SvCUR, SvCUR_set, SvEND, SvGROW, SvIOK, SvIOKp, SvIOK_notUV, SvIOK_off,
4707 SvIOK_on, SvIOK_only, SvIOK_only_UV, SvIOK_UV, SvIsCOW,
4708 SvIsCOW_shared_hash, SvIV, SvIVX, SvIVx, SvLEN, SvNIOK, SvNIOKp,
4709 SvNIOK_off, SvNOK, SvNOKp, SvNOK_off, SvNOK_on, SvNOK_only, SvNV, SvNVx,
4710 SvNVX, SvOK, SvOOK, SvPOK, SvPOKp, SvPOK_off, SvPOK_on, SvPOK_only,
4711 SvPOK_only_UTF8, SvPV, SvPVbyte, SvPVbytex, SvPVbytex_force,
4712 SvPVbyte_force, SvPVbyte_nolen, SvPVutf8, SvPVutf8x, SvPVutf8x_force,
4713 SvPVutf8_force, SvPVutf8_nolen, SvPVX, SvPVx, SvPV_force, SvPV_force_nomg,
4714 SvPV_nolen, SvREFCNT, SvREFCNT_dec, SvREFCNT_inc, SvROK, SvROK_off,
4715 SvROK_on, SvRV, SvSTASH, SvTAINT, SvTAINTED, SvTAINTED_off, SvTAINTED_on,
4716 SvTRUE, SvTYPE, SvUNLOCK, SvUOK, SvUPGRADE, SvUTF8, SvUTF8_off, SvUTF8_on,
4717 SvUV, SvUVX, SvUVx, SvVOK, sv_2bool, sv_2cv, sv_2io, sv_2iv, sv_2mortal,
4718 sv_2nv, sv_2pvbyte, sv_2pvbyte_nolen, sv_2pvutf8, sv_2pvutf8_nolen,
4719 sv_2pv_flags, sv_2pv_nolen, sv_2uv, sv_backoff, sv_bless, sv_catpv,
4720 sv_catpvf, sv_catpvf_mg, sv_catpvn, sv_catpvn_flags, sv_catpvn_mg,
4721 sv_catpv_mg, sv_catsv, sv_catsv_flags, sv_catsv_mg, sv_chop, sv_clear,
4722 sv_cmp, sv_cmp_locale, sv_collxfrm, sv_copypv, sv_dec, sv_derived_from,
4723 sv_eq, sv_force_normal, sv_force_normal_flags, sv_free, sv_gets, sv_grow,
4724 sv_inc, sv_insert, sv_isa, sv_isobject, sv_iv, sv_len, sv_len_utf8,
4725 sv_magic, sv_magicext, sv_mortalcopy, sv_newmortal, sv_newref, sv_nv,
4726 sv_pos_b2u, sv_pos_u2b, sv_pv, sv_pvbyte, sv_pvbyten, sv_pvbyten_force,
4727 sv_pvn, sv_pvn_force, sv_pvn_force_flags, sv_pvutf8, sv_pvutf8n,
4728 sv_pvutf8n_force, sv_reftype, sv_replace, sv_report_used, sv_reset,
4729 sv_rvweaken, sv_setiv, sv_setiv_mg, sv_setnv, sv_setnv_mg, sv_setpv,
4730 sv_setpvf, sv_setpvf_mg, sv_setpviv, sv_setpviv_mg, sv_setpvn,
4731 sv_setpvn_mg, sv_setpv_mg, sv_setref_iv, sv_setref_nv, sv_setref_pv,
4732 sv_setref_pvn, sv_setref_uv, sv_setsv, sv_setsv_flags, sv_setsv_mg,
4733 sv_setuv, sv_setuv_mg, sv_taint, sv_tainted, sv_true, sv_unmagic, sv_unref,
4734 sv_unref_flags, sv_untaint, sv_upgrade, sv_usepvn, sv_usepvn_mg,
4735 sv_utf8_decode, sv_utf8_downgrade, sv_utf8_encode, sv_utf8_upgrade,
4736 sv_utf8_upgrade_flags, sv_uv, sv_vcatpvfn, sv_vsetpvfn
4737
4738 =item Unicode Support
4739
4740 bytes_from_utf8, bytes_to_utf8, ibcmp_utf8, is_utf8_char, is_utf8_string,
4741 is_utf8_string_loc, pv_uni_display, sv_cat_decode, sv_recode_to_utf8,
4742 sv_uni_display, to_utf8_case, to_utf8_fold, to_utf8_lower, to_utf8_title,
4743 to_utf8_upper, utf8n_to_uvchr, utf8n_to_uvuni, utf8_distance, utf8_hop,
4744 utf8_length, utf8_to_bytes, utf8_to_uvchr, utf8_to_uvuni, uvchr_to_utf8,
4745 uvuni_to_utf8_flags
4746
4747 =item Variables created by C<xsubpp> and C<xsubpp> internal functions
4748
4749 ax, CLASS, dAX, dITEMS, dXSARGS, dXSI32, items, ix, newXSproto, RETVAL, ST,
4750 THIS, XS, XSRETURN_EMPTY, XS_VERSION, XS_VERSION_BOOTCHECK
4751
4752 =item Warning and Dieing
4753
4754 croak, warn
4755
4756 =item AUTHORS
4757
4758 =item SEE ALSO
4759
4760 =back
4761
4762 =head2 perlintern - autogenerated documentation of purely B<internal>
4763                  Perl functions
4764
4765 =over 4
4766
4767 =item DESCRIPTION
4768
4769 =item CV reference counts and CvOUTSIDE
4770
4771 CvWEAKOUTSIDE
4772
4773 =item Functions in file pad.h
4774
4775 CX_CURPAD_SAVE, CX_CURPAD_SV, PAD_BASE_SV, PAD_CLONE_VARS,
4776 PAD_COMPNAME_FLAGS, PAD_COMPNAME_GEN, PAD_COMPNAME_OURSTASH,
4777 PAD_COMPNAME_PV, PAD_COMPNAME_TYPE, PAD_DUP, PAD_RESTORE_LOCAL,
4778 PAD_SAVE_LOCAL, PAD_SAVE_SETNULLPAD, PAD_SETSV, PAD_SET_CUR, PAD_SV,
4779 PAD_SVl, SAVECLEARSV, SAVECOMPPAD, SAVEPADSV
4780
4781 =item Functions in file pp_ctl.c
4782
4783 find_runcv
4784
4785 =item Global Variables
4786
4787 PL_DBsingle, PL_DBsub, PL_DBtrace, PL_dowarn, PL_last_in_gv, PL_ofs_sv,
4788 PL_rs
4789
4790 =item GV Functions
4791
4792 is_gv_magical
4793
4794 =item IO Functions
4795
4796 start_glob
4797
4798 =item Pad Data Structures
4799
4800 CvPADLIST, cv_clone, cv_dump, do_dump_pad, intro_my, pad_add_anon,
4801 pad_add_name, pad_alloc, pad_block_start, pad_check_dup, pad_findlex,
4802 pad_findmy, pad_fixup_inner_anons, pad_free, pad_leavemy, pad_new,
4803 pad_push, pad_reset, pad_setsv, pad_swipe, pad_tidy, pad_undef
4804
4805 =item Stack Manipulation Macros
4806
4807 djSP, LVRET
4808
4809 =item SV Manipulation Functions
4810
4811 report_uninit, sv_add_arena, sv_clean_all, sv_clean_objs, sv_free_arenas
4812
4813 =item AUTHORS
4814
4815 =item SEE ALSO
4816
4817 =back
4818
4819 =head2 perliol - C API for Perl's implementation of IO in Layers.
4820
4821 =over 4
4822
4823 =item SYNOPSIS
4824
4825 =item DESCRIPTION
4826
4827 =over 4
4828
4829 =item History and Background
4830
4831 =item Basic Structure
4832
4833 =item Layers vs Disciplines
4834
4835 =item Data Structures
4836
4837 =item Functions and Attributes
4838
4839 =item Per-instance Data
4840
4841 =item Layers in action.
4842
4843 =item Per-instance flag bits
4844
4845 PERLIO_F_EOF, PERLIO_F_CANWRITE,  PERLIO_F_CANREAD, PERLIO_F_ERROR,
4846 PERLIO_F_TRUNCATE, PERLIO_F_APPEND, PERLIO_F_CRLF, PERLIO_F_UTF8,
4847 PERLIO_F_UNBUF, PERLIO_F_WRBUF, PERLIO_F_RDBUF, PERLIO_F_LINEBUF,
4848 PERLIO_F_TEMP, PERLIO_F_OPEN, PERLIO_F_FASTGETS
4849
4850 =item Methods in Detail
4851
4852 fsize, name, size, kind, PERLIO_K_BUFFERED, PERLIO_K_RAW, PERLIO_K_CANCRLF,
4853 PERLIO_K_FASTGETS, PERLIO_K_MULTIARG, Pushed, Popped, Open, Binmode,
4854 Getarg, Fileno, Dup, Read, Write, Seek, Tell, Close, Flush, Fill, Eof,
4855 Error,  Clearerr, Setlinebuf, Get_base, Get_bufsiz, Get_ptr, Get_cnt,
4856 Set_ptrcnt
4857
4858 =item Implementing PerlIO Layers
4859
4860 C implementations, Perl implementations
4861
4862 =item Core Layers
4863
4864 "unix", "perlio", "stdio", "crlf", "mmap", "pending", "raw", "utf8"
4865
4866 =item Extension Layers
4867
4868 ":encoding", ":scalar", ":via"
4869
4870 =back
4871
4872 =item TODO
4873
4874 =back
4875
4876 =head2 perlapio - perl's IO abstraction interface.
4877
4878 =over 4
4879
4880 =item SYNOPSIS
4881
4882 =item DESCRIPTION
4883
4884 1. USE_STDIO, 2. USE_SFIO, 3. USE_PERLIO, B<PerlIO_stdin()>,
4885 B<PerlIO_stdout()>, B<PerlIO_stderr()>, B<PerlIO_open(path, mode)>,
4886 B<PerlIO_fdopen(fd,mode)>, B<PerlIO_reopen(path,mode,f)>,
4887 B<PerlIO_printf(f,fmt,...)>, B<PerlIO_vprintf(f,fmt,a)>,
4888 B<PerlIO_stdoutf(fmt,...)>, B<PerlIO_read(f,buf,count)>,
4889 B<PerlIO_write(f,buf,count)>, B<PerlIO_close(f)>, B<PerlIO_puts(f,s)>,
4890 B<PerlIO_putc(f,c)>, B<PerlIO_ungetc(f,c)>, B<PerlIO_getc(f)>,
4891 B<PerlIO_eof(f)>, B<PerlIO_error(f)>, B<PerlIO_fileno(f)>,
4892 B<PerlIO_clearerr(f)>, B<PerlIO_flush(f)>, B<PerlIO_seek(f,offset,whence)>,
4893 B<PerlIO_tell(f)>, B<PerlIO_getpos(f,p)>, B<PerlIO_setpos(f,p)>,
4894 B<PerlIO_rewind(f)>, B<PerlIO_tmpfile()>, B<PerlIO_setlinebuf(f)>
4895
4896 =over 4
4897
4898 =item Co-existence with stdio
4899
4900 B<PerlIO_importFILE(f,mode)>, B<PerlIO_exportFILE(f,mode)>,
4901 B<PerlIO_releaseFILE(p,f)>, B<PerlIO_findFILE(f)>
4902
4903 =item "Fast gets" Functions
4904
4905 B<PerlIO_fast_gets(f)>, B<PerlIO_has_cntptr(f)>, B<PerlIO_get_cnt(f)>,
4906 B<PerlIO_get_ptr(f)>, B<PerlIO_set_ptrcnt(f,p,c)>, B<PerlIO_canset_cnt(f)>,
4907 B<PerlIO_set_cnt(f,c)>, B<PerlIO_has_base(f)>, B<PerlIO_get_base(f)>,
4908 B<PerlIO_get_bufsiz(f)>
4909
4910 =item Other Functions
4911
4912 PerlIO_apply_layers(f,mode,layers), PerlIO_binmode(f,ptype,imode,layers),
4913 'E<lt>' read, 'E<gt>' write, '+' read/write, PerlIO_debug(fmt,...)
4914
4915 =back
4916
4917 =back
4918
4919 =head2 perlhack - How to hack at the Perl internals
4920
4921 =over 4
4922
4923 =item DESCRIPTION
4924
4925 Does concept match the general goals of Perl?, Where is the
4926 implementation?, Backwards compatibility, Could it be a module instead?, Is
4927 the feature generic enough?, Does it potentially introduce new bugs?, Does
4928 it preclude other desirable features?, Is the implementation robust?, Is
4929 the implementation generic enough to be portable?, Is the implementation
4930 tested?, Is there enough documentation?, Is there another way to do it?,
4931 Does it create too much work?, Patches speak louder than words
4932
4933 =over 4
4934
4935 =item Keeping in sync
4936
4937 rsync'ing the source tree, Using rsync over the LAN, Using pushing over the
4938 NFS, rsync'ing the patches
4939
4940 =item Why rsync the source tree
4941
4942 It's easier to rsync the source tree, It's more reliable
4943
4944 =item Why rsync the patches
4945
4946 It's easier to rsync the patches, It's a good reference, Finding a start
4947 point, Finding how to fix a bug, Finding the source of misbehaviour
4948
4949 =item Perlbug administration
4950
4951 =item Submitting patches
4952
4953 L<perlguts>, L<perlxstut> and L<perlxs>, L<perlapi>,
4954 F<Porting/pumpkin.pod>, The perl5-porters FAQ
4955
4956 =item Finding Your Way Around
4957
4958 Core modules, Tests, Documentation, Configure, Interpreter
4959
4960 =item Elements of the interpreter
4961
4962 Startup, Parsing, Optimization, Running
4963
4964 =item Internal Variable Types
4965
4966 =item Op Trees
4967
4968 =item Stacks
4969
4970 Argument stack, Mark stack, Save stack
4971
4972 =item Millions of Macros
4973
4974 =item The .i Targets
4975
4976 =item Poking at Perl
4977
4978 =item Using a source-level debugger
4979
4980 run [args], break function_name, break source.c:xxx, step, next, continue,
4981 finish, 'enter', print
4982
4983 =item gdb macro support
4984
4985 =item Dumping Perl Data Structures
4986
4987 =item Patching
4988
4989 =item Patching a core module
4990
4991 =item Adding a new function to the core
4992
4993 =item Writing a test
4994
4995 F<t/base/>, F<t/cmd/>, F<t/comp/>, F<t/io/>, F<t/lib/>, F<t/op/>,
4996 F<t/pod/>, F<t/run/>, F<t/uni/>, F<t/win32/>, F<t/x2p>, t/base t/comp,
4997 t/cmd t/run t/io t/op, t/lib ext lib
4998
4999 =item Special Make Test Targets
5000
5001 coretest, test.deparse, minitest, test.valgrind check.valgrind
5002 utest.valgrind ucheck.valgrind, test.third check.third utest.third
5003 ucheck.third, test.torture torturetest, utest ucheck test.utf8 check.utf8,
5004 test_harness
5005
5006 =item Running tests by hand
5007
5008 PERL_CORE=1, PERL_DESTRUCT_LEVEL=2, PERL, PERL_SKIP_TTY_TEST
5009
5010 =back
5011
5012 =item EXTERNAL TOOLS FOR DEBUGGING PERL
5013
5014 =over 4
5015
5016 =item Rational Software's Purify
5017
5018 =item Purify on Unix
5019
5020 -Accflags=-DPURIFY, -Doptimize='-g', -Uusemymalloc, -Dusemultiplicity
5021
5022 =item Purify on NT
5023
5024 DEFINES, USE_MULTI = define, #PERL_MALLOC = define, CFG = Debug
5025
5026 =item valgrind
5027
5028 =item Compaq's/Digital's/HP's Third Degree
5029
5030 =item PERL_DESTRUCT_LEVEL
5031
5032 =item Profiling
5033
5034 =item Gprof Profiling
5035
5036 -a, -b, -e routine, -f routine, -s, -z
5037
5038 =item GCC gcov Profiling
5039
5040 =item Pixie Profiling
5041
5042 -h, -l, -p[rocedures], -h[eavy], -i[nvocations], -l[ines], -testcoverage,
5043 -z[ero]
5044
5045 =item Miscellaneous tricks
5046
5047 =item CONCLUSION
5048
5049 I<The Road goes ever on and on, down from the door where it began.>
5050
5051 =back
5052
5053 =item AUTHOR
5054
5055 =back
5056
5057 =head2 perlbook - Perl book information
5058
5059 =over 4
5060
5061 =item DESCRIPTION
5062
5063 =back
5064
5065 =head2 perltodo - Perl TO-DO List
5066
5067 =over 4
5068
5069 =item DESCRIPTION
5070
5071 =item To do during 5.6.x
5072
5073 =over 4
5074
5075 =item Support for I/O disciplines
5076
5077 =item Autoload bytes.pm
5078
5079 =item Make "\u{XXXX}" et al work
5080
5081 =item Create a char *sv_pvprintify(sv, STRLEN *lenp, UV flags)
5082
5083 =item Overloadable regex assertions
5084
5085 =item Unicode
5086
5087 =item Work out exit/die semantics for threads
5088
5089 =item Better support for nonpreemptive threading systems like GNU pth
5090
5091 =item Typed lexicals for compiler
5092
5093 =item Compiler workarounds for Win32
5094
5095 =item AUTOLOADing in the compiler
5096
5097 =item Fixing comppadlist when compiling
5098
5099 =item Cleaning up exported namespace
5100
5101 =item Complete signal handling
5102
5103 =item Out-of-source builds
5104
5105 =item POSIX realtime support
5106
5107 =item UNIX98 support
5108
5109 =item IPv6 Support
5110
5111 =item Long double conversion
5112
5113 =item Locales
5114
5115 =item Arithmetic on non-Arabic numerals
5116
5117 =item POSIX Unicode character classes
5118
5119 =item Factoring out common suffices/prefices in regexps (trie optimization)
5120
5121 =item Security audit shipped utilities
5122
5123 =item Sort out the uid-setting mess
5124
5125 =item Custom opcodes
5126
5127 =item DLL Versioning
5128
5129 =item Introduce @( and @)
5130
5131 =item Floating point handling
5132
5133 =item IV/UV preservation
5134
5135 =item Replace pod2html with something using Pod::Parser
5136
5137 =item Automate module testing on CPAN
5138
5139 =item sendmsg and recvmsg
5140
5141 =item Rewrite perlre documentation
5142
5143 =item Convert example code to IO::Handle filehandles
5144
5145 =item Document Win32 choices
5146
5147 =item Check new modules
5148
5149 =item Make roffitall find pods and libs itself
5150
5151 =back
5152
5153 =item To do at some point
5154
5155 =over 4
5156
5157 =item Remove regular expression recursion
5158
5159 =item Memory leaks after failed eval
5160
5161 =item bitfields in pack
5162
5163 =item Cross compilation
5164
5165 =item Perl preprocessor / macros
5166
5167 =item Perl lexer in Perl
5168
5169 =item Using POSIX calls internally
5170
5171 =item -i rename file when changed
5172
5173 =item All ARGV input should act like E<lt>E<gt>
5174
5175 =item Support for rerunning debugger
5176
5177 =item Test Suite for the Debugger
5178
5179 =item my sub foo { }
5180
5181 =item One-pass global destruction
5182
5183 =item Rewrite regexp parser
5184
5185 =item Cache recently used regexps
5186
5187 =item Cross-compilation support
5188
5189 =item Bit-shifting bitvectors
5190
5191 =item debugger pragma
5192
5193 =item use less pragma
5194
5195 =item switch structures
5196
5197 =item Cache eval tree
5198
5199 =item rcatmaybe
5200
5201 =item Shrink opcode tables
5202
5203 =item Optimize away @_
5204
5205 =item Prototypes versus indirect objects
5206
5207 =item Install HTML
5208
5209 =item Prototype method calls
5210
5211 =item Return context prototype declarations
5212
5213 =item magic_setisa
5214
5215 =item Garbage collection
5216
5217 =item IO tutorial
5218
5219 =item Rewrite perldoc
5220
5221 =item Install .3p manpages
5222
5223 =item Unicode tutorial
5224
5225 =item Update POSIX.pm for 1003.1-2
5226
5227 =item Retargetable installation
5228
5229 =item POSIX emulation on non-POSIX systems
5230
5231 =item Rename Win32 headers
5232
5233 =item Finish off lvalue functions
5234
5235 =item Update sprintf documentation
5236
5237 =item Use fchown/fchmod internally
5238
5239 =item Make v-strings overloaded objects
5240
5241 =item Allow restricted hash assignment
5242
5243 =item Should overload be inheritable?
5244
5245 =item Taint rethink
5246
5247 =item Perform correctly when XSUBs call subroutines that exit via
5248 goto(LABEL) and friends
5249
5250 =back
5251
5252 =item Vague ideas
5253
5254 =over 4
5255
5256 =item ref() in list context
5257
5258 =item Make tr/// return histogram of characters in list context
5259
5260 =item Compile to real threaded code
5261
5262 =item Structured types
5263
5264 =item Modifiable $1 et al.
5265
5266 =item Procedural interfaces for IO::*, etc.
5267
5268 =item RPC modules
5269
5270 =item Attach/detach debugger from running program
5271
5272 =item GUI::Native
5273
5274 =item foreach(reverse ...)
5275
5276 =item Constant function cache
5277
5278 =item Approximate regular expression matching
5279
5280 =back
5281
5282 =item Ongoing
5283
5284 =over 4
5285
5286 =item Update guts documentation
5287
5288 =item Add more tests
5289
5290 =item Update auxiliary tools
5291
5292 =item Create debugging macros
5293
5294 =item truncate to the people
5295
5296 =item Unicode in Filenames
5297
5298 =back
5299
5300 =item Unicode in %ENV
5301
5302 =item Recently done things
5303
5304 =over 4
5305
5306 =item Alternative RE syntax module
5307
5308 =item Safe signal handling
5309
5310 =item Tie Modules
5311
5312 =item gettimeofday
5313
5314 =item setitimer and getimiter
5315
5316 =item Testing __DIE__ hook
5317
5318 =item CPP equivalent in Perl
5319
5320 =item Explicit switch statements
5321
5322 =item autocroak
5323
5324 =item UTF/EBCDIC
5325
5326 =item UTF Regexes
5327
5328 =item perlcc to produce executable
5329
5330 =item END blocks saved in compiled output
5331
5332 =item Secure temporary file module
5333
5334 =item Integrate Time::HiRes
5335
5336 =item Turn Cwd into XS
5337
5338 =item Mmap for input
5339
5340 =item Byte to/from UTF-8 and UTF-8 to/from local conversion
5341
5342 =item Add sockatmark support
5343
5344 =item Mailing list archives
5345
5346 =item Bug tracking
5347
5348 =item Integrate MacPerl
5349
5350 =item Web "nerve center" for Perl
5351
5352 =item Regular expression tutorial
5353
5354 =item Debugging Tutorial
5355
5356 =item Integrate new modules
5357
5358 =item Integrate profiler
5359
5360 =item Y2K error detection
5361
5362 =item Regular expression debugger
5363
5364 =item POD checker
5365
5366 =item "Dynamic" lexicals
5367
5368 =item Cache precompiled modules
5369
5370 =back
5371
5372 =item Deprecated Wishes
5373
5374 =over 4
5375
5376 =item Loop control on do{}
5377
5378 =item Lexically scoped typeglobs
5379
5380 =item format BOTTOM
5381
5382 =item report HANDLE
5383
5384 =item Generalised want()/caller())
5385
5386 =item Named prototypes
5387
5388 =item Built-in globbing
5389
5390 =item Regression tests for suidperl
5391
5392 =item Cached hash values
5393
5394 =item Add compression modules
5395
5396 =item Reorganise documentation into tutorials/references
5397
5398 =item Remove distinction between functions and operators
5399
5400 =item Make XS easier to use
5401
5402 =item Make embedding easier to use
5403
5404 =item man for perl
5405
5406 =item my $Package::variable
5407
5408 =item "or" tests defined, not truth
5409
5410 =item "class"-based lexicals
5411
5412 =item byteperl
5413
5414 =item Lazy evaluation / tail recursion removal
5415
5416 =item Make "use utf8" the default
5417
5418 =item Unicode collation and normalization
5419
5420 =item pack/unpack tutorial
5421
5422 =back
5423
5424 =back
5425
5426 =head2 perldoc - Look up Perl documentation in Pod format.
5427
5428 =over 4
5429
5430 =item SYNOPSIS
5431
5432 =item DESCRIPTION
5433
5434 =item OPTIONS
5435
5436 B<-h>, B<-v>, B<-t>, B<-u>, B<-m> I<module>, B<-l>, B<-F>, B<-f>
5437 I<perlfunc>, B<-q> I<perlfaq-search-regexp>, B<-T>, B<-d>
5438 I<destination-filename>, B<-o> I<output-formatname>, B<-M> I<module-name>,
5439 B<-w> I<option:value> or B<-w> I<option>, B<-X>,
5440 B<PageName|ModuleName|ProgramName>, B<-n> I<some-formatter>, B<-r>, B<-i>,
5441 B<-V>
5442
5443 =item SECURITY
5444
5445 =item ENVIRONMENT
5446
5447 =item AUTHOR
5448
5449 =back
5450
5451 =head2 perlhist - the Perl history records
5452
5453 =over 4
5454
5455 =item DESCRIPTION
5456
5457 =item INTRODUCTION
5458
5459 =item THE KEEPERS OF THE PUMPKIN
5460
5461 =over 4
5462
5463 =item PUMPKIN?
5464
5465 =back
5466
5467 =item THE RECORDS
5468
5469 =over 4
5470
5471 =item SELECTED RELEASE SIZES
5472
5473 =item SELECTED PATCH SIZES
5474
5475 =back
5476
5477 =item THE KEEPERS OF THE RECORDS
5478
5479 =back
5480
5481 =head2 perldelta - what is new for perl v5.9.0
5482
5483 =over 4
5484
5485 =item DESCRIPTION
5486
5487 =item Incompatible Changes
5488
5489 =over 4
5490
5491 =item The C<$*> variable has been removed
5492
5493 =back
5494
5495 =item Core Enhancements
5496
5497 =over 4
5498
5499 =item Tied Arrays with Negative Array Indices
5500
5501 =back
5502
5503 =item Modules and Pragmata
5504
5505 =item Utility Changes
5506
5507 =item New Documentation
5508
5509 =item Performance Enhancements
5510
5511 =item Installation and Configuration Improvements
5512
5513 =item Selected Bug Fixes
5514
5515 =item New or Changed Diagnostics
5516
5517 =item Changed Internals
5518
5519 =item New Tests
5520
5521 =item Known Problems
5522
5523 =item Platform Specific Problems
5524
5525 =item Reporting Bugs
5526
5527 =item SEE ALSO
5528
5529 =back
5530
5531 =head2 perl58delta, perldelta - what is new for perl v5.8.0
5532
5533 =over 4
5534
5535 =item DESCRIPTION
5536
5537 =item Highlights In 5.8.0
5538
5539 =item Incompatible Changes
5540
5541 =over 4
5542
5543 =item Binary Incompatibility
5544
5545 =item 64-bit platforms and malloc
5546
5547 =item AIX Dynaloading
5548
5549 =item Attributes for C<my> variables now handled at run-time
5550
5551 =item Socket Extension Dynamic in VMS
5552
5553 =item IEEE-format Floating Point Default on OpenVMS Alpha
5554
5555 =item New Unicode Semantics (no more C<use utf8>, almost)
5556
5557 =item New Unicode Properties
5558
5559 =item REF(...) Instead Of SCALAR(...)
5560
5561 =item pack/unpack D/F recycled
5562
5563 =item glob() now returns filenames in alphabetical order
5564
5565 =item Deprecations
5566
5567 =back
5568
5569 =item Core Enhancements
5570
5571 =over 4
5572
5573 =item Unicode Overhaul
5574
5575 =item PerlIO is Now The Default
5576
5577 =item ithreads
5578
5579 =item Restricted Hashes
5580
5581 =item Safe Signals
5582
5583 =item Understanding of Numbers
5584
5585 =item Arrays now always interpolate into double-quoted strings [561]
5586
5587 =item Miscellaneous Changes
5588
5589 =back
5590
5591 =item Modules and Pragmata
5592
5593 =over 4
5594
5595 =item New Modules and Pragmata
5596
5597 =item Updated And Improved Modules and Pragmata
5598
5599 =back
5600
5601 =item Utility Changes
5602
5603 =item New Documentation
5604
5605 =item Performance Enhancements
5606
5607 =item Installation and Configuration Improvements
5608
5609 =over 4
5610
5611 =item Generic Improvements
5612
5613 =item New Or Improved Platforms
5614
5615 =back
5616
5617 =item Selected Bug Fixes
5618
5619 =over 4
5620
5621 =item Platform Specific Changes and Fixes
5622
5623 =back
5624
5625 =item New or Changed Diagnostics
5626
5627 =item Changed Internals
5628
5629 =item Security Vulnerability Closed [561]
5630
5631 =item New Tests
5632
5633 =item Known Problems
5634
5635 =over 4
5636
5637 =item The Compiler Suite Is Still Very Experimental
5638
5639 =item Localising Tied Arrays and Hashes Is Broken
5640
5641 =item Building Extensions Can Fail Because Of Largefiles
5642
5643 =item Modifying $_ Inside for(..)
5644
5645 =item mod_perl 1.26 Doesn't Build With Threaded Perl
5646
5647 =item lib/ftmp-security tests warn 'system possibly insecure'
5648
5649 =item libwww-perl (LWP) fails base/date #51
5650
5651 =item PDL failing some tests
5652
5653 =item Perl_get_sv
5654
5655 =item Self-tying Problems
5656
5657 =item ext/threads/t/libc
5658
5659 =item Failure of Thread (5.005-style) tests
5660
5661 =item Timing problems
5662
5663 =item Tied/Magical Array/Hash Elements Do Not Autovivify
5664
5665 =item Unicode in package/class and subroutine names does not work
5666
5667 =back
5668
5669 =item Platform Specific Problems
5670
5671 =over 4
5672
5673 =item AIX
5674
5675 =item Alpha systems with old gccs fail several tests
5676
5677 =item AmigaOS
5678
5679 =item BeOS
5680
5681 =item Cygwin "unable to remap"
5682
5683 =item Cygwin ndbm tests fail on FAT
5684
5685 =item DJGPP Failures
5686
5687 =item FreeBSD built with ithreads coredumps reading large directories
5688
5689 =item FreeBSD Failing locale Test 117 For ISO 8859-15 Locales
5690
5691 =item IRIX fails ext/List/Util/t/shuffle.t or Digest::MD5
5692
5693 =item HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5694
5695 =item Linux with glibc 2.2.5 fails t/op/int subtest #6 with -Duse64bitint
5696
5697 =item Linux With Sfio Fails op/misc Test 48
5698
5699 =item Mac OS X
5700
5701 =item Mac OS X dyld undefined symbols
5702
5703 =item OS/2 Test Failures
5704
5705 =item op/sprintf tests 91, 129, and 130
5706
5707 =item SCO
5708
5709 =item Solaris 2.5
5710
5711 =item Solaris x86 Fails Tests With -Duse64bitint
5712
5713 =item SUPER-UX (NEC SX)
5714
5715 =item Term::ReadKey not working on Win32
5716
5717 =item UNICOS/mk
5718
5719 =item UTS
5720
5721 =item VOS (Stratus)
5722
5723 =item VMS
5724
5725 =item Win32
5726
5727 =item XML::Parser not working
5728
5729 =item z/OS (OS/390)
5730
5731 =item Unicode Support on EBCDIC Still Spotty
5732
5733 =item Seen In Perl 5.7 But Gone Now
5734
5735 =back
5736
5737 =item Reporting Bugs
5738
5739 =item SEE ALSO
5740
5741 =item HISTORY
5742
5743 =back
5744
5745 =head2 perl573delta - what's new for perl v5.7.3
5746
5747 =over 4
5748
5749 =item DESCRIPTION
5750
5751 =item Changes
5752
5753 =item Reporting Bugs
5754
5755 =item SEE ALSO
5756
5757 =item HISTORY
5758
5759 =back
5760
5761 =head2 perl572delta - what's new for perl v5.7.2
5762
5763 =over 4
5764
5765 =item DESCRIPTION
5766
5767 =item Security Vulnerability Closed
5768
5769 =item Incompatible Changes
5770
5771 =over 4
5772
5773 =item 64-bit platforms and malloc
5774
5775 =item AIX Dynaloading
5776
5777 =item Socket Extension Dynamic in VMS
5778
5779 =item Different Definition of the Unicode Character Classes \p{In...}
5780
5781 =item Deprecations
5782
5783 =back
5784
5785 =item Core Enhancements
5786
5787 =item Modules and Pragmata
5788
5789 =over 4
5790
5791 =item New Modules and Distributions
5792
5793 =item Updated And Improved Modules and Pragmata
5794
5795 =back
5796
5797 =item Utility Changes
5798
5799 =item New Documentation
5800
5801 =item Installation and Configuration Improvements
5802
5803 =over 4
5804
5805 =item New Or Improved Platforms
5806
5807 =item Generic Improvements
5808
5809 =back
5810
5811 =item Selected Bug Fixes
5812
5813 =over 4
5814
5815 =item Platform Specific Changes and Fixes
5816
5817 =back
5818
5819 =item New or Changed Diagnostics
5820
5821 =item Source Code Enhancements
5822
5823 =over 4
5824
5825 =item MAGIC constants
5826
5827 =item Better commented code
5828
5829 =item Regex pre-/post-compilation items matched up
5830
5831 =item gcc -Wall
5832
5833 =back
5834
5835 =item New Tests
5836
5837 =item Known Problems
5838
5839 =over 4
5840
5841 =item AIX
5842
5843 =item Amiga Perl Invoking Mystery
5844
5845 =item lib/ftmp-security tests warn 'system possibly insecure'
5846
5847 =item Cygwin intermittent failures of lib/Memoize/t/expire_file 11 and 12
5848
5849 =item HP-UX lib/io_multihomed Fails When LP64-Configured
5850
5851 =item  HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5852
5853 =item Linux With Sfio Fails op/misc Test 48
5854
5855 =item OS/390
5856
5857 =item op/sprintf tests 129 and 130
5858
5859 =item  Failure of Thread tests
5860
5861 =item UNICOS
5862
5863 =item UTS
5864
5865 =item VMS
5866
5867 =item Win32
5868
5869 =item Localising a Tied Variable Leaks Memory
5870
5871 =item Self-tying of Arrays and Hashes Is Forbidden
5872
5873 =item Variable Attributes are not Currently Usable for Tieing
5874
5875 =item Building Extensions Can Fail Because Of Largefiles
5876
5877 =item The Compiler Suite Is Still Experimental
5878
5879 =item The Long Double Support is Still Experimental
5880
5881 =back
5882
5883 =item Reporting Bugs
5884
5885 =item SEE ALSO
5886
5887 =item HISTORY
5888
5889 =back
5890
5891 =head2 perl571delta - what's new for perl v5.7.1
5892
5893 =over 4
5894
5895 =item DESCRIPTION
5896
5897 =item Security Vulnerability Closed
5898
5899 =item Incompatible Changes
5900
5901 =item Core Enhancements
5902
5903 =over 4
5904
5905 =item AUTOLOAD Is Now Lvaluable
5906
5907 =item PerlIO is Now The Default
5908
5909 =item Signals Are Now Safe
5910
5911 =back
5912
5913 =item Modules and Pragmata
5914
5915 =over 4
5916
5917 =item New Modules
5918
5919 =item Updated And Improved Modules and Pragmata
5920
5921 =back
5922
5923 =item Performance Enhancements
5924
5925 =item Utility Changes
5926
5927 =item New Documentation
5928
5929 =over 4
5930
5931 =item perlclib
5932
5933 =item perliol
5934
5935 =item README.aix
5936
5937 =item README.bs2000
5938
5939 =item README.macos
5940
5941 =item README.mpeix
5942
5943 =item README.solaris
5944
5945 =item README.vos
5946
5947 =item Porting/repository.pod
5948
5949 =back
5950
5951 =item Installation and Configuration Improvements
5952
5953 =over 4
5954
5955 =item New Or Improved Platforms
5956
5957 =item Generic Improvements
5958
5959 d_cmsghdr, d_fcntl_can_lock, d_fsync, d_getitimer, d_getpagsz, d_msghdr_s,
5960 need_va_copy, d_readv, d_recvmsg, d_sendmsg, sig_size, d_sockatmark,
5961 d_strtoq, d_u32align, d_ualarm, d_usleep
5962
5963 =back
5964
5965 =item Selected Bug Fixes
5966
5967 =over 4
5968
5969 =item Platform Specific Changes and Fixes
5970
5971 =back
5972
5973 =item New or Changed Diagnostics
5974
5975 =item Changed Internals
5976
5977 =item New Tests
5978
5979 =item Known Problems
5980
5981 =over 4
5982
5983 =item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
5984
5985 =item lib/ftmp-security tests warn 'system possibly insecure'
5986
5987 =item lib/io_multihomed Fails In LP64-Configured HP-UX
5988
5989 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
5990
5991 =item lib/b test 19
5992
5993 =item Linux With Sfio Fails op/misc Test 48
5994
5995 =item sigaction test 13 in VMS
5996
5997 =item sprintf tests 129 and 130
5998
5999 =item  Failure of Thread tests
6000
6001 =item Localising a Tied Variable Leaks Memory
6002
6003 =item Self-tying of Arrays and Hashes Is Forbidden
6004
6005 =item Building Extensions Can Fail Because Of Largefiles
6006
6007 =item The Compiler Suite Is Still Experimental
6008
6009 =back
6010
6011 =item Reporting Bugs
6012
6013 =item SEE ALSO
6014
6015 =item HISTORY
6016
6017 =back
6018
6019 =head2 perl570delta - what's new for perl v5.7.0
6020
6021 =over 4
6022
6023 =item DESCRIPTION
6024
6025 =item Security Vulnerability Closed
6026
6027 =item Incompatible Changes
6028
6029 =item Core Enhancements
6030
6031 =item Modules and Pragmata
6032
6033 =over 4
6034
6035 =item New Modules
6036
6037 =item Updated And Improved Modules and Pragmata
6038
6039 =back
6040
6041 =item Utility Changes
6042
6043 =item New Documentation
6044
6045 =item Performance Enhancements
6046
6047 =item Installation and Configuration Improvements
6048
6049 =over 4
6050
6051 =item Generic Improvements
6052
6053 =back
6054
6055 =item Selected Bug Fixes
6056
6057 =over 4
6058
6059 =item Platform Specific Changes and Fixes
6060
6061 =back
6062
6063 =item New or Changed Diagnostics
6064
6065 =item Changed Internals
6066
6067 =item Known Problems
6068
6069 =over 4
6070
6071 =item Unicode Support Still Far From Perfect
6072
6073 =item EBCDIC Still A Lost Platform
6074
6075 =item Building Extensions Can Fail Because Of Largefiles
6076
6077 =item ftmp-security tests warn 'system possibly insecure'
6078
6079 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
6080
6081 =item Long Doubles Still Don't Work In Solaris
6082
6083 =item Linux With Sfio Fails op/misc Test 48
6084
6085 =item Storable tests fail in some platforms
6086
6087 =item Threads Are Still Experimental
6088
6089 =item The Compiler Suite Is Still Experimental
6090
6091 =back
6092
6093 =item Reporting Bugs
6094
6095 =item SEE ALSO
6096
6097 =item HISTORY
6098
6099 =back
6100
6101 =head2 perl561delta - what's new for perl v5.6.x
6102
6103 =over 4
6104
6105 =item DESCRIPTION
6106
6107 =item Summary of changes between 5.6.0 and 5.6.1
6108
6109 =over 4
6110
6111 =item Security Issues
6112
6113 =item Core bug fixes
6114
6115 C<UNIVERSAL::isa()>, Memory leaks, Numeric conversions, qw(a\\b), caller(),
6116 Bugs in regular expressions, "slurp" mode, Autovivification of symbolic
6117 references to special variables, Lexical warnings, Spurious warnings and
6118 errors, glob(), Tainting, sort(), #line directives, Subroutine prototypes,
6119 map(), Debugger, PERL5OPT, chop(), Unicode support, 64-bit support,
6120 Compiler, Lvalue subroutines, IO::Socket, File::Find, xsubpp, C<no
6121 Module;>, Tests
6122
6123 =item Core features
6124
6125 =item Configuration issues
6126
6127 =item Documentation
6128
6129 =item Bundled modules
6130
6131 B::Concise, File::Temp, Pod::LaTeX, Pod::Text::Overstrike, CGI, CPAN,
6132 Class::Struct, DB_File, Devel::Peek, File::Find, Getopt::Long, IO::Poll,
6133 IPC::Open3, Math::BigFloat, Math::Complex, Net::Ping, Opcode, Pod::Parser,
6134 Pod::Text, SDBM_File, Sys::Syslog, Tie::RefHash, Tie::SubstrHash
6135
6136 =item Platform-specific improvements
6137
6138 NCR MP-RAS, NonStop-UX
6139
6140 =back
6141
6142 =item Core Enhancements
6143
6144 =over 4
6145
6146 =item Interpreter cloning, threads, and concurrency
6147
6148 =item Lexically scoped warning categories
6149
6150 =item Unicode and UTF-8 support
6151
6152 =item Support for interpolating named characters
6153
6154 =item "our" declarations
6155
6156 =item Support for strings represented as a vector of ordinals
6157
6158 =item Improved Perl version numbering system
6159
6160 =item New syntax for declaring subroutine attributes
6161
6162 =item File and directory handles can be autovivified
6163
6164 =item open() with more than two arguments
6165
6166 =item 64-bit support
6167
6168 =item Large file support
6169
6170 =item Long doubles
6171
6172 =item "more bits"
6173
6174 =item Enhanced support for sort() subroutines
6175
6176 =item C<sort $coderef @foo> allowed
6177
6178 =item File globbing implemented internally
6179
6180 =item Support for CHECK blocks
6181
6182 =item POSIX character class syntax [: :] supported
6183
6184 =item Better pseudo-random number generator
6185
6186 =item Improved C<qw//> operator
6187
6188 =item Better worst-case behavior of hashes
6189
6190 =item pack() format 'Z' supported
6191
6192 =item pack() format modifier '!' supported
6193
6194 =item pack() and unpack() support counted strings
6195
6196 =item Comments in pack() templates
6197
6198 =item Weak references
6199
6200 =item Binary numbers supported
6201
6202 =item Lvalue subroutines
6203
6204 =item Some arrows may be omitted in calls through references
6205
6206 =item Boolean assignment operators are legal lvalues
6207
6208 =item exists() is supported on subroutine names
6209
6210 =item exists() and delete() are supported on array elements
6211
6212 =item Pseudo-hashes work better
6213
6214 =item Automatic flushing of output buffers
6215
6216 =item Better diagnostics on meaningless filehandle operations
6217
6218 =item Where possible, buffered data discarded from duped input filehandle
6219
6220 =item eof() has the same old magic as <>
6221
6222 =item binmode() can be used to set :crlf and :raw modes
6223
6224 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
6225
6226 =item system(), backticks and pipe open now reflect exec() failure
6227
6228 =item Improved diagnostics
6229
6230 =item Diagnostics follow STDERR
6231
6232 =item More consistent close-on-exec behavior
6233
6234 =item syswrite() ease-of-use
6235
6236 =item Better syntax checks on parenthesized unary operators
6237
6238 =item Bit operators support full native integer width
6239
6240 =item Improved security features
6241
6242 =item More functional bareword prototype (*)
6243
6244 =item C<require> and C<do> may be overridden
6245
6246 =item $^X variables may now have names longer than one character
6247
6248 =item New variable $^C reflects C<-c> switch
6249
6250 =item New variable $^V contains Perl version as a string
6251
6252 =item Optional Y2K warnings
6253
6254 =item Arrays now always interpolate into double-quoted strings
6255
6256 =back
6257
6258 =item Modules and Pragmata
6259
6260 =over 4
6261
6262 =item Modules
6263
6264 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6265 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6266 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6267 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6268 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6269 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6270 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6271 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6272
6273 =item Pragmata
6274
6275 =back
6276
6277 =item Utility Changes
6278
6279 =over 4
6280
6281 =item dprofpp
6282
6283 =item find2perl
6284
6285 =item h2xs
6286
6287 =item perlcc
6288
6289 =item perldoc
6290
6291 =item The Perl Debugger
6292
6293 =back
6294
6295 =item Improved Documentation
6296
6297 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6298 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6299 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6300 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6301
6302 =item Performance enhancements
6303
6304 =over 4
6305
6306 =item Simple sort() using { $a <=> $b } and the like are optimized
6307
6308 =item Optimized assignments to lexical variables
6309
6310 =item Faster subroutine calls
6311
6312 =item delete(), each(), values() and hash iteration are faster
6313
6314 =back
6315
6316 =item Installation and Configuration Improvements
6317
6318 =over 4
6319
6320 =item -Dusethreads means something different
6321
6322 =item New Configure flags
6323
6324 =item Threadedness and 64-bitness now more daring
6325
6326 =item Long Doubles
6327
6328 =item -Dusemorebits
6329
6330 =item -Duselargefiles
6331
6332 =item installusrbinperl
6333
6334 =item SOCKS support
6335
6336 =item C<-A> flag
6337
6338 =item Enhanced Installation Directories
6339
6340 =item gcc automatically tried if 'cc' does not seem to be working
6341
6342 =back
6343
6344 =item Platform specific changes
6345
6346 =over 4
6347
6348 =item Supported platforms
6349
6350 =item DOS
6351
6352 =item OS390 (OpenEdition MVS)
6353
6354 =item VMS
6355
6356 =item Win32
6357
6358 =back
6359
6360 =item Significant bug fixes
6361
6362 =over 4
6363
6364 =item <HANDLE> on empty files
6365
6366 =item C<eval '...'> improvements
6367
6368 =item All compilation errors are true errors
6369
6370 =item Implicitly closed filehandles are safer
6371
6372 =item Behavior of list slices is more consistent
6373
6374 =item C<(\$)> prototype and C<$foo{a}>
6375
6376 =item C<goto &sub> and AUTOLOAD
6377
6378 =item C<-bareword> allowed under C<use integer>
6379
6380 =item Failures in DESTROY()
6381
6382 =item Locale bugs fixed
6383
6384 =item Memory leaks
6385
6386 =item Spurious subroutine stubs after failed subroutine calls
6387
6388 =item Taint failures under C<-U>
6389
6390 =item END blocks and the C<-c> switch
6391
6392 =item Potential to leak DATA filehandles
6393
6394 =back
6395
6396 =item New or Changed Diagnostics
6397
6398 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6399 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6400 / cannot take a count, / must be followed by a, A or Z, / must be followed
6401 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6402 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6403 passed through, /%s/ should probably be written as "%s", %s() called too
6404 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6405 argument is not a HASH or ARRAY element or slice, %s argument is not a
6406 subroutine name, %s package attribute may clash with future reserved word:
6407 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6408 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6409 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6410 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6411 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6412 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6413 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6414 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6415 weaken a nonreference, Character class [:%s:] unknown, Character class
6416 syntax [%s] belongs inside character classes, Constant is not %s reference,
6417 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6418 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6419 "local" instead of "our"?), Document contains no data, entering effective
6420 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6421 output, flock() on closed filehandle %s, Global symbol "%s" requires
6422 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6423 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6424 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6425 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6426 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6427 separator character %s in attribute list, Invalid separator character %s in
6428 subroutine attribute list, leaving effective %s failed, Lvalue subs
6429 returning %s not implemented yet, Method %s not permitted, Missing
6430 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6431 No %s specified for -%c, No package name allowed for variable %s in "our",
6432 No space allowed after -%c, no UTC offset information; assuming local time
6433 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6434 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6435 around "%s" list, Possible unintended interpolation of %s in string,
6436 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6437 instead, Premature end of script headers, Repeat count in pack overflows,
6438 Repeat count in unpack overflows, realloc() of freed memory ignored,
6439 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6440 zero-length expression, switching effective %s is not implemented, This
6441 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6442 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6443 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6444 escape \\%c passed through, Unterminated attribute parameter in attribute
6445 list, Unterminated attribute list, Unterminated attribute parameter in
6446 subroutine attribute list, Unterminated subroutine attribute list, Value of
6447 CLI symbol "%s" too long, Version number must be a constant number
6448
6449 =item New tests
6450
6451 =item Incompatible Changes
6452
6453 =over 4
6454
6455 =item Perl Source Incompatibilities
6456
6457 CHECK is a new keyword, Treatment of list slices of undef has changed,
6458 Format of $English::PERL_VERSION is different, Literals of the form
6459 C<1.2.3> parse differently, Possibly changed pseudo-random number
6460 generator, Hashing function for hash keys has changed, C<undef> fails on
6461 read only values, Close-on-exec bit may be set on pipe and socket handles,
6462 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6463 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6464 Text of some diagnostic output has changed, C<%@> has been removed,
6465 Parenthesized not() behaves like a list operator, Semantics of bareword
6466 prototype C<(*)> have changed, Semantics of bit operators may have changed
6467 on 64-bit platforms, More builtins taint their results
6468
6469 =item C Source Incompatibilities
6470
6471 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6472
6473 =item Compatible C Source API Changes
6474
6475 C<PATCHLEVEL> is now C<PERL_VERSION>
6476
6477 =item Binary Incompatibilities
6478
6479 =back
6480
6481 =item Known Problems
6482
6483 =over 4
6484
6485 =item Localizing a tied hash element may leak memory
6486
6487 =item Known test failures
6488
6489 =item EBCDIC platforms not fully supported
6490
6491 =item UNICOS/mk CC failures during Configure run
6492
6493 =item Arrow operator and arrays
6494
6495 =item Experimental features
6496
6497 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6498 pseudo-hash data type, The Compiler suite, Internal implementation of file
6499 globbing, The DB module, The regular expression code constructs:
6500
6501 =back
6502
6503 =item Obsolete Diagnostics
6504
6505 Character class syntax [: :] is reserved for future extensions, Ill-formed
6506 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6507 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6508 to mean "${$}<digit>" is deprecated
6509
6510 =item Reporting Bugs
6511
6512 =item SEE ALSO
6513
6514 =item HISTORY
6515
6516 =back
6517
6518 =head2 perl56delta - what's new for perl v5.6.0
6519
6520 =over 4
6521
6522 =item DESCRIPTION
6523
6524 =item Core Enhancements
6525
6526 =over 4
6527
6528 =item Interpreter cloning, threads, and concurrency
6529
6530 =item Lexically scoped warning categories
6531
6532 =item Unicode and UTF-8 support
6533
6534 =item Support for interpolating named characters
6535
6536 =item "our" declarations
6537
6538 =item Support for strings represented as a vector of ordinals
6539
6540 =item Improved Perl version numbering system
6541
6542 =item New syntax for declaring subroutine attributes
6543
6544 =item File and directory handles can be autovivified
6545
6546 =item open() with more than two arguments
6547
6548 =item 64-bit support
6549
6550 =item Large file support
6551
6552 =item Long doubles
6553
6554 =item "more bits"
6555
6556 =item Enhanced support for sort() subroutines
6557
6558 =item C<sort $coderef @foo> allowed
6559
6560 =item File globbing implemented internally
6561
6562 =item Support for CHECK blocks
6563
6564 =item POSIX character class syntax [: :] supported
6565
6566 =item Better pseudo-random number generator
6567
6568 =item Improved C<qw//> operator
6569
6570 =item Better worst-case behavior of hashes
6571
6572 =item pack() format 'Z' supported
6573
6574 =item pack() format modifier '!' supported
6575
6576 =item pack() and unpack() support counted strings
6577
6578 =item Comments in pack() templates
6579
6580 =item Weak references
6581
6582 =item Binary numbers supported
6583
6584 =item Lvalue subroutines
6585
6586 =item Some arrows may be omitted in calls through references
6587
6588 =item Boolean assignment operators are legal lvalues
6589
6590 =item exists() is supported on subroutine names
6591
6592 =item exists() and delete() are supported on array elements
6593
6594 =item Pseudo-hashes work better
6595
6596 =item Automatic flushing of output buffers
6597
6598 =item Better diagnostics on meaningless filehandle operations
6599
6600 =item Where possible, buffered data discarded from duped input filehandle
6601
6602 =item eof() has the same old magic as <>
6603
6604 =item binmode() can be used to set :crlf and :raw modes
6605
6606 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
6607
6608 =item system(), backticks and pipe open now reflect exec() failure
6609
6610 =item Improved diagnostics
6611
6612 =item Diagnostics follow STDERR
6613
6614 =item More consistent close-on-exec behavior
6615
6616 =item syswrite() ease-of-use
6617
6618 =item Better syntax checks on parenthesized unary operators
6619
6620 =item Bit operators support full native integer width
6621
6622 =item Improved security features
6623
6624 =item More functional bareword prototype (*)
6625
6626 =item C<require> and C<do> may be overridden
6627
6628 =item $^X variables may now have names longer than one character
6629
6630 =item New variable $^C reflects C<-c> switch
6631
6632 =item New variable $^V contains Perl version as a string
6633
6634 =item Optional Y2K warnings
6635
6636 =item Arrays now always interpolate into double-quoted strings
6637
6638 =back
6639
6640 =item Modules and Pragmata
6641
6642 =over 4
6643
6644 =item Modules
6645
6646 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6647 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6648 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6649 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6650 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6651 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6652 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6653 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6654
6655 =item Pragmata
6656
6657 =back
6658
6659 =item Utility Changes
6660
6661 =over 4
6662
6663 =item dprofpp
6664
6665 =item find2perl
6666
6667 =item h2xs
6668
6669 =item perlcc
6670
6671 =item perldoc
6672
6673 =item The Perl Debugger
6674
6675 =back
6676
6677 =item Improved Documentation
6678
6679 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6680 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6681 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6682 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6683
6684 =item Performance enhancements
6685
6686 =over 4
6687
6688 =item Simple sort() using { $a <=> $b } and the like are optimized
6689
6690 =item Optimized assignments to lexical variables
6691
6692 =item Faster subroutine calls
6693
6694 =item delete(), each(), values() and hash iteration are faster
6695
6696 =back
6697
6698 =item Installation and Configuration Improvements
6699
6700 =over 4
6701
6702 =item -Dusethreads means something different
6703
6704 =item New Configure flags
6705
6706 =item Threadedness and 64-bitness now more daring
6707
6708 =item Long Doubles
6709
6710 =item -Dusemorebits
6711
6712 =item -Duselargefiles
6713
6714 =item installusrbinperl
6715
6716 =item SOCKS support
6717
6718 =item C<-A> flag
6719
6720 =item Enhanced Installation Directories
6721
6722 =back
6723
6724 =item Platform specific changes
6725
6726 =over 4
6727
6728 =item Supported platforms
6729
6730 =item DOS
6731
6732 =item OS390 (OpenEdition MVS)
6733
6734 =item VMS
6735
6736 =item Win32
6737
6738 =back
6739
6740 =item Significant bug fixes
6741
6742 =over 4
6743
6744 =item <HANDLE> on empty files
6745
6746 =item C<eval '...'> improvements
6747
6748 =item All compilation errors are true errors
6749
6750 =item Implicitly closed filehandles are safer
6751
6752 =item Behavior of list slices is more consistent
6753
6754 =item C<(\$)> prototype and C<$foo{a}>
6755
6756 =item C<goto &sub> and AUTOLOAD
6757
6758 =item C<-bareword> allowed under C<use integer>
6759
6760 =item Failures in DESTROY()
6761
6762 =item Locale bugs fixed
6763
6764 =item Memory leaks
6765
6766 =item Spurious subroutine stubs after failed subroutine calls
6767
6768 =item Taint failures under C<-U>
6769
6770 =item END blocks and the C<-c> switch
6771
6772 =item Potential to leak DATA filehandles
6773
6774 =back
6775
6776 =item New or Changed Diagnostics
6777
6778 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6779 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6780 / cannot take a count, / must be followed by a, A or Z, / must be followed
6781 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6782 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6783 passed through, /%s/ should probably be written as "%s", %s() called too
6784 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6785 argument is not a HASH or ARRAY element or slice, %s argument is not a
6786 subroutine name, %s package attribute may clash with future reserved word:
6787 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6788 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6789 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6790 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6791 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6792 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6793 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6794 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6795 weaken a nonreference, Character class [:%s:] unknown, Character class
6796 syntax [%s] belongs inside character classes, Constant is not %s reference,
6797 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6798 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6799 "local" instead of "our"?), Document contains no data, entering effective
6800 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6801 output, flock() on closed filehandle %s, Global symbol "%s" requires
6802 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6803 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6804 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6805 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6806 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6807 separator character %s in attribute list, Invalid separator character %s in
6808 subroutine attribute list, leaving effective %s failed, Lvalue subs
6809 returning %s not implemented yet, Method %s not permitted, Missing
6810 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6811 No %s specified for -%c, No package name allowed for variable %s in "our",
6812 No space allowed after -%c, no UTC offset information; assuming local time
6813 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6814 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6815 around "%s" list, Possible unintended interpolation of %s in string,
6816 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6817 instead, Premature end of script headers, Repeat count in pack overflows,
6818 Repeat count in unpack overflows, realloc() of freed memory ignored,
6819 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6820 zero-length expression, switching effective %s is not implemented, This
6821 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6822 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6823 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6824 escape \\%c passed through, Unterminated attribute parameter in attribute
6825 list, Unterminated attribute list, Unterminated attribute parameter in
6826 subroutine attribute list, Unterminated subroutine attribute list, Value of
6827 CLI symbol "%s" too long, Version number must be a constant number
6828
6829 =item New tests
6830
6831 =item Incompatible Changes
6832
6833 =over 4
6834
6835 =item Perl Source Incompatibilities
6836
6837 CHECK is a new keyword, Treatment of list slices of undef has changed,
6838 Format of $English::PERL_VERSION is different, Literals of the form
6839 C<1.2.3> parse differently, Possibly changed pseudo-random number
6840 generator, Hashing function for hash keys has changed, C<undef> fails on
6841 read only values, Close-on-exec bit may be set on pipe and socket handles,
6842 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6843 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6844 Text of some diagnostic output has changed, C<%@> has been removed,
6845 Parenthesized not() behaves like a list operator, Semantics of bareword
6846 prototype C<(*)> have changed, Semantics of bit operators may have changed
6847 on 64-bit platforms, More builtins taint their results
6848
6849 =item C Source Incompatibilities
6850
6851 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6852
6853 =item Compatible C Source API Changes
6854
6855 C<PATCHLEVEL> is now C<PERL_VERSION>
6856
6857 =item Binary Incompatibilities
6858
6859 =back
6860
6861 =item Known Problems
6862
6863 =over 4
6864
6865 =item Thread test failures
6866
6867 =item EBCDIC platforms not supported
6868
6869 =item In 64-bit HP-UX the lib/io_multihomed test may hang
6870
6871 =item NEXTSTEP 3.3 POSIX test failure
6872
6873 =item Tru64 (aka Digital UNIX, aka DEC OSF/1) lib/sdbm test failure with
6874 gcc
6875
6876 =item UNICOS/mk CC failures during Configure run
6877
6878 =item Arrow operator and arrays
6879
6880 =item Experimental features
6881
6882 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6883 pseudo-hash data type, The Compiler suite, Internal implementation of file
6884 globbing, The DB module, The regular expression code constructs:
6885
6886 =back
6887
6888 =item Obsolete Diagnostics
6889
6890 Character class syntax [: :] is reserved for future extensions, Ill-formed
6891 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6892 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6893 to mean "${$}<digit>" is deprecated
6894
6895 =item Reporting Bugs
6896
6897 =item SEE ALSO
6898
6899 =item HISTORY
6900
6901 =back
6902
6903 =head2 perl5005delta - what's new for perl5.005
6904
6905 =over 4
6906
6907 =item DESCRIPTION
6908
6909 =item About the new versioning system
6910
6911 =item Incompatible Changes
6912
6913 =over 4
6914
6915 =item WARNING:  This version is not binary compatible with Perl 5.004.
6916
6917 =item Default installation structure has changed
6918
6919 =item Perl Source Compatibility
6920
6921 =item C Source Compatibility
6922
6923 =item Binary Compatibility
6924
6925 =item Security fixes may affect compatibility
6926
6927 =item Relaxed new mandatory warnings introduced in 5.004
6928
6929 =item Licensing
6930
6931 =back
6932
6933 =item Core Changes
6934
6935 =over 4
6936
6937 =item Threads
6938
6939 =item Compiler
6940
6941 =item Regular Expressions
6942
6943 Many new and improved optimizations, Many bug fixes, New regular expression
6944 constructs, New operator for precompiled regular expressions, Other
6945 improvements, Incompatible changes
6946
6947 =item   Improved malloc()
6948
6949 =item Quicksort is internally implemented
6950
6951 =item Reliable signals
6952
6953 =item Reliable stack pointers
6954
6955 =item More generous treatment of carriage returns
6956
6957 =item Memory leaks
6958
6959 =item Better support for multiple interpreters
6960
6961 =item Behavior of local() on array and hash elements is now well-defined
6962
6963 =item C<%!> is transparently tied to the L<Errno> module
6964
6965 =item Pseudo-hashes are supported
6966
6967 =item C<EXPR foreach EXPR> is supported
6968
6969 =item Keywords can be globally overridden
6970
6971 =item C<$^E> is meaningful on Win32
6972
6973 =item C<foreach (1..1000000)> optimized
6974
6975 =item C<Foo::> can be used as implicitly quoted package name
6976
6977 =item C<exists $Foo::{Bar::}> tests existence of a package
6978
6979 =item Better locale support
6980
6981 =item Experimental support for 64-bit platforms
6982
6983 =item prototype() returns useful results on builtins
6984
6985 =item Extended support for exception handling
6986
6987 =item Re-blessing in DESTROY() supported for chaining DESTROY() methods
6988
6989 =item All C<printf> format conversions are handled internally
6990
6991 =item New C<INIT> keyword
6992
6993 =item New C<lock> keyword
6994
6995 =item New C<qr//> operator
6996
6997 =item C<our> is now a reserved word
6998
6999 =item Tied arrays are now fully supported
7000
7001 =item Tied handles support is better
7002
7003 =item 4th argument to substr
7004
7005 =item Negative LENGTH argument to splice
7006
7007 =item Magic lvalues are now more magical
7008
7009 =item <> now reads in records
7010
7011 =back
7012
7013 =item Supported Platforms
7014
7015 =over 4
7016
7017 =item New Platforms
7018
7019 =item Changes in existing support
7020
7021 =back
7022
7023 =item Modules and Pragmata
7024
7025 =over 4
7026
7027 =item New Modules
7028
7029 B, Data::Dumper, Dumpvalue, Errno, File::Spec, ExtUtils::Installed,
7030 ExtUtils::Packlist, Fatal, IPC::SysV, Test, Tie::Array, Tie::Handle,
7031 Thread, attrs, fields, re
7032
7033 =item Changes in existing modules
7034
7035 Benchmark, Carp, CGI, Fcntl, Math::Complex, Math::Trig, POSIX, DB_File,
7036 MakeMaker, CPAN, Cwd
7037
7038 =back
7039
7040 =item Utility Changes
7041
7042 =item Documentation Changes
7043
7044 =item New Diagnostics
7045
7046 Ambiguous call resolved as CORE::%s(), qualify as such or use &, Bad index
7047 while coercing array into hash, Bareword "%s" refers to nonexistent
7048 package, Can't call method "%s" on an undefined value, Can't check
7049 filesystem of script "%s" for nosuid, Can't coerce array into hash, Can't
7050 goto subroutine from an eval-string, Can't localize pseudo-hash element,
7051 Can't use %%! because Errno.pm is not available, Cannot find an opnumber
7052 for "%s", Character class syntax [. .] is reserved for future extensions,
7053 Character class syntax [: :] is reserved for future extensions, Character
7054 class syntax [= =] is reserved for future extensions, %s: Eval-group in
7055 insecure regular expression, %s: Eval-group not allowed, use re 'eval', %s:
7056 Eval-group not allowed at run time, Explicit blessing to '' (assuming
7057 package main), Illegal hex digit ignored, No such array field, No such
7058 field "%s" in variable %s of type %s, Out of memory during ridiculously
7059 large request, Range iterator outside integer range, Recursive inheritance
7060 detected while looking for method '%s' %s, Reference found where even-sized
7061 list expected, Undefined value assigned to typeglob, Use of reserved word
7062 "%s" is deprecated, perl: warning: Setting locale failed
7063
7064 =item Obsolete Diagnostics
7065
7066 Can't mktemp(), Can't write to temp file for B<-e>: %s, Cannot open
7067 temporary file, regexp too big
7068
7069 =item Configuration Changes
7070
7071 =item BUGS
7072
7073 =item SEE ALSO
7074
7075 =item HISTORY
7076
7077 =back
7078
7079 =head2 perl5004delta - what's new for perl5.004
7080
7081 =over 4
7082
7083 =item DESCRIPTION
7084
7085 =item Supported Environments
7086
7087 =item Core Changes
7088
7089 =over 4
7090
7091 =item List assignment to %ENV works
7092
7093 =item Change to "Can't locate Foo.pm in @INC" error
7094
7095 =item Compilation option: Binary compatibility with 5.003
7096
7097 =item $PERL5OPT environment variable
7098
7099 =item Limitations on B<-M>, B<-m>, and B<-T> options
7100
7101 =item More precise warnings
7102
7103 =item Deprecated: Inherited C<AUTOLOAD> for non-methods
7104
7105 =item Previously deprecated %OVERLOAD is no longer usable
7106
7107 =item Subroutine arguments created only when they're modified
7108
7109 =item Group vector changeable with C<$)>
7110
7111 =item Fixed parsing of $$<digit>, &$<digit>, etc.
7112
7113 =item Fixed localization of $<digit>, $&, etc.
7114
7115 =item No resetting of $. on implicit close
7116
7117 =item C<wantarray> may return undef
7118
7119 =item C<eval EXPR> determines value of EXPR in scalar context
7120
7121 =item Changes to tainting checks
7122
7123 No glob() or <*>, No spawning if tainted $CDPATH, $ENV, $BASH_ENV, No
7124 spawning if tainted $TERM doesn't look like a terminal name
7125
7126 =item New Opcode module and revised Safe module
7127
7128 =item Embedding improvements
7129
7130 =item Internal change: FileHandle class based on IO::* classes
7131
7132 =item Internal change: PerlIO abstraction interface
7133
7134 =item New and changed syntax
7135
7136 $coderef->(PARAMS)
7137
7138 =item New and changed builtin constants
7139
7140 __PACKAGE__
7141
7142 =item New and changed builtin variables
7143
7144 $^E, $^H, $^M
7145
7146 =item New and changed builtin functions
7147
7148 delete on slices, flock, printf and sprintf, keys as an lvalue, my() in
7149 Control Structures, pack() and unpack(), sysseek(), use VERSION, use Module
7150 VERSION LIST, prototype(FUNCTION), srand, $_ as Default, C<m//gc> does not
7151 reset search position on failure, C<m//x> ignores whitespace before ?*+{},
7152 nested C<sub{}> closures work now, formats work right on changing lexicals
7153
7154 =item New builtin methods
7155
7156 isa(CLASS), can(METHOD), VERSION( [NEED] )
7157
7158 =item TIEHANDLE now supported
7159
7160 TIEHANDLE classname, LIST, PRINT this, LIST, PRINTF this, LIST, READ this
7161 LIST, READLINE this, GETC this, DESTROY this
7162
7163 =item Malloc enhancements
7164
7165 -DPERL_EMERGENCY_SBRK, -DPACK_MALLOC, -DTWO_POT_OPTIMIZE
7166
7167 =item Miscellaneous efficiency enhancements
7168
7169 =back
7170
7171 =item Support for More Operating Systems
7172
7173 =over 4
7174
7175 =item Win32
7176
7177 =item Plan 9
7178
7179 =item QNX
7180
7181 =item AmigaOS
7182
7183 =back
7184
7185 =item Pragmata
7186
7187 use autouse MODULE => qw(sub1 sub2 sub3), use blib, use blib 'dir', use
7188 constant NAME => VALUE, use locale, use ops, use vmsish
7189
7190 =item Modules
7191
7192 =over 4
7193
7194 =item Required Updates
7195
7196 =item Installation directories
7197
7198 =item Module information summary
7199
7200 =item Fcntl
7201
7202 =item IO
7203
7204 =item Math::Complex
7205
7206 =item Math::Trig
7207
7208 =item DB_File
7209
7210 =item Net::Ping
7211
7212 =item Object-oriented overrides for builtin operators
7213
7214 =back
7215
7216 =item Utility Changes
7217
7218 =over 4
7219
7220 =item pod2html
7221
7222 Sends converted HTML to standard output
7223
7224 =item xsubpp
7225
7226 C<void> XSUBs now default to returning nothing
7227
7228 =back
7229
7230 =item C Language API Changes
7231
7232 C<gv_fetchmethod> and C<perl_call_sv>, C<perl_eval_pv>, Extended API for
7233 manipulating hashes
7234
7235 =item Documentation Changes
7236
7237 L<perldelta>, L<perlfaq>, L<perllocale>, L<perltoot>, L<perlapio>,
7238 L<perlmodlib>, L<perldebug>, L<perlsec>
7239
7240 =item New Diagnostics
7241
7242 "my" variable %s masks earlier declaration in same scope, %s argument is
7243 not a HASH element or slice, Allocation too large: %lx, Allocation too
7244 large, Applying %s to %s will act on scalar(%s), Attempt to free
7245 nonexistent shared string, Attempt to use reference as lvalue in substr,
7246 Bareword "%s" refers to nonexistent package, Can't redefine active sort
7247 subroutine %s, Can't use bareword ("%s") as %s ref while "strict refs" in
7248 use, Cannot resolve method `%s' overloading `%s' in package `%s', Constant
7249 subroutine %s redefined, Constant subroutine %s undefined, Copy method did
7250 not return a reference, Died, Exiting pseudo-block via %s, Identifier too
7251 long, Illegal character %s (carriage return), Illegal switch in PERL5OPT:
7252 %s, Integer overflow in hex number, Integer overflow in octal number,
7253 internal error: glob failed, Invalid conversion in %s: "%s", Invalid type
7254 in pack: '%s', Invalid type in unpack: '%s', Name "%s::%s" used only once:
7255 possible typo, Null picture in formline, Offset outside string, Out of
7256 memory!, Out of memory during request for %s, panic: frexp, Possible
7257 attempt to put comments in qw() list, Possible attempt to separate words
7258 with commas, Scalar value @%s{%s} better written as $%s{%s}, Stub found
7259 while resolving method `%s' overloading `%s' in %s, Too late for "B<-T>"
7260 option, untie attempted while %d inner references still exist, Unrecognized
7261 character %s, Unsupported function fork, Use of "$$<digit>" to mean
7262 "${$}<digit>" is deprecated, Value of %s can be "0"; test with defined(),
7263 Variable "%s" may be unavailable, Variable "%s" will not stay shared,
7264 Warning: something's wrong, Ill-formed logical name |%s| in prime_env_iter,
7265 Got an error from DosAllocMem, Malformed PERLLIB_PREFIX, PERL_SH_DIR too
7266 long, Process terminated by SIG%s
7267
7268 =item BUGS
7269
7270 =item SEE ALSO
7271
7272 =item HISTORY
7273
7274 =back
7275
7276 =head2 perlartistic - the Perl Artistic License
7277
7278 =over 4
7279
7280 =item SYNOPSIS
7281
7282 =item DESCRIPTION
7283
7284 =item The "Artistic License"
7285
7286 =over 4
7287
7288 =item Preamble
7289
7290 =item Definitions
7291
7292 "Package", "Standard Version", "Copyright Holder", "You", "Reasonable
7293 copying fee", "Freely Available"
7294
7295 =item Conditions
7296
7297 a), b), c), d), a), b), c), d)
7298
7299 =back
7300
7301 =back
7302
7303 =head2 perlgpl - the GNU General Public License, version 2
7304
7305 =over 4
7306
7307 =item SYNOPSIS
7308
7309 =back
7310
7311 =over 4
7312
7313 =item DESCRIPTION
7314
7315 =item GNU GENERAL PUBLIC LICENSE
7316
7317 =back
7318
7319 =head2 perlaix, README.aix - Perl version 5 on IBM Unix (AIX) systems
7320
7321 =over 4
7322
7323 =item DESCRIPTION
7324
7325 =over 4
7326
7327 =item Compiling Perl 5 on AIX
7328
7329 =item OS level
7330
7331 =item Building Dynamic Extensions on AIX
7332
7333 =item The IBM ANSI C Compiler
7334
7335 =item The usenm option
7336
7337 =item Using GNU's gcc for building perl
7338
7339 =item Using Large Files with Perl
7340
7341 =item Threaded Perl
7342
7343 =item 64-bit Perl
7344
7345 =item AIX 4.2 and extensions using C++ with statics
7346
7347 =back
7348
7349 =item AUTHOR
7350
7351 =item DATE
7352
7353 =back
7354
7355 =head2 perlamiga - Perl under Amiga OS
7356
7357 =over 4
7358
7359 =item NOTE
7360
7361 =item SYNOPSIS
7362
7363 =back
7364
7365 =over 4
7366
7367 =item DESCRIPTION
7368
7369 =over 4
7370
7371 =item Prerequisites for Compiling Perl on AmigaOS
7372
7373 B<Unix emulation for AmigaOS: ixemul.library>, B<Version of Amiga OS>
7374
7375 =item Starting Perl programs under AmigaOS
7376
7377 =item Shortcomings of Perl under AmigaOS
7378
7379 =back
7380
7381 =item INSTALLATION
7382
7383 =item Accessing documentation
7384
7385 =over 4
7386
7387 =item Manpages for Perl on AmigaOS
7388
7389 =item Perl HTML Documentation on AmigaOS
7390
7391 =item Perl GNU Info Files on AmigaOS
7392
7393 =item Perl LaTeX Documentation on AmigaOS
7394
7395 =back
7396
7397 =item BUILDING PERL ON AMIGAOS
7398
7399 =over 4
7400
7401 =item Build Prerequisites for Perl on AmigaOS
7402
7403 =item Getting the Perl Source for AmigaOS
7404
7405 =item Making Perl on AmigaOS
7406
7407 =item Testing Perl on AmigaOS
7408
7409 =item Installing the built Perl on AmigaOS
7410
7411 =back
7412
7413 =item PERL 5.8.0 BROKEN IN AMIGAOS
7414
7415 =item AUTHORS
7416
7417 =item SEE ALSO
7418
7419 =back
7420
7421 =head2 perlapollo, README.apollo - Perl version 5 on Apollo DomainOS
7422
7423 =over 4
7424
7425 =item DESCRIPTION
7426
7427 =item AUTHOR
7428
7429 =back
7430
7431 =head2 perlbeos, README.beos - Perl version 5 on BeOS
7432
7433 =over 4
7434
7435 =item DESCRIPTION
7436
7437 =over 4
7438
7439 =item General Issues with Perl on BeOS
7440
7441 =item BeOS Release-specific Notes
7442
7443 R4 x86, R4 PPC
7444
7445 =item Contact Information
7446
7447 =item Update 2002-05-30
7448
7449 =back
7450
7451 =back
7452
7453 =head2 perlbs2000, README.BS2000 - building and installing Perl for BS2000.
7454
7455 =over 4
7456
7457 =item SYNOPSIS
7458
7459 =item DESCRIPTION
7460
7461 =over 4
7462
7463 =item gzip on BS2000
7464
7465 =item bison on BS2000
7466
7467 =item Unpacking Perl Distribution on BS2000
7468
7469 =item Compiling Perl on BS2000
7470
7471 =item Testing Perl on BS2000
7472
7473 =item Installing Perl on BS2000
7474
7475 =item Using Perl in the Posix-Shell of BS2000
7476
7477 =item Using Perl in "native" BS2000
7478
7479 =item Floating point anomalies on BS2000
7480
7481 =item Using PerlIO and different encodings on ASCII and EBCDIC partitions
7482
7483 =back
7484
7485 =item AUTHORS
7486
7487 =item SEE ALSO
7488
7489 =over 4
7490
7491 =item Mailing list
7492
7493 =back
7494
7495 =item HISTORY
7496
7497 =back
7498
7499 =over 4
7500
7501 =item Name
7502
7503 =item Description
7504
7505 =item Build
7506
7507 =over 4
7508
7509 =item Tools & SDK
7510
7511 Microsoft Embedded Visual Tools, Microsoft Visual C++, Rainer Keuchel's
7512 celib-sources, Rainer Keuchel's console-sources
7513
7514 =item Make
7515
7516 go to ./wince subdirectory, edit file compile.bat, run    compile.bat, run 
7517   compile.bat dist
7518
7519 =back
7520
7521 =item Acknowledgements
7522
7523 =item AUTHORS
7524
7525 =back
7526
7527 =head2 perlcygwin, README.cygwin - Perl for Cygwin
7528
7529 =over 4
7530
7531 =item SYNOPSIS
7532
7533 =item PREREQUISITES FOR COMPILING PERL ON CYGWIN
7534
7535 =over 4
7536
7537 =item Cygwin = GNU+Cygnus+Windows (Don't leave UNIX without it)
7538
7539 =item Cygwin Configuration
7540
7541 C<PATH>, I<nroff>, Permissions
7542
7543 =back
7544
7545 =item CONFIGURE PERL ON CYGWIN
7546
7547 =over 4
7548
7549 =item Stripping Perl Binaries on Cygwin
7550
7551 =item Optional Libraries for Perl on Cygwin
7552
7553 C<-lcrypt>, C<-lgdbm> (C<use GDBM_File>), C<-ldb> (C<use DB_File>),
7554 C<-lcygipc> (C<use IPC::SysV>), C<-lutil>
7555
7556 =item Configure-time Options for Perl on Cygwin
7557
7558 C<-Uusedl>, C<-Uusemymalloc>, C<-Uuseperlio>, C<-Dusemultiplicity>,
7559 C<-Duse64bitint>, C<-Duselongdouble>, C<-Dusethreads>, C<-Duselargefiles>,
7560 C<-Dmksymlinks>
7561
7562 =item Suspicious Warnings on Cygwin
7563
7564 I<dlsym()>, Win9x and C<d_eofnblk>, Compiler/Preprocessor defines
7565
7566 =back
7567
7568 =item MAKE ON CYGWIN
7569
7570 =over 4
7571
7572 =item Errors on Cygwin
7573
7574 =item ld2 on Cygwin
7575
7576 =back
7577
7578 =item TEST ON CYGWIN
7579
7580 =over 4
7581
7582 =item File Permissions on Cygwin
7583
7584 =item NDBM_File and ODBM_File do not work on FAT filesystems
7585
7586 =item C<fork()> failures in io_* tests
7587
7588 =item Script Portability on Cygwin
7589
7590 Pathnames, Text/Binary, PerlIO, F<.exe>, C<chown()>, Miscellaneous
7591
7592 =back
7593
7594 =item INSTALL PERL ON CYGWIN
7595
7596 =item MANIFEST ON CYGWIN
7597
7598 Documentation, Build, Configure, Make, Install, Tests, Compiled Perl
7599 Source, Compiled Module Source, Perl Modules/Scripts
7600
7601 =item BUGS ON CYGWIN
7602
7603 =item AUTHORS
7604
7605 =item HISTORY
7606
7607 =back
7608
7609 =head2 perldgux - Perl under DG/UX.
7610
7611 =over 4
7612
7613 =item SYNOPSIS
7614
7615 =back
7616
7617 =over 4
7618
7619 =item DESCRIPTION
7620
7621 =item BUILDING PERL ON DG/UX
7622
7623 =over 4
7624
7625 =item Non-threaded Perl on DG/UX
7626
7627 =item Threaded Perl on DG/UX
7628
7629 =item Testing Perl on DG/UX
7630
7631 =item Installing the built perl on DG/UX
7632
7633 =back
7634
7635 =item AUTHOR
7636
7637 =item SEE ALSO
7638
7639 =back
7640
7641 =head2 perldos - Perl under DOS, W31, W95.
7642
7643 =over 4
7644
7645 =item SYNOPSIS
7646
7647 =item DESCRIPTION
7648
7649 =over 4
7650
7651 =item Prerequisites for Compiling Perl on DOS
7652
7653 DJGPP, Pthreads
7654
7655 =item Shortcomings of Perl under DOS
7656
7657 =item Building Perl on DOS
7658
7659 =item Testing Perl on DOS
7660
7661 =item Installation of Perl on DOS
7662
7663 =back
7664
7665 =item BUILDING AND INSTALLING MODULES ON DOS
7666
7667 =over 4
7668
7669 =item Building Prerequisites for Perl on DOS
7670
7671 =item Unpacking CPAN Modules on DOS
7672
7673 =item Building Non-XS Modules on DOS
7674
7675 =item Building XS Modules on DOS
7676
7677 =back
7678
7679 =item AUTHOR
7680
7681 =item SEE ALSO
7682
7683 =back
7684
7685 =head2 perlepoc, README.epoc - Perl for EPOC
7686
7687 =over 4
7688
7689 =item SYNOPSIS
7690
7691 =item INTRODUCTION
7692
7693 =item INSTALLING PERL ON EPOC
7694
7695 =item STARTING PERL ON EPOC
7696
7697 =over 4
7698
7699 =item Editors on Epoc
7700
7701 =item Features of Perl on Epoc
7702
7703 =item Restrictions of Perl on Epoc
7704
7705 =item Compiling Perl 5 on the EPOC cross compiling environment
7706
7707 =back
7708
7709 =item SUPPORT STATUS OF PERL ON EPOC
7710
7711 =item AUTHOR
7712
7713 =item LAST UPDATE
7714
7715 =back
7716
7717 =head2 perlfreebsd, README.freebsd - Perl version 5 on FreeBSD systems
7718
7719 =over 4
7720
7721 =item DESCRIPTION
7722
7723 =over 4
7724
7725 =item FreeBSD core dumps from readdir_r with ithreads
7726
7727 =item $^X doesn't always contain a full path in FreeBSD
7728
7729 =item Perl will no longer be part of "base FreeBSD"
7730
7731 =back
7732
7733 =item AUTHOR
7734
7735 =back
7736
7737 =head2 perlhpux, README.hpux - Perl version 5 on Hewlett-Packard Unix
7738 (HP-UX) systems
7739
7740 =over 4
7741
7742 =item DESCRIPTION
7743
7744 =over 4
7745
7746 =item Using perl as shipped with HP-UX
7747
7748 =item Using perl from HP's porting centre
7749
7750 =item Compiling Perl 5 on HP-UX
7751
7752 =item PA-RISC
7753
7754 =item PA-RISC 1.0
7755
7756 =item PA-RISC 1.1
7757
7758 =item PA-RISC 2.0
7759
7760 =item Itanium
7761
7762 =item Portability Between PA-RISC Versions
7763
7764 =item Itanium Processor Family and HP-UX
7765
7766 =item Building Dynamic Extensions on HP-UX
7767
7768 =item The HP ANSI C Compiler
7769
7770 =item The GNU C Compiler
7771
7772 =item Using Large Files with Perl on HP-UX
7773
7774 =item Threaded Perl on HP-UX
7775
7776 =item 64-bit Perl on HP-UX
7777
7778 =item Oracle on HP-UX
7779
7780 =item GDBM and Threads on HP-UX
7781
7782 =item NFS filesystems and utime(2) on HP-UX
7783
7784 =item perl -P and // and HP-UX
7785
7786 =item HP-UX Kernel Parameters (maxdsiz) for Compiling Perl
7787
7788 =back
7789
7790 =item nss_delete core dump from op/pwent or op/grent
7791
7792 =item AUTHOR
7793
7794 =item DATE
7795
7796 =back
7797
7798 =head2 perlhurd, README.hurd - Perl version 5 on Hurd
7799
7800 =over 4
7801
7802 =item DESCRIPTION
7803
7804 =over 4
7805
7806 =item Known Problems with Perl on Hurd 
7807
7808 =back
7809
7810 =item AUTHOR
7811
7812 =back
7813
7814 =head2 perlirix, README.irix - Perl version 5 on Irix systems
7815
7816 =over 4
7817
7818 =item DESCRIPTION
7819
7820 =over 4
7821
7822 =item Building 32-bit Perl in Irix
7823
7824 =item Building 64-bit Perl in Irix
7825
7826 =item About Compiler Versions of Irix
7827
7828 =item Linker Problems in Irix
7829
7830 =item Malloc in Irix
7831
7832 =item Building with threads in Irix
7833
7834 =item Irix 5.3
7835
7836 =back
7837
7838 =item AUTHOR
7839
7840 =back
7841
7842 =head2 perlmachten, README.machten - Perl version 5 on Power MachTen
7843 systems
7844
7845 =over 4
7846
7847 =item DESCRIPTION
7848
7849 =over 4
7850
7851 =item Compiling Perl 5 on MachTen
7852
7853 =item Failures during C<make test> on MachTen
7854
7855 op/lexassign.t, pragma/warnings.t
7856
7857 =item Building external modules on MachTen
7858
7859 =back
7860
7861 =item AUTHOR
7862
7863 =item DATE
7864
7865 =back
7866
7867 =head2 perlmacos, README.macos - Perl under Mac OS (Classic)
7868
7869 =over 4
7870
7871 =item SYNOPSIS
7872
7873 =item DESCRIPTION
7874
7875 =item AUTHOR
7876
7877 =item DATE
7878
7879 =back
7880
7881 =head2 perlmacosx, README.macosx - Perl under Mac OS X
7882
7883 =over 4
7884
7885 =item SYNOPSIS
7886
7887 =item DESCRIPTION
7888
7889 =over 4
7890
7891 =item Installation Prefix
7892
7893 =item libperl and Prebinding
7894
7895 =item Updating Panther
7896
7897 =item Known problems
7898
7899 =item MacPerl
7900
7901 =item Carbon
7902
7903 =item Cocoa
7904
7905 =back
7906
7907 =item Starting From Scratch
7908
7909 =item AUTHOR
7910
7911 =item DATE
7912
7913 =back
7914
7915 =head2 perlmint, README.mint - Perl version 5 on Atari MiNT
7916
7917 =over 4
7918
7919 =item DESCRIPTION
7920
7921 =item Known problems with Perl on MiNT
7922
7923 =item AUTHOR
7924
7925 =back
7926
7927 =head2 perlmpeix, README.mpeix - Perl/iX for HP e3000 MPE
7928
7929 =over 4
7930
7931 =item SYNOPSIS
7932
7933 =item NOTE
7934
7935 =item Binary distribution from HP
7936
7937 =item What's New in Perl for MPE/iX
7938
7939 =item Welcome to Perl/iX
7940
7941 =item System Requirements for Perl/iX
7942
7943 =item How to Obtain Perl/iX
7944
7945 =item Perl/iX Distribution Contents Highlights
7946
7947 README, INSTALL, LIBSHP3K, PERL, .cpan/, lib/, man/,
7948 public_html/feedback.cgi, src/perl-5.6.0-mpe
7949
7950 =item How to Compile Perl/iX
7951
7952  4,  6
7953
7954 =item Getting Started with Perl/iX
7955
7956 =item MPE/iX Implementation Considerations
7957
7958 =item Known Perl/iX Bugs Under Investigation
7959
7960 =item Perl/iX To-Do List
7961
7962 =item Perl/iX Change History
7963
7964 =item AUTHOR
7965
7966 =item Name
7967
7968 =item Description
7969
7970 =item Build
7971
7972 =over 4
7973
7974 =item Tools & SDK
7975
7976 =item Setup
7977
7978 SetNWBld.bat, Buildtype.bat
7979
7980 =item Make
7981
7982 =item Interpreter
7983
7984 =item Extensions
7985
7986 =back
7987
7988 =item Install
7989
7990 =item Build new extensions
7991
7992 =item Acknowledgements
7993
7994 =item Authors
7995
7996 =item Date
7997
7998 =back
7999
8000 =head2 perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
8001
8002 =over 4
8003
8004 =item SYNOPSIS
8005
8006 =back
8007
8008 =over 4
8009
8010 =item DESCRIPTION
8011
8012 =over 4
8013
8014 =item Target
8015
8016 =item Other OSes
8017
8018 =item Prerequisites
8019
8020 EMX, RSX, HPFS, pdksh
8021
8022 =item Starting Perl programs under OS/2 (and DOS and...)
8023
8024 =item Starting OS/2 (and DOS) programs under Perl
8025
8026 =back
8027
8028 =item Frequently asked questions
8029
8030 =over 4
8031
8032 =item "It does not work"
8033
8034 =item I cannot run external programs
8035
8036 =item I cannot embed perl into my program, or use F<perl.dll> from my
8037 program. 
8038
8039 Is your program EMX-compiled with C<-Zmt -Zcrtdll>?, Did you use
8040 L<ExtUtils::Embed>?
8041
8042 =item C<``> and pipe-C<open> do not work under DOS.
8043
8044 =item Cannot start C<find.exe "pattern" file>
8045
8046 =back
8047
8048 =item INSTALLATION
8049
8050 =over 4
8051
8052 =item Automatic binary installation
8053
8054 C<PERL_BADLANG>, C<PERL_BADFREE>, F<Config.pm>
8055
8056 =item Manual binary installation
8057
8058 Perl VIO and PM executables (dynamically linked), Perl_ VIO executable
8059 (statically linked), Executables for Perl utilities, Main Perl library,
8060 Additional Perl modules, Tools to compile Perl modules, Manpages for Perl
8061 and utilities, Manpages for Perl modules, Source for Perl documentation,
8062 Perl manual in F<.INF> format, Pdksh
8063
8064 =item B<Warning>
8065
8066 =back
8067
8068 =item Accessing documentation
8069
8070 =over 4
8071
8072 =item OS/2 F<.INF> file
8073
8074 =item Plain text
8075
8076 =item Manpages
8077
8078 =item HTML
8079
8080 =item GNU C<info> files
8081
8082 =item F<PDF> files
8083
8084 =item C<LaTeX> docs
8085
8086 =back
8087
8088 =item BUILD
8089
8090 =over 4
8091
8092 =item The short story
8093
8094 =item Prerequisites
8095
8096 =item Getting perl source
8097
8098 =item Application of the patches
8099
8100 =item Hand-editing
8101
8102 =item Making
8103
8104 =item Testing
8105
8106 A lot of C<bad free>, Process terminated by SIGTERM/SIGINT, F<op/fs.t>,
8107 F<op/stat.t>
8108
8109 =item Installing the built perl
8110
8111 =item C<a.out>-style build
8112
8113 =back
8114
8115 =item Build FAQ
8116
8117 =over 4
8118
8119 =item Some C</> became C<\> in pdksh.
8120
8121 =item C<'errno'> - unresolved external
8122
8123 =item Problems with tr or sed
8124
8125 =item Some problem (forget which ;-)
8126
8127 =item Library ... not found
8128
8129 =item Segfault in make
8130
8131 =item op/sprintf test failure
8132
8133 =back
8134
8135 =item Specific (mis)features of OS/2 port
8136
8137 =over 4
8138
8139 =item C<setpriority>, C<getpriority>
8140
8141 =item C<system()>
8142
8143 =item C<extproc> on the first line
8144
8145 =item Additional modules:
8146
8147 =item Prebuilt methods:
8148
8149 C<File::Copy::syscopy>, C<DynaLoader::mod2fname>,  C<Cwd::current_drive()>,
8150  C<Cwd::sys_chdir(name)>,  C<Cwd::change_drive(name)>, 
8151 C<Cwd::sys_is_absolute(name)>,  C<Cwd::sys_is_rooted(name)>, 
8152 C<Cwd::sys_is_relative(name)>,  C<Cwd::sys_cwd(name)>, 
8153 C<Cwd::sys_abspath(name, dir)>,  C<Cwd::extLibpath([type])>, 
8154 C<Cwd::extLibpath_set( path [, type ] )>,
8155 C<OS2::Error(do_harderror,do_exception)>, C<OS2::Errors2Drive(drive)>,
8156 OS2::SysInfo(), OS2::BootDrive(), C<OS2::MorphPM(serve)>,
8157 C<OS2::UnMorphPM(serve)>, C<OS2::Serve_Messages(force)>,
8158 C<OS2::Process_Messages(force [, cnt])>, C<OS2::_control87(new,mask)>,
8159 OS2::get_control87(), C<OS2::set_control87_em(new=MCW_EM,mask=MCW_EM)>,
8160 C<OS2::DLLname([how [, \&xsub]])>
8161
8162 =item Prebuilt variables:
8163
8164 $OS2::emx_rev, $OS2::emx_env, $OS2::os_ver, $OS2::is_aout, $OS2::can_fork,
8165 $OS2::nsyserror
8166
8167 =item Misfeatures
8168
8169 =item Modifications
8170
8171 C<popen>, C<tmpnam>, C<tmpfile>, C<ctermid>, C<stat>, C<mkdir>, C<rmdir>,
8172 C<flock>
8173
8174 =item Identifying DLLs
8175
8176 =item Centralized management of resources
8177
8178 C<HAB>, C<HMQ>, Treating errors reported by OS/2 API,
8179 C<CheckOSError(expr)>, C<CheckWinError(expr)>, C<SaveWinError(expr)>,
8180 C<SaveCroakWinError(expr,die,name1,name2)>, C<WinError_2_Perl_rc>,
8181 C<FillWinError>, C<FillOSError(rc)>, Loading DLLs and ordinals in DLLs
8182
8183 =back
8184
8185 =item Perl flavors
8186
8187 =over 4
8188
8189 =item F<perl.exe>
8190
8191 =item F<perl_.exe>
8192
8193 =item F<perl__.exe>
8194
8195 =item F<perl___.exe>
8196
8197 =item Why strange names?
8198
8199 =item Why dynamic linking?
8200
8201 =item Why chimera build?
8202
8203 =back
8204
8205 =item ENVIRONMENT
8206
8207 =over 4
8208
8209 =item C<PERLLIB_PREFIX>
8210
8211 =item C<PERL_BADLANG>
8212
8213 =item C<PERL_BADFREE>
8214
8215 =item C<PERL_SH_DIR>
8216
8217 =item C<USE_PERL_FLOCK>
8218
8219 =item C<TMP> or C<TEMP>
8220
8221 =back
8222
8223 =item Evolution
8224
8225 =over 4
8226
8227 =item Text-mode filehandles
8228
8229 =item Priorities
8230
8231 =item DLL name mangling: pre 5.6.2
8232
8233 =item DLL name mangling: 5.6.2 and beyond
8234
8235 Global DLLs, specific DLLs, C<BEGINLIBPATH> and C<ENDLIBPATH>, F<.> from
8236 C<LIBPATH>
8237
8238 =item DLL forwarder generation
8239
8240 =item Threading
8241
8242 =item Calls to external programs
8243
8244 =item Memory allocation
8245
8246 =item Threads
8247
8248 C<COND_WAIT>, F<os2.c>
8249
8250 =back
8251
8252 =item BUGS
8253
8254 =back
8255
8256 =over 4
8257
8258 =item AUTHOR
8259
8260 =item SEE ALSO
8261
8262 =back
8263
8264 =head2 perlos390, README.os390 - building and installing Perl for OS/390
8265 and z/OS
8266
8267 =over 4
8268
8269 =item SYNOPSIS
8270
8271 =item DESCRIPTION
8272
8273 =over 4
8274
8275 =item Tools
8276
8277 =item Unpacking Perl distribution on OS/390
8278
8279 =item Setup and utilities for Perl on OS/390
8280
8281 =item Configure Perl on OS/390
8282
8283 =item Build, Test, Install Perl on OS/390
8284
8285 =item Build Anomalies with Perl on OS/390
8286
8287 =item Testing Anomalies with Perl on OS/390
8288
8289 =item Installation Anomalies with Perl on OS/390
8290
8291 =item Usage Hints for Perl on OS/390
8292
8293 =item Floating Point Anomalies with Perl on OS/390
8294
8295 =item Modules and Extensions for Perl on OS/390
8296
8297 =back
8298
8299 =item AUTHORS
8300
8301 =item SEE ALSO
8302
8303 =over 4
8304
8305 =item Mailing list for Perl on OS/390
8306
8307 =back
8308
8309 =item HISTORY
8310
8311 =back
8312
8313 =head2 perlos400, README.os400 - Perl version 5 on OS/400
8314
8315 =over 4
8316
8317 =item DESCRIPTION
8318
8319 =over 4
8320
8321 =item Compiling Perl for OS/400 PASE
8322
8323 =item Installing Perl in OS/400 PASE
8324
8325 =item Using Perl in OS/400 PASE
8326
8327 =item Known Problems
8328
8329 =item Perl on ILE
8330
8331 =back
8332
8333 =item AUTHORS
8334
8335 =back
8336
8337 =head2 perlplan9 - Plan 9-specific documentation for Perl
8338
8339 =over 4
8340
8341 =item DESCRIPTION
8342
8343 =over 4
8344
8345 =item Invoking Perl
8346
8347 =item What's in Plan 9 Perl
8348
8349 =item What's not in Plan 9 Perl
8350
8351 =item Perl5 Functions not currently supported in Plan 9 Perl
8352
8353 =item Signals in Plan 9 Perl
8354
8355 =back
8356
8357 =item COMPILING AND INSTALLING PERL ON PLAN 9
8358
8359 =over 4
8360
8361 =item Installing Perl Documentation on Plan 9
8362
8363 =back
8364
8365 =item BUGS
8366
8367 =item Revision date
8368
8369 =item AUTHOR
8370
8371 =back
8372
8373 =head2 perlqnx, README.qnx - Perl version 5 on QNX
8374
8375 =over 4
8376
8377 =item DESCRIPTION
8378
8379 =over 4
8380
8381 =item Required Software for Compiling Perl on QNX4
8382
8383 /bin/sh, ar, nm, cpp, make
8384
8385 =item Outstanding Issues with Perl on QNX4
8386
8387 =item QNX auxiliary files
8388
8389 qnx/ar, qnx/cpp
8390
8391 =item Outstanding issues with perl under QNX6
8392
8393 =back
8394
8395 =item AUTHOR
8396
8397 =back
8398
8399 =head2 perlsolaris, README.solaris - Perl version 5 on Solaris systems
8400
8401 =over 4
8402
8403 =item DESCRIPTION
8404
8405 =over 4
8406
8407 =item Solaris Version Numbers.
8408
8409 =back
8410
8411 =item RESOURCES
8412
8413 Solaris FAQ, Precompiled Binaries, Solaris Documentation
8414
8415 =item SETTING UP
8416
8417 =over 4
8418
8419 =item File Extraction Problems on Solaris.
8420
8421 =item Compiler and Related Tools on Solaris.
8422
8423 =item Environment for Compiling perl on Solaris
8424
8425 =back
8426
8427 =item RUN CONFIGURE.
8428
8429 =over 4
8430
8431 =item 64-bit perl on Solaris.
8432
8433 =item Threads in perl on Solaris.
8434
8435 =item Malloc Issues with perl on Solaris.
8436
8437 =back
8438
8439 =item MAKE PROBLEMS.
8440
8441 Dynamic Loading Problems With GNU as and GNU ld, ld.so.1: ./perl: fatal:
8442 relocation error:, dlopen: stub interception failed, #error "No
8443 DATAMODEL_NATIVE specified", sh: ar: not found
8444
8445 =item MAKE TEST
8446
8447 =over 4
8448
8449 =item op/stat.t test 4 in Solaris
8450
8451 =item nss_delete core dump from op/pwent or op/grent
8452
8453 =back
8454
8455 =item PREBUILT BINARIES OF PERL FOR SOLARIS.
8456
8457 =item RUNTIME ISSUES FOR PERL ON SOLARIS.
8458
8459 =over 4
8460
8461 =item Limits on Numbers of Open Files on Solaris.
8462
8463 =back
8464
8465 =item SOLARIS-SPECIFIC MODULES.
8466
8467 =item SOLARIS-SPECIFIC PROBLEMS WITH MODULES.
8468
8469 =over 4
8470
8471 =item Proc::ProcessTable on Solaris
8472
8473 =item BSD::Resource on Solaris
8474
8475 =item Net::SSLeay on Solaris
8476
8477 =back
8478
8479 =item SunOS 4.x
8480
8481 =item AUTHOR
8482
8483 =item LAST MODIFIED
8484
8485 =back
8486
8487 =head2 perltru64, README.tru64 - Perl version 5 on Tru64 (formerly known as
8488 Digital UNIX formerly known as DEC OSF/1) systems
8489
8490 =over 4
8491
8492 =item DESCRIPTION
8493
8494 =over 4
8495
8496 =item Compiling Perl 5 on Tru64
8497
8498 =item Using Large Files with Perl on Tru64
8499
8500 =item Threaded Perl on Tru64
8501
8502 =item Long Doubles on Tru64
8503
8504 =item DB_File tests failing on Tru64
8505
8506 =item 64-bit Perl on Tru64
8507
8508 =item Warnings about floating-point overflow when compiling Perl on Tru64
8509
8510 =back
8511
8512 =item Testing Perl on Tru64
8513
8514 =item ext/ODBM_File/odbm Test Failing With Static Builds
8515
8516 =item Perl Fails Because Of Unresolved Symbol sockatmark
8517
8518 =item AUTHOR
8519
8520 =back
8521
8522 =head2 perluts - Perl under UTS
8523
8524 =over 4
8525
8526 =item SYNOPSIS
8527
8528 =item DESCRIPTION
8529
8530 =item BUILDING PERL ON UTS
8531
8532 =item Installing the built perl on UTS
8533
8534 =item AUTHOR
8535
8536 =back
8537
8538 =head2 perlvmesa, README.vmesa - building and installing Perl for VM/ESA.
8539
8540 =over 4
8541
8542 =item SYNOPSIS
8543
8544 =item DESCRIPTION
8545
8546 =over 4
8547
8548 =item Unpacking Perl Distribution on VM/ESA
8549
8550 =item Setup Perl and utilities on VM/ESA
8551
8552 =item Configure Perl on VM/ESA
8553
8554 =item Testing Anomalies of Perl on VM/ESA
8555
8556 =item Usage Hints for Perl on VM/ESA
8557
8558 =back
8559
8560 =item AUTHORS
8561
8562 =item SEE ALSO
8563
8564 =over 4
8565
8566 =item Mailing list for Perl on VM/ESA
8567
8568 =back
8569
8570 =back
8571
8572 =head2 perlvms - VMS-specific documentation for Perl
8573
8574 =over 4
8575
8576 =item DESCRIPTION
8577
8578 =item Installation
8579
8580 =item Organization of Perl Images
8581
8582 =over 4
8583
8584 =item Core Images
8585
8586 =item Perl Extensions
8587
8588 =item Installing static extensions
8589
8590 =item Installing dynamic extensions
8591
8592 =back
8593
8594 =item File specifications
8595
8596 =over 4
8597
8598 =item Syntax
8599
8600 =item Wildcard expansion
8601
8602 =item Pipes
8603
8604 =back
8605
8606 =item PERL5LIB and PERLLIB
8607
8608 =item Command line
8609
8610 =over 4
8611
8612 =item I/O redirection and backgrounding
8613
8614 =item Command line switches
8615
8616 -i, -S, -u
8617
8618 =back
8619
8620 =item Perl functions
8621
8622 File tests, backticks, binmode FILEHANDLE, crypt PLAINTEXT, USER, dump,
8623 exec LIST, fork, getpwent, getpwnam, getpwuid, gmtime, kill, qx//, select
8624 (system call), stat EXPR, system LIST, time, times, unlink LIST, utime
8625 LIST, waitpid PID,FLAGS
8626
8627 =item Perl variables
8628
8629 %ENV, CRTL_ENV, CLISYM_[LOCAL], Any other string, $!, $^E, $?, $|
8630
8631 =item Standard modules with VMS-specific differences
8632
8633 =over 4
8634
8635 =item SDBM_File
8636
8637 =back
8638
8639 =item Revision date
8640
8641 =item AUTHOR
8642
8643 =back
8644
8645 =head2 perlvos, README.vos - Perl for Stratus VOS
8646
8647 =over 4
8648
8649 =item SYNOPSIS
8650
8651 =item BUILDING PERL FOR VOS
8652
8653 =item INSTALLING PERL IN VOS
8654
8655 =item USING PERL IN VOS
8656
8657 =over 4
8658
8659 =item Restrictions of Perl on VOS
8660
8661 =item Handling of underflow and overflow
8662
8663 =back
8664
8665 =item TEST STATUS
8666
8667 =item SUPPORT STATUS
8668
8669 =item AUTHOR
8670
8671 =item LAST UPDATE
8672
8673 =back
8674
8675 =head2 perlwin32 - Perl under Windows
8676
8677 =over 4
8678
8679 =item SYNOPSIS
8680
8681 =item DESCRIPTION
8682
8683 =over 4
8684
8685 =item Setting Up Perl on Win32
8686
8687 Make, Command Shell, Borland C++, Microsoft Visual C++, Microsoft Platform
8688 SDK 64-bit Compiler, MinGW32 with gcc, MinGW release 1
8689
8690 =item Building
8691
8692 =item Testing Perl on Win32
8693
8694 =item Installation of Perl on Win32
8695
8696 =item Usage Hints for Perl on Win32
8697
8698 Environment Variables, File Globbing, Using perl from the command line,
8699 Building Extensions, Command-line Wildcard Expansion, Win32 Specific
8700 Extensions, Notes on 64-bit Windows
8701
8702 =item Running Perl Scripts
8703
8704 Miscellaneous Things
8705
8706 =back
8707
8708 =item BUGS AND CAVEATS
8709
8710 =item AUTHORS
8711
8712 Gary Ng E<lt>71564.1743@CompuServe.COME<gt>, Gurusamy Sarathy
8713 E<lt>gsar@activestate.comE<gt>, Nick Ing-Simmons
8714 E<lt>nick@ing-simmons.netE<gt>
8715
8716 =item SEE ALSO
8717
8718 =item HISTORY
8719
8720 =back
8721
8722 =head1 PRAGMA DOCUMENTATION
8723
8724 =head2 attrs - set/get attributes of a subroutine (deprecated)
8725
8726 =over 4
8727
8728 =item SYNOPSIS
8729
8730 =item DESCRIPTION
8731
8732 method, locked
8733
8734 =back
8735
8736 =head2 re - Perl pragma to alter regular expression behaviour
8737
8738 =over 4
8739
8740 =item SYNOPSIS
8741
8742 =item DESCRIPTION
8743
8744 =back
8745
8746 =head2 threadshared::shared, threads::shared - Perl extension for sharing
8747 data structures between threads
8748
8749 =over 4
8750
8751 =item SYNOPSIS
8752
8753 =item DESCRIPTION
8754
8755 =item EXPORT
8756
8757 =item FUNCTIONS
8758
8759 share VARIABLE, lock VARIABLE, cond_wait VARIABLE, cond_signal VARIABLE,
8760 cond_broadcast VARIABLE
8761
8762 =item NOTES
8763
8764 =item BUGS
8765
8766 =item AUTHOR
8767
8768 =item SEE ALSO
8769
8770 =back
8771
8772 =head2 threads - Perl extension allowing use of interpreter based threads
8773 from perl
8774
8775 =over 4
8776
8777 =item SYNOPSIS
8778
8779 =item DESCRIPTION
8780
8781 $thread = threads->create(function, LIST), $thread->join, $thread->detach,
8782 threads->self, $thread->tid, threads->object( tid ), threads->yield();,
8783 threads->list();, async BLOCK;
8784
8785 =item WARNINGS
8786
8787 A thread exited while %d other threads were still running
8788
8789 =item TODO
8790
8791 =item BUGS
8792
8793 Parent-Child threads, Returning objects, Creating threads inside BEGIN
8794 blocks, PERL_OLD_SIGNALS are not threadsafe, will not be
8795
8796 =item AUTHOR and COPYRIGHT
8797
8798 =item SEE ALSO
8799
8800 =back
8801
8802 =head2 assertions - select assertions in blocks of code
8803
8804 =over 4
8805
8806 =item SYNOPSIS
8807
8808 =item DESCRIPTION
8809
8810 =item SEE ALSO
8811
8812 =item AUTHOR
8813
8814 =item COPYRIGHT AND LICENSE
8815
8816 =back
8817
8818 =head2 assertions::activate - activate assertions
8819
8820 =over 4
8821
8822 =item SYNOPSIS
8823
8824 =item DESCRIPTION
8825
8826 =item SEE ALSO
8827
8828 =item AUTHOR
8829
8830 =item COPYRIGHT AND LICENSE
8831
8832 =back
8833
8834 =head2 attributes - get/set subroutine or variable attributes
8835
8836 =over 4
8837
8838 =item SYNOPSIS
8839
8840 =item DESCRIPTION
8841
8842 =over 4
8843
8844 =item Built-in Attributes
8845
8846 locked, method, lvalue
8847
8848 =item Available Subroutines
8849
8850 get, reftype
8851
8852 =item Package-specific Attribute Handling
8853
8854 FETCH_I<type>_ATTRIBUTES, MODIFY_I<type>_ATTRIBUTES
8855
8856 =item Syntax of Attribute Lists
8857
8858 =back
8859
8860 =item EXPORTS
8861
8862 =over 4
8863
8864 =item Default exports
8865
8866 =item Available exports
8867
8868 =item Export tags defined
8869
8870 =back
8871
8872 =item EXAMPLES
8873
8874 =item SEE ALSO
8875
8876 =back
8877
8878 =head2 autouse - postpone load of modules until a function is used
8879
8880 =over 4
8881
8882 =item SYNOPSIS
8883
8884 =item DESCRIPTION
8885
8886 =item WARNING
8887
8888 =item AUTHOR
8889
8890 =item SEE ALSO
8891
8892 =back
8893
8894 =head2 base - Establish IS-A relationship with base class at compile time
8895
8896 =over 4
8897
8898 =item SYNOPSIS
8899
8900 =item DESCRIPTION
8901
8902 =item HISTORY
8903
8904 =item CAVEATS
8905
8906 =item SEE ALSO
8907
8908 =back
8909
8910 =head2 bigint - Transparent BigInteger support for Perl
8911
8912 =over 4
8913
8914 =item SYNOPSIS
8915
8916 =item DESCRIPTION
8917
8918 =over 4
8919
8920 =item OPTIONS
8921
8922 a or accuracy, p or precision, t or trace, l or lib, v or version
8923
8924 =item MATH LIBRARY
8925
8926 =item INTERNAL FORMAT
8927
8928 =item SIGN
8929
8930 =item METHODS
8931
8932 =item CAVEAT
8933
8934 =back
8935
8936 =item MODULES USED
8937
8938 =item EXAMPLES
8939
8940 =item LICENSE
8941
8942 =item SEE ALSO
8943
8944 =item AUTHORS
8945
8946 =back
8947
8948 =head2 bignum - Transparent BigNumber support for Perl
8949
8950 =over 4
8951
8952 =item SYNOPSIS
8953
8954 =item DESCRIPTION
8955
8956 =over 4
8957
8958 =item OPTIONS
8959
8960 a or accuracy, p or precision, t or trace, l or lib, v or version
8961
8962 =item METHODS
8963
8964 =item CAVEAT
8965
8966 inf(), NaN(), upgrade()
8967
8968 =item MATH LIBRARY
8969
8970 =item INTERNAL FORMAT
8971
8972 =item SIGN
8973
8974 =back
8975
8976 =item MODULES USED
8977
8978 =item EXAMPLES
8979
8980 =item LICENSE
8981
8982 =item SEE ALSO
8983
8984 =item AUTHORS
8985
8986 =back
8987
8988 =head2 bigrat - Transparent BigNumber/BigRational support for Perl
8989
8990 =over 4
8991
8992 =item SYNOPSIS
8993
8994 =item DESCRIPTION
8995
8996 =over 4
8997
8998 =item MODULES USED
8999
9000 =item MATH LIBRARY
9001
9002 =item SIGN
9003
9004 =item METHODS
9005
9006 =item CAVEAT
9007
9008 =back
9009
9010 =item EXAMPLES
9011
9012         perl -Mbigrat -le 'print sqrt(33)'
9013         perl -Mbigrat -le 'print 2*255'
9014         perl -Mbigrat -le 'print 4.5+2*255'
9015         perl -Mbigrat -le 'print 3/7 + 5/7 + 8/3'       
9016         perl -Mbigrat -le 'print 12->is_odd()';
9017
9018 =item LICENSE
9019
9020 =item SEE ALSO
9021
9022 =item AUTHORS
9023
9024 =back
9025
9026 =head2 blib - Use MakeMaker's uninstalled version of a package
9027
9028 =over 4
9029
9030 =item SYNOPSIS
9031
9032 =item DESCRIPTION
9033
9034 =item BUGS
9035
9036 =item AUTHOR
9037
9038 =back
9039
9040 =head2 bytes - Perl pragma to force byte semantics rather than character
9041 semantics
9042
9043 =over 4
9044
9045 =item SYNOPSIS
9046
9047 =item DESCRIPTION
9048
9049 =item LIMITATIONS
9050
9051 =item SEE ALSO
9052
9053 =back
9054
9055 =head2 charnames - define character names for C<\N{named}> string literal
9056 escapes
9057
9058 =over 4
9059
9060 =item SYNOPSIS
9061
9062 =item DESCRIPTION
9063
9064 =item CUSTOM TRANSLATORS
9065
9066 =item CUSTOM ALIASES
9067
9068 =over 4
9069
9070 =item Anonymous hashes
9071
9072 =item Alias file
9073
9074 =item Alias shortcut
9075
9076 =back
9077
9078 =item charnames::viacode(code)
9079
9080 =item charnames::vianame(name)
9081
9082 =item ALIASES
9083
9084 =item ILLEGAL CHARACTERS
9085
9086 =item BUGS
9087
9088 =back
9089
9090 =head2 constant - Perl pragma to declare constants
9091
9092 =over 4
9093
9094 =item SYNOPSIS
9095
9096 =item DESCRIPTION
9097
9098 =item NOTES
9099
9100 =over 4
9101
9102 =item List constants
9103
9104 =item Defining multiple constants at once
9105
9106 =item Magic constants
9107
9108 =back
9109
9110 =item TECHNICAL NOTES
9111
9112 =item BUGS
9113
9114 =item AUTHOR
9115
9116 =item COPYRIGHT
9117
9118 =back
9119
9120 =head2 diagnostics - Perl compiler pragma to force verbose warning
9121 diagnostics
9122
9123 =over 4
9124
9125 =item SYNOPSIS
9126
9127 =item DESCRIPTION
9128
9129 =over 4
9130
9131 =item The C<diagnostics> Pragma
9132
9133 =item The I<splain> Program
9134
9135 =back
9136
9137 =item EXAMPLES
9138
9139 =item INTERNALS
9140
9141 =item BUGS
9142
9143 =item AUTHOR
9144
9145 =back
9146
9147 =head2 encoding - allows you to write your script in non-ascii or non-utf8
9148
9149 =over 4
9150
9151 =item SYNOPSIS
9152
9153 =item ABSTRACT
9154
9155 =over 4
9156
9157 =item Literal Conversions
9158
9159 =item PerlIO layers for C<STD(IN|OUT)>
9160
9161 =back
9162
9163 =item FEATURES THAT REQUIRE 5.8.1
9164
9165 "NON-EUC" doublebyte encodings, tr//, DATA pseudo-filehandle
9166
9167 =item USAGE
9168
9169 use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
9170 I<ENCNAME_IN> ...] ;, use encoding I<ENCNAME> Filter=E<gt>1;, no encoding;
9171
9172 =item The Filter Option
9173
9174 =over 4
9175
9176 =item Filter-related changes at Encode version 1.87
9177
9178 =back
9179
9180 =item CAVEATS
9181
9182 =over 4
9183
9184 =item NOT SCOPED
9185
9186 =item DO NOT MIX MULTIPLE ENCODINGS
9187
9188 =item tr/// with ranges
9189
9190 Legend of characters above
9191
9192 =back
9193
9194 =item EXAMPLE - Greekperl
9195
9196 =item KNOWN PROBLEMS
9197
9198 literals in regex that are longer than 127 bytes, EBCDIC, format
9199
9200 =item HISTORY
9201
9202 =item SEE ALSO
9203
9204 =back
9205
9206 =head2 fields - compile-time class fields
9207
9208 =over 4
9209
9210 =item SYNOPSIS
9211
9212 =item DESCRIPTION
9213
9214 new, phash
9215
9216 =item SEE ALSO
9217
9218 =back
9219
9220 =head2 filetest - Perl pragma to control the filetest permission operators
9221
9222 =over 4
9223
9224 =item SYNOPSIS
9225
9226 =item DESCRIPTION
9227
9228 =over 4
9229
9230 =item subpragma access
9231
9232 =back
9233
9234 =back
9235
9236 =head2 if - C<use> a Perl module if a condition holds
9237
9238 =over 4
9239
9240 =item SYNOPSIS
9241
9242 =item DESCRIPTION
9243
9244 =item BUGS
9245
9246 =item AUTHOR
9247
9248 =back
9249
9250 =head2 integer - Perl pragma to use integer arithmetic instead of floating
9251 point
9252
9253 =over 4
9254
9255 =item SYNOPSIS
9256
9257 =item DESCRIPTION
9258
9259 =back
9260
9261 =head2 less - perl pragma to request less of something from the compiler
9262
9263 =over 4
9264
9265 =item SYNOPSIS
9266
9267 =item DESCRIPTION
9268
9269 =back
9270
9271 =head2 lib - manipulate @INC at compile time
9272
9273 =over 4
9274
9275 =item SYNOPSIS
9276
9277 =item DESCRIPTION
9278
9279 =over 4
9280
9281 =item Adding directories to @INC
9282
9283 =item Deleting directories from @INC
9284
9285 =item Restoring original @INC
9286
9287 =back
9288
9289 =item CAVEATS
9290
9291 =item NOTES
9292
9293 =item SEE ALSO
9294
9295 =item AUTHOR
9296
9297 =back
9298
9299 =head2 locale - Perl pragma to use and avoid POSIX locales for built-in
9300 operations
9301
9302 =over 4
9303
9304 =item SYNOPSIS
9305
9306 =item DESCRIPTION
9307
9308 =back
9309
9310 =head2 open - perl pragma to set default PerlIO layers for input and output
9311
9312 =over 4
9313
9314 =item SYNOPSIS
9315
9316 =item DESCRIPTION
9317
9318 =item NONPERLIO FUNCTIONALITY
9319
9320 =item IMPLEMENTATION DETAILS
9321
9322 =item SEE ALSO
9323
9324 =back
9325
9326 =head2 ops - Perl pragma to restrict unsafe operations when compiling
9327
9328 =over 4
9329
9330 =item SYNOPSIS  
9331
9332 =item DESCRIPTION
9333
9334 =item SEE ALSO
9335
9336 =back
9337
9338 =head2 overload - Package for overloading perl operations
9339
9340 =over 4
9341
9342 =item SYNOPSIS
9343
9344 =item DESCRIPTION
9345
9346 =over 4
9347
9348 =item Declaration of overloaded functions
9349
9350 =item Calling Conventions for Binary Operations
9351
9352 FALSE, TRUE, C<undef>
9353
9354 =item Calling Conventions for Unary Operations
9355
9356 =item Calling Conventions for Mutators
9357
9358 C<++> and C<-->, C<x=> and other assignment versions
9359
9360 =item Overloadable Operations
9361
9362 I<Arithmetic operations>, I<Comparison operations>, I<Bit operations>,
9363 I<Increment and decrement>, I<Transcendental functions>, I<Boolean, string
9364 and numeric conversion>, I<Iteration>, I<Dereferencing>, I<Special>
9365
9366 =item Inheritance and overloading
9367
9368 Strings as values of C<use overload> directive, Overloading of an operation
9369 is inherited by derived classes
9370
9371 =back
9372
9373 =item SPECIAL SYMBOLS FOR C<use overload>
9374
9375 =over 4
9376
9377 =item Last Resort
9378
9379 =item Fallback
9380
9381 C<undef>, TRUE, defined, but FALSE
9382
9383 =item Copy Constructor
9384
9385 B<Example>
9386
9387 =back
9388
9389 =item MAGIC AUTOGENERATION
9390
9391 I<Assignment forms of arithmetic operations>, I<Conversion operations>,
9392 I<Increment and decrement>, C<abs($a)>, I<Unary minus>, I<Negation>,
9393 I<Concatenation>, I<Comparison operations>, I<Iterator>, I<Dereferencing>,
9394 I<Copy operator>
9395
9396 =item Losing overloading
9397
9398 =item Run-time Overloading
9399
9400 =item Public functions
9401
9402 overload::StrVal(arg), overload::Overloaded(arg), overload::Method(obj,op)
9403
9404 =item Overloading constants
9405
9406 integer, float, binary, q, qr
9407
9408 =item IMPLEMENTATION
9409
9410 =item Metaphor clash
9411
9412 =item Cookbook
9413
9414 =over 4
9415
9416 =item Two-face scalars
9417
9418 =item Two-face references
9419
9420 =item Symbolic calculator
9421
9422 =item I<Really> symbolic calculator
9423
9424 =back
9425
9426 =item AUTHOR
9427
9428 =item DIAGNOSTICS
9429
9430 Odd number of arguments for overload::constant, `%s' is not an overloadable
9431 type, `%s' is not a code reference
9432
9433 =item BUGS
9434
9435 =back
9436
9437 =head2 sigtrap - Perl pragma to enable simple signal handling
9438
9439 =over 4
9440
9441 =item SYNOPSIS
9442
9443 =item DESCRIPTION
9444
9445 =item OPTIONS
9446
9447 =over 4
9448
9449 =item SIGNAL HANDLERS
9450
9451 B<stack-trace>, B<die>, B<handler> I<your-handler>
9452
9453 =item SIGNAL LISTS
9454
9455 B<normal-signals>, B<error-signals>, B<old-interface-signals>
9456
9457 =item OTHER
9458
9459 B<untrapped>, B<any>, I<signal>, I<number>
9460
9461 =back
9462
9463 =item EXAMPLES
9464
9465 =back
9466
9467 =head2 sort - perl pragma to control sort() behaviour
9468
9469 =over 4
9470
9471 =item SYNOPSIS
9472
9473 =item DESCRIPTION
9474
9475 =item CAVEATS
9476
9477 =back
9478
9479 =head2 strict - Perl pragma to restrict unsafe constructs
9480
9481 =over 4
9482
9483 =item SYNOPSIS
9484
9485 =item DESCRIPTION
9486
9487 C<strict refs>, C<strict vars>, C<strict subs>
9488
9489 =item HISTORY
9490
9491 =back
9492
9493 =head2 subs - Perl pragma to predeclare sub names
9494
9495 =over 4
9496
9497 =item SYNOPSIS
9498
9499 =item DESCRIPTION
9500
9501 =back
9502
9503 =head2 threadshared, threads::shared - Perl extension for sharing data
9504 structures between threads
9505
9506 =over 4
9507
9508 =item SYNOPSIS
9509
9510 =item DESCRIPTION
9511
9512 =item EXPORT
9513
9514 =item FUNCTIONS
9515
9516 share VARIABLE, lock VARIABLE, cond_wait VARIABLE, cond_signal VARIABLE,
9517 cond_broadcast VARIABLE
9518
9519 =item NOTES
9520
9521 =item BUGS
9522
9523 =item AUTHOR
9524
9525 =item SEE ALSO
9526
9527 =back
9528
9529 =head2 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source
9530 code
9531
9532 =over 4
9533
9534 =item SYNOPSIS
9535
9536 =item DESCRIPTION
9537
9538 =over 4
9539
9540 =item Utility functions
9541
9542 $num_octets = utf8::upgrade($string), $success = utf8::downgrade($string[,
9543 FAIL_OK]), utf8::encode($string), utf8::decode($string), $flag =
9544 utf8::is_utf8(STRING), $flag = utf8::valid(STRING)
9545
9546 =back
9547
9548 =item BUGS
9549
9550 =item SEE ALSO
9551
9552 =back
9553
9554 =head2 vars - Perl pragma to predeclare global variable names (obsolete)
9555
9556 =over 4
9557
9558 =item SYNOPSIS
9559
9560 =item DESCRIPTION
9561
9562 =back
9563
9564 =head2 version - Perl extension for Version Objects
9565
9566 =over 4
9567
9568 =item SYNOPSIS
9569
9570 =item DESCRIPTION
9571
9572 =over 4
9573
9574 =item What IS a version
9575
9576 Numeric Versions, V-String Versions
9577
9578 =item Numeric Versions
9579
9580 =item V-String Versions
9581
9582 =item Object Methods
9583
9584 New Operator, Stringification, Numification, Comparison operators, Logical
9585 Operators
9586
9587 =item Quoting
9588
9589 =item Types of Versions Objects
9590
9591 Ordinary versions, alpha versions
9592
9593 =item Replacement UNIVERSAL::VERSION
9594
9595 =back
9596
9597 =item EXPORT
9598
9599 =item AUTHOR
9600
9601 =item SEE ALSO
9602
9603 =back
9604
9605 =head2 vmsish - Perl pragma to control VMS-specific language features
9606
9607 =over 4
9608
9609 =item SYNOPSIS
9610
9611 =item DESCRIPTION
9612
9613 C<vmsish status>, C<vmsish exit>, C<vmsish time>, C<vmsish hushed>
9614
9615 =back
9616
9617 =head2 warnings - Perl pragma to control optional warnings
9618
9619 =over 4
9620
9621 =item SYNOPSIS
9622
9623 =item DESCRIPTION
9624
9625 use warnings::register, warnings::enabled(), warnings::enabled($category),
9626 warnings::enabled($object), warnings::warn($message),
9627 warnings::warn($category, $message), warnings::warn($object, $message),
9628 warnings::warnif($message), warnings::warnif($category, $message),
9629 warnings::warnif($object, $message)
9630
9631 =back
9632
9633 =head2 warnings::register - warnings import function
9634
9635 =over 4
9636
9637 =item SYNOPSIS
9638
9639 =item DESCRIPTION
9640
9641 =back
9642
9643 =head1 MODULE DOCUMENTATION
9644
9645 =head2 AnyDBM_File - provide framework for multiple DBMs
9646
9647 =over 4
9648
9649 =item SYNOPSIS
9650
9651 =item DESCRIPTION
9652
9653 =over 4
9654
9655 =item DBM Comparisons
9656
9657 [0], [1], [2], [3]
9658
9659 =back
9660
9661 =item SEE ALSO
9662
9663 =back
9664
9665 =head2 Attribute::Handlers - Simpler definition of attribute handlers
9666
9667 =over 4
9668
9669 =item VERSION
9670
9671 =item SYNOPSIS
9672
9673 =item DESCRIPTION
9674
9675 [0], [1], [2], [3], [4], [5]
9676
9677 =over 4
9678
9679 =item Typed lexicals
9680
9681 =item Type-specific attribute handlers
9682
9683 =item Non-interpretive attribute handlers
9684
9685 =item Phase-specific attribute handlers
9686
9687 =item Attributes as C<tie> interfaces
9688
9689 =back
9690
9691 =item EXAMPLES
9692
9693 =item DIAGNOSTICS
9694
9695 C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
9696 attributes>, C<Declaration of %s attribute in package %s may clash with
9697 future reserved word>, C<Can't have two ATTR specifiers on one subroutine>,
9698 C<Can't autotie a %s>, C<Internal error: %s symbol went missing>, C<Won't
9699 be able to apply END handler>
9700
9701 =item AUTHOR
9702
9703 =item BUGS
9704
9705 =item COPYRIGHT
9706
9707 =back
9708
9709 =head2 AutoLoader - load subroutines only on demand
9710
9711 =over 4
9712
9713 =item SYNOPSIS
9714
9715 =item DESCRIPTION
9716
9717 =over 4
9718
9719 =item Subroutine Stubs
9720
9721 =item Using B<AutoLoader>'s AUTOLOAD Subroutine
9722
9723 =item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
9724
9725 =item Package Lexicals
9726
9727 =item Not Using AutoLoader
9728
9729 =item B<AutoLoader> vs. B<SelfLoader>
9730
9731 =back
9732
9733 =item CAVEATS
9734
9735 =item SEE ALSO
9736
9737 =back
9738
9739 =head2 AutoSplit - split a package for autoloading
9740
9741 =over 4
9742
9743 =item SYNOPSIS
9744
9745 =item DESCRIPTION
9746
9747 $keep, $check, $modtime
9748
9749 =over 4
9750
9751 =item Multiple packages
9752
9753 =back
9754
9755 =item DIAGNOSTICS
9756
9757 =back
9758
9759 =head2 B - The Perl Compiler
9760
9761 =over 4
9762
9763 =item SYNOPSIS
9764
9765 =item DESCRIPTION
9766
9767 =item OVERVIEW
9768
9769 =item Utility Functions
9770
9771 =over 4
9772
9773 =item Functions Returning C<B::SV>, C<B::AV>, C<B::HV>, and C<B::CV>
9774 objects
9775
9776 sv_undef, sv_yes, sv_no, svref_2object(SVREF), amagic_generation, init_av,
9777 check_av, begin_av, end_av, comppadlist, regex_padav, main_cv
9778
9779 =item Functions for Examining the Symbol Table
9780
9781 walksymtable(SYMREF, METHOD, RECURSE, PREFIX)
9782
9783 =item Functions Returning C<B::OP> objects or for walking op trees
9784
9785 main_root, main_start, walkoptree(OP, METHOD), walkoptree_debug(DEBUG)
9786
9787 =item Miscellaneous Utility Functions
9788
9789 ppname(OPNUM), hash(STR), cast_I32(I), minus_c, cstring(STR),
9790 perlstring(STR), class(OBJ), threadsv_names
9791
9792 =back
9793
9794 =item OVERVIEW OF CLASSES
9795
9796 =over 4
9797
9798 =item SV-RELATED CLASSES
9799
9800 =item B::SV Methods
9801
9802 REFCNT, FLAGS, object_2svref
9803
9804 =item B::IV Methods
9805
9806 IV, IVX, UVX, int_value, needs64bits, packiv
9807
9808 =item B::NV Methods
9809
9810 NV, NVX
9811
9812 =item B::RV Methods
9813
9814 RV
9815
9816 =item B::PV Methods
9817
9818 PV, RV, PVX
9819
9820 =item B::PVMG Methods
9821
9822 MAGIC, SvSTASH
9823
9824 =item B::MAGIC Methods
9825
9826 MOREMAGIC, precomp, PRIVATE, TYPE, FLAGS, OBJ, PTR, REGEX
9827
9828 =item B::PVLV Methods
9829
9830 TARGOFF, TARGLEN, TYPE, TARG
9831
9832 =item B::BM Methods
9833
9834 USEFUL, PREVIOUS, RARE, TABLE
9835
9836 =item B::GV Methods
9837
9838 is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
9839 LINE, FILE, FILEGV, GvREFCNT, FLAGS
9840
9841 =item B::IO Methods
9842
9843 LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
9844 BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS, IsSTD
9845
9846 =item B::AV Methods
9847
9848 FILL, MAX, OFF, ARRAY, ARRAYelt, AvFLAGS
9849
9850 =item B::CV Methods
9851
9852 STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, OUTSIDE_SEQ, XSUB,
9853 XSUBANY, CvFLAGS, const_sv
9854
9855 =item B::HV Methods
9856
9857 FILL, MAX, KEYS, RITER, NAME, PMROOT, ARRAY
9858
9859 =item OP-RELATED CLASSES
9860
9861 =item B::OP Methods
9862
9863 next, sibling, name, ppaddr, desc, targ, type, seq, flags, private
9864
9865 =item B::UNOP METHOD
9866
9867 first
9868
9869 =item B::BINOP METHOD
9870
9871 last
9872
9873 =item B::LOGOP METHOD
9874
9875 other
9876
9877 =item B::LISTOP METHOD
9878
9879 children
9880
9881 =item B::PMOP Methods
9882
9883 pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, pmdynflags,
9884 pmpermflags, precomp, pmoffset
9885
9886 =item B::SVOP METHOD
9887
9888 sv, gv
9889
9890 =item B::PADOP METHOD
9891
9892 padix
9893
9894 =item B::PVOP METHOD
9895
9896 pv
9897
9898 =item B::LOOP Methods
9899
9900 redoop, nextop, lastop
9901
9902 =item B::COP Methods
9903
9904 label, stash, stashpv, file, cop_seq, arybase, line, warnings, io
9905
9906 =back
9907
9908 =item AUTHOR
9909
9910 =back
9911
9912 =head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
9913 bytecode
9914
9915 =over 4
9916
9917 =item SYNOPSIS
9918
9919 =item DESCRIPTION
9920
9921 %insn_data, @insn_name, @optype, @specialsv_name
9922
9923 =item AUTHOR
9924
9925 =back
9926
9927 =head2 B::Assembler - Assemble Perl bytecode
9928
9929 =over 4
9930
9931 =item SYNOPSIS
9932
9933 =item DESCRIPTION
9934
9935 =item AUTHORS
9936
9937 =back
9938
9939 =head2 B::Bblock - Walk basic blocks
9940
9941 =over 4
9942
9943 =item SYNOPSIS
9944
9945 =item DESCRIPTION
9946
9947 =over 4
9948
9949 =item Functions
9950
9951 B<find_leaders>
9952
9953 =back
9954
9955 =item AUTHOR
9956
9957 =back
9958
9959 =head2 B::Bytecode - Perl compiler's bytecode backend
9960
9961 =over 4
9962
9963 =item SYNOPSIS
9964
9965 =item DESCRIPTION
9966
9967 =item EXAMPLE
9968
9969 =item OPTIONS
9970
9971 B<-b>, B<-H>, B<-k>, B<-o>I<outfile>, B<-s>
9972
9973 =item KNOWN BUGS
9974
9975 =item NOTICE
9976
9977 =item AUTHORS
9978
9979 =back
9980
9981 =head2 B::C - Perl compiler's C backend
9982
9983 =over 4
9984
9985 =item SYNOPSIS
9986
9987 =item DESCRIPTION
9988
9989 =item OPTIONS
9990
9991 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-D>, B<-Do>, B<-Dc>, B<-DA>,
9992 B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fsave-data>, B<-fppaddr>, B<-fwarn-sv>,
9993 B<-fuse-script-name>, B<-fsave-sig-hash>, B<-On>, B<-O0>, B<-O1>, B<-O2>,
9994 B<-llimit>
9995
9996 =item EXAMPLES
9997
9998 =item BUGS
9999
10000 =item AUTHOR
10001
10002 =back
10003
10004 =head2 B::CC - Perl compiler's optimized C translation backend
10005
10006 =over 4
10007
10008 =item SYNOPSIS
10009
10010 =item DESCRIPTION
10011
10012 =item OPTIONS
10013
10014 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-mModulename>, B<-D>, B<-Dr>,
10015 B<-DO>, B<-Ds>, B<-Dp>, B<-Dq>, B<-Dl>, B<-Dt>, B<-f>,
10016 B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
10017
10018 =item EXAMPLES
10019
10020 =item BUGS
10021
10022 =item DIFFERENCES
10023
10024 =over 4
10025
10026 =item Loops
10027
10028 =item Context of ".."
10029
10030 =item Arithmetic
10031
10032 =item Deprecated features
10033
10034 =back
10035
10036 =item AUTHOR
10037
10038 =back
10039
10040 =head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
10041
10042 =over 4
10043
10044 =item SYNOPSIS
10045
10046 =item DESCRIPTION
10047
10048 =item EXAMPLE
10049
10050 =item OPTIONS
10051
10052 B<-basic>, B<-exec>, B<-tree>, B<-compact>, B<-loose>, B<-vt>, B<-ascii>,
10053 B<-main>, B<-base>I<n>, B<-bigendian>, B<-littleendian>, B<-concise>,
10054 B<-terse>, B<-linenoise>, B<-debug>, B<-env>
10055
10056 =item FORMATTING SPECIFICATIONS
10057
10058 B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
10059 B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
10060 B<#>I<var>, B<#>I<var>I<N>, B<~>, B<#addr>, B<#arg>, B<#class>,
10061 B<#classsym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
10062 B<#flags>, B<#flagval>, B<#hyphseq>, B<#label>, B<#lastaddr>, B<#name>,
10063 B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>, B<#private>, B<#privval>,
10064 B<#seq>, B<#seqnum>, B<#sibaddr>, B<#svaddr>, B<#svclass>, B<#svval>,
10065 B<#targ>, B<#targarg>, B<#targarglife>, B<#typenum>
10066
10067 =item ABBREVIATIONS
10068
10069 =over 4
10070
10071 =item OP flags abbreviations
10072
10073 =item OP class abbreviations
10074
10075 =back
10076
10077 =item Using B::Concise outside of the O framework
10078
10079 =item AUTHOR
10080
10081 =back
10082
10083 =head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
10084
10085 =over 4
10086
10087 =item SYNOPSIS
10088
10089 =item DESCRIPTION
10090
10091 =item AUTHOR
10092
10093 =back
10094
10095 =head2 B::Deparse - Perl compiler backend to produce perl code
10096
10097 =over 4
10098
10099 =item SYNOPSIS
10100
10101 =item DESCRIPTION
10102
10103 =item OPTIONS
10104
10105 B<-d>, B<-f>I<FILE>, B<-l>, B<-p>, B<-P>, B<-q>, B<-s>I<LETTERS>, B<C>,
10106 B<i>I<NUMBER>, B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
10107
10108 =item USING B::Deparse AS A MODULE
10109
10110 =over 4
10111
10112 =item Synopsis
10113
10114 =item Description
10115
10116 =item new
10117
10118 =item ambient_pragmas
10119
10120 strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
10121
10122 =item coderef2text
10123
10124 =back
10125
10126 =item BUGS
10127
10128 =item AUTHOR
10129
10130 =back
10131
10132 =head2 B::Disassembler - Disassemble Perl bytecode
10133
10134 =over 4
10135
10136 =item SYNOPSIS
10137
10138 =item DESCRIPTION
10139
10140 =item AUTHOR
10141
10142 =back
10143
10144 =head2 B::Lint - Perl lint
10145
10146 =over 4
10147
10148 =item SYNOPSIS
10149
10150 =item DESCRIPTION
10151
10152 =item OPTIONS AND LINT CHECKS
10153
10154 B<context>, B<implicit-read> and B<implicit-write>, B<bare-subs>,
10155 B<dollar-underscore>, B<private-names>, B<undefined-subs>,
10156 B<regexp-variables>, B<all>, B<none>
10157
10158 =item NON LINT-CHECK OPTIONS
10159
10160 B<-u Package>
10161
10162 =item BUGS
10163
10164 =item AUTHOR
10165
10166 =back
10167
10168 =head2 B::O, O - Generic interface to Perl Compiler backends
10169
10170 =over 4
10171
10172 =item SYNOPSIS
10173
10174 =item DESCRIPTION
10175
10176 =item CONVENTIONS
10177
10178 =item IMPLEMENTATION
10179
10180 =item BUGS
10181
10182 =item AUTHOR
10183
10184 =back
10185
10186 =head2 B::Showlex - Show lexical variables used in functions or files
10187
10188 =over 4
10189
10190 =item SYNOPSIS
10191
10192 =item DESCRIPTION
10193
10194 =item AUTHOR
10195
10196 =back
10197
10198 =head2 B::Stackobj - Helper module for CC backend
10199
10200 =over 4
10201
10202 =item SYNOPSIS
10203
10204 =item DESCRIPTION
10205
10206 =item AUTHOR
10207
10208 =back
10209
10210 =head2 B::Stash - show what stashes are loaded
10211
10212 =head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
10213
10214 =over 4
10215
10216 =item SYNOPSIS
10217
10218 =item DESCRIPTION
10219
10220 =item AUTHOR
10221
10222 =back
10223
10224 =head2 B::Xref - Generates cross reference reports for Perl programs
10225
10226 =over 4
10227
10228 =item SYNOPSIS
10229
10230 =item DESCRIPTION
10231
10232 =item OPTIONS
10233
10234 C<-oFILENAME>, C<-r>, C<-d>, C<-D[tO]>
10235
10236 =item BUGS
10237
10238 =item AUTHOR
10239
10240 =back
10241
10242 =head2 Bblock, B::Bblock - Walk basic blocks
10243
10244 =over 4
10245
10246 =item SYNOPSIS
10247
10248 =item DESCRIPTION
10249
10250 =over 4
10251
10252 =item Functions
10253
10254 B<find_leaders>
10255
10256 =back
10257
10258 =item AUTHOR
10259
10260 =back
10261
10262 =head2 Benchmark - benchmark running times of Perl code
10263
10264 =over 4
10265
10266 =item SYNOPSIS
10267
10268 =item DESCRIPTION
10269
10270 =over 4
10271
10272 =item Methods
10273
10274 new, debug, iters
10275
10276 =item Standard Exports
10277
10278 timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
10279 timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
10280 TIMEDIFF, [ STYLE, [ FORMAT ] ] )
10281
10282 =item Optional Exports
10283
10284 clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUNT, CODEHASHREF, [
10285 STYLE ] ), cmpthese ( RESULTSHASHREF, [ STYLE ] ), countit(TIME, CODE),
10286 disablecache ( ), enablecache ( ), timesum ( T1, T2 )
10287
10288 =item :hireswallclock
10289
10290 =back
10291
10292 =item NOTES
10293
10294 =item EXAMPLES
10295
10296 =item INHERITANCE
10297
10298 =item CAVEATS
10299
10300 =item SEE ALSO
10301
10302 =item AUTHORS
10303
10304 =item MODIFICATION HISTORY
10305
10306 =back
10307
10308 =head2 ByteLoader - load byte compiled perl code
10309
10310 =over 4
10311
10312 =item SYNOPSIS
10313
10314 =item DESCRIPTION
10315
10316 =item AUTHOR
10317
10318 =item SEE ALSO
10319
10320 =back
10321
10322 =head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend
10323
10324 =over 4
10325
10326 =item SYNOPSIS
10327
10328 =item DESCRIPTION
10329
10330 =item EXAMPLE
10331
10332 =item OPTIONS
10333
10334 B<-b>, B<-H>, B<-k>, B<-o>I<outfile>, B<-s>
10335
10336 =item KNOWN BUGS
10337
10338 =item NOTICE
10339
10340 =item AUTHORS
10341
10342 =back
10343
10344 =head2 CGI - Simple Common Gateway Interface Class
10345
10346 =over 4
10347
10348 =item SYNOPSIS
10349
10350 =item ABSTRACT
10351
10352 =item DESCRIPTION
10353
10354 =over 4
10355
10356 =item PROGRAMMING STYLE
10357
10358 =item CALLING CGI.PM ROUTINES
10359
10360 =item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
10361
10362 =item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
10363
10364 =item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
10365
10366 =item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
10367
10368 =item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
10369
10370 =item SETTING THE VALUE(S) OF A NAMED PARAMETER:
10371
10372 =item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
10373
10374 =item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
10375
10376 =item DELETING A PARAMETER COMPLETELY:
10377
10378 =item DELETING ALL PARAMETERS:
10379
10380 =item DIRECT ACCESS TO THE PARAMETER LIST:
10381
10382 =item FETCHING THE PARAMETER LIST AS A HASH:
10383
10384 =item SAVING THE STATE OF THE SCRIPT TO A FILE:
10385
10386 =item RETRIEVING CGI ERRORS
10387
10388 =item USING THE FUNCTION-ORIENTED INTERFACE
10389
10390 B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:html4>, B<:netscape>, B<:html>,
10391 B<:standard>, B<:all>
10392
10393 =item PRAGMAS
10394
10395 -any, -compile, -nosticky, -no_undef_params, -no_xhtml, -nph,
10396 -newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
10397 -private_tempfiles
10398
10399 =item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
10400
10401 1. start_table() (generates a <table> tag), 2. end_table() (generates a
10402 </table> tag), 3. start_ul() (generates a <ul> tag), 4. end_ul() (generates
10403 a </ul> tag)
10404
10405 =back
10406
10407 =item GENERATING DYNAMIC DOCUMENTS
10408
10409 =over 4
10410
10411 =item CREATING A STANDARD HTTP HEADER:
10412
10413 =item GENERATING A REDIRECTION HEADER
10414
10415 =item CREATING THE HTML DOCUMENT HEADER
10416
10417 B<Parameters:>, 4, 5, 6..
10418
10419 =item ENDING THE HTML DOCUMENT:
10420
10421 =item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
10422
10423 =item OBTAINING THE SCRIPT'S URL
10424
10425 B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
10426 (B<-query_string>), B<-base>
10427
10428 =item MIXING POST AND URL PARAMETERS
10429
10430 =back
10431
10432 =item CREATING STANDARD HTML ELEMENTS:
10433
10434 =over 4
10435
10436 =item PROVIDING ARGUMENTS TO HTML SHORTCUTS
10437
10438 =item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
10439
10440 =item HTML SHORTCUTS AND LIST INTERPOLATION
10441
10442 =item NON-STANDARD HTML SHORTCUTS
10443
10444 =item AUTOESCAPING HTML
10445
10446 $escaped_string = escapeHTML("unescaped string");, $charset =
10447 charset([$charset]);, $flag = autoEscape([$flag]);
10448
10449 =item PRETTY-PRINTING HTML
10450
10451 =back
10452
10453 =item CREATING FILL-OUT FORMS:
10454
10455 =over 4
10456
10457 =item CREATING AN ISINDEX TAG
10458
10459 =item STARTING AND ENDING A FORM
10460
10461 B<application/x-www-form-urlencoded>, B<multipart/form-data>
10462
10463 =item CREATING A TEXT FIELD
10464
10465 B<Parameters>
10466
10467 =item CREATING A BIG TEXT FIELD
10468
10469 =item CREATING A PASSWORD FIELD
10470
10471 =item CREATING A FILE UPLOAD FIELD
10472
10473 B<Parameters>
10474
10475 =item CREATING A POPUP MENU
10476
10477 =item CREATING AN OPTION GROUP
10478
10479 =item CREATING A SCROLLING LIST
10480
10481 B<Parameters:>
10482
10483 =item CREATING A GROUP OF RELATED CHECKBOXES
10484
10485 B<Parameters:>
10486
10487 =item CREATING A STANDALONE CHECKBOX
10488
10489 B<Parameters:>
10490
10491 =item CREATING A RADIO BUTTON GROUP
10492
10493 B<Parameters:>
10494
10495 =item CREATING A SUBMIT BUTTON 
10496
10497 B<Parameters:>
10498
10499 =item CREATING A RESET BUTTON
10500
10501 =item CREATING A DEFAULT BUTTON
10502
10503 =item CREATING A HIDDEN FIELD
10504
10505 B<Parameters:>
10506
10507 =item CREATING A CLICKABLE IMAGE BUTTON
10508
10509 B<Parameters:>, 3. The third option (-align, optional) is an alignment
10510 type, and may be TOP, BOTTOM or MIDDLE
10511
10512 =item CREATING A JAVASCRIPT ACTION BUTTON
10513
10514 =back
10515
10516 =item HTTP COOKIES
10517
10518 1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
10519 B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
10520
10521 =item WORKING WITH FRAMES
10522
10523 1. Create a <Frameset> document, 2. Specify the destination for the
10524 document in the HTTP header, 3. Specify the destination for the document in
10525 the <form> tag
10526
10527 =item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
10528
10529 =item DEBUGGING
10530
10531 =over 4
10532
10533 =item DUMPING OUT ALL THE NAME/VALUE PAIRS
10534
10535 =back
10536
10537 =item FETCHING ENVIRONMENT VARIABLES
10538
10539 B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
10540 B<path_translated()>, B<remote_host()>, B<script_name()> Return the script
10541 name as a partial URL, for self-refering scripts, B<referer()>, B<auth_type
10542 ()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
10543 B<server_software ()>, B<remote_user ()>, B<user_name ()>,
10544 B<request_method()>, B<content_type()>, B<http()>, B<https()>
10545
10546 =item USING NPH SCRIPTS
10547
10548 In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
10549 parameters
10550
10551 =item Server Push
10552
10553 multipart_init(), multipart_start(), multipart_end(), multipart_final()
10554
10555 =item Avoiding Denial of Service Attacks
10556
10557 B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
10558 basis>, B<2. Globally for all scripts>
10559
10560 =item COMPATIBILITY WITH CGI-LIB.PL
10561
10562 =item AUTHOR INFORMATION
10563
10564 =item CREDITS
10565
10566 Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
10567 (james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
10568 (mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
10569 (jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
10570 (applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
10571 (tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
10572 (tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
10573 MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
10574 (kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
10575 Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
10576 MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
10577 ...and many many more..
10578
10579 =item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
10580
10581 =item BUGS
10582
10583 =item SEE ALSO
10584
10585 =back
10586
10587 =head2 CGI::Apache - Backward compatibility module for CGI.pm
10588
10589 =over 4
10590
10591 =item SYNOPSIS
10592
10593 =item ABSTRACT
10594
10595 =item DESCRIPTION
10596
10597 =item AUTHOR INFORMATION
10598
10599 =item BUGS
10600
10601 =item SEE ALSO
10602
10603 =back
10604
10605 =head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
10606 other) error log
10607
10608 =over 4
10609
10610 =item SYNOPSIS
10611
10612 =item DESCRIPTION
10613
10614 =item REDIRECTING ERROR MESSAGES
10615
10616 =item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
10617
10618 =over 4
10619
10620 =item Changing the default message
10621
10622 =back
10623
10624 =item MAKING WARNINGS APPEAR AS HTML COMMENTS
10625
10626 =item OVERRIDING THE NAME OF THE PROGRAM
10627
10628 =item AUTHORS
10629
10630 =item SEE ALSO
10631
10632 =back
10633
10634 =head2 CGI::Cookie - Interface to Netscape Cookies
10635
10636 =over 4
10637
10638 =item SYNOPSIS
10639
10640 =item DESCRIPTION
10641
10642 =item USING CGI::Cookie
10643
10644 B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
10645
10646 =over 4
10647
10648 =item Creating New Cookies
10649
10650 =item Sending the Cookie to the Browser
10651
10652 =item Recovering Previous Cookies
10653
10654 =item Manipulating Cookies
10655
10656 B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
10657
10658 =back
10659
10660 =item AUTHOR INFORMATION
10661
10662 =item BUGS
10663
10664 =item SEE ALSO
10665
10666 =back
10667
10668 =head2 CGI::Fast - CGI Interface for Fast CGI
10669
10670 =over 4
10671
10672 =item SYNOPSIS
10673
10674 =item DESCRIPTION
10675
10676 =item OTHER PIECES OF THE PUZZLE
10677
10678 =item WRITING FASTCGI PERL SCRIPTS
10679
10680 =item INSTALLING FASTCGI SCRIPTS
10681
10682 =item USING FASTCGI SCRIPTS AS CGI SCRIPTS
10683
10684 =item EXTERNAL FASTCGI SERVER INVOCATION
10685
10686 FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
10687
10688 =item CAVEATS
10689
10690 =item AUTHOR INFORMATION
10691
10692 =item BUGS
10693
10694 =item SEE ALSO
10695
10696 =back
10697
10698 =head2 CGI::Pretty - module to produce nicely formatted HTML code
10699
10700 =over 4
10701
10702 =item SYNOPSIS
10703
10704 =item DESCRIPTION
10705
10706 =over 4
10707
10708 =item Tags that won't be formatted
10709
10710 =item Customizing the Indenting
10711
10712 =back
10713
10714 =item BUGS
10715
10716 =item AUTHOR
10717
10718 =item SEE ALSO
10719
10720 =back
10721
10722 =head2 CGI::Push - Simple Interface to Server Push
10723
10724 =over 4
10725
10726 =item SYNOPSIS
10727
10728 =item DESCRIPTION
10729
10730 =item USING CGI::Push
10731
10732 -next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
10733
10734 =over 4
10735
10736 =item Heterogeneous Pages
10737
10738 =item Changing the Page Delay on the Fly
10739
10740 =back
10741
10742 =item INSTALLING CGI::Push SCRIPTS
10743
10744 =item AUTHOR INFORMATION
10745
10746 =item BUGS
10747
10748 =item SEE ALSO
10749
10750 =back
10751
10752 =head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
10753
10754 =over 4
10755
10756 =item SYNOPSIS
10757
10758 =item ABSTRACT
10759
10760 =item DESCRIPTION
10761
10762 =item AUTHOR INFORMATION
10763
10764 =item BUGS
10765
10766 =item SEE ALSO
10767
10768 =back
10769
10770 =head2 CGI::Util - Internal utilities used by CGI module
10771
10772 =over 4
10773
10774 =item SYNOPSIS
10775
10776 =item DESCRIPTION
10777
10778 =item AUTHOR INFORMATION
10779
10780 =item SEE ALSO
10781
10782 =back
10783
10784 =head2 CPAN - query, download and build perl modules from CPAN sites
10785
10786 =over 4
10787
10788 =item SYNOPSIS
10789
10790 =item STATUS
10791
10792 =item DESCRIPTION
10793
10794 =over 4
10795
10796 =item Interactive Mode
10797
10798 Searching for authors, bundles, distribution files and modules, make, test,
10799 install, clean  modules or distributions, get, readme, look module or
10800 distribution, ls author, Signals
10801
10802 =item CPAN::Shell
10803
10804 =item autobundle
10805
10806 =item recompile
10807
10808 =item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
10809
10810 =item Programmer's interface
10811
10812 expand($type,@things), expandany(@things), Programming Examples
10813
10814 =item Methods in the other Classes
10815
10816 CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
10817 CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
10818 CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
10819 CPAN::Bundle::clean(), CPAN::Bundle::contains(),
10820 CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
10821 CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
10822 CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
10823 CPAN::Bundle::readme(), CPAN::Bundle::test(),
10824 CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
10825 CPAN::Distribution::clean(), CPAN::Distribution::containsmods(),
10826 CPAN::Distribution::cvs_import(), CPAN::Distribution::dir(),
10827 CPAN::Distribution::force($method,@args), CPAN::Distribution::get(),
10828 CPAN::Distribution::install(), CPAN::Distribution::isa_perl(),
10829 CPAN::Distribution::look(), CPAN::Distribution::make(),
10830 CPAN::Distribution::prereq_pm(), CPAN::Distribution::readme(),
10831 CPAN::Distribution::test(), CPAN::Distribution::uptodate(),
10832 CPAN::Index::force_reload(), CPAN::Index::reload(), CPAN::InfoObj::dump(),
10833 CPAN::Module::as_glimpse(), CPAN::Module::as_string(),
10834 CPAN::Module::clean(), CPAN::Module::cpan_file(),
10835 CPAN::Module::cpan_version(), CPAN::Module::cvs_import(),
10836 CPAN::Module::description(), CPAN::Module::force($method,@args),
10837 CPAN::Module::get(), CPAN::Module::inst_file(),
10838 CPAN::Module::inst_version(), CPAN::Module::install(),
10839 CPAN::Module::look(), CPAN::Module::make(),
10840 CPAN::Module::manpage_headline(), CPAN::Module::readme(),
10841 CPAN::Module::test(), CPAN::Module::uptodate(), CPAN::Module::userid()
10842
10843 =item Cache Manager
10844
10845 =item Bundles
10846
10847 =item Prerequisites
10848
10849 =item Finding packages and VERSION
10850
10851 =item Debugging
10852
10853 =item Floppy, Zip, Offline Mode
10854
10855 =back
10856
10857 =item CONFIGURATION
10858
10859 C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
10860 E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
10861 optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
10862 [unshift|push|splice] E<lt>listE<gt>>
10863
10864 =over 4
10865
10866 =item Note on urllist parameter's format
10867
10868 =item urllist parameter has CD-ROM support
10869
10870 =back
10871
10872 =item SECURITY
10873
10874 =item EXPORT
10875
10876 =item POPULATE AN INSTALLATION WITH LOTS OF MODULES
10877
10878 =item WORKING WITH CPAN.pm BEHIND FIREWALLS
10879
10880 =over 4
10881
10882 =item Three basic types of firewalls
10883
10884 http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
10885
10886 =item Configuring lynx or ncftp for going through a firewall
10887
10888 =back
10889
10890 =item FAQ
10891
10892 1), 2), 3), 4), 5), 6), 7), 8), 9), 10)
10893
10894 =item BUGS
10895
10896 =item AUTHOR
10897
10898 =item TRANSLATIONS
10899
10900 =item SEE ALSO
10901
10902 =back
10903
10904 =head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
10905
10906 =over 4
10907
10908 =item SYNOPSIS
10909
10910 =item DESCRIPTION
10911
10912 =back
10913
10914 =head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
10915 module
10916
10917 =over 4
10918
10919 =item SYNOPSIS
10920
10921 =item DESCRIPTION
10922
10923 =item  SEE ALSO
10924
10925 =back
10926
10927 =head2 Carp, carp    - warn of errors (from perspective of caller)
10928
10929 =over 4
10930
10931 =item SYNOPSIS
10932
10933 =item DESCRIPTION
10934
10935 =over 4
10936
10937 =item Forcing a Stack Trace
10938
10939 =back
10940
10941 =item BUGS
10942
10943 =back
10944
10945 =head2 Carp::Heavy, Carp heavy machinery - no user serviceable parts inside
10946
10947 =head2 Class::ISA -- report the search path for a class's ISA tree
10948
10949 =over 4
10950
10951 =item SYNOPSIS
10952
10953 =item DESCRIPTION
10954
10955 =item FUNCTIONS
10956
10957 the function Class::ISA::super_path($CLASS), the function
10958 Class::ISA::self_and_super_path($CLASS), the function
10959 Class::ISA::self_and_super_versions($CLASS)
10960
10961 =item CAUTIONARY NOTES
10962
10963 =item COPYRIGHT
10964
10965 =item AUTHOR
10966
10967 =back
10968
10969 =head2 Class::Struct - declare struct-like datatypes as Perl classes
10970
10971 =over 4
10972
10973 =item SYNOPSIS
10974
10975 =item DESCRIPTION
10976
10977 =over 4
10978
10979 =item The C<struct()> function
10980
10981 =item Class Creation at Compile Time
10982
10983 =item Element Types and Accessor Methods
10984
10985 Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
10986 C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
10987
10988 =item Initializing with C<new>
10989
10990 =back
10991
10992 =item EXAMPLES
10993
10994 Example 1, Example 2, Example 3
10995
10996 =item Author and Modification History
10997
10998 =back
10999
11000 =head2 Config - access Perl configuration information
11001
11002 =over 4
11003
11004 =item SYNOPSIS
11005
11006 =item DESCRIPTION
11007
11008 myconfig(), config_sh(), config_re($regex), config_vars(@names)
11009
11010 =item EXAMPLE
11011
11012 =item WARNING
11013
11014 =item GLOSSARY
11015
11016 =over 4
11017
11018 =item _
11019
11020 C<_a>, C<_exe>, C<_o>
11021
11022 =item a
11023
11024 C<afs>, C<afsroot>, C<alignbytes>, C<ansi2knr>, C<aphostname>,
11025 C<api_revision>, C<api_subversion>, C<api_version>, C<api_versionstring>,
11026 C<ar>, C<archlib>, C<archlibexp>, C<archname64>, C<archname>, C<archobjs>,
11027 C<asctime_r_proto>, C<awk>
11028
11029 =item b
11030
11031 C<baserev>, C<bash>, C<bin>, C<binexp>, C<bison>, C<byacc>, C<byteorder>
11032
11033 =item c
11034
11035 C<c>, C<castflags>, C<cat>, C<cc>, C<cccdlflags>, C<ccdlflags>, C<ccflags>,
11036 C<ccflags_uselargefiles>, C<ccname>, C<ccsymbols>, C<ccversion>, C<cf_by>,
11037 C<cf_email>, C<cf_time>, C<charsize>, C<chgrp>, C<chmod>, C<chown>,
11038 C<clocktype>, C<comm>, C<compress>, C<contains>, C<cp>, C<cpio>, C<cpp>,
11039 C<cpp_stuff>, C<cppccsymbols>, C<cppflags>, C<cpplast>, C<cppminus>,
11040 C<cpprun>, C<cppstdin>, C<cppsymbols>, C<crypt_r_proto>, C<cryptlib>,
11041 C<csh>, C<ctermid_r_proto>, C<ctime_r_proto>
11042
11043 =item d
11044
11045 C<d__fwalk>, C<d_access>, C<d_accessx>, C<d_aintl>, C<d_alarm>,
11046 C<d_archlib>, C<d_asctime_r>, C<d_atolf>, C<d_atoll>, C<d_attribut>,
11047 C<d_bcmp>, C<d_bcopy>, C<d_bsd>, C<d_bsdgetpgrp>, C<d_bsdsetpgrp>,
11048 C<d_bzero>, C<d_casti32>, C<d_castneg>, C<d_charvspr>, C<d_chown>,
11049 C<d_chroot>, C<d_chsize>, C<d_class>, C<d_closedir>, C<d_cmsghdr_s>,
11050 C<d_const>, C<d_copysignl>, C<d_crypt>, C<d_crypt_r>, C<d_csh>,
11051 C<d_ctermid_r>, C<d_ctime_r>, C<d_cuserid>, C<d_dbl_dig>,
11052 C<d_dbminitproto>, C<d_difftime>, C<d_dirfd>, C<d_dirnamlen>, C<d_dlerror>,
11053 C<d_dlopen>, C<d_dlsymun>, C<d_dosuid>, C<d_drand48_r>, C<d_drand48proto>,
11054 C<d_dup2>, C<d_eaccess>, C<d_endgrent>, C<d_endgrent_r>, C<d_endhent>,
11055 C<d_endhostent_r>, C<d_endnent>, C<d_endnetent_r>, C<d_endpent>,
11056 C<d_endprotoent_r>, C<d_endpwent>, C<d_endpwent_r>, C<d_endsent>,
11057 C<d_endservent_r>, C<d_eofnblk>, C<d_eunice>, C<d_faststdio>, C<d_fchdir>,
11058 C<d_fchmod>, C<d_fchown>, C<d_fcntl>, C<d_fcntl_can_lock>, C<d_fd_macros>,
11059 C<d_fd_set>, C<d_fds_bits>, C<d_fgetpos>, C<d_finite>, C<d_finitel>,
11060 C<d_flexfnam>, C<d_flock>, C<d_flockproto>, C<d_fork>, C<d_fp_class>,
11061 C<d_fpathconf>, C<d_fpclass>, C<d_fpclassify>, C<d_fpclassl>,
11062 C<d_fpos64_t>, C<d_frexpl>, C<d_fs_data_s>, C<d_fseeko>, C<d_fsetpos>,
11063 C<d_fstatfs>, C<d_fstatvfs>, C<d_fsync>, C<d_ftello>, C<d_ftime>,
11064 C<d_Gconvert>, C<d_getcwd>, C<d_getespwnam>, C<d_getfsstat>, C<d_getgrent>,
11065 C<d_getgrent_r>, C<d_getgrgid_r>, C<d_getgrnam_r>, C<d_getgrps>,
11066 C<d_gethbyaddr>, C<d_gethbyname>, C<d_gethent>, C<d_gethname>,
11067 C<d_gethostbyaddr_r>, C<d_gethostbyname_r>, C<d_gethostent_r>,
11068 C<d_gethostprotos>, C<d_getitimer>, C<d_getlogin>, C<d_getlogin_r>,
11069 C<d_getmnt>, C<d_getmntent>, C<d_getnbyaddr>, C<d_getnbyname>,
11070 C<d_getnent>, C<d_getnetbyaddr_r>, C<d_getnetbyname_r>, C<d_getnetent_r>,
11071 C<d_getnetprotos>, C<d_getpagsz>, C<d_getpbyname>, C<d_getpbynumber>,
11072 C<d_getpent>, C<d_getpgid>, C<d_getpgrp2>, C<d_getpgrp>, C<d_getppid>,
11073 C<d_getprior>, C<d_getprotobyname_r>, C<d_getprotobynumber_r>,
11074 C<d_getprotoent_r>, C<d_getprotoprotos>, C<d_getprpwnam>, C<d_getpwent>,
11075 C<d_getpwent_r>, C<d_getpwnam_r>, C<d_getpwuid_r>, C<d_getsbyname>,
11076 C<d_getsbyport>, C<d_getsent>, C<d_getservbyname_r>, C<d_getservbyport_r>,
11077 C<d_getservent_r>, C<d_getservprotos>, C<d_getspnam>, C<d_getspnam_r>,
11078 C<d_gettimeod>, C<d_gmtime_r>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>,
11079 C<d_htonl>, C<d_ilogbl>, C<d_index>, C<d_inetaton>, C<d_int64_t>,
11080 C<d_isascii>, C<d_isfinite>, C<d_isinf>, C<d_isnan>, C<d_isnanl>,
11081 C<d_killpg>, C<d_lchown>, C<d_ldbl_dig>, C<d_link>, C<d_localtime_r>,
11082 C<d_locconv>, C<d_lockf>, C<d_longdbl>, C<d_longlong>, C<d_lseekproto>,
11083 C<d_lstat>, C<d_madvise>, C<d_mblen>, C<d_mbstowcs>, C<d_mbtowc>,
11084 C<d_memchr>, C<d_memcmp>, C<d_memcpy>, C<d_memmove>, C<d_memset>,
11085 C<d_mkdir>, C<d_mkdtemp>, C<d_mkfifo>, C<d_mkstemp>, C<d_mkstemps>,
11086 C<d_mktime>, C<d_mmap>, C<d_modfl>, C<d_modfl_pow32_bug>, C<d_modflproto>,
11087 C<d_mprotect>, C<d_msg>, C<d_msg_ctrunc>, C<d_msg_dontroute>, C<d_msg_oob>,
11088 C<d_msg_peek>, C<d_msg_proxy>, C<d_msgctl>, C<d_msgget>, C<d_msghdr_s>,
11089 C<d_msgrcv>, C<d_msgsnd>, C<d_msync>, C<d_munmap>, C<d_mymalloc>,
11090 C<d_nice>, C<d_nl_langinfo>, C<d_nv_preserves_uv>, C<d_off64_t>,
11091 C<d_old_pthread_create_joinable>, C<d_oldpthreads>, C<d_oldsock>,
11092 C<d_open3>, C<d_pathconf>, C<d_pause>, C<d_perl_otherlibdirs>,
11093 C<d_phostname>, C<d_pipe>, C<d_poll>, C<d_portable>, C<d_PRId64>,
11094 C<d_PRIeldbl>, C<d_PRIEUldbl>, C<d_PRIfldbl>, C<d_PRIFUldbl>,
11095 C<d_PRIgldbl>, C<d_PRIGUldbl>, C<d_PRIi64>, C<d_PRIo64>, C<d_PRIu64>,
11096 C<d_PRIx64>, C<d_PRIXU64>, C<d_procselfexe>, C<d_pthread_atfork>,
11097 C<d_pthread_attr_setscope>, C<d_pthread_yield>, C<d_pwage>, C<d_pwchange>,
11098 C<d_pwclass>, C<d_pwcomment>, C<d_pwexpire>, C<d_pwgecos>, C<d_pwpasswd>,
11099 C<d_pwquota>, C<d_qgcvt>, C<d_quad>, C<d_random_r>, C<d_readdir64_r>,
11100 C<d_readdir>, C<d_readdir_r>, C<d_readlink>, C<d_readv>, C<d_recvmsg>,
11101 C<d_rename>, C<d_rewinddir>, C<d_rmdir>, C<d_safebcpy>, C<d_safemcpy>,
11102 C<d_sanemcmp>, C<d_sbrkproto>, C<d_scalbnl>, C<d_sched_yield>,
11103 C<d_scm_rights>, C<d_SCNfldbl>, C<d_seekdir>, C<d_select>, C<d_sem>,
11104 C<d_semctl>, C<d_semctl_semid_ds>, C<d_semctl_semun>, C<d_semget>,
11105 C<d_semop>, C<d_sendmsg>, C<d_setegid>, C<d_seteuid>, C<d_setgrent>,
11106 C<d_setgrent_r>, C<d_setgrps>, C<d_sethent>, C<d_sethostent_r>,
11107 C<d_setitimer>, C<d_setlinebuf>, C<d_setlocale>, C<d_setlocale_r>,
11108 C<d_setnent>, C<d_setnetent_r>, C<d_setpent>, C<d_setpgid>, C<d_setpgrp2>,
11109 C<d_setpgrp>, C<d_setprior>, C<d_setproctitle>, C<d_setprotoent_r>,
11110 C<d_setpwent>, C<d_setpwent_r>, C<d_setregid>, C<d_setresgid>,
11111 C<d_setresuid>, C<d_setreuid>, C<d_setrgid>, C<d_setruid>, C<d_setsent>,
11112 C<d_setservent_r>, C<d_setsid>, C<d_setvbuf>, C<d_sfio>, C<d_shm>,
11113 C<d_shmat>, C<d_shmatprototype>, C<d_shmctl>, C<d_shmdt>, C<d_shmget>,
11114 C<d_sigaction>, C<d_sigprocmask>, C<d_sigsetjmp>, C<d_sockatmark>,
11115 C<d_sockatmarkproto>, C<d_socket>, C<d_socklen_t>, C<d_sockpair>,
11116 C<d_socks5_init>, C<d_sqrtl>, C<d_srand48_r>, C<d_srandom_r>,
11117 C<d_sresgproto>, C<d_sresuproto>, C<d_statblks>, C<d_statfs_f_flags>,
11118 C<d_statfs_s>, C<d_statvfs>, C<d_stdio_cnt_lval>, C<d_stdio_ptr_lval>,
11119 C<d_stdio_ptr_lval_nochange_cnt>, C<d_stdio_ptr_lval_sets_cnt>,
11120 C<d_stdio_stream_array>, C<d_stdiobase>, C<d_stdstdio>, C<d_strchr>,
11121 C<d_strcoll>, C<d_strctcpy>, C<d_strerrm>, C<d_strerror>, C<d_strerror_r>,
11122 C<d_strftime>, C<d_strtod>, C<d_strtol>, C<d_strtold>, C<d_strtoll>,
11123 C<d_strtoq>, C<d_strtoul>, C<d_strtoull>, C<d_strtouq>, C<d_strxfrm>,
11124 C<d_suidsafe>, C<d_symlink>, C<d_syscall>, C<d_syscallproto>, C<d_sysconf>,
11125 C<d_sysernlst>, C<d_syserrlst>, C<d_system>, C<d_tcgetpgrp>,
11126 C<d_tcsetpgrp>, C<d_telldir>, C<d_telldirproto>, C<d_time>, C<d_times>,
11127 C<d_tm_tm_gmtoff>, C<d_tm_tm_zone>, C<d_tmpnam_r>, C<d_truncate>,
11128 C<d_ttyname_r>, C<d_tzname>, C<d_u32align>, C<d_ualarm>, C<d_umask>,
11129 C<d_uname>, C<d_union_semun>, C<d_unordered>, C<d_usleep>,
11130 C<d_usleepproto>, C<d_ustat>, C<d_vendorarch>, C<d_vendorbin>,
11131 C<d_vendorlib>, C<d_vendorscript>, C<d_vfork>, C<d_void_closedir>,
11132 C<d_voidsig>, C<d_voidtty>, C<d_volatile>, C<d_vprintf>, C<d_wait4>,
11133 C<d_waitpid>, C<d_wcstombs>, C<d_wctomb>, C<d_writev>, C<d_xenix>, C<date>,
11134 C<db_hashtype>, C<db_prefixtype>, C<db_version_major>, C<db_version_minor>,
11135 C<db_version_patch>, C<defvoidused>, C<direntrytype>, C<dlext>, C<dlsrc>,
11136 C<doublesize>, C<drand01>, C<drand48_r_proto>, C<dynamic_ext>
11137
11138 =item e
11139
11140 C<eagain>, C<ebcdic>, C<echo>, C<egrep>, C<emacs>, C<endgrent_r_proto>,
11141 C<endhostent_r_proto>, C<endnetent_r_proto>, C<endprotoent_r_proto>,
11142 C<endpwent_r_proto>, C<endservent_r_proto>, C<eunicefix>, C<exe_ext>,
11143 C<expr>, C<extensions>, C<extras>
11144
11145 =item f
11146
11147 C<fflushall>, C<fflushNULL>, C<find>, C<firstmakefile>, C<flex>,
11148 C<fpossize>, C<fpostype>, C<freetype>, C<from>, C<full_ar>, C<full_csh>,
11149 C<full_sed>
11150
11151 =item g
11152
11153 C<gccansipedantic>, C<gccosandvers>, C<gccversion>, C<getgrent_r_proto>,
11154 C<getgrgid_r_proto>, C<getgrnam_r_proto>, C<gethostbyaddr_r_proto>,
11155 C<gethostbyname_r_proto>, C<gethostent_r_proto>, C<getlogin_r_proto>,
11156 C<getnetbyaddr_r_proto>, C<getnetbyname_r_proto>, C<getnetent_r_proto>,
11157 C<getprotobyname_r_proto>, C<getprotobynumber_r_proto>,
11158 C<getprotoent_r_proto>, C<getpwent_r_proto>, C<getpwnam_r_proto>,
11159 C<getpwuid_r_proto>, C<getservbyname_r_proto>, C<getservbyport_r_proto>,
11160 C<getservent_r_proto>, C<getspnam_r_proto>, C<gidformat>, C<gidsign>,
11161 C<gidsize>, C<gidtype>, C<glibpth>, C<gmake>, C<gmtime_r_proto>,
11162 C<gnulibc_version>, C<grep>, C<groupcat>, C<groupstype>, C<gzip>
11163
11164 =item h
11165
11166 C<h_fcntl>, C<h_sysfile>, C<hint>, C<hostcat>, C<html1dir>, C<html1direxp>,
11167 C<html3dir>, C<html3direxp>
11168
11169 =item i
11170
11171 C<i16size>, C<i16type>, C<i32size>, C<i32type>, C<i64size>, C<i64type>,
11172 C<i8size>, C<i8type>, C<i_arpainet>, C<i_bsdioctl>, C<i_crypt>, C<i_db>,
11173 C<i_dbm>, C<i_dirent>, C<i_dld>, C<i_dlfcn>, C<i_fcntl>, C<i_float>,
11174 C<i_fp>, C<i_fp_class>, C<i_gdbm>, C<i_grp>, C<i_ieeefp>, C<i_inttypes>,
11175 C<i_langinfo>, C<i_libutil>, C<i_limits>, C<i_locale>, C<i_machcthr>,
11176 C<i_malloc>, C<i_math>, C<i_memory>, C<i_mntent>, C<i_ndbm>, C<i_netdb>,
11177 C<i_neterrno>, C<i_netinettcp>, C<i_niin>, C<i_poll>, C<i_prot>,
11178 C<i_pthread>, C<i_pwd>, C<i_rpcsvcdbm>, C<i_sfio>, C<i_sgtty>, C<i_shadow>,
11179 C<i_socks>, C<i_stdarg>, C<i_stddef>, C<i_stdlib>, C<i_string>,
11180 C<i_sunmath>, C<i_sysaccess>, C<i_sysdir>, C<i_sysfile>, C<i_sysfilio>,
11181 C<i_sysin>, C<i_sysioctl>, C<i_syslog>, C<i_sysmman>, C<i_sysmode>,
11182 C<i_sysmount>, C<i_sysndir>, C<i_sysparam>, C<i_sysresrc>, C<i_syssecrt>,
11183 C<i_sysselct>, C<i_syssockio>, C<i_sysstat>, C<i_sysstatfs>,
11184 C<i_sysstatvfs>, C<i_systime>, C<i_systimek>, C<i_systimes>, C<i_systypes>,
11185 C<i_sysuio>, C<i_sysun>, C<i_sysutsname>, C<i_sysvfs>, C<i_syswait>,
11186 C<i_termio>, C<i_termios>, C<i_time>, C<i_unistd>, C<i_ustat>, C<i_utime>,
11187 C<i_values>, C<i_varargs>, C<i_varhdr>, C<i_vfork>,
11188 C<ignore_versioned_solibs>, C<inc_version_list>, C<inc_version_list_init>,
11189 C<incpath>, C<inews>, C<installarchlib>, C<installbin>, C<installhtml1dir>,
11190 C<installhtml3dir>, C<installman1dir>, C<installman3dir>, C<installprefix>,
11191 C<installprefixexp>, C<installprivlib>, C<installscript>,
11192 C<installsitearch>, C<installsitebin>, C<installsitehtml1dir>,
11193 C<installsitehtml3dir>, C<installsitelib>, C<installsiteman1dir>,
11194 C<installsiteman3dir>, C<installsitescript>, C<installstyle>,
11195 C<installusrbinperl>, C<installvendorarch>, C<installvendorbin>,
11196 C<installvendorhtml1dir>, C<installvendorhtml3dir>, C<installvendorlib>,
11197 C<installvendorman1dir>, C<installvendorman3dir>, C<installvendorscript>,
11198 C<intsize>, C<issymlink>, C<ivdformat>, C<ivsize>, C<ivtype>
11199
11200 =item k
11201
11202 C<known_extensions>, C<ksh>
11203
11204 =item l
11205
11206 C<ld>, C<lddlflags>, C<ldflags>, C<ldflags_uselargefiles>, C<ldlibpthname>,
11207 C<less>, C<lib_ext>, C<libc>, C<libperl>, C<libpth>, C<libs>, C<libsdirs>,
11208 C<libsfiles>, C<libsfound>, C<libspath>, C<libswanted>,
11209 C<libswanted_uselargefiles>, C<line>, C<lint>, C<lkflags>, C<ln>, C<lns>,
11210 C<localtime_r_proto>, C<locincpth>, C<loclibpth>, C<longdblsize>,
11211 C<longlongsize>, C<longsize>, C<lp>, C<lpr>, C<ls>, C<lseeksize>,
11212 C<lseektype>
11213
11214 =item m
11215
11216 C<mail>, C<mailx>, C<make>, C<make_set_make>, C<mallocobj>, C<mallocsrc>,
11217 C<malloctype>, C<man1dir>, C<man1direxp>, C<man1ext>, C<man3dir>,
11218 C<man3direxp>, C<man3ext>
11219
11220 =item M
11221
11222 C<Mcc>, C<mips_type>, C<mistrustnm>, C<mkdir>, C<mmaptype>, C<modetype>,
11223 C<more>, C<multiarch>, C<mv>, C<myarchname>, C<mydomain>, C<myhostname>,
11224 C<myuname>
11225
11226 =item n
11227
11228 C<n>, C<need_va_copy>, C<netdb_hlen_type>, C<netdb_host_type>,
11229 C<netdb_name_type>, C<netdb_net_type>, C<nm>, C<nm_opt>, C<nm_so_opt>,
11230 C<nonxs_ext>, C<nroff>, C<nv_preserves_uv_bits>, C<nveformat>,
11231 C<nvEUformat>, C<nvfformat>, C<nvFUformat>, C<nvgformat>, C<nvGUformat>,
11232 C<nvsize>, C<nvtype>
11233
11234 =item o
11235
11236 C<o_nonblock>, C<obj_ext>, C<old_pthread_create_joinable>, C<optimize>,
11237 C<orderlib>, C<osname>, C<osvers>, C<otherlibdirs>
11238
11239 =item p
11240
11241 C<package>, C<pager>, C<passcat>, C<patchlevel>, C<path_sep>, C<perl5>,
11242 C<perl>, C<perl_patchlevel>
11243
11244 =item P
11245
11246 C<PERL_REVISION>, C<PERL_SUBVERSION>, C<PERL_VERSION>, C<perladmin>,
11247 C<perllibs>, C<perlpath>, C<pg>, C<phostname>, C<pidtype>, C<plibpth>,
11248 C<pm_apiversion>, C<pmake>, C<pr>, C<prefix>, C<prefixexp>, C<privlib>,
11249 C<privlibexp>, C<procselfexe>, C<prototype>, C<ptrsize>
11250
11251 =item q
11252
11253 C<quadkind>, C<quadtype>
11254
11255 =item r
11256
11257 C<randbits>, C<randfunc>, C<random_r_proto>, C<randseedtype>, C<ranlib>,
11258 C<rd_nodata>, C<readdir64_r_proto>, C<readdir_r_proto>, C<revision>, C<rm>,
11259 C<rmail>, C<run>, C<runnm>
11260
11261 =item s
11262
11263 C<sched_yield>, C<scriptdir>, C<scriptdirexp>, C<sed>, C<seedfunc>,
11264 C<selectminbits>, C<selecttype>, C<sendmail>, C<setgrent_r_proto>,
11265 C<sethostent_r_proto>, C<setlocale_r_proto>, C<setnetent_r_proto>,
11266 C<setprotoent_r_proto>, C<setpwent_r_proto>, C<setservent_r_proto>, C<sh>,
11267 C<shar>, C<sharpbang>, C<shmattype>, C<shortsize>, C<shrpenv>, C<shsharp>,
11268 C<sig_count>, C<sig_name>, C<sig_name_init>, C<sig_num>, C<sig_num_init>,
11269 C<sig_size>, C<signal_t>, C<sitearch>, C<sitearchexp>, C<sitebin>,
11270 C<sitebinexp>, C<sitehtml1dir>, C<sitehtml1direxp>, C<sitehtml3dir>,
11271 C<sitehtml3direxp>, C<sitelib>, C<sitelib_stem>, C<sitelibexp>,
11272 C<siteman1dir>, C<siteman1direxp>, C<siteman3dir>, C<siteman3direxp>,
11273 C<siteprefix>, C<siteprefixexp>, C<sitescript>, C<sitescriptexp>,
11274 C<sizesize>, C<sizetype>, C<sleep>, C<smail>, C<so>, C<sockethdr>,
11275 C<socketlib>, C<socksizetype>, C<sort>, C<spackage>, C<spitshell>,
11276 C<sPRId64>, C<sPRIeldbl>, C<sPRIEUldbl>, C<sPRIfldbl>, C<sPRIFUldbl>,
11277 C<sPRIgldbl>, C<sPRIGUldbl>, C<sPRIi64>, C<sPRIo64>, C<sPRIu64>,
11278 C<sPRIx64>, C<sPRIXU64>, C<srand48_r_proto>, C<srandom_r_proto>, C<src>,
11279 C<sSCNfldbl>, C<ssizetype>, C<startperl>, C<startsh>, C<static_ext>,
11280 C<stdchar>, C<stdio_base>, C<stdio_bufsiz>, C<stdio_cnt>, C<stdio_filbuf>,
11281 C<stdio_ptr>, C<stdio_stream_array>, C<strerror_r_proto>, C<strings>,
11282 C<submit>, C<subversion>, C<sysman>
11283
11284 =item t
11285
11286 C<tail>, C<tar>, C<targetarch>, C<tbl>, C<tee>, C<test>, C<timeincl>,
11287 C<timetype>, C<tmpnam_r_proto>, C<to>, C<touch>, C<tr>, C<trnl>, C<troff>,
11288 C<ttyname_r_proto>
11289
11290 =item u
11291
11292 C<u16size>, C<u16type>, C<u32size>, C<u32type>, C<u64size>, C<u64type>,
11293 C<u8size>, C<u8type>, C<uidformat>, C<uidsign>, C<uidsize>, C<uidtype>,
11294 C<uname>, C<uniq>, C<uquadtype>, C<use5005threads>, C<use64bitall>,
11295 C<use64bitint>, C<usecrosscompile>, C<usedl>, C<usefaststdio>,
11296 C<useithreads>, C<uselargefiles>, C<uselongdouble>, C<usemorebits>,
11297 C<usemultiplicity>, C<usemymalloc>, C<usenm>, C<useopcode>, C<useperlio>,
11298 C<useposix>, C<usereentrant>, C<usesfio>, C<useshrplib>, C<usesocks>,
11299 C<usethreads>, C<usevendorprefix>, C<usevfork>, C<usrinc>, C<uuname>,
11300 C<uvoformat>, C<uvsize>, C<uvtype>, C<uvuformat>, C<uvxformat>,
11301 C<uvXUformat>
11302
11303 =item v
11304
11305 C<vendorarch>, C<vendorarchexp>, C<vendorbin>, C<vendorbinexp>,
11306 C<vendorhtml1dir>, C<vendorhtml1direxp>, C<vendorhtml3dir>,
11307 C<vendorhtml3direxp>, C<vendorlib>, C<vendorlib_stem>, C<vendorlibexp>,
11308 C<vendorman1dir>, C<vendorman1direxp>, C<vendorman3dir>,
11309 C<vendorman3direxp>, C<vendorprefix>, C<vendorprefixexp>, C<vendorscript>,
11310 C<vendorscriptexp>, C<version>, C<version_patchlevel_string>,
11311 C<versiononly>, C<vi>, C<voidflags>
11312
11313 =item x
11314
11315 C<xlibpth>, C<xs_apiversion>
11316
11317 =item y
11318
11319 C<yacc>, C<yaccflags>
11320
11321 =item z
11322
11323 C<zcat>, C<zip>
11324
11325 =back
11326
11327 =item NOTE
11328
11329 =back
11330
11331 =head2 Cwd - get pathname of current working directory
11332
11333 =over 4
11334
11335 =item SYNOPSIS
11336
11337 =item DESCRIPTION
11338
11339 =over 4
11340
11341 =item getcwd and friends
11342
11343 getcwd, cwd, fastcwd, fastgetcwd
11344
11345 =item abs_path and friends
11346
11347 abs_path, realpath, fast_abs_path
11348
11349 =item $ENV{PWD}
11350
11351 =back
11352
11353 =item NOTES
11354
11355 =item SEE ALSO
11356
11357 =back
11358
11359 =head2 DB - programmatic interface to the Perl debugging API (draft,
11360 subject to
11361 change)
11362
11363 =over 4
11364
11365 =item SYNOPSIS
11366
11367 =item DESCRIPTION
11368
11369 =over 4
11370
11371 =item Global Variables
11372
11373  $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace,  @DB::args, 
11374 @DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
11375 $DB::lineno
11376
11377 =item API Methods
11378
11379 CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
11380 CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
11381
11382 =item Client Callback Methods
11383
11384 CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
11385 CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
11386 CLIENT->output(LIST)
11387
11388 =back
11389
11390 =item BUGS
11391
11392 =item AUTHOR
11393
11394 =back
11395
11396 =head2 DB_File - Perl5 access to Berkeley DB version 1.x
11397
11398 =over 4
11399
11400 =item SYNOPSIS
11401
11402 =item DESCRIPTION
11403
11404 B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
11405
11406 =over 4
11407
11408 =item Using DB_File with Berkeley DB version 2 or greater
11409
11410 =item Interface to Berkeley DB
11411
11412 =item Opening a Berkeley DB Database File
11413
11414 =item Default Parameters
11415
11416 =item In Memory Databases
11417
11418 =back
11419
11420 =item DB_HASH
11421
11422 =over 4
11423
11424 =item A Simple Example
11425
11426 =back
11427
11428 =item DB_BTREE
11429
11430 =over 4
11431
11432 =item Changing the BTREE sort order
11433
11434 =item Handling Duplicate Keys 
11435
11436 =item The get_dup() Method
11437
11438 =item The find_dup() Method
11439
11440 =item The del_dup() Method
11441
11442 =item Matching Partial Keys 
11443
11444 =back
11445
11446 =item DB_RECNO
11447
11448 =over 4
11449
11450 =item The 'bval' Option
11451
11452 =item A Simple Example
11453
11454 =item Extra RECNO Methods
11455
11456 B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
11457 B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
11458 length, elements);>
11459
11460 =item Another Example
11461
11462 =back
11463
11464 =item THE API INTERFACE
11465
11466 B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
11467 $X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
11468 $flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
11469 $value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
11470
11471 =item DBM FILTERS
11472
11473 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
11474 B<filter_fetch_value>
11475
11476 =over 4
11477
11478 =item The Filter
11479
11480 =item An Example -- the NULL termination problem.
11481
11482 =item Another Example -- Key is a C int.
11483
11484 =back
11485
11486 =item HINTS AND TIPS 
11487
11488 =over 4
11489
11490 =item Locking: The Trouble with fd
11491
11492 =item Safe ways to lock a database
11493
11494 B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
11495
11496 =item Sharing Databases With C Applications
11497
11498 =item The untie() Gotcha
11499
11500 =back
11501
11502 =item COMMON QUESTIONS
11503
11504 =over 4
11505
11506 =item Why is there Perl source in my database?
11507
11508 =item How do I store complex data structures with DB_File?
11509
11510 =item What does "Invalid Argument" mean?
11511
11512 =item What does "Bareword 'DB_File' not allowed" mean? 
11513
11514 =back
11515
11516 =item REFERENCES
11517
11518 =item HISTORY
11519
11520 =item BUGS
11521
11522 =item AVAILABILITY
11523
11524 =item COPYRIGHT
11525
11526 =item SEE ALSO
11527
11528 =item AUTHOR
11529
11530 =back
11531
11532 =head2 Data::Dumper - stringified perl data structures, suitable for both
11533 printing and C<eval>
11534
11535 =over 4
11536
11537 =item SYNOPSIS
11538
11539 =item DESCRIPTION
11540
11541 =over 4
11542
11543 =item Methods
11544
11545 I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
11546 I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
11547 I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
11548 I<$OBJ>->Reset
11549
11550 =item Functions
11551
11552 Dumper(I<LIST>)
11553
11554 =item Configuration Variables or Methods
11555
11556 =item Exports
11557
11558 Dumper
11559
11560 =back
11561
11562 =item EXAMPLES
11563
11564 =item BUGS
11565
11566 =over 4
11567
11568 =item NOTE
11569
11570 =back
11571
11572 =item AUTHOR
11573
11574 =item VERSION
11575
11576 =item SEE ALSO
11577
11578 =back
11579
11580 =head2 Devel::DProf - a Perl code profiler
11581
11582 =over 4
11583
11584 =item SYNOPSIS
11585
11586 =item DESCRIPTION
11587
11588 =item PROFILE FORMAT
11589
11590 =item AUTOLOAD
11591
11592 =item ENVIRONMENT
11593
11594 =item BUGS
11595
11596 =item SEE ALSO
11597
11598 =back
11599
11600 =head2 Devel::PPPort - Perl/Pollution/Portability
11601
11602 =over 4
11603
11604 =item SYNOPSIS
11605
11606 =item DESCRIPTION
11607
11608 =over 4
11609
11610 =item WriteFile
11611
11612 =back
11613
11614 =item ppport.h
11615
11616 =item AUTHOR
11617
11618 =item SEE ALSO
11619
11620 =back
11621
11622 =head2 Devel::Peek - A data debugging tool for the XS programmer
11623
11624 =over 4
11625
11626 =item SYNOPSIS
11627
11628 =item DESCRIPTION
11629
11630 =over 4
11631
11632 =item Runtime debugging
11633
11634 =item Memory footprint debugging
11635
11636 =back
11637
11638 =item EXAMPLES
11639
11640 =over 4
11641
11642 =item A simple scalar string
11643
11644 =item A simple scalar number
11645
11646 =item A simple scalar with an extra reference
11647
11648 =item A reference to a simple scalar
11649
11650 =item A reference to an array
11651
11652 =item A reference to a hash
11653
11654 =item Dumping a large array or hash
11655
11656 =item A reference to an SV which holds a C pointer
11657
11658 =item A reference to a subroutine
11659
11660 =back
11661
11662 =item EXPORTS
11663
11664 =item BUGS
11665
11666 =item AUTHOR
11667
11668 =item SEE ALSO
11669
11670 =back
11671
11672 =head2 Devel::SelfStubber - generate stubs for a SelfLoading module
11673
11674 =over 4
11675
11676 =item SYNOPSIS
11677
11678 =item DESCRIPTION
11679
11680 =back
11681
11682 =head2 Digest:: - Modules that calculate message digests
11683
11684 =over 4
11685
11686 =item SYNOPSIS
11687
11688 =item DESCRIPTION
11689
11690 I<binary>, I<hex>, I<base64>
11691
11692 =item OO INTERFACE
11693
11694 $ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
11695 Digest::XXX->new($arg,...), $other_ctx = $ctx->clone, $ctx->reset,
11696 $ctx->add($data,...), $ctx->addfile($io_handle), $ctx->digest,
11697 $ctx->hexdigest, $ctx->b64digest
11698
11699 =item SEE ALSO
11700
11701 =item AUTHOR
11702
11703 =back
11704
11705 =head2 Digest::MD5 - Perl interface to the MD5 Algorithm
11706
11707 =over 4
11708
11709 =item SYNOPSIS
11710
11711 =item DESCRIPTION
11712
11713 =item FUNCTIONS
11714
11715 md5($data,...), md5_hex($data,...), md5_base64($data,...)
11716
11717 =item METHODS
11718
11719 $md5 = Digest::MD5->new, $md5->reset, $md5->clone, $md5->add($data,...),
11720 $md5->addfile($io_handle), $md5->digest, $md5->hexdigest, $md5->b64digest
11721
11722 =item EXAMPLES
11723
11724 =item SEE ALSO
11725
11726 =item COPYRIGHT
11727
11728 =item AUTHORS
11729
11730 =back
11731
11732 =head2 DirHandle - supply object methods for directory handles
11733
11734 =over 4
11735
11736 =item SYNOPSIS
11737
11738 =item DESCRIPTION
11739
11740 =item NOTES
11741
11742 =back
11743
11744 =head2 Dumpvalue - provides screen dump of Perl data.
11745
11746 =over 4
11747
11748 =item SYNOPSIS
11749
11750 =item DESCRIPTION
11751
11752 =over 4
11753
11754 =item Creation
11755
11756 C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
11757 C<dumpDBFiles>, C<dumpPackages>, C<dumpReused>, C<tick>, C<quoteHighBit>,
11758 C<printUndef>, C<usageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
11759 stopDbSignal
11760
11761 =item Methods
11762
11763 dumpValue, dumpValues, stringify, dumpvars, set_quote, set_unctrl,
11764 compactDump, veryCompact, set, get
11765
11766 =back
11767
11768 =back
11769
11770 =head2 DynaLoader - Dynamically load C libraries into Perl code
11771
11772 =over 4
11773
11774 =item SYNOPSIS
11775
11776 =item DESCRIPTION
11777
11778 @dl_library_path, @dl_resolve_using, @dl_require_symbols, @dl_librefs,
11779 @dl_modules, dl_error(), $dl_debug, dl_findfile(), dl_expandspec(),
11780 dl_load_file(), dl_unload_file(), dl_load_flags(), dl_find_symbol(),
11781 dl_find_symbol_anywhere(), dl_undef_symbols(), dl_install_xsub(),
11782 bootstrap()
11783
11784 =item AUTHOR
11785
11786 =back
11787
11788 =head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
11789 Perl code
11790
11791 =over 4
11792
11793 =item SYNOPSIS
11794
11795 =item DESCRIPTION
11796
11797 =over 4
11798
11799 =item Migration from C<DynaLoader>
11800
11801 =item Backward compatible boilerplate
11802
11803 =back
11804
11805 =item Order of initialization: early load()
11806
11807 =over 4
11808
11809 =item The most hairy case
11810
11811 =back
11812
11813 =item LIMITATIONS
11814
11815 =item AUTHOR
11816
11817 =back
11818
11819 =head2 Encode - character encodings
11820
11821 =over 4
11822
11823 =item SYNOPSIS
11824
11825 =over 4
11826
11827 =item Table of Contents
11828
11829 =back
11830
11831 =item DESCRIPTION
11832
11833 =over 4
11834
11835 =item TERMINOLOGY
11836
11837 =back
11838
11839 =item PERL ENCODING API
11840
11841 $octets  = encode(ENCODING, $string [, CHECK]), $string = decode(ENCODING,
11842 $octets [, CHECK]), [$length =] from_to($octets, FROM_ENC, TO_ENC [,
11843 CHECK]), $octets = encode_utf8($string);, $string = decode_utf8($octets [,
11844 CHECK]);
11845
11846 =over 4
11847
11848 =item Listing available encodings
11849
11850 =item Defining Aliases
11851
11852 =back
11853
11854 =item Encoding via PerlIO
11855
11856 =item Handling Malformed Data
11857
11858 I<CHECK> = Encode::FB_DEFAULT ( == 0), I<CHECK> = Encode::FB_CROAK ( == 1),
11859 I<CHECK> = Encode::FB_QUIET, I<CHECK> = Encode::FB_WARN, perlqq mode
11860 (I<CHECK> = Encode::FB_PERLQQ), HTML charref mode (I<CHECK> =
11861 Encode::FB_HTMLCREF), XML charref mode (I<CHECK> = Encode::FB_XMLCREF), The
11862 bitmask
11863
11864 =over 4
11865
11866 =item Unimplemented fallback schemes
11867
11868 =back
11869
11870 =item Defining Encodings
11871
11872 =item The UTF-8 flag
11873
11874 Goal #1:, Goal #2:, Goal #3:, Goal #4:
11875
11876 =over 4
11877
11878 =item Messing with Perl's Internals
11879
11880 is_utf8(STRING [, CHECK]), _utf8_on(STRING), _utf8_off(STRING)
11881
11882 =back
11883
11884 =item SEE ALSO
11885
11886 =item MAINTAINER
11887
11888 =back
11889
11890 =head2 Encode::Alias - alias definitions to encodings
11891
11892 =over 4
11893
11894 =item SYNOPSIS
11895
11896 =item DESCRIPTION
11897
11898 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
11899 reference, e.g.:
11900
11901 =over 4
11902
11903 =item Alias overloading
11904
11905 =back
11906
11907 =item SEE ALSO
11908
11909 =back
11910
11911 =head2 Encode::Byte - Single Byte Encodings
11912
11913 =over 4
11914
11915 =item SYNOPSIS
11916
11917 =item ABSTRACT
11918
11919 =item DESCRIPTION
11920
11921 =item SEE ALSO
11922
11923 =back
11924
11925 =head2 Encode::CJKConstants -- Internally used by Encode::??::ISO_2022_*
11926
11927 =head2 Encode::CN - China-based Chinese Encodings
11928
11929 =over 4
11930
11931 =item SYNOPSIS
11932
11933 =item DESCRIPTION
11934
11935 =item NOTES
11936
11937 =item BUGS
11938
11939 =item SEE ALSO
11940
11941 =back
11942
11943 =head2 Encode::CN::HZ -- internally used by Encode::CN
11944
11945 =head2 Encode::Config -- internally used by Encode
11946
11947 =head2 Encode::EBCDIC - EBCDIC Encodings
11948
11949 =over 4
11950
11951 =item SYNOPSIS
11952
11953 =item ABSTRACT
11954
11955 =item DESCRIPTION
11956
11957 =item SEE ALSO
11958
11959 =back
11960
11961 =head2 Encode::Encoding - Encode Implementation Base Class
11962
11963 =over 4
11964
11965 =item SYNOPSIS
11966
11967 =item DESCRIPTION
11968
11969 =over 4
11970
11971 =item Methods you should implement
11972
11973 -E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
11974 -E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
11975
11976 =item Other methods defined in Encode::Encodings
11977
11978 -E<gt>name, -E<gt>renew, -E<gt>perlio_ok(), -E<gt>needs_lines()
11979
11980 =item Example: Encode::ROT13
11981
11982 =back
11983
11984 =item Why the heck Encode API is different?
11985
11986 =over 4
11987
11988 =item Compiled Encodings
11989
11990 =back
11991
11992 =item SEE ALSO
11993
11994 Scheme 1, Scheme 2, Other Schemes
11995
11996 =back
11997
11998 =head2 Encode::Guess -- Guesses encoding from data
11999
12000 =over 4
12001
12002 =item SYNOPSIS
12003
12004 =item ABSTRACT
12005
12006 =item DESCRIPTION
12007
12008 Encode::Guess->set_suspects, Encode::Guess->add_suspects,
12009 Encode::decode("Guess" ...), Encode::Guess->guess($data),
12010 guess_encoding($data, [, I<list of suspects>])
12011
12012 =item CAVEATS
12013
12014 =item TO DO
12015
12016 =item SEE ALSO
12017
12018 =back
12019
12020 =head2 Encode::JP - Japanese Encodings
12021
12022 =over 4
12023
12024 =item SYNOPSIS
12025
12026 =item ABSTRACT
12027
12028 =item DESCRIPTION
12029
12030 =item Note on ISO-2022-JP(-1)?
12031
12032 =item BUGS
12033
12034 =item SEE ALSO
12035
12036 =back
12037
12038 =head2 Encode::JP::H2Z -- internally used by Encode::JP::2022_JP*
12039
12040 =head2 Encode::JP::JIS7 -- internally used by Encode::JP
12041
12042 =head2 Encode::KR - Korean Encodings
12043
12044 =over 4
12045
12046 =item SYNOPSIS
12047
12048 =item DESCRIPTION
12049
12050 =item BUGS
12051
12052 =item SEE ALSO
12053
12054 =back
12055
12056 =head2 Encode::KR::2022_KR -- internally used by Encode::KR
12057
12058 =head2 Encode::MIME::Header -- MIME 'B' and 'Q' header encoding
12059
12060 =over 4
12061
12062 =item SYNOPSIS
12063
12064 =item ABSTRACT
12065
12066 =item DESCRIPTION
12067
12068 =item BUGS
12069
12070 =item SEE ALSO
12071
12072 =back
12073
12074 =head2 Encode::PerlIO -- a detailed document on Encode and PerlIO
12075
12076 =over 4
12077
12078 =item Overview
12079
12080 =item How does it work?
12081
12082 =item Line Buffering
12083
12084 =over 4
12085
12086 =item How can I tell whether my encoding fully supports PerlIO ?
12087
12088 =back
12089
12090 =item SEE ALSO
12091
12092 =back
12093
12094 =head2 Encode::Supported -- Encodings supported by Encode
12095
12096 =over 4
12097
12098 =item DESCRIPTION
12099
12100 =over 4
12101
12102 =item Encoding Names
12103
12104 =back
12105
12106 =item Supported Encodings
12107
12108 =over 4
12109
12110 =item Built-in Encodings
12111
12112 =item Encode::Unicode -- other Unicode encodings
12113
12114 =item Encode::Byte -- Extended ASCII
12115
12116 ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
12117 the Cyrillic world, gsm0338 - Hentai Latin 1
12118
12119 =item CJK: Chinese, Japanese, Korean (Multibyte)
12120
12121 Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
12122 Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
12123 Encode::JIS2K -- JIS X 0213 encodings via CPAN
12124
12125 =item Miscellaneous encodings
12126
12127 Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
12128
12129 =back
12130
12131 =item Unsupported encodings
12132
12133   ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
12134 Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
12135 System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
12136 Various Mac encodings, (Mac) Indic encodings
12137
12138 =item Encoding vs. Charset -- terminology
12139
12140 =item Encoding Classification (by Anton Tagunov and Dan Kogai)
12141
12142 =over 4
12143
12144 =item Microsoft-related naming mess
12145
12146 KS_C_5601-1987, GB2312, Big5, Shift_JIS
12147
12148 =back
12149
12150 =item Glossary
12151
12152 character repertoire, coded character set (CCS), character encoding scheme
12153 (CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
12154 UTF-16
12155
12156 =item See Also
12157
12158 =item References
12159
12160 ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
12161 RFC, UC, Unicode Glossary
12162
12163 =over 4
12164
12165 =item Other Notable Sites
12166
12167 czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
12168 "Introduction to i18n"
12169
12170 =item Offline sources
12171
12172 C<CJKV Information Processing> by Ken Lunde
12173
12174 =back
12175
12176 =back
12177
12178 =head2 Encode::Symbol - Symbol Encodings
12179
12180 =over 4
12181
12182 =item SYNOPSIS
12183
12184 =item ABSTRACT
12185
12186 =item DESCRIPTION
12187
12188 =item SEE ALSO
12189
12190 =back
12191
12192 =head2 Encode::TW - Taiwan-based Chinese Encodings
12193
12194 =over 4
12195
12196 =item SYNOPSIS
12197
12198 =item DESCRIPTION
12199
12200 =item NOTES
12201
12202 =item BUGS
12203
12204 =item SEE ALSO
12205
12206 =back
12207
12208 =head2 Encode::Unicode -- Various Unicode Transformation Formats
12209
12210 =over 4
12211
12212 =item SYNOPSIS
12213
12214 =item ABSTRACT
12215
12216 L<http://www.unicode.org/glossary/> says:, Quick Reference
12217
12218 =item Size, Endianness, and BOM
12219
12220 =over 4
12221
12222 =item by size
12223
12224 =item by endianness
12225
12226 BOM as integer when fetched in network byte order
12227
12228 =back
12229
12230 =item Surrogate Pairs
12231
12232 =item SEE ALSO
12233
12234 =back
12235
12236 =head2 Encode::Unicode::UTF7 -- UTF-7 encoding
12237
12238 =over 4
12239
12240 =item SYNOPSIS
12241
12242 =item ABSTRACT
12243
12244 =item In Practice
12245
12246 =item SEE ALSO
12247
12248 =back
12249
12250 =head2 Encode::lib::Encode::Alias, Encode::Alias - alias definitions to
12251 encodings
12252
12253 =over 4
12254
12255 =item SYNOPSIS
12256
12257 =item DESCRIPTION
12258
12259 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
12260 reference, e.g.:
12261
12262 =over 4
12263
12264 =item Alias overloading
12265
12266 =back
12267
12268 =item SEE ALSO
12269
12270 =back
12271
12272 =head2 Encode::lib::Encode::CJKConstants, Encode::CJKConstants.pm --
12273 Internally used by Encode::??::ISO_2022_*
12274
12275 =head2 Encode::lib::Encode::CN::HZ, Encode::CN::HZ -- internally used by
12276 Encode::CN
12277
12278 =head2 Encode::lib::Encode::Config, Encode::Config -- internally used by
12279 Encode
12280
12281 =head2 Encode::lib::Encode::Encoding, Encode::Encoding - Encode
12282 Implementation Base Class
12283
12284 =over 4
12285
12286 =item SYNOPSIS
12287
12288 =item DESCRIPTION
12289
12290 =over 4
12291
12292 =item Methods you should implement
12293
12294 -E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
12295 -E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
12296
12297 =item Other methods defined in Encode::Encodings
12298
12299 -E<gt>name, -E<gt>renew, -E<gt>perlio_ok(), -E<gt>needs_lines()
12300
12301 =item Example: Encode::ROT13
12302
12303 =back
12304
12305 =item Why the heck Encode API is different?
12306
12307 =over 4
12308
12309 =item Compiled Encodings
12310
12311 =back
12312
12313 =item SEE ALSO
12314
12315 Scheme 1, Scheme 2, Other Schemes
12316
12317 =back
12318
12319 =head2 Encode::lib::Encode::Guess, Encode::Guess -- Guesses encoding from
12320 data
12321
12322 =over 4
12323
12324 =item SYNOPSIS
12325
12326 =item ABSTRACT
12327
12328 =item DESCRIPTION
12329
12330 Encode::Guess->set_suspects, Encode::Guess->add_suspects,
12331 Encode::decode("Guess" ...), Encode::Guess->guess($data),
12332 guess_encoding($data, [, I<list of suspects>])
12333
12334 =item CAVEATS
12335
12336 =item TO DO
12337
12338 =item SEE ALSO
12339
12340 =back
12341
12342 =head2 Encode::lib::Encode::JP::H2Z, Encode::JP::H2Z -- internally used by
12343 Encode::JP::2022_JP*
12344
12345 =head2 Encode::lib::Encode::JP::JIS7, Encode::JP::JIS7 -- internally used
12346 by Encode::JP
12347
12348 =head2 Encode::lib::Encode::KR::2022_KR, Encode::KR::2022_KR -- internally
12349 used by Encode::KR
12350
12351 =head2 Encode::lib::Encode::MIME::Header, Encode::MIME::Header -- MIME 'B'
12352 and 'Q' header encoding
12353
12354 =over 4
12355
12356 =item SYNOPSIS
12357
12358 =item ABSTRACT
12359
12360 =item DESCRIPTION
12361
12362 =item BUGS
12363
12364 =item SEE ALSO
12365
12366 =back
12367
12368 =head2 Encode::lib::Encode::PerlIO, Encode::PerlIO -- a detailed document
12369 on Encode and PerlIO
12370
12371 =over 4
12372
12373 =item Overview
12374
12375 =item How does it work?
12376
12377 =item Line Buffering
12378
12379 =over 4
12380
12381 =item How can I tell whether my encoding fully supports PerlIO ?
12382
12383 =back
12384
12385 =item SEE ALSO
12386
12387 =back
12388
12389 =head2 Encode::lib::Encode::Supported, Encode::Supported -- Encodings
12390 supported by Encode
12391
12392 =over 4
12393
12394 =item DESCRIPTION
12395
12396 =over 4
12397
12398 =item Encoding Names
12399
12400 =back
12401
12402 =item Supported Encodings
12403
12404 =over 4
12405
12406 =item Built-in Encodings
12407
12408 =item Encode::Unicode -- other Unicode encodings
12409
12410 =item Encode::Byte -- Extended ASCII
12411
12412 ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
12413 the Cyrillic world, gsm0338 - Hentai Latin 1
12414
12415 =item CJK: Chinese, Japanese, Korean (Multibyte)
12416
12417 Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
12418 Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
12419 Encode::JIS2K -- JIS X 0213 encodings via CPAN
12420
12421 =item Miscellaneous encodings
12422
12423 Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
12424
12425 =back
12426
12427 =item Unsupported encodings
12428
12429   ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
12430 Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
12431 System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
12432 Various Mac encodings, (Mac) Indic encodings
12433
12434 =item Encoding vs. Charset -- terminology
12435
12436 =item Encoding Classification (by Anton Tagunov and Dan Kogai)
12437
12438 =over 4
12439
12440 =item Microsoft-related naming mess
12441
12442 KS_C_5601-1987, GB2312, Big5, Shift_JIS
12443
12444 =back
12445
12446 =item Glossary
12447
12448 character repertoire, coded character set (CCS), character encoding scheme
12449 (CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
12450 UTF-16
12451
12452 =item See Also
12453
12454 =item References
12455
12456 ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
12457 RFC, UC, Unicode Glossary
12458
12459 =over 4
12460
12461 =item Other Notable Sites
12462
12463 czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
12464 "Introduction to i18n"
12465
12466 =item Offline sources
12467
12468 C<CJKV Information Processing> by Ken Lunde
12469
12470 =back
12471
12472 =back
12473
12474 =head2 Encode::lib::Encode::Unicode::UTF7, Encode::Unicode::UTF7 -- UTF-7
12475 encoding
12476
12477 =over 4
12478
12479 =item SYNOPSIS
12480
12481 =item ABSTRACT
12482
12483 =item In Practice
12484
12485 =item SEE ALSO
12486
12487 =back
12488
12489 =head2 Encode::lib::Encoder, Encode::Encoder -- Object Oriented Encoder
12490
12491 =over 4
12492
12493 =item SYNOPSIS
12494
12495 =item ABSTRACT
12496
12497 =item Description
12498
12499 =over 4
12500
12501 =item Predefined Methods
12502
12503 $e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
12504 $e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
12505 $e-E<gt>bytes([$encoding])
12506
12507 =item Example: base64 transcoder
12508
12509 =item Operator Overloading
12510
12511 =back
12512
12513 =item SEE ALSO
12514
12515 =back
12516
12517 =head2 Encodencoding, encoding - allows you to write your script in
12518 non-ascii or non-utf8
12519
12520 =over 4
12521
12522 =item SYNOPSIS
12523
12524 =item ABSTRACT
12525
12526 =over 4
12527
12528 =item Literal Conversions
12529
12530 =item PerlIO layers for C<STD(IN|OUT)>
12531
12532 =back
12533
12534 =item FEATURES THAT REQUIRE 5.8.1
12535
12536 "NON-EUC" doublebyte encodings, tr//, DATA pseudo-filehandle
12537
12538 =item USAGE
12539
12540 use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
12541 I<ENCNAME_IN> ...] ;, use encoding I<ENCNAME> Filter=E<gt>1;, no encoding;
12542
12543 =item The Filter Option
12544
12545 =over 4
12546
12547 =item Filter-related changes at Encode version 1.87
12548
12549 =back
12550
12551 =item CAVEATS
12552
12553 =over 4
12554
12555 =item NOT SCOPED
12556
12557 =item DO NOT MIX MULTIPLE ENCODINGS
12558
12559 =item tr/// with ranges
12560
12561 Legend of characters above
12562
12563 =back
12564
12565 =item EXAMPLE - Greekperl
12566
12567 =item KNOWN PROBLEMS
12568
12569 literals in regex that are longer than 127 bytes, EBCDIC, format
12570
12571 =item HISTORY
12572
12573 =item SEE ALSO
12574
12575 =back
12576
12577 =head2 Encoder, Encode::Encoder -- Object Oriented Encoder
12578
12579 =over 4
12580
12581 =item SYNOPSIS
12582
12583 =item ABSTRACT
12584
12585 =item Description
12586
12587 =over 4
12588
12589 =item Predefined Methods
12590
12591 $e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
12592 $e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
12593 $e-E<gt>bytes([$encoding])
12594
12595 =item Example: base64 transcoder
12596
12597 =item Operator Overloading
12598
12599 =back
12600
12601 =item SEE ALSO
12602
12603 =back
12604
12605 =head2 English - use nice English (or awk) names for ugly punctuation
12606 variables
12607
12608 =over 4
12609
12610 =item SYNOPSIS
12611
12612 =item DESCRIPTION
12613
12614 =item PERFORMANCE
12615
12616 =back
12617
12618 =head2 Env - perl module that imports environment variables as scalars or
12619 arrays
12620
12621 =over 4
12622
12623 =item SYNOPSIS
12624
12625 =item DESCRIPTION
12626
12627 =item LIMITATIONS
12628
12629 =item AUTHOR
12630
12631 =back
12632
12633 =head2 Errno - System errno constants
12634
12635 =over 4
12636
12637 =item SYNOPSIS
12638
12639 =item DESCRIPTION
12640
12641 =item CAVEATS
12642
12643 =item AUTHOR
12644
12645 =item COPYRIGHT
12646
12647 =back
12648
12649 =head2 Exporter - Implements default import method for modules
12650
12651 =over 4
12652
12653 =item SYNOPSIS
12654
12655 =item DESCRIPTION
12656
12657 =over 4
12658
12659 =item How to Export
12660
12661 =item Selecting What To Export
12662
12663 =item How to Import
12664
12665 C<use ModuleName;>, C<use ModuleName ();>, C<use ModuleName qw(...);>
12666
12667 =back
12668
12669 =item Advanced features
12670
12671 =over 4
12672
12673 =item Specialised Import Lists
12674
12675 =item Exporting without using Exporter's import method
12676
12677 =item Module Version Checking
12678
12679 =item Managing Unknown Symbols
12680
12681 =item Tag Handling Utility Functions
12682
12683 =item Generating combined tags
12684
12685 =item C<AUTOLOAD>ed Constants
12686
12687 =back
12688
12689 =back
12690
12691 =head2 Exporter::Heavy - Exporter guts
12692
12693 =over 4
12694
12695 =item SYNOPSIS
12696
12697 =item DESCRIPTION
12698
12699 =back
12700
12701 =head2 ExtUtils::Command - utilities to replace common UNIX commands in
12702 Makefiles etc.
12703
12704 =over 4
12705
12706 =item SYNOPSIS
12707
12708 =item DESCRIPTION
12709
12710 =back
12711
12712 cat
12713
12714 eqtime src dst
12715
12716 rm_rf files...
12717
12718 rm_f files...
12719
12720 touch files ..
12721
12722 mv source... destination
12723
12724 cp source... destination
12725
12726 chmod mode files..
12727
12728 mkpath directory..
12729
12730 test_f file
12731
12732 =over 4
12733
12734 =item BUGS
12735
12736 =item SEE ALSO 
12737
12738 =item AUTHOR
12739
12740 =back
12741
12742 =head2 ExtUtils::Command::MM - Commands for the MM's to use in Makefiles
12743
12744 =over 4
12745
12746 =item SYNOPSIS
12747
12748 =item DESCRIPTION
12749
12750 B<test_harness>
12751
12752 =back
12753
12754 B<pod2man>
12755
12756 B<warn_if_old_packlist>
12757
12758 B<perllocal_install>
12759
12760 B<uninstall>
12761
12762 =head2 ExtUtils::Constant - generate XS code to import C header constants
12763
12764 =over 4
12765
12766 =item SYNOPSIS
12767
12768 =item DESCRIPTION
12769
12770 =item USAGE
12771
12772 IV, UV, NV, PV, PVN, SV, YES, NO, UNDEF
12773
12774 =item FUNCTIONS
12775
12776 =back
12777
12778 C_stringify NAME
12779
12780 perl_stringify NAME
12781
12782 constant_types
12783
12784 memEQ_clause NAME, CHECKED_AT, INDENT
12785
12786 assign INDENT, TYPE, PRE, POST, VALUE..
12787
12788 return_clause
12789
12790 switch_clause INDENT, NAMELEN, ITEMHASH, ITEM..
12791
12792 params WHAT
12793
12794 dump_names
12795
12796 dogfood
12797
12798 C_constant, name, type, value, macro, default, pre, post, def_pre =item
12799 def_post, utf8
12800
12801 XS_constant PACKAGE, TYPES, SUBNAME, C_SUBNAME
12802
12803 autoload PACKAGE, VERSION, AUTOLOADER
12804
12805 WriteMakefileSnippet
12806
12807 WriteConstants ATTRIBUTE =E<gt> VALUE [, ...], NAME, DEFAULT_TYPE,
12808 BREAKOUT_AT, NAMES, C_FILE, XS_FILE, SUBNAME, C_SUBNAME
12809
12810 =over 4
12811
12812 =item AUTHOR
12813
12814 =back
12815
12816 =head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
12817
12818 =over 4
12819
12820 =item SYNOPSIS
12821
12822 =item DESCRIPTION
12823
12824 =item @EXPORT
12825
12826 =item FUNCTIONS
12827
12828 xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
12829 ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
12830
12831 =item EXAMPLES
12832
12833 =item SEE ALSO
12834
12835 =item AUTHOR
12836
12837 =back
12838
12839 =head2 ExtUtils::Install - install files from here to there
12840
12841 =over 4
12842
12843 =item SYNOPSIS
12844
12845 =item DESCRIPTION
12846
12847 =over 4
12848
12849 =item Functions
12850
12851 B<install>
12852
12853 =back
12854
12855 =back
12856
12857 B<install_default> I<DISCOURAGED>
12858
12859 B<uninstall>
12860
12861 B<pm_to_blib>
12862
12863 _autosplit
12864
12865 =over 4
12866
12867 =item ENVIRONMENT
12868
12869 B<PERL_INSTALL_ROOT>
12870
12871 =item AUTHOR
12872
12873 =item LICENSE
12874
12875 =back
12876
12877 =head2 ExtUtils::Installed - Inventory management of installed modules
12878
12879 =over 4
12880
12881 =item SYNOPSIS
12882
12883 =item DESCRIPTION
12884
12885 =item USAGE
12886
12887 =item FUNCTIONS
12888
12889 new(), modules(), files(), directories(), directory_tree(), validate(),
12890 packlist(), version()
12891
12892 =item EXAMPLE
12893
12894 =item AUTHOR
12895
12896 =back
12897
12898 =head2 ExtUtils::Liblist - determine libraries to use and how to use them
12899
12900 =over 4
12901
12902 =item SYNOPSIS
12903
12904 =item DESCRIPTION
12905
12906 For static extensions, For dynamic extensions at build/link time, For
12907 dynamic extensions at load time
12908
12909 =over 4
12910
12911 =item EXTRALIBS
12912
12913 =item LDLOADLIBS and LD_RUN_PATH
12914
12915 =item BSLOADLIBS
12916
12917 =back
12918
12919 =item PORTABILITY
12920
12921 =over 4
12922
12923 =item VMS implementation
12924
12925 =item Win32 implementation
12926
12927 =back
12928
12929 =item SEE ALSO
12930
12931 =back
12932
12933 =head2 ExtUtils::MM - OS adjusted ExtUtils::MakeMaker subclass
12934
12935 =over 4
12936
12937 =item SYNOPSIS
12938
12939 =item DESCRIPTION
12940
12941 =back
12942
12943 =head2 ExtUtils::MM_Any - Platform-agnostic MM methods
12944
12945 =over 4
12946
12947 =item SYNOPSIS
12948
12949 =item DESCRIPTION
12950
12951 =item Inherently Cross-Platform Methods
12952
12953 installvars
12954
12955 =back
12956
12957 os_flavor_is
12958
12959 =over 4
12960
12961 =item File::Spec wrappers
12962
12963 catfile
12964
12965 =back
12966
12967 =over 4
12968
12969 =item Thought To Be Cross-Platform Methods
12970
12971 B<split_command>
12972
12973 =back
12974
12975 B<echo>
12976
12977 init_VERSION
12978
12979 wraplist
12980
12981 manifypods
12982
12983 manifypods_target
12984
12985 makemakerdflt_target
12986
12987 special_targets
12988
12989 POD2MAN_macro
12990
12991 test_via_harness
12992
12993 test_via_script
12994
12995 libscan
12996
12997 tool_autosplit
12998
12999 all_target
13000
13001 metafile_target
13002
13003 metafile_addtomanifest_target
13004
13005 =over 4
13006
13007 =item Abstract methods
13008
13009 oneliner, B<quote_literal>, B<escape_newlines>, max_exec_len,
13010 B<init_others>, init_DIRFILESEP, init_linker, init_platform,
13011 platform_constants
13012
13013 =back
13014
13015 os_flavor
13016
13017 =over 4
13018
13019 =item AUTHOR
13020
13021 =back
13022
13023 =head2 ExtUtils::MM_BeOS - methods to override UN*X behaviour in
13024 ExtUtils::MakeMaker
13025
13026 =over 4
13027
13028 =item SYNOPSIS
13029
13030 =item DESCRIPTION
13031
13032 =back
13033
13034 os_flavor (o)
13035
13036 init_linker
13037
13038 =head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
13039 ExtUtils::MakeMaker
13040
13041 =over 4
13042
13043 =item SYNOPSIS
13044
13045 =item DESCRIPTION
13046
13047 os_flavor (o)
13048
13049 =back
13050
13051 cflags (o)
13052
13053 replace_manpage_separator (o)
13054
13055 init_linker
13056
13057 =head2 ExtUtils::MM_DOS - DOS specific subclass of ExtUtils::MM_Unix
13058
13059 =over 4
13060
13061 =item SYNOPSIS
13062
13063 =item DESCRIPTION
13064
13065 =over 4
13066
13067 =item Overridden methods
13068
13069 os_flavor
13070
13071 =back
13072
13073 =back
13074
13075 B<replace_manpage_separator>
13076
13077 =over 4
13078
13079 =item AUTHOR
13080
13081 =item SEE ALSO
13082
13083 =back
13084
13085 =head2 ExtUtils::MM_MacOS - methods to override UN*X behaviour in
13086 ExtUtils::MakeMaker
13087
13088 =over 4
13089
13090 =item SYNOPSIS
13091
13092 =item DESCRIPTION
13093
13094 =back
13095
13096 maybe_command
13097
13098 guess_name
13099
13100 macify
13101
13102 patternify
13103
13104 init_main
13105
13106 init_others
13107
13108 init_platform, platform_constants
13109
13110 init_dirscan
13111
13112 init_VERSION (o)
13113
13114 special_targets (o)
13115
13116 static (o)
13117
13118 dlsyms (o)
13119
13120 dynamic (o)
13121
13122 clean (o)
13123
13124 clean_subdirs_target
13125
13126 realclean (o)
13127
13128 realclean_subdirs_target
13129
13130 rulez (o)
13131
13132 processPL (o)
13133
13134 os_flavor
13135
13136 =head2 ExtUtils::MM_NW5 - methods to override UN*X behaviour in
13137 ExtUtils::MakeMaker
13138
13139 =over 4
13140
13141 =item SYNOPSIS
13142
13143 =item DESCRIPTION
13144
13145 =back
13146
13147 os_flavor
13148
13149 init_platform (o), platform_constants
13150
13151 const_cccmd (o)
13152
13153 static_lib (o)
13154
13155 dynamic_lib (o)
13156
13157 =head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
13158 ExtUtils::MakeMaker
13159
13160 =over 4
13161
13162 =item SYNOPSIS
13163
13164 =item DESCRIPTION
13165
13166 =item METHODS
13167
13168 init_dist (o)
13169
13170 =back
13171
13172 init_linker
13173
13174 os_flavor
13175
13176 =head2 ExtUtils::MM_UWIN - U/WIN specific subclass of ExtUtils::MM_Unix
13177
13178 =over 4
13179
13180 =item SYNOPSIS
13181
13182 =item DESCRIPTION
13183
13184 =over 4
13185
13186 =item Overridden methods
13187
13188 os_flavor
13189
13190 =back
13191
13192 =back
13193
13194 B<replace_manpage_separator>
13195
13196 =over 4
13197
13198 =item AUTHOR
13199
13200 =item SEE ALSO
13201
13202 =back
13203
13204 =head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
13205
13206 =over 4
13207
13208 =item SYNOPSIS
13209
13210 =item DESCRIPTION
13211
13212 =item METHODS
13213
13214 =back
13215
13216 =over 4
13217
13218 =item Methods
13219
13220 os_flavor (o)
13221
13222 =back
13223
13224 c_o (o)
13225
13226 cflags (o)
13227
13228 clean (o)
13229
13230 clean_subdirs_target
13231
13232 const_cccmd (o)
13233
13234 const_config (o)
13235
13236 const_loadlibs (o)
13237
13238 constants (o)
13239
13240 depend (o)
13241
13242 dir_target (o)
13243
13244 init_DEST
13245
13246 init_dist
13247
13248 dist (o)
13249
13250 dist_basics (o)
13251
13252 dist_ci (o)
13253
13254 dist_core (o)
13255
13256 B<dist_target>
13257
13258 B<tardist_target>
13259
13260 B<zipdist_target>
13261
13262 B<tarfile_target>
13263
13264 zipfile_target
13265
13266 uutardist_target
13267
13268 shdist_target
13269
13270 distdir
13271
13272 dist_test
13273
13274 dlsyms (o)
13275
13276 dynamic (o)
13277
13278 dynamic_bs (o)
13279
13280 dynamic_lib (o)
13281
13282 exescan
13283
13284 extliblist
13285
13286 find_perl
13287
13288 find_tests
13289
13290 =over 4
13291
13292 =item Methods to actually produce chunks of text for the Makefile
13293
13294 fixin
13295
13296 =back
13297
13298 force (o)
13299
13300 guess_name
13301
13302 has_link_code
13303
13304 init_dirscan
13305
13306 init_DIRFILESEP
13307
13308 init_main
13309
13310 init_others
13311
13312 init_INST
13313
13314 init_INSTALL
13315
13316 init_linker
13317
13318 init_lib2arch
13319
13320 init_PERL
13321
13322 init_platform (o), platform_constants (o)
13323
13324 init_PERM
13325
13326 init_xs
13327
13328 install (o)
13329
13330 installbin (o)
13331
13332 linkext (o)
13333
13334 lsdir
13335
13336 macro (o)
13337
13338 makeaperl (o)
13339
13340 makefile (o)
13341
13342 maybe_command
13343
13344 needs_linking (o)
13345
13346 nicetext
13347
13348 parse_abstract
13349
13350 parse_version
13351
13352 pasthru (o)
13353
13354 perl_script
13355
13356 perldepend (o)
13357
13358 perm_rw (o)
13359
13360 perm_rwx (o)
13361
13362 pm_to_blib
13363
13364 post_constants (o)
13365
13366 post_initialize (o)
13367
13368 postamble (o)
13369
13370 ppd
13371
13372 prefixify
13373
13374 processPL (o)
13375
13376 quote_paren
13377
13378 realclean (o)
13379
13380 realclean_subdirs_target
13381
13382 replace_manpage_separator
13383
13384 oneliner (o)
13385
13386 quote_literal
13387
13388 escape_newlines
13389
13390 max_exec_len
13391
13392 static (o)
13393
13394 static_lib (o)
13395
13396 staticmake (o)
13397
13398 subdir_x (o)
13399
13400 subdirs (o)
13401
13402 test (o)
13403
13404 test_via_harness (override)
13405
13406 test_via_script (override)
13407
13408 tools_other (o)
13409
13410 tool_xsubpp (o)
13411
13412 all_target
13413
13414 top_targets (o)
13415
13416 writedoc
13417
13418 xs_c (o)
13419
13420 xs_cpp (o)
13421
13422 xs_o (o)
13423
13424 =over 4
13425
13426 =item SEE ALSO
13427
13428 =back
13429
13430 =head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
13431 ExtUtils::MakeMaker
13432
13433 =over 4
13434
13435 =item SYNOPSIS
13436
13437 =item DESCRIPTION
13438
13439 =over 4
13440
13441 =item Methods always loaded
13442
13443 wraplist
13444
13445 =back
13446
13447 =back
13448
13449 =over 4
13450
13451 =item Methods
13452
13453 guess_name (override)
13454
13455 =back
13456
13457 find_perl (override)
13458
13459 maybe_command (override)
13460
13461 perl_script (override)
13462
13463 replace_manpage_separator
13464
13465 init_DEST
13466
13467 init_DIRFILESEP
13468
13469 init_main (override)
13470
13471 init_others (override)
13472
13473 init_platform (override)
13474
13475 platform_constants
13476
13477 init_VERSION (override)
13478
13479 constants (override)
13480
13481 special_targets
13482
13483 cflags (override)
13484
13485 const_cccmd (override)
13486
13487 tool_sxubpp (override)
13488
13489 tools_other (override)
13490
13491 init_dist (override)
13492
13493 c_o (override)
13494
13495 xs_c (override)
13496
13497 xs_o (override)
13498
13499 dlsyms (override)
13500
13501 dynamic_lib (override)
13502
13503 dynamic_bs (override)
13504
13505 static_lib (override)
13506
13507 processPL (override)
13508
13509 installbin (override)
13510
13511 subdir_x (override)
13512
13513 clean (override)
13514
13515 clean_subdirs_target
13516
13517 realclean (override)
13518
13519 zipfile_target (o), tarfile_target (o), shdist_target (o)
13520
13521 dist_test (override)
13522
13523 install (override)
13524
13525 perldepend (override)
13526
13527 makefile (override)
13528
13529 find_tests (override)
13530
13531 test (override)
13532
13533 makeaperl (override)
13534
13535 nicetext (override)
13536
13537 prefixify (override)
13538
13539 oneliner (o)
13540
13541 B<echo> (o)
13542
13543 quote_literal
13544
13545 escape_newlines
13546
13547 max_exec_len
13548
13549 init_linker (o)
13550
13551 eliminate_macros
13552
13553 fixpath
13554
13555 os_flavor
13556
13557 =head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
13558 ExtUtils::MakeMaker
13559
13560 =over 4
13561
13562 =item SYNOPSIS
13563
13564 =item DESCRIPTION
13565
13566 =back
13567
13568 =over 4
13569
13570 =item Overridden methods
13571
13572 B<dlsyms>
13573
13574 =back
13575
13576 replace_manpage_separator
13577
13578 B<maybe_command>
13579
13580 B<find_tests>
13581
13582 B<init_DIRFILESEP>
13583
13584 B<init_others>
13585
13586 init_platform (o), platform_constants (o)
13587
13588 special_targets (o)
13589
13590 static_lib (o)
13591
13592 dynamic_lib (o)
13593
13594 clean
13595
13596 init_linker
13597
13598 perl_script
13599
13600 xs_o (o)
13601
13602 pasthru (o)
13603
13604 oneliner (o)
13605
13606 max_exec_len
13607
13608 os_flavor
13609
13610 =head2 ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X
13611
13612 =over 4
13613
13614 =item SYNOPSIS
13615
13616 =item DESCRIPTION
13617
13618 =over 4
13619
13620 =item Overriden methods
13621
13622 dist_test
13623
13624 =back
13625
13626 =back
13627
13628 subdir_x
13629
13630 xs_c
13631
13632 xs_cpp
13633
13634 xs_o
13635
13636 clean_subdirs_target
13637
13638 realclean_subdirs_target
13639
13640 os_flavor
13641
13642 =over 4
13643
13644 =item AUTHOR
13645
13646 =back
13647
13648 =head2 ExtUtils::MY - ExtUtils::MakeMaker subclass for customization
13649
13650 =over 4
13651
13652 =item SYNOPSIS
13653
13654 =item DESCRIPTION
13655
13656 =back
13657
13658 =head2 ExtUtils::MakeMaker - Create a module Makefile
13659
13660 =over 4
13661
13662 =item SYNOPSIS
13663
13664 =item DESCRIPTION
13665
13666 =over 4
13667
13668 =item How To Write A Makefile.PL
13669
13670 =item Default Makefile Behaviour
13671
13672 =item make test
13673
13674 =item make testdb
13675
13676 =item make install
13677
13678 =item PREFIX and LIB attribute
13679
13680 =item AFS users
13681
13682 =item Static Linking of a new Perl Binary
13683
13684 =item Determination of Perl Library and Installation Locations
13685
13686 =item Which architecture dependent directory?
13687
13688 =item Using Attributes and Parameters
13689
13690 ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CCFLAGS, CONFIG,
13691 CONFIGURE, DEFINE, DESTDIR, DIR, DISTNAME, DISTVNAME, DL_FUNCS, DL_VARS,
13692 EXCLUDE_EXT, EXE_FILES, FIRST_MAKEFILE, FULLPERL, FULLPERLRUN,
13693 FULLPERLRUNINST, FUNCLIST, H, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB,
13694 INSTALLBIN, INSTALLDIRS, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB,
13695 INSTALLSCRIPT, INSTALLSITEARCH, INSTALLSITEBIN, INSTALLSITELIB,
13696 INSTALLSITEMAN1DIR, INSTALLSITEMAN3DIR, INSTALLVENDORARCH,
13697 INSTALLVENDORBIN, INSTALLVENDORLIB, INSTALLVENDORMAN1DIR,
13698 INSTALLVENDORMAN3DIR, INST_ARCHLIB, INST_BIN, INST_LIB, INST_MAN1DIR,
13699 INST_MAN3DIR, INST_SCRIPT, LD, LDDLFLAGS, LDFROM, LIB, LIBPERL_A, LIBS,
13700 LINKTYPE, MAKEAPERL, MAKEFILE_OLD, MAN1PODS, MAN3PODS, MAP_TARGET,
13701 MYEXTLIB, NAME, NEEDS_LINKING, NOECHO, NORECURS, NO_META, NO_VC, OBJECT,
13702 OPTIMIZE, PERL, PERL_CORE, PERLMAINCC, PERL_ARCHLIB, PERL_LIB,
13703 PERL_MALLOC_OK, PERLPREFIX, PERLRUN, PERLRUNINST, PERL_SRC, PERM_RW,
13704 PERM_RWX, PL_FILES, PM, PMLIBDIRS, PM_FILTER, POLLUTE, PPM_INSTALL_EXEC,
13705 PPM_INSTALL_SCRIPT, PREFIX, PREREQ_FATAL, PREREQ_PM, PREREQ_PRINT,
13706 PRINT_PREREQ, SITEPREFIX, SKIP, TYPEMAPS, VENDORPREFIX, VERBINST, VERSION,
13707 VERSION_FROM, VERSION_SYM, XS, XSOPT, XSPROTOARG, XS_VERSION
13708
13709 =item Additional lowercase attributes
13710
13711 clean, depend, dist, dynamic_lib, linkext, macro, postamble, realclean,
13712 test, tool_autosplit
13713
13714 =item Overriding MakeMaker Methods
13715
13716 =item The End Of Cargo Cult Programming
13717
13718 C<<MAN3PODS => ' '>>
13719
13720 =item Hintsfile support
13721
13722 =item Distribution Support
13723
13724    make distcheck,    make skipcheck,    make distclean,    make manifest, 
13725   make distdir,   make disttest,    make tardist,    make dist,    make
13726 uutardist,    make shdist,    make zipdist,    make ci
13727
13728 =item Module Meta-Data
13729
13730 =item Disabling an extension
13731
13732 =item Other Handy Functions
13733
13734 prompt
13735
13736 =back
13737
13738 =item ENVIRONMENT
13739
13740 PERL_MM_OPT, PERL_MM_USE_DEFAULT
13741
13742 =item SEE ALSO
13743
13744 =item AUTHORS
13745
13746 =item LICENSE
13747
13748 =back
13749
13750 =head2 ExtUtils::MakeMaker::FAQ - Frequently Asked Questions About
13751 MakeMaker
13752
13753 =over 4
13754
13755 =item DESCRIPTION
13756
13757 =over 4
13758
13759 =item Philosophy and History
13760
13761 Why not just use <insert other build config tool here>?, What's
13762 Module::Build and how does it relate to MakeMaker?, pure perl.  no make, no
13763 shell commands, easier to customize, cleaner internals, less cruft
13764
13765 =item Module Writing
13766
13767 How do I keep my $VERSION up to date without resetting it manually?, What's
13768 this F<META.yml> thing and how did it get in my F<MANIFEST>?!
13769
13770 =item XS
13771
13772 How to I prevent "object version X.XX does not match bootstrap parameter
13773 Y.YY" errors?, How do I make two or more XS files coexist in the same
13774 directory?
13775
13776 =back
13777
13778 =item PATCHING
13779
13780 =item AUTHOR
13781
13782 =item SEE ALSO
13783
13784 =back
13785
13786 =head2 ExtUtils::MakeMaker::Tutorial - Writing a module with MakeMaker
13787
13788 =over 4
13789
13790 =item SYNOPSIS
13791
13792 =item DESCRIPTION
13793
13794 =over 4
13795
13796 =item The Mantra
13797
13798 =item The Layout
13799
13800 Makefile.PL, MANIFEST, lib/, t/, Changes, README, INSTALL, MANIFEST.SKIP,
13801 bin/
13802
13803 =back
13804
13805 =item SEE ALSO
13806
13807 =back
13808
13809 =head2 ExtUtils::MakeMaker::bytes - Version agnostic bytes.pm
13810
13811 =over 4
13812
13813 =item SYNOPSIS
13814
13815 =item DESCRIPTION
13816
13817 =back
13818
13819 =head2 ExtUtils::MakeMaker::vmsish - Platform agnostic vmsish.pm
13820
13821 =over 4
13822
13823 =item SYNOPSIS
13824
13825 =item DESCRIPTION
13826
13827 =back
13828
13829 =head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
13830
13831 =over 4
13832
13833 =item SYNOPSIS
13834
13835 =item DESCRIPTION
13836
13837 =over 4
13838
13839 =item Functions
13840
13841 mkmanifest
13842
13843 =back
13844
13845 =back
13846
13847 manifind
13848
13849 manicheck
13850
13851 filecheck
13852
13853 fullcheck
13854
13855 skipcheck
13856
13857 maniread
13858
13859 manicopy
13860
13861 maniadd
13862
13863 =over 4
13864
13865 =item MANIFEST
13866
13867 =item MANIFEST.SKIP
13868
13869 =item EXPORT_OK
13870
13871 =item GLOBAL VARIABLES
13872
13873 =back
13874
13875 =over 4
13876
13877 =item DIAGNOSTICS
13878
13879 C<Not in MANIFEST:> I<file>, C<Skipping> I<file>, C<No such file:> I<file>,
13880 C<MANIFEST:> I<$!>, C<Added to MANIFEST:> I<file>
13881
13882 =item ENVIRONMENT
13883
13884 B<PERL_MM_MANIFEST_DEBUG>
13885
13886 =item SEE ALSO
13887
13888 =item AUTHOR
13889
13890 =back
13891
13892 =head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
13893
13894 =over 4
13895
13896 =item SYNOPSIS
13897
13898 =item DESCRIPTION
13899
13900 =back
13901
13902 =head2 ExtUtils::Mksymlists - write linker options files for dynamic
13903 extension
13904
13905 =over 4
13906
13907 =item SYNOPSIS
13908
13909 =item DESCRIPTION
13910
13911 DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
13912
13913 =item AUTHOR
13914
13915 =item REVISION
13916
13917 =back
13918
13919 =head2 ExtUtils::Packlist - manage .packlist files
13920
13921 =over 4
13922
13923 =item SYNOPSIS
13924
13925 =item DESCRIPTION
13926
13927 =item USAGE
13928
13929 =item FUNCTIONS
13930
13931 new(), read(), write(), validate(), packlist_file()
13932
13933 =item EXAMPLE
13934
13935 =item AUTHOR
13936
13937 =back
13938
13939 =head2 ExtUtils::testlib - add blib/* directories to @INC
13940
13941 =over 4
13942
13943 =item SYNOPSIS
13944
13945 =item DESCRIPTION
13946
13947 =back
13948
13949 =head2 Fatal - replace functions with equivalents which succeed or die
13950
13951 =over 4
13952
13953 =item SYNOPSIS
13954
13955 =item DESCRIPTION
13956
13957 =item AUTHOR
13958
13959 =back
13960
13961 =head2 Fcntl - load the C Fcntl.h defines
13962
13963 =over 4
13964
13965 =item SYNOPSIS
13966
13967 =item DESCRIPTION
13968
13969 =item NOTE
13970
13971 =item EXPORTED SYMBOLS
13972
13973 =back
13974
13975 =head2 File::Basename, fileparse - split a pathname into pieces
13976
13977 =over 4
13978
13979 =item SYNOPSIS
13980
13981 =item DESCRIPTION
13982
13983 fileparse_set_fstype, fileparse
13984
13985 =item EXAMPLES
13986
13987 C<basename>, C<dirname>
13988
13989 =back
13990
13991 =head2 File::CheckTree, validate - run many filetest checks on a tree
13992
13993 =over 4
13994
13995 =item SYNOPSIS
13996
13997 =item DESCRIPTION
13998
13999 =item AUTHOR
14000
14001 =item HISTORY
14002
14003 =back
14004
14005 =head2 File::Compare - Compare files or filehandles
14006
14007 =over 4
14008
14009 =item SYNOPSIS
14010
14011 =item DESCRIPTION
14012
14013 =item RETURN
14014
14015 =item AUTHOR
14016
14017 =back
14018
14019 =head2 File::Copy - Copy files or filehandles
14020
14021 =over 4
14022
14023 =item SYNOPSIS
14024
14025 =item DESCRIPTION
14026
14027 =over 4
14028
14029 =item Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
14030
14031 rmscopy($from,$to[,$date_flag])
14032
14033 =back
14034
14035 =item RETURN
14036
14037 =item NOTES
14038
14039 =item AUTHOR
14040
14041 =back
14042
14043 =head2 File::DosGlob - DOS like globbing and then some
14044
14045 =over 4
14046
14047 =item SYNOPSIS
14048
14049 =item DESCRIPTION
14050
14051 =item NOTES
14052
14053 =item EXPORTS (by request only)
14054
14055 =item BUGS
14056
14057 =item AUTHOR
14058
14059 =item HISTORY
14060
14061 =item SEE ALSO
14062
14063 =back
14064
14065 =head2 File::Find - Traverse a directory tree.
14066
14067 =over 4
14068
14069 =item SYNOPSIS
14070
14071 =item DESCRIPTION
14072
14073 B<find>, B<finddepth>
14074
14075 =over 4
14076
14077 =item %options
14078
14079 C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
14080 C<follow_fast>, C<follow_skip>, C<dangling_symlinks>, C<no_chdir>,
14081 C<untaint>, C<untaint_pattern>, C<untaint_skip>
14082
14083 =item The wanted function
14084
14085 C<$File::Find::dir> is the current directory name,, C<$_> is the current
14086 filename within that directory, C<$File::Find::name> is the complete
14087 pathname to the file
14088
14089 =back
14090
14091 =item WARNINGS
14092
14093 =item CAVEAT
14094
14095 $dont_use_nlink, symlinks
14096
14097 =item NOTES
14098
14099 =item HISTORY
14100
14101 =back
14102
14103 =head2 File::Glob - Perl extension for BSD glob routine
14104
14105 =over 4
14106
14107 =item SYNOPSIS
14108
14109 =item DESCRIPTION
14110
14111 C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
14112 C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
14113 C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
14114
14115 =item DIAGNOSTICS
14116
14117 C<GLOB_NOSPACE>, C<GLOB_ABEND>
14118
14119 =item NOTES
14120
14121 =item AUTHOR
14122
14123 =back
14124
14125 =head2 File::Path - create or remove directory trees
14126
14127 =over 4
14128
14129 =item SYNOPSIS
14130
14131 =item DESCRIPTION
14132
14133 =item DIAGNOSTICS
14134
14135 =item AUTHORS
14136
14137 =back
14138
14139 =head2 File::Spec - portably perform operations on file names
14140
14141 =over 4
14142
14143 =item SYNOPSIS
14144
14145 =item DESCRIPTION
14146
14147 =item METHODS
14148
14149 canonpath, catdir, catfile, curdir, devnull, rootdir, tmpdir, updir,
14150 no_upwards, case_tolerant, file_name_is_absolute, path, join, splitpath,
14151 splitdir, catpath(), abs2rel, rel2abs()
14152
14153 =item SEE ALSO
14154
14155 =item AUTHORS
14156
14157 =back
14158
14159 =head2 File::Spec::Cygwin - methods for Cygwin file specs
14160
14161 =over 4
14162
14163 =item SYNOPSIS
14164
14165 =item DESCRIPTION
14166
14167 =back
14168
14169 canonpath
14170
14171 file_name_is_absolute
14172
14173 tmpdir (override)
14174
14175 =head2 File::Spec::Epoc - methods for Epoc file specs
14176
14177 =over 4
14178
14179 =item SYNOPSIS
14180
14181 =item DESCRIPTION
14182
14183 =item AUTHORS
14184
14185 =back
14186
14187 canonpath()
14188
14189 =over 4
14190
14191 =item SEE ALSO
14192
14193 =back
14194
14195 =head2 File::Spec::Functions - portably perform operations on file names
14196
14197 =over 4
14198
14199 =item SYNOPSIS
14200
14201 =item DESCRIPTION
14202
14203 =over 4
14204
14205 =item Exports
14206
14207 =back
14208
14209 =item SEE ALSO
14210
14211 =back
14212
14213 =head2 File::Spec::Mac - File::Spec for Mac OS (Classic)
14214
14215 =over 4
14216
14217 =item SYNOPSIS
14218
14219 =item DESCRIPTION
14220
14221 =item METHODS
14222
14223 canonpath
14224
14225 =back
14226
14227 catdir()
14228
14229 catfile
14230
14231 curdir
14232
14233 devnull
14234
14235 rootdir
14236
14237 tmpdir
14238
14239 updir
14240
14241 file_name_is_absolute
14242
14243 path
14244
14245 splitpath
14246
14247 splitdir
14248
14249 catpath
14250
14251 abs2rel
14252
14253 rel2abs
14254
14255 =over 4
14256
14257 =item AUTHORS
14258
14259 =item SEE ALSO
14260
14261 =back
14262
14263 =head2 File::Spec::OS2 - methods for OS/2 file specs
14264
14265 =over 4
14266
14267 =item SYNOPSIS
14268
14269 =item DESCRIPTION
14270
14271 tmpdir, splitpath
14272
14273 =back
14274
14275 =head2 File::Spec::Unix - File::Spec for Unix, base for other File::Spec
14276 modules
14277
14278 =over 4
14279
14280 =item SYNOPSIS
14281
14282 =item DESCRIPTION
14283
14284 =item METHODS
14285
14286 canonpath()
14287
14288 =back
14289
14290 catdir()
14291
14292 catfile
14293
14294 curdir
14295
14296 devnull
14297
14298 rootdir
14299
14300 tmpdir
14301
14302 updir
14303
14304 no_upwards
14305
14306 case_tolerant
14307
14308 file_name_is_absolute
14309
14310 path
14311
14312 join
14313
14314 splitpath
14315
14316 splitdir
14317
14318 catpath()
14319
14320 abs2rel
14321
14322 rel2abs()
14323
14324 =over 4
14325
14326 =item SEE ALSO
14327
14328 =back
14329
14330 =head2 File::Spec::VMS - methods for VMS file specs
14331
14332 =over 4
14333
14334 =item SYNOPSIS
14335
14336 =item DESCRIPTION
14337
14338 eliminate_macros
14339
14340 =back
14341
14342 fixpath
14343
14344 =over 4
14345
14346 =item Methods always loaded
14347
14348 canonpath (override)
14349
14350 =back
14351
14352 catdir
14353
14354 catfile
14355
14356 curdir (override)
14357
14358 devnull (override)
14359
14360 rootdir (override)
14361
14362 tmpdir (override)
14363
14364 updir (override)
14365
14366 case_tolerant (override)
14367
14368 path (override)
14369
14370 file_name_is_absolute (override)
14371
14372 splitpath (override)
14373
14374 splitdir (override)
14375
14376 catpath (override)
14377
14378 abs2rel (override)
14379
14380 rel2abs (override)
14381
14382 =over 4
14383
14384 =item SEE ALSO
14385
14386 =back
14387
14388 =head2 File::Spec::Win32 - methods for Win32 file specs
14389
14390 =over 4
14391
14392 =item SYNOPSIS
14393
14394 =item DESCRIPTION
14395
14396 devnull
14397
14398 =back
14399
14400 tmpdir
14401
14402 catfile
14403
14404 canonpath
14405
14406 splitpath
14407
14408 splitdir
14409
14410 catpath
14411
14412 =over 4
14413
14414 =item Note For File::Spec::Win32 Maintainers
14415
14416 =back
14417
14418 =over 4
14419
14420 =item SEE ALSO
14421
14422 =back
14423
14424 =head2 File::Temp - return name and handle of a temporary file safely
14425
14426 =over 4
14427
14428 =item PORTABILITY
14429
14430 =item SYNOPSIS
14431
14432 =item DESCRIPTION
14433
14434 =back
14435
14436 =over 4
14437
14438 =item OO INTERFACE
14439
14440 B<new>
14441
14442 =back
14443
14444 B<filename>
14445
14446 B<DESTROY>
14447
14448 =over 4
14449
14450 =item FUNCTIONS
14451
14452 B<tempfile>
14453
14454 =back
14455
14456 B<tempdir>
14457
14458 =over 4
14459
14460 =item MKTEMP FUNCTIONS
14461
14462 B<mkstemp>
14463
14464 =back
14465
14466 B<mkstemps>
14467
14468 B<mkdtemp>
14469
14470 B<mktemp>
14471
14472 =over 4
14473
14474 =item POSIX FUNCTIONS
14475
14476 B<tmpnam>
14477
14478 =back
14479
14480 B<tmpfile>
14481
14482 =over 4
14483
14484 =item ADDITIONAL FUNCTIONS
14485
14486 B<tempnam>
14487
14488 =back
14489
14490 =over 4
14491
14492 =item UTILITY FUNCTIONS
14493
14494 B<unlink0>
14495
14496 =back
14497
14498 B<cmpstat>
14499
14500 B<unlink1>
14501
14502 =over 4
14503
14504 =item PACKAGE VARIABLES
14505
14506 B<safe_level>, STANDARD, MEDIUM, HIGH
14507
14508 =back
14509
14510 TopSystemUID
14511
14512 =over 4
14513
14514 =item WARNING
14515
14516 =over 4
14517
14518 =item Temporary files and NFS
14519
14520 =back
14521
14522 =item HISTORY
14523
14524 =item SEE ALSO
14525
14526 =item AUTHOR
14527
14528 =back
14529
14530 =head2 File::stat - by-name interface to Perl's built-in stat() functions
14531
14532 =over 4
14533
14534 =item SYNOPSIS
14535
14536 =item DESCRIPTION
14537
14538 =item BUGS
14539
14540 =item NOTE
14541
14542 =item AUTHOR
14543
14544 =back
14545
14546 =head2 FileCache - keep more files open than the system permits
14547
14548 =over 4
14549
14550 =item SYNOPSIS
14551
14552 =item DESCRIPTION
14553
14554 cacheout EXPR, cacheout MODE, EXPR
14555
14556 =item CAVEATS
14557
14558 =item BUGS
14559
14560 =item NOTES
14561
14562 =back
14563
14564 =head2 FileHandle - supply object methods for filehandles
14565
14566 =over 4
14567
14568 =item SYNOPSIS
14569
14570 =item DESCRIPTION
14571
14572 $fh->print, $fh->printf, $fh->getline, $fh->getlines
14573
14574 =item SEE ALSO
14575
14576 =back
14577
14578 =head2 Filter::Simple - Simplified source filtering
14579
14580 =over 4
14581
14582 =item SYNOPSIS
14583
14584 =item DESCRIPTION
14585
14586 =over 4
14587
14588 =item The Problem
14589
14590 =item A Solution
14591
14592 =item Disabling or changing <no> behaviour
14593
14594 =item All-in-one interface
14595
14596 =item Filtering only specific components of source code
14597
14598 C<"code">, C<"executable">, C<"quotelike">, C<"string">, C<"regex">,
14599 C<"all">
14600
14601 =item Filtering only the code parts of source code
14602
14603 Most source code ceases to be grammatically correct when it is broken up
14604 into the pieces between string literals and regexes. So the C<'code'>
14605 component filter behaves slightly differently from the other partial
14606 filters
14607 described in the previous section.
14608
14609 =item Using Filter::Simple with an explicit C<import> subroutine
14610
14611 =item Using Filter::Simple and Exporter together
14612
14613 =item How it works
14614
14615 =back
14616
14617 =item AUTHOR
14618
14619 =item COPYRIGHT
14620
14621 =back
14622
14623 =head2 Filter::Util::Call - Perl Source Filter Utility Module
14624
14625 =over 4
14626
14627 =item SYNOPSIS
14628
14629 =item DESCRIPTION
14630
14631 =over 4
14632
14633 =item B<use Filter::Util::Call>
14634
14635 =item B<import()>
14636
14637 =item B<filter() and anonymous sub>
14638
14639 B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
14640
14641 =back
14642
14643 =item EXAMPLES
14644
14645 =over 4
14646
14647 =item Example 1: A simple filter.
14648
14649 =item Example 2: Using the context
14650
14651 =item Example 3: Using the context within the filter
14652
14653 =item Example 4: Using filter_del
14654
14655 =back
14656
14657 =item Filter::Simple
14658
14659 =item AUTHOR
14660
14661 =item DATE
14662
14663 =back
14664
14665 =head2 FindBin - Locate directory of original perl script
14666
14667 =over 4
14668
14669 =item SYNOPSIS
14670
14671 =item DESCRIPTION
14672
14673 =item EXPORTABLE VARIABLES
14674
14675 =item KNOWN ISSUES
14676
14677 =item KNOWN BUGS
14678
14679 =item AUTHORS
14680
14681 =item COPYRIGHT
14682
14683 =back
14684
14685 =head2 GDBM_File - Perl5 access to the gdbm library.
14686
14687 =over 4
14688
14689 =item SYNOPSIS
14690
14691 =item DESCRIPTION
14692
14693 =item AVAILABILITY
14694
14695 =item BUGS
14696
14697 =item SEE ALSO
14698
14699 =back
14700
14701 =head2 Getopt::Long - Extended processing of command line options
14702
14703 =over 4
14704
14705 =item SYNOPSIS
14706
14707 =item DESCRIPTION
14708
14709 =item Command Line Options, an Introduction
14710
14711 =item Getting Started with Getopt::Long
14712
14713 =over 4
14714
14715 =item Simple options
14716
14717 =item A little bit less simple options
14718
14719 =item Mixing command line option with other arguments
14720
14721 =item Options with values
14722
14723 =item Options with multiple values
14724
14725 =item Options with hash values
14726
14727 =item User-defined subroutines to handle options
14728
14729 =item Options with multiple names
14730
14731 =item Case and abbreviations
14732
14733 =item Summary of Option Specifications
14734
14735 !, +, s, i, o, f, : I<type> [ I<desttype> ], : I<number> [ I<desttype> ], :
14736 + [ I<desttype> ]
14737
14738 =back
14739
14740 =item Advanced Possibilities
14741
14742 =over 4
14743
14744 =item Object oriented interface
14745
14746 =item Thread Safety
14747
14748 =item Documentation and help texts
14749
14750 =item Storing options in a hash
14751
14752 =item Bundling
14753
14754 =item The lonesome dash
14755
14756 =item Argument callback
14757
14758 =back
14759
14760 =item Configuring Getopt::Long
14761
14762 default, posix_default, auto_abbrev, getopt_compat, gnu_compat, gnu_getopt,
14763 require_order, permute, bundling (default: disabled), bundling_override
14764 (default: disabled), ignore_case  (default: enabled), ignore_case_always
14765 (default: disabled), auto_version (default:disabled), auto_help
14766 (default:disabled), pass_through (default: disabled), prefix,
14767 prefix_pattern, debug (default: disabled)
14768
14769 =item Exportable Methods
14770
14771 VersionMessage, C<-message>, C<-msg>, C<-exitval>, C<-output>, HelpMessage
14772
14773 =item Return values and Errors
14774
14775 =item Legacy
14776
14777 =over 4
14778
14779 =item Default destinations
14780
14781 =item Alternative option starters
14782
14783 =item Configuration variables
14784
14785 =back
14786
14787 =item Trouble Shooting
14788
14789 =over 4
14790
14791 =item Warning: Ignoring '!' modifier for short option
14792
14793 =item GetOptions does not return a false result when an option is not
14794 supplied
14795
14796 =item GetOptions does not split the command line correctly
14797
14798 =item Undefined subroutine &main::GetOptions called
14799
14800 =item How do I put a "-?" option into a Getopt::Long?
14801
14802 =back
14803
14804 =item AUTHOR
14805
14806 =item COPYRIGHT AND DISCLAIMER
14807
14808 =back
14809
14810 =head2 Getopt::Std, getopt - Process single-character switches with switch
14811 clustering
14812
14813 =over 4
14814
14815 =item SYNOPSIS
14816
14817 =item DESCRIPTION
14818
14819 =item C<--help> and C<--version>
14820
14821 =back
14822
14823 =head2 Hash::Util - A selection of general-utility hash subroutines
14824
14825 =over 4
14826
14827 =item SYNOPSIS
14828
14829 =item DESCRIPTION
14830
14831 =over 4
14832
14833 =item Restricted hashes
14834
14835 lock_keys, unlock_keys
14836
14837 =back
14838
14839 =back
14840
14841 lock_value, unlock_value
14842
14843 B<lock_hash>, B<unlock_hash>
14844
14845 B<hash_seed>
14846
14847 =over 4
14848
14849 =item CAVEATS
14850
14851 =item AUTHOR
14852
14853 =item SEE ALSO
14854
14855 =back
14856
14857 =head2 I18N::Collate - compare 8-bit scalar data according to the current
14858 locale
14859
14860 =over 4
14861
14862 =item SYNOPSIS
14863
14864 =item DESCRIPTION
14865
14866 =back
14867
14868 =head2 I18N::LangTags - functions for dealing with RFC3066-style language
14869 tags
14870
14871 =over 4
14872
14873 =item SYNOPSIS
14874
14875 =item DESCRIPTION
14876
14877 =back
14878
14879 the function is_language_tag($lang1)
14880
14881 the function extract_language_tags($whatever)
14882
14883 the function same_language_tag($lang1, $lang2)
14884
14885 the function similarity_language_tag($lang1, $lang2)
14886
14887 the function is_dialect_of($lang1, $lang2)
14888
14889 the function super_languages($lang1)
14890
14891 the function locale2language_tag($locale_identifier)
14892
14893 the function encode_language_tag($lang1)
14894
14895 the function alternate_language_tags($lang1)
14896
14897 the function @langs = panic_languages(@accept_languages)
14898
14899 =over 4
14900
14901 =item ABOUT LOWERCASING
14902
14903 =item ABOUT UNICODE PLAINTEXT LANGUAGE TAGS
14904
14905 =item SEE ALSO
14906
14907 =item COPYRIGHT
14908
14909 =item AUTHOR
14910
14911 =back
14912
14913 =head2 I18N::LangTags::List -- tags and names for human languages
14914
14915 =over 4
14916
14917 =item SYNOPSIS
14918
14919 =item DESCRIPTION
14920
14921 =item ABOUT LANGUAGE TAGS
14922
14923 =item LIST OF LANGUAGES
14924
14925 {ab} : Abkhazian, {ace} : Achinese, {ach} : Acoli, {ada} : Adangme, {ady} :
14926 Adyghe, {aa} : Afar, {afh} : Afrihili, {af} : Afrikaans, [{afa} :
14927 Afro-Asiatic (Other)], {ak} : Akan, {akk} : Akkadian, {sq} : Albanian,
14928 {ale} : Aleut, [{alg} : Algonquian languages], [{tut} : Altaic (Other)],
14929 {am} : Amharic, {i-ami} : Ami, [{apa} : Apache languages], {ar} : Arabic,
14930 {arc} : Aramaic, {arp} : Arapaho, {arn} : Araucanian, {arw} : Arawak, {hy}
14931 : Armenian, {an} : Aragonese, [{art} : Artificial (Other)], {ast} :
14932 Asturian, {as} : Assamese, [{ath} : Athapascan languages], [{aus} :
14933 Australian languages], [{map} : Austronesian (Other)], {av} : Avaric, {ae}
14934 : Avestan, {awa} : Awadhi, {ay} : Aymara, {az} : Azerbaijani, {ban} :
14935 Balinese, [{bat} : Baltic (Other)], {bal} : Baluchi, {bm} : Bambara, [{bai}
14936 : Bamileke languages], {bad} : Banda, [{bnt} : Bantu (Other)], {bas} :
14937 Basa, {ba} : Bashkir, {eu} : Basque, {btk} : Batak (Indonesia), {bej} :
14938 Beja, {be} : Belarusian, {bem} : Bemba, {bn} : Bengali, [{ber} : Berber
14939 (Other)], {bho} : Bhojpuri, {bh} : Bihari, {bik} : Bikol, {bin} : Bini,
14940 {bi} : Bislama, {bs} : Bosnian, {bra} : Braj, {br} : Breton, {bug} :
14941 Buginese, {bg} : Bulgarian, {i-bnn} : Bunun, {bua} : Buriat, {my} :
14942 Burmese, {cad} : Caddo, {car} : Carib, {ca} : Catalan, [{cau} : Caucasian
14943 (Other)], {ceb} : Cebuano, [{cel} : Celtic (Other)], [{cai} : Central
14944 American Indian (Other)], {chg} : Chagatai, [{cmc} : Chamic languages],
14945 {ch} : Chamorro, {ce} : Chechen, {chr} : Cherokee, {chy} : Cheyenne, {chb}
14946 : Chibcha, {ny} : Chichewa, {zh} : Chinese, {chn} : Chinook Jargon, {chp} :
14947 Chipewyan, {cho} : Choctaw, {cu} : Church Slavic, {chk} : Chuukese, {cv} :
14948 Chuvash, {cop} : Coptic, {kw} : Cornish, {co} : Corsican, {cr} : Cree,
14949 {mus} : Creek, [{cpe} : English-based Creoles and pidgins (Other)], [{cpf}
14950 : French-based Creoles and pidgins (Other)], [{cpp} : Portuguese-based
14951 Creoles and pidgins (Other)], [{crp} : Creoles and pidgins (Other)], {hr} :
14952 Croatian, [{cus} : Cushitic (Other)], {cs} : Czech, {dak} : Dakota, {da} :
14953 Danish, {dar} : Dargwa, {day} : Dayak, {i-default} : Default (Fallthru)
14954 Language, {del} : Delaware, {din} : Dinka, {dv} : Divehi, {doi} : Dogri,
14955 {dgr} : Dogrib, [{dra} : Dravidian (Other)], {dua} : Duala, {nl} : Dutch,
14956 {dum} : Middle Dutch (ca.1050-1350), {dyu} : Dyula, {dz} : Dzongkha, {efi}
14957 : Efik, {egy} : Ancient Egyptian, {eka} : Ekajuk, {elx} : Elamite, {en} :
14958 English, {enm} : Old English (1100-1500), {ang} : Old English
14959 (ca.450-1100), {i-enochian} : Enochian (Artificial), {myv} : Erzya, {eo} :
14960 Esperanto, {et} : Estonian, {ee} : Ewe, {ewo} : Ewondo, {fan} : Fang, {fat}
14961 : Fanti, {fo} : Faroese, {fj} : Fijian, {fi} : Finnish, [{fiu} :
14962 Finno-Ugrian (Other)], {fon} : Fon, {fr} : French, {frm} : Middle French
14963 (ca.1400-1600), {fro} : Old French (842-ca.1400), {fy} : Frisian, {fur} :
14964 Friulian, {ff} : Fulah, {gaa} : Ga, {gd} : Scots Gaelic, {gl} : Gallegan,
14965 {lg} : Ganda, {gay} : Gayo, {gba} : Gbaya, {gez} : Geez, {ka} : Georgian,
14966 {de} : German, {gmh} : Middle High German (ca.1050-1500), {goh} : Old High
14967 German (ca.750-1050), [{gem} : Germanic (Other)], {gil} : Gilbertese, {gon}
14968 : Gondi, {gor} : Gorontalo, {got} : Gothic, {grb} : Grebo, {grc} : Ancient
14969 Greek, {el} : Modern Greek, {gn} : Guarani, {gu} : Gujarati, {gwi} :
14970 Gwich'in, {hai} : Haida, {ht} : Haitian, {ha} : Hausa, {haw} : Hawaiian,
14971 {he} : Hebrew, {hz} : Herero, {hil} : Hiligaynon, {him} : Himachali, {hi} :
14972 Hindi, {ho} : Hiri Motu, {hit} : Hittite, {hmn} : Hmong, {hu} : Hungarian,
14973 {hup} : Hupa, {iba} : Iban, {is} : Icelandic, {io} : Ido, {ig} : Igbo,
14974 {ijo} : Ijo, {ilo} : Iloko, [{inc} : Indic (Other)], [{ine} : Indo-European
14975 (Other)], {id} : Indonesian, {inh} : Ingush, {ia} : Interlingua
14976 (International Auxiliary Language Association), {ie} : Interlingue, {iu} :
14977 Inuktitut, {ik} : Inupiaq, [{ira} : Iranian (Other)], {ga} : Irish, {mga} :
14978 Middle Irish (900-1200), {sga} : Old Irish (to 900), [{iro} : Iroquoian
14979 languages], {it} : Italian, {ja} : Japanese, {jv} : Javanese, {jrb} :
14980 Judeo-Arabic, {jpr} : Judeo-Persian, {kbd} : Kabardian, {kab} : Kabyle,
14981 {kac} : Kachin, {kl} : Kalaallisut, {xal} : Kalmyk, {kam} : Kamba, {kn} :
14982 Kannada, {kr} : Kanuri, {krc} : Karachay-Balkar, {kaa} : Kara-Kalpak, {kar}
14983 : Karen, {ks} : Kashmiri, {csb} : Kashubian, {kaw} : Kawi, {kk} : Kazakh,
14984 {kha} : Khasi, {km} : Khmer, [{khi} : Khoisan (Other)], {kho} : Khotanese,
14985 {ki} : Kikuyu, {kmb} : Kimbundu, {rw} : Kinyarwanda, {ky} : Kirghiz,
14986 {i-klingon} : Klingon, {kv} : Komi, {kg} : Kongo, {kok} : Konkani, {ko} :
14987 Korean, {kos} : Kosraean, {kpe} : Kpelle, {kro} : Kru, {kj} : Kuanyama,
14988 {kum} : Kumyk, {ku} : Kurdish, {kru} : Kurukh, {kut} : Kutenai, {lad} :
14989 Ladino, {lah} : Lahnda, {lam} : Lamba, {lo} : Lao, {la} : Latin, {lv} :
14990 Latvian, {lb} : Letzeburgesch, {lez} : Lezghian, {li} : Limburgish, {ln} :
14991 Lingala, {lt} : Lithuanian, {nds} : Low German, {art-lojban} : Lojban
14992 (Artificial), {loz} : Lozi, {lu} : Luba-Katanga, {lua} : Luba-Lulua, {lui}
14993 : Luiseno, {lun} : Lunda, {luo} : Luo (Kenya and Tanzania), {lus} : Lushai,
14994 {mk} : Macedonian, {mad} : Madurese, {mag} : Magahi, {mai} : Maithili,
14995 {mak} : Makasar, {mg} : Malagasy, {ms} : Malay, {ml} : Malayalam, {mt} :
14996 Maltese, {mnc} : Manchu, {mdr} : Mandar, {man} : Mandingo, {mni} :
14997 Manipuri, [{mno} : Manobo languages], {gv} : Manx, {mi} : Maori, {mr} :
14998 Marathi, {chm} : Mari, {mh} : Marshall, {mwr} : Marwari, {mas} : Masai,
14999 [{myn} : Mayan languages], {men} : Mende, {mic} : Micmac, {min} :
15000 Minangkabau, {i-mingo} : Mingo, [{mis} : Miscellaneous languages], {moh} :
15001 Mohawk, {mdf} : Moksha, {mo} : Moldavian, [{mkh} : Mon-Khmer (Other)],
15002 {lol} : Mongo, {mn} : Mongolian, {mos} : Mossi, [{mul} : Multiple
15003 languages], [{mun} : Munda languages], {nah} : Nahuatl, {nap} : Neapolitan,
15004 {na} : Nauru, {nv} : Navajo, {nd} : North Ndebele, {nr} : South Ndebele,
15005 {ng} : Ndonga, {ne} : Nepali, {new} : Newari, {nia} : Nias, [{nic} :
15006 Niger-Kordofanian (Other)], [{ssa} : Nilo-Saharan (Other)], {niu} : Niuean,
15007 {nog} : Nogai, {non} : Old Norse, [{nai} : North American Indian], {no} :
15008 Norwegian, {nb} : Norwegian Bokmal, {nn} : Norwegian Nynorsk, [{nub} :
15009 Nubian languages], {nym} : Nyamwezi, {nyn} : Nyankole, {nyo} : Nyoro, {nzi}
15010 : Nzima, {oc} : Occitan (post 1500), {oj} : Ojibwa, {or} : Oriya, {om} :
15011 Oromo, {osa} : Osage, {os} : Ossetian; Ossetic, [{oto} : Otomian
15012 languages], {pal} : Pahlavi, {i-pwn} : Paiwan, {pau} : Palauan, {pi} :
15013 Pali, {pam} : Pampanga, {pag} : Pangasinan, {pa} : Panjabi, {pap} :
15014 Papiamento, [{paa} : Papuan (Other)], {fa} : Persian, {peo} : Old Persian
15015 (ca.600-400 B.C.), [{phi} : Philippine (Other)], {phn} : Phoenician, {pon}
15016 : Pohnpeian, {pl} : Polish, {pt} : Portuguese, [{pra} : Prakrit languages],
15017 {pro} : Old Provencal (to 1500), {ps} : Pushto, {qu} : Quechua, {rm} :
15018 Raeto-Romance, {raj} : Rajasthani, {rap} : Rapanui, {rar} : Rarotongan,
15019 [{qaa - qtz} : Reserved for local use.], [{roa} : Romance (Other)], {ro} :
15020 Romanian, {rom} : Romany, {rn} : Rundi, {ru} : Russian, [{sal} : Salishan
15021 languages], {sam} : Samaritan Aramaic, {se} : Northern Sami, {sma} :
15022 Southern Sami, {smn} : Inari Sami, {smj} : Lule Sami, {sms} : Skolt Sami,
15023 [{smi} : Sami languages (Other)], {sm} : Samoan, {sad} : Sandawe, {sg} :
15024 Sango, {sa} : Sanskrit, {sat} : Santali, {sc} : Sardinian, {sas} : Sasak,
15025 {sco} : Scots, {sel} : Selkup, [{sem} : Semitic (Other)], {sr} : Serbian,
15026 {srr} : Serer, {shn} : Shan, {sn} : Shona, {sid} : Sidamo, {sgn-...} : Sign
15027 Languages, {bla} : Siksika, {sd} : Sindhi, {si} : Sinhalese, [{sit} :
15028 Sino-Tibetan (Other)], [{sio} : Siouan languages], {den} : Slave
15029 (Athapascan), [{sla} : Slavic (Other)], {sk} : Slovak, {sl} : Slovenian,
15030 {sog} : Sogdian, {so} : Somali, {son} : Songhai, {snk} : Soninke, {wen} :
15031 Sorbian languages, {nso} : Northern Sotho, {st} : Southern Sotho, [{sai} :
15032 South American Indian (Other)], {es} : Spanish, {suk} : Sukuma, {sux} :
15033 Sumerian, {su} : Sundanese, {sus} : Susu, {sw} : Swahili, {ss} : Swati,
15034 {sv} : Swedish, {syr} : Syriac, {tl} : Tagalog, {ty} : Tahitian, [{tai} :
15035 Tai (Other)], {tg} : Tajik, {tmh} : Tamashek, {ta} : Tamil, {i-tao} : Tao,
15036 {tt} : Tatar, {i-tay} : Tayal, {te} : Telugu, {ter} : Tereno, {tet} :
15037 Tetum, {th} : Thai, {bo} : Tibetan, {tig} : Tigre, {ti} : Tigrinya, {tem} :
15038 Timne, {tiv} : Tiv, {tli} : Tlingit, {tpi} : Tok Pisin, {tkl} : Tokelau,
15039 {tog} : Tonga (Nyasa), {to} : Tonga (Tonga Islands), {tsi} : Tsimshian,
15040 {ts} : Tsonga, {i-tsu} : Tsou, {tn} : Tswana, {tum} : Tumbuka, [{tup} :
15041 Tupi languages], {tr} : Turkish, {ota} : Ottoman Turkish (1500-1928), {crh}
15042 : Crimean Turkish, {tk} : Turkmen, {tvl} : Tuvalu, {tyv} : Tuvinian, {tw} :
15043 Twi, {udm} : Udmurt, {uga} : Ugaritic, {ug} : Uighur, {uk} : Ukrainian,
15044 {umb} : Umbundu, {und} : Undetermined, {ur} : Urdu, {uz} : Uzbek, {vai} :
15045 Vai, {ve} : Venda, {vi} : Vietnamese, {vo} : Volapuk, {vot} : Votic, [{wak}
15046 : Wakashan languages], {wa} : Walloon, {wal} : Walamo, {war} : Waray, {was}
15047 : Washo, {cy} : Welsh, {wo} : Wolof, {x-...} : Unregistered (Semi-Private
15048 Use), {xh} : Xhosa, {sah} : Yakut, {yao} : Yao, {yap} : Yapese, {ii} :
15049 Sichuan Yi, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik languages], {znd}
15050 : Zande, [{zap} : Zapotec], {zen} : Zenaga, {za} : Zhuang, {zu} : Zulu,
15051 {zun} : Zuni
15052
15053 =item SEE ALSO
15054
15055 =item COPYRIGHT AND DISCLAIMER
15056
15057 =item AUTHOR
15058
15059 =back
15060
15061 =head2 I18N::Langinfo - query locale information
15062
15063 =over 4
15064
15065 =item SYNOPSIS
15066
15067 =item DESCRIPTION
15068
15069 =over 4
15070
15071 =item EXPORT
15072
15073 =back
15074
15075 =item SEE ALSO
15076
15077 =item AUTHOR
15078
15079 =item COPYRIGHT AND LICENSE
15080
15081 =back
15082
15083 =head2 IO - load various IO modules
15084
15085 =over 4
15086
15087 =item SYNOPSIS
15088
15089 =item DESCRIPTION
15090
15091 =item DEPRECATED
15092
15093 =back
15094
15095 =head2 IO::Dir - supply object methods for directory handles
15096
15097 =over 4
15098
15099 =item SYNOPSIS
15100
15101 =item DESCRIPTION
15102
15103 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
15104 rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
15105
15106 =item SEE ALSO
15107
15108 =item AUTHOR
15109
15110 =item COPYRIGHT
15111
15112 =back
15113
15114 =head2 IO::File - supply object methods for filehandles
15115
15116 =over 4
15117
15118 =item SYNOPSIS
15119
15120 =item DESCRIPTION
15121
15122 =item CONSTRUCTOR
15123
15124 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
15125
15126 =item METHODS
15127
15128 open( FILENAME [,MODE [,PERMS]] ), open( FILENAME, IOLAYERS )
15129
15130 =item SEE ALSO
15131
15132 =item HISTORY
15133
15134 =back
15135
15136 =head2 IO::Handle - supply object methods for I/O handles
15137
15138 =over 4
15139
15140 =item SYNOPSIS
15141
15142 =item DESCRIPTION
15143
15144 =item CONSTRUCTOR
15145
15146 new (), new_from_fd ( FD, MODE )
15147
15148 =item METHODS
15149
15150 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
15151 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
15152 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
15153 $io->blocking ( [ BOOL ] ), $io->untaint
15154
15155 =item NOTE
15156
15157 =item SEE ALSO
15158
15159 =item BUGS
15160
15161 =item HISTORY
15162
15163 =back
15164
15165 =head2 IO::Pipe - supply object methods for pipes
15166
15167 =over 4
15168
15169 =item SYNOPSIS
15170
15171 =item DESCRIPTION
15172
15173 =item CONSTRUCTOR
15174
15175 new ( [READER, WRITER] )
15176
15177 =item METHODS
15178
15179 reader ([ARGS]), writer ([ARGS]), handles ()
15180
15181 =item SEE ALSO
15182
15183 =item AUTHOR
15184
15185 =item COPYRIGHT
15186
15187 =back
15188
15189 =head2 IO::Poll - Object interface to system poll call
15190
15191 =over 4
15192
15193 =item SYNOPSIS
15194
15195 =item DESCRIPTION
15196
15197 =item METHODS
15198
15199 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
15200 IO ), handles( [ EVENT_MASK ] )
15201
15202 =item SEE ALSO
15203
15204 =item AUTHOR
15205
15206 =item COPYRIGHT
15207
15208 =back
15209
15210 =head2 IO::Seekable - supply seek based methods for I/O objects
15211
15212 =over 4
15213
15214 =item SYNOPSIS
15215
15216 =item DESCRIPTION
15217
15218 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
15219 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
15220 $io->tell
15221
15222 =item SEE ALSO
15223
15224 =item HISTORY
15225
15226 =back
15227
15228 =head2 IO::Select - OO interface to the select system call
15229
15230 =over 4
15231
15232 =item SYNOPSIS
15233
15234 =item DESCRIPTION
15235
15236 =item CONSTRUCTOR
15237
15238 new ( [ HANDLES ] )
15239
15240 =item METHODS
15241
15242 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
15243 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
15244 count (), bits(), select ( READ, WRITE, EXCEPTION [, TIMEOUT ] )
15245
15246 =item EXAMPLE
15247
15248 =item AUTHOR
15249
15250 =item COPYRIGHT
15251
15252 =back
15253
15254 =head2 IO::Socket - Object interface to socket communications
15255
15256 =over 4
15257
15258 =item SYNOPSIS
15259
15260 =item DESCRIPTION
15261
15262 =item CONSTRUCTOR
15263
15264 new ( [ARGS] )
15265
15266 =item METHODS
15267
15268 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
15269 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
15270
15271 =item SEE ALSO
15272
15273 =item AUTHOR
15274
15275 =item COPYRIGHT
15276
15277 =back
15278
15279 =head2 IO::Socket::INET - Object interface for AF_INET domain sockets
15280
15281 =over 4
15282
15283 =item SYNOPSIS
15284
15285 =item DESCRIPTION
15286
15287 =item CONSTRUCTOR
15288
15289 new ( [ARGS] )
15290
15291 =over 4
15292
15293 =item METHODS
15294
15295 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
15296 ()
15297
15298 =back
15299
15300 =item SEE ALSO
15301
15302 =item AUTHOR
15303
15304 =item COPYRIGHT
15305
15306 =back
15307
15308 =head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
15309
15310 =over 4
15311
15312 =item SYNOPSIS
15313
15314 =item DESCRIPTION
15315
15316 =item CONSTRUCTOR
15317
15318 new ( [ARGS] )
15319
15320 =item METHODS
15321
15322 hostpath(), peerpath()
15323
15324 =item SEE ALSO
15325
15326 =item AUTHOR
15327
15328 =item COPYRIGHT
15329
15330 =back
15331
15332 =head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
15333 handles
15334
15335 =over 4
15336
15337 =item SYNOPSIS
15338
15339 =item DESCRIPTION
15340
15341 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
15342 rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
15343
15344 =item SEE ALSO
15345
15346 =item AUTHOR
15347
15348 =item COPYRIGHT
15349
15350 =back
15351
15352 =head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
15353
15354 =over 4
15355
15356 =item SYNOPSIS
15357
15358 =item DESCRIPTION
15359
15360 =item CONSTRUCTOR
15361
15362 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
15363
15364 =item METHODS
15365
15366 open( FILENAME [,MODE [,PERMS]] ), open( FILENAME, IOLAYERS )
15367
15368 =item SEE ALSO
15369
15370 =item HISTORY
15371
15372 =back
15373
15374 =head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
15375 handles
15376
15377 =over 4
15378
15379 =item SYNOPSIS
15380
15381 =item DESCRIPTION
15382
15383 =item CONSTRUCTOR
15384
15385 new (), new_from_fd ( FD, MODE )
15386
15387 =item METHODS
15388
15389 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
15390 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
15391 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
15392 $io->blocking ( [ BOOL ] ), $io->untaint
15393
15394 =item NOTE
15395
15396 =item SEE ALSO
15397
15398 =item BUGS
15399
15400 =item HISTORY
15401
15402 =back
15403
15404 =head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
15405
15406 =over 4
15407
15408 =item SYNOPSIS
15409
15410 =item DESCRIPTION
15411
15412 =item CONSTRUCTOR
15413
15414 new ( [READER, WRITER] )
15415
15416 =item METHODS
15417
15418 reader ([ARGS]), writer ([ARGS]), handles ()
15419
15420 =item SEE ALSO
15421
15422 =item AUTHOR
15423
15424 =item COPYRIGHT
15425
15426 =back
15427
15428 =head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
15429
15430 =over 4
15431
15432 =item SYNOPSIS
15433
15434 =item DESCRIPTION
15435
15436 =item METHODS
15437
15438 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
15439 IO ), handles( [ EVENT_MASK ] )
15440
15441 =item SEE ALSO
15442
15443 =item AUTHOR
15444
15445 =item COPYRIGHT
15446
15447 =back
15448
15449 =head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
15450 I/O objects
15451
15452 =over 4
15453
15454 =item SYNOPSIS
15455
15456 =item DESCRIPTION
15457
15458 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
15459 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
15460 $io->tell
15461
15462 =item SEE ALSO
15463
15464 =item HISTORY
15465
15466 =back
15467
15468 =head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
15469 call
15470
15471 =over 4
15472
15473 =item SYNOPSIS
15474
15475 =item DESCRIPTION
15476
15477 =item CONSTRUCTOR
15478
15479 new ( [ HANDLES ] )
15480
15481 =item METHODS
15482
15483 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
15484 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
15485 count (), bits(), select ( READ, WRITE, EXCEPTION [, TIMEOUT ] )
15486
15487 =item EXAMPLE
15488
15489 =item AUTHOR
15490
15491 =item COPYRIGHT
15492
15493 =back
15494
15495 =head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
15496 communications
15497
15498 =over 4
15499
15500 =item SYNOPSIS
15501
15502 =item DESCRIPTION
15503
15504 =item CONSTRUCTOR
15505
15506 new ( [ARGS] )
15507
15508 =item METHODS
15509
15510 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
15511 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
15512
15513 =item SEE ALSO
15514
15515 =item AUTHOR
15516
15517 =item COPYRIGHT
15518
15519 =back
15520
15521 =head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
15522 AF_INET domain sockets
15523
15524 =over 4
15525
15526 =item SYNOPSIS
15527
15528 =item DESCRIPTION
15529
15530 =item CONSTRUCTOR
15531
15532 new ( [ARGS] )
15533
15534 =over 4
15535
15536 =item METHODS
15537
15538 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
15539 ()
15540
15541 =back
15542
15543 =item SEE ALSO
15544
15545 =item AUTHOR
15546
15547 =item COPYRIGHT
15548
15549 =back
15550
15551 =head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
15552 AF_UNIX domain sockets
15553
15554 =over 4
15555
15556 =item SYNOPSIS
15557
15558 =item DESCRIPTION
15559
15560 =item CONSTRUCTOR
15561
15562 new ( [ARGS] )
15563
15564 =item METHODS
15565
15566 hostpath(), peerpath()
15567
15568 =item SEE ALSO
15569
15570 =item AUTHOR
15571
15572 =item COPYRIGHT
15573
15574 =back
15575
15576 =head2 IPC::Msg - SysV Msg IPC object class
15577
15578 =over 4
15579
15580 =item SYNOPSIS
15581
15582 =item DESCRIPTION
15583
15584 =item METHODS
15585
15586 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
15587 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
15588 FLAGS ] ), stat
15589
15590 =item SEE ALSO
15591
15592 =item AUTHOR
15593
15594 =item COPYRIGHT
15595
15596 =back
15597
15598 =head2 IPC::Open2, open2 - open a process for both reading and writing
15599
15600 =over 4
15601
15602 =item SYNOPSIS
15603
15604 =item DESCRIPTION
15605
15606 =item WARNING 
15607
15608 =item SEE ALSO
15609
15610 =back
15611
15612 =head2 IPC::Open3, open3 - open a process for reading, writing, and error
15613 handling
15614
15615 =over 4
15616
15617 =item SYNOPSIS
15618
15619 =item DESCRIPTION
15620
15621 =item WARNING
15622
15623 =back
15624
15625 =head2 IPC::Semaphore - SysV Semaphore IPC object class
15626
15627 =over 4
15628
15629 =item SYNOPSIS
15630
15631 =item DESCRIPTION
15632
15633 =item METHODS
15634
15635 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
15636 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
15637 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
15638 , VALUE ), stat
15639
15640 =item SEE ALSO
15641
15642 =item AUTHOR
15643
15644 =item COPYRIGHT
15645
15646 =back
15647
15648 =head2 IPC::SysV - SysV IPC constants
15649
15650 =over 4
15651
15652 =item SYNOPSIS
15653
15654 =item DESCRIPTION
15655
15656 ftok( PATH, ID )
15657
15658 =item SEE ALSO
15659
15660 =item AUTHORS
15661
15662 =item COPYRIGHT
15663
15664 =back
15665
15666 =head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
15667
15668 =over 4
15669
15670 =item SYNOPSIS
15671
15672 =item DESCRIPTION
15673
15674 =item METHODS
15675
15676 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
15677 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
15678 FLAGS ] ), stat
15679
15680 =item SEE ALSO
15681
15682 =item AUTHOR
15683
15684 =item COPYRIGHT
15685
15686 =back
15687
15688 =head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
15689 class
15690
15691 =over 4
15692
15693 =item SYNOPSIS
15694
15695 =item DESCRIPTION
15696
15697 =item METHODS
15698
15699 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
15700 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
15701 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
15702 , VALUE ), stat
15703
15704 =item SEE ALSO
15705
15706 =item AUTHOR
15707
15708 =item COPYRIGHT
15709
15710 =back
15711
15712 =head2 List::Util - A selection of general-utility list subroutines
15713
15714 =over 4
15715
15716 =item SYNOPSIS
15717
15718 =item DESCRIPTION
15719
15720 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
15721 BLOCK LIST, shuffle LIST, sum LIST
15722
15723 =item KNOWN BUGS
15724
15725 =item SUGGESTED ADDITIONS
15726
15727 =item COPYRIGHT
15728
15729 =back
15730
15731 =head2 List::Utilib::List::Util, List::Util - A selection of
15732 general-utility list subroutines
15733
15734 =over 4
15735
15736 =item SYNOPSIS
15737
15738 =item DESCRIPTION
15739
15740 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
15741 BLOCK LIST, shuffle LIST, sum LIST
15742
15743 =item KNOWN BUGS
15744
15745 =item SUGGESTED ADDITIONS
15746
15747 =item COPYRIGHT
15748
15749 =back
15750
15751 =head2 List::Utilib::Scalar::Util, Scalar::Util - A selection of
15752 general-utility scalar subroutines
15753
15754 =over 4
15755
15756 =item SYNOPSIS
15757
15758 =item DESCRIPTION
15759
15760 blessed EXPR, dualvar NUM, STRING, isvstring EXPR, isweak EXPR,
15761 looks_like_number EXPR, openhandle FH, refaddr EXPR, reftype EXPR,
15762 set_prototype CODEREF, PROTOTYPE, tainted EXPR, weaken REF
15763
15764 =item KNOWN BUGS
15765
15766 =item COPYRIGHT
15767
15768 =item BLATANT PLUG
15769
15770 =back
15771
15772 =head2 Locale::Constants - constants for Locale codes
15773
15774 =over 4
15775
15776 =item SYNOPSIS
15777
15778 =item DESCRIPTION
15779
15780 =item KNOWN BUGS AND LIMITATIONS
15781
15782 =item SEE ALSO
15783
15784 Locale::Language, Locale::Country, Locale::Script, Locale::Currency
15785
15786 =item AUTHOR
15787
15788 =item COPYRIGHT
15789
15790 =back
15791
15792 =head2 Locale::Country - ISO codes for country identification (ISO 3166)
15793
15794 =over 4
15795
15796 =item SYNOPSIS
15797
15798 =item DESCRIPTION
15799
15800 B<alpha-2>, B<alpha-3>, B<numeric>
15801
15802 =item CONVERSION ROUTINES
15803
15804 code2country( CODE, [ CODESET ] ), country2code( STRING, [ CODESET ] ),
15805 country_code2code( CODE, CODESET, CODESET )
15806
15807 =item QUERY ROUTINES
15808
15809 C<all_country_codes( [ CODESET ] )>, C<all_country_names( [ CODESET ] )>
15810
15811 =item SEMI-PRIVATE ROUTINES
15812
15813 =over 4
15814
15815 =item alias_code
15816
15817 =item rename_country
15818
15819 =back
15820
15821 =item EXAMPLES
15822
15823 =item DOMAIN NAMES
15824
15825 =item KNOWN BUGS AND LIMITATIONS
15826
15827 =item SEE ALSO
15828
15829 Locale::Language, Locale::Script, Locale::Currency, Locale::SubCountry, ISO
15830 3166-1, http://www.iso.org/iso/en/prods-services/iso3166ma/index.html,
15831 http://www.egt.ie/standards/iso3166/iso3166-1-en.html,
15832 http://www.cia.gov/cia/publications/factbook/docs/app-d-1.html
15833
15834 =item AUTHOR
15835
15836 =item COPYRIGHT
15837
15838 =back
15839
15840 =head2 Locale::Currency - ISO three letter codes for currency
15841 identification (ISO 4217)
15842
15843 =over 4
15844
15845 =item SYNOPSIS
15846
15847 =item DESCRIPTION
15848
15849 XTS, XXX
15850
15851 =item CONVERSION ROUTINES
15852
15853 code2currency(), currency2code()
15854
15855 =item QUERY ROUTINES
15856
15857 C<all_currency_codes()>, C<all_currency_names()>
15858
15859 =item EXAMPLES
15860
15861 =item KNOWN BUGS AND LIMITATIONS
15862
15863 =item SEE ALSO
15864
15865 Locale::Country, Locale::Script, ISO 4217:1995,
15866 http://www.bsi-global.com/iso4217currency
15867
15868 =item AUTHOR
15869
15870 =item COPYRIGHT
15871
15872 =back
15873
15874 =head2 Locale::Language - ISO two letter codes for language identification
15875 (ISO 639)
15876
15877 =over 4
15878
15879 =item SYNOPSIS
15880
15881 =item DESCRIPTION
15882
15883 =item CONVERSION ROUTINES
15884
15885 code2language(), language2code()
15886
15887 =item QUERY ROUTINES
15888
15889 C<all_language_codes()>, C<all_language_names()>
15890
15891 =item EXAMPLES
15892
15893 =item KNOWN BUGS AND LIMITATIONS
15894
15895 =item SEE ALSO
15896
15897 Locale::Country, Locale::Script, Locale::Currency, ISO 639:1988 (E/F),
15898 http://lcweb.loc.gov/standards/iso639-2/langhome.html
15899
15900 =item AUTHOR
15901
15902 =item COPYRIGHT
15903
15904 =back
15905
15906 =head2 Locale::Maketext - framework for localization
15907
15908 =over 4
15909
15910 =item SYNOPSIS
15911
15912 =item DESCRIPTION
15913
15914 =item QUICK OVERVIEW
15915
15916 =item METHODS
15917
15918 =over 4
15919
15920 =item Construction Methods
15921
15922 =item The "maketext" Method
15923
15924 $lh->fail_with I<or> $lh->fail_with(I<PARAM>), $lh->failure_handler_auto
15925
15926 =item Utility Methods
15927
15928 $language->quant($number, $singular), $language->quant($number, $singular,
15929 $plural), $language->quant($number, $singular, $plural, $negative),
15930 $language->numf($number), $language->sprintf($format, @items),
15931 $language->language_tag(), $language->encoding()
15932
15933 =item Language Handle Attributes and Internals
15934
15935 =back
15936
15937 =item LANGUAGE CLASS HIERARCHIES
15938
15939 =item ENTRIES IN EACH LEXICON
15940
15941 =item BRACKET NOTATION
15942
15943 =item AUTO LEXICONS
15944
15945 =item CONTROLLING LOOKUP FAILURE
15946
15947 =item HOW TO USE MAKETEXT
15948
15949 =item SEE ALSO
15950
15951 =item COPYRIGHT AND DISCLAIMER
15952
15953 =item AUTHOR
15954
15955 =back
15956
15957 =head2 Locale::Maketext::TPJ13 -- article about software localization
15958
15959 =over 4
15960
15961 =item SYNOPSIS
15962
15963 =item DESCRIPTION
15964
15965 =item Localization and Perl: gettext breaks, Maketext fixes
15966
15967 =over 4
15968
15969 =item A Localization Horror Story: It Could Happen To You
15970
15971 =item The Linguistic View
15972
15973 =item Breaking gettext
15974
15975 =item Replacing gettext
15976
15977 =item Buzzwords: Abstraction and Encapsulation
15978
15979 =item Buzzword: Isomorphism
15980
15981 =item Buzzword: Inheritance
15982
15983 =item Buzzword: Concision
15984
15985 =item The Devil in the Details
15986
15987 =item The Proof in the Pudding: Localizing Web Sites
15988
15989 =item References
15990
15991 =back
15992
15993 =back
15994
15995 =head2 Locale::Script - ISO codes for script identification (ISO 15924)
15996
15997 =over 4
15998
15999 =item SYNOPSIS
16000
16001 =item DESCRIPTION
16002
16003 B<alpha-2>, B<alpha-3>, B<numeric>
16004
16005 =over 4
16006
16007 =item SPECIAL CODES
16008
16009 =back
16010
16011 =item CONVERSION ROUTINES
16012
16013 code2script( CODE, [ CODESET ] ), script2code( STRING, [ CODESET ] ),
16014 script_code2code( CODE, CODESET, CODESET )
16015
16016 =item QUERY ROUTINES
16017
16018 C<all_script_codes ( [ CODESET ] )>, C<all_script_names ( [ CODESET ] )>
16019
16020 =item EXAMPLES
16021
16022 =item KNOWN BUGS AND LIMITATIONS
16023
16024 =item SEE ALSO
16025
16026 Locale::Language, Locale::Currency, Locale::Country, ISO 15924,
16027 http://www.evertype.com/standards/iso15924/
16028
16029 =item AUTHOR
16030
16031 =item COPYRIGHT
16032
16033 =back
16034
16035 =head2 MIME::Base64 - Encoding and decoding of base64 strings
16036
16037 =over 4
16038
16039 =item SYNOPSIS
16040
16041 =item DESCRIPTION
16042
16043 encode_base64($str), encode_base64($str, $eol);, decode_base64($str)
16044
16045 =item DIAGNOSTICS
16046
16047 Premature end of base64 data, Premature padding of base64 data
16048
16049 =item EXAMPLES
16050
16051 =item COPYRIGHT
16052
16053 =back
16054
16055 =head2 MIME::Base64::QuotedPrint, MIME::QuotedPrint - Encoding and decoding
16056 of quoted-printable strings
16057
16058 =over 4
16059
16060 =item SYNOPSIS
16061
16062 =item DESCRIPTION
16063
16064 encode_qp($str), encode_qp($str, $eol), decode_qp($str);
16065
16066 =item COPYRIGHT
16067
16068 =back
16069
16070 =head2 MIME::QuotedPrint - Encoding and decoding of quoted-printable
16071 strings
16072
16073 =over 4
16074
16075 =item SYNOPSIS
16076
16077 =item DESCRIPTION
16078
16079 encode_qp($str), encode_qp($str, $eol), decode_qp($str);
16080
16081 =item COPYRIGHT
16082
16083 =back
16084
16085 =head2 Math::BigFloat - Arbitrary size floating point math package
16086
16087 =over 4
16088
16089 =item SYNOPSIS
16090
16091 =item DESCRIPTION
16092
16093 =over 4
16094
16095 =item Canonical notation
16096
16097 =item Output
16098
16099 =item C<mantissa()>, C<exponent()> and C<parts()>
16100
16101 =item Accuracy vs. Precision
16102
16103 =item Rounding
16104
16105 ffround ( +$scale ), ffround ( -$scale ), ffround ( 0 ), fround  ( +$scale
16106 ), fround  ( -$scale ) and fround ( 0 )
16107
16108 =back
16109
16110 =item EXAMPLES
16111
16112   # not ready yet
16113
16114 =item Autocreating constants
16115
16116 =over 4
16117
16118 =item Math library
16119
16120 =item Using Math::BigInt::Lite
16121
16122 =back
16123
16124 =item BUGS
16125
16126 =item CAVEATS
16127
16128 stringify, bstr(), bdiv, Modifying and =, bpow
16129
16130 =item SEE ALSO
16131
16132 =item LICENSE
16133
16134 =item AUTHORS
16135
16136 =back
16137
16138 =head2 Math::BigInt - Arbitrary size integer math package
16139
16140 =over 4
16141
16142 =item SYNOPSIS
16143
16144 =item DESCRIPTION
16145
16146 Input, Output
16147
16148 =item METHODS
16149
16150 =over 4
16151
16152 =item config
16153
16154 =item accuracy
16155
16156 =item precision
16157
16158 =item brsft
16159
16160 =item new
16161
16162 =item bnan
16163
16164 =item bzero
16165
16166 =item binf
16167
16168 =item bone
16169
16170 =item is_one()/is_zero()/is_nan()/is_inf()
16171
16172 =item is_positive()/is_negative()
16173
16174         $x->is_positive();              # true if >= 0
16175         $x->is_negative();              # true if <  0
16176
16177 =item is_odd()/is_even()/is_int()
16178
16179 =item bcmp
16180
16181 =item bacmp
16182
16183 =item sign
16184
16185 =item bcmp
16186
16187 =item bneg
16188
16189 =item babs
16190
16191 =item bnorm
16192
16193 =item bnot
16194
16195 =item binc
16196
16197 =item bdec
16198
16199 =item badd
16200
16201 =item bsub
16202
16203 =item bmul
16204
16205 =item bdiv
16206
16207 =item bmod
16208
16209 =item bmodinv
16210
16211 =item bmodpow
16212
16213 =item bpow
16214
16215 =item blsft
16216
16217 =item brsft
16218
16219 =item band
16220
16221 =item bior
16222
16223 =item bxor
16224
16225 =item bnot
16226
16227 =item bsqrt
16228
16229 =item bfac
16230
16231 =item round
16232
16233 =item bround
16234
16235 =item bfround
16236
16237 =item bfloor
16238
16239 =item bceil
16240
16241 =item bgcd
16242
16243 =item blcm
16244
16245 =item exponent
16246
16247 =item mantissa
16248
16249 =item parts
16250
16251 =item copy
16252
16253 =item as_number
16254
16255 =item bsstr
16256
16257 =item as_hex
16258
16259 =item as_bin
16260
16261 =back
16262
16263 =item ACCURACY and PRECISION
16264
16265 =over 4
16266
16267 =item Precision P
16268
16269 =item Accuracy A
16270
16271 =item Fallback F
16272
16273 =item Rounding mode R
16274
16275 'trunc', 'even', 'odd', '+inf', '-inf', 'zero', Precision, Accuracy
16276 (significant digits), Setting/Accessing, Creating numbers, Usage,
16277 Precedence, Overriding globals, Local settings, Rounding, Default values,
16278 Remarks
16279
16280 =back
16281
16282 =item INTERNALS
16283
16284 =over 4
16285
16286 =item MATH LIBRARY
16287
16288 =item SIGN
16289
16290 =item mantissa(), exponent() and parts()
16291
16292 =back
16293
16294 =item EXAMPLES
16295
16296   use Math::BigInt;
16297
16298 =item Autocreating constants
16299
16300 =item PERFORMANCE
16301
16302 =over 4
16303
16304 =item Alternative math libraries
16305
16306 =item SUBCLASSING
16307
16308 =back
16309
16310 =item Subclassing Math::BigInt
16311
16312 =item UPGRADING
16313
16314 =over 4
16315
16316 =item Auto-upgrade
16317
16318 bsqrt(), div(), blog()
16319
16320 =back
16321
16322 =item BUGS
16323
16324 broot() does not work, Out of Memory!, Fails to load Calc on Perl prior
16325 5.6.0
16326
16327 =item CAVEATS
16328
16329 stringify, bstr(), bsstr() and 'cmp', int(), length, bdiv, infinity
16330 handling, Modifying and =, bpow, Overloading -$x, Mixing different object
16331 types, bsqrt(), brsft()
16332
16333 =item LICENSE
16334
16335 =item SEE ALSO
16336
16337 =item AUTHORS
16338
16339 =back
16340
16341 =head2 Math::BigInt::Calc - Pure Perl module to support Math::BigInt
16342
16343 =over 4
16344
16345 =item SYNOPSIS
16346
16347 =item DESCRIPTION
16348
16349 =item STORAGE
16350
16351 =item METHODS
16352
16353 =item WRAP YOUR OWN
16354
16355 =item LICENSE
16356
16357 This program is free software; you may redistribute it and/or modify it
16358 under
16359 the same terms as Perl itself. 
16360
16361 =item AUTHORS
16362
16363 =item SEE ALSO
16364
16365 =back
16366
16367 =head2 Math::BigInt::Scalar - Pure Perl module to test Math::BigInt with
16368 scalars
16369
16370 =over 4
16371
16372 =item SYNOPSIS
16373
16374 =item DESCRIPTION
16375
16376 =item LICENSE
16377
16378 This program is free software; you may redistribute it and/or modify it
16379 under
16380 the same terms as Perl itself. 
16381
16382 =item AUTHOR
16383
16384 =item SEE ALSO
16385
16386 =back
16387
16388 =head2 Math::BigRat - arbitrarily big rationals
16389
16390 =over 4
16391
16392 =item SYNOPSIS
16393
16394 =item DESCRIPTION
16395
16396 =over 4
16397
16398 =item MATH LIBRARY
16399
16400 =back
16401
16402 =item METHODS
16403
16404 =over 4
16405
16406 =item new()
16407
16408 =item numerator()
16409
16410 =item denominator()
16411
16412         $d = $x->denominator();
16413
16414 =item parts()
16415
16416 =item as_number()
16417
16418 =item bfac()
16419
16420 =item blog()
16421
16422 =item bround()/round()/bfround()
16423
16424 =item bmod()
16425
16426 =item is_one()
16427
16428 =item is_zero()
16429
16430 =item is_positive()
16431
16432 =item is_negative()
16433
16434 =item is_int()
16435
16436 =item is_odd()
16437
16438 =item is_even()
16439
16440 =item bceil()
16441
16442 =item bfloor()
16443
16444         $x->bfloor();
16445
16446 =item config
16447
16448 =back
16449
16450 =item BUGS
16451
16452 inf handling (partial), NaN handling (partial), rounding (not implemented
16453 except for bceil/bfloor), $x ** $y where $y is not an integer
16454
16455 =item LICENSE
16456
16457 =item SEE ALSO
16458
16459 =item AUTHORS
16460
16461 =back
16462
16463 =head2 Math::Complex - complex numbers and associated mathematical
16464 functions
16465
16466 =over 4
16467
16468 =item SYNOPSIS
16469
16470 =item DESCRIPTION
16471
16472 =item OPERATIONS
16473
16474 =item CREATION
16475
16476 =item STRINGIFICATION
16477
16478 =over 4
16479
16480 =item CHANGED IN PERL 5.6
16481
16482 =back
16483
16484 =item USAGE
16485
16486 =item ERRORS DUE TO DIVISION BY ZERO OR LOGARITHM OF ZERO
16487
16488 =item ERRORS DUE TO INDIGESTIBLE ARGUMENTS
16489
16490 =item BUGS
16491
16492 =item AUTHORS
16493
16494 =back
16495
16496 =head2 Math::Trig - trigonometric functions
16497
16498 =over 4
16499
16500 =item SYNOPSIS
16501
16502 =item DESCRIPTION
16503
16504 =item TRIGONOMETRIC FUNCTIONS
16505
16506 B<tan>
16507
16508 =over 4
16509
16510 =item ERRORS DUE TO DIVISION BY ZERO
16511
16512 =item SIMPLE (REAL) ARGUMENTS, COMPLEX RESULTS
16513
16514 =back
16515
16516 =item PLANE ANGLE CONVERSIONS
16517
16518 =item RADIAL COORDINATE CONVERSIONS
16519
16520 =over 4
16521
16522 =item COORDINATE SYSTEMS
16523
16524 =item 3-D ANGLE CONVERSIONS
16525
16526 cartesian_to_cylindrical, cartesian_to_spherical, cylindrical_to_cartesian,
16527 cylindrical_to_spherical, spherical_to_cartesian, spherical_to_cylindrical
16528
16529 =back
16530
16531 =item GREAT CIRCLE DISTANCES AND DIRECTIONS
16532
16533 =item EXAMPLES
16534
16535 =over 4
16536
16537 =item CAVEAT FOR GREAT CIRCLE FORMULAS
16538
16539 =back
16540
16541 =item BUGS
16542
16543 =item AUTHORS
16544
16545 =back
16546
16547 =head2 Memoize - Make functions faster by trading space for time
16548
16549 =over 4
16550
16551 =item SYNOPSIS
16552
16553 =item DESCRIPTION
16554
16555 =item DETAILS
16556
16557 =item OPTIONS
16558
16559 =over 4
16560
16561 =item INSTALL
16562
16563 =item NORMALIZER
16564
16565 =item C<SCALAR_CACHE>, C<LIST_CACHE>
16566
16567 C<MEMORY>, C<HASH>, C<TIE>, C<FAULT>, C<MERGE>
16568
16569 =back
16570
16571 =item OTHER FACILITIES
16572
16573 =over 4
16574
16575 =item C<unmemoize>
16576
16577 =item C<flush_cache>
16578
16579 =back
16580
16581 =item CAVEATS
16582
16583 =item PERSISTENT CACHE SUPPORT
16584
16585 =item EXPIRATION SUPPORT
16586
16587 =item BUGS
16588
16589 =item MAILING LIST
16590
16591 =item AUTHOR
16592
16593 =item COPYRIGHT AND LICENSE
16594
16595 =item THANK YOU
16596
16597 =back
16598
16599 =head2 Memoize::AnyDBM_File - glue to provide EXISTS for AnyDBM_File for
16600 Storable use
16601
16602 =over 4
16603
16604 =item DESCRIPTION
16605
16606 =back
16607
16608 =head2 Memoize::Expire - Plug-in module for automatic expiration of
16609 memoized values
16610
16611 =over 4
16612
16613 =item SYNOPSIS
16614
16615 =item DESCRIPTION
16616
16617 =item INTERFACE
16618
16619  TIEHASH,  EXISTS,  STORE
16620
16621 =item ALTERNATIVES
16622
16623 =item CAVEATS
16624
16625 =item AUTHOR
16626
16627 =item SEE ALSO
16628
16629 =back
16630
16631 =head2 Memoize::ExpireFile - test for Memoize expiration semantics
16632
16633 =over 4
16634
16635 =item DESCRIPTION
16636
16637 =back
16638
16639 =head2 Memoize::ExpireTest - test for Memoize expiration semantics
16640
16641 =over 4
16642
16643 =item DESCRIPTION
16644
16645 =back
16646
16647 =head2 Memoize::NDBM_File - glue to provide EXISTS for NDBM_File for
16648 Storable use
16649
16650 =over 4
16651
16652 =item DESCRIPTION
16653
16654 =back
16655
16656 =head2 Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for
16657 Storable use
16658
16659 =over 4
16660
16661 =item DESCRIPTION
16662
16663 =back
16664
16665 =head2 Memoize::Storable - store Memoized data in Storable database
16666
16667 =over 4
16668
16669 =item DESCRIPTION
16670
16671 =back
16672
16673 =head2 NDBM_File - Tied access to ndbm files
16674
16675 =over 4
16676
16677 =item SYNOPSIS
16678
16679 =item DESCRIPTION
16680
16681 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
16682
16683 =item DIAGNOSTICS
16684
16685 =over 4
16686
16687 =item C<ndbm store returned -1, errno 22, key "..." at ...>
16688
16689 =back
16690
16691 =item BUGS AND WARNINGS
16692
16693 =back
16694
16695 =head2 NEXT - Provide a pseudo-class NEXT (et al) that allows method
16696 redispatch
16697
16698 =over 4
16699
16700 =item SYNOPSIS
16701
16702 =item DESCRIPTION
16703
16704 =over 4
16705
16706 =item Enforcing redispatch
16707
16708 =item Avoiding repetitions
16709
16710 =item Invoking all versions of a method with a single call
16711
16712 =item Using C<EVERY> methods
16713
16714 =back
16715
16716 =item AUTHOR
16717
16718 =item BUGS AND IRRITATIONS
16719
16720 =item COPYRIGHT
16721
16722 =back
16723
16724 =head2 Net::Cmd - Network Command class (as used by FTP, SMTP etc)
16725
16726 =over 4
16727
16728 =item SYNOPSIS
16729
16730 =item DESCRIPTION
16731
16732 =item USER METHODS
16733
16734 debug ( VALUE ), message (), code (), ok (), status (), datasend ( DATA ),
16735 dataend ()
16736
16737 =item CLASS METHODS
16738
16739 debug_print ( DIR, TEXT ), debug_text ( TEXT ), command ( CMD [, ARGS, ...
16740 ]), unsupported (), response (), parse_response ( TEXT ), getline (),
16741 ungetline ( TEXT ), rawdatasend ( DATA ), read_until_dot (), tied_fh ()
16742
16743 =item EXPORTS
16744
16745 =item AUTHOR
16746
16747 =item COPYRIGHT
16748
16749 =back
16750
16751 =head2 Net::Config - Local configuration data for libnet
16752
16753 =over 4
16754
16755 =item SYNOPSYS
16756
16757 =item DESCRIPTION
16758
16759 =item METHODS
16760
16761 requires_firewall HOST
16762
16763 =item NetConfig VALUES
16764
16765 nntp_hosts, snpp_hosts, pop3_hosts, smtp_hosts, ph_hosts, daytime_hosts,
16766 time_hosts, inet_domain, ftp_firewall, ftp_firewall_type, ftp_ext_passive,
16767 ftp_int_pasive, local_netmask, test_hosts, test_exists
16768
16769 =back
16770
16771 =head2 Net::Domain - Attempt to evaluate the current host's internet name
16772 and domain
16773
16774 =over 4
16775
16776 =item SYNOPSIS
16777
16778 =item DESCRIPTION
16779
16780 hostfqdn (), hostname (), hostdomain ()
16781
16782 =item AUTHOR
16783
16784 =item COPYRIGHT
16785
16786 =back
16787
16788 =head2 Net::FTP - FTP Client class
16789
16790 =over 4
16791
16792 =item SYNOPSIS
16793
16794 =item DESCRIPTION
16795
16796 =item OVERVIEW
16797
16798 =item CONSTRUCTOR
16799
16800 new (HOST [,OPTIONS])
16801
16802 =item METHODS
16803
16804 login ([LOGIN [,PASSWORD [, ACCOUNT] ] ]), authorize ( [AUTH [, RESP]]),
16805 site (ARGS), type (TYPE [, ARGS]), ascii ([ARGS]) binary([ARGS])
16806 ebcdic([ARGS]) byte([ARGS]), rename ( OLDNAME, NEWNAME ), delete ( FILENAME
16807 ), cwd ( [ DIR ] ), cdup (), pwd (), restart ( WHERE ), rmdir ( DIR ),
16808 mkdir ( DIR [, RECURSE ]), ls ( [ DIR ] ), alloc ( SIZE [, RECORD_SIZE] ),
16809 dir ( [ DIR ] ), get ( REMOTE_FILE [, LOCAL_FILE [, WHERE]] ), put (
16810 LOCAL_FILE [, REMOTE_FILE ] ), put_unique ( LOCAL_FILE [, REMOTE_FILE ] ),
16811 append ( LOCAL_FILE [, REMOTE_FILE ] ), unique_name (), mdtm ( FILE ), size
16812 ( FILE ), supported ( CMD ), hash ( [FILEHANDLE_GLOB_REF],[
16813 BYTES_PER_HASH_MARK] ), nlst ( [ DIR ] ), list ( [ DIR ] ), retr ( FILE ),
16814 stor ( FILE ), stou ( FILE ), appe ( FILE ), port ( [ PORT ] ), pasv (),
16815 pasv_xfer ( SRC_FILE, DEST_SERVER [, DEST_FILE ] ), pasv_xfer_unique (
16816 SRC_FILE, DEST_SERVER [, DEST_FILE ] ), pasv_wait ( NON_PASV_SERVER ),
16817 abort (), quit ()
16818
16819 =over 4
16820
16821 =item Methods for the adventurous
16822
16823 quot (CMD [,ARGS])
16824
16825 =back
16826
16827 =item THE dataconn CLASS
16828
16829 read ( BUFFER, SIZE [, TIMEOUT ] ), write ( BUFFER, SIZE [, TIMEOUT ] ),
16830 bytes_read (), abort (), close ()
16831
16832 =item UNIMPLEMENTED
16833
16834 B<SMNT>, B<HELP>, B<MODE>, B<SYST>, B<STAT>, B<STRU>, B<REIN>
16835
16836 =item REPORTING BUGS
16837
16838 =item AUTHOR
16839
16840 =item SEE ALSO
16841
16842 =item USE EXAMPLES
16843
16844 http://www.csh.rit.edu/~adam/Progs/autoftp-2.0.tar.gz
16845
16846 =item CREDITS
16847
16848 =item COPYRIGHT
16849
16850 =back
16851
16852 =head2 Net::NNTP - NNTP Client class
16853
16854 =over 4
16855
16856 =item SYNOPSIS
16857
16858 =item DESCRIPTION
16859
16860 =item CONSTRUCTOR
16861
16862 new ( [ HOST ] [, OPTIONS ])
16863
16864 =item METHODS
16865
16866 article ( [ MSGID|MSGNUM ], [FH] ), body ( [ MSGID|MSGNUM ], [FH] ), head (
16867 [ MSGID|MSGNUM ], [FH] ), articlefh ( [ MSGID|MSGNUM ] ), bodyfh ( [
16868 MSGID|MSGNUM ] ), headfh ( [ MSGID|MSGNUM ] ), nntpstat ( [ MSGID|MSGNUM ]
16869 ), group ( [ GROUP ] ), ihave ( MSGID [, MESSAGE ]), last (), date (),
16870 postok (), authinfo ( USER, PASS ), list (), newgroups ( SINCE [,
16871 DISTRIBUTIONS ]), newnews ( SINCE [, GROUPS [, DISTRIBUTIONS ]]), next (),
16872 post ( [ MESSAGE ] ), postfh (), slave (), quit ()
16873
16874 =over 4
16875
16876 =item Extension methods
16877
16878 newsgroups ( [ PATTERN ] ), distributions (), subscriptions (),
16879 overview_fmt (), active_times (), active ( [ PATTERN ] ), xgtitle ( PATTERN
16880 ), xhdr ( HEADER, MESSAGE-SPEC ), xover ( MESSAGE-SPEC ), xpath (
16881 MESSAGE-ID ), xpat ( HEADER, PATTERN, MESSAGE-SPEC), xrover, listgroup ( [
16882 GROUP ] ), reader
16883
16884 =back
16885
16886 =item UNSUPPORTED
16887
16888 =item DEFINITIONS
16889
16890 MESSAGE-SPEC, PATTERN, Examples, C<[^]-]>, C<*bdc>, C<[0-9a-zA-Z]>, C<a??d>
16891
16892 =item SEE ALSO
16893
16894 =item AUTHOR
16895
16896 =item COPYRIGHT
16897
16898 =back
16899
16900 =head2 Net::POP3 - Post Office Protocol 3 Client class (RFC1939)
16901
16902 =over 4
16903
16904 =item SYNOPSIS
16905
16906 =item DESCRIPTION
16907
16908 =item CONSTRUCTOR
16909
16910 new ( [ HOST, ] [ OPTIONS ] )
16911
16912 =item METHODS
16913
16914 user ( USER ), pass ( PASS ), login ( [ USER [, PASS ]] ), apop ( [ USER [,
16915 PASS ]] ), top ( MSGNUM [, NUMLINES ] ), list ( [ MSGNUM ] ), get ( MSGNUM
16916 [, FH ] ), getfh ( MSGNUM ), last (), popstat (), ping ( USER ), uidl ( [
16917 MSGNUM ] ), delete ( MSGNUM ), reset (), quit ()
16918
16919 =item NOTES
16920
16921 =item SEE ALSO
16922
16923 =item AUTHOR
16924
16925 =item COPYRIGHT
16926
16927 =back
16928
16929 =head2 Net::Ping - check a remote host for reachability
16930
16931 =over 4
16932
16933 =item SYNOPSIS
16934
16935 =item DESCRIPTION
16936
16937 =over 4
16938
16939 =item Functions
16940
16941 Net::Ping->new([$proto [, $def_timeout [, $bytes [, $device [, $tos
16942 ]]]]]);, $p->ping($host [, $timeout]);, $p->source_verify( { 0 | 1 } );,
16943 $p->service_check( { 0 | 1 } );, $p->tcp_service_check( { 0 | 1 } );,
16944 $p->hires( { 0 | 1 } );, $p->bind($local_addr);, $p->open($host);, $p->ack(
16945 [ $host ] );, $p->nack( $failed_ack_host );, $p->close();, pingecho($host
16946 [, $timeout]);
16947
16948 =back
16949
16950 =item NOTES
16951
16952 =item INSTALL
16953
16954 =item BUGS
16955
16956 =item AUTHORS
16957
16958 =item COPYRIGHT
16959
16960 =back
16961
16962 =head2 Net::SMTP - Simple Mail Transfer Protocol Client
16963
16964 =over 4
16965
16966 =item SYNOPSIS
16967
16968 =item DESCRIPTION
16969
16970 =item EXAMPLES
16971
16972 =item CONSTRUCTOR
16973
16974 new Net::SMTP [ HOST, ] [ OPTIONS ]
16975
16976 =item METHODS
16977
16978 banner (), domain (), hello ( DOMAIN ), etrn ( DOMAIN ), auth ( USERNAME,
16979 PASSWORD ), mail ( ADDRESS [, OPTIONS] ), send ( ADDRESS ), send_or_mail (
16980 ADDRESS ), send_and_mail ( ADDRESS ), reset (), recipient ( ADDRESS [,
16981 ADDRESS [ ...]] [, OPTIONS ] ), to ( ADDRESS [, ADDRESS [...]] ), cc (
16982 ADDRESS [, ADDRESS [...]] ), bcc ( ADDRESS [, ADDRESS [...]] ), data ( [
16983 DATA ] ), expand ( ADDRESS ), verify ( ADDRESS ), help ( [ $subject ] ),
16984 quit ()
16985
16986 =item ADDRESSES
16987
16988 =item SEE ALSO
16989
16990 =item AUTHOR
16991
16992 =item COPYRIGHT
16993
16994 =back
16995
16996 =head2 Net::Time - time and daytime network client interface
16997
16998 =over 4
16999
17000 =item SYNOPSIS
17001
17002 =item DESCRIPTION
17003
17004 inet_time ( [HOST [, PROTOCOL [, TIMEOUT]]]), inet_daytime ( [HOST [,
17005 PROTOCOL [, TIMEOUT]]])
17006
17007 =item AUTHOR
17008
17009 =item COPYRIGHT
17010
17011 =back
17012
17013 =head2 Net::hostent - by-name interface to Perl's built-in gethost*()
17014 functions
17015
17016 =over 4
17017
17018 =item SYNOPSIS
17019
17020 =item DESCRIPTION
17021
17022 =item EXAMPLES
17023
17024 =item NOTE
17025
17026 =item AUTHOR
17027
17028 =back
17029
17030 =head2 Net::libnetFAQ, libnetFAQ - libnet Frequently Asked Questions
17031
17032 =over 4
17033
17034 =item DESCRIPTION
17035
17036 =over 4
17037
17038 =item Where to get this document
17039
17040 =item How to contribute to this document
17041
17042 =back
17043
17044 =item Author and Copyright Information
17045
17046 =over 4
17047
17048 =item Disclaimer
17049
17050 =back
17051
17052 =item Obtaining and installing libnet
17053
17054 =over 4
17055
17056 =item What is libnet ?
17057
17058 =item Which version of perl do I need ?
17059
17060 =item What other modules do I need ?
17061
17062 =item What machines support libnet ?
17063
17064 =item Where can I get the latest libnet release
17065
17066 =back
17067
17068 =item Using Net::FTP
17069
17070 =over 4
17071
17072 =item How do I download files from an FTP server ?
17073
17074 =item How do I transfer files in binary mode ?
17075
17076 =item How can I get the size of a file on a remote FTP server ?
17077
17078 =item How can I get the modification time of a file on a remote FTP server
17079 ?
17080
17081 =item How can I change the permissions of a file on a remote server ?
17082
17083 =item Can I do a reget operation like the ftp command ?
17084
17085 =item How do I get a directory listing from an FTP server ?
17086
17087 =item Changing directory to "" does not fail ?
17088
17089 =item I am behind a SOCKS firewall, but the Firewall option does not work ?
17090
17091 =item I am behind an FTP proxy firewall, but cannot access machines outside
17092 ?
17093
17094 =item My ftp proxy firewall does not listen on port 21
17095
17096 =item Is it possible to change the file permissions of a file on an FTP
17097 server ?
17098
17099 =item I have seen scripts call a method message, but cannot find it
17100 documented ?
17101
17102 =item Why does Net::FTP not implement mput and mget methods
17103
17104 =back
17105
17106 =item Using Net::SMTP
17107
17108 =over 4
17109
17110 =item Why can't the part of an Email address after the @ be used as the
17111 hostname ?
17112
17113 =item Why does Net::SMTP not do DNS MX lookups ?
17114
17115 =item The verify method always returns true ?
17116
17117 =back
17118
17119 =item Debugging scripts
17120
17121 =over 4
17122
17123 =item How can I debug my scripts that use Net::* modules ?
17124
17125 =back
17126
17127 =item AUTHOR AND COPYRIGHT
17128
17129 =back
17130
17131 =head2 Net::netent - by-name interface to Perl's built-in getnet*()
17132 functions
17133
17134 =over 4
17135
17136 =item SYNOPSIS
17137
17138 =item DESCRIPTION
17139
17140 =item EXAMPLES
17141
17142 =item NOTE
17143
17144 =item AUTHOR
17145
17146 =back
17147
17148 =head2 Net::protoent - by-name interface to Perl's built-in getproto*()
17149 functions
17150
17151 =over 4
17152
17153 =item SYNOPSIS
17154
17155 =item DESCRIPTION
17156
17157 =item NOTE
17158
17159 =item AUTHOR
17160
17161 =back
17162
17163 =head2 Net::servent - by-name interface to Perl's built-in getserv*()
17164 functions
17165
17166 =over 4
17167
17168 =item SYNOPSIS
17169
17170 =item DESCRIPTION
17171
17172 =item EXAMPLES
17173
17174 =item NOTE
17175
17176 =item AUTHOR
17177
17178 =back
17179
17180 =head2 Netrc, Net::Netrc - OO interface to users netrc file
17181
17182 =over 4
17183
17184 =item SYNOPSIS
17185
17186 =item DESCRIPTION
17187
17188 =item THE .netrc FILE
17189
17190 machine name, default, login name, password string, account string, macdef
17191 name
17192
17193 =item CONSTRUCTOR
17194
17195 lookup ( MACHINE [, LOGIN ])
17196
17197 =item METHODS
17198
17199 login (), password (), account (), lpa ()
17200
17201 =item AUTHOR
17202
17203 =item SEE ALSO
17204
17205 =item COPYRIGHT
17206
17207 =back
17208
17209 =head2 O - Generic interface to Perl Compiler backends
17210
17211 =over 4
17212
17213 =item SYNOPSIS
17214
17215 =item DESCRIPTION
17216
17217 =item CONVENTIONS
17218
17219 =item IMPLEMENTATION
17220
17221 =item BUGS
17222
17223 =item AUTHOR
17224
17225 =back
17226
17227 =head2 ODBM_File - Tied access to odbm files
17228
17229 =over 4
17230
17231 =item SYNOPSIS
17232
17233 =item DESCRIPTION
17234
17235 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
17236
17237 =item DIAGNOSTICS
17238
17239 =over 4
17240
17241 =item C<odbm store returned -1, errno 22, key "..." at ...>
17242
17243 =back
17244
17245 =item BUGS AND WARNINGS
17246
17247 =back
17248
17249 =head2 Opcode - Disable named opcodes when compiling perl code
17250
17251 =over 4
17252
17253 =item SYNOPSIS
17254
17255 =item DESCRIPTION
17256
17257 =item NOTE
17258
17259 =item WARNING
17260
17261 =item Operator Names and Operator Lists
17262
17263 an operator name (opname), an operator tag name (optag), a negated opname
17264 or optag, an operator set (opset)
17265
17266 =item Opcode Functions
17267
17268 opcodes, opset (OP, ...), opset_to_ops (OPSET), opset_to_hex (OPSET),
17269 full_opset, empty_opset, invert_opset (OPSET), verify_opset (OPSET, ...),
17270 define_optag (OPTAG, OPSET), opmask_add (OPSET), opmask, opdesc (OP, ...),
17271 opdump (PAT)
17272
17273 =item Manipulating Opsets
17274
17275 =item TO DO (maybe)
17276
17277 =back
17278
17279 =over 4
17280
17281 =item Predefined Opcode Tags
17282
17283 :base_core, :base_mem, :base_loop, :base_io, :base_orig, :base_math,
17284 :base_thread, :default, :filesys_read, :sys_db, :browse, :filesys_open,
17285 :filesys_write, :subprocess, :ownprocess, :others, :still_to_be_decided,
17286 :dangerous
17287
17288 =item SEE ALSO
17289
17290 =item AUTHORS
17291
17292 =back
17293
17294 =head2 Opcode::Safe, Safe - Compile and execute code in restricted
17295 compartments
17296
17297 =over 4
17298
17299 =item SYNOPSIS
17300
17301 =item DESCRIPTION
17302
17303 a new namespace, an operator mask
17304
17305 =item WARNING
17306
17307 =over 4
17308
17309 =item RECENT CHANGES
17310
17311 =item Methods in class Safe
17312
17313 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
17314 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
17315 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
17316 root (NAMESPACE), mask (MASK)
17317
17318 =item Some Safety Issues
17319
17320 Memory, CPU, Snooping, Signals, State Changes
17321
17322 =item AUTHOR
17323
17324 =back
17325
17326 =back
17327
17328 =head2 Opcode::ops, ops - Perl pragma to restrict unsafe operations when
17329 compiling
17330
17331 =over 4
17332
17333 =item SYNOPSIS  
17334
17335 =item DESCRIPTION
17336
17337 =item SEE ALSO
17338
17339 =back
17340
17341 =head2 POSIX - Perl interface to IEEE Std 1003.1
17342
17343 =over 4
17344
17345 =item SYNOPSIS
17346
17347 =item DESCRIPTION
17348
17349 =item NOTE
17350
17351 =item CAVEATS 
17352
17353 =item FUNCTIONS
17354
17355 _exit, abort, abs, access, acos, alarm, asctime, asin, assert, atan, atan2,
17356 atexit, atof, atoi, atol, bsearch, calloc, ceil, chdir, chmod, chown,
17357 clearerr, clock, close, closedir, cos, cosh, creat, ctermid, ctime,
17358 cuserid, difftime, div, dup, dup2, errno, execl, execle, execlp, execv,
17359 execve, execvp, exit, exp, fabs, fclose, fcntl, fdopen, feof, ferror,
17360 fflush, fgetc, fgetpos, fgets, fileno, floor, fmod, fopen, fork, fpathconf,
17361 fprintf, fputc, fputs, fread, free, freopen, frexp, fscanf, fseek, fsetpos,
17362 fstat, fsync, ftell, fwrite, getc, getchar, getcwd, getegid, getenv,
17363 geteuid, getgid, getgrgid, getgrnam, getgroups, getlogin, getpgrp, getpid,
17364 getppid, getpwnam, getpwuid, gets, getuid, gmtime, isalnum, isalpha,
17365 isatty, iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace,
17366 isupper, isxdigit, kill, labs, ldexp, ldiv, link, localeconv, localtime,
17367 log, log10, longjmp, lseek, malloc, mblen, mbstowcs, mbtowc, memchr,
17368 memcmp, memcpy, memmove, memset, mkdir, mkfifo, mktime, modf, nice,
17369 offsetof, open, opendir, pathconf, pause, perror, pipe, pow, printf, putc,
17370 putchar, puts, qsort, raise, rand, read, readdir, realloc, remove, rename,
17371 rewind, rewinddir, rmdir, scanf, setgid, setjmp, setlocale, setpgid,
17372 setsid, setuid, sigaction, siglongjmp, sigpending, sigprocmask, sigsetjmp,
17373 sigsuspend, sin, sinh, sleep, sprintf, sqrt, srand, sscanf, stat, strcat,
17374 strchr, strcmp, strcoll, strcpy, strcspn, strerror, strftime, strlen,
17375 strncat, strncmp, strncpy, strpbrk, strrchr, strspn, strstr, strtod,
17376 strtok, strtol, strtoul, strxfrm, sysconf, system, tan, tanh, tcdrain,
17377 tcflow, tcflush, tcgetpgrp, tcsendbreak, tcsetpgrp, time, times, tmpfile,
17378 tmpnam, tolower, toupper, ttyname, tzname, tzset, umask, uname, ungetc,
17379 unlink, utime, vfprintf, vprintf, vsprintf, wait, waitpid, wcstombs,
17380 wctomb, write
17381
17382 =item CLASSES
17383
17384 =over 4
17385
17386 =item POSIX::SigAction
17387
17388 new, handler, mask, flags, safe
17389
17390 =item POSIX::SigSet
17391
17392 new, addset, delset, emptyset, fillset, ismember
17393
17394 =item POSIX::Termios
17395
17396 new, getattr, getcc, getcflag, getiflag, getispeed, getlflag, getoflag,
17397 getospeed, setattr, setcc, setcflag, setiflag, setispeed, setlflag,
17398 setoflag, setospeed, Baud rate values, Terminal interface values, c_cc
17399 field values, c_cflag field values, c_iflag field values, c_lflag field
17400 values, c_oflag field values
17401
17402 =back
17403
17404 =item PATHNAME CONSTANTS
17405
17406 Constants
17407
17408 =item POSIX CONSTANTS
17409
17410 Constants
17411
17412 =item SYSTEM CONFIGURATION
17413
17414 Constants
17415
17416 =item ERRNO
17417
17418 Constants
17419
17420 =item FCNTL
17421
17422 Constants
17423
17424 =item FLOAT
17425
17426 Constants
17427
17428 =item LIMITS
17429
17430 Constants
17431
17432 =item LOCALE
17433
17434 Constants
17435
17436 =item MATH
17437
17438 Constants
17439
17440 =item SIGNAL
17441
17442 Constants
17443
17444 =item STAT
17445
17446 Constants, Macros
17447
17448 =item STDLIB
17449
17450 Constants
17451
17452 =item STDIO
17453
17454 Constants
17455
17456 =item TIME
17457
17458 Constants
17459
17460 =item UNISTD
17461
17462 Constants
17463
17464 =item WAIT
17465
17466 Constants, WNOHANG, WUNTRACED, Macros, WIFEXITED, WEXITSTATUS, WIFSIGNALED,
17467 WTERMSIG, WIFSTOPPED, WSTOPSIG
17468
17469 =back
17470
17471 =head2 PerlIO - On demand loader for PerlIO layers and root of PerlIO::*
17472 name space
17473
17474 =over 4
17475
17476 =item SYNOPSIS
17477
17478 =item DESCRIPTION
17479
17480 unix, stdio, perlio, crlf, utf8, bytes, raw, pop
17481
17482 =over 4
17483
17484 =item Custom Layers
17485
17486 :encoding, :via
17487
17488 =item Alternatives to raw
17489
17490 =item Defaults and how to override them
17491
17492 =item Querying the layers of filehandles
17493
17494 =back
17495
17496 =item AUTHOR
17497
17498 =item SEE ALSO
17499
17500 =back
17501
17502 =head2 PerlIO::encoding - encoding layer
17503
17504 =over 4
17505
17506 =item SYNOPSIS
17507
17508 =item DESCRIPTION
17509
17510 =item SEE ALSO
17511
17512 =back
17513
17514 =head2 PerlIO::scalar - in-memory IO, scalar IO
17515
17516 =over 4
17517
17518 =item SYNOPSIS
17519
17520 =item DESCRIPTION
17521
17522 =item IMPLEMENTATION NOTE
17523
17524 =back
17525
17526 =head2 PerlIO::via - Helper class for PerlIO layers implemented in perl
17527
17528 =over 4
17529
17530 =item SYNOPSIS
17531
17532 =item DESCRIPTION
17533
17534 =item EXPECTED METHODS
17535
17536 $class->PUSHED([$mode[,$fh]]), $obj->POPPED([$fh]),
17537 $obj->UTF8($bellowFlag,[$fh]), $obj->OPEN($path,$mode[,$fh]),
17538 $obj->BINMODE([,$fh]), $obj->FDOPEN($fd[,$fh]),
17539 $obj->SYSOPEN($path,$imode,$perm,[,$fh]), $obj->FILENO($fh),
17540 $obj->READ($buffer,$len,$fh), $obj->WRITE($buffer,$fh), $obj->FILL($fh),
17541 $obj->CLOSE($fh), $obj->SEEK($posn,$whence,$fh), $obj->TELL($fh),
17542 $obj->UNREAD($buffer,$fh), $obj->FLUSH($fh), $obj->SETLINEBUF($fh),
17543 $obj->CLEARERR($fh), $obj->ERROR($fh), $obj->EOF($fh)
17544
17545 =item EXAMPLES
17546
17547 =over 4
17548
17549 =item Example - a Hexadecimal Handle
17550
17551 =back
17552
17553 =back
17554
17555 =head2 PerlIO::via::QuotedPrint - PerlIO layer for quoted-printable strings
17556
17557 =over 4
17558
17559 =item SYNOPSIS
17560
17561 =item DESCRIPTION
17562
17563 =item SEE ALSO
17564
17565 =item ACKNOWLEDGEMENTS
17566
17567 =item COPYRIGHT
17568
17569 =back
17570
17571 =head2 Pod::Checker, podchecker() - check pod documents for syntax errors
17572
17573 =over 4
17574
17575 =item SYNOPSIS
17576
17577 =item OPTIONS/ARGUMENTS
17578
17579 =over 4
17580
17581 =item podchecker()
17582
17583 B<-warnings> =E<gt> I<val>
17584
17585 =back
17586
17587 =item DESCRIPTION
17588
17589 =item DIAGNOSTICS
17590
17591 =over 4
17592
17593 =item Errors
17594
17595 empty =headn, =over on line I<N> without closing =back, =item without
17596 previous =over, =back without previous =over, No argument for =begin, =end
17597 without =begin, Nested =begin's, =for without formatter specification,
17598 unresolved internal link I<NAME>, Unknown command "I<CMD>", Unknown
17599 interior-sequence "I<SEQ>", nested commands
17600 I<CMD>E<lt>...I<CMD>E<lt>...E<gt>...E<gt>, garbled entity I<STRING>, Entity
17601 number out of range, malformed link LE<lt>E<gt>, nonempty ZE<lt>E<gt>,
17602 empty XE<lt>E<gt>, Spurious text after =pod / =cut, Spurious character(s)
17603 after =back
17604
17605 =item Warnings
17606
17607 multiple occurrence of link target I<name>, line containing nothing but
17608 whitespace in paragraph, file does not start with =head, previous =item has
17609 no contents, preceding non-item paragraph(s), =item type mismatch (I<one>
17610 vs. I<two>), I<N> unescaped C<E<lt>E<gt>> in paragraph, Unknown entity, No
17611 items in =over, No argument for =item, empty section in previous paragraph,
17612 Verbatim paragraph in NAME section, =headI<n> without preceding higher
17613 level
17614
17615 =item Hyperlinks
17616
17617 ignoring leading/trailing whitespace in link, (section) in '$page'
17618 deprecated, alternative text/node '%s' contains non-escaped | or /
17619
17620 =back
17621
17622 =item RETURN VALUE
17623
17624 =item EXAMPLES
17625
17626 =item INTERFACE
17627
17628 =back
17629
17630 C<Pod::Checker-E<gt>new( %options )>
17631
17632 C<$checker-E<gt>poderror( @args )>, C<$checker-E<gt>poderror( {%opts},
17633 @args )>
17634
17635 C<$checker-E<gt>num_errors()>
17636
17637 C<$checker-E<gt>num_warnings()>
17638
17639 C<$checker-E<gt>name()>
17640
17641 C<$checker-E<gt>node()>
17642
17643 C<$checker-E<gt>idx()>
17644
17645 C<$checker-E<gt>hyperlink()>
17646
17647 =over 4
17648
17649 =item AUTHOR
17650
17651 =back
17652
17653 =head2 Pod::Find - find POD documents in directory trees
17654
17655 =over 4
17656
17657 =item SYNOPSIS
17658
17659 =item DESCRIPTION
17660
17661 =back
17662
17663 =over 4
17664
17665 =item C<pod_find( { %opts } , @directories )>
17666
17667 C<-verbose =E<gt> 1>, C<-perl =E<gt> 1>, C<-script =E<gt> 1>, C<-inc =E<gt>
17668 1>
17669
17670 =back
17671
17672 =over 4
17673
17674 =item C<simplify_name( $str )>
17675
17676 =back
17677
17678 =over 4
17679
17680 =item C<pod_where( { %opts }, $pod )>
17681
17682 C<-inc =E<gt> 1>, C<-dirs =E<gt> [ $dir1, $dir2, ... ]>, C<-verbose =E<gt>
17683 1>
17684
17685 =back
17686
17687 =over 4
17688
17689 =item C<contains_pod( $file , $verbose )>
17690
17691 =back
17692
17693 =over 4
17694
17695 =item AUTHOR
17696
17697 =item SEE ALSO
17698
17699 =back
17700
17701 =head2 Pod::Html - module to convert pod files to HTML
17702
17703 =over 4
17704
17705 =item SYNOPSIS
17706
17707 =item DESCRIPTION
17708
17709 =item ARGUMENTS
17710
17711 backlink, cachedir, css, flush, header, help, htmldir, htmlroot, index,
17712 infile, libpods, netscape, outfile, podpath, podroot, quiet, recurse,
17713 title, verbose
17714
17715 =item EXAMPLE
17716
17717 =item ENVIRONMENT
17718
17719 =item AUTHOR
17720
17721 =item SEE ALSO
17722
17723 =item COPYRIGHT
17724
17725 =back
17726
17727 =head2 Pod::InputObjects - objects representing POD input paragraphs,
17728 commands, etc.
17729
17730 =over 4
17731
17732 =item SYNOPSIS
17733
17734 =item REQUIRES
17735
17736 =item EXPORTS
17737
17738 =item DESCRIPTION
17739
17740 package B<Pod::InputSource>, package B<Pod::Paragraph>, package
17741 B<Pod::InteriorSequence>, package B<Pod::ParseTree>
17742
17743 =back
17744
17745 =over 4
17746
17747 =item B<Pod::InputSource>
17748
17749 =back
17750
17751 =over 4
17752
17753 =item B<new()>
17754
17755 =back
17756
17757 =over 4
17758
17759 =item B<name()>
17760
17761 =back
17762
17763 =over 4
17764
17765 =item B<handle()>
17766
17767 =back
17768
17769 =over 4
17770
17771 =item B<was_cutting()>
17772
17773 =back
17774
17775 =over 4
17776
17777 =item B<Pod::Paragraph>
17778
17779 =back
17780
17781 =over 4
17782
17783 =item Pod::Paragraph-E<gt>B<new()>
17784
17785 =back
17786
17787 =over 4
17788
17789 =item $pod_para-E<gt>B<cmd_name()>
17790
17791 =back
17792
17793 =over 4
17794
17795 =item $pod_para-E<gt>B<text()>
17796
17797 =back
17798
17799 =over 4
17800
17801 =item $pod_para-E<gt>B<raw_text()>
17802
17803 =back
17804
17805 =over 4
17806
17807 =item $pod_para-E<gt>B<cmd_prefix()>
17808
17809 =back
17810
17811 =over 4
17812
17813 =item $pod_para-E<gt>B<cmd_separator()>
17814
17815 =back
17816
17817 =over 4
17818
17819 =item $pod_para-E<gt>B<parse_tree()>
17820
17821 =back
17822
17823 =over 4
17824
17825 =item $pod_para-E<gt>B<file_line()>
17826
17827 =back
17828
17829 =over 4
17830
17831 =item B<Pod::InteriorSequence>
17832
17833 =back
17834
17835 =over 4
17836
17837 =item Pod::InteriorSequence-E<gt>B<new()>
17838
17839 =back
17840
17841 =over 4
17842
17843 =item $pod_seq-E<gt>B<cmd_name()>
17844
17845 =back
17846
17847 =over 4
17848
17849 =item $pod_seq-E<gt>B<prepend()>
17850
17851 =back
17852
17853 =over 4
17854
17855 =item $pod_seq-E<gt>B<append()>
17856
17857 =back
17858
17859 =over 4
17860
17861 =item $pod_seq-E<gt>B<nested()>
17862
17863 =back
17864
17865 =over 4
17866
17867 =item $pod_seq-E<gt>B<raw_text()>
17868
17869 =back
17870
17871 =over 4
17872
17873 =item $pod_seq-E<gt>B<left_delimiter()>
17874
17875 =back
17876
17877 =over 4
17878
17879 =item $pod_seq-E<gt>B<right_delimiter()>
17880
17881 =back
17882
17883 =over 4
17884
17885 =item $pod_seq-E<gt>B<parse_tree()>
17886
17887 =back
17888
17889 =over 4
17890
17891 =item $pod_seq-E<gt>B<file_line()>
17892
17893 =back
17894
17895 =over 4
17896
17897 =item Pod::InteriorSequence::B<DESTROY()>
17898
17899 =back
17900
17901 =over 4
17902
17903 =item B<Pod::ParseTree>
17904
17905 =back
17906
17907 =over 4
17908
17909 =item Pod::ParseTree-E<gt>B<new()>
17910
17911 =back
17912
17913 =over 4
17914
17915 =item $ptree-E<gt>B<top()>
17916
17917 =back
17918
17919 =over 4
17920
17921 =item $ptree-E<gt>B<children()>
17922
17923 =back
17924
17925 =over 4
17926
17927 =item $ptree-E<gt>B<prepend()>
17928
17929 =back
17930
17931 =over 4
17932
17933 =item $ptree-E<gt>B<append()>
17934
17935 =back
17936
17937 =over 4
17938
17939 =item $ptree-E<gt>B<raw_text()>
17940
17941 =back
17942
17943 =over 4
17944
17945 =item Pod::ParseTree::B<DESTROY()>
17946
17947 =back
17948
17949 =over 4
17950
17951 =item SEE ALSO
17952
17953 =item AUTHOR
17954
17955 =back
17956
17957 =head2 Pod::LaTeX - Convert Pod data to formatted Latex
17958
17959 =over 4
17960
17961 =item SYNOPSIS
17962
17963 =item DESCRIPTION
17964
17965 =back
17966
17967 =over 4
17968
17969 =item OBJECT METHODS
17970
17971 C<initialize>
17972
17973 =back
17974
17975 =over 4
17976
17977 =item Data Accessors
17978
17979 B<AddPreamble>
17980
17981 =back
17982
17983 B<AddPostamble>
17984
17985 B<Head1Level>
17986
17987 B<Label>
17988
17989 B<LevelNoNum>
17990
17991 B<MakeIndex>
17992
17993 B<ReplaceNAMEwithSection>
17994
17995 B<StartWithNewPage>
17996
17997 B<TableOfContents>
17998
17999 B<UniqueLabels>
18000
18001 B<UserPreamble>
18002
18003 B<UserPostamble>
18004
18005 B<Lists>
18006
18007 =over 4
18008
18009 =item Subclassed methods
18010
18011 =back
18012
18013 B<begin_pod>
18014
18015 B<end_pod>
18016
18017 B<command>
18018
18019 B<verbatim>
18020
18021 B<textblock>
18022
18023 B<interior_sequence>
18024
18025 =over 4
18026
18027 =item List Methods
18028
18029 B<begin_list>
18030
18031 =back
18032
18033 B<end_list>
18034
18035 B<add_item>
18036
18037 =over 4
18038
18039 =item Methods for headings
18040
18041 B<head>
18042
18043 =back
18044
18045 =over 4
18046
18047 =item Internal methods
18048
18049 B<_output>
18050
18051 =back
18052
18053 B<_replace_special_chars>
18054
18055 B<_replace_special_chars_late>
18056
18057 B<_create_label>
18058
18059 B<_create_index>
18060
18061 B<_clean_latex_commands>
18062
18063 B<_split_delimited>
18064
18065 =over 4
18066
18067 =item NOTES
18068
18069 =item SEE ALSO
18070
18071 =item AUTHORS
18072
18073 =item COPYRIGHT
18074
18075 =item REVISION
18076
18077 =back
18078
18079 =head2 Pod::Man - Convert POD data to formatted *roff input
18080
18081 =over 4
18082
18083 =item SYNOPSIS
18084
18085 =item DESCRIPTION
18086
18087 center, date, fixed, fixedbold, fixeditalic, fixedbolditalic, name, quotes,
18088 release, section
18089
18090 =item DIAGNOSTICS
18091
18092 roff font should be 1 or 2 chars, not "%s", Invalid link %s, Invalid quote
18093 specification "%s", %s:%d: Unknown command paragraph "%s", %s:%d: Unknown
18094 escape EE<lt>%sE<gt>, %s:%d: Unknown formatting code %s, %s:%d: Unmatched
18095 =back
18096
18097 =item BUGS
18098
18099 =item CAVEATS
18100
18101 =item SEE ALSO
18102
18103 =item AUTHOR
18104
18105 =item COPYRIGHT AND LICENSE
18106
18107 =back
18108
18109 =head2 Pod::ParseLink - Parse an LE<lt>E<gt> formatting code in POD text
18110
18111 =over 4
18112
18113 =item SYNOPSIS
18114
18115 =item DESCRIPTION
18116
18117 =item SEE ALSO
18118
18119 =item AUTHOR
18120
18121 =item COPYRIGHT AND LICENSE
18122
18123 =back
18124
18125 =head2 Pod::ParseUtils - helpers for POD parsing and conversion
18126
18127 =over 4
18128
18129 =item SYNOPSIS
18130
18131 =item DESCRIPTION
18132
18133 =back
18134
18135 =over 4
18136
18137 =item Pod::List
18138
18139 Pod::List-E<gt>new()
18140
18141 =back
18142
18143 $list-E<gt>file()
18144
18145 $list-E<gt>start()
18146
18147 $list-E<gt>indent()
18148
18149 $list-E<gt>type()
18150
18151 $list-E<gt>rx()
18152
18153 $list-E<gt>item()
18154
18155 $list-E<gt>parent()
18156
18157 $list-E<gt>tag()
18158
18159 =over 4
18160
18161 =item Pod::Hyperlink
18162
18163 Pod::Hyperlink-E<gt>new()
18164
18165 =back
18166
18167 $link-E<gt>parse($string)
18168
18169 $link-E<gt>markup($string)
18170
18171 $link-E<gt>text()
18172
18173 $link-E<gt>warning()
18174
18175 $link-E<gt>file(), $link-E<gt>line()
18176
18177 $link-E<gt>page()
18178
18179 $link-E<gt>node()
18180
18181 $link-E<gt>alttext()
18182
18183 $link-E<gt>type()
18184
18185 $link-E<gt>link()
18186
18187 =over 4
18188
18189 =item Pod::Cache
18190
18191 Pod::Cache-E<gt>new()
18192
18193 =back
18194
18195 $cache-E<gt>item()
18196
18197 $cache-E<gt>find_page($name)
18198
18199 =over 4
18200
18201 =item Pod::Cache::Item
18202
18203 Pod::Cache::Item-E<gt>new()
18204
18205 =back
18206
18207 $cacheitem-E<gt>page()
18208
18209 $cacheitem-E<gt>description()
18210
18211 $cacheitem-E<gt>path()
18212
18213 $cacheitem-E<gt>file()
18214
18215 $cacheitem-E<gt>nodes()
18216
18217 $cacheitem-E<gt>find_node($name)
18218
18219 $cacheitem-E<gt>idx()
18220
18221 =over 4
18222
18223 =item AUTHOR
18224
18225 =item SEE ALSO
18226
18227 =back
18228
18229 =head2 Pod::Parser - base class for creating POD filters and translators
18230
18231 =over 4
18232
18233 =item SYNOPSIS
18234
18235 =item REQUIRES
18236
18237 =item EXPORTS
18238
18239 =item DESCRIPTION
18240
18241 =item QUICK OVERVIEW
18242
18243 =item PARSING OPTIONS
18244
18245 B<-want_nonPODs> (default: unset), B<-process_cut_cmd> (default: unset),
18246 B<-warnings> (default: unset)
18247
18248 =back
18249
18250 =over 4
18251
18252 =item RECOMMENDED SUBROUTINE/METHOD OVERRIDES
18253
18254 =back
18255
18256 =over 4
18257
18258 =item B<command()>
18259
18260 C<$cmd>, C<$text>, C<$line_num>, C<$pod_para>
18261
18262 =back
18263
18264 =over 4
18265
18266 =item B<verbatim()>
18267
18268 C<$text>, C<$line_num>, C<$pod_para>
18269
18270 =back
18271
18272 =over 4
18273
18274 =item B<textblock()>
18275
18276 C<$text>, C<$line_num>, C<$pod_para>
18277
18278 =back
18279
18280 =over 4
18281
18282 =item B<interior_sequence()>
18283
18284 =back
18285
18286 =over 4
18287
18288 =item OPTIONAL SUBROUTINE/METHOD OVERRIDES
18289
18290 =back
18291
18292 =over 4
18293
18294 =item B<new()>
18295
18296 =back
18297
18298 =over 4
18299
18300 =item B<initialize()>
18301
18302 =back
18303
18304 =over 4
18305
18306 =item B<begin_pod()>
18307
18308 =back
18309
18310 =over 4
18311
18312 =item B<begin_input()>
18313
18314 =back
18315
18316 =over 4
18317
18318 =item B<end_input()>
18319
18320 =back
18321
18322 =over 4
18323
18324 =item B<end_pod()>
18325
18326 =back
18327
18328 =over 4
18329
18330 =item B<preprocess_line()>
18331
18332 =back
18333
18334 =over 4
18335
18336 =item B<preprocess_paragraph()>
18337
18338 =back
18339
18340 =over 4
18341
18342 =item METHODS FOR PARSING AND PROCESSING
18343
18344 =back
18345
18346 =over 4
18347
18348 =item B<parse_text()>
18349
18350 B<-expand_seq> =E<gt> I<code-ref>|I<method-name>, B<-expand_text> =E<gt>
18351 I<code-ref>|I<method-name>, B<-expand_ptree> =E<gt>
18352 I<code-ref>|I<method-name>
18353
18354 =back
18355
18356 =over 4
18357
18358 =item B<interpolate()>
18359
18360 =back
18361
18362 =over 4
18363
18364 =item B<parse_paragraph()>
18365
18366 =back
18367
18368 =over 4
18369
18370 =item B<parse_from_filehandle()>
18371
18372 =back
18373
18374 =over 4
18375
18376 =item B<parse_from_file()>
18377
18378 =back
18379
18380 =over 4
18381
18382 =item ACCESSOR METHODS
18383
18384 =back
18385
18386 =over 4
18387
18388 =item B<errorsub()>
18389
18390 =back
18391
18392 =over 4
18393
18394 =item B<cutting()>
18395
18396 =back
18397
18398 =over 4
18399
18400 =item B<parseopts()>
18401
18402 =back
18403
18404 =over 4
18405
18406 =item B<output_file()>
18407
18408 =back
18409
18410 =over 4
18411
18412 =item B<output_handle()>
18413
18414 =back
18415
18416 =over 4
18417
18418 =item B<input_file()>
18419
18420 =back
18421
18422 =over 4
18423
18424 =item B<input_handle()>
18425
18426 =back
18427
18428 =over 4
18429
18430 =item B<input_streams()>
18431
18432 =back
18433
18434 =over 4
18435
18436 =item B<top_stream()>
18437
18438 =back
18439
18440 =over 4
18441
18442 =item PRIVATE METHODS AND DATA
18443
18444 =back
18445
18446 =over 4
18447
18448 =item B<_push_input_stream()>
18449
18450 =back
18451
18452 =over 4
18453
18454 =item B<_pop_input_stream()>
18455
18456 =back
18457
18458 =over 4
18459
18460 =item TREE-BASED PARSING
18461
18462 =item SEE ALSO
18463
18464 =item AUTHOR
18465
18466 =back
18467
18468 =head2 Pod::Perldoc::ToChecker - let Perldoc check Pod for errors
18469
18470 =over 4
18471
18472 =item SYNOPSIS
18473
18474 =item DESCRIPTION
18475
18476 =item SEE ALSO
18477
18478 =item COPYRIGHT AND DISCLAIMERS
18479
18480 =item AUTHOR
18481
18482 =back
18483
18484 =head2 Pod::Perldoc::ToMan - let Perldoc render Pod as man pages
18485
18486 =over 4
18487
18488 =item SYNOPSIS
18489
18490 =item DESCRIPTION
18491
18492 =item CAVEAT
18493
18494 =item SEE ALSO
18495
18496 =item COPYRIGHT AND DISCLAIMERS
18497
18498 =item AUTHOR
18499
18500 =back
18501
18502 =head2 Pod::Perldoc::ToNroff - let Perldoc convert Pod to nroff
18503
18504 =over 4
18505
18506 =item SYNOPSIS
18507
18508 =item DESCRIPTION
18509
18510 =item CAVEAT
18511
18512 =item SEE ALSO
18513
18514 =item COPYRIGHT AND DISCLAIMERS
18515
18516 =item AUTHOR
18517
18518 =back
18519
18520 =head2 Pod::Perldoc::ToPod - let Perldoc render Pod as ... Pod!
18521
18522 =over 4
18523
18524 =item SYNOPSIS
18525
18526 =item DESCRIPTION
18527
18528 =item SEE ALSO
18529
18530 =item COPYRIGHT AND DISCLAIMERS
18531
18532 =item AUTHOR
18533
18534 =back
18535
18536 =head2 Pod::Perldoc::ToRtf - let Perldoc render Pod as RTF
18537
18538 =over 4
18539
18540 =item SYNOPSIS
18541
18542 =item DESCRIPTION
18543
18544 =item SEE ALSO
18545
18546 =item COPYRIGHT AND DISCLAIMERS
18547
18548 =item AUTHOR
18549
18550 =back
18551
18552 =head2 Pod::Perldoc::ToText - let Perldoc render Pod as plaintext
18553
18554 =over 4
18555
18556 =item SYNOPSIS
18557
18558 =item DESCRIPTION
18559
18560 =item CAVEAT
18561
18562 =item SEE ALSO
18563
18564 =item COPYRIGHT AND DISCLAIMERS
18565
18566 =item AUTHOR
18567
18568 =back
18569
18570 =head2 Pod::Perldoc::ToTk - let Perldoc use Tk::Pod to render Pod
18571
18572 =over 4
18573
18574 =item SYNOPSIS
18575
18576 =item DESCRIPTION
18577
18578 =item SEE ALSO
18579
18580 =item AUTHOR
18581
18582 =back
18583
18584 =head2 Pod::Perldoc::ToXml - let Perldoc render Pod as XML
18585
18586 =over 4
18587
18588 =item SYNOPSIS
18589
18590 =item DESCRIPTION
18591
18592 =item SEE ALSO
18593
18594 =item COPYRIGHT AND DISCLAIMERS
18595
18596 =item AUTHOR
18597
18598 =back
18599
18600 =head2 Pod::PlainText - Convert POD data to formatted ASCII text
18601
18602 =over 4
18603
18604 =item SYNOPSIS
18605
18606 =item DESCRIPTION
18607
18608 alt, indent, loose, sentence, width
18609
18610 =item DIAGNOSTICS
18611
18612 Bizarre space in item, Can't open %s for reading: %s, Unknown escape: %s,
18613 Unknown sequence: %s, Unmatched =back
18614
18615 =item RESTRICTIONS
18616
18617 =item NOTES
18618
18619 =item SEE ALSO
18620
18621 =item AUTHOR
18622
18623 =back
18624
18625 =head2 Pod::Plainer - Perl extension for converting Pod to old style Pod.
18626
18627 =over 4
18628
18629 =item SYNOPSIS
18630
18631 =item DESCRIPTION
18632
18633 =over 4
18634
18635 =item EXPORT
18636
18637 =back
18638
18639 =item AUTHOR
18640
18641 =item SEE ALSO
18642
18643 =back
18644
18645 =head2 Pod::Select, podselect() - extract selected sections of POD from
18646 input
18647
18648 =over 4
18649
18650 =item SYNOPSIS
18651
18652 =item REQUIRES
18653
18654 =item EXPORTS
18655
18656 =item DESCRIPTION
18657
18658 =item SECTION SPECIFICATIONS
18659
18660 =item RANGE SPECIFICATIONS
18661
18662 =back
18663
18664 =over 4
18665
18666 =item OBJECT METHODS
18667
18668 =back
18669
18670 =over 4
18671
18672 =item B<curr_headings()>
18673
18674 =back
18675
18676 =over 4
18677
18678 =item B<select()>
18679
18680 =back
18681
18682 =over 4
18683
18684 =item B<add_selection()>
18685
18686 =back
18687
18688 =over 4
18689
18690 =item B<clear_selections()>
18691
18692 =back
18693
18694 =over 4
18695
18696 =item B<match_section()>
18697
18698 =back
18699
18700 =over 4
18701
18702 =item B<is_selected()>
18703
18704 =back
18705
18706 =over 4
18707
18708 =item EXPORTED FUNCTIONS
18709
18710 =back
18711
18712 =over 4
18713
18714 =item B<podselect()>
18715
18716 B<-output>, B<-sections>, B<-ranges>
18717
18718 =back
18719
18720 =over 4
18721
18722 =item PRIVATE METHODS AND DATA
18723
18724 =back
18725
18726 =over 4
18727
18728 =item B<_compile_section_spec()>
18729
18730 =back
18731
18732 =over 4
18733
18734 =item $self->{_SECTION_HEADINGS}
18735
18736 =back
18737
18738 =over 4
18739
18740 =item $self->{_SELECTED_SECTIONS}
18741
18742 =back
18743
18744 =over 4
18745
18746 =item SEE ALSO
18747
18748 =item AUTHOR
18749
18750 =back
18751
18752 =head2 Pod::Text - Convert POD data to formatted ASCII text
18753
18754 =over 4
18755
18756 =item SYNOPSIS
18757
18758 =item DESCRIPTION
18759
18760 alt, code, indent, loose, margin, quotes, sentence, width
18761
18762 =item DIAGNOSTICS
18763
18764 Bizarre space in item, Item called without tag, Can't open %s for reading:
18765 %s, Invalid quote specification "%s", %s:%d: Unknown command paragraph: %s,
18766 %s:%d: Unknown escape: %s, %s:%d: Unknown formatting code: %s, %s:%d:
18767 Unmatched =back
18768
18769 =item RESTRICTIONS
18770
18771 =item NOTES
18772
18773 =item SEE ALSO
18774
18775 =item AUTHOR
18776
18777 =item COPYRIGHT AND LICENSE
18778
18779 =back
18780
18781 =head2 Pod::Text::Color - Convert POD data to formatted color ASCII text
18782
18783 =over 4
18784
18785 =item SYNOPSIS
18786
18787 =item DESCRIPTION
18788
18789 =item BUGS
18790
18791 =item SEE ALSO
18792
18793 =item AUTHOR
18794
18795 =item COPYRIGHT AND LICENSE
18796
18797 =back
18798
18799 =head2 Pod::Text::Overstrike - Convert POD data to formatted overstrike
18800 text
18801
18802 =over 4
18803
18804 =item SYNOPSIS
18805
18806 =item DESCRIPTION
18807
18808 =item BUGS
18809
18810 =item SEE ALSO
18811
18812 =item AUTHOR
18813
18814 =item COPYRIGHT AND LICENSE
18815
18816 =back
18817
18818 =head2 Pod::Text::Termcap - Convert POD data to ASCII text with format
18819 escapes
18820
18821 =over 4
18822
18823 =item SYNOPSIS
18824
18825 =item DESCRIPTION
18826
18827 =item NOTES
18828
18829 =item SEE ALSO
18830
18831 =item AUTHOR
18832
18833 =item COPYRIGHT AND LICENSE
18834
18835 =back
18836
18837 =head2 Pod::Usage, pod2usage() - print a usage message from embedded pod
18838 documentation
18839
18840 =over 4
18841
18842 =item SYNOPSIS
18843
18844 =item ARGUMENTS
18845
18846 C<-message>, C<-msg>, C<-exitval>, C<-verbose>, C<-output>, C<-input>,
18847 C<-pathlist>
18848
18849 =item DESCRIPTION
18850
18851 =item EXAMPLES
18852
18853 =over 4
18854
18855 =item Recommended Use
18856
18857 =back
18858
18859 =item CAVEATS
18860
18861 =item AUTHOR
18862
18863 =item ACKNOWLEDGEMENTS
18864
18865 =back
18866
18867 =head2 SDBM_File - Tied access to sdbm files
18868
18869 =over 4
18870
18871 =item SYNOPSIS
18872
18873 =item DESCRIPTION
18874
18875 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
18876
18877 =item DIAGNOSTICS
18878
18879 =over 4
18880
18881 =item C<sdbm store returned -1, errno 22, key "..." at ...>
18882
18883 =back
18884
18885 =item BUGS AND WARNINGS
18886
18887 =back
18888
18889 =head2 Safe - Compile and execute code in restricted compartments
18890
18891 =over 4
18892
18893 =item SYNOPSIS
18894
18895 =item DESCRIPTION
18896
18897 a new namespace, an operator mask
18898
18899 =item WARNING
18900
18901 =over 4
18902
18903 =item RECENT CHANGES
18904
18905 =item Methods in class Safe
18906
18907 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
18908 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
18909 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
18910 root (NAMESPACE), mask (MASK)
18911
18912 =item Some Safety Issues
18913
18914 Memory, CPU, Snooping, Signals, State Changes
18915
18916 =item AUTHOR
18917
18918 =back
18919
18920 =back
18921
18922 =head2 Scalar::Util - A selection of general-utility scalar subroutines
18923
18924 =over 4
18925
18926 =item SYNOPSIS
18927
18928 =item DESCRIPTION
18929
18930 blessed EXPR, dualvar NUM, STRING, isvstring EXPR, isweak EXPR,
18931 looks_like_number EXPR, openhandle FH, refaddr EXPR, reftype EXPR,
18932 set_prototype CODEREF, PROTOTYPE, tainted EXPR, weaken REF
18933
18934 =item KNOWN BUGS
18935
18936 =item COPYRIGHT
18937
18938 =item BLATANT PLUG
18939
18940 =back
18941
18942 =head2 Search::Dict, look - search for key in dictionary file
18943
18944 =over 4
18945
18946 =item SYNOPSIS
18947
18948 =item DESCRIPTION
18949
18950 =back
18951
18952 =head2 SelectSaver - save and restore selected file handle
18953
18954 =over 4
18955
18956 =item SYNOPSIS
18957
18958 =item DESCRIPTION
18959
18960 =back
18961
18962 =head2 SelfLoader - load functions only on demand
18963
18964 =over 4
18965
18966 =item SYNOPSIS
18967
18968 =item DESCRIPTION
18969
18970 =over 4
18971
18972 =item The __DATA__ token
18973
18974 =item SelfLoader autoloading
18975
18976 =item Autoloading and package lexicals
18977
18978 =item SelfLoader and AutoLoader
18979
18980 =item __DATA__, __END__, and the FOOBAR::DATA filehandle.
18981
18982 =item Classes and inherited methods.
18983
18984 =back
18985
18986 =item Multiple packages and fully qualified subroutine names
18987
18988 =back
18989
18990 =head2 Shell - run shell commands transparently within perl
18991
18992 =over 4
18993
18994 =item SYNOPSIS
18995
18996 =item DESCRIPTION
18997
18998 =over 4
18999
19000 =item OBJECT ORIENTED SYNTAX
19001
19002 =back
19003
19004 =item AUTHOR
19005
19006 =back
19007
19008 =head2 Socket, sockaddr_in, sockaddr_un, inet_aton, inet_ntoa - load the C
19009 socket.h defines and structure manipulators 
19010
19011 =over 4
19012
19013 =item SYNOPSIS
19014
19015 =item DESCRIPTION
19016
19017 inet_aton HOSTNAME, inet_ntoa IP_ADDRESS, INADDR_ANY, INADDR_BROADCAST,
19018 INADDR_LOOPBACK, INADDR_NONE, sockaddr_family SOCKADDR, sockaddr_in PORT,
19019 ADDRESS, sockaddr_in SOCKADDR_IN, pack_sockaddr_in PORT, IP_ADDRESS,
19020 unpack_sockaddr_in SOCKADDR_IN, sockaddr_un PATHNAME, sockaddr_un
19021 SOCKADDR_UN, pack_sockaddr_un PATH, unpack_sockaddr_un SOCKADDR_UN
19022
19023 =back
19024
19025 =head2 Storable - persistence for Perl data structures
19026
19027 =over 4
19028
19029 =item SYNOPSIS
19030
19031 =item DESCRIPTION
19032
19033 =item MEMORY STORE
19034
19035 =item ADVISORY LOCKING
19036
19037 =item SPEED
19038
19039 =item CANONICAL REPRESENTATION
19040
19041 =item CODE REFERENCES
19042
19043 =item FORWARD COMPATIBILITY
19044
19045 utf8 data, restricted hashes, files from future versions of Storable
19046
19047 =item ERROR REPORTING
19048
19049 =item WIZARDS ONLY
19050
19051 =over 4
19052
19053 =item Hooks
19054
19055 C<STORABLE_freeze> I<obj>, I<cloning>, C<STORABLE_thaw> I<obj>, I<cloning>,
19056 I<serialized>, ..
19057
19058 =item Predicates
19059
19060 C<Storable::last_op_in_netorder>, C<Storable::is_storing>,
19061 C<Storable::is_retrieving>
19062
19063 =item Recursion
19064
19065 =item Deep Cloning
19066
19067 =back
19068
19069 =item Storable magic
19070
19071 =item EXAMPLES
19072
19073 =item WARNING
19074
19075 =item BUGS
19076
19077 =over 4
19078
19079 =item 64 bit data in perl 5.6.0 and 5.6.1
19080
19081 =back
19082
19083 =item CREDITS
19084
19085 =item AUTHOR
19086
19087 =item SEE ALSO
19088
19089 =back
19090
19091 =head2 Switch - A switch statement for Perl
19092
19093 =over 4
19094
19095 =item VERSION
19096
19097 =item SYNOPSIS
19098
19099 =item BACKGROUND
19100
19101 =item DESCRIPTION
19102
19103 =over 4
19104
19105 =item Allowing fall-through
19106
19107 =item Automating fall-through
19108
19109 =item Alternative syntax
19110
19111 =item Higher-order Operations
19112
19113 =back
19114
19115 =item DEPENDENCIES
19116
19117 =item AUTHOR
19118
19119 =item BUGS
19120
19121 =item LIMITATION
19122
19123 =item COPYRIGHT
19124
19125 =back
19126
19127 =head2 Symbol - manipulate Perl symbols and their names
19128
19129 =over 4
19130
19131 =item SYNOPSIS
19132
19133 =item DESCRIPTION
19134
19135 =item BUGS
19136
19137 =back
19138
19139 =head2 Sys::Hostname - Try every conceivable way to get hostname
19140
19141 =over 4
19142
19143 =item SYNOPSIS
19144
19145 =item DESCRIPTION
19146
19147 =item AUTHOR
19148
19149 =back
19150
19151 =head2 Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl
19152 interface to the UNIX syslog(3) calls
19153
19154 =over 4
19155
19156 =item SYNOPSIS
19157
19158 =item DESCRIPTION
19159
19160 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
19161 setlogmask $mask_priority, setlogsock $sock_type [$stream_location] (added
19162 in 5.004_02), closelog
19163
19164 =item EXAMPLES
19165
19166 =item SEE ALSO
19167
19168 =item AUTHOR
19169
19170 =back
19171
19172 =head2 Syslog::Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog -
19173 Perl interface to the UNIX syslog(3) calls
19174
19175 =over 4
19176
19177 =item SYNOPSIS
19178
19179 =item DESCRIPTION
19180
19181 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
19182 setlogmask $mask_priority, setlogsock $sock_type [$stream_location] (added
19183 in 5.004_02), closelog
19184
19185 =item EXAMPLES
19186
19187 =item SEE ALSO
19188
19189 =item AUTHOR
19190
19191 =back
19192
19193 =head2 Term::ANSIColor - Color screen output using ANSI escape sequences
19194
19195 =over 4
19196
19197 =item SYNOPSIS
19198
19199 =item DESCRIPTION
19200
19201 =item DIAGNOSTICS
19202
19203 Bad escape sequence %s, Bareword "%s" not allowed while "strict subs" in
19204 use, Invalid attribute name %s, Name "%s" used only once: possible typo, No
19205 comma allowed after filehandle, No name for escape sequence %s
19206
19207 =item ENVIRONMENT
19208
19209 ANSI_COLORS_DISABLED
19210
19211 =item RESTRICTIONS
19212
19213 =item NOTES
19214
19215 =item SEE ALSO
19216
19217 =item AUTHORS
19218
19219 =item COPYRIGHT AND LICENSE
19220
19221 =back
19222
19223 =head2 Term::Cap - Perl termcap interface
19224
19225 =over 4
19226
19227 =item SYNOPSIS
19228
19229 =item DESCRIPTION
19230
19231 =over 4
19232
19233 =item METHODS
19234
19235 =back
19236
19237 =back
19238
19239 B<Tgetent>, OSPEED, TERM
19240
19241 B<Tpad>, B<$string>, B<$cnt>, B<$FH>
19242
19243 B<Tputs>, B<$cap>, B<$cnt>, B<$FH>
19244
19245 B<Tgoto>, B<$cap>, B<$col>, B<$row>, B<$FH>
19246
19247 B<Trequire>
19248
19249 =over 4
19250
19251 =item EXAMPLES
19252
19253 =item COPYRIGHT AND LICENSE
19254
19255 =item AUTHOR
19256
19257 =item SEE ALSO
19258
19259 =back
19260
19261 =head2 Term::Complete - Perl word completion module
19262
19263 =over 4
19264
19265 =item SYNOPSIS
19266
19267 =item DESCRIPTION
19268
19269 E<lt>tabE<gt>, ^D, ^U, E<lt>delE<gt>, E<lt>bsE<gt>
19270
19271 =item DIAGNOSTICS
19272
19273 =item BUGS
19274
19275 =item AUTHOR
19276
19277 =back
19278
19279 =head2 Term::ReadLine - Perl interface to various C<readline> packages.
19280 If no real package is found, substitutes stubs instead of basic functions.
19281
19282 =over 4
19283
19284 =item SYNOPSIS
19285
19286 =item DESCRIPTION
19287
19288 =item Minimal set of supported functions
19289
19290 C<ReadLine>, C<new>, C<readline>, C<addhistory>, C<IN>, C<OUT>, C<MinLine>,
19291 C<findConsole>, Attribs, C<Features>
19292
19293 =item Additional supported functions
19294
19295 C<tkRunning>, C<ornaments>, C<newTTY>
19296
19297 =item EXPORTS
19298
19299 =item ENVIRONMENT
19300
19301 =item CAVEATS
19302
19303 =back
19304
19305 =head2 Test - provides a simple framework for writing test scripts
19306
19307 =over 4
19308
19309 =item SYNOPSIS
19310
19311 =item DESCRIPTION
19312
19313 =item QUICK START GUIDE
19314
19315 =over 4
19316
19317 =item Functions
19318
19319 C<plan(...)>, C<tests =E<gt> I<number>>, C<todo =E<gt> [I<1,5,14>]>,
19320 C<onfail =E<gt> sub { ... }>, C<onfail =E<gt> \&some_sub>
19321
19322 =back
19323
19324 =back
19325
19326 B<_to_value>
19327
19328 C<ok(...)>
19329
19330 C<skip(I<skip_if_true>, I<args...>)>
19331
19332 =over 4
19333
19334 =item TEST TYPES
19335
19336 NORMAL TESTS, SKIPPED TESTS, TODO TESTS
19337
19338 =item ONFAIL
19339
19340 =item BUGS and CAVEATS
19341
19342 =item NOTE
19343
19344 =item SEE ALSO
19345
19346 =item AUTHOR
19347
19348 =back
19349
19350 =head2 Test::Builder - Backend for building test libraries
19351
19352 =over 4
19353
19354 =item SYNOPSIS
19355
19356 =item DESCRIPTION
19357
19358 =over 4
19359
19360 =item Construction
19361
19362 B<new>
19363
19364 =back
19365
19366 =back
19367
19368 =over 4
19369
19370 =item Setting up tests
19371
19372 B<exported_to>
19373
19374 =back
19375
19376 B<plan>
19377
19378 B<expected_tests>
19379
19380 B<no_plan>
19381
19382 B<has_plan>
19383
19384 B<skip_all>
19385
19386 =over 4
19387
19388 =item Running tests
19389
19390 B<ok>
19391
19392 =back
19393
19394 B<is_eq>, B<is_num>
19395
19396 B<isnt_eq>, B<isnt_num>
19397
19398 B<like>, B<unlike>
19399
19400 B<maybe_regex>
19401
19402 B<cmp_ok>
19403
19404 B<BAILOUT>
19405
19406 B<skip>
19407
19408 B<todo_skip>
19409
19410 B<skip_rest>
19411
19412 =over 4
19413
19414 =item Test style
19415
19416 B<level>
19417
19418 =back
19419
19420 B<use_numbers>
19421
19422 B<no_header>, B<no_ending>
19423
19424 =over 4
19425
19426 =item Output
19427
19428 B<diag>
19429
19430 =back
19431
19432 B<_print>
19433
19434 B<output>, B<failure_output>, B<todo_output>
19435
19436 =over 4
19437
19438 =item Test Status and Info
19439
19440 B<current_test>
19441
19442 =back
19443
19444 B<summary>
19445
19446 B<details>
19447
19448 B<todo>
19449
19450 B<caller>
19451
19452 B<_sanity_check>
19453
19454 B<_whoa>
19455
19456 B<_my_exit>
19457
19458 =over 4
19459
19460 =item THREADS
19461
19462 =item EXAMPLES
19463
19464 =item SEE ALSO
19465
19466 =item AUTHORS
19467
19468 =item COPYRIGHT
19469
19470 =back
19471
19472 =head2 Test::Harness - run perl standard test scripts with statistics
19473
19474 =over 4
19475
19476 =item SYNOPSIS
19477
19478 =item DESCRIPTION
19479
19480 =over 4
19481
19482 =item The test script output
19483
19484 B<'1..M'>, B<'ok', 'not ok'.  Ok?>, B<test numbers>, B<test names>,
19485 B<Skipping tests>, B<Todo tests>, B<Bail out!>, B<Comments>, B<Anything
19486 else>
19487
19488 =item Taint mode
19489
19490 =item Configuration variables.
19491
19492 B<$Test::Harness::verbose>, B<$Test::Harness::switches>
19493
19494 =item Failure
19495
19496 B<Failed Test>, B<Stat>, B<Wstat>, B<Total>, B<Fail>, B<Failed>, B<List of
19497 Failed>
19498
19499 =item Functions
19500
19501 B<runtests>
19502
19503 =back
19504
19505 =back
19506
19507 B<_all_ok>
19508
19509 B<_globdir>
19510
19511 B<_run_all_tests>
19512
19513 B<_mk_leader>
19514
19515 B<_leader_width>
19516
19517 =over 4
19518
19519 =item EXPORT
19520
19521 =item DIAGNOSTICS
19522
19523 C<All tests successful.\nFiles=%d,  Tests=%d, %s>, C<FAILED tests
19524 %s\n\tFailed %d/%d tests, %.2f%% okay.>, C<Test returned status %d (wstat
19525 %d)>, C<Failed 1 test, %.2f%% okay. %s>, C<Failed %d/%d tests, %.2f%% okay.
19526 %s>, C<FAILED--Further testing stopped: %s>
19527
19528 =item ENVIRONMENT
19529
19530 C<HARNESS_ACTIVE>, C<HARNESS_COLUMNS>, C<HARNESS_COMPILE_TEST>,
19531 C<HARNESS_FILELEAK_IN_DIR>, C<HARNESS_IGNORE_EXITCODE>, C<HARNESS_NOTTY>,
19532 C<HARNESS_OK_SLOW>, C<HARNESS_PERL_SWITCHES>, C<HARNESS_VERBOSE>
19533
19534 =item EXAMPLE
19535
19536 =item SEE ALSO
19537
19538 =item AUTHORS
19539
19540 =item LICENSE
19541
19542 =item TODO
19543
19544 =item BUGS
19545
19546 =back
19547
19548 =head2 Test::Harness::Assert - simple assert
19549
19550 =over 4
19551
19552 =item SYNOPSIS
19553
19554 =item DESCRIPTION
19555
19556 =over 4
19557
19558 =item Functions
19559
19560 B<assert>
19561
19562 =back
19563
19564 =back
19565
19566 =over 4
19567
19568 =item AUTHOR
19569
19570 =item SEE ALSO
19571
19572 =back
19573
19574 =head2 Test::Harness::Iterator - Internal Test::Harness Iterator
19575
19576 =over 4
19577
19578 =item SYNOPSIS
19579
19580 =item DESCRIPTION
19581
19582 =back
19583
19584 =head2 Test::Harness::Straps - detailed analysis of test results
19585
19586 =over 4
19587
19588 =item SYNOPSIS
19589
19590 =item DESCRIPTION
19591
19592 =item Construction
19593
19594 =over 4
19595
19596 =item C<new>
19597
19598 =back
19599
19600 =back
19601
19602 =over 4
19603
19604 =item C<_init>
19605
19606 =back
19607
19608 =over 4
19609
19610 =item Analysis
19611
19612 =over 4
19613
19614 =item C<analyze>
19615
19616 =back
19617
19618 =back
19619
19620 =over 4
19621
19622 =item C<analyze_fh>
19623
19624 =back
19625
19626 =over 4
19627
19628 =item C<analyze_file>
19629
19630 =back
19631
19632 =over 4
19633
19634 =item C<_switches>
19635
19636 =back
19637
19638 =over 4
19639
19640 =item C<_INC2PERL5LIB>
19641
19642 =back
19643
19644 =over 4
19645
19646 =item C<_filtered_INC>
19647
19648 =back
19649
19650 =over 4
19651
19652 =item C<_restore_PERL5LIB>
19653
19654 =back
19655
19656 =over 4
19657
19658 =item Parsing
19659
19660 =over 4
19661
19662 =item C<_is_comment>
19663
19664 =back
19665
19666 =back
19667
19668 =over 4
19669
19670 =item C<_is_header>
19671
19672 =back
19673
19674 =over 4
19675
19676 =item C<_is_test>
19677
19678 =back
19679
19680 =over 4
19681
19682 =item C<_is_bail_out>
19683
19684 =back
19685
19686 =over 4
19687
19688 =item C<_reset_file_state>
19689
19690 =back
19691
19692 =over 4
19693
19694 =item Results
19695
19696 =over 4
19697
19698 =item C<_detailize>
19699
19700 =back
19701
19702 =back
19703
19704 =over 4
19705
19706 =item EXAMPLES
19707
19708 =item AUTHOR
19709
19710 =item SEE ALSO
19711
19712 =back
19713
19714 =head2 Test::More - yet another framework for writing test scripts
19715
19716 =over 4
19717
19718 =item SYNOPSIS
19719
19720 =item DESCRIPTION
19721
19722 =over 4
19723
19724 =item I love it when a plan comes together
19725
19726 =back
19727
19728 =back
19729
19730 =over 4
19731
19732 =item Test names
19733
19734 =item I'm ok, you're not ok.
19735
19736 B<ok>
19737
19738 =back
19739
19740 B<is>, B<isnt>
19741
19742 B<like>
19743
19744 B<unlike>
19745
19746 B<cmp_ok>
19747
19748 B<can_ok>
19749
19750 B<isa_ok>
19751
19752 B<pass>, B<fail>
19753
19754 =over 4
19755
19756 =item Diagnostics
19757
19758 B<diag>
19759
19760 =back
19761
19762 =over 4
19763
19764 =item Module tests
19765
19766 B<use_ok>
19767
19768 =back
19769
19770 B<require_ok>
19771
19772 =over 4
19773
19774 =item Conditional tests
19775
19776 B<SKIP: BLOCK>
19777
19778 =back
19779
19780 B<TODO: BLOCK>, B<todo_skip>
19781
19782 When do I use SKIP vs. TODO?
19783
19784 =over 4
19785
19786 =item Comparison functions
19787
19788 B<is_deeply>
19789
19790 =back
19791
19792 B<eq_array>
19793
19794 B<eq_hash>
19795
19796 B<eq_set>
19797
19798 =over 4
19799
19800 =item Extending and Embedding Test::More
19801
19802 B<builder>
19803
19804 =back
19805
19806 =over 4
19807
19808 =item NOTES
19809
19810 =item BUGS and CAVEATS
19811
19812 Making your own ok(), The eq_* family has some caveats, Test::Harness
19813 upgrades
19814
19815 =item HISTORY
19816
19817 =item SEE ALSO
19818
19819 =item AUTHORS
19820
19821 =item COPYRIGHT
19822
19823 =back
19824
19825 =head2 Test::Simple - Basic utilities for writing tests.
19826
19827 =over 4
19828
19829 =item SYNOPSIS
19830
19831 =item DESCRIPTION
19832
19833 B<ok>
19834
19835 =back
19836
19837 =over 4
19838
19839 =item EXAMPLE
19840
19841 =item CAVEATS
19842
19843 =item NOTES
19844
19845 =item HISTORY
19846
19847 =item SEE ALSO
19848
19849 L<Test::More>, L<Test>, L<Test::Unit>, L<Test::Inline>, L<SelfTest>,
19850 L<Test::Harness>
19851
19852 =item AUTHORS
19853
19854 =item COPYRIGHT
19855
19856 =back
19857
19858 =head2 Test::Tutorial - A tutorial about writing really basic tests
19859
19860 =over 4
19861
19862 =item DESCRIPTION
19863
19864 =over 4
19865
19866 =item Nuts and bolts of testing.
19867
19868 =item Where to start?
19869
19870 =item Names
19871
19872 =item Test the manual
19873
19874 =item Sometimes the tests are wrong
19875
19876 =item Testing lots of values
19877
19878 =item Informative names
19879
19880 =item Skipping tests
19881
19882 =item Todo tests
19883
19884 =item Testing with taint mode.
19885
19886 =back
19887
19888 =item FOOTNOTES
19889
19890 =item AUTHORS
19891
19892 =item COPYRIGHT
19893
19894 =back
19895
19896 =head2 Text::Abbrev, abbrev - create an abbreviation table from a list
19897
19898 =over 4
19899
19900 =item SYNOPSIS
19901
19902 =item DESCRIPTION
19903
19904 =item EXAMPLE
19905
19906 =back
19907
19908 =head2 Text::Balanced - Extract delimited text sequences from strings.
19909
19910 =over 4
19911
19912 =item SYNOPSIS
19913
19914 =item DESCRIPTION
19915
19916 =over 4
19917
19918 =item General behaviour in list contexts
19919
19920 [0], [1], [2]
19921
19922 =item General behaviour in scalar and void contexts
19923
19924 =item A note about prefixes
19925
19926 =item C<extract_delimited>
19927
19928 =item C<extract_bracketed>
19929
19930 =item C<extract_variable>
19931
19932 [0], [1], [2]
19933
19934 =item C<extract_tagged>
19935
19936 C<reject =E<gt> $listref>, C<ignore =E<gt> $listref>, C<fail =E<gt> $str>,
19937 [0], [1], [2], [3], [4], [5]
19938
19939 =item C<gen_extract_tagged>
19940
19941 =item C<extract_quotelike>
19942
19943 [0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10]
19944
19945 =item C<extract_quotelike> and "here documents"
19946
19947 [0], [1], [2], [3], [4], [5], [6], [7..10]
19948
19949 =item C<extract_codeblock>
19950
19951 =item C<extract_multiple>
19952
19953 =item C<gen_delimited_pat>
19954
19955 =back
19956
19957 =item DIAGNOSTICS
19958
19959  C<Did not find a suitable bracket: "%s">,  C<Did not find prefix: /%s/>, 
19960 C<Did not find opening bracket after prefix: "%s">,  C<No quotelike
19961 operator found after prefix: "%s">,  C<Unmatched closing bracket: "%c">, 
19962 C<Unmatched opening bracket(s): "%s">, C<Unmatched embedded quote (%s)>,
19963 C<Did not find closing delimiter to match '%s'>,  C<Mismatched closing
19964 bracket: expected "%c" but found "%s">,  C<No block delimiter found after
19965 quotelike "%s">, C<Did not find leading dereferencer>, C<Bad identifier
19966 after dereferencer>, C<Did not find expected opening bracket at %s>,
19967 C<Improperly nested codeblock at %s>,  C<Missing second block for quotelike
19968 "%s">, C<No match found for opening bracket>, C<Did not find opening tag:
19969 /%s/>, C<Unable to construct closing tag to match: /%s/>, C<Found invalid
19970 nested tag: %s>, C<Found unbalanced nested tag: %s>, C<Did not find closing
19971 tag>
19972
19973 =item AUTHOR
19974
19975 =item BUGS AND IRRITATIONS
19976
19977 =item COPYRIGHT
19978
19979 =back
19980
19981 =head2 Text::ParseWords - parse text into an array of tokens or array of
19982 arrays
19983
19984 =over 4
19985
19986 =item SYNOPSIS
19987
19988 =item DESCRIPTION
19989
19990 =item EXAMPLES
19991
19992 =item AUTHORS
19993
19994 =back
19995
19996 =head2 Text::Soundex - Implementation of the Soundex Algorithm as Described
19997 by Knuth
19998
19999 =over 4
20000
20001 =item SYNOPSIS
20002
20003 =item DESCRIPTION
20004
20005 =item EXAMPLES
20006
20007 =item LIMITATIONS
20008
20009 =item AUTHOR
20010
20011 =back
20012
20013 =head2 Text::Tabs -- expand and unexpand tabs per the unix expand(1) and
20014 unexpand(1)
20015
20016 =over 4
20017
20018 =item SYNOPSIS
20019
20020 =item DESCRIPTION
20021
20022 =item BUGS
20023
20024 =item AUTHOR
20025
20026 =back
20027
20028 =head2 Text::Wrap - line wrapping to form simple paragraphs
20029
20030 =over 4
20031
20032 =item SYNOPSIS 
20033
20034 =item DESCRIPTION
20035
20036 =item OVERRIDES
20037
20038 =item EXAMPLE
20039
20040 =item AUTHOR
20041
20042 =back
20043
20044 =head2 Thread - manipulate threads in Perl (for old code only)
20045
20046 =over 4
20047
20048 =item CAVEAT
20049
20050 =item SYNOPSIS
20051
20052 =item DESCRIPTION
20053
20054 =item FUNCTIONS
20055
20056 $thread = Thread->new(\&start_sub), $thread = Thread->new(\&start_sub,
20057 LIST), lock VARIABLE, async BLOCK;, Thread->self, cond_wait VARIABLE,
20058 cond_signal VARIABLE, cond_broadcast VARIABLE, yield
20059
20060 =item METHODS
20061
20062 join, eval, detach, equal, tid, flags, done
20063
20064 =item LIMITATIONS
20065
20066 =item SEE ALSO
20067
20068 =back
20069
20070 =head2 Thread::Queue - thread-safe queues
20071
20072 =over 4
20073
20074 =item SYNOPSIS
20075
20076 =item DESCRIPTION
20077
20078 =item FUNCTIONS AND METHODS
20079
20080 new, enqueue LIST, dequeue, dequeue_nb, pending
20081
20082 =item SEE ALSO
20083
20084 =back
20085
20086 =head2 Thread::Semaphore - thread-safe semaphores
20087
20088 =over 4
20089
20090 =item SYNOPSIS
20091
20092 =item DESCRIPTION
20093
20094 =item FUNCTIONS AND METHODS
20095
20096 new, new NUMBER, down, down NUMBER, up, up NUMBER
20097
20098 =back
20099
20100 =head2 Thread::Signal - Start a thread which runs signal handlers reliably
20101 (for old code)
20102
20103 =over 4
20104
20105 =item CAVEAT
20106
20107 =item SYNOPSIS
20108
20109 =item DESCRIPTION
20110
20111 =item BUGS
20112
20113 =back
20114
20115 =head2 Thread::Specific - thread-specific keys
20116
20117 =over 4
20118
20119 =item SYNOPSIS
20120
20121 =item DESCRIPTION
20122
20123 =back
20124
20125 =head2 Tie::Array - base class for tied arrays
20126
20127 =over 4
20128
20129 =item SYNOPSIS
20130
20131 =item DESCRIPTION
20132
20133 TIEARRAY classname, LIST, STORE this, index, value, FETCH this, index,
20134 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
20135 key, DELETE this, key, CLEAR this, DESTROY this, PUSH this, LIST, POP this,
20136 SHIFT this, UNSHIFT this, LIST, SPLICE this, offset, length, LIST
20137
20138 =item CAVEATS
20139
20140 =item AUTHOR
20141
20142 =back
20143
20144 =head2 Tie::File - Access the lines of a disk file via a Perl array
20145
20146 =over 4
20147
20148 =item SYNOPSIS
20149
20150 =item DESCRIPTION
20151
20152 =over 4
20153
20154 =item C<recsep>
20155
20156 =item C<autochomp>
20157
20158 =item C<mode>
20159
20160 =item C<memory>
20161
20162 =item C<dw_size>
20163
20164 =item Option Format
20165
20166 =back
20167
20168 =item Public Methods
20169
20170 =over 4
20171
20172 =item C<flock>
20173
20174 =item C<autochomp>
20175
20176 =item C<defer>, C<flush>, C<discard>, and C<autodefer>
20177
20178 =item C<offset>
20179
20180 =back
20181
20182 =item Tying to an already-opened filehandle
20183
20184 =item Deferred Writing
20185
20186 =over 4
20187
20188 =item Autodeferring
20189
20190 =back
20191
20192 =item CONCURRENT ACCESS TO FILES
20193
20194 =item CAVEATS
20195
20196 =item SUBCLASSING
20197
20198 =item WHAT ABOUT C<DB_File>?
20199
20200 =item AUTHOR
20201
20202 =item LICENSE
20203
20204 =item WARRANTY
20205
20206 =item THANKS
20207
20208 =item TODO
20209
20210 =back
20211
20212 =head2 Tie::Handle, Tie::StdHandle  - base class definitions for tied
20213 handles
20214
20215 =over 4
20216
20217 =item SYNOPSIS
20218
20219 =item DESCRIPTION
20220
20221 TIEHANDLE classname, LIST, WRITE this, scalar, length, offset, PRINT this,
20222 LIST, PRINTF this, format, LIST, READ this, scalar, length, offset,
20223 READLINE this, GETC this, CLOSE this, OPEN this, filename, BINMODE this,
20224 EOF this, TELL this, SEEK this, offset, whence, DESTROY this
20225
20226 =item MORE INFORMATION
20227
20228 =item COMPATIBILITY
20229
20230 =back
20231
20232 =head2 Tie::Hash, Tie::StdHash, Tie::ExtraHash - base class definitions for
20233 tied hashes
20234
20235 =over 4
20236
20237 =item SYNOPSIS
20238
20239 =item DESCRIPTION
20240
20241 TIEHASH classname, LIST, STORE this, key, value, FETCH this, key, FIRSTKEY
20242 this, NEXTKEY this, lastkey, EXISTS this, key, DELETE this, key, CLEAR this
20243
20244 =item Inheriting from B<Tie::StdHash>
20245
20246 =item Inheriting from B<Tie::ExtraHash>
20247
20248 =item C<UNTIE> and C<DESTROY>
20249
20250 =item MORE INFORMATION
20251
20252 =back
20253
20254 =head2 Tie::Memoize - add data to hash when needed
20255
20256 =over 4
20257
20258 =item SYNOPSIS
20259
20260 =item DESCRIPTION
20261
20262 =item Inheriting from B<Tie::Memoize>
20263
20264 =item EXAMPLE
20265
20266 =item BUGS
20267
20268 =item AUTHOR
20269
20270 =back
20271
20272 =head2 Tie::RefHash - use references as hash keys
20273
20274 =over 4
20275
20276 =item SYNOPSIS
20277
20278 =item DESCRIPTION
20279
20280 =item EXAMPLE
20281
20282 =item AUTHOR
20283
20284 =item VERSION
20285
20286 =item SEE ALSO
20287
20288 =back
20289
20290 =head2 Tie::Scalar, Tie::StdScalar - base class definitions for tied
20291 scalars
20292
20293 =over 4
20294
20295 =item SYNOPSIS
20296
20297 =item DESCRIPTION
20298
20299 TIESCALAR classname, LIST, FETCH this, STORE this, value, DESTROY this
20300
20301 =item MORE INFORMATION
20302
20303 =back
20304
20305 =head2 Tie::SubstrHash - Fixed-table-size, fixed-key-length hashing
20306
20307 =over 4
20308
20309 =item SYNOPSIS
20310
20311 =item DESCRIPTION
20312
20313 =item CAVEATS
20314
20315 =back
20316
20317 =head2 Time::HiRes - High resolution alarm, sleep, gettimeofday, interval
20318 timers
20319
20320 =over 4
20321
20322 =item SYNOPSIS
20323
20324 =item DESCRIPTION
20325
20326 gettimeofday (), usleep ( $useconds ), ualarm ( $useconds [,
20327 $interval_useconds ] ), tv_interval, time (), sleep ( $floating_seconds ),
20328 alarm ( $floating_seconds [, $interval_floating_seconds ] ), setitimer (
20329 $which, $floating_seconds [, $interval_floating_seconds ] ), getitimer (
20330 $which )
20331
20332 =item EXAMPLES
20333
20334 =item C API
20335
20336 =item DIAGNOSTICS
20337
20338 =over 4
20339
20340 =item negative time not invented yet
20341
20342 =item internal error: useconds < 0 (unsigned ... signed ...)
20343
20344 =back
20345
20346 =item CAVEATS
20347
20348 =item AUTHORS
20349
20350 =item COPYRIGHT AND LICENSE
20351
20352 =back
20353
20354 =head2 Time::Local - efficiently compute time from local and GMT time
20355
20356 =over 4
20357
20358 =item SYNOPSIS
20359
20360 =item DESCRIPTION
20361
20362 =item IMPLEMENTATION
20363
20364 =item BUGS
20365
20366 =item SUPPORT
20367
20368 =item AUTHOR
20369
20370 =back
20371
20372 =head2 Time::gmtime - by-name interface to Perl's built-in gmtime()
20373 function
20374
20375 =over 4
20376
20377 =item SYNOPSIS
20378
20379 =item DESCRIPTION
20380
20381 =item NOTE
20382
20383 =item AUTHOR
20384
20385 =back
20386
20387 =head2 Time::localtime - by-name interface to Perl's built-in localtime()
20388 function
20389
20390 =over 4
20391
20392 =item SYNOPSIS
20393
20394 =item DESCRIPTION
20395
20396 =item NOTE
20397
20398 =item AUTHOR
20399
20400 =back
20401
20402 =head2 Time::tm - internal object used by Time::gmtime and Time::localtime
20403
20404 =over 4
20405
20406 =item SYNOPSIS
20407
20408 =item DESCRIPTION
20409
20410 =item AUTHOR
20411
20412 =back
20413
20414 =head2 UNIVERSAL - base class for ALL classes (blessed references)
20415
20416 =over 4
20417
20418 =item SYNOPSIS
20419
20420 =item DESCRIPTION
20421
20422 C<< $obj->isa( TYPE ) >>, C<< CLASS->isa( TYPE ) >>, C<isa( VAL, TYPE )>,
20423 C<TYPE>, C<$obj>, C<CLASS>, C<VAL>, C<< $obj->can( METHOD ) >>, C<<
20424 CLASS->can( METHOD ) >>, C<can( VAL, METHOD )>, C<VERSION ( [ REQUIRE ] )>
20425
20426 =item EXPORTS
20427
20428 =back
20429
20430 =head2 Unicode::Collate - Unicode Collation Algorithm
20431
20432 =over 4
20433
20434 =item SYNOPSIS
20435
20436 =item DESCRIPTION
20437
20438 =over 4
20439
20440 =item Constructor and Tailoring
20441
20442 UCA_Version, alternate, backwards, entry, ignoreName, ignoreChar, level,
20443 normalization, overrideCJK, overrideHangul, preprocess, rearrange, table,
20444 undefName, undefChar, katakana_before_hiragana, upper_before_lower
20445
20446 =item Methods for Collation
20447
20448 C<@sorted = $Collator-E<gt>sort(@not_sorted)>, C<$result =
20449 $Collator-E<gt>cmp($a, $b)>, C<$result = $Collator-E<gt>eq($a, $b)>,
20450 C<$result = $Collator-E<gt>ne($a, $b)>, C<$result = $Collator-E<gt>lt($a,
20451 $b)>, C<$result = $Collator-E<gt>le($a, $b)>, C<$result =
20452 $Collator-E<gt>gt($a, $b)>, C<$result = $Collator-E<gt>ge($a, $b)>,
20453 C<$sortKey = $Collator-E<gt>getSortKey($string)>, C<$sortKeyForm =
20454 $Collator-E<gt>viewSortKey($string)>
20455
20456 =item Methods for Searching
20457
20458 C<$position = $Collator-E<gt>index($string, $substring[, $position])>,
20459 C<($position, $length) = $Collator-E<gt>index($string, $substring[,
20460 $position])>, C<$match_ref = $Collator-E<gt>match($string, $substring)>,
20461 C<($match)   = $Collator-E<gt>match($string, $substring)>, C<@match =
20462 $Collator-E<gt>gmatch($string, $substring)>, C<$count =
20463 $Collator-E<gt>subst($string, $substring, $replacement)>, C<$count =
20464 $Collator-E<gt>gsubst($string, $substring, $replacement)>
20465
20466 =item Other Methods
20467
20468 C<%old_tailoring = $Collator-E<gt>change(%new_tailoring)>, UCA_Version,
20469 Base_Unicode_Version
20470
20471 =item EXPORT
20472
20473 =item CAVEAT
20474
20475 =item Conformance Test
20476
20477 =back
20478
20479 =item AUTHOR
20480
20481 =item SEE ALSO
20482
20483 http://www.unicode.org/reports/tr10/,
20484 http://www.unicode.org/reports/tr10/allkeys.txt,
20485 http://www.unicode.org/reports/tr10/CollationTest.html
20486 http://www.unicode.org/reports/tr10/CollationTest.zip,
20487 http://www.unicode.org/reports/tr15/, L<Unicode::Normalize>
20488
20489 =back
20490
20491 =head2 Unicode::Normalize - Unicode Normalization Forms
20492
20493 =over 4
20494
20495 =item SYNOPSIS
20496
20497 =item DESCRIPTION
20498
20499 =over 4
20500
20501 =item Normalization Forms
20502
20503 C<$NFD_string = NFD($string)>, C<$NFC_string = NFC($string)>,
20504 C<$NFKD_string = NFKD($string)>, C<$NFKC_string = NFKC($string)>,
20505 C<$normalized_string = normalize($form_name, $string)>
20506
20507 =item Decomposition and Composition
20508
20509 C<$decomposed_string = decompose($string)>, C<$decomposed_string =
20510 decompose($string, $useCompatMapping)>, C<$reordered_string  =
20511 reorder($string)>, C<$composed_string   = compose($string)>
20512
20513 =item Quick Check
20514
20515 C<$result = checkNFD($string)>, C<$result = checkNFC($string)>, C<$result =
20516 checkNFKD($string)>, C<$result = checkNFKC($string)>, C<$result =
20517 check($form_name, $string)>
20518
20519 =item Character Data
20520
20521 C<$canonical_decomposed = getCanon($codepoint)>,
20522 C<$compatibility_decomposed = getCompat($codepoint)>,
20523 C<$codepoint_composite = getComposite($codepoint_here, $codepoint_next)>,
20524 C<$combining_class = getCombinClass($codepoint)>, C<$is_exclusion =
20525 isExclusion($codepoint)>, C<$is_singleton = isSingleton($codepoint)>,
20526 C<$is_non_starter_decomposition = isNonStDecomp($codepoint)>,
20527 C<$may_be_composed_with_prev_char = isComp2nd($codepoint)>
20528
20529 =item EXPORT
20530
20531 =back
20532
20533 =item AUTHOR
20534
20535 =item SEE ALSO
20536
20537 http://www.unicode.org/unicode/reports/tr15/,
20538 http://www.unicode.org/Public/UNIDATA/DerivedNormalizationProps.txt
20539
20540 =back
20541
20542 =head2 Unicode::UCD - Unicode character database
20543
20544 =over 4
20545
20546 =item SYNOPSIS
20547
20548 =item DESCRIPTION
20549
20550 =back
20551
20552 =over 4
20553
20554 =item charinfo
20555
20556 =back
20557
20558 =over 4
20559
20560 =item charblock
20561
20562 =back
20563
20564 =over 4
20565
20566 =item charscript
20567
20568 =back
20569
20570 =over 4
20571
20572 =item charblocks
20573
20574 =back
20575
20576 =over 4
20577
20578 =item charscripts
20579
20580 =back
20581
20582 =over 4
20583
20584 =item Blocks versus Scripts
20585
20586 =item Matching Scripts and Blocks
20587
20588 =item Code Point Arguments
20589
20590 =item charinrange
20591
20592 =back
20593
20594 =over 4
20595
20596 =item compexcl
20597
20598 =back
20599
20600 =over 4
20601
20602 =item casefold
20603
20604 =back
20605
20606 =over 4
20607
20608 =item casespec
20609
20610 =back
20611
20612 =over 4
20613
20614 =item Unicode::UCD::UnicodeVersion
20615
20616 =back
20617
20618 =over 4
20619
20620 =item Implementation Note
20621
20622 =back
20623
20624 =over 4
20625
20626 =item BUGS
20627
20628 =item AUTHOR
20629
20630 =back
20631
20632 =head2 User::grent - by-name interface to Perl's built-in getgr*()
20633 functions
20634
20635 =over 4
20636
20637 =item SYNOPSIS
20638
20639 =item DESCRIPTION
20640
20641 =item NOTE
20642
20643 =item AUTHOR
20644
20645 =back
20646
20647 =head2 User::pwent - by-name interface to Perl's built-in getpw*()
20648 functions
20649
20650 =over 4
20651
20652 =item SYNOPSIS
20653
20654 =item DESCRIPTION
20655
20656 =over 4
20657
20658 =item System Specifics
20659
20660 =back
20661
20662 =item NOTE
20663
20664 =item AUTHOR
20665
20666 =item HISTORY
20667
20668 March 18th, 2000
20669
20670 =back
20671
20672 =head2 Win32 - Interfaces to some Win32 API Functions
20673
20674 =over 4
20675
20676 =item DESCRIPTION
20677
20678 =over 4
20679
20680 =item Alphabetical Listing of Win32 Functions
20681
20682 Win32::AbortSystemShutdown(MACHINE), Win32::BuildNumber(),
20683 Win32::CopyFile(FROM, TO, OVERWRITE), Win32::DomainName(),
20684 Win32::ExpandEnvironmentStrings(STRING), Win32::FormatMessage(ERRORCODE),
20685 Win32::FsType(), Win32::FreeLibrary(HANDLE), Win32::GetArchName(),
20686 Win32::GetChipName(), Win32::GetCwd(), Win32::GetFolderPath(FOLDER [,
20687 CREATE]), Win32::GetFullPathName(FILENAME), Win32::GetLastError(),
20688 Win32::GetLongPathName(PATHNAME), Win32::GetNextAvailDrive(),
20689 Win32::GetOSVersion(), Win32::GetOSName(),
20690 Win32::GetShortPathName(PATHNAME), Win32::GetProcAddress(INSTANCE,
20691 PROCNAME), Win32::GetTickCount(), Win32::InitiateSystemShutdown,
20692 Win32::IsWinNT(), Win32::IsWin95(), Win32::LoadLibrary(LIBNAME),
20693 Win32::LoginName(), Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID,
20694 SIDTYPE), Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE),
20695 Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]]), Win32::NodeName(),
20696 Win32::RegisterServer(LIBRARYNAME), Win32::SetChildShowWindow(SHOWWINDOW),
20697 Win32::SetCwd(NEWDIRECTORY), Win32::SetLastError(ERROR),
20698 Win32::Sleep(TIME), Win32::Spawn(COMMAND, ARGS, PID),
20699 Win32::UnregisterServer(LIBRARYNAME)
20700
20701 =back
20702
20703 =back
20704
20705 =head2 XSLoader - Dynamically load C libraries into Perl code
20706
20707 =over 4
20708
20709 =item SYNOPSIS
20710
20711 =item DESCRIPTION
20712
20713 =over 4
20714
20715 =item Migration from C<DynaLoader>
20716
20717 =item Backward compatible boilerplate
20718
20719 =back
20720
20721 =item Order of initialization: early load()
20722
20723 =over 4
20724
20725 =item The most hairy case
20726
20727 =back
20728
20729 =item LIMITATIONS
20730
20731 =item AUTHOR
20732
20733 =back
20734
20735 =head1 AUXILIARY DOCUMENTATION
20736
20737 Here should be listed all the extra programs' documentation, but they
20738 don't all have manual pages yet:
20739
20740 =over 4
20741
20742 =item a2p
20743
20744 =item c2ph
20745
20746 =item dprofpp
20747
20748 =item h2ph
20749
20750 =item h2xs
20751
20752 =item perlbug
20753
20754 =item perldoc
20755
20756 =item pl2pm
20757
20758 =item pod2html
20759
20760 =item pod2man
20761
20762 =item s2p
20763
20764 =item splain
20765
20766 =item xsubpp
20767
20768 =back
20769
20770 =head1 AUTHOR
20771
20772 Larry Wall <F<larry@wall.org>>, with the help of oodles
20773 of other folks.
20774