Add the perl581delta manpage.
[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 Utilities
4859
4860 =item Implementing PerlIO Layers
4861
4862 C implementations, Perl implementations
4863
4864 =item Core Layers
4865
4866 "unix", "perlio", "stdio", "crlf", "mmap", "pending", "raw", "utf8"
4867
4868 =item Extension Layers
4869
4870 ":encoding", ":scalar", ":via"
4871
4872 =back
4873
4874 =item TODO
4875
4876 =back
4877
4878 =head2 perlapio - perl's IO abstraction interface.
4879
4880 =over 4
4881
4882 =item SYNOPSIS
4883
4884 =item DESCRIPTION
4885
4886 1. USE_STDIO, 2. USE_SFIO, 3. USE_PERLIO, B<PerlIO_stdin()>,
4887 B<PerlIO_stdout()>, B<PerlIO_stderr()>, B<PerlIO_open(path, mode)>,
4888 B<PerlIO_fdopen(fd,mode)>, B<PerlIO_reopen(path,mode,f)>,
4889 B<PerlIO_printf(f,fmt,...)>, B<PerlIO_vprintf(f,fmt,a)>,
4890 B<PerlIO_stdoutf(fmt,...)>, B<PerlIO_read(f,buf,count)>,
4891 B<PerlIO_write(f,buf,count)>, B<PerlIO_close(f)>, B<PerlIO_puts(f,s)>,
4892 B<PerlIO_putc(f,c)>, B<PerlIO_ungetc(f,c)>, B<PerlIO_getc(f)>,
4893 B<PerlIO_eof(f)>, B<PerlIO_error(f)>, B<PerlIO_fileno(f)>,
4894 B<PerlIO_clearerr(f)>, B<PerlIO_flush(f)>, B<PerlIO_seek(f,offset,whence)>,
4895 B<PerlIO_tell(f)>, B<PerlIO_getpos(f,p)>, B<PerlIO_setpos(f,p)>,
4896 B<PerlIO_rewind(f)>, B<PerlIO_tmpfile()>, B<PerlIO_setlinebuf(f)>
4897
4898 =over 4
4899
4900 =item Co-existence with stdio
4901
4902 B<PerlIO_importFILE(f,mode)>, B<PerlIO_exportFILE(f,mode)>,
4903 B<PerlIO_releaseFILE(p,f)>, B<PerlIO_findFILE(f)>
4904
4905 =item "Fast gets" Functions
4906
4907 B<PerlIO_fast_gets(f)>, B<PerlIO_has_cntptr(f)>, B<PerlIO_get_cnt(f)>,
4908 B<PerlIO_get_ptr(f)>, B<PerlIO_set_ptrcnt(f,p,c)>, B<PerlIO_canset_cnt(f)>,
4909 B<PerlIO_set_cnt(f,c)>, B<PerlIO_has_base(f)>, B<PerlIO_get_base(f)>,
4910 B<PerlIO_get_bufsiz(f)>
4911
4912 =item Other Functions
4913
4914 PerlIO_apply_layers(f,mode,layers), PerlIO_binmode(f,ptype,imode,layers),
4915 'E<lt>' read, 'E<gt>' write, '+' read/write, PerlIO_debug(fmt,...)
4916
4917 =back
4918
4919 =back
4920
4921 =head2 perlhack - How to hack at the Perl internals
4922
4923 =over 4
4924
4925 =item DESCRIPTION
4926
4927 Does concept match the general goals of Perl?, Where is the
4928 implementation?, Backwards compatibility, Could it be a module instead?, Is
4929 the feature generic enough?, Does it potentially introduce new bugs?, Does
4930 it preclude other desirable features?, Is the implementation robust?, Is
4931 the implementation generic enough to be portable?, Is the implementation
4932 tested?, Is there enough documentation?, Is there another way to do it?,
4933 Does it create too much work?, Patches speak louder than words
4934
4935 =over 4
4936
4937 =item Keeping in sync
4938
4939 rsync'ing the source tree, Using rsync over the LAN, Using pushing over the
4940 NFS, rsync'ing the patches
4941
4942 =item Why rsync the source tree
4943
4944 It's easier to rsync the source tree, It's more reliable
4945
4946 =item Why rsync the patches
4947
4948 It's easier to rsync the patches, It's a good reference, Finding a start
4949 point, Finding how to fix a bug, Finding the source of misbehaviour
4950
4951 =item Perlbug administration
4952
4953 =item Submitting patches
4954
4955 L<perlguts>, L<perlxstut> and L<perlxs>, L<perlapi>,
4956 F<Porting/pumpkin.pod>, The perl5-porters FAQ
4957
4958 =item Finding Your Way Around
4959
4960 Core modules, Tests, Documentation, Configure, Interpreter
4961
4962 =item Elements of the interpreter
4963
4964 Startup, Parsing, Optimization, Running
4965
4966 =item Internal Variable Types
4967
4968 =item Op Trees
4969
4970 =item Stacks
4971
4972 Argument stack, Mark stack, Save stack
4973
4974 =item Millions of Macros
4975
4976 =item The .i Targets
4977
4978 =item Poking at Perl
4979
4980 =item Using a source-level debugger
4981
4982 run [args], break function_name, break source.c:xxx, step, next, continue,
4983 finish, 'enter', print
4984
4985 =item gdb macro support
4986
4987 =item Dumping Perl Data Structures
4988
4989 =item Patching
4990
4991 =item Patching a core module
4992
4993 =item Adding a new function to the core
4994
4995 =item Writing a test
4996
4997 F<t/base/>, F<t/cmd/>, F<t/comp/>, F<t/io/>, F<t/lib/>, F<t/op/>,
4998 F<t/pod/>, F<t/run/>, F<t/uni/>, F<t/win32/>, F<t/x2p>, t/base t/comp,
4999 t/cmd t/run t/io t/op, t/lib ext lib
5000
5001 =item Special Make Test Targets
5002
5003 coretest, test.deparse, minitest, test.valgrind check.valgrind
5004 utest.valgrind ucheck.valgrind, test.third check.third utest.third
5005 ucheck.third, test.torture torturetest, utest ucheck test.utf8 check.utf8,
5006 test_harness
5007
5008 =item Running tests by hand
5009
5010 PERL_CORE=1, PERL_DESTRUCT_LEVEL=2, PERL, PERL_SKIP_TTY_TEST
5011
5012 =back
5013
5014 =item EXTERNAL TOOLS FOR DEBUGGING PERL
5015
5016 =over 4
5017
5018 =item Rational Software's Purify
5019
5020 =item Purify on Unix
5021
5022 -Accflags=-DPURIFY, -Doptimize='-g', -Uusemymalloc, -Dusemultiplicity
5023
5024 =item Purify on NT
5025
5026 DEFINES, USE_MULTI = define, #PERL_MALLOC = define, CFG = Debug
5027
5028 =item valgrind
5029
5030 =item Compaq's/Digital's/HP's Third Degree
5031
5032 =item PERL_DESTRUCT_LEVEL
5033
5034 =item Profiling
5035
5036 =item Gprof Profiling
5037
5038 -a, -b, -e routine, -f routine, -s, -z
5039
5040 =item GCC gcov Profiling
5041
5042 =item Pixie Profiling
5043
5044 -h, -l, -p[rocedures], -h[eavy], -i[nvocations], -l[ines], -testcoverage,
5045 -z[ero]
5046
5047 =item Miscellaneous tricks
5048
5049 =item CONCLUSION
5050
5051 I<The Road goes ever on and on, down from the door where it began.>
5052
5053 =back
5054
5055 =item AUTHOR
5056
5057 =back
5058
5059 =head2 perlbook - Perl book information
5060
5061 =over 4
5062
5063 =item DESCRIPTION
5064
5065 =back
5066
5067 =head2 perltodo - Perl TO-DO List
5068
5069 =over 4
5070
5071 =item DESCRIPTION
5072
5073 =item To do during 5.6.x
5074
5075 =over 4
5076
5077 =item Support for I/O disciplines
5078
5079 =item Autoload bytes.pm
5080
5081 =item Make "\u{XXXX}" et al work
5082
5083 =item Create a char *sv_pvprintify(sv, STRLEN *lenp, UV flags)
5084
5085 =item Overloadable regex assertions
5086
5087 =item Unicode
5088
5089 =item Work out exit/die semantics for threads
5090
5091 =item Better support for nonpreemptive threading systems like GNU pth
5092
5093 =item Typed lexicals for compiler
5094
5095 =item Compiler workarounds for Win32
5096
5097 =item AUTOLOADing in the compiler
5098
5099 =item Fixing comppadlist when compiling
5100
5101 =item Cleaning up exported namespace
5102
5103 =item Complete signal handling
5104
5105 =item Out-of-source builds
5106
5107 =item POSIX realtime support
5108
5109 =item UNIX98 support
5110
5111 =item IPv6 Support
5112
5113 =item Long double conversion
5114
5115 =item Locales
5116
5117 =item Arithmetic on non-Arabic numerals
5118
5119 =item POSIX Unicode character classes
5120
5121 =item Factoring out common suffices/prefices in regexps (trie optimization)
5122
5123 =item Security audit shipped utilities
5124
5125 =item Sort out the uid-setting mess
5126
5127 =item Custom opcodes
5128
5129 =item DLL Versioning
5130
5131 =item Introduce @( and @)
5132
5133 =item Floating point handling
5134
5135 =item IV/UV preservation
5136
5137 =item Replace pod2html with something using Pod::Parser
5138
5139 =item Automate module testing on CPAN
5140
5141 =item sendmsg and recvmsg
5142
5143 =item Rewrite perlre documentation
5144
5145 =item Convert example code to IO::Handle filehandles
5146
5147 =item Document Win32 choices
5148
5149 =item Check new modules
5150
5151 =item Make roffitall find pods and libs itself
5152
5153 =back
5154
5155 =item To do at some point
5156
5157 =over 4
5158
5159 =item Remove regular expression recursion
5160
5161 =item Memory leaks after failed eval
5162
5163 =item bitfields in pack
5164
5165 =item Cross compilation
5166
5167 =item Perl preprocessor / macros
5168
5169 =item Perl lexer in Perl
5170
5171 =item Using POSIX calls internally
5172
5173 =item -i rename file when changed
5174
5175 =item All ARGV input should act like E<lt>E<gt>
5176
5177 =item Support for rerunning debugger
5178
5179 =item Test Suite for the Debugger
5180
5181 =item my sub foo { }
5182
5183 =item One-pass global destruction
5184
5185 =item Rewrite regexp parser
5186
5187 =item Cache recently used regexps
5188
5189 =item Cross-compilation support
5190
5191 =item Bit-shifting bitvectors
5192
5193 =item debugger pragma
5194
5195 =item use less pragma
5196
5197 =item switch structures
5198
5199 =item Cache eval tree
5200
5201 =item rcatmaybe
5202
5203 =item Shrink opcode tables
5204
5205 =item Optimize away @_
5206
5207 =item Prototypes versus indirect objects
5208
5209 =item Install HTML
5210
5211 =item Prototype method calls
5212
5213 =item Return context prototype declarations
5214
5215 =item magic_setisa
5216
5217 =item Garbage collection
5218
5219 =item IO tutorial
5220
5221 =item Rewrite perldoc
5222
5223 =item Install .3p manpages
5224
5225 =item Unicode tutorial
5226
5227 =item Update POSIX.pm for 1003.1-2
5228
5229 =item Retargetable installation
5230
5231 =item POSIX emulation on non-POSIX systems
5232
5233 =item Rename Win32 headers
5234
5235 =item Finish off lvalue functions
5236
5237 =item Update sprintf documentation
5238
5239 =item Use fchown/fchmod internally
5240
5241 =item Make v-strings overloaded objects
5242
5243 =item Allow restricted hash assignment
5244
5245 =item Should overload be inheritable?
5246
5247 =item Taint rethink
5248
5249 =item Perform correctly when XSUBs call subroutines that exit via
5250 goto(LABEL) and friends
5251
5252 =back
5253
5254 =item Vague ideas
5255
5256 =over 4
5257
5258 =item ref() in list context
5259
5260 =item Make tr/// return histogram of characters in list context
5261
5262 =item Compile to real threaded code
5263
5264 =item Structured types
5265
5266 =item Modifiable $1 et al.
5267
5268 =item Procedural interfaces for IO::*, etc.
5269
5270 =item RPC modules
5271
5272 =item Attach/detach debugger from running program
5273
5274 =item GUI::Native
5275
5276 =item foreach(reverse ...)
5277
5278 =item Constant function cache
5279
5280 =item Approximate regular expression matching
5281
5282 =back
5283
5284 =item Ongoing
5285
5286 =over 4
5287
5288 =item Update guts documentation
5289
5290 =item Add more tests
5291
5292 =item Update auxiliary tools
5293
5294 =item Create debugging macros
5295
5296 =item truncate to the people
5297
5298 =item Unicode in Filenames
5299
5300 =back
5301
5302 =item Unicode in %ENV
5303
5304 =item Recently done things
5305
5306 =over 4
5307
5308 =item Alternative RE syntax module
5309
5310 =item Safe signal handling
5311
5312 =item Tie Modules
5313
5314 =item gettimeofday
5315
5316 =item setitimer and getimiter
5317
5318 =item Testing __DIE__ hook
5319
5320 =item CPP equivalent in Perl
5321
5322 =item Explicit switch statements
5323
5324 =item autocroak
5325
5326 =item UTF/EBCDIC
5327
5328 =item UTF Regexes
5329
5330 =item perlcc to produce executable
5331
5332 =item END blocks saved in compiled output
5333
5334 =item Secure temporary file module
5335
5336 =item Integrate Time::HiRes
5337
5338 =item Turn Cwd into XS
5339
5340 =item Mmap for input
5341
5342 =item Byte to/from UTF-8 and UTF-8 to/from local conversion
5343
5344 =item Add sockatmark support
5345
5346 =item Mailing list archives
5347
5348 =item Bug tracking
5349
5350 =item Integrate MacPerl
5351
5352 =item Web "nerve center" for Perl
5353
5354 =item Regular expression tutorial
5355
5356 =item Debugging Tutorial
5357
5358 =item Integrate new modules
5359
5360 =item Integrate profiler
5361
5362 =item Y2K error detection
5363
5364 =item Regular expression debugger
5365
5366 =item POD checker
5367
5368 =item "Dynamic" lexicals
5369
5370 =item Cache precompiled modules
5371
5372 =back
5373
5374 =item Deprecated Wishes
5375
5376 =over 4
5377
5378 =item Loop control on do{}
5379
5380 =item Lexically scoped typeglobs
5381
5382 =item format BOTTOM
5383
5384 =item report HANDLE
5385
5386 =item Generalised want()/caller())
5387
5388 =item Named prototypes
5389
5390 =item Built-in globbing
5391
5392 =item Regression tests for suidperl
5393
5394 =item Cached hash values
5395
5396 =item Add compression modules
5397
5398 =item Reorganise documentation into tutorials/references
5399
5400 =item Remove distinction between functions and operators
5401
5402 =item Make XS easier to use
5403
5404 =item Make embedding easier to use
5405
5406 =item man for perl
5407
5408 =item my $Package::variable
5409
5410 =item "or" tests defined, not truth
5411
5412 =item "class"-based lexicals
5413
5414 =item byteperl
5415
5416 =item Lazy evaluation / tail recursion removal
5417
5418 =item Make "use utf8" the default
5419
5420 =item Unicode collation and normalization
5421
5422 =item pack/unpack tutorial
5423
5424 =back
5425
5426 =back
5427
5428 =head2 perldoc - Look up Perl documentation in Pod format.
5429
5430 =over 4
5431
5432 =item SYNOPSIS
5433
5434 =item DESCRIPTION
5435
5436 =item OPTIONS
5437
5438 B<-h>, B<-v>, B<-t>, B<-u>, B<-m> I<module>, B<-l>, B<-F>, B<-f>
5439 I<perlfunc>, B<-q> I<perlfaq-search-regexp>, B<-T>, B<-d>
5440 I<destination-filename>, B<-o> I<output-formatname>, B<-M> I<module-name>,
5441 B<-w> I<option:value> or B<-w> I<option>, B<-X>,
5442 B<PageName|ModuleName|ProgramName>, B<-n> I<some-formatter>, B<-r>, B<-i>,
5443 B<-V>
5444
5445 =item SECURITY
5446
5447 =item ENVIRONMENT
5448
5449 =item AUTHOR
5450
5451 =back
5452
5453 =head2 perlhist - the Perl history records
5454
5455 =over 4
5456
5457 =item DESCRIPTION
5458
5459 =item INTRODUCTION
5460
5461 =item THE KEEPERS OF THE PUMPKIN
5462
5463 =over 4
5464
5465 =item PUMPKIN?
5466
5467 =back
5468
5469 =item THE RECORDS
5470
5471 =over 4
5472
5473 =item SELECTED RELEASE SIZES
5474
5475 =item SELECTED PATCH SIZES
5476
5477 =back
5478
5479 =item THE KEEPERS OF THE RECORDS
5480
5481 =back
5482
5483 =head2 perldelta - what is new for perl v5.9.0
5484
5485 =over 4
5486
5487 =item DESCRIPTION
5488
5489 =item Incompatible Changes
5490
5491 =over 4
5492
5493 =item The C<$*> variable has been removed
5494
5495 =back
5496
5497 =item Core Enhancements
5498
5499 =over 4
5500
5501 =item Tied Arrays with Negative Array Indices
5502
5503 =back
5504
5505 =item Modules and Pragmata
5506
5507 =item Utility Changes
5508
5509 =item New Documentation
5510
5511 =item Performance Enhancements
5512
5513 =item Installation and Configuration Improvements
5514
5515 =item Selected Bug Fixes
5516
5517 =item New or Changed Diagnostics
5518
5519 =item Changed Internals
5520
5521 =item New Tests
5522
5523 =item Known Problems
5524
5525 =item Platform Specific Problems
5526
5527 =item Reporting Bugs
5528
5529 =item SEE ALSO
5530
5531 =back
5532
5533 =head2 perl58delta, perldelta - what is new for perl v5.8.0
5534
5535 =over 4
5536
5537 =item DESCRIPTION
5538
5539 =item Highlights In 5.8.0
5540
5541 =item Incompatible Changes
5542
5543 =over 4
5544
5545 =item Binary Incompatibility
5546
5547 =item 64-bit platforms and malloc
5548
5549 =item AIX Dynaloading
5550
5551 =item Attributes for C<my> variables now handled at run-time
5552
5553 =item Socket Extension Dynamic in VMS
5554
5555 =item IEEE-format Floating Point Default on OpenVMS Alpha
5556
5557 =item New Unicode Semantics (no more C<use utf8>, almost)
5558
5559 =item New Unicode Properties
5560
5561 =item REF(...) Instead Of SCALAR(...)
5562
5563 =item pack/unpack D/F recycled
5564
5565 =item glob() now returns filenames in alphabetical order
5566
5567 =item Deprecations
5568
5569 =back
5570
5571 =item Core Enhancements
5572
5573 =over 4
5574
5575 =item Unicode Overhaul
5576
5577 =item PerlIO is Now The Default
5578
5579 =item ithreads
5580
5581 =item Restricted Hashes
5582
5583 =item Safe Signals
5584
5585 =item Understanding of Numbers
5586
5587 =item Arrays now always interpolate into double-quoted strings [561]
5588
5589 =item Miscellaneous Changes
5590
5591 =back
5592
5593 =item Modules and Pragmata
5594
5595 =over 4
5596
5597 =item New Modules and Pragmata
5598
5599 =item Updated And Improved Modules and Pragmata
5600
5601 =back
5602
5603 =item Utility Changes
5604
5605 =item New Documentation
5606
5607 =item Performance Enhancements
5608
5609 =item Installation and Configuration Improvements
5610
5611 =over 4
5612
5613 =item Generic Improvements
5614
5615 =item New Or Improved Platforms
5616
5617 =back
5618
5619 =item Selected Bug Fixes
5620
5621 =over 4
5622
5623 =item Platform Specific Changes and Fixes
5624
5625 =back
5626
5627 =item New or Changed Diagnostics
5628
5629 =item Changed Internals
5630
5631 =item Security Vulnerability Closed [561]
5632
5633 =item New Tests
5634
5635 =item Known Problems
5636
5637 =over 4
5638
5639 =item The Compiler Suite Is Still Very Experimental
5640
5641 =item Localising Tied Arrays and Hashes Is Broken
5642
5643 =item Building Extensions Can Fail Because Of Largefiles
5644
5645 =item Modifying $_ Inside for(..)
5646
5647 =item mod_perl 1.26 Doesn't Build With Threaded Perl
5648
5649 =item lib/ftmp-security tests warn 'system possibly insecure'
5650
5651 =item libwww-perl (LWP) fails base/date #51
5652
5653 =item PDL failing some tests
5654
5655 =item Perl_get_sv
5656
5657 =item Self-tying Problems
5658
5659 =item ext/threads/t/libc
5660
5661 =item Failure of Thread (5.005-style) tests
5662
5663 =item Timing problems
5664
5665 =item Tied/Magical Array/Hash Elements Do Not Autovivify
5666
5667 =item Unicode in package/class and subroutine names does not work
5668
5669 =back
5670
5671 =item Platform Specific Problems
5672
5673 =over 4
5674
5675 =item AIX
5676
5677 =item Alpha systems with old gccs fail several tests
5678
5679 =item AmigaOS
5680
5681 =item BeOS
5682
5683 =item Cygwin "unable to remap"
5684
5685 =item Cygwin ndbm tests fail on FAT
5686
5687 =item DJGPP Failures
5688
5689 =item FreeBSD built with ithreads coredumps reading large directories
5690
5691 =item FreeBSD Failing locale Test 117 For ISO 8859-15 Locales
5692
5693 =item IRIX fails ext/List/Util/t/shuffle.t or Digest::MD5
5694
5695 =item HP-UX lib/posix Subtest 9 Fails When LP64-Configured
5696
5697 =item Linux with glibc 2.2.5 fails t/op/int subtest #6 with -Duse64bitint
5698
5699 =item Linux With Sfio Fails op/misc Test 48
5700
5701 =item Mac OS X
5702
5703 =item Mac OS X dyld undefined symbols
5704
5705 =item OS/2 Test Failures
5706
5707 =item op/sprintf tests 91, 129, and 130
5708
5709 =item SCO
5710
5711 =item Solaris 2.5
5712
5713 =item Solaris x86 Fails Tests With -Duse64bitint
5714
5715 =item SUPER-UX (NEC SX)
5716
5717 =item Term::ReadKey not working on Win32
5718
5719 =item UNICOS/mk
5720
5721 =item UTS
5722
5723 =item VOS (Stratus)
5724
5725 =item VMS
5726
5727 =item Win32
5728
5729 =item XML::Parser not working
5730
5731 =item z/OS (OS/390)
5732
5733 =item Unicode Support on EBCDIC Still Spotty
5734
5735 =item Seen In Perl 5.7 But Gone Now
5736
5737 =back
5738
5739 =item Reporting Bugs
5740
5741 =item SEE ALSO
5742
5743 =item HISTORY
5744
5745 =back
5746
5747 =head2 perl581delta, perldelta - what is new for perl v5.8.1
5748
5749 =over 4
5750
5751 =item DESCRIPTION
5752
5753 =item Incompatible Changes
5754
5755 =over 4
5756
5757 =item Hash Randomisation
5758
5759 =item UTF-8 On Filehandles No Longer Activated By Locale
5760
5761 =item Single-number v-strings are no longer v-strings before "=>"
5762
5763 =item (Win32) The -C Switch Has Been Repurposed
5764
5765 =item (Win32) The /d Switch Of cmd.exe
5766
5767 =back
5768
5769 =item Core Enhancements
5770
5771 =over 4
5772
5773 =item UTF-8 no longer default under UTF-8 locales
5774
5775 =item Unsafe signals again available
5776
5777 =item Tied Arrays with Negative Array Indices
5778
5779 =item local ${$x}
5780
5781 =item Unicode Character Database 4.0.0
5782
5783 =item Deprecation Warnings
5784
5785 =item Miscellaneous Enhancements
5786
5787 =back
5788
5789 =item Modules and Pragmata
5790
5791 =over 4
5792
5793 =item Updated Modules And Pragmata
5794
5795 base, B::Bytecode, B::Concise, B::Deparse, Benchmark, ByteLoader, bytes,
5796 CGI, charnames, CPAN, Data::Dumper, DB_File, Devel::PPPort, Digest::MD5,
5797 Encode, fields, libnet, Math::BigInt, MIME::Base64, NEXT, Net::Ping,
5798 PerlIO::scalar, podlators, Pod::LaTeX, PodParsers, Pod::Perldoc,
5799 Scalar::Util, Storable, strict, Term::ANSIcolor, Test::Harness, Test::More,
5800 Test::Simple, Text::Balanced, Time::HiRes, threads, threads::shared,
5801 Unicode::Collate, Unicode::Normalize, Win32::GetFolderPath,
5802 Win32::GetOSVersion
5803
5804 =back
5805
5806 =item Utility Changes
5807
5808 =item New Documentation
5809
5810 =item Installation and Configuration Improvements
5811
5812 =over 4
5813
5814 =item Platform-specific enhancements
5815
5816 =back
5817
5818 =item Selected Bug Fixes
5819
5820 =over 4
5821
5822 =item Closures, eval and lexicals
5823
5824 =item Generic fixes
5825
5826 =item Platform-specific fixes
5827
5828 =back
5829
5830 =item New or Changed Diagnostics
5831
5832 =over 4
5833
5834 =item Changed "A thread exited while %d threads were running"
5835
5836 =item Removed "Attempt to clear a restricted hash"
5837
5838 =item New "Illegal declaration of anonymous subroutine"
5839
5840 =item Changed "Invalid range "%s" in transliteration operator"
5841
5842 =item New "Missing control char name in \c"
5843
5844 =item New "Newline in left-justified string for %s"
5845
5846 =item New "Possible precedence problem on bitwise %c operator"
5847
5848 =item New "Pseudo-hashes are deprecated"
5849
5850 =item New "read() on %s filehandle %s"
5851
5852 =item New "5.005 threads are deprecated"
5853
5854 =item New "Tied variable freed while still in use"
5855
5856 =item New "To%s: illegal mapping '%s'"
5857
5858 =item New "Use of freed value in iteration"
5859
5860 =back
5861
5862 =item Changed Internals
5863
5864 =item New Tests
5865
5866 =item Known Problems
5867
5868 =over 4
5869
5870 =item Tied hashes in scalar context
5871
5872 =item Net::Ping 450_service and 510_ping_udp failures
5873
5874 =item B::C
5875
5876 =back
5877
5878 =item Platform Specific Problems
5879
5880 =over 4
5881
5882 =item EBCDIC Platforms
5883
5884 =item Cygwin 1.5 problems
5885
5886 =item HP-UX: HP cc warnings about sendfile and sendpath
5887
5888 =item IRIX: t/uni/tr_7jis.t falsely failing
5889
5890 =item Mac OS X: no usemymalloc
5891
5892 =item Tru64: No threaded builds with GNU cc (gcc)
5893
5894 =item Win32: sysopen, sysread, syswrite
5895
5896 =back
5897
5898 =item Future Directions
5899
5900 =item Reporting Bugs
5901
5902 =item SEE ALSO
5903
5904 =back
5905
5906 =head2 perl573delta - what's new for perl v5.7.3
5907
5908 =over 4
5909
5910 =item DESCRIPTION
5911
5912 =item Changes
5913
5914 =item Reporting Bugs
5915
5916 =item SEE ALSO
5917
5918 =item HISTORY
5919
5920 =back
5921
5922 =head2 perl572delta - what's new for perl v5.7.2
5923
5924 =over 4
5925
5926 =item DESCRIPTION
5927
5928 =item Security Vulnerability Closed
5929
5930 =item Incompatible Changes
5931
5932 =over 4
5933
5934 =item 64-bit platforms and malloc
5935
5936 =item AIX Dynaloading
5937
5938 =item Socket Extension Dynamic in VMS
5939
5940 =item Different Definition of the Unicode Character Classes \p{In...}
5941
5942 =item Deprecations
5943
5944 =back
5945
5946 =item Core Enhancements
5947
5948 =item Modules and Pragmata
5949
5950 =over 4
5951
5952 =item New Modules and Distributions
5953
5954 =item Updated And Improved Modules and Pragmata
5955
5956 =back
5957
5958 =item Utility Changes
5959
5960 =item New Documentation
5961
5962 =item Installation and Configuration Improvements
5963
5964 =over 4
5965
5966 =item New Or Improved Platforms
5967
5968 =item Generic Improvements
5969
5970 =back
5971
5972 =item Selected Bug Fixes
5973
5974 =over 4
5975
5976 =item Platform Specific Changes and Fixes
5977
5978 =back
5979
5980 =item New or Changed Diagnostics
5981
5982 =item Source Code Enhancements
5983
5984 =over 4
5985
5986 =item MAGIC constants
5987
5988 =item Better commented code
5989
5990 =item Regex pre-/post-compilation items matched up
5991
5992 =item gcc -Wall
5993
5994 =back
5995
5996 =item New Tests
5997
5998 =item Known Problems
5999
6000 =over 4
6001
6002 =item AIX
6003
6004 =item Amiga Perl Invoking Mystery
6005
6006 =item lib/ftmp-security tests warn 'system possibly insecure'
6007
6008 =item Cygwin intermittent failures of lib/Memoize/t/expire_file 11 and 12
6009
6010 =item HP-UX lib/io_multihomed Fails When LP64-Configured
6011
6012 =item  HP-UX lib/posix Subtest 9 Fails When LP64-Configured
6013
6014 =item Linux With Sfio Fails op/misc Test 48
6015
6016 =item OS/390
6017
6018 =item op/sprintf tests 129 and 130
6019
6020 =item  Failure of Thread tests
6021
6022 =item UNICOS
6023
6024 =item UTS
6025
6026 =item VMS
6027
6028 =item Win32
6029
6030 =item Localising a Tied Variable Leaks Memory
6031
6032 =item Self-tying of Arrays and Hashes Is Forbidden
6033
6034 =item Variable Attributes are not Currently Usable for Tieing
6035
6036 =item Building Extensions Can Fail Because Of Largefiles
6037
6038 =item The Compiler Suite Is Still Experimental
6039
6040 =item The Long Double Support is Still Experimental
6041
6042 =back
6043
6044 =item Reporting Bugs
6045
6046 =item SEE ALSO
6047
6048 =item HISTORY
6049
6050 =back
6051
6052 =head2 perl571delta - what's new for perl v5.7.1
6053
6054 =over 4
6055
6056 =item DESCRIPTION
6057
6058 =item Security Vulnerability Closed
6059
6060 =item Incompatible Changes
6061
6062 =item Core Enhancements
6063
6064 =over 4
6065
6066 =item AUTOLOAD Is Now Lvaluable
6067
6068 =item PerlIO is Now The Default
6069
6070 =item Signals Are Now Safe
6071
6072 =back
6073
6074 =item Modules and Pragmata
6075
6076 =over 4
6077
6078 =item New Modules
6079
6080 =item Updated And Improved Modules and Pragmata
6081
6082 =back
6083
6084 =item Performance Enhancements
6085
6086 =item Utility Changes
6087
6088 =item New Documentation
6089
6090 =over 4
6091
6092 =item perlclib
6093
6094 =item perliol
6095
6096 =item README.aix
6097
6098 =item README.bs2000
6099
6100 =item README.macos
6101
6102 =item README.mpeix
6103
6104 =item README.solaris
6105
6106 =item README.vos
6107
6108 =item Porting/repository.pod
6109
6110 =back
6111
6112 =item Installation and Configuration Improvements
6113
6114 =over 4
6115
6116 =item New Or Improved Platforms
6117
6118 =item Generic Improvements
6119
6120 d_cmsghdr, d_fcntl_can_lock, d_fsync, d_getitimer, d_getpagsz, d_msghdr_s,
6121 need_va_copy, d_readv, d_recvmsg, d_sendmsg, sig_size, d_sockatmark,
6122 d_strtoq, d_u32align, d_ualarm, d_usleep
6123
6124 =back
6125
6126 =item Selected Bug Fixes
6127
6128 =over 4
6129
6130 =item Platform Specific Changes and Fixes
6131
6132 =back
6133
6134 =item New or Changed Diagnostics
6135
6136 =item Changed Internals
6137
6138 =item New Tests
6139
6140 =item Known Problems
6141
6142 =over 4
6143
6144 =item AIX vac 5.0.0.0 May Produce Buggy Code For Perl
6145
6146 =item lib/ftmp-security tests warn 'system possibly insecure'
6147
6148 =item lib/io_multihomed Fails In LP64-Configured HP-UX
6149
6150 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
6151
6152 =item lib/b test 19
6153
6154 =item Linux With Sfio Fails op/misc Test 48
6155
6156 =item sigaction test 13 in VMS
6157
6158 =item sprintf tests 129 and 130
6159
6160 =item  Failure of Thread tests
6161
6162 =item Localising a Tied Variable Leaks Memory
6163
6164 =item Self-tying of Arrays and Hashes Is Forbidden
6165
6166 =item Building Extensions Can Fail Because Of Largefiles
6167
6168 =item The Compiler Suite Is Still Experimental
6169
6170 =back
6171
6172 =item Reporting Bugs
6173
6174 =item SEE ALSO
6175
6176 =item HISTORY
6177
6178 =back
6179
6180 =head2 perl570delta - what's new for perl v5.7.0
6181
6182 =over 4
6183
6184 =item DESCRIPTION
6185
6186 =item Security Vulnerability Closed
6187
6188 =item Incompatible Changes
6189
6190 =item Core Enhancements
6191
6192 =item Modules and Pragmata
6193
6194 =over 4
6195
6196 =item New Modules
6197
6198 =item Updated And Improved Modules and Pragmata
6199
6200 =back
6201
6202 =item Utility Changes
6203
6204 =item New Documentation
6205
6206 =item Performance Enhancements
6207
6208 =item Installation and Configuration Improvements
6209
6210 =over 4
6211
6212 =item Generic Improvements
6213
6214 =back
6215
6216 =item Selected Bug Fixes
6217
6218 =over 4
6219
6220 =item Platform Specific Changes and Fixes
6221
6222 =back
6223
6224 =item New or Changed Diagnostics
6225
6226 =item Changed Internals
6227
6228 =item Known Problems
6229
6230 =over 4
6231
6232 =item Unicode Support Still Far From Perfect
6233
6234 =item EBCDIC Still A Lost Platform
6235
6236 =item Building Extensions Can Fail Because Of Largefiles
6237
6238 =item ftmp-security tests warn 'system possibly insecure'
6239
6240 =item Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
6241
6242 =item Long Doubles Still Don't Work In Solaris
6243
6244 =item Linux With Sfio Fails op/misc Test 48
6245
6246 =item Storable tests fail in some platforms
6247
6248 =item Threads Are Still Experimental
6249
6250 =item The Compiler Suite Is Still Experimental
6251
6252 =back
6253
6254 =item Reporting Bugs
6255
6256 =item SEE ALSO
6257
6258 =item HISTORY
6259
6260 =back
6261
6262 =head2 perl561delta - what's new for perl v5.6.x
6263
6264 =over 4
6265
6266 =item DESCRIPTION
6267
6268 =item Summary of changes between 5.6.0 and 5.6.1
6269
6270 =over 4
6271
6272 =item Security Issues
6273
6274 =item Core bug fixes
6275
6276 C<UNIVERSAL::isa()>, Memory leaks, Numeric conversions, qw(a\\b), caller(),
6277 Bugs in regular expressions, "slurp" mode, Autovivification of symbolic
6278 references to special variables, Lexical warnings, Spurious warnings and
6279 errors, glob(), Tainting, sort(), #line directives, Subroutine prototypes,
6280 map(), Debugger, PERL5OPT, chop(), Unicode support, 64-bit support,
6281 Compiler, Lvalue subroutines, IO::Socket, File::Find, xsubpp, C<no
6282 Module;>, Tests
6283
6284 =item Core features
6285
6286 =item Configuration issues
6287
6288 =item Documentation
6289
6290 =item Bundled modules
6291
6292 B::Concise, File::Temp, Pod::LaTeX, Pod::Text::Overstrike, CGI, CPAN,
6293 Class::Struct, DB_File, Devel::Peek, File::Find, Getopt::Long, IO::Poll,
6294 IPC::Open3, Math::BigFloat, Math::Complex, Net::Ping, Opcode, Pod::Parser,
6295 Pod::Text, SDBM_File, Sys::Syslog, Tie::RefHash, Tie::SubstrHash
6296
6297 =item Platform-specific improvements
6298
6299 NCR MP-RAS, NonStop-UX
6300
6301 =back
6302
6303 =item Core Enhancements
6304
6305 =over 4
6306
6307 =item Interpreter cloning, threads, and concurrency
6308
6309 =item Lexically scoped warning categories
6310
6311 =item Unicode and UTF-8 support
6312
6313 =item Support for interpolating named characters
6314
6315 =item "our" declarations
6316
6317 =item Support for strings represented as a vector of ordinals
6318
6319 =item Improved Perl version numbering system
6320
6321 =item New syntax for declaring subroutine attributes
6322
6323 =item File and directory handles can be autovivified
6324
6325 =item open() with more than two arguments
6326
6327 =item 64-bit support
6328
6329 =item Large file support
6330
6331 =item Long doubles
6332
6333 =item "more bits"
6334
6335 =item Enhanced support for sort() subroutines
6336
6337 =item C<sort $coderef @foo> allowed
6338
6339 =item File globbing implemented internally
6340
6341 =item Support for CHECK blocks
6342
6343 =item POSIX character class syntax [: :] supported
6344
6345 =item Better pseudo-random number generator
6346
6347 =item Improved C<qw//> operator
6348
6349 =item Better worst-case behavior of hashes
6350
6351 =item pack() format 'Z' supported
6352
6353 =item pack() format modifier '!' supported
6354
6355 =item pack() and unpack() support counted strings
6356
6357 =item Comments in pack() templates
6358
6359 =item Weak references
6360
6361 =item Binary numbers supported
6362
6363 =item Lvalue subroutines
6364
6365 =item Some arrows may be omitted in calls through references
6366
6367 =item Boolean assignment operators are legal lvalues
6368
6369 =item exists() is supported on subroutine names
6370
6371 =item exists() and delete() are supported on array elements
6372
6373 =item Pseudo-hashes work better
6374
6375 =item Automatic flushing of output buffers
6376
6377 =item Better diagnostics on meaningless filehandle operations
6378
6379 =item Where possible, buffered data discarded from duped input filehandle
6380
6381 =item eof() has the same old magic as <>
6382
6383 =item binmode() can be used to set :crlf and :raw modes
6384
6385 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
6386
6387 =item system(), backticks and pipe open now reflect exec() failure
6388
6389 =item Improved diagnostics
6390
6391 =item Diagnostics follow STDERR
6392
6393 =item More consistent close-on-exec behavior
6394
6395 =item syswrite() ease-of-use
6396
6397 =item Better syntax checks on parenthesized unary operators
6398
6399 =item Bit operators support full native integer width
6400
6401 =item Improved security features
6402
6403 =item More functional bareword prototype (*)
6404
6405 =item C<require> and C<do> may be overridden
6406
6407 =item $^X variables may now have names longer than one character
6408
6409 =item New variable $^C reflects C<-c> switch
6410
6411 =item New variable $^V contains Perl version as a string
6412
6413 =item Optional Y2K warnings
6414
6415 =item Arrays now always interpolate into double-quoted strings
6416
6417 =back
6418
6419 =item Modules and Pragmata
6420
6421 =over 4
6422
6423 =item Modules
6424
6425 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6426 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6427 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6428 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6429 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6430 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6431 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6432 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6433
6434 =item Pragmata
6435
6436 =back
6437
6438 =item Utility Changes
6439
6440 =over 4
6441
6442 =item dprofpp
6443
6444 =item find2perl
6445
6446 =item h2xs
6447
6448 =item perlcc
6449
6450 =item perldoc
6451
6452 =item The Perl Debugger
6453
6454 =back
6455
6456 =item Improved Documentation
6457
6458 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6459 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6460 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6461 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6462
6463 =item Performance enhancements
6464
6465 =over 4
6466
6467 =item Simple sort() using { $a <=> $b } and the like are optimized
6468
6469 =item Optimized assignments to lexical variables
6470
6471 =item Faster subroutine calls
6472
6473 =item delete(), each(), values() and hash iteration are faster
6474
6475 =back
6476
6477 =item Installation and Configuration Improvements
6478
6479 =over 4
6480
6481 =item -Dusethreads means something different
6482
6483 =item New Configure flags
6484
6485 =item Threadedness and 64-bitness now more daring
6486
6487 =item Long Doubles
6488
6489 =item -Dusemorebits
6490
6491 =item -Duselargefiles
6492
6493 =item installusrbinperl
6494
6495 =item SOCKS support
6496
6497 =item C<-A> flag
6498
6499 =item Enhanced Installation Directories
6500
6501 =item gcc automatically tried if 'cc' does not seem to be working
6502
6503 =back
6504
6505 =item Platform specific changes
6506
6507 =over 4
6508
6509 =item Supported platforms
6510
6511 =item DOS
6512
6513 =item OS390 (OpenEdition MVS)
6514
6515 =item VMS
6516
6517 =item Win32
6518
6519 =back
6520
6521 =item Significant bug fixes
6522
6523 =over 4
6524
6525 =item <HANDLE> on empty files
6526
6527 =item C<eval '...'> improvements
6528
6529 =item All compilation errors are true errors
6530
6531 =item Implicitly closed filehandles are safer
6532
6533 =item Behavior of list slices is more consistent
6534
6535 =item C<(\$)> prototype and C<$foo{a}>
6536
6537 =item C<goto &sub> and AUTOLOAD
6538
6539 =item C<-bareword> allowed under C<use integer>
6540
6541 =item Failures in DESTROY()
6542
6543 =item Locale bugs fixed
6544
6545 =item Memory leaks
6546
6547 =item Spurious subroutine stubs after failed subroutine calls
6548
6549 =item Taint failures under C<-U>
6550
6551 =item END blocks and the C<-c> switch
6552
6553 =item Potential to leak DATA filehandles
6554
6555 =back
6556
6557 =item New or Changed Diagnostics
6558
6559 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6560 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6561 / cannot take a count, / must be followed by a, A or Z, / must be followed
6562 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6563 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6564 passed through, /%s/ should probably be written as "%s", %s() called too
6565 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6566 argument is not a HASH or ARRAY element or slice, %s argument is not a
6567 subroutine name, %s package attribute may clash with future reserved word:
6568 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6569 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6570 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6571 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6572 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6573 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6574 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6575 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6576 weaken a nonreference, Character class [:%s:] unknown, Character class
6577 syntax [%s] belongs inside character classes, Constant is not %s reference,
6578 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6579 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6580 "local" instead of "our"?), Document contains no data, entering effective
6581 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6582 output, flock() on closed filehandle %s, Global symbol "%s" requires
6583 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6584 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6585 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6586 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6587 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6588 separator character %s in attribute list, Invalid separator character %s in
6589 subroutine attribute list, leaving effective %s failed, Lvalue subs
6590 returning %s not implemented yet, Method %s not permitted, Missing
6591 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6592 No %s specified for -%c, No package name allowed for variable %s in "our",
6593 No space allowed after -%c, no UTC offset information; assuming local time
6594 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6595 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6596 around "%s" list, Possible unintended interpolation of %s in string,
6597 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6598 instead, Premature end of script headers, Repeat count in pack overflows,
6599 Repeat count in unpack overflows, realloc() of freed memory ignored,
6600 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6601 zero-length expression, switching effective %s is not implemented, This
6602 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6603 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6604 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6605 escape \\%c passed through, Unterminated attribute parameter in attribute
6606 list, Unterminated attribute list, Unterminated attribute parameter in
6607 subroutine attribute list, Unterminated subroutine attribute list, Value of
6608 CLI symbol "%s" too long, Version number must be a constant number
6609
6610 =item New tests
6611
6612 =item Incompatible Changes
6613
6614 =over 4
6615
6616 =item Perl Source Incompatibilities
6617
6618 CHECK is a new keyword, Treatment of list slices of undef has changed,
6619 Format of $English::PERL_VERSION is different, Literals of the form
6620 C<1.2.3> parse differently, Possibly changed pseudo-random number
6621 generator, Hashing function for hash keys has changed, C<undef> fails on
6622 read only values, Close-on-exec bit may be set on pipe and socket handles,
6623 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
6624 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
6625 Text of some diagnostic output has changed, C<%@> has been removed,
6626 Parenthesized not() behaves like a list operator, Semantics of bareword
6627 prototype C<(*)> have changed, Semantics of bit operators may have changed
6628 on 64-bit platforms, More builtins taint their results
6629
6630 =item C Source Incompatibilities
6631
6632 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
6633
6634 =item Compatible C Source API Changes
6635
6636 C<PATCHLEVEL> is now C<PERL_VERSION>
6637
6638 =item Binary Incompatibilities
6639
6640 =back
6641
6642 =item Known Problems
6643
6644 =over 4
6645
6646 =item Localizing a tied hash element may leak memory
6647
6648 =item Known test failures
6649
6650 =item EBCDIC platforms not fully supported
6651
6652 =item UNICOS/mk CC failures during Configure run
6653
6654 =item Arrow operator and arrays
6655
6656 =item Experimental features
6657
6658 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
6659 pseudo-hash data type, The Compiler suite, Internal implementation of file
6660 globbing, The DB module, The regular expression code constructs:
6661
6662 =back
6663
6664 =item Obsolete Diagnostics
6665
6666 Character class syntax [: :] is reserved for future extensions, Ill-formed
6667 logical name |%s| in prime_env_iter, In string, @%s now must be written as
6668 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
6669 to mean "${$}<digit>" is deprecated
6670
6671 =item Reporting Bugs
6672
6673 =item SEE ALSO
6674
6675 =item HISTORY
6676
6677 =back
6678
6679 =head2 perl56delta - what's new for perl v5.6.0
6680
6681 =over 4
6682
6683 =item DESCRIPTION
6684
6685 =item Core Enhancements
6686
6687 =over 4
6688
6689 =item Interpreter cloning, threads, and concurrency
6690
6691 =item Lexically scoped warning categories
6692
6693 =item Unicode and UTF-8 support
6694
6695 =item Support for interpolating named characters
6696
6697 =item "our" declarations
6698
6699 =item Support for strings represented as a vector of ordinals
6700
6701 =item Improved Perl version numbering system
6702
6703 =item New syntax for declaring subroutine attributes
6704
6705 =item File and directory handles can be autovivified
6706
6707 =item open() with more than two arguments
6708
6709 =item 64-bit support
6710
6711 =item Large file support
6712
6713 =item Long doubles
6714
6715 =item "more bits"
6716
6717 =item Enhanced support for sort() subroutines
6718
6719 =item C<sort $coderef @foo> allowed
6720
6721 =item File globbing implemented internally
6722
6723 =item Support for CHECK blocks
6724
6725 =item POSIX character class syntax [: :] supported
6726
6727 =item Better pseudo-random number generator
6728
6729 =item Improved C<qw//> operator
6730
6731 =item Better worst-case behavior of hashes
6732
6733 =item pack() format 'Z' supported
6734
6735 =item pack() format modifier '!' supported
6736
6737 =item pack() and unpack() support counted strings
6738
6739 =item Comments in pack() templates
6740
6741 =item Weak references
6742
6743 =item Binary numbers supported
6744
6745 =item Lvalue subroutines
6746
6747 =item Some arrows may be omitted in calls through references
6748
6749 =item Boolean assignment operators are legal lvalues
6750
6751 =item exists() is supported on subroutine names
6752
6753 =item exists() and delete() are supported on array elements
6754
6755 =item Pseudo-hashes work better
6756
6757 =item Automatic flushing of output buffers
6758
6759 =item Better diagnostics on meaningless filehandle operations
6760
6761 =item Where possible, buffered data discarded from duped input filehandle
6762
6763 =item eof() has the same old magic as <>
6764
6765 =item binmode() can be used to set :crlf and :raw modes
6766
6767 =item C<-T> filetest recognizes UTF-8 encoded files as "text"
6768
6769 =item system(), backticks and pipe open now reflect exec() failure
6770
6771 =item Improved diagnostics
6772
6773 =item Diagnostics follow STDERR
6774
6775 =item More consistent close-on-exec behavior
6776
6777 =item syswrite() ease-of-use
6778
6779 =item Better syntax checks on parenthesized unary operators
6780
6781 =item Bit operators support full native integer width
6782
6783 =item Improved security features
6784
6785 =item More functional bareword prototype (*)
6786
6787 =item C<require> and C<do> may be overridden
6788
6789 =item $^X variables may now have names longer than one character
6790
6791 =item New variable $^C reflects C<-c> switch
6792
6793 =item New variable $^V contains Perl version as a string
6794
6795 =item Optional Y2K warnings
6796
6797 =item Arrays now always interpolate into double-quoted strings
6798
6799 =back
6800
6801 =item Modules and Pragmata
6802
6803 =over 4
6804
6805 =item Modules
6806
6807 attributes, B, Benchmark, ByteLoader, constant, charnames, Data::Dumper,
6808 DB, DB_File, Devel::DProf, Devel::Peek, Dumpvalue, DynaLoader, English,
6809 Env, Fcntl, File::Compare, File::Find, File::Glob, File::Spec,
6810 File::Spec::Functions, Getopt::Long, IO, JPL, lib, Math::BigInt,
6811 Math::Complex, Math::Trig, Pod::Parser, Pod::InputObjects, Pod::Checker,
6812 podchecker, Pod::ParseUtils, Pod::Find, Pod::Select, podselect, Pod::Usage,
6813 pod2usage, Pod::Text and Pod::Man, SDBM_File, Sys::Syslog, Sys::Hostname,
6814 Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters
6815
6816 =item Pragmata
6817
6818 =back
6819
6820 =item Utility Changes
6821
6822 =over 4
6823
6824 =item dprofpp
6825
6826 =item find2perl
6827
6828 =item h2xs
6829
6830 =item perlcc
6831
6832 =item perldoc
6833
6834 =item The Perl Debugger
6835
6836 =back
6837
6838 =item Improved Documentation
6839
6840 perlapi.pod, perlboot.pod, perlcompile.pod, perldbmfilter.pod,
6841 perldebug.pod, perldebguts.pod, perlfork.pod, perlfilter.pod, perlhack.pod,
6842 perlintern.pod, perllexwarn.pod, perlnumber.pod, perlopentut.pod,
6843 perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod
6844
6845 =item Performance enhancements
6846
6847 =over 4
6848
6849 =item Simple sort() using { $a <=> $b } and the like are optimized
6850
6851 =item Optimized assignments to lexical variables
6852
6853 =item Faster subroutine calls
6854
6855 =item delete(), each(), values() and hash iteration are faster
6856
6857 =back
6858
6859 =item Installation and Configuration Improvements
6860
6861 =over 4
6862
6863 =item -Dusethreads means something different
6864
6865 =item New Configure flags
6866
6867 =item Threadedness and 64-bitness now more daring
6868
6869 =item Long Doubles
6870
6871 =item -Dusemorebits
6872
6873 =item -Duselargefiles
6874
6875 =item installusrbinperl
6876
6877 =item SOCKS support
6878
6879 =item C<-A> flag
6880
6881 =item Enhanced Installation Directories
6882
6883 =back
6884
6885 =item Platform specific changes
6886
6887 =over 4
6888
6889 =item Supported platforms
6890
6891 =item DOS
6892
6893 =item OS390 (OpenEdition MVS)
6894
6895 =item VMS
6896
6897 =item Win32
6898
6899 =back
6900
6901 =item Significant bug fixes
6902
6903 =over 4
6904
6905 =item <HANDLE> on empty files
6906
6907 =item C<eval '...'> improvements
6908
6909 =item All compilation errors are true errors
6910
6911 =item Implicitly closed filehandles are safer
6912
6913 =item Behavior of list slices is more consistent
6914
6915 =item C<(\$)> prototype and C<$foo{a}>
6916
6917 =item C<goto &sub> and AUTOLOAD
6918
6919 =item C<-bareword> allowed under C<use integer>
6920
6921 =item Failures in DESTROY()
6922
6923 =item Locale bugs fixed
6924
6925 =item Memory leaks
6926
6927 =item Spurious subroutine stubs after failed subroutine calls
6928
6929 =item Taint failures under C<-U>
6930
6931 =item END blocks and the C<-c> switch
6932
6933 =item Potential to leak DATA filehandles
6934
6935 =back
6936
6937 =item New or Changed Diagnostics
6938
6939 "%s" variable %s masks earlier declaration in same %s, "my sub" not yet
6940 implemented, "our" variable %s redeclared, '!' allowed only after types %s,
6941 / cannot take a count, / must be followed by a, A or Z, / must be followed
6942 by a*, A* or Z*, / must follow a numeric type, /%s/: Unrecognized escape
6943 \\%c passed through, /%s/: Unrecognized escape \\%c in character class
6944 passed through, /%s/ should probably be written as "%s", %s() called too
6945 early to check prototype, %s argument is not a HASH or ARRAY element, %s
6946 argument is not a HASH or ARRAY element or slice, %s argument is not a
6947 subroutine name, %s package attribute may clash with future reserved word:
6948 %s, (in cleanup) %s, <> should be quotes, Attempt to join self, Bad evalled
6949 substitution pattern, Bad realloc() ignored, Bareword found in conditional,
6950 Binary number > 0b11111111111111111111111111111111 non-portable, Bit vector
6951 size > 32 non-portable, Buffer overflow in prime_env_iter: %s, Can't check
6952 filesystem of script "%s", Can't declare class for non-scalar %s in "%s",
6953 Can't declare %s in "%s", Can't ignore signal CHLD, forcing to default,
6954 Can't modify non-lvalue subroutine call, Can't read CRTL environ, Can't
6955 remove %s: %s, skipping file, Can't return %s from lvalue subroutine, Can't
6956 weaken a nonreference, Character class [:%s:] unknown, Character class
6957 syntax [%s] belongs inside character classes, Constant is not %s reference,
6958 constant(%s): %s, CORE::%s is not a keyword, defined(@array) is deprecated,
6959 defined(%hash) is deprecated, Did not produce a valid header, (Did you mean
6960 "local" instead of "our"?), Document contains no data, entering effective
6961 %s failed, false [] range "%s" in regexp, Filehandle %s opened only for
6962 output, flock() on closed filehandle %s, Global symbol "%s" requires
6963 explicit package name, Hexadecimal number > 0xffffffff non-portable,
6964 Ill-formed CRTL environ value "%s", Ill-formed message in prime_env_iter:
6965 |%s|, Illegal binary digit %s, Illegal binary digit %s ignored, Illegal
6966 number of bits in vec, Integer overflow in %s number, Invalid %s attribute:
6967 %s, Invalid %s attributes: %s, invalid [] range "%s" in regexp, Invalid
6968 separator character %s in attribute list, Invalid separator character %s in
6969 subroutine attribute list, leaving effective %s failed, Lvalue subs
6970 returning %s not implemented yet, Method %s not permitted, Missing
6971 %sbrace%s on \N{}, Missing command in piped open, Missing name in "my sub",
6972 No %s specified for -%c, No package name allowed for variable %s in "our",
6973 No space allowed after -%c, no UTC offset information; assuming local time
6974 is UTC, Octal number > 037777777777 non-portable, panic: del_backref,
6975 panic: kid popen errno read, panic: magic_killbackrefs, Parentheses missing
6976 around "%s" list, Possible unintended interpolation of %s in string,
6977 Possible Y2K bug: %s, pragma "attrs" is deprecated, use "sub NAME : ATTRS"
6978 instead, Premature end of script headers, Repeat count in pack overflows,
6979 Repeat count in unpack overflows, realloc() of freed memory ignored,
6980 Reference is already weak, setpgrp can't take arguments, Strange *+?{} on
6981 zero-length expression, switching effective %s is not implemented, This
6982 Perl can't reset CRTL environ elements (%s), This Perl can't set CRTL
6983 environ elements (%s=%s), Too late to run %s block, Unknown open() mode
6984 '%s', Unknown process %x sent message to prime_env_iter: %s, Unrecognized
6985 escape \\%c passed through, Unterminated attribute parameter in attribute
6986 list, Unterminated attribute list, Unterminated attribute parameter in
6987 subroutine attribute list, Unterminated subroutine attribute list, Value of
6988 CLI symbol "%s" too long, Version number must be a constant number
6989
6990 =item New tests
6991
6992 =item Incompatible Changes
6993
6994 =over 4
6995
6996 =item Perl Source Incompatibilities
6997
6998 CHECK is a new keyword, Treatment of list slices of undef has changed,
6999 Format of $English::PERL_VERSION is different, Literals of the form
7000 C<1.2.3> parse differently, Possibly changed pseudo-random number
7001 generator, Hashing function for hash keys has changed, C<undef> fails on
7002 read only values, Close-on-exec bit may be set on pipe and socket handles,
7003 Writing C<"$$1"> to mean C<"${$}1"> is unsupported, delete(), each(),
7004 values() and C<\(%h)>, vec(EXPR,OFFSET,BITS) enforces powers-of-two BITS,
7005 Text of some diagnostic output has changed, C<%@> has been removed,
7006 Parenthesized not() behaves like a list operator, Semantics of bareword
7007 prototype C<(*)> have changed, Semantics of bit operators may have changed
7008 on 64-bit platforms, More builtins taint their results
7009
7010 =item C Source Incompatibilities
7011
7012 C<PERL_POLLUTE>, C<PERL_IMPLICIT_CONTEXT>, C<PERL_POLLUTE_MALLOC>
7013
7014 =item Compatible C Source API Changes
7015
7016 C<PATCHLEVEL> is now C<PERL_VERSION>
7017
7018 =item Binary Incompatibilities
7019
7020 =back
7021
7022 =item Known Problems
7023
7024 =over 4
7025
7026 =item Thread test failures
7027
7028 =item EBCDIC platforms not supported
7029
7030 =item In 64-bit HP-UX the lib/io_multihomed test may hang
7031
7032 =item NEXTSTEP 3.3 POSIX test failure
7033
7034 =item Tru64 (aka Digital UNIX, aka DEC OSF/1) lib/sdbm test failure with
7035 gcc
7036
7037 =item UNICOS/mk CC failures during Configure run
7038
7039 =item Arrow operator and arrays
7040
7041 =item Experimental features
7042
7043 Threads, Unicode, 64-bit support, Lvalue subroutines, Weak references, The
7044 pseudo-hash data type, The Compiler suite, Internal implementation of file
7045 globbing, The DB module, The regular expression code constructs:
7046
7047 =back
7048
7049 =item Obsolete Diagnostics
7050
7051 Character class syntax [: :] is reserved for future extensions, Ill-formed
7052 logical name |%s| in prime_env_iter, In string, @%s now must be written as
7053 \@%s, Probable precedence problem on %s, regexp too big, Use of "$$<digit>"
7054 to mean "${$}<digit>" is deprecated
7055
7056 =item Reporting Bugs
7057
7058 =item SEE ALSO
7059
7060 =item HISTORY
7061
7062 =back
7063
7064 =head2 perl5005delta - what's new for perl5.005
7065
7066 =over 4
7067
7068 =item DESCRIPTION
7069
7070 =item About the new versioning system
7071
7072 =item Incompatible Changes
7073
7074 =over 4
7075
7076 =item WARNING:  This version is not binary compatible with Perl 5.004.
7077
7078 =item Default installation structure has changed
7079
7080 =item Perl Source Compatibility
7081
7082 =item C Source Compatibility
7083
7084 =item Binary Compatibility
7085
7086 =item Security fixes may affect compatibility
7087
7088 =item Relaxed new mandatory warnings introduced in 5.004
7089
7090 =item Licensing
7091
7092 =back
7093
7094 =item Core Changes
7095
7096 =over 4
7097
7098 =item Threads
7099
7100 =item Compiler
7101
7102 =item Regular Expressions
7103
7104 Many new and improved optimizations, Many bug fixes, New regular expression
7105 constructs, New operator for precompiled regular expressions, Other
7106 improvements, Incompatible changes
7107
7108 =item   Improved malloc()
7109
7110 =item Quicksort is internally implemented
7111
7112 =item Reliable signals
7113
7114 =item Reliable stack pointers
7115
7116 =item More generous treatment of carriage returns
7117
7118 =item Memory leaks
7119
7120 =item Better support for multiple interpreters
7121
7122 =item Behavior of local() on array and hash elements is now well-defined
7123
7124 =item C<%!> is transparently tied to the L<Errno> module
7125
7126 =item Pseudo-hashes are supported
7127
7128 =item C<EXPR foreach EXPR> is supported
7129
7130 =item Keywords can be globally overridden
7131
7132 =item C<$^E> is meaningful on Win32
7133
7134 =item C<foreach (1..1000000)> optimized
7135
7136 =item C<Foo::> can be used as implicitly quoted package name
7137
7138 =item C<exists $Foo::{Bar::}> tests existence of a package
7139
7140 =item Better locale support
7141
7142 =item Experimental support for 64-bit platforms
7143
7144 =item prototype() returns useful results on builtins
7145
7146 =item Extended support for exception handling
7147
7148 =item Re-blessing in DESTROY() supported for chaining DESTROY() methods
7149
7150 =item All C<printf> format conversions are handled internally
7151
7152 =item New C<INIT> keyword
7153
7154 =item New C<lock> keyword
7155
7156 =item New C<qr//> operator
7157
7158 =item C<our> is now a reserved word
7159
7160 =item Tied arrays are now fully supported
7161
7162 =item Tied handles support is better
7163
7164 =item 4th argument to substr
7165
7166 =item Negative LENGTH argument to splice
7167
7168 =item Magic lvalues are now more magical
7169
7170 =item <> now reads in records
7171
7172 =back
7173
7174 =item Supported Platforms
7175
7176 =over 4
7177
7178 =item New Platforms
7179
7180 =item Changes in existing support
7181
7182 =back
7183
7184 =item Modules and Pragmata
7185
7186 =over 4
7187
7188 =item New Modules
7189
7190 B, Data::Dumper, Dumpvalue, Errno, File::Spec, ExtUtils::Installed,
7191 ExtUtils::Packlist, Fatal, IPC::SysV, Test, Tie::Array, Tie::Handle,
7192 Thread, attrs, fields, re
7193
7194 =item Changes in existing modules
7195
7196 Benchmark, Carp, CGI, Fcntl, Math::Complex, Math::Trig, POSIX, DB_File,
7197 MakeMaker, CPAN, Cwd
7198
7199 =back
7200
7201 =item Utility Changes
7202
7203 =item Documentation Changes
7204
7205 =item New Diagnostics
7206
7207 Ambiguous call resolved as CORE::%s(), qualify as such or use &, Bad index
7208 while coercing array into hash, Bareword "%s" refers to nonexistent
7209 package, Can't call method "%s" on an undefined value, Can't check
7210 filesystem of script "%s" for nosuid, Can't coerce array into hash, Can't
7211 goto subroutine from an eval-string, Can't localize pseudo-hash element,
7212 Can't use %%! because Errno.pm is not available, Cannot find an opnumber
7213 for "%s", Character class syntax [. .] is reserved for future extensions,
7214 Character class syntax [: :] is reserved for future extensions, Character
7215 class syntax [= =] is reserved for future extensions, %s: Eval-group in
7216 insecure regular expression, %s: Eval-group not allowed, use re 'eval', %s:
7217 Eval-group not allowed at run time, Explicit blessing to '' (assuming
7218 package main), Illegal hex digit ignored, No such array field, No such
7219 field "%s" in variable %s of type %s, Out of memory during ridiculously
7220 large request, Range iterator outside integer range, Recursive inheritance
7221 detected while looking for method '%s' %s, Reference found where even-sized
7222 list expected, Undefined value assigned to typeglob, Use of reserved word
7223 "%s" is deprecated, perl: warning: Setting locale failed
7224
7225 =item Obsolete Diagnostics
7226
7227 Can't mktemp(), Can't write to temp file for B<-e>: %s, Cannot open
7228 temporary file, regexp too big
7229
7230 =item Configuration Changes
7231
7232 =item BUGS
7233
7234 =item SEE ALSO
7235
7236 =item HISTORY
7237
7238 =back
7239
7240 =head2 perl5004delta - what's new for perl5.004
7241
7242 =over 4
7243
7244 =item DESCRIPTION
7245
7246 =item Supported Environments
7247
7248 =item Core Changes
7249
7250 =over 4
7251
7252 =item List assignment to %ENV works
7253
7254 =item Change to "Can't locate Foo.pm in @INC" error
7255
7256 =item Compilation option: Binary compatibility with 5.003
7257
7258 =item $PERL5OPT environment variable
7259
7260 =item Limitations on B<-M>, B<-m>, and B<-T> options
7261
7262 =item More precise warnings
7263
7264 =item Deprecated: Inherited C<AUTOLOAD> for non-methods
7265
7266 =item Previously deprecated %OVERLOAD is no longer usable
7267
7268 =item Subroutine arguments created only when they're modified
7269
7270 =item Group vector changeable with C<$)>
7271
7272 =item Fixed parsing of $$<digit>, &$<digit>, etc.
7273
7274 =item Fixed localization of $<digit>, $&, etc.
7275
7276 =item No resetting of $. on implicit close
7277
7278 =item C<wantarray> may return undef
7279
7280 =item C<eval EXPR> determines value of EXPR in scalar context
7281
7282 =item Changes to tainting checks
7283
7284 No glob() or <*>, No spawning if tainted $CDPATH, $ENV, $BASH_ENV, No
7285 spawning if tainted $TERM doesn't look like a terminal name
7286
7287 =item New Opcode module and revised Safe module
7288
7289 =item Embedding improvements
7290
7291 =item Internal change: FileHandle class based on IO::* classes
7292
7293 =item Internal change: PerlIO abstraction interface
7294
7295 =item New and changed syntax
7296
7297 $coderef->(PARAMS)
7298
7299 =item New and changed builtin constants
7300
7301 __PACKAGE__
7302
7303 =item New and changed builtin variables
7304
7305 $^E, $^H, $^M
7306
7307 =item New and changed builtin functions
7308
7309 delete on slices, flock, printf and sprintf, keys as an lvalue, my() in
7310 Control Structures, pack() and unpack(), sysseek(), use VERSION, use Module
7311 VERSION LIST, prototype(FUNCTION), srand, $_ as Default, C<m//gc> does not
7312 reset search position on failure, C<m//x> ignores whitespace before ?*+{},
7313 nested C<sub{}> closures work now, formats work right on changing lexicals
7314
7315 =item New builtin methods
7316
7317 isa(CLASS), can(METHOD), VERSION( [NEED] )
7318
7319 =item TIEHANDLE now supported
7320
7321 TIEHANDLE classname, LIST, PRINT this, LIST, PRINTF this, LIST, READ this
7322 LIST, READLINE this, GETC this, DESTROY this
7323
7324 =item Malloc enhancements
7325
7326 -DPERL_EMERGENCY_SBRK, -DPACK_MALLOC, -DTWO_POT_OPTIMIZE
7327
7328 =item Miscellaneous efficiency enhancements
7329
7330 =back
7331
7332 =item Support for More Operating Systems
7333
7334 =over 4
7335
7336 =item Win32
7337
7338 =item Plan 9
7339
7340 =item QNX
7341
7342 =item AmigaOS
7343
7344 =back
7345
7346 =item Pragmata
7347
7348 use autouse MODULE => qw(sub1 sub2 sub3), use blib, use blib 'dir', use
7349 constant NAME => VALUE, use locale, use ops, use vmsish
7350
7351 =item Modules
7352
7353 =over 4
7354
7355 =item Required Updates
7356
7357 =item Installation directories
7358
7359 =item Module information summary
7360
7361 =item Fcntl
7362
7363 =item IO
7364
7365 =item Math::Complex
7366
7367 =item Math::Trig
7368
7369 =item DB_File
7370
7371 =item Net::Ping
7372
7373 =item Object-oriented overrides for builtin operators
7374
7375 =back
7376
7377 =item Utility Changes
7378
7379 =over 4
7380
7381 =item pod2html
7382
7383 Sends converted HTML to standard output
7384
7385 =item xsubpp
7386
7387 C<void> XSUBs now default to returning nothing
7388
7389 =back
7390
7391 =item C Language API Changes
7392
7393 C<gv_fetchmethod> and C<perl_call_sv>, C<perl_eval_pv>, Extended API for
7394 manipulating hashes
7395
7396 =item Documentation Changes
7397
7398 L<perldelta>, L<perlfaq>, L<perllocale>, L<perltoot>, L<perlapio>,
7399 L<perlmodlib>, L<perldebug>, L<perlsec>
7400
7401 =item New Diagnostics
7402
7403 "my" variable %s masks earlier declaration in same scope, %s argument is
7404 not a HASH element or slice, Allocation too large: %lx, Allocation too
7405 large, Applying %s to %s will act on scalar(%s), Attempt to free
7406 nonexistent shared string, Attempt to use reference as lvalue in substr,
7407 Bareword "%s" refers to nonexistent package, Can't redefine active sort
7408 subroutine %s, Can't use bareword ("%s") as %s ref while "strict refs" in
7409 use, Cannot resolve method `%s' overloading `%s' in package `%s', Constant
7410 subroutine %s redefined, Constant subroutine %s undefined, Copy method did
7411 not return a reference, Died, Exiting pseudo-block via %s, Identifier too
7412 long, Illegal character %s (carriage return), Illegal switch in PERL5OPT:
7413 %s, Integer overflow in hex number, Integer overflow in octal number,
7414 internal error: glob failed, Invalid conversion in %s: "%s", Invalid type
7415 in pack: '%s', Invalid type in unpack: '%s', Name "%s::%s" used only once:
7416 possible typo, Null picture in formline, Offset outside string, Out of
7417 memory!, Out of memory during request for %s, panic: frexp, Possible
7418 attempt to put comments in qw() list, Possible attempt to separate words
7419 with commas, Scalar value @%s{%s} better written as $%s{%s}, Stub found
7420 while resolving method `%s' overloading `%s' in %s, Too late for "B<-T>"
7421 option, untie attempted while %d inner references still exist, Unrecognized
7422 character %s, Unsupported function fork, Use of "$$<digit>" to mean
7423 "${$}<digit>" is deprecated, Value of %s can be "0"; test with defined(),
7424 Variable "%s" may be unavailable, Variable "%s" will not stay shared,
7425 Warning: something's wrong, Ill-formed logical name |%s| in prime_env_iter,
7426 Got an error from DosAllocMem, Malformed PERLLIB_PREFIX, PERL_SH_DIR too
7427 long, Process terminated by SIG%s
7428
7429 =item BUGS
7430
7431 =item SEE ALSO
7432
7433 =item HISTORY
7434
7435 =back
7436
7437 =head2 perlartistic - the Perl Artistic License
7438
7439 =over 4
7440
7441 =item SYNOPSIS
7442
7443 =item DESCRIPTION
7444
7445 =item The "Artistic License"
7446
7447 =over 4
7448
7449 =item Preamble
7450
7451 =item Definitions
7452
7453 "Package", "Standard Version", "Copyright Holder", "You", "Reasonable
7454 copying fee", "Freely Available"
7455
7456 =item Conditions
7457
7458 a), b), c), d), a), b), c), d)
7459
7460 =back
7461
7462 =back
7463
7464 =head2 perlgpl - the GNU General Public License, version 2
7465
7466 =over 4
7467
7468 =item SYNOPSIS
7469
7470 =back
7471
7472 =over 4
7473
7474 =item DESCRIPTION
7475
7476 =item GNU GENERAL PUBLIC LICENSE
7477
7478 =back
7479
7480 =head1 PRAGMA DOCUMENTATION
7481
7482 =head2 attrs - set/get attributes of a subroutine (deprecated)
7483
7484 =over 4
7485
7486 =item SYNOPSIS
7487
7488 =item DESCRIPTION
7489
7490 method, locked
7491
7492 =back
7493
7494 =head2 re - Perl pragma to alter regular expression behaviour
7495
7496 =over 4
7497
7498 =item SYNOPSIS
7499
7500 =item DESCRIPTION
7501
7502 =back
7503
7504 =head2 threadshared::shared, threads::shared - Perl extension for sharing
7505 data structures between threads
7506
7507 =over 4
7508
7509 =item SYNOPSIS
7510
7511 =item DESCRIPTION
7512
7513 =item EXPORT
7514
7515 =item FUNCTIONS
7516
7517 share VARIABLE, lock VARIABLE, cond_wait VARIABLE, cond_signal VARIABLE,
7518 cond_broadcast VARIABLE
7519
7520 =item NOTES
7521
7522 =item BUGS
7523
7524 =item AUTHOR
7525
7526 =item SEE ALSO
7527
7528 =back
7529
7530 =head2 threads - Perl extension allowing use of interpreter based threads
7531 from perl
7532
7533 =over 4
7534
7535 =item SYNOPSIS
7536
7537 =item DESCRIPTION
7538
7539 $thread = threads->create(function, LIST), $thread->join, $thread->detach,
7540 threads->self, $thread->tid, threads->object( tid ), threads->yield();,
7541 threads->list();, async BLOCK;
7542
7543 =item WARNINGS
7544
7545 A thread exited while %d other threads were still running
7546
7547 =item TODO
7548
7549 =item BUGS
7550
7551 Parent-Child threads, Returning objects, Creating threads inside BEGIN
7552 blocks, PERL_OLD_SIGNALS are not threadsafe, will not be
7553
7554 =item AUTHOR and COPYRIGHT
7555
7556 =item SEE ALSO
7557
7558 =back
7559
7560 =head2 assertions - select assertions in blocks of code
7561
7562 =over 4
7563
7564 =item SYNOPSIS
7565
7566 =item DESCRIPTION
7567
7568 =item SEE ALSO
7569
7570 =item AUTHOR
7571
7572 =item COPYRIGHT AND LICENSE
7573
7574 =back
7575
7576 =head2 assertions::activate - activate assertions
7577
7578 =over 4
7579
7580 =item SYNOPSIS
7581
7582 =item DESCRIPTION
7583
7584 =item SEE ALSO
7585
7586 =item AUTHOR
7587
7588 =item COPYRIGHT AND LICENSE
7589
7590 =back
7591
7592 =head2 attributes - get/set subroutine or variable attributes
7593
7594 =over 4
7595
7596 =item SYNOPSIS
7597
7598 =item DESCRIPTION
7599
7600 =over 4
7601
7602 =item Built-in Attributes
7603
7604 locked, method, lvalue
7605
7606 =item Available Subroutines
7607
7608 get, reftype
7609
7610 =item Package-specific Attribute Handling
7611
7612 FETCH_I<type>_ATTRIBUTES, MODIFY_I<type>_ATTRIBUTES
7613
7614 =item Syntax of Attribute Lists
7615
7616 =back
7617
7618 =item EXPORTS
7619
7620 =over 4
7621
7622 =item Default exports
7623
7624 =item Available exports
7625
7626 =item Export tags defined
7627
7628 =back
7629
7630 =item EXAMPLES
7631
7632 =item SEE ALSO
7633
7634 =back
7635
7636 =head2 autouse - postpone load of modules until a function is used
7637
7638 =over 4
7639
7640 =item SYNOPSIS
7641
7642 =item DESCRIPTION
7643
7644 =item WARNING
7645
7646 =item AUTHOR
7647
7648 =item SEE ALSO
7649
7650 =back
7651
7652 =head2 base - Establish IS-A relationship with base class at compile time
7653
7654 =over 4
7655
7656 =item SYNOPSIS
7657
7658 =item DESCRIPTION
7659
7660 =item HISTORY
7661
7662 =item CAVEATS
7663
7664 =item SEE ALSO
7665
7666 =back
7667
7668 =head2 bigint - Transparent BigInteger support for Perl
7669
7670 =over 4
7671
7672 =item SYNOPSIS
7673
7674 =item DESCRIPTION
7675
7676 =over 4
7677
7678 =item OPTIONS
7679
7680 a or accuracy, p or precision, t or trace, l or lib, v or version
7681
7682 =item MATH LIBRARY
7683
7684 =item INTERNAL FORMAT
7685
7686 =item SIGN
7687
7688 =item METHODS
7689
7690 =item CAVEAT
7691
7692 =back
7693
7694 =item MODULES USED
7695
7696 =item EXAMPLES
7697
7698 =item LICENSE
7699
7700 =item SEE ALSO
7701
7702 =item AUTHORS
7703
7704 =back
7705
7706 =head2 bignum - Transparent BigNumber support for Perl
7707
7708 =over 4
7709
7710 =item SYNOPSIS
7711
7712 =item DESCRIPTION
7713
7714 =over 4
7715
7716 =item OPTIONS
7717
7718 a or accuracy, p or precision, t or trace, l or lib, v or version
7719
7720 =item METHODS
7721
7722 =item CAVEAT
7723
7724 inf(), NaN(), upgrade()
7725
7726 =item MATH LIBRARY
7727
7728 =item INTERNAL FORMAT
7729
7730 =item SIGN
7731
7732 =back
7733
7734 =item MODULES USED
7735
7736 =item EXAMPLES
7737
7738 =item LICENSE
7739
7740 =item SEE ALSO
7741
7742 =item AUTHORS
7743
7744 =back
7745
7746 =head2 bigrat - Transparent BigNumber/BigRational support for Perl
7747
7748 =over 4
7749
7750 =item SYNOPSIS
7751
7752 =item DESCRIPTION
7753
7754 =over 4
7755
7756 =item MODULES USED
7757
7758 =item MATH LIBRARY
7759
7760 =item SIGN
7761
7762 =item METHODS
7763
7764 =item CAVEAT
7765
7766 =back
7767
7768 =item EXAMPLES
7769
7770         perl -Mbigrat -le 'print sqrt(33)'
7771         perl -Mbigrat -le 'print 2*255'
7772         perl -Mbigrat -le 'print 4.5+2*255'
7773         perl -Mbigrat -le 'print 3/7 + 5/7 + 8/3'       
7774         perl -Mbigrat -le 'print 12->is_odd()';
7775
7776 =item LICENSE
7777
7778 =item SEE ALSO
7779
7780 =item AUTHORS
7781
7782 =back
7783
7784 =head2 blib - Use MakeMaker's uninstalled version of a package
7785
7786 =over 4
7787
7788 =item SYNOPSIS
7789
7790 =item DESCRIPTION
7791
7792 =item BUGS
7793
7794 =item AUTHOR
7795
7796 =back
7797
7798 =head2 bytes - Perl pragma to force byte semantics rather than character
7799 semantics
7800
7801 =over 4
7802
7803 =item SYNOPSIS
7804
7805 =item DESCRIPTION
7806
7807 =item LIMITATIONS
7808
7809 =item SEE ALSO
7810
7811 =back
7812
7813 =head2 charnames - define character names for C<\N{named}> string literal
7814 escapes
7815
7816 =over 4
7817
7818 =item SYNOPSIS
7819
7820 =item DESCRIPTION
7821
7822 =item CUSTOM TRANSLATORS
7823
7824 =item CUSTOM ALIASES
7825
7826 =over 4
7827
7828 =item Anonymous hashes
7829
7830 =item Alias file
7831
7832 =item Alias shortcut
7833
7834 =back
7835
7836 =item charnames::viacode(code)
7837
7838 =item charnames::vianame(name)
7839
7840 =item ALIASES
7841
7842 =item ILLEGAL CHARACTERS
7843
7844 =item BUGS
7845
7846 =back
7847
7848 =head2 constant - Perl pragma to declare constants
7849
7850 =over 4
7851
7852 =item SYNOPSIS
7853
7854 =item DESCRIPTION
7855
7856 =item NOTES
7857
7858 =over 4
7859
7860 =item List constants
7861
7862 =item Defining multiple constants at once
7863
7864 =item Magic constants
7865
7866 =back
7867
7868 =item TECHNICAL NOTES
7869
7870 =item BUGS
7871
7872 =item AUTHOR
7873
7874 =item COPYRIGHT
7875
7876 =back
7877
7878 =head2 diagnostics - Perl compiler pragma to force verbose warning
7879 diagnostics
7880
7881 =over 4
7882
7883 =item SYNOPSIS
7884
7885 =item DESCRIPTION
7886
7887 =over 4
7888
7889 =item The C<diagnostics> Pragma
7890
7891 =item The I<splain> Program
7892
7893 =back
7894
7895 =item EXAMPLES
7896
7897 =item INTERNALS
7898
7899 =item BUGS
7900
7901 =item AUTHOR
7902
7903 =back
7904
7905 =head2 fields - compile-time class fields
7906
7907 =over 4
7908
7909 =item SYNOPSIS
7910
7911 =item DESCRIPTION
7912
7913 new, phash
7914
7915 =item SEE ALSO
7916
7917 =back
7918
7919 =head2 filetest - Perl pragma to control the filetest permission operators
7920
7921 =over 4
7922
7923 =item SYNOPSIS
7924
7925 =item DESCRIPTION
7926
7927 =over 4
7928
7929 =item subpragma access
7930
7931 =back
7932
7933 =back
7934
7935 =head2 if - C<use> a Perl module if a condition holds
7936
7937 =over 4
7938
7939 =item SYNOPSIS
7940
7941 =item DESCRIPTION
7942
7943 =item BUGS
7944
7945 =item AUTHOR
7946
7947 =back
7948
7949 =head2 integer - Perl pragma to use integer arithmetic instead of floating
7950 point
7951
7952 =over 4
7953
7954 =item SYNOPSIS
7955
7956 =item DESCRIPTION
7957
7958 =back
7959
7960 =head2 less - perl pragma to request less of something from the compiler
7961
7962 =over 4
7963
7964 =item SYNOPSIS
7965
7966 =item DESCRIPTION
7967
7968 =back
7969
7970 =head2 locale - Perl pragma to use and avoid POSIX locales for built-in
7971 operations
7972
7973 =over 4
7974
7975 =item SYNOPSIS
7976
7977 =item DESCRIPTION
7978
7979 =back
7980
7981 =head2 open - perl pragma to set default PerlIO layers for input and output
7982
7983 =over 4
7984
7985 =item SYNOPSIS
7986
7987 =item DESCRIPTION
7988
7989 =item NONPERLIO FUNCTIONALITY
7990
7991 =item IMPLEMENTATION DETAILS
7992
7993 =item SEE ALSO
7994
7995 =back
7996
7997 =head2 overload - Package for overloading perl operations
7998
7999 =over 4
8000
8001 =item SYNOPSIS
8002
8003 =item DESCRIPTION
8004
8005 =over 4
8006
8007 =item Declaration of overloaded functions
8008
8009 =item Calling Conventions for Binary Operations
8010
8011 FALSE, TRUE, C<undef>
8012
8013 =item Calling Conventions for Unary Operations
8014
8015 =item Calling Conventions for Mutators
8016
8017 C<++> and C<-->, C<x=> and other assignment versions
8018
8019 =item Overloadable Operations
8020
8021 I<Arithmetic operations>, I<Comparison operations>, I<Bit operations>,
8022 I<Increment and decrement>, I<Transcendental functions>, I<Boolean, string
8023 and numeric conversion>, I<Iteration>, I<Dereferencing>, I<Special>
8024
8025 =item Inheritance and overloading
8026
8027 Strings as values of C<use overload> directive, Overloading of an operation
8028 is inherited by derived classes
8029
8030 =back
8031
8032 =item SPECIAL SYMBOLS FOR C<use overload>
8033
8034 =over 4
8035
8036 =item Last Resort
8037
8038 =item Fallback
8039
8040 C<undef>, TRUE, defined, but FALSE
8041
8042 =item Copy Constructor
8043
8044 B<Example>
8045
8046 =back
8047
8048 =item MAGIC AUTOGENERATION
8049
8050 I<Assignment forms of arithmetic operations>, I<Conversion operations>,
8051 I<Increment and decrement>, C<abs($a)>, I<Unary minus>, I<Negation>,
8052 I<Concatenation>, I<Comparison operations>, I<Iterator>, I<Dereferencing>,
8053 I<Copy operator>
8054
8055 =item Losing overloading
8056
8057 =item Run-time Overloading
8058
8059 =item Public functions
8060
8061 overload::StrVal(arg), overload::Overloaded(arg), overload::Method(obj,op)
8062
8063 =item Overloading constants
8064
8065 integer, float, binary, q, qr
8066
8067 =item IMPLEMENTATION
8068
8069 =item Metaphor clash
8070
8071 =item Cookbook
8072
8073 =over 4
8074
8075 =item Two-face scalars
8076
8077 =item Two-face references
8078
8079 =item Symbolic calculator
8080
8081 =item I<Really> symbolic calculator
8082
8083 =back
8084
8085 =item AUTHOR
8086
8087 =item DIAGNOSTICS
8088
8089 Odd number of arguments for overload::constant, `%s' is not an overloadable
8090 type, `%s' is not a code reference
8091
8092 =item BUGS
8093
8094 =back
8095
8096 =head2 sigtrap - Perl pragma to enable simple signal handling
8097
8098 =over 4
8099
8100 =item SYNOPSIS
8101
8102 =item DESCRIPTION
8103
8104 =item OPTIONS
8105
8106 =over 4
8107
8108 =item SIGNAL HANDLERS
8109
8110 B<stack-trace>, B<die>, B<handler> I<your-handler>
8111
8112 =item SIGNAL LISTS
8113
8114 B<normal-signals>, B<error-signals>, B<old-interface-signals>
8115
8116 =item OTHER
8117
8118 B<untrapped>, B<any>, I<signal>, I<number>
8119
8120 =back
8121
8122 =item EXAMPLES
8123
8124 =back
8125
8126 =head2 sort - perl pragma to control sort() behaviour
8127
8128 =over 4
8129
8130 =item SYNOPSIS
8131
8132 =item DESCRIPTION
8133
8134 =item CAVEATS
8135
8136 =back
8137
8138 =head2 strict - Perl pragma to restrict unsafe constructs
8139
8140 =over 4
8141
8142 =item SYNOPSIS
8143
8144 =item DESCRIPTION
8145
8146 C<strict refs>, C<strict vars>, C<strict subs>
8147
8148 =item HISTORY
8149
8150 =back
8151
8152 =head2 subs - Perl pragma to predeclare sub names
8153
8154 =over 4
8155
8156 =item SYNOPSIS
8157
8158 =item DESCRIPTION
8159
8160 =back
8161
8162 =head2 utf8 - Perl pragma to enable/disable UTF-8 (or UTF-EBCDIC) in source
8163 code
8164
8165 =over 4
8166
8167 =item SYNOPSIS
8168
8169 =item DESCRIPTION
8170
8171 =over 4
8172
8173 =item Utility functions
8174
8175 $num_octets = utf8::upgrade($string), $success = utf8::downgrade($string[,
8176 FAIL_OK]), utf8::encode($string), utf8::decode($string), $flag =
8177 utf8::is_utf8(STRING), $flag = utf8::valid(STRING)
8178
8179 =back
8180
8181 =item BUGS
8182
8183 =item SEE ALSO
8184
8185 =back
8186
8187 =head2 vars - Perl pragma to predeclare global variable names (obsolete)
8188
8189 =over 4
8190
8191 =item SYNOPSIS
8192
8193 =item DESCRIPTION
8194
8195 =back
8196
8197 =head2 version - Perl extension for Version Objects
8198
8199 =over 4
8200
8201 =item SYNOPSIS
8202
8203 =item DESCRIPTION
8204
8205 =over 4
8206
8207 =item What IS a version
8208
8209 Numeric Versions, V-String Versions
8210
8211 =item Numeric Versions
8212
8213 =item V-String Versions
8214
8215 =item Object Methods
8216
8217 New Operator, Stringification, Numification, Comparison operators, Logical
8218 Operators
8219
8220 =item Quoting
8221
8222 =item Types of Versions Objects
8223
8224 Ordinary versions, alpha versions
8225
8226 =item Replacement UNIVERSAL::VERSION
8227
8228 =back
8229
8230 =item EXPORT
8231
8232 =item AUTHOR
8233
8234 =item SEE ALSO
8235
8236 =back
8237
8238 =head2 vmsish - Perl pragma to control VMS-specific language features
8239
8240 =over 4
8241
8242 =item SYNOPSIS
8243
8244 =item DESCRIPTION
8245
8246 C<vmsish status>, C<vmsish exit>, C<vmsish time>, C<vmsish hushed>
8247
8248 =back
8249
8250 =head2 warnings - Perl pragma to control optional warnings
8251
8252 =over 4
8253
8254 =item SYNOPSIS
8255
8256 =item DESCRIPTION
8257
8258 use warnings::register, warnings::enabled(), warnings::enabled($category),
8259 warnings::enabled($object), warnings::warn($message),
8260 warnings::warn($category, $message), warnings::warn($object, $message),
8261 warnings::warnif($message), warnings::warnif($category, $message),
8262 warnings::warnif($object, $message)
8263
8264 =back
8265
8266 =head2 warnings::register - warnings import function
8267
8268 =over 4
8269
8270 =item SYNOPSIS
8271
8272 =item DESCRIPTION
8273
8274 =back
8275
8276 =head1 MODULE DOCUMENTATION
8277
8278 =head2 AnyDBM_File - provide framework for multiple DBMs
8279
8280 =over 4
8281
8282 =item SYNOPSIS
8283
8284 =item DESCRIPTION
8285
8286 =over 4
8287
8288 =item DBM Comparisons
8289
8290 [0], [1], [2], [3]
8291
8292 =back
8293
8294 =item SEE ALSO
8295
8296 =back
8297
8298 =head2 Attribute::Handlers - Simpler definition of attribute handlers
8299
8300 =over 4
8301
8302 =item VERSION
8303
8304 =item SYNOPSIS
8305
8306 =item DESCRIPTION
8307
8308 [0], [1], [2], [3], [4], [5]
8309
8310 =over 4
8311
8312 =item Typed lexicals
8313
8314 =item Type-specific attribute handlers
8315
8316 =item Non-interpretive attribute handlers
8317
8318 =item Phase-specific attribute handlers
8319
8320 =item Attributes as C<tie> interfaces
8321
8322 =back
8323
8324 =item EXAMPLES
8325
8326 =item DIAGNOSTICS
8327
8328 C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
8329 attributes>, C<Declaration of %s attribute in package %s may clash with
8330 future reserved word>, C<Can't have two ATTR specifiers on one subroutine>,
8331 C<Can't autotie a %s>, C<Internal error: %s symbol went missing>, C<Won't
8332 be able to apply END handler>
8333
8334 =item AUTHOR
8335
8336 =item BUGS
8337
8338 =item COPYRIGHT
8339
8340 =back
8341
8342 =head2 AutoLoader - load subroutines only on demand
8343
8344 =over 4
8345
8346 =item SYNOPSIS
8347
8348 =item DESCRIPTION
8349
8350 =over 4
8351
8352 =item Subroutine Stubs
8353
8354 =item Using B<AutoLoader>'s AUTOLOAD Subroutine
8355
8356 =item Overriding B<AutoLoader>'s AUTOLOAD Subroutine
8357
8358 =item Package Lexicals
8359
8360 =item Not Using AutoLoader
8361
8362 =item B<AutoLoader> vs. B<SelfLoader>
8363
8364 =back
8365
8366 =item CAVEATS
8367
8368 =item SEE ALSO
8369
8370 =back
8371
8372 =head2 AutoSplit - split a package for autoloading
8373
8374 =over 4
8375
8376 =item SYNOPSIS
8377
8378 =item DESCRIPTION
8379
8380 $keep, $check, $modtime
8381
8382 =over 4
8383
8384 =item Multiple packages
8385
8386 =back
8387
8388 =item DIAGNOSTICS
8389
8390 =back
8391
8392 =head2 B - The Perl Compiler
8393
8394 =over 4
8395
8396 =item SYNOPSIS
8397
8398 =item DESCRIPTION
8399
8400 =item OVERVIEW
8401
8402 =item Utility Functions
8403
8404 =over 4
8405
8406 =item Functions Returning C<B::SV>, C<B::AV>, C<B::HV>, and C<B::CV>
8407 objects
8408
8409 sv_undef, sv_yes, sv_no, svref_2object(SVREF), amagic_generation, init_av,
8410 check_av, begin_av, end_av, comppadlist, regex_padav, main_cv
8411
8412 =item Functions for Examining the Symbol Table
8413
8414 walksymtable(SYMREF, METHOD, RECURSE, PREFIX)
8415
8416 =item Functions Returning C<B::OP> objects or for walking op trees
8417
8418 main_root, main_start, walkoptree(OP, METHOD), walkoptree_debug(DEBUG)
8419
8420 =item Miscellaneous Utility Functions
8421
8422 ppname(OPNUM), hash(STR), cast_I32(I), minus_c, cstring(STR),
8423 perlstring(STR), class(OBJ), threadsv_names
8424
8425 =back
8426
8427 =item OVERVIEW OF CLASSES
8428
8429 =over 4
8430
8431 =item SV-RELATED CLASSES
8432
8433 =item B::SV Methods
8434
8435 REFCNT, FLAGS, object_2svref
8436
8437 =item B::IV Methods
8438
8439 IV, IVX, UVX, int_value, needs64bits, packiv
8440
8441 =item B::NV Methods
8442
8443 NV, NVX
8444
8445 =item B::RV Methods
8446
8447 RV
8448
8449 =item B::PV Methods
8450
8451 PV, RV, PVX
8452
8453 =item B::PVMG Methods
8454
8455 MAGIC, SvSTASH
8456
8457 =item B::MAGIC Methods
8458
8459 MOREMAGIC, precomp, PRIVATE, TYPE, FLAGS, OBJ, PTR, REGEX
8460
8461 =item B::PVLV Methods
8462
8463 TARGOFF, TARGLEN, TYPE, TARG
8464
8465 =item B::BM Methods
8466
8467 USEFUL, PREVIOUS, RARE, TABLE
8468
8469 =item B::GV Methods
8470
8471 is_empty, NAME, SAFENAME, STASH, SV, IO, FORM, AV, HV, EGV, CV, CVGEN,
8472 LINE, FILE, FILEGV, GvREFCNT, FLAGS
8473
8474 =item B::IO Methods
8475
8476 LINES, PAGE, PAGE_LEN, LINES_LEFT, TOP_NAME, TOP_GV, FMT_NAME, FMT_GV,
8477 BOTTOM_NAME, BOTTOM_GV, SUBPROCESS, IoTYPE, IoFLAGS, IsSTD
8478
8479 =item B::AV Methods
8480
8481 FILL, MAX, OFF, ARRAY, ARRAYelt, AvFLAGS
8482
8483 =item B::CV Methods
8484
8485 STASH, START, ROOT, GV, FILE, DEPTH, PADLIST, OUTSIDE, OUTSIDE_SEQ, XSUB,
8486 XSUBANY, CvFLAGS, const_sv
8487
8488 =item B::HV Methods
8489
8490 FILL, MAX, KEYS, RITER, NAME, PMROOT, ARRAY
8491
8492 =item OP-RELATED CLASSES
8493
8494 =item B::OP Methods
8495
8496 next, sibling, name, ppaddr, desc, targ, type, seq, flags, private
8497
8498 =item B::UNOP METHOD
8499
8500 first
8501
8502 =item B::BINOP METHOD
8503
8504 last
8505
8506 =item B::LOGOP METHOD
8507
8508 other
8509
8510 =item B::LISTOP METHOD
8511
8512 children
8513
8514 =item B::PMOP Methods
8515
8516 pmreplroot, pmreplstart, pmnext, pmregexp, pmflags, pmdynflags,
8517 pmpermflags, precomp, pmoffset
8518
8519 =item B::SVOP METHOD
8520
8521 sv, gv
8522
8523 =item B::PADOP METHOD
8524
8525 padix
8526
8527 =item B::PVOP METHOD
8528
8529 pv
8530
8531 =item B::LOOP Methods
8532
8533 redoop, nextop, lastop
8534
8535 =item B::COP Methods
8536
8537 label, stash, stashpv, file, cop_seq, arybase, line, warnings, io
8538
8539 =back
8540
8541 =item AUTHOR
8542
8543 =back
8544
8545 =head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
8546 bytecode
8547
8548 =over 4
8549
8550 =item SYNOPSIS
8551
8552 =item DESCRIPTION
8553
8554 %insn_data, @insn_name, @optype, @specialsv_name
8555
8556 =item AUTHOR
8557
8558 =back
8559
8560 =head2 B::Assembler - Assemble Perl bytecode
8561
8562 =over 4
8563
8564 =item SYNOPSIS
8565
8566 =item DESCRIPTION
8567
8568 =item AUTHORS
8569
8570 =back
8571
8572 =head2 B::Bblock - Walk basic blocks
8573
8574 =over 4
8575
8576 =item SYNOPSIS
8577
8578 =item DESCRIPTION
8579
8580 =over 4
8581
8582 =item Functions
8583
8584 B<find_leaders>
8585
8586 =back
8587
8588 =item AUTHOR
8589
8590 =back
8591
8592 =head2 B::Bytecode - Perl compiler's bytecode backend
8593
8594 =over 4
8595
8596 =item SYNOPSIS
8597
8598 =item DESCRIPTION
8599
8600 =item EXAMPLE
8601
8602 =item OPTIONS
8603
8604 B<-b>, B<-H>, B<-k>, B<-o>I<outfile>, B<-s>
8605
8606 =item KNOWN BUGS
8607
8608 =item NOTICE
8609
8610 =item AUTHORS
8611
8612 =back
8613
8614 =head2 B::C - Perl compiler's C backend
8615
8616 =over 4
8617
8618 =item SYNOPSIS
8619
8620 =item DESCRIPTION
8621
8622 =item OPTIONS
8623
8624 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-D>, B<-Do>, B<-Dc>, B<-DA>,
8625 B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fsave-data>, B<-fppaddr>, B<-fwarn-sv>,
8626 B<-fuse-script-name>, B<-fsave-sig-hash>, B<-On>, B<-O0>, B<-O1>, B<-O2>,
8627 B<-llimit>
8628
8629 =item EXAMPLES
8630
8631 =item BUGS
8632
8633 =item AUTHOR
8634
8635 =back
8636
8637 =head2 B::CC - Perl compiler's optimized C translation backend
8638
8639 =over 4
8640
8641 =item SYNOPSIS
8642
8643 =item DESCRIPTION
8644
8645 =item OPTIONS
8646
8647 B<-ofilename>, B<-v>, B<-->, B<-uPackname>, B<-mModulename>, B<-D>, B<-Dr>,
8648 B<-DO>, B<-Ds>, B<-Dp>, B<-Dq>, B<-Dl>, B<-Dt>, B<-f>,
8649 B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On>
8650
8651 =item EXAMPLES
8652
8653 =item BUGS
8654
8655 =item DIFFERENCES
8656
8657 =over 4
8658
8659 =item Loops
8660
8661 =item Context of ".."
8662
8663 =item Arithmetic
8664
8665 =item Deprecated features
8666
8667 =back
8668
8669 =item AUTHOR
8670
8671 =back
8672
8673 =head2 B::Concise - Walk Perl syntax tree, printing concise info about ops
8674
8675 =over 4
8676
8677 =item SYNOPSIS
8678
8679 =item DESCRIPTION
8680
8681 =item EXAMPLE
8682
8683 =item OPTIONS
8684
8685 B<-basic>, B<-exec>, B<-tree>, B<-compact>, B<-loose>, B<-vt>, B<-ascii>,
8686 B<-main>, B<-base>I<n>, B<-bigendian>, B<-littleendian>, B<-concise>,
8687 B<-terse>, B<-linenoise>, B<-debug>, B<-env>
8688
8689 =item FORMATTING SPECIFICATIONS
8690
8691 B<(x(>I<exec_text>B<;>I<basic_text>B<)x)>, B<(*(>I<text>B<)*)>,
8692 B<(*(>I<text1>B<;>I<text2>B<)*)>, B<(?(>I<text1>B<#>I<var>I<Text2>B<)?)>,
8693 B<#>I<var>, B<#>I<var>I<N>, B<~>, B<#addr>, B<#arg>, B<#class>,
8694 B<#classsym>, B<#coplabel>, B<#exname>, B<#extarg>, B<#firstaddr>,
8695 B<#flags>, B<#flagval>, B<#hyphseq>, B<#label>, B<#lastaddr>, B<#name>,
8696 B<#NAME>, B<#next>, B<#nextaddr>, B<#noise>, B<#private>, B<#privval>,
8697 B<#seq>, B<#seqnum>, B<#sibaddr>, B<#svaddr>, B<#svclass>, B<#svval>,
8698 B<#targ>, B<#targarg>, B<#targarglife>, B<#typenum>
8699
8700 =item ABBREVIATIONS
8701
8702 =over 4
8703
8704 =item OP flags abbreviations
8705
8706 =item OP class abbreviations
8707
8708 =back
8709
8710 =item Using B::Concise outside of the O framework
8711
8712 =item AUTHOR
8713
8714 =back
8715
8716 =head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
8717
8718 =over 4
8719
8720 =item SYNOPSIS
8721
8722 =item DESCRIPTION
8723
8724 =item AUTHOR
8725
8726 =back
8727
8728 =head2 B::Deparse - Perl compiler backend to produce perl code
8729
8730 =over 4
8731
8732 =item SYNOPSIS
8733
8734 =item DESCRIPTION
8735
8736 =item OPTIONS
8737
8738 B<-d>, B<-f>I<FILE>, B<-l>, B<-p>, B<-P>, B<-q>, B<-s>I<LETTERS>, B<C>,
8739 B<i>I<NUMBER>, B<T>, B<v>I<STRING>B<.>, B<-x>I<LEVEL>
8740
8741 =item USING B::Deparse AS A MODULE
8742
8743 =over 4
8744
8745 =item Synopsis
8746
8747 =item Description
8748
8749 =item new
8750
8751 =item ambient_pragmas
8752
8753 strict, $[, bytes, utf8, integer, re, warnings, hint_bits, warning_bits
8754
8755 =item coderef2text
8756
8757 =back
8758
8759 =item BUGS
8760
8761 =item AUTHOR
8762
8763 =back
8764
8765 =head2 B::Disassembler - Disassemble Perl bytecode
8766
8767 =over 4
8768
8769 =item SYNOPSIS
8770
8771 =item DESCRIPTION
8772
8773 =item AUTHOR
8774
8775 =back
8776
8777 =head2 B::Lint - Perl lint
8778
8779 =over 4
8780
8781 =item SYNOPSIS
8782
8783 =item DESCRIPTION
8784
8785 =item OPTIONS AND LINT CHECKS
8786
8787 B<context>, B<implicit-read> and B<implicit-write>, B<bare-subs>,
8788 B<dollar-underscore>, B<private-names>, B<undefined-subs>,
8789 B<regexp-variables>, B<all>, B<none>
8790
8791 =item NON LINT-CHECK OPTIONS
8792
8793 B<-u Package>
8794
8795 =item BUGS
8796
8797 =item AUTHOR
8798
8799 =back
8800
8801 =head2 B::O, O - Generic interface to Perl Compiler backends
8802
8803 =over 4
8804
8805 =item SYNOPSIS
8806
8807 =item DESCRIPTION
8808
8809 =item CONVENTIONS
8810
8811 =item IMPLEMENTATION
8812
8813 =item BUGS
8814
8815 =item AUTHOR
8816
8817 =back
8818
8819 =head2 B::Showlex - Show lexical variables used in functions or files
8820
8821 =over 4
8822
8823 =item SYNOPSIS
8824
8825 =item DESCRIPTION
8826
8827 =item AUTHOR
8828
8829 =back
8830
8831 =head2 B::Stackobj - Helper module for CC backend
8832
8833 =over 4
8834
8835 =item SYNOPSIS
8836
8837 =item DESCRIPTION
8838
8839 =item AUTHOR
8840
8841 =back
8842
8843 =head2 B::Stash - show what stashes are loaded
8844
8845 =head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
8846
8847 =over 4
8848
8849 =item SYNOPSIS
8850
8851 =item DESCRIPTION
8852
8853 =item AUTHOR
8854
8855 =back
8856
8857 =head2 B::Xref - Generates cross reference reports for Perl programs
8858
8859 =over 4
8860
8861 =item SYNOPSIS
8862
8863 =item DESCRIPTION
8864
8865 =item OPTIONS
8866
8867 C<-oFILENAME>, C<-r>, C<-d>, C<-D[tO]>
8868
8869 =item BUGS
8870
8871 =item AUTHOR
8872
8873 =back
8874
8875 =head2 Benchmark - benchmark running times of Perl code
8876
8877 =over 4
8878
8879 =item SYNOPSIS
8880
8881 =item DESCRIPTION
8882
8883 =over 4
8884
8885 =item Methods
8886
8887 new, debug, iters
8888
8889 =item Standard Exports
8890
8891 timeit(COUNT, CODE), timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] ),
8892 timethese ( COUNT, CODEHASHREF, [ STYLE ] ), timediff ( T1, T2 ), timestr (
8893 TIMEDIFF, [ STYLE, [ FORMAT ] ] )
8894
8895 =item Optional Exports
8896
8897 clearcache ( COUNT ), clearallcache ( ), cmpthese ( COUNT, CODEHASHREF, [
8898 STYLE ] ), cmpthese ( RESULTSHASHREF, [ STYLE ] ), countit(TIME, CODE),
8899 disablecache ( ), enablecache ( ), timesum ( T1, T2 )
8900
8901 =item :hireswallclock
8902
8903 =back
8904
8905 =item NOTES
8906
8907 =item EXAMPLES
8908
8909 =item INHERITANCE
8910
8911 =item CAVEATS
8912
8913 =item SEE ALSO
8914
8915 =item AUTHORS
8916
8917 =item MODIFICATION HISTORY
8918
8919 =back
8920
8921 =head2 ByteLoader - load byte compiled perl code
8922
8923 =over 4
8924
8925 =item SYNOPSIS
8926
8927 =item DESCRIPTION
8928
8929 =item AUTHOR
8930
8931 =item SEE ALSO
8932
8933 =back
8934
8935 =head2 CGI - Simple Common Gateway Interface Class
8936
8937 =over 4
8938
8939 =item SYNOPSIS
8940
8941 =item ABSTRACT
8942
8943 =item DESCRIPTION
8944
8945 =over 4
8946
8947 =item PROGRAMMING STYLE
8948
8949 =item CALLING CGI.PM ROUTINES
8950
8951 =item CREATING A NEW QUERY OBJECT (OBJECT-ORIENTED STYLE):
8952
8953 =item CREATING A NEW QUERY OBJECT FROM AN INPUT FILE
8954
8955 =item FETCHING A LIST OF KEYWORDS FROM THE QUERY:
8956
8957 =item FETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
8958
8959 =item FETCHING THE VALUE OR VALUES OF A SINGLE NAMED PARAMETER:
8960
8961 =item SETTING THE VALUE(S) OF A NAMED PARAMETER:
8962
8963 =item APPENDING ADDITIONAL VALUES TO A NAMED PARAMETER:
8964
8965 =item IMPORTING ALL PARAMETERS INTO A NAMESPACE:
8966
8967 =item DELETING A PARAMETER COMPLETELY:
8968
8969 =item DELETING ALL PARAMETERS:
8970
8971 =item DIRECT ACCESS TO THE PARAMETER LIST:
8972
8973 =item FETCHING THE PARAMETER LIST AS A HASH:
8974
8975 =item SAVING THE STATE OF THE SCRIPT TO A FILE:
8976
8977 =item RETRIEVING CGI ERRORS
8978
8979 =item USING THE FUNCTION-ORIENTED INTERFACE
8980
8981 B<:cgi>, B<:form>, B<:html2>, B<:html3>, B<:html4>, B<:netscape>, B<:html>,
8982 B<:standard>, B<:all>
8983
8984 =item PRAGMAS
8985
8986 -any, -compile, -nosticky, -no_undef_params, -no_xhtml, -nph,
8987 -newstyle_urls, -oldstyle_urls, -autoload, -no_debug, -debug,
8988 -private_tempfiles
8989
8990 =item SPECIAL FORMS FOR IMPORTING HTML-TAG FUNCTIONS
8991
8992 1. start_table() (generates a <table> tag), 2. end_table() (generates a
8993 </table> tag), 3. start_ul() (generates a <ul> tag), 4. end_ul() (generates
8994 a </ul> tag)
8995
8996 =back
8997
8998 =item GENERATING DYNAMIC DOCUMENTS
8999
9000 =over 4
9001
9002 =item CREATING A STANDARD HTTP HEADER:
9003
9004 =item GENERATING A REDIRECTION HEADER
9005
9006 =item CREATING THE HTML DOCUMENT HEADER
9007
9008 B<Parameters:>, 4, 5, 6..
9009
9010 =item ENDING THE HTML DOCUMENT:
9011
9012 =item CREATING A SELF-REFERENCING URL THAT PRESERVES STATE INFORMATION:
9013
9014 =item OBTAINING THE SCRIPT'S URL
9015
9016 B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query>
9017 (B<-query_string>), B<-base>
9018
9019 =item MIXING POST AND URL PARAMETERS
9020
9021 =back
9022
9023 =item CREATING STANDARD HTML ELEMENTS:
9024
9025 =over 4
9026
9027 =item PROVIDING ARGUMENTS TO HTML SHORTCUTS
9028
9029 =item THE DISTRIBUTIVE PROPERTY OF HTML SHORTCUTS
9030
9031 =item HTML SHORTCUTS AND LIST INTERPOLATION
9032
9033 =item NON-STANDARD HTML SHORTCUTS
9034
9035 =item AUTOESCAPING HTML
9036
9037 $escaped_string = escapeHTML("unescaped string");, $charset =
9038 charset([$charset]);, $flag = autoEscape([$flag]);
9039
9040 =item PRETTY-PRINTING HTML
9041
9042 =back
9043
9044 =item CREATING FILL-OUT FORMS:
9045
9046 =over 4
9047
9048 =item CREATING AN ISINDEX TAG
9049
9050 =item STARTING AND ENDING A FORM
9051
9052 B<application/x-www-form-urlencoded>, B<multipart/form-data>
9053
9054 =item CREATING A TEXT FIELD
9055
9056 B<Parameters>
9057
9058 =item CREATING A BIG TEXT FIELD
9059
9060 =item CREATING A PASSWORD FIELD
9061
9062 =item CREATING A FILE UPLOAD FIELD
9063
9064 B<Parameters>
9065
9066 =item CREATING A POPUP MENU
9067
9068 =item CREATING AN OPTION GROUP
9069
9070 =item CREATING A SCROLLING LIST
9071
9072 B<Parameters:>
9073
9074 =item CREATING A GROUP OF RELATED CHECKBOXES
9075
9076 B<Parameters:>
9077
9078 =item CREATING A STANDALONE CHECKBOX
9079
9080 B<Parameters:>
9081
9082 =item CREATING A RADIO BUTTON GROUP
9083
9084 B<Parameters:>
9085
9086 =item CREATING A SUBMIT BUTTON 
9087
9088 B<Parameters:>
9089
9090 =item CREATING A RESET BUTTON
9091
9092 =item CREATING A DEFAULT BUTTON
9093
9094 =item CREATING A HIDDEN FIELD
9095
9096 B<Parameters:>
9097
9098 =item CREATING A CLICKABLE IMAGE BUTTON
9099
9100 B<Parameters:>, 3. The third option (-align, optional) is an alignment
9101 type, and may be TOP, BOTTOM or MIDDLE
9102
9103 =item CREATING A JAVASCRIPT ACTION BUTTON
9104
9105 =back
9106
9107 =item HTTP COOKIES
9108
9109 1. an expiration time, 2. a domain, 3. a path, 4. a "secure" flag,
9110 B<-name>, B<-value>, B<-path>, B<-domain>, B<-expires>, B<-secure>
9111
9112 =item WORKING WITH FRAMES
9113
9114 1. Create a <Frameset> document, 2. Specify the destination for the
9115 document in the HTTP header, 3. Specify the destination for the document in
9116 the <form> tag
9117
9118 =item LIMITED SUPPORT FOR CASCADING STYLE SHEETS
9119
9120 =item DEBUGGING
9121
9122 =over 4
9123
9124 =item DUMPING OUT ALL THE NAME/VALUE PAIRS
9125
9126 =back
9127
9128 =item FETCHING ENVIRONMENT VARIABLES
9129
9130 B<Accept()>, B<raw_cookie()>, B<user_agent()>, B<path_info()>,
9131 B<path_translated()>, B<remote_host()>, B<script_name()> Return the script
9132 name as a partial URL, for self-refering scripts, B<referer()>, B<auth_type
9133 ()>, B<server_name ()>, B<virtual_host ()>, B<server_port ()>,
9134 B<server_software ()>, B<remote_user ()>, B<user_name ()>,
9135 B<request_method()>, B<content_type()>, B<http()>, B<https()>
9136
9137 =item USING NPH SCRIPTS
9138
9139 In the B<use> statement, By calling the B<nph()> method:, By using B<-nph>
9140 parameters
9141
9142 =item Server Push
9143
9144 multipart_init(), multipart_start(), multipart_end(), multipart_final()
9145
9146 =item Avoiding Denial of Service Attacks
9147
9148 B<$CGI::POST_MAX>, B<$CGI::DISABLE_UPLOADS>, B<1. On a script-by-script
9149 basis>, B<2. Globally for all scripts>
9150
9151 =item COMPATIBILITY WITH CGI-LIB.PL
9152
9153 =item AUTHOR INFORMATION
9154
9155 =item CREDITS
9156
9157 Matt Heffron (heffron@falstaff.css.beckman.com), James Taylor
9158 (james.taylor@srs.gov), Scott Anguish <sanguish@digifix.com>, Mike Jewell
9159 (mlj3u@virginia.edu), Timothy Shimmin (tes@kbs.citri.edu.au), Joergen Haegg
9160 (jh@axis.se), Laurent Delfosse (delfosse@delfosse.com), Richard Resnick
9161 (applepi1@aol.com), Craig Bishop (csb@barwonwater.vic.gov.au), Tony Curtis
9162 (tc@vcpc.univie.ac.at), Tim Bunce (Tim.Bunce@ig.co.uk), Tom Christiansen
9163 (tchrist@convex.com), Andreas Koenig (k@franz.ww.TU-Berlin.DE), Tim
9164 MacKenzie (Tim.MacKenzie@fulcrum.com.au), Kevin B. Hendricks
9165 (kbhend@dogwood.tyler.wm.edu), Stephen Dahmen (joyfire@inxpress.net), Ed
9166 Jordan (ed@fidalgo.net), David Alan Pisoni (david@cnation.com), Doug
9167 MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org),
9168 ...and many many more..
9169
9170 =item A COMPLETE EXAMPLE OF A SIMPLE FORM-BASED SCRIPT
9171
9172 =item BUGS
9173
9174 =item SEE ALSO
9175
9176 =back
9177
9178 =head2 CGI::Apache - Backward compatibility module for CGI.pm
9179
9180 =over 4
9181
9182 =item SYNOPSIS
9183
9184 =item ABSTRACT
9185
9186 =item DESCRIPTION
9187
9188 =item AUTHOR INFORMATION
9189
9190 =item BUGS
9191
9192 =item SEE ALSO
9193
9194 =back
9195
9196 =head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
9197 other) error log
9198
9199 =over 4
9200
9201 =item SYNOPSIS
9202
9203 =item DESCRIPTION
9204
9205 =item REDIRECTING ERROR MESSAGES
9206
9207 =item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
9208
9209 =over 4
9210
9211 =item Changing the default message
9212
9213 =back
9214
9215 =item MAKING WARNINGS APPEAR AS HTML COMMENTS
9216
9217 =item OVERRIDING THE NAME OF THE PROGRAM
9218
9219 =item AUTHORS
9220
9221 =item SEE ALSO
9222
9223 =back
9224
9225 =head2 CGI::Cookie - Interface to Netscape Cookies
9226
9227 =over 4
9228
9229 =item SYNOPSIS
9230
9231 =item DESCRIPTION
9232
9233 =item USING CGI::Cookie
9234
9235 B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
9236
9237 =over 4
9238
9239 =item Creating New Cookies
9240
9241 =item Sending the Cookie to the Browser
9242
9243 =item Recovering Previous Cookies
9244
9245 =item Manipulating Cookies
9246
9247 B<name()>, B<value()>, B<domain()>, B<path()>, B<expires()>
9248
9249 =back
9250
9251 =item AUTHOR INFORMATION
9252
9253 =item BUGS
9254
9255 =item SEE ALSO
9256
9257 =back
9258
9259 =head2 CGI::Fast - CGI Interface for Fast CGI
9260
9261 =over 4
9262
9263 =item SYNOPSIS
9264
9265 =item DESCRIPTION
9266
9267 =item OTHER PIECES OF THE PUZZLE
9268
9269 =item WRITING FASTCGI PERL SCRIPTS
9270
9271 =item INSTALLING FASTCGI SCRIPTS
9272
9273 =item USING FASTCGI SCRIPTS AS CGI SCRIPTS
9274
9275 =item EXTERNAL FASTCGI SERVER INVOCATION
9276
9277 FCGI_SOCKET_PATH, FCGI_LISTEN_QUEUE
9278
9279 =item CAVEATS
9280
9281 =item AUTHOR INFORMATION
9282
9283 =item BUGS
9284
9285 =item SEE ALSO
9286
9287 =back
9288
9289 =head2 CGI::Pretty - module to produce nicely formatted HTML code
9290
9291 =over 4
9292
9293 =item SYNOPSIS
9294
9295 =item DESCRIPTION
9296
9297 =over 4
9298
9299 =item Tags that won't be formatted
9300
9301 =item Customizing the Indenting
9302
9303 =back
9304
9305 =item BUGS
9306
9307 =item AUTHOR
9308
9309 =item SEE ALSO
9310
9311 =back
9312
9313 =head2 CGI::Push - Simple Interface to Server Push
9314
9315 =over 4
9316
9317 =item SYNOPSIS
9318
9319 =item DESCRIPTION
9320
9321 =item USING CGI::Push
9322
9323 -next_page, -last_page, -type, -delay, -cookie, -target, -expires, -nph
9324
9325 =over 4
9326
9327 =item Heterogeneous Pages
9328
9329 =item Changing the Page Delay on the Fly
9330
9331 =back
9332
9333 =item INSTALLING CGI::Push SCRIPTS
9334
9335 =item AUTHOR INFORMATION
9336
9337 =item BUGS
9338
9339 =item SEE ALSO
9340
9341 =back
9342
9343 =head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
9344
9345 =over 4
9346
9347 =item SYNOPSIS
9348
9349 =item ABSTRACT
9350
9351 =item DESCRIPTION
9352
9353 =item AUTHOR INFORMATION
9354
9355 =item BUGS
9356
9357 =item SEE ALSO
9358
9359 =back
9360
9361 =head2 CGI::Util - Internal utilities used by CGI module
9362
9363 =over 4
9364
9365 =item SYNOPSIS
9366
9367 =item DESCRIPTION
9368
9369 =item AUTHOR INFORMATION
9370
9371 =item SEE ALSO
9372
9373 =back
9374
9375 =head2 CPAN - query, download and build perl modules from CPAN sites
9376
9377 =over 4
9378
9379 =item SYNOPSIS
9380
9381 =item STATUS
9382
9383 =item DESCRIPTION
9384
9385 =over 4
9386
9387 =item Interactive Mode
9388
9389 Searching for authors, bundles, distribution files and modules, make, test,
9390 install, clean  modules or distributions, get, readme, look module or
9391 distribution, ls author, Signals
9392
9393 =item CPAN::Shell
9394
9395 =item autobundle
9396
9397 =item recompile
9398
9399 =item The four C<CPAN::*> Classes: Author, Bundle, Module, Distribution
9400
9401 =item Programmer's interface
9402
9403 expand($type,@things), expandany(@things), Programming Examples
9404
9405 =item Methods in the other Classes
9406
9407 CPAN::Author::as_glimpse(), CPAN::Author::as_string(),
9408 CPAN::Author::email(), CPAN::Author::fullname(), CPAN::Author::name(),
9409 CPAN::Bundle::as_glimpse(), CPAN::Bundle::as_string(),
9410 CPAN::Bundle::clean(), CPAN::Bundle::contains(),
9411 CPAN::Bundle::force($method,@args), CPAN::Bundle::get(),
9412 CPAN::Bundle::inst_file(), CPAN::Bundle::inst_version(),
9413 CPAN::Bundle::uptodate(), CPAN::Bundle::install(), CPAN::Bundle::make(),
9414 CPAN::Bundle::readme(), CPAN::Bundle::test(),
9415 CPAN::Distribution::as_glimpse(), CPAN::Distribution::as_string(),
9416 CPAN::Distribution::clean(), CPAN::Distribution::containsmods(),
9417 CPAN::Distribution::cvs_import(), CPAN::Distribution::dir(),
9418 CPAN::Distribution::force($method,@args), CPAN::Distribution::get(),
9419 CPAN::Distribution::install(), CPAN::Distribution::isa_perl(),
9420 CPAN::Distribution::look(), CPAN::Distribution::make(),
9421 CPAN::Distribution::prereq_pm(), CPAN::Distribution::readme(),
9422 CPAN::Distribution::test(), CPAN::Distribution::uptodate(),
9423 CPAN::Index::force_reload(), CPAN::Index::reload(), CPAN::InfoObj::dump(),
9424 CPAN::Module::as_glimpse(), CPAN::Module::as_string(),
9425 CPAN::Module::clean(), CPAN::Module::cpan_file(),
9426 CPAN::Module::cpan_version(), CPAN::Module::cvs_import(),
9427 CPAN::Module::description(), CPAN::Module::force($method,@args),
9428 CPAN::Module::get(), CPAN::Module::inst_file(),
9429 CPAN::Module::inst_version(), CPAN::Module::install(),
9430 CPAN::Module::look(), CPAN::Module::make(),
9431 CPAN::Module::manpage_headline(), CPAN::Module::readme(),
9432 CPAN::Module::test(), CPAN::Module::uptodate(), CPAN::Module::userid()
9433
9434 =item Cache Manager
9435
9436 =item Bundles
9437
9438 =item Prerequisites
9439
9440 =item Finding packages and VERSION
9441
9442 =item Debugging
9443
9444 =item Floppy, Zip, Offline Mode
9445
9446 =back
9447
9448 =item CONFIGURATION
9449
9450 C<o conf E<lt>scalar optionE<gt>>, C<o conf E<lt>scalar optionE<gt>
9451 E<lt>valueE<gt>>, C<o conf E<lt>list optionE<gt>>, C<o conf E<lt>list
9452 optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
9453 [unshift|push|splice] E<lt>listE<gt>>
9454
9455 =over 4
9456
9457 =item Note on urllist parameter's format
9458
9459 =item urllist parameter has CD-ROM support
9460
9461 =back
9462
9463 =item SECURITY
9464
9465 =item EXPORT
9466
9467 =item POPULATE AN INSTALLATION WITH LOTS OF MODULES
9468
9469 =item WORKING WITH CPAN.pm BEHIND FIREWALLS
9470
9471 =over 4
9472
9473 =item Three basic types of firewalls
9474
9475 http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade
9476
9477 =item Configuring lynx or ncftp for going through a firewall
9478
9479 =back
9480
9481 =item FAQ
9482
9483 1), 2), 3), 4), 5), 6), 7), 8), 9), 10)
9484
9485 =item BUGS
9486
9487 =item AUTHOR
9488
9489 =item TRANSLATIONS
9490
9491 =item SEE ALSO
9492
9493 =back
9494
9495 =head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
9496
9497 =over 4
9498
9499 =item SYNOPSIS
9500
9501 =item DESCRIPTION
9502
9503 =back
9504
9505 =head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
9506 module
9507
9508 =over 4
9509
9510 =item SYNOPSIS
9511
9512 =item DESCRIPTION
9513
9514 =item  SEE ALSO
9515
9516 =back
9517
9518 =head2 Carp, carp    - warn of errors (from perspective of caller)
9519
9520 =over 4
9521
9522 =item SYNOPSIS
9523
9524 =item DESCRIPTION
9525
9526 =over 4
9527
9528 =item Forcing a Stack Trace
9529
9530 =back
9531
9532 =item BUGS
9533
9534 =back
9535
9536 =head2 Carp::Heavy, Carp heavy machinery - no user serviceable parts inside
9537
9538 =head2 Class::ISA -- report the search path for a class's ISA tree
9539
9540 =over 4
9541
9542 =item SYNOPSIS
9543
9544 =item DESCRIPTION
9545
9546 =item FUNCTIONS
9547
9548 the function Class::ISA::super_path($CLASS), the function
9549 Class::ISA::self_and_super_path($CLASS), the function
9550 Class::ISA::self_and_super_versions($CLASS)
9551
9552 =item CAUTIONARY NOTES
9553
9554 =item COPYRIGHT
9555
9556 =item AUTHOR
9557
9558 =back
9559
9560 =head2 Class::Struct - declare struct-like datatypes as Perl classes
9561
9562 =over 4
9563
9564 =item SYNOPSIS
9565
9566 =item DESCRIPTION
9567
9568 =over 4
9569
9570 =item The C<struct()> function
9571
9572 =item Class Creation at Compile Time
9573
9574 =item Element Types and Accessor Methods
9575
9576 Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
9577 C<'*%'>), Class (C<'Class_Name'> or C<'*Class_Name'>)
9578
9579 =item Initializing with C<new>
9580
9581 =back
9582
9583 =item EXAMPLES
9584
9585 Example 1, Example 2, Example 3
9586
9587 =item Author and Modification History
9588
9589 =back
9590
9591 =head2 Cwd - get pathname of current working directory
9592
9593 =over 4
9594
9595 =item SYNOPSIS
9596
9597 =item DESCRIPTION
9598
9599 =over 4
9600
9601 =item getcwd and friends
9602
9603 getcwd, cwd, fastcwd, fastgetcwd
9604
9605 =item abs_path and friends
9606
9607 abs_path, realpath, fast_abs_path
9608
9609 =item $ENV{PWD}
9610
9611 =back
9612
9613 =item NOTES
9614
9615 =item SEE ALSO
9616
9617 =back
9618
9619 =head2 DB - programmatic interface to the Perl debugging API (draft,
9620 subject to
9621 change)
9622
9623 =over 4
9624
9625 =item SYNOPSIS
9626
9627 =item DESCRIPTION
9628
9629 =over 4
9630
9631 =item Global Variables
9632
9633  $DB::sub,  %DB::sub,  $DB::single,  $DB::signal,  $DB::trace,  @DB::args, 
9634 @DB::dbline,  %DB::dbline,  $DB::package,  $DB::filename,  $DB::subname, 
9635 $DB::lineno
9636
9637 =item API Methods
9638
9639 CLIENT->register(), CLIENT->evalcode(STRING), CLIENT->skippkg('D::hide'),
9640 CLIENT->run(), CLIENT->step(), CLIENT->next(), CLIENT->done()
9641
9642 =item Client Callback Methods
9643
9644 CLIENT->init(), CLIENT->prestop([STRING]), CLIENT->stop(), CLIENT->idle(),
9645 CLIENT->poststop([STRING]), CLIENT->evalcode(STRING), CLIENT->cleanup(),
9646 CLIENT->output(LIST)
9647
9648 =back
9649
9650 =item BUGS
9651
9652 =item AUTHOR
9653
9654 =back
9655
9656 =head2 DB_File - Perl5 access to Berkeley DB version 1.x
9657
9658 =over 4
9659
9660 =item SYNOPSIS
9661
9662 =item DESCRIPTION
9663
9664 B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
9665
9666 =over 4
9667
9668 =item Using DB_File with Berkeley DB version 2 or greater
9669
9670 =item Interface to Berkeley DB
9671
9672 =item Opening a Berkeley DB Database File
9673
9674 =item Default Parameters
9675
9676 =item In Memory Databases
9677
9678 =back
9679
9680 =item DB_HASH
9681
9682 =over 4
9683
9684 =item A Simple Example
9685
9686 =back
9687
9688 =item DB_BTREE
9689
9690 =over 4
9691
9692 =item Changing the BTREE sort order
9693
9694 =item Handling Duplicate Keys 
9695
9696 =item The get_dup() Method
9697
9698 =item The find_dup() Method
9699
9700 =item The del_dup() Method
9701
9702 =item Matching Partial Keys 
9703
9704 =back
9705
9706 =item DB_RECNO
9707
9708 =over 4
9709
9710 =item The 'bval' Option
9711
9712 =item A Simple Example
9713
9714 =item Extra RECNO Methods
9715
9716 B<$X-E<gt>push(list) ;>, B<$value = $X-E<gt>pop ;>, B<$X-E<gt>shift>,
9717 B<$X-E<gt>unshift(list) ;>, B<$X-E<gt>length>, B<$X-E<gt>splice(offset,
9718 length, elements);>
9719
9720 =item Another Example
9721
9722 =back
9723
9724 =item THE API INTERFACE
9725
9726 B<$status = $X-E<gt>get($key, $value [, $flags]) ;>, B<$status =
9727 $X-E<gt>put($key, $value [, $flags]) ;>, B<$status = $X-E<gt>del($key [,
9728 $flags]) ;>, B<$status = $X-E<gt>fd ;>, B<$status = $X-E<gt>seq($key,
9729 $value, $flags) ;>, B<$status = $X-E<gt>sync([$flags]) ;>
9730
9731 =item DBM FILTERS
9732
9733 B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
9734 B<filter_fetch_value>
9735
9736 =over 4
9737
9738 =item The Filter
9739
9740 =item An Example -- the NULL termination problem.
9741
9742 =item Another Example -- Key is a C int.
9743
9744 =back
9745
9746 =item HINTS AND TIPS 
9747
9748 =over 4
9749
9750 =item Locking: The Trouble with fd
9751
9752 =item Safe ways to lock a database
9753
9754 B<Tie::DB_Lock>, B<Tie::DB_LockFile>, B<DB_File::Lock>
9755
9756 =item Sharing Databases With C Applications
9757
9758 =item The untie() Gotcha
9759
9760 =back
9761
9762 =item COMMON QUESTIONS
9763
9764 =over 4
9765
9766 =item Why is there Perl source in my database?
9767
9768 =item How do I store complex data structures with DB_File?
9769
9770 =item What does "Invalid Argument" mean?
9771
9772 =item What does "Bareword 'DB_File' not allowed" mean? 
9773
9774 =back
9775
9776 =item REFERENCES
9777
9778 =item HISTORY
9779
9780 =item BUGS
9781
9782 =item AVAILABILITY
9783
9784 =item COPYRIGHT
9785
9786 =item SEE ALSO
9787
9788 =item AUTHOR
9789
9790 =back
9791
9792 =head2 Data::Dumper - stringified perl data structures, suitable for both
9793 printing and C<eval>
9794
9795 =over 4
9796
9797 =item SYNOPSIS
9798
9799 =item DESCRIPTION
9800
9801 =over 4
9802
9803 =item Methods
9804
9805 I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Dump  I<or> 
9806 I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>), I<$OBJ>->Seen(I<[HASHREF]>),
9807 I<$OBJ>->Values(I<[ARRAYREF]>), I<$OBJ>->Names(I<[ARRAYREF]>),
9808 I<$OBJ>->Reset
9809
9810 =item Functions
9811
9812 Dumper(I<LIST>)
9813
9814 =item Configuration Variables or Methods
9815
9816 =item Exports
9817
9818 Dumper
9819
9820 =back
9821
9822 =item EXAMPLES
9823
9824 =item BUGS
9825
9826 =over 4
9827
9828 =item NOTE
9829
9830 =back
9831
9832 =item AUTHOR
9833
9834 =item VERSION
9835
9836 =item SEE ALSO
9837
9838 =back
9839
9840 =head2 Devel::DProf - a Perl code profiler
9841
9842 =over 4
9843
9844 =item SYNOPSIS
9845
9846 =item DESCRIPTION
9847
9848 =item PROFILE FORMAT
9849
9850 =item AUTOLOAD
9851
9852 =item ENVIRONMENT
9853
9854 =item BUGS
9855
9856 =item SEE ALSO
9857
9858 =back
9859
9860 =head2 Devel::PPPort - Perl/Pollution/Portability
9861
9862 =over 4
9863
9864 =item SYNOPSIS
9865
9866 =item DESCRIPTION
9867
9868 =over 4
9869
9870 =item WriteFile
9871
9872 =back
9873
9874 =item ppport.h
9875
9876 =item AUTHOR
9877
9878 =item SEE ALSO
9879
9880 =back
9881
9882 =head2 Devel::Peek - A data debugging tool for the XS programmer
9883
9884 =over 4
9885
9886 =item SYNOPSIS
9887
9888 =item DESCRIPTION
9889
9890 =over 4
9891
9892 =item Runtime debugging
9893
9894 =item Memory footprint debugging
9895
9896 =back
9897
9898 =item EXAMPLES
9899
9900 =over 4
9901
9902 =item A simple scalar string
9903
9904 =item A simple scalar number
9905
9906 =item A simple scalar with an extra reference
9907
9908 =item A reference to a simple scalar
9909
9910 =item A reference to an array
9911
9912 =item A reference to a hash
9913
9914 =item Dumping a large array or hash
9915
9916 =item A reference to an SV which holds a C pointer
9917
9918 =item A reference to a subroutine
9919
9920 =back
9921
9922 =item EXPORTS
9923
9924 =item BUGS
9925
9926 =item AUTHOR
9927
9928 =item SEE ALSO
9929
9930 =back
9931
9932 =head2 Devel::SelfStubber - generate stubs for a SelfLoading module
9933
9934 =over 4
9935
9936 =item SYNOPSIS
9937
9938 =item DESCRIPTION
9939
9940 =back
9941
9942 =head2 Digest:: - Modules that calculate message digests
9943
9944 =over 4
9945
9946 =item SYNOPSIS
9947
9948 =item DESCRIPTION
9949
9950 I<binary>, I<hex>, I<base64>
9951
9952 =item OO INTERFACE
9953
9954 $ctx = Digest->XXX($arg,...), $ctx = Digest->new(XXX => $arg,...), $ctx =
9955 Digest::XXX->new($arg,...), $other_ctx = $ctx->clone, $ctx->reset,
9956 $ctx->add($data,...), $ctx->addfile($io_handle), $ctx->digest,
9957 $ctx->hexdigest, $ctx->b64digest
9958
9959 =item SEE ALSO
9960
9961 =item AUTHOR
9962
9963 =back
9964
9965 =head2 Digest::MD5 - Perl interface to the MD5 Algorithm
9966
9967 =over 4
9968
9969 =item SYNOPSIS
9970
9971 =item DESCRIPTION
9972
9973 =item FUNCTIONS
9974
9975 md5($data,...), md5_hex($data,...), md5_base64($data,...)
9976
9977 =item METHODS
9978
9979 $md5 = Digest::MD5->new, $md5->reset, $md5->clone, $md5->add($data,...),
9980 $md5->addfile($io_handle), $md5->digest, $md5->hexdigest, $md5->b64digest
9981
9982 =item EXAMPLES
9983
9984 =item SEE ALSO
9985
9986 =item COPYRIGHT
9987
9988 =item AUTHORS
9989
9990 =back
9991
9992 =head2 DirHandle - supply object methods for directory handles
9993
9994 =over 4
9995
9996 =item SYNOPSIS
9997
9998 =item DESCRIPTION
9999
10000 =item NOTES
10001
10002 =back
10003
10004 =head2 Dumpvalue - provides screen dump of Perl data.
10005
10006 =over 4
10007
10008 =item SYNOPSIS
10009
10010 =item DESCRIPTION
10011
10012 =over 4
10013
10014 =item Creation
10015
10016 C<arrayDepth>, C<hashDepth>, C<compactDump>, C<veryCompact>, C<globPrint>,
10017 C<dumpDBFiles>, C<dumpPackages>, C<dumpReused>, C<tick>, C<quoteHighBit>,
10018 C<printUndef>, C<usageOnly>, unctrl, subdump, bareStringify, quoteHighBit,
10019 stopDbSignal
10020
10021 =item Methods
10022
10023 dumpValue, dumpValues, stringify, dumpvars, set_quote, set_unctrl,
10024 compactDump, veryCompact, set, get
10025
10026 =back
10027
10028 =back
10029
10030 =head2 Encode - character encodings
10031
10032 =over 4
10033
10034 =item SYNOPSIS
10035
10036 =over 4
10037
10038 =item Table of Contents
10039
10040 =back
10041
10042 =item DESCRIPTION
10043
10044 =over 4
10045
10046 =item TERMINOLOGY
10047
10048 =back
10049
10050 =item PERL ENCODING API
10051
10052 $octets  = encode(ENCODING, $string [, CHECK]), $string = decode(ENCODING,
10053 $octets [, CHECK]), [$length =] from_to($octets, FROM_ENC, TO_ENC [,
10054 CHECK]), $octets = encode_utf8($string);, $string = decode_utf8($octets [,
10055 CHECK]);
10056
10057 =over 4
10058
10059 =item Listing available encodings
10060
10061 =item Defining Aliases
10062
10063 =back
10064
10065 =item Encoding via PerlIO
10066
10067 =item Handling Malformed Data
10068
10069 I<CHECK> = Encode::FB_DEFAULT ( == 0), I<CHECK> = Encode::FB_CROAK ( == 1),
10070 I<CHECK> = Encode::FB_QUIET, I<CHECK> = Encode::FB_WARN, perlqq mode
10071 (I<CHECK> = Encode::FB_PERLQQ), HTML charref mode (I<CHECK> =
10072 Encode::FB_HTMLCREF), XML charref mode (I<CHECK> = Encode::FB_XMLCREF), The
10073 bitmask
10074
10075 =over 4
10076
10077 =item Unimplemented fallback schemes
10078
10079 =back
10080
10081 =item Defining Encodings
10082
10083 =item The UTF-8 flag
10084
10085 Goal #1:, Goal #2:, Goal #3:, Goal #4:
10086
10087 =over 4
10088
10089 =item Messing with Perl's Internals
10090
10091 is_utf8(STRING [, CHECK]), _utf8_on(STRING), _utf8_off(STRING)
10092
10093 =back
10094
10095 =item SEE ALSO
10096
10097 =item MAINTAINER
10098
10099 =back
10100
10101 =head2 Encode::Byte - Single Byte Encodings
10102
10103 =over 4
10104
10105 =item SYNOPSIS
10106
10107 =item ABSTRACT
10108
10109 =item DESCRIPTION
10110
10111 =item SEE ALSO
10112
10113 =back
10114
10115 =head2 Encode::CN - China-based Chinese Encodings
10116
10117 =over 4
10118
10119 =item SYNOPSIS
10120
10121 =item DESCRIPTION
10122
10123 =item NOTES
10124
10125 =item BUGS
10126
10127 =item SEE ALSO
10128
10129 =back
10130
10131 =head2 Encode::EBCDIC - EBCDIC Encodings
10132
10133 =over 4
10134
10135 =item SYNOPSIS
10136
10137 =item ABSTRACT
10138
10139 =item DESCRIPTION
10140
10141 =item SEE ALSO
10142
10143 =back
10144
10145 =head2 Encode::JP - Japanese Encodings
10146
10147 =over 4
10148
10149 =item SYNOPSIS
10150
10151 =item ABSTRACT
10152
10153 =item DESCRIPTION
10154
10155 =item Note on ISO-2022-JP(-1)?
10156
10157 =item BUGS
10158
10159 =item SEE ALSO
10160
10161 =back
10162
10163 =head2 Encode::KR - Korean Encodings
10164
10165 =over 4
10166
10167 =item SYNOPSIS
10168
10169 =item DESCRIPTION
10170
10171 =item BUGS
10172
10173 =item SEE ALSO
10174
10175 =back
10176
10177 =head2 Encode::Symbol - Symbol Encodings
10178
10179 =over 4
10180
10181 =item SYNOPSIS
10182
10183 =item ABSTRACT
10184
10185 =item DESCRIPTION
10186
10187 =item SEE ALSO
10188
10189 =back
10190
10191 =head2 Encode::TW - Taiwan-based Chinese Encodings
10192
10193 =over 4
10194
10195 =item SYNOPSIS
10196
10197 =item DESCRIPTION
10198
10199 =item NOTES
10200
10201 =item BUGS
10202
10203 =item SEE ALSO
10204
10205 =back
10206
10207 =head2 Encode::Unicode -- Various Unicode Transformation Formats
10208
10209 =over 4
10210
10211 =item SYNOPSIS
10212
10213 =item ABSTRACT
10214
10215 L<http://www.unicode.org/glossary/> says:, Quick Reference
10216
10217 =item Size, Endianness, and BOM
10218
10219 =over 4
10220
10221 =item by size
10222
10223 =item by endianness
10224
10225 BOM as integer when fetched in network byte order
10226
10227 =back
10228
10229 =item Surrogate Pairs
10230
10231 =item SEE ALSO
10232
10233 =back
10234
10235 =head2 Encode::lib::Encode::Alias, Encode::Alias - alias definitions to
10236 encodings
10237
10238 =over 4
10239
10240 =item SYNOPSIS
10241
10242 =item DESCRIPTION
10243
10244 As a simple string, As a qr// compiled regular expression, e.g.:, As a code
10245 reference, e.g.:
10246
10247 =over 4
10248
10249 =item Alias overloading
10250
10251 =back
10252
10253 =item SEE ALSO
10254
10255 =back
10256
10257 =head2 Encode::lib::Encode::CJKConstants, Encode::CJKConstants.pm --
10258 Internally used by Encode::??::ISO_2022_*
10259
10260 =head2 Encode::lib::Encode::CN::HZ, Encode::CN::HZ -- internally used by
10261 Encode::CN
10262
10263 =head2 Encode::lib::Encode::Config, Encode::Config -- internally used by
10264 Encode
10265
10266 =head2 Encode::lib::Encode::Encoding, Encode::Encoding - Encode
10267 Implementation Base Class
10268
10269 =over 4
10270
10271 =item SYNOPSIS
10272
10273 =item DESCRIPTION
10274
10275 =over 4
10276
10277 =item Methods you should implement
10278
10279 -E<gt>encode($string [,$check]), -E<gt>decode($octets [,$check]),
10280 -E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
10281
10282 =item Other methods defined in Encode::Encodings
10283
10284 -E<gt>name, -E<gt>renew, -E<gt>perlio_ok(), -E<gt>needs_lines()
10285
10286 =item Example: Encode::ROT13
10287
10288 =back
10289
10290 =item Why the heck Encode API is different?
10291
10292 =over 4
10293
10294 =item Compiled Encodings
10295
10296 =back
10297
10298 =item SEE ALSO
10299
10300 Scheme 1, Scheme 2, Other Schemes
10301
10302 =back
10303
10304 =head2 Encode::lib::Encode::Guess, Encode::Guess -- Guesses encoding from
10305 data
10306
10307 =over 4
10308
10309 =item SYNOPSIS
10310
10311 =item ABSTRACT
10312
10313 =item DESCRIPTION
10314
10315 Encode::Guess->set_suspects, Encode::Guess->add_suspects,
10316 Encode::decode("Guess" ...), Encode::Guess->guess($data),
10317 guess_encoding($data, [, I<list of suspects>])
10318
10319 =item CAVEATS
10320
10321 =item TO DO
10322
10323 =item SEE ALSO
10324
10325 =back
10326
10327 =head2 Encode::lib::Encode::JP::H2Z, Encode::JP::H2Z -- internally used by
10328 Encode::JP::2022_JP*
10329
10330 =head2 Encode::lib::Encode::JP::JIS7, Encode::JP::JIS7 -- internally used
10331 by Encode::JP
10332
10333 =head2 Encode::lib::Encode::KR::2022_KR, Encode::KR::2022_KR -- internally
10334 used by Encode::KR
10335
10336 =head2 Encode::lib::Encode::MIME::Header, Encode::MIME::Header -- MIME 'B'
10337 and 'Q' header encoding
10338
10339 =over 4
10340
10341 =item SYNOPSIS
10342
10343 =item ABSTRACT
10344
10345 =item DESCRIPTION
10346
10347 =item BUGS
10348
10349 =item SEE ALSO
10350
10351 =back
10352
10353 =head2 Encode::lib::Encode::PerlIO, Encode::PerlIO -- a detailed document
10354 on Encode and PerlIO
10355
10356 =over 4
10357
10358 =item Overview
10359
10360 =item How does it work?
10361
10362 =item Line Buffering
10363
10364 =over 4
10365
10366 =item How can I tell whether my encoding fully supports PerlIO ?
10367
10368 =back
10369
10370 =item SEE ALSO
10371
10372 =back
10373
10374 =head2 Encode::lib::Encode::Supported, Encode::Supported -- Encodings
10375 supported by Encode
10376
10377 =over 4
10378
10379 =item DESCRIPTION
10380
10381 =over 4
10382
10383 =item Encoding Names
10384
10385 =back
10386
10387 =item Supported Encodings
10388
10389 =over 4
10390
10391 =item Built-in Encodings
10392
10393 =item Encode::Unicode -- other Unicode encodings
10394
10395 =item Encode::Byte -- Extended ASCII
10396
10397 ISO-8859 and corresponding vendor mappings, KOI8 - De Facto Standard for
10398 the Cyrillic world, gsm0338 - Hentai Latin 1
10399
10400 =item CJK: Chinese, Japanese, Korean (Multibyte)
10401
10402 Encode::CN -- Continental China, Encode::JP -- Japan, Encode::KR -- Korea,
10403 Encode::TW -- Taiwan, Encode::HanExtra -- More Chinese via CPAN,
10404 Encode::JIS2K -- JIS X 0213 encodings via CPAN
10405
10406 =item Miscellaneous encodings
10407
10408 Encode::EBCDIC, Encode::Symbols, Encode::MIME::Header, Encode::Guess
10409
10410 =back
10411
10412 =item Unsupported encodings
10413
10414   ISO-2022-JP-2 [RFC1554], ISO-2022-CN [RFC1922], Various HP-UX encodings,
10415 Cyrillic encoding ISO-IR-111, ISO-8859-8-1 [Hebrew], ISIRI 3342, Iran
10416 System, ISIRI 2900 [Farsi], Thai encoding TCVN, Vietnamese encodings VPS,
10417 Various Mac encodings, (Mac) Indic encodings
10418
10419 =item Encoding vs. Charset -- terminology
10420
10421 =item Encoding Classification (by Anton Tagunov and Dan Kogai)
10422
10423 =over 4
10424
10425 =item Microsoft-related naming mess
10426
10427 KS_C_5601-1987, GB2312, Big5, Shift_JIS
10428
10429 =back
10430
10431 =item Glossary
10432
10433 character repertoire, coded character set (CCS), character encoding scheme
10434 (CES), charset (in MIME context), EUC, ISO-2022, UCS, UCS-2, Unicode, UTF,
10435 UTF-16
10436
10437 =item See Also
10438
10439 =item References
10440
10441 ECMA, ECMA-035 (eq C<ISO-2022>), IANA, Assigned Charset Names by IANA, ISO,
10442 RFC, UC, Unicode Glossary
10443
10444 =over 4
10445
10446 =item Other Notable Sites
10447
10448 czyborra.com, CJK.inf, Jungshik Shin's Hangul FAQ, debian.org:
10449 "Introduction to i18n"
10450
10451 =item Offline sources
10452
10453 C<CJKV Information Processing> by Ken Lunde
10454
10455 =back
10456
10457 =back
10458
10459 =head2 Encode::lib::Encode::Unicode::UTF7, Encode::Unicode::UTF7 -- UTF-7
10460 encoding
10461
10462 =over 4
10463
10464 =item SYNOPSIS
10465
10466 =item ABSTRACT
10467
10468 =item In Practice
10469
10470 =item SEE ALSO
10471
10472 =back
10473
10474 =head2 Encode::lib::Encoder, Encode::Encoder -- Object Oriented Encoder
10475
10476 =over 4
10477
10478 =item SYNOPSIS
10479
10480 =item ABSTRACT
10481
10482 =item Description
10483
10484 =over 4
10485
10486 =item Predefined Methods
10487
10488 $e = Encode::Encoder-E<gt>new([$data, $encoding]);, encoder(),
10489 $e-E<gt>data([$data]), $e-E<gt>encoding([$encoding]),
10490 $e-E<gt>bytes([$encoding])
10491
10492 =item Example: base64 transcoder
10493
10494 =item Operator Overloading
10495
10496 =back
10497
10498 =item SEE ALSO
10499
10500 =back
10501
10502 =head2 Encodencoding, encoding - allows you to write your script in
10503 non-ascii or non-utf8
10504
10505 =over 4
10506
10507 =item SYNOPSIS
10508
10509 =item ABSTRACT
10510
10511 =over 4
10512
10513 =item Literal Conversions
10514
10515 =item PerlIO layers for C<STD(IN|OUT)>
10516
10517 =back
10518
10519 =item FEATURES THAT REQUIRE 5.8.1
10520
10521 "NON-EUC" doublebyte encodings, tr//, DATA pseudo-filehandle
10522
10523 =item USAGE
10524
10525 use encoding [I<ENCNAME>] ;, use encoding I<ENCNAME> [ STDIN =E<gt>
10526 I<ENCNAME_IN> ...] ;, use encoding I<ENCNAME> Filter=E<gt>1;, no encoding;
10527
10528 =item The Filter Option
10529
10530 =over 4
10531
10532 =item Filter-related changes at Encode version 1.87
10533
10534 =back
10535
10536 =item CAVEATS
10537
10538 =over 4
10539
10540 =item NOT SCOPED
10541
10542 =item DO NOT MIX MULTIPLE ENCODINGS
10543
10544 =item tr/// with ranges
10545
10546 Legend of characters above
10547
10548 =back
10549
10550 =item EXAMPLE - Greekperl
10551
10552 =item KNOWN PROBLEMS
10553
10554 literals in regex that are longer than 127 bytes, EBCDIC, format
10555
10556 =item HISTORY
10557
10558 =item SEE ALSO
10559
10560 =back
10561
10562 =head2 English - use nice English (or awk) names for ugly punctuation
10563 variables
10564
10565 =over 4
10566
10567 =item SYNOPSIS
10568
10569 =item DESCRIPTION
10570
10571 =item PERFORMANCE
10572
10573 =back
10574
10575 =head2 Env - perl module that imports environment variables as scalars or
10576 arrays
10577
10578 =over 4
10579
10580 =item SYNOPSIS
10581
10582 =item DESCRIPTION
10583
10584 =item LIMITATIONS
10585
10586 =item AUTHOR
10587
10588 =back
10589
10590 =head2 Exporter - Implements default import method for modules
10591
10592 =over 4
10593
10594 =item SYNOPSIS
10595
10596 =item DESCRIPTION
10597
10598 =over 4
10599
10600 =item How to Export
10601
10602 =item Selecting What To Export
10603
10604 =item How to Import
10605
10606 C<use ModuleName;>, C<use ModuleName ();>, C<use ModuleName qw(...);>
10607
10608 =back
10609
10610 =item Advanced features
10611
10612 =over 4
10613
10614 =item Specialised Import Lists
10615
10616 =item Exporting without using Exporter's import method
10617
10618 =item Module Version Checking
10619
10620 =item Managing Unknown Symbols
10621
10622 =item Tag Handling Utility Functions
10623
10624 =item Generating combined tags
10625
10626 =item C<AUTOLOAD>ed Constants
10627
10628 =back
10629
10630 =back
10631
10632 =head2 Exporter::Heavy - Exporter guts
10633
10634 =over 4
10635
10636 =item SYNOPSIS
10637
10638 =item DESCRIPTION
10639
10640 =back
10641
10642 =head2 ExtUtils::Command - utilities to replace common UNIX commands in
10643 Makefiles etc.
10644
10645 =over 4
10646
10647 =item SYNOPSIS
10648
10649 =item DESCRIPTION
10650
10651 =back
10652
10653 cat
10654
10655 eqtime src dst
10656
10657 rm_rf files...
10658
10659 rm_f files...
10660
10661 touch files ..
10662
10663 mv source... destination
10664
10665 cp source... destination
10666
10667 chmod mode files..
10668
10669 mkpath directory..
10670
10671 test_f file
10672
10673 =over 4
10674
10675 =item BUGS
10676
10677 =item SEE ALSO 
10678
10679 =item AUTHOR
10680
10681 =back
10682
10683 =head2 ExtUtils::Command::MM - Commands for the MM's to use in Makefiles
10684
10685 =over 4
10686
10687 =item SYNOPSIS
10688
10689 =item DESCRIPTION
10690
10691 B<test_harness>
10692
10693 =back
10694
10695 B<pod2man>
10696
10697 B<warn_if_old_packlist>
10698
10699 B<perllocal_install>
10700
10701 B<uninstall>
10702
10703 =head2 ExtUtils::Constant - generate XS code to import C header constants
10704
10705 =over 4
10706
10707 =item SYNOPSIS
10708
10709 =item DESCRIPTION
10710
10711 =item USAGE
10712
10713 IV, UV, NV, PV, PVN, SV, YES, NO, UNDEF
10714
10715 =item FUNCTIONS
10716
10717 =back
10718
10719 C_stringify NAME
10720
10721 perl_stringify NAME
10722
10723 constant_types
10724
10725 memEQ_clause NAME, CHECKED_AT, INDENT
10726
10727 assign INDENT, TYPE, PRE, POST, VALUE..
10728
10729 return_clause
10730
10731 switch_clause INDENT, NAMELEN, ITEMHASH, ITEM..
10732
10733 params WHAT
10734
10735 dump_names
10736
10737 dogfood
10738
10739 C_constant, name, type, value, macro, default, pre, post, def_pre =item
10740 def_post, utf8
10741
10742 XS_constant PACKAGE, TYPES, SUBNAME, C_SUBNAME
10743
10744 autoload PACKAGE, VERSION, AUTOLOADER
10745
10746 WriteMakefileSnippet
10747
10748 WriteConstants ATTRIBUTE =E<gt> VALUE [, ...], NAME, DEFAULT_TYPE,
10749 BREAKOUT_AT, NAMES, C_FILE, XS_FILE, SUBNAME, C_SUBNAME
10750
10751 =over 4
10752
10753 =item AUTHOR
10754
10755 =back
10756
10757 =head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
10758
10759 =over 4
10760
10761 =item SYNOPSIS
10762
10763 =item DESCRIPTION
10764
10765 =item @EXPORT
10766
10767 =item FUNCTIONS
10768
10769 xsinit(), Examples, ldopts(), Examples, perl_inc(), ccflags(), ccdlflags(),
10770 ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules)
10771
10772 =item EXAMPLES
10773
10774 =item SEE ALSO
10775
10776 =item AUTHOR
10777
10778 =back
10779
10780 =head2 ExtUtils::Install - install files from here to there
10781
10782 =over 4
10783
10784 =item SYNOPSIS
10785
10786 =item DESCRIPTION
10787
10788 =over 4
10789
10790 =item Functions
10791
10792 B<install>
10793
10794 =back
10795
10796 =back
10797
10798 B<install_default> I<DISCOURAGED>
10799
10800 B<uninstall>
10801
10802 B<pm_to_blib>
10803
10804 _autosplit
10805
10806 =over 4
10807
10808 =item ENVIRONMENT
10809
10810 B<PERL_INSTALL_ROOT>
10811
10812 =item AUTHOR
10813
10814 =item LICENSE
10815
10816 =back
10817
10818 =head2 ExtUtils::Installed - Inventory management of installed modules
10819
10820 =over 4
10821
10822 =item SYNOPSIS
10823
10824 =item DESCRIPTION
10825
10826 =item USAGE
10827
10828 =item FUNCTIONS
10829
10830 new(), modules(), files(), directories(), directory_tree(), validate(),
10831 packlist(), version()
10832
10833 =item EXAMPLE
10834
10835 =item AUTHOR
10836
10837 =back
10838
10839 =head2 ExtUtils::Liblist - determine libraries to use and how to use them
10840
10841 =over 4
10842
10843 =item SYNOPSIS
10844
10845 =item DESCRIPTION
10846
10847 For static extensions, For dynamic extensions at build/link time, For
10848 dynamic extensions at load time
10849
10850 =over 4
10851
10852 =item EXTRALIBS
10853
10854 =item LDLOADLIBS and LD_RUN_PATH
10855
10856 =item BSLOADLIBS
10857
10858 =back
10859
10860 =item PORTABILITY
10861
10862 =over 4
10863
10864 =item VMS implementation
10865
10866 =item Win32 implementation
10867
10868 =back
10869
10870 =item SEE ALSO
10871
10872 =back
10873
10874 =head2 ExtUtils::MM - OS adjusted ExtUtils::MakeMaker subclass
10875
10876 =over 4
10877
10878 =item SYNOPSIS
10879
10880 =item DESCRIPTION
10881
10882 =back
10883
10884 =head2 ExtUtils::MM_Any - Platform-agnostic MM methods
10885
10886 =over 4
10887
10888 =item SYNOPSIS
10889
10890 =item DESCRIPTION
10891
10892 =item Inherently Cross-Platform Methods
10893
10894 installvars
10895
10896 =back
10897
10898 os_flavor_is
10899
10900 =over 4
10901
10902 =item File::Spec wrappers
10903
10904 catfile
10905
10906 =back
10907
10908 =over 4
10909
10910 =item Thought To Be Cross-Platform Methods
10911
10912 B<split_command>
10913
10914 =back
10915
10916 B<echo>
10917
10918 init_VERSION
10919
10920 wraplist
10921
10922 manifypods
10923
10924 manifypods_target
10925
10926 makemakerdflt_target
10927
10928 special_targets
10929
10930 POD2MAN_macro
10931
10932 test_via_harness
10933
10934 test_via_script
10935
10936 libscan
10937
10938 tool_autosplit
10939
10940 all_target
10941
10942 metafile_target
10943
10944 metafile_addtomanifest_target
10945
10946 =over 4
10947
10948 =item Abstract methods
10949
10950 oneliner, B<quote_literal>, B<escape_newlines>, max_exec_len,
10951 B<init_others>, init_DIRFILESEP, init_linker, init_platform,
10952 platform_constants
10953
10954 =back
10955
10956 os_flavor
10957
10958 =over 4
10959
10960 =item AUTHOR
10961
10962 =back
10963
10964 =head2 ExtUtils::MM_BeOS - methods to override UN*X behaviour in
10965 ExtUtils::MakeMaker
10966
10967 =over 4
10968
10969 =item SYNOPSIS
10970
10971 =item DESCRIPTION
10972
10973 =back
10974
10975 os_flavor (o)
10976
10977 init_linker
10978
10979 =head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
10980 ExtUtils::MakeMaker
10981
10982 =over 4
10983
10984 =item SYNOPSIS
10985
10986 =item DESCRIPTION
10987
10988 os_flavor (o)
10989
10990 =back
10991
10992 cflags (o)
10993
10994 replace_manpage_separator (o)
10995
10996 init_linker
10997
10998 =head2 ExtUtils::MM_DOS - DOS specific subclass of ExtUtils::MM_Unix
10999
11000 =over 4
11001
11002 =item SYNOPSIS
11003
11004 =item DESCRIPTION
11005
11006 =over 4
11007
11008 =item Overridden methods
11009
11010 os_flavor
11011
11012 =back
11013
11014 =back
11015
11016 B<replace_manpage_separator>
11017
11018 =over 4
11019
11020 =item AUTHOR
11021
11022 =item SEE ALSO
11023
11024 =back
11025
11026 =head2 ExtUtils::MM_MacOS - methods to override UN*X behaviour in
11027 ExtUtils::MakeMaker
11028
11029 =over 4
11030
11031 =item SYNOPSIS
11032
11033 =item DESCRIPTION
11034
11035 =back
11036
11037 maybe_command
11038
11039 guess_name
11040
11041 macify
11042
11043 patternify
11044
11045 init_main
11046
11047 init_others
11048
11049 init_platform, platform_constants
11050
11051 init_dirscan
11052
11053 init_VERSION (o)
11054
11055 special_targets (o)
11056
11057 static (o)
11058
11059 dlsyms (o)
11060
11061 dynamic (o)
11062
11063 clean (o)
11064
11065 clean_subdirs_target
11066
11067 realclean (o)
11068
11069 realclean_subdirs_target
11070
11071 rulez (o)
11072
11073 processPL (o)
11074
11075 os_flavor
11076
11077 =head2 ExtUtils::MM_NW5 - methods to override UN*X behaviour in
11078 ExtUtils::MakeMaker
11079
11080 =over 4
11081
11082 =item SYNOPSIS
11083
11084 =item DESCRIPTION
11085
11086 =back
11087
11088 os_flavor
11089
11090 init_platform (o), platform_constants
11091
11092 const_cccmd (o)
11093
11094 static_lib (o)
11095
11096 dynamic_lib (o)
11097
11098 =head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
11099 ExtUtils::MakeMaker
11100
11101 =over 4
11102
11103 =item SYNOPSIS
11104
11105 =item DESCRIPTION
11106
11107 =item METHODS
11108
11109 init_dist (o)
11110
11111 =back
11112
11113 init_linker
11114
11115 os_flavor
11116
11117 =head2 ExtUtils::MM_UWIN - U/WIN specific subclass of ExtUtils::MM_Unix
11118
11119 =over 4
11120
11121 =item SYNOPSIS
11122
11123 =item DESCRIPTION
11124
11125 =over 4
11126
11127 =item Overridden methods
11128
11129 os_flavor
11130
11131 =back
11132
11133 =back
11134
11135 B<replace_manpage_separator>
11136
11137 =over 4
11138
11139 =item AUTHOR
11140
11141 =item SEE ALSO
11142
11143 =back
11144
11145 =head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
11146
11147 =over 4
11148
11149 =item SYNOPSIS
11150
11151 =item DESCRIPTION
11152
11153 =item METHODS
11154
11155 =back
11156
11157 =over 4
11158
11159 =item Methods
11160
11161 os_flavor (o)
11162
11163 =back
11164
11165 c_o (o)
11166
11167 cflags (o)
11168
11169 clean (o)
11170
11171 clean_subdirs_target
11172
11173 const_cccmd (o)
11174
11175 const_config (o)
11176
11177 const_loadlibs (o)
11178
11179 constants (o)
11180
11181 depend (o)
11182
11183 dir_target (o)
11184
11185 init_DEST
11186
11187 init_dist
11188
11189 dist (o)
11190
11191 dist_basics (o)
11192
11193 dist_ci (o)
11194
11195 dist_core (o)
11196
11197 B<dist_target>
11198
11199 B<tardist_target>
11200
11201 B<zipdist_target>
11202
11203 B<tarfile_target>
11204
11205 zipfile_target
11206
11207 uutardist_target
11208
11209 shdist_target
11210
11211 distdir
11212
11213 dist_test
11214
11215 dlsyms (o)
11216
11217 dynamic (o)
11218
11219 dynamic_bs (o)
11220
11221 dynamic_lib (o)
11222
11223 exescan
11224
11225 extliblist
11226
11227 find_perl
11228
11229 find_tests
11230
11231 =over 4
11232
11233 =item Methods to actually produce chunks of text for the Makefile
11234
11235 fixin
11236
11237 =back
11238
11239 force (o)
11240
11241 guess_name
11242
11243 has_link_code
11244
11245 init_dirscan
11246
11247 init_DIRFILESEP
11248
11249 init_main
11250
11251 init_others
11252
11253 init_INST
11254
11255 init_INSTALL
11256
11257 init_linker
11258
11259 init_lib2arch
11260
11261 init_PERL
11262
11263 init_platform (o), platform_constants (o)
11264
11265 init_PERM
11266
11267 init_xs
11268
11269 install (o)
11270
11271 installbin (o)
11272
11273 linkext (o)
11274
11275 lsdir
11276
11277 macro (o)
11278
11279 makeaperl (o)
11280
11281 makefile (o)
11282
11283 maybe_command
11284
11285 needs_linking (o)
11286
11287 nicetext
11288
11289 parse_abstract
11290
11291 parse_version
11292
11293 pasthru (o)
11294
11295 perl_script
11296
11297 perldepend (o)
11298
11299 perm_rw (o)
11300
11301 perm_rwx (o)
11302
11303 pm_to_blib
11304
11305 post_constants (o)
11306
11307 post_initialize (o)
11308
11309 postamble (o)
11310
11311 ppd
11312
11313 prefixify
11314
11315 processPL (o)
11316
11317 quote_paren
11318
11319 realclean (o)
11320
11321 realclean_subdirs_target
11322
11323 replace_manpage_separator
11324
11325 oneliner (o)
11326
11327 quote_literal
11328
11329 escape_newlines
11330
11331 max_exec_len
11332
11333 static (o)
11334
11335 static_lib (o)
11336
11337 staticmake (o)
11338
11339 subdir_x (o)
11340
11341 subdirs (o)
11342
11343 test (o)
11344
11345 test_via_harness (override)
11346
11347 test_via_script (override)
11348
11349 tools_other (o)
11350
11351 tool_xsubpp (o)
11352
11353 all_target
11354
11355 top_targets (o)
11356
11357 writedoc
11358
11359 xs_c (o)
11360
11361 xs_cpp (o)
11362
11363 xs_o (o)
11364
11365 =over 4
11366
11367 =item SEE ALSO
11368
11369 =back
11370
11371 =head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
11372 ExtUtils::MakeMaker
11373
11374 =over 4
11375
11376 =item SYNOPSIS
11377
11378 =item DESCRIPTION
11379
11380 =over 4
11381
11382 =item Methods always loaded
11383
11384 wraplist
11385
11386 =back
11387
11388 =back
11389
11390 =over 4
11391
11392 =item Methods
11393
11394 guess_name (override)
11395
11396 =back
11397
11398 find_perl (override)
11399
11400 maybe_command (override)
11401
11402 perl_script (override)
11403
11404 replace_manpage_separator
11405
11406 init_DEST
11407
11408 init_DIRFILESEP
11409
11410 init_main (override)
11411
11412 init_others (override)
11413
11414 init_platform (override)
11415
11416 platform_constants
11417
11418 init_VERSION (override)
11419
11420 constants (override)
11421
11422 special_targets
11423
11424 cflags (override)
11425
11426 const_cccmd (override)
11427
11428 tool_sxubpp (override)
11429
11430 tools_other (override)
11431
11432 init_dist (override)
11433
11434 c_o (override)
11435
11436 xs_c (override)
11437
11438 xs_o (override)
11439
11440 dlsyms (override)
11441
11442 dynamic_lib (override)
11443
11444 dynamic_bs (override)
11445
11446 static_lib (override)
11447
11448 processPL (override)
11449
11450 installbin (override)
11451
11452 subdir_x (override)
11453
11454 clean (override)
11455
11456 clean_subdirs_target
11457
11458 realclean (override)
11459
11460 zipfile_target (o), tarfile_target (o), shdist_target (o)
11461
11462 dist_test (override)
11463
11464 install (override)
11465
11466 perldepend (override)
11467
11468 makefile (override)
11469
11470 find_tests (override)
11471
11472 test (override)
11473
11474 makeaperl (override)
11475
11476 nicetext (override)
11477
11478 prefixify (override)
11479
11480 oneliner (o)
11481
11482 B<echo> (o)
11483
11484 quote_literal
11485
11486 escape_newlines
11487
11488 max_exec_len
11489
11490 init_linker (o)
11491
11492 eliminate_macros
11493
11494 fixpath
11495
11496 os_flavor
11497
11498 =head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
11499 ExtUtils::MakeMaker
11500
11501 =over 4
11502
11503 =item SYNOPSIS
11504
11505 =item DESCRIPTION
11506
11507 =back
11508
11509 =over 4
11510
11511 =item Overridden methods
11512
11513 B<dlsyms>
11514
11515 =back
11516
11517 replace_manpage_separator
11518
11519 B<maybe_command>
11520
11521 B<find_tests>
11522
11523 B<init_DIRFILESEP>
11524
11525 B<init_others>
11526
11527 init_platform (o), platform_constants (o)
11528
11529 special_targets (o)
11530
11531 static_lib (o)
11532
11533 dynamic_lib (o)
11534
11535 clean
11536
11537 init_linker
11538
11539 perl_script
11540
11541 xs_o (o)
11542
11543 pasthru (o)
11544
11545 oneliner (o)
11546
11547 max_exec_len
11548
11549 os_flavor
11550
11551 =head2 ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X
11552
11553 =over 4
11554
11555 =item SYNOPSIS
11556
11557 =item DESCRIPTION
11558
11559 =over 4
11560
11561 =item Overriden methods
11562
11563 dist_test
11564
11565 =back
11566
11567 =back
11568
11569 subdir_x
11570
11571 xs_c
11572
11573 xs_cpp
11574
11575 xs_o
11576
11577 clean_subdirs_target
11578
11579 realclean_subdirs_target
11580
11581 os_flavor
11582
11583 =over 4
11584
11585 =item AUTHOR
11586
11587 =back
11588
11589 =head2 ExtUtils::MY - ExtUtils::MakeMaker subclass for customization
11590
11591 =over 4
11592
11593 =item SYNOPSIS
11594
11595 =item DESCRIPTION
11596
11597 =back
11598
11599 =head2 ExtUtils::MakeMaker - Create a module Makefile
11600
11601 =over 4
11602
11603 =item SYNOPSIS
11604
11605 =item DESCRIPTION
11606
11607 =over 4
11608
11609 =item How To Write A Makefile.PL
11610
11611 =item Default Makefile Behaviour
11612
11613 =item make test
11614
11615 =item make testdb
11616
11617 =item make install
11618
11619 =item PREFIX and LIB attribute
11620
11621 =item AFS users
11622
11623 =item Static Linking of a new Perl Binary
11624
11625 =item Determination of Perl Library and Installation Locations
11626
11627 =item Which architecture dependent directory?
11628
11629 =item Using Attributes and Parameters
11630
11631 ABSTRACT, ABSTRACT_FROM, AUTHOR, BINARY_LOCATION, C, CCFLAGS, CONFIG,
11632 CONFIGURE, DEFINE, DESTDIR, DIR, DISTNAME, DISTVNAME, DL_FUNCS, DL_VARS,
11633 EXCLUDE_EXT, EXE_FILES, FIRST_MAKEFILE, FULLPERL, FULLPERLRUN,
11634 FULLPERLRUNINST, FUNCLIST, H, IMPORTS, INC, INCLUDE_EXT, INSTALLARCHLIB,
11635 INSTALLBIN, INSTALLDIRS, INSTALLMAN1DIR, INSTALLMAN3DIR, INSTALLPRIVLIB,
11636 INSTALLSCRIPT, INSTALLSITEARCH, INSTALLSITEBIN, INSTALLSITELIB,
11637 INSTALLSITEMAN1DIR, INSTALLSITEMAN3DIR, INSTALLVENDORARCH,
11638 INSTALLVENDORBIN, INSTALLVENDORLIB, INSTALLVENDORMAN1DIR,
11639 INSTALLVENDORMAN3DIR, INST_ARCHLIB, INST_BIN, INST_LIB, INST_MAN1DIR,
11640 INST_MAN3DIR, INST_SCRIPT, LD, LDDLFLAGS, LDFROM, LIB, LIBPERL_A, LIBS,
11641 LINKTYPE, MAKEAPERL, MAKEFILE_OLD, MAN1PODS, MAN3PODS, MAP_TARGET,
11642 MYEXTLIB, NAME, NEEDS_LINKING, NOECHO, NORECURS, NO_META, NO_VC, OBJECT,
11643 OPTIMIZE, PERL, PERL_CORE, PERLMAINCC, PERL_ARCHLIB, PERL_LIB,
11644 PERL_MALLOC_OK, PERLPREFIX, PERLRUN, PERLRUNINST, PERL_SRC, PERM_RW,
11645 PERM_RWX, PL_FILES, PM, PMLIBDIRS, PM_FILTER, POLLUTE, PPM_INSTALL_EXEC,
11646 PPM_INSTALL_SCRIPT, PREFIX, PREREQ_FATAL, PREREQ_PM, PREREQ_PRINT,
11647 PRINT_PREREQ, SITEPREFIX, SKIP, TYPEMAPS, VENDORPREFIX, VERBINST, VERSION,
11648 VERSION_FROM, VERSION_SYM, XS, XSOPT, XSPROTOARG, XS_VERSION
11649
11650 =item Additional lowercase attributes
11651
11652 clean, depend, dist, dynamic_lib, linkext, macro, postamble, realclean,
11653 test, tool_autosplit
11654
11655 =item Overriding MakeMaker Methods
11656
11657 =item The End Of Cargo Cult Programming
11658
11659 C<<MAN3PODS => ' '>>
11660
11661 =item Hintsfile support
11662
11663 =item Distribution Support
11664
11665    make distcheck,    make skipcheck,    make distclean,    make manifest, 
11666   make distdir,   make disttest,    make tardist,    make dist,    make
11667 uutardist,    make shdist,    make zipdist,    make ci
11668
11669 =item Module Meta-Data
11670
11671 =item Disabling an extension
11672
11673 =item Other Handy Functions
11674
11675 prompt
11676
11677 =back
11678
11679 =item ENVIRONMENT
11680
11681 PERL_MM_OPT, PERL_MM_USE_DEFAULT
11682
11683 =item SEE ALSO
11684
11685 =item AUTHORS
11686
11687 =item LICENSE
11688
11689 =back
11690
11691 =head2 ExtUtils::MakeMaker::FAQ - Frequently Asked Questions About
11692 MakeMaker
11693
11694 =over 4
11695
11696 =item DESCRIPTION
11697
11698 =over 4
11699
11700 =item Philosophy and History
11701
11702 Why not just use <insert other build config tool here>?, What's
11703 Module::Build and how does it relate to MakeMaker?, pure perl.  no make, no
11704 shell commands, easier to customize, cleaner internals, less cruft
11705
11706 =item Module Writing
11707
11708 How do I keep my $VERSION up to date without resetting it manually?, What's
11709 this F<META.yml> thing and how did it get in my F<MANIFEST>?!
11710
11711 =item XS
11712
11713 How to I prevent "object version X.XX does not match bootstrap parameter
11714 Y.YY" errors?, How do I make two or more XS files coexist in the same
11715 directory?
11716
11717 =back
11718
11719 =item PATCHING
11720
11721 =item AUTHOR
11722
11723 =item SEE ALSO
11724
11725 =back
11726
11727 =head2 ExtUtils::MakeMaker::Tutorial - Writing a module with MakeMaker
11728
11729 =over 4
11730
11731 =item SYNOPSIS
11732
11733 =item DESCRIPTION
11734
11735 =over 4
11736
11737 =item The Mantra
11738
11739 =item The Layout
11740
11741 Makefile.PL, MANIFEST, lib/, t/, Changes, README, INSTALL, MANIFEST.SKIP,
11742 bin/
11743
11744 =back
11745
11746 =item SEE ALSO
11747
11748 =back
11749
11750 =head2 ExtUtils::MakeMaker::bytes - Version agnostic bytes.pm
11751
11752 =over 4
11753
11754 =item SYNOPSIS
11755
11756 =item DESCRIPTION
11757
11758 =back
11759
11760 =head2 ExtUtils::MakeMaker::vmsish - Platform agnostic vmsish.pm
11761
11762 =over 4
11763
11764 =item SYNOPSIS
11765
11766 =item DESCRIPTION
11767
11768 =back
11769
11770 =head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
11771
11772 =over 4
11773
11774 =item SYNOPSIS
11775
11776 =item DESCRIPTION
11777
11778 =over 4
11779
11780 =item Functions
11781
11782 mkmanifest
11783
11784 =back
11785
11786 =back
11787
11788 manifind
11789
11790 manicheck
11791
11792 filecheck
11793
11794 fullcheck
11795
11796 skipcheck
11797
11798 maniread
11799
11800 manicopy
11801
11802 maniadd
11803
11804 =over 4
11805
11806 =item MANIFEST
11807
11808 =item MANIFEST.SKIP
11809
11810 =item EXPORT_OK
11811
11812 =item GLOBAL VARIABLES
11813
11814 =back
11815
11816 =over 4
11817
11818 =item DIAGNOSTICS
11819
11820 C<Not in MANIFEST:> I<file>, C<Skipping> I<file>, C<No such file:> I<file>,
11821 C<MANIFEST:> I<$!>, C<Added to MANIFEST:> I<file>
11822
11823 =item ENVIRONMENT
11824
11825 B<PERL_MM_MANIFEST_DEBUG>
11826
11827 =item SEE ALSO
11828
11829 =item AUTHOR
11830
11831 =back
11832
11833 =head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
11834
11835 =over 4
11836
11837 =item SYNOPSIS
11838
11839 =item DESCRIPTION
11840
11841 =back
11842
11843 =head2 ExtUtils::Mksymlists - write linker options files for dynamic
11844 extension
11845
11846 =over 4
11847
11848 =item SYNOPSIS
11849
11850 =item DESCRIPTION
11851
11852 DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME
11853
11854 =item AUTHOR
11855
11856 =item REVISION
11857
11858 =back
11859
11860 =head2 ExtUtils::Packlist - manage .packlist files
11861
11862 =over 4
11863
11864 =item SYNOPSIS
11865
11866 =item DESCRIPTION
11867
11868 =item USAGE
11869
11870 =item FUNCTIONS
11871
11872 new(), read(), write(), validate(), packlist_file()
11873
11874 =item EXAMPLE
11875
11876 =item AUTHOR
11877
11878 =back
11879
11880 =head2 ExtUtils::testlib - add blib/* directories to @INC
11881
11882 =over 4
11883
11884 =item SYNOPSIS
11885
11886 =item DESCRIPTION
11887
11888 =back
11889
11890 =head2 Fatal - replace functions with equivalents which succeed or die
11891
11892 =over 4
11893
11894 =item SYNOPSIS
11895
11896 =item DESCRIPTION
11897
11898 =item AUTHOR
11899
11900 =back
11901
11902 =head2 Fcntl - load the C Fcntl.h defines
11903
11904 =over 4
11905
11906 =item SYNOPSIS
11907
11908 =item DESCRIPTION
11909
11910 =item NOTE
11911
11912 =item EXPORTED SYMBOLS
11913
11914 =back
11915
11916 =head2 File::Basename, fileparse - split a pathname into pieces
11917
11918 =over 4
11919
11920 =item SYNOPSIS
11921
11922 =item DESCRIPTION
11923
11924 fileparse_set_fstype, fileparse
11925
11926 =item EXAMPLES
11927
11928 C<basename>, C<dirname>
11929
11930 =back
11931
11932 =head2 File::CheckTree, validate - run many filetest checks on a tree
11933
11934 =over 4
11935
11936 =item SYNOPSIS
11937
11938 =item DESCRIPTION
11939
11940 =item AUTHOR
11941
11942 =item HISTORY
11943
11944 =back
11945
11946 =head2 File::Compare - Compare files or filehandles
11947
11948 =over 4
11949
11950 =item SYNOPSIS
11951
11952 =item DESCRIPTION
11953
11954 =item RETURN
11955
11956 =item AUTHOR
11957
11958 =back
11959
11960 =head2 File::Copy - Copy files or filehandles
11961
11962 =over 4
11963
11964 =item SYNOPSIS
11965
11966 =item DESCRIPTION
11967
11968 =over 4
11969
11970 =item Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
11971
11972 rmscopy($from,$to[,$date_flag])
11973
11974 =back
11975
11976 =item RETURN
11977
11978 =item NOTES
11979
11980 =item AUTHOR
11981
11982 =back
11983
11984 =head2 File::DosGlob - DOS like globbing and then some
11985
11986 =over 4
11987
11988 =item SYNOPSIS
11989
11990 =item DESCRIPTION
11991
11992 =item NOTES
11993
11994 =item EXPORTS (by request only)
11995
11996 =item BUGS
11997
11998 =item AUTHOR
11999
12000 =item HISTORY
12001
12002 =item SEE ALSO
12003
12004 =back
12005
12006 =head2 File::Find - Traverse a directory tree.
12007
12008 =over 4
12009
12010 =item SYNOPSIS
12011
12012 =item DESCRIPTION
12013
12014 B<find>, B<finddepth>
12015
12016 =over 4
12017
12018 =item %options
12019
12020 C<wanted>, C<bydepth>, C<preprocess>, C<postprocess>, C<follow>,
12021 C<follow_fast>, C<follow_skip>, C<dangling_symlinks>, C<no_chdir>,
12022 C<untaint>, C<untaint_pattern>, C<untaint_skip>
12023
12024 =item The wanted function
12025
12026 C<$File::Find::dir> is the current directory name,, C<$_> is the current
12027 filename within that directory, C<$File::Find::name> is the complete
12028 pathname to the file
12029
12030 =back
12031
12032 =item WARNINGS
12033
12034 =item CAVEAT
12035
12036 $dont_use_nlink, symlinks
12037
12038 =item NOTES
12039
12040 =item HISTORY
12041
12042 =back
12043
12044 =head2 File::Glob - Perl extension for BSD glob routine
12045
12046 =over 4
12047
12048 =item SYNOPSIS
12049
12050 =item DESCRIPTION
12051
12052 C<GLOB_ERR>, C<GLOB_LIMIT>, C<GLOB_MARK>, C<GLOB_NOCASE>, C<GLOB_NOCHECK>,
12053 C<GLOB_NOSORT>, C<GLOB_BRACE>, C<GLOB_NOMAGIC>, C<GLOB_QUOTE>,
12054 C<GLOB_TILDE>, C<GLOB_CSH>, C<GLOB_ALPHASORT>
12055
12056 =item DIAGNOSTICS
12057
12058 C<GLOB_NOSPACE>, C<GLOB_ABEND>
12059
12060 =item NOTES
12061
12062 =item AUTHOR
12063
12064 =back
12065
12066 =head2 File::Path - create or remove directory trees
12067
12068 =over 4
12069
12070 =item SYNOPSIS
12071
12072 =item DESCRIPTION
12073
12074 =item DIAGNOSTICS
12075
12076 =item AUTHORS
12077
12078 =back
12079
12080 =head2 File::Spec - portably perform operations on file names
12081
12082 =over 4
12083
12084 =item SYNOPSIS
12085
12086 =item DESCRIPTION
12087
12088 =item METHODS
12089
12090 canonpath, catdir, catfile, curdir, devnull, rootdir, tmpdir, updir,
12091 no_upwards, case_tolerant, file_name_is_absolute, path, join, splitpath,
12092 splitdir, catpath(), abs2rel, rel2abs()
12093
12094 =item SEE ALSO
12095
12096 =item AUTHORS
12097
12098 =back
12099
12100 =head2 File::Spec::Cygwin - methods for Cygwin file specs
12101
12102 =over 4
12103
12104 =item SYNOPSIS
12105
12106 =item DESCRIPTION
12107
12108 =back
12109
12110 canonpath
12111
12112 file_name_is_absolute
12113
12114 tmpdir (override)
12115
12116 =head2 File::Spec::Epoc - methods for Epoc file specs
12117
12118 =over 4
12119
12120 =item SYNOPSIS
12121
12122 =item DESCRIPTION
12123
12124 =item AUTHORS
12125
12126 =back
12127
12128 canonpath()
12129
12130 =over 4
12131
12132 =item SEE ALSO
12133
12134 =back
12135
12136 =head2 File::Spec::Functions - portably perform operations on file names
12137
12138 =over 4
12139
12140 =item SYNOPSIS
12141
12142 =item DESCRIPTION
12143
12144 =over 4
12145
12146 =item Exports
12147
12148 =back
12149
12150 =item SEE ALSO
12151
12152 =back
12153
12154 =head2 File::Spec::Mac - File::Spec for Mac OS (Classic)
12155
12156 =over 4
12157
12158 =item SYNOPSIS
12159
12160 =item DESCRIPTION
12161
12162 =item METHODS
12163
12164 canonpath
12165
12166 =back
12167
12168 catdir()
12169
12170 catfile
12171
12172 curdir
12173
12174 devnull
12175
12176 rootdir
12177
12178 tmpdir
12179
12180 updir
12181
12182 file_name_is_absolute
12183
12184 path
12185
12186 splitpath
12187
12188 splitdir
12189
12190 catpath
12191
12192 abs2rel
12193
12194 rel2abs
12195
12196 =over 4
12197
12198 =item AUTHORS
12199
12200 =item SEE ALSO
12201
12202 =back
12203
12204 =head2 File::Spec::OS2 - methods for OS/2 file specs
12205
12206 =over 4
12207
12208 =item SYNOPSIS
12209
12210 =item DESCRIPTION
12211
12212 tmpdir, splitpath
12213
12214 =back
12215
12216 =head2 File::Spec::Unix - File::Spec for Unix, base for other File::Spec
12217 modules
12218
12219 =over 4
12220
12221 =item SYNOPSIS
12222
12223 =item DESCRIPTION
12224
12225 =item METHODS
12226
12227 canonpath()
12228
12229 =back
12230
12231 catdir()
12232
12233 catfile
12234
12235 curdir
12236
12237 devnull
12238
12239 rootdir
12240
12241 tmpdir
12242
12243 updir
12244
12245 no_upwards
12246
12247 case_tolerant
12248
12249 file_name_is_absolute
12250
12251 path
12252
12253 join
12254
12255 splitpath
12256
12257 splitdir
12258
12259 catpath()
12260
12261 abs2rel
12262
12263 rel2abs()
12264
12265 =over 4
12266
12267 =item SEE ALSO
12268
12269 =back
12270
12271 =head2 File::Spec::VMS - methods for VMS file specs
12272
12273 =over 4
12274
12275 =item SYNOPSIS
12276
12277 =item DESCRIPTION
12278
12279 eliminate_macros
12280
12281 =back
12282
12283 fixpath
12284
12285 =over 4
12286
12287 =item Methods always loaded
12288
12289 canonpath (override)
12290
12291 =back
12292
12293 catdir
12294
12295 catfile
12296
12297 curdir (override)
12298
12299 devnull (override)
12300
12301 rootdir (override)
12302
12303 tmpdir (override)
12304
12305 updir (override)
12306
12307 case_tolerant (override)
12308
12309 path (override)
12310
12311 file_name_is_absolute (override)
12312
12313 splitpath (override)
12314
12315 splitdir (override)
12316
12317 catpath (override)
12318
12319 abs2rel (override)
12320
12321 rel2abs (override)
12322
12323 =over 4
12324
12325 =item SEE ALSO
12326
12327 =back
12328
12329 =head2 File::Spec::Win32 - methods for Win32 file specs
12330
12331 =over 4
12332
12333 =item SYNOPSIS
12334
12335 =item DESCRIPTION
12336
12337 devnull
12338
12339 =back
12340
12341 tmpdir
12342
12343 catfile
12344
12345 canonpath
12346
12347 splitpath
12348
12349 splitdir
12350
12351 catpath
12352
12353 =over 4
12354
12355 =item Note For File::Spec::Win32 Maintainers
12356
12357 =back
12358
12359 =over 4
12360
12361 =item SEE ALSO
12362
12363 =back
12364
12365 =head2 File::Temp - return name and handle of a temporary file safely
12366
12367 =over 4
12368
12369 =item PORTABILITY
12370
12371 =item SYNOPSIS
12372
12373 =item DESCRIPTION
12374
12375 =back
12376
12377 =over 4
12378
12379 =item OO INTERFACE
12380
12381 B<new>
12382
12383 =back
12384
12385 B<filename>
12386
12387 B<DESTROY>
12388
12389 =over 4
12390
12391 =item FUNCTIONS
12392
12393 B<tempfile>
12394
12395 =back
12396
12397 B<tempdir>
12398
12399 =over 4
12400
12401 =item MKTEMP FUNCTIONS
12402
12403 B<mkstemp>
12404
12405 =back
12406
12407 B<mkstemps>
12408
12409 B<mkdtemp>
12410
12411 B<mktemp>
12412
12413 =over 4
12414
12415 =item POSIX FUNCTIONS
12416
12417 B<tmpnam>
12418
12419 =back
12420
12421 B<tmpfile>
12422
12423 =over 4
12424
12425 =item ADDITIONAL FUNCTIONS
12426
12427 B<tempnam>
12428
12429 =back
12430
12431 =over 4
12432
12433 =item UTILITY FUNCTIONS
12434
12435 B<unlink0>
12436
12437 =back
12438
12439 B<cmpstat>
12440
12441 B<unlink1>
12442
12443 =over 4
12444
12445 =item PACKAGE VARIABLES
12446
12447 B<safe_level>, STANDARD, MEDIUM, HIGH
12448
12449 =back
12450
12451 TopSystemUID
12452
12453 =over 4
12454
12455 =item WARNING
12456
12457 =over 4
12458
12459 =item Temporary files and NFS
12460
12461 =back
12462
12463 =item HISTORY
12464
12465 =item SEE ALSO
12466
12467 =item AUTHOR
12468
12469 =back
12470
12471 =head2 File::stat - by-name interface to Perl's built-in stat() functions
12472
12473 =over 4
12474
12475 =item SYNOPSIS
12476
12477 =item DESCRIPTION
12478
12479 =item BUGS
12480
12481 =item NOTE
12482
12483 =item AUTHOR
12484
12485 =back
12486
12487 =head2 FileCache - keep more files open than the system permits
12488
12489 =over 4
12490
12491 =item SYNOPSIS
12492
12493 =item DESCRIPTION
12494
12495 cacheout EXPR, cacheout MODE, EXPR
12496
12497 =item CAVEATS
12498
12499 =item BUGS
12500
12501 =item NOTES
12502
12503 =back
12504
12505 =head2 FileHandle - supply object methods for filehandles
12506
12507 =over 4
12508
12509 =item SYNOPSIS
12510
12511 =item DESCRIPTION
12512
12513 $fh->print, $fh->printf, $fh->getline, $fh->getlines
12514
12515 =item SEE ALSO
12516
12517 =back
12518
12519 =head2 Filter::Simple - Simplified source filtering
12520
12521 =over 4
12522
12523 =item SYNOPSIS
12524
12525 =item DESCRIPTION
12526
12527 =over 4
12528
12529 =item The Problem
12530
12531 =item A Solution
12532
12533 =item Disabling or changing <no> behaviour
12534
12535 =item All-in-one interface
12536
12537 =item Filtering only specific components of source code
12538
12539 C<"code">, C<"executable">, C<"quotelike">, C<"string">, C<"regex">,
12540 C<"all">
12541
12542 =item Filtering only the code parts of source code
12543
12544 Most source code ceases to be grammatically correct when it is broken up
12545 into the pieces between string literals and regexes. So the C<'code'>
12546 component filter behaves slightly differently from the other partial
12547 filters
12548 described in the previous section.
12549
12550 =item Using Filter::Simple with an explicit C<import> subroutine
12551
12552 =item Using Filter::Simple and Exporter together
12553
12554 =item How it works
12555
12556 =back
12557
12558 =item AUTHOR
12559
12560 =item COPYRIGHT
12561
12562 =back
12563
12564 =head2 Filter::Util::Call - Perl Source Filter Utility Module
12565
12566 =over 4
12567
12568 =item SYNOPSIS
12569
12570 =item DESCRIPTION
12571
12572 =over 4
12573
12574 =item B<use Filter::Util::Call>
12575
12576 =item B<import()>
12577
12578 =item B<filter() and anonymous sub>
12579
12580 B<$_>, B<$status>, B<filter_read> and B<filter_read_exact>, B<filter_del>
12581
12582 =back
12583
12584 =item EXAMPLES
12585
12586 =over 4
12587
12588 =item Example 1: A simple filter.
12589
12590 =item Example 2: Using the context
12591
12592 =item Example 3: Using the context within the filter
12593
12594 =item Example 4: Using filter_del
12595
12596 =back
12597
12598 =item Filter::Simple
12599
12600 =item AUTHOR
12601
12602 =item DATE
12603
12604 =back
12605
12606 =head2 FindBin - Locate directory of original perl script
12607
12608 =over 4
12609
12610 =item SYNOPSIS
12611
12612 =item DESCRIPTION
12613
12614 =item EXPORTABLE VARIABLES
12615
12616 =item KNOWN ISSUES
12617
12618 =item KNOWN BUGS
12619
12620 =item AUTHORS
12621
12622 =item COPYRIGHT
12623
12624 =back
12625
12626 =head2 GDBM_File - Perl5 access to the gdbm library.
12627
12628 =over 4
12629
12630 =item SYNOPSIS
12631
12632 =item DESCRIPTION
12633
12634 =item AVAILABILITY
12635
12636 =item BUGS
12637
12638 =item SEE ALSO
12639
12640 =back
12641
12642 =head2 Getopt::Long - Extended processing of command line options
12643
12644 =over 4
12645
12646 =item SYNOPSIS
12647
12648 =item DESCRIPTION
12649
12650 =item Command Line Options, an Introduction
12651
12652 =item Getting Started with Getopt::Long
12653
12654 =over 4
12655
12656 =item Simple options
12657
12658 =item A little bit less simple options
12659
12660 =item Mixing command line option with other arguments
12661
12662 =item Options with values
12663
12664 =item Options with multiple values
12665
12666 =item Options with hash values
12667
12668 =item User-defined subroutines to handle options
12669
12670 =item Options with multiple names
12671
12672 =item Case and abbreviations
12673
12674 =item Summary of Option Specifications
12675
12676 !, +, s, i, o, f, : I<type> [ I<desttype> ], : I<number> [ I<desttype> ], :
12677 + [ I<desttype> ]
12678
12679 =back
12680
12681 =item Advanced Possibilities
12682
12683 =over 4
12684
12685 =item Object oriented interface
12686
12687 =item Thread Safety
12688
12689 =item Documentation and help texts
12690
12691 =item Storing options in a hash
12692
12693 =item Bundling
12694
12695 =item The lonesome dash
12696
12697 =item Argument callback
12698
12699 =back
12700
12701 =item Configuring Getopt::Long
12702
12703 default, posix_default, auto_abbrev, getopt_compat, gnu_compat, gnu_getopt,
12704 require_order, permute, bundling (default: disabled), bundling_override
12705 (default: disabled), ignore_case  (default: enabled), ignore_case_always
12706 (default: disabled), auto_version (default:disabled), auto_help
12707 (default:disabled), pass_through (default: disabled), prefix,
12708 prefix_pattern, debug (default: disabled)
12709
12710 =item Exportable Methods
12711
12712 VersionMessage, C<-message>, C<-msg>, C<-exitval>, C<-output>, HelpMessage
12713
12714 =item Return values and Errors
12715
12716 =item Legacy
12717
12718 =over 4
12719
12720 =item Default destinations
12721
12722 =item Alternative option starters
12723
12724 =item Configuration variables
12725
12726 =back
12727
12728 =item Trouble Shooting
12729
12730 =over 4
12731
12732 =item GetOptions does not return a false result when an option is not
12733 supplied
12734
12735 =item GetOptions does not split the command line correctly
12736
12737 =item Undefined subroutine &main::GetOptions called
12738
12739 =item How do I put a "-?" option into a Getopt::Long?
12740
12741 =back
12742
12743 =item AUTHOR
12744
12745 =item COPYRIGHT AND DISCLAIMER
12746
12747 =back
12748
12749 =head2 Getopt::Std, getopt - Process single-character switches with switch
12750 clustering
12751
12752 =over 4
12753
12754 =item SYNOPSIS
12755
12756 =item DESCRIPTION
12757
12758 =item C<--help> and C<--version>
12759
12760 =back
12761
12762 =head2 Hash::Util - A selection of general-utility hash subroutines
12763
12764 =over 4
12765
12766 =item SYNOPSIS
12767
12768 =item DESCRIPTION
12769
12770 =over 4
12771
12772 =item Restricted hashes
12773
12774 lock_keys, unlock_keys
12775
12776 =back
12777
12778 =back
12779
12780 lock_value, unlock_value
12781
12782 B<lock_hash>, B<unlock_hash>
12783
12784 B<hash_seed>
12785
12786 =over 4
12787
12788 =item CAVEATS
12789
12790 =item AUTHOR
12791
12792 =item SEE ALSO
12793
12794 =back
12795
12796 =head2 I18N::Collate - compare 8-bit scalar data according to the current
12797 locale
12798
12799 =over 4
12800
12801 =item SYNOPSIS
12802
12803 =item DESCRIPTION
12804
12805 =back
12806
12807 =head2 I18N::LangTags - functions for dealing with RFC3066-style language
12808 tags
12809
12810 =over 4
12811
12812 =item SYNOPSIS
12813
12814 =item DESCRIPTION
12815
12816 =back
12817
12818 the function is_language_tag($lang1)
12819
12820 the function extract_language_tags($whatever)
12821
12822 the function same_language_tag($lang1, $lang2)
12823
12824 the function similarity_language_tag($lang1, $lang2)
12825
12826 the function is_dialect_of($lang1, $lang2)
12827
12828 the function super_languages($lang1)
12829
12830 the function locale2language_tag($locale_identifier)
12831
12832 the function encode_language_tag($lang1)
12833
12834 the function alternate_language_tags($lang1)
12835
12836 the function @langs = panic_languages(@accept_languages)
12837
12838 =over 4
12839
12840 =item ABOUT LOWERCASING
12841
12842 =item ABOUT UNICODE PLAINTEXT LANGUAGE TAGS
12843
12844 =item SEE ALSO
12845
12846 =item COPYRIGHT
12847
12848 =item AUTHOR
12849
12850 =back
12851
12852 =head2 I18N::LangTags::List -- tags and names for human languages
12853
12854 =over 4
12855
12856 =item SYNOPSIS
12857
12858 =item DESCRIPTION
12859
12860 =item ABOUT LANGUAGE TAGS
12861
12862 =item LIST OF LANGUAGES
12863
12864 {ab} : Abkhazian, {ace} : Achinese, {ach} : Acoli, {ada} : Adangme, {ady} :
12865 Adyghe, {aa} : Afar, {afh} : Afrihili, {af} : Afrikaans, [{afa} :
12866 Afro-Asiatic (Other)], {ak} : Akan, {akk} : Akkadian, {sq} : Albanian,
12867 {ale} : Aleut, [{alg} : Algonquian languages], [{tut} : Altaic (Other)],
12868 {am} : Amharic, {i-ami} : Ami, [{apa} : Apache languages], {ar} : Arabic,
12869 {arc} : Aramaic, {arp} : Arapaho, {arn} : Araucanian, {arw} : Arawak, {hy}
12870 : Armenian, {an} : Aragonese, [{art} : Artificial (Other)], {ast} :
12871 Asturian, {as} : Assamese, [{ath} : Athapascan languages], [{aus} :
12872 Australian languages], [{map} : Austronesian (Other)], {av} : Avaric, {ae}
12873 : Avestan, {awa} : Awadhi, {ay} : Aymara, {az} : Azerbaijani, {ban} :
12874 Balinese, [{bat} : Baltic (Other)], {bal} : Baluchi, {bm} : Bambara, [{bai}
12875 : Bamileke languages], {bad} : Banda, [{bnt} : Bantu (Other)], {bas} :
12876 Basa, {ba} : Bashkir, {eu} : Basque, {btk} : Batak (Indonesia), {bej} :
12877 Beja, {be} : Belarusian, {bem} : Bemba, {bn} : Bengali, [{ber} : Berber
12878 (Other)], {bho} : Bhojpuri, {bh} : Bihari, {bik} : Bikol, {bin} : Bini,
12879 {bi} : Bislama, {bs} : Bosnian, {bra} : Braj, {br} : Breton, {bug} :
12880 Buginese, {bg} : Bulgarian, {i-bnn} : Bunun, {bua} : Buriat, {my} :
12881 Burmese, {cad} : Caddo, {car} : Carib, {ca} : Catalan, [{cau} : Caucasian
12882 (Other)], {ceb} : Cebuano, [{cel} : Celtic (Other)], [{cai} : Central
12883 American Indian (Other)], {chg} : Chagatai, [{cmc} : Chamic languages],
12884 {ch} : Chamorro, {ce} : Chechen, {chr} : Cherokee, {chy} : Cheyenne, {chb}
12885 : Chibcha, {ny} : Chichewa, {zh} : Chinese, {chn} : Chinook Jargon, {chp} :
12886 Chipewyan, {cho} : Choctaw, {cu} : Church Slavic, {chk} : Chuukese, {cv} :
12887 Chuvash, {cop} : Coptic, {kw} : Cornish, {co} : Corsican, {cr} : Cree,
12888 {mus} : Creek, [{cpe} : English-based Creoles and pidgins (Other)], [{cpf}
12889 : French-based Creoles and pidgins (Other)], [{cpp} : Portuguese-based
12890 Creoles and pidgins (Other)], [{crp} : Creoles and pidgins (Other)], {hr} :
12891 Croatian, [{cus} : Cushitic (Other)], {cs} : Czech, {dak} : Dakota, {da} :
12892 Danish, {dar} : Dargwa, {day} : Dayak, {i-default} : Default (Fallthru)
12893 Language, {del} : Delaware, {din} : Dinka, {dv} : Divehi, {doi} : Dogri,
12894 {dgr} : Dogrib, [{dra} : Dravidian (Other)], {dua} : Duala, {nl} : Dutch,
12895 {dum} : Middle Dutch (ca.1050-1350), {dyu} : Dyula, {dz} : Dzongkha, {efi}
12896 : Efik, {egy} : Ancient Egyptian, {eka} : Ekajuk, {elx} : Elamite, {en} :
12897 English, {enm} : Old English (1100-1500), {ang} : Old English
12898 (ca.450-1100), {i-enochian} : Enochian (Artificial), {myv} : Erzya, {eo} :
12899 Esperanto, {et} : Estonian, {ee} : Ewe, {ewo} : Ewondo, {fan} : Fang, {fat}
12900 : Fanti, {fo} : Faroese, {fj} : Fijian, {fi} : Finnish, [{fiu} :
12901 Finno-Ugrian (Other)], {fon} : Fon, {fr} : French, {frm} : Middle French
12902 (ca.1400-1600), {fro} : Old French (842-ca.1400), {fy} : Frisian, {fur} :
12903 Friulian, {ff} : Fulah, {gaa} : Ga, {gd} : Scots Gaelic, {gl} : Gallegan,
12904 {lg} : Ganda, {gay} : Gayo, {gba} : Gbaya, {gez} : Geez, {ka} : Georgian,
12905 {de} : German, {gmh} : Middle High German (ca.1050-1500), {goh} : Old High
12906 German (ca.750-1050), [{gem} : Germanic (Other)], {gil} : Gilbertese, {gon}
12907 : Gondi, {gor} : Gorontalo, {got} : Gothic, {grb} : Grebo, {grc} : Ancient
12908 Greek, {el} : Modern Greek, {gn} : Guarani, {gu} : Gujarati, {gwi} :
12909 Gwich'in, {hai} : Haida, {ht} : Haitian, {ha} : Hausa, {haw} : Hawaiian,
12910 {he} : Hebrew, {hz} : Herero, {hil} : Hiligaynon, {him} : Himachali, {hi} :
12911 Hindi, {ho} : Hiri Motu, {hit} : Hittite, {hmn} : Hmong, {hu} : Hungarian,
12912 {hup} : Hupa, {iba} : Iban, {is} : Icelandic, {io} : Ido, {ig} : Igbo,
12913 {ijo} : Ijo, {ilo} : Iloko, [{inc} : Indic (Other)], [{ine} : Indo-European
12914 (Other)], {id} : Indonesian, {inh} : Ingush, {ia} : Interlingua
12915 (International Auxiliary Language Association), {ie} : Interlingue, {iu} :
12916 Inuktitut, {ik} : Inupiaq, [{ira} : Iranian (Other)], {ga} : Irish, {mga} :
12917 Middle Irish (900-1200), {sga} : Old Irish (to 900), [{iro} : Iroquoian
12918 languages], {it} : Italian, {ja} : Japanese, {jv} : Javanese, {jrb} :
12919 Judeo-Arabic, {jpr} : Judeo-Persian, {kbd} : Kabardian, {kab} : Kabyle,
12920 {kac} : Kachin, {kl} : Kalaallisut, {xal} : Kalmyk, {kam} : Kamba, {kn} :
12921 Kannada, {kr} : Kanuri, {krc} : Karachay-Balkar, {kaa} : Kara-Kalpak, {kar}
12922 : Karen, {ks} : Kashmiri, {csb} : Kashubian, {kaw} : Kawi, {kk} : Kazakh,
12923 {kha} : Khasi, {km} : Khmer, [{khi} : Khoisan (Other)], {kho} : Khotanese,
12924 {ki} : Kikuyu, {kmb} : Kimbundu, {rw} : Kinyarwanda, {ky} : Kirghiz,
12925 {i-klingon} : Klingon, {kv} : Komi, {kg} : Kongo, {kok} : Konkani, {ko} :
12926 Korean, {kos} : Kosraean, {kpe} : Kpelle, {kro} : Kru, {kj} : Kuanyama,
12927 {kum} : Kumyk, {ku} : Kurdish, {kru} : Kurukh, {kut} : Kutenai, {lad} :
12928 Ladino, {lah} : Lahnda, {lam} : Lamba, {lo} : Lao, {la} : Latin, {lv} :
12929 Latvian, {lb} : Letzeburgesch, {lez} : Lezghian, {li} : Limburgish, {ln} :
12930 Lingala, {lt} : Lithuanian, {nds} : Low German, {art-lojban} : Lojban
12931 (Artificial), {loz} : Lozi, {lu} : Luba-Katanga, {lua} : Luba-Lulua, {lui}
12932 : Luiseno, {lun} : Lunda, {luo} : Luo (Kenya and Tanzania), {lus} : Lushai,
12933 {mk} : Macedonian, {mad} : Madurese, {mag} : Magahi, {mai} : Maithili,
12934 {mak} : Makasar, {mg} : Malagasy, {ms} : Malay, {ml} : Malayalam, {mt} :
12935 Maltese, {mnc} : Manchu, {mdr} : Mandar, {man} : Mandingo, {mni} :
12936 Manipuri, [{mno} : Manobo languages], {gv} : Manx, {mi} : Maori, {mr} :
12937 Marathi, {chm} : Mari, {mh} : Marshall, {mwr} : Marwari, {mas} : Masai,
12938 [{myn} : Mayan languages], {men} : Mende, {mic} : Micmac, {min} :
12939 Minangkabau, {i-mingo} : Mingo, [{mis} : Miscellaneous languages], {moh} :
12940 Mohawk, {mdf} : Moksha, {mo} : Moldavian, [{mkh} : Mon-Khmer (Other)],
12941 {lol} : Mongo, {mn} : Mongolian, {mos} : Mossi, [{mul} : Multiple
12942 languages], [{mun} : Munda languages], {nah} : Nahuatl, {nap} : Neapolitan,
12943 {na} : Nauru, {nv} : Navajo, {nd} : North Ndebele, {nr} : South Ndebele,
12944 {ng} : Ndonga, {ne} : Nepali, {new} : Newari, {nia} : Nias, [{nic} :
12945 Niger-Kordofanian (Other)], [{ssa} : Nilo-Saharan (Other)], {niu} : Niuean,
12946 {nog} : Nogai, {non} : Old Norse, [{nai} : North American Indian], {no} :
12947 Norwegian, {nb} : Norwegian Bokmal, {nn} : Norwegian Nynorsk, [{nub} :
12948 Nubian languages], {nym} : Nyamwezi, {nyn} : Nyankole, {nyo} : Nyoro, {nzi}
12949 : Nzima, {oc} : Occitan (post 1500), {oj} : Ojibwa, {or} : Oriya, {om} :
12950 Oromo, {osa} : Osage, {os} : Ossetian; Ossetic, [{oto} : Otomian
12951 languages], {pal} : Pahlavi, {i-pwn} : Paiwan, {pau} : Palauan, {pi} :
12952 Pali, {pam} : Pampanga, {pag} : Pangasinan, {pa} : Panjabi, {pap} :
12953 Papiamento, [{paa} : Papuan (Other)], {fa} : Persian, {peo} : Old Persian
12954 (ca.600-400 B.C.), [{phi} : Philippine (Other)], {phn} : Phoenician, {pon}
12955 : Pohnpeian, {pl} : Polish, {pt} : Portuguese, [{pra} : Prakrit languages],
12956 {pro} : Old Provencal (to 1500), {ps} : Pushto, {qu} : Quechua, {rm} :
12957 Raeto-Romance, {raj} : Rajasthani, {rap} : Rapanui, {rar} : Rarotongan,
12958 [{qaa - qtz} : Reserved for local use.], [{roa} : Romance (Other)], {ro} :
12959 Romanian, {rom} : Romany, {rn} : Rundi, {ru} : Russian, [{sal} : Salishan
12960 languages], {sam} : Samaritan Aramaic, {se} : Northern Sami, {sma} :
12961 Southern Sami, {smn} : Inari Sami, {smj} : Lule Sami, {sms} : Skolt Sami,
12962 [{smi} : Sami languages (Other)], {sm} : Samoan, {sad} : Sandawe, {sg} :
12963 Sango, {sa} : Sanskrit, {sat} : Santali, {sc} : Sardinian, {sas} : Sasak,
12964 {sco} : Scots, {sel} : Selkup, [{sem} : Semitic (Other)], {sr} : Serbian,
12965 {srr} : Serer, {shn} : Shan, {sn} : Shona, {sid} : Sidamo, {sgn-...} : Sign
12966 Languages, {bla} : Siksika, {sd} : Sindhi, {si} : Sinhalese, [{sit} :
12967 Sino-Tibetan (Other)], [{sio} : Siouan languages], {den} : Slave
12968 (Athapascan), [{sla} : Slavic (Other)], {sk} : Slovak, {sl} : Slovenian,
12969 {sog} : Sogdian, {so} : Somali, {son} : Songhai, {snk} : Soninke, {wen} :
12970 Sorbian languages, {nso} : Northern Sotho, {st} : Southern Sotho, [{sai} :
12971 South American Indian (Other)], {es} : Spanish, {suk} : Sukuma, {sux} :
12972 Sumerian, {su} : Sundanese, {sus} : Susu, {sw} : Swahili, {ss} : Swati,
12973 {sv} : Swedish, {syr} : Syriac, {tl} : Tagalog, {ty} : Tahitian, [{tai} :
12974 Tai (Other)], {tg} : Tajik, {tmh} : Tamashek, {ta} : Tamil, {i-tao} : Tao,
12975 {tt} : Tatar, {i-tay} : Tayal, {te} : Telugu, {ter} : Tereno, {tet} :
12976 Tetum, {th} : Thai, {bo} : Tibetan, {tig} : Tigre, {ti} : Tigrinya, {tem} :
12977 Timne, {tiv} : Tiv, {tli} : Tlingit, {tpi} : Tok Pisin, {tkl} : Tokelau,
12978 {tog} : Tonga (Nyasa), {to} : Tonga (Tonga Islands), {tsi} : Tsimshian,
12979 {ts} : Tsonga, {i-tsu} : Tsou, {tn} : Tswana, {tum} : Tumbuka, [{tup} :
12980 Tupi languages], {tr} : Turkish, {ota} : Ottoman Turkish (1500-1928), {crh}
12981 : Crimean Turkish, {tk} : Turkmen, {tvl} : Tuvalu, {tyv} : Tuvinian, {tw} :
12982 Twi, {udm} : Udmurt, {uga} : Ugaritic, {ug} : Uighur, {uk} : Ukrainian,
12983 {umb} : Umbundu, {und} : Undetermined, {ur} : Urdu, {uz} : Uzbek, {vai} :
12984 Vai, {ve} : Venda, {vi} : Vietnamese, {vo} : Volapuk, {vot} : Votic, [{wak}
12985 : Wakashan languages], {wa} : Walloon, {wal} : Walamo, {war} : Waray, {was}
12986 : Washo, {cy} : Welsh, {wo} : Wolof, {x-...} : Unregistered (Semi-Private
12987 Use), {xh} : Xhosa, {sah} : Yakut, {yao} : Yao, {yap} : Yapese, {ii} :
12988 Sichuan Yi, {yi} : Yiddish, {yo} : Yoruba, [{ypk} : Yupik languages], {znd}
12989 : Zande, [{zap} : Zapotec], {zen} : Zenaga, {za} : Zhuang, {zu} : Zulu,
12990 {zun} : Zuni
12991
12992 =item SEE ALSO
12993
12994 =item COPYRIGHT AND DISCLAIMER
12995
12996 =item AUTHOR
12997
12998 =back
12999
13000 =head2 I18N::Langinfo - query locale information
13001
13002 =over 4
13003
13004 =item SYNOPSIS
13005
13006 =item DESCRIPTION
13007
13008 =over 4
13009
13010 =item EXPORT
13011
13012 =back
13013
13014 =item SEE ALSO
13015
13016 =item AUTHOR
13017
13018 =item COPYRIGHT AND LICENSE
13019
13020 =back
13021
13022 =head2 IO - load various IO modules
13023
13024 =over 4
13025
13026 =item SYNOPSIS
13027
13028 =item DESCRIPTION
13029
13030 =item DEPRECATED
13031
13032 =back
13033
13034 =head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
13035 handles
13036
13037 =over 4
13038
13039 =item SYNOPSIS
13040
13041 =item DESCRIPTION
13042
13043 new ( [ DIRNAME ] ), open ( DIRNAME ), read (), seek ( POS ), tell (),
13044 rewind (), close (), tie %hash, 'IO::Dir', DIRNAME [, OPTIONS ]
13045
13046 =item SEE ALSO
13047
13048 =item AUTHOR
13049
13050 =item COPYRIGHT
13051
13052 =back
13053
13054 =head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
13055
13056 =over 4
13057
13058 =item SYNOPSIS
13059
13060 =item DESCRIPTION
13061
13062 =item CONSTRUCTOR
13063
13064 new ( FILENAME [,MODE [,PERMS]] ), new_tmpfile
13065
13066 =item METHODS
13067
13068 open( FILENAME [,MODE [,PERMS]] ), open( FILENAME, IOLAYERS )
13069
13070 =item SEE ALSO
13071
13072 =item HISTORY
13073
13074 =back
13075
13076 =head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
13077 handles
13078
13079 =over 4
13080
13081 =item SYNOPSIS
13082
13083 =item DESCRIPTION
13084
13085 =item CONSTRUCTOR
13086
13087 new (), new_from_fd ( FD, MODE )
13088
13089 =item METHODS
13090
13091 $io->fdopen ( FD, MODE ), $io->opened, $io->getline, $io->getlines,
13092 $io->ungetc ( ORD ), $io->write ( BUF, LEN [, OFFSET ] ), $io->error,
13093 $io->clearerr, $io->sync, $io->flush, $io->printflush ( ARGS ),
13094 $io->blocking ( [ BOOL ] ), $io->untaint
13095
13096 =item NOTE
13097
13098 =item SEE ALSO
13099
13100 =item BUGS
13101
13102 =item HISTORY
13103
13104 =back
13105
13106 =head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
13107
13108 =over 4
13109
13110 =item SYNOPSIS
13111
13112 =item DESCRIPTION
13113
13114 =item CONSTRUCTOR
13115
13116 new ( [READER, WRITER] )
13117
13118 =item METHODS
13119
13120 reader ([ARGS]), writer ([ARGS]), handles ()
13121
13122 =item SEE ALSO
13123
13124 =item AUTHOR
13125
13126 =item COPYRIGHT
13127
13128 =back
13129
13130 =head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
13131
13132 =over 4
13133
13134 =item SYNOPSIS
13135
13136 =item DESCRIPTION
13137
13138 =item METHODS
13139
13140 mask ( IO [, EVENT_MASK ] ), poll ( [ TIMEOUT ] ), events ( IO ), remove (
13141 IO ), handles( [ EVENT_MASK ] )
13142
13143 =item SEE ALSO
13144
13145 =item AUTHOR
13146
13147 =item COPYRIGHT
13148
13149 =back
13150
13151 =head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
13152 I/O objects
13153
13154 =over 4
13155
13156 =item SYNOPSIS
13157
13158 =item DESCRIPTION
13159
13160 $io->getpos, $io->setpos, $io->seek ( POS, WHENCE ), WHENCE=0 (SEEK_SET),
13161 WHENCE=1 (SEEK_CUR), WHENCE=2 (SEEK_END), $io->sysseek( POS, WHENCE ),
13162 $io->tell
13163
13164 =item SEE ALSO
13165
13166 =item HISTORY
13167
13168 =back
13169
13170 =head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
13171 call
13172
13173 =over 4
13174
13175 =item SYNOPSIS
13176
13177 =item DESCRIPTION
13178
13179 =item CONSTRUCTOR
13180
13181 new ( [ HANDLES ] )
13182
13183 =item METHODS
13184
13185 add ( HANDLES ), remove ( HANDLES ), exists ( HANDLE ), handles, can_read (
13186 [ TIMEOUT ] ), can_write ( [ TIMEOUT ] ), has_exception ( [ TIMEOUT ] ),
13187 count (), bits(), select ( READ, WRITE, EXCEPTION [, TIMEOUT ] )
13188
13189 =item EXAMPLE
13190
13191 =item AUTHOR
13192
13193 =item COPYRIGHT
13194
13195 =back
13196
13197 =head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
13198 communications
13199
13200 =over 4
13201
13202 =item SYNOPSIS
13203
13204 =item DESCRIPTION
13205
13206 =item CONSTRUCTOR
13207
13208 new ( [ARGS] )
13209
13210 =item METHODS
13211
13212 accept([PKG]), socketpair(DOMAIN, TYPE, PROTOCOL), atmark, connected,
13213 protocol, sockdomain, sockopt(OPT [, VAL]), socktype, timeout([VAL])
13214
13215 =item SEE ALSO
13216
13217 =item AUTHOR
13218
13219 =item COPYRIGHT
13220
13221 =back
13222
13223 =head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
13224 AF_INET domain sockets
13225
13226 =over 4
13227
13228 =item SYNOPSIS
13229
13230 =item DESCRIPTION
13231
13232 =item CONSTRUCTOR
13233
13234 new ( [ARGS] )
13235
13236 =over 4
13237
13238 =item METHODS
13239
13240 sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost
13241 ()
13242
13243 =back
13244
13245 =item SEE ALSO
13246
13247 =item AUTHOR
13248
13249 =item COPYRIGHT
13250
13251 =back
13252
13253 =head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
13254 AF_UNIX domain sockets
13255
13256 =over 4
13257
13258 =item SYNOPSIS
13259
13260 =item DESCRIPTION
13261
13262 =item CONSTRUCTOR
13263
13264 new ( [ARGS] )
13265
13266 =item METHODS
13267
13268 hostpath(), peerpath()
13269
13270 =item SEE ALSO
13271
13272 =item AUTHOR
13273
13274 =item COPYRIGHT
13275
13276 =back
13277
13278 =head2 IPC::Open2, open2 - open a process for both reading and writing
13279
13280 =over 4
13281
13282 =item SYNOPSIS
13283
13284 =item DESCRIPTION
13285
13286 =item WARNING 
13287
13288 =item SEE ALSO
13289
13290 =back
13291
13292 =head2 IPC::Open3, open3 - open a process for reading, writing, and error
13293 handling
13294
13295 =over 4
13296
13297 =item SYNOPSIS
13298
13299 =item DESCRIPTION
13300
13301 =item WARNING
13302
13303 =back
13304
13305 =head2 IPC::SysV - SysV IPC constants
13306
13307 =over 4
13308
13309 =item SYNOPSIS
13310
13311 =item DESCRIPTION
13312
13313 ftok( PATH, ID )
13314
13315 =item SEE ALSO
13316
13317 =item AUTHORS
13318
13319 =item COPYRIGHT
13320
13321 =back
13322
13323 =head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
13324
13325 =over 4
13326
13327 =item SYNOPSIS
13328
13329 =item DESCRIPTION
13330
13331 =item METHODS
13332
13333 new ( KEY , FLAGS ), id, rcv ( BUF, LEN [, TYPE [, FLAGS ]] ), remove, set
13334 ( STAT ), set ( NAME => VALUE [, NAME => VALUE ...] ), snd ( TYPE, MSG [,
13335 FLAGS ] ), stat
13336
13337 =item SEE ALSO
13338
13339 =item AUTHOR
13340
13341 =item COPYRIGHT
13342
13343 =back
13344
13345 =head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
13346 class
13347
13348 =over 4
13349
13350 =item SYNOPSIS
13351
13352 =item DESCRIPTION
13353
13354 =item METHODS
13355
13356 new ( KEY , NSEMS , FLAGS ), getall, getncnt ( SEM ), getpid ( SEM ),
13357 getval ( SEM ), getzcnt ( SEM ), id, op ( OPLIST ), remove, set ( STAT ),
13358 set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N
13359 , VALUE ), stat
13360
13361 =item SEE ALSO
13362
13363 =item AUTHOR
13364
13365 =item COPYRIGHT
13366
13367 =back
13368
13369 =head2 List::Utilib::List::Util, List::Util - A selection of
13370 general-utility list subroutines
13371
13372 =over 4
13373
13374 =item SYNOPSIS
13375
13376 =item DESCRIPTION
13377
13378 first BLOCK LIST, max LIST, maxstr LIST, min LIST, minstr LIST, reduce
13379 BLOCK LIST, shuffle LIST, sum LIST
13380
13381 =item KNOWN BUGS
13382
13383 =item SUGGESTED ADDITIONS
13384
13385 =item COPYRIGHT
13386
13387 =back
13388
13389 =head2 List::Utilib::Scalar::Util, Scalar::Util - A selection of
13390 general-utility scalar subroutines
13391
13392 =over 4
13393
13394 =item SYNOPSIS
13395
13396 =item DESCRIPTION
13397
13398 blessed EXPR, dualvar NUM, STRING, isvstring EXPR, isweak EXPR,
13399 looks_like_number EXPR, openhandle FH, refaddr EXPR, reftype EXPR,
13400 set_prototype CODEREF, PROTOTYPE, tainted EXPR, weaken REF
13401
13402 =item KNOWN BUGS
13403
13404 =item COPYRIGHT
13405
13406 =item BLATANT PLUG
13407
13408 =back
13409
13410 =head2 Locale::Constants - constants for Locale codes
13411
13412 =over 4
13413
13414 =item SYNOPSIS
13415
13416 =item DESCRIPTION
13417
13418 =item KNOWN BUGS AND LIMITATIONS
13419
13420 =item SEE ALSO
13421
13422 Locale::Language, Locale::Country, Locale::Script, Locale::Currency
13423
13424 =item AUTHOR
13425
13426 =item COPYRIGHT
13427
13428 =back
13429
13430 =head2 Locale::Country - ISO codes for country identification (ISO 3166)
13431
13432 =over 4
13433
13434 =item SYNOPSIS
13435
13436 =item DESCRIPTION
13437
13438 B<alpha-2>, B<alpha-3>, B<numeric>
13439
13440 =item CONVERSION ROUTINES
13441
13442 code2country( CODE, [ CODESET ] ), country2code( STRING, [ CODESET ] ),
13443 country_code2code( CODE, CODESET, CODESET )
13444
13445 =item QUERY ROUTINES
13446
13447 C<all_country_codes( [ CODESET ] )>, C<all_country_names( [ CODESET ] )>
13448
13449 =item SEMI-PRIVATE ROUTINES
13450
13451 =over 4
13452
13453 =item alias_code
13454
13455 =item rename_country
13456
13457 =back
13458
13459 =item EXAMPLES
13460
13461 =item DOMAIN NAMES
13462
13463 =item KNOWN BUGS AND LIMITATIONS
13464
13465 =item SEE ALSO
13466
13467 Locale::Language, Locale::Script, Locale::Currency, Locale::SubCountry, ISO
13468 3166-1, http://www.iso.org/iso/en/prods-services/iso3166ma/index.html,
13469 http://www.egt.ie/standards/iso3166/iso3166-1-en.html,
13470 http://www.cia.gov/cia/publications/factbook/docs/app-d-1.html
13471
13472 =item AUTHOR
13473
13474 =item COPYRIGHT
13475
13476 =back
13477
13478 =head2 Locale::Currency - ISO three letter codes for currency
13479 identification (ISO 4217)
13480
13481 =over 4
13482
13483 =item SYNOPSIS
13484
13485 =item DESCRIPTION
13486
13487 XTS, XXX
13488
13489 =item CONVERSION ROUTINES
13490
13491 code2currency(), currency2code()
13492
13493 =item QUERY ROUTINES
13494
13495 C<all_currency_codes()>, C<all_currency_names()>
13496
13497 =item EXAMPLES
13498
13499 =item KNOWN BUGS AND LIMITATIONS
13500
13501 =item SEE ALSO
13502
13503 Locale::Country, Locale::Script, ISO 4217:1995,
13504 http://www.bsi-global.com/iso4217currency
13505
13506 =item AUTHOR
13507
13508 =item COPYRIGHT
13509
13510 =back
13511
13512 =head2 Locale::Language - ISO two letter codes for language identification
13513 (ISO 639)
13514
13515 =over 4
13516
13517 =item SYNOPSIS
13518
13519 =item DESCRIPTION
13520
13521 =item CONVERSION ROUTINES
13522
13523 code2language(), language2code()
13524
13525 =item QUERY ROUTINES
13526
13527 C<all_language_codes()>, C<all_language_names()>
13528
13529 =item EXAMPLES
13530
13531 =item KNOWN BUGS AND LIMITATIONS
13532
13533 =item SEE ALSO
13534
13535 Locale::Country, Locale::Script, Locale::Currency, ISO 639:1988 (E/F),
13536 http://lcweb.loc.gov/standards/iso639-2/langhome.html
13537
13538 =item AUTHOR
13539
13540 =item COPYRIGHT
13541
13542 =back
13543
13544 =head2 Locale::Maketext - framework for localization
13545
13546 =over 4
13547
13548 =item SYNOPSIS
13549
13550 =item DESCRIPTION
13551
13552 =item QUICK OVERVIEW
13553
13554 =item METHODS
13555
13556 =over 4
13557
13558 =item Construction Methods
13559
13560 =item The "maketext" Method
13561
13562 $lh->fail_with I<or> $lh->fail_with(I<PARAM>), $lh->failure_handler_auto
13563
13564 =item Utility Methods
13565
13566 $language->quant($number, $singular), $language->quant($number, $singular,
13567 $plural), $language->quant($number, $singular, $plural, $negative),
13568 $language->numf($number), $language->sprintf($format, @items),
13569 $language->language_tag(), $language->encoding()
13570
13571 =item Language Handle Attributes and Internals
13572
13573 =back
13574
13575 =item LANGUAGE CLASS HIERARCHIES
13576
13577 =item ENTRIES IN EACH LEXICON
13578
13579 =item BRACKET NOTATION
13580
13581 =item AUTO LEXICONS
13582
13583 =item CONTROLLING LOOKUP FAILURE
13584
13585 =item HOW TO USE MAKETEXT
13586
13587 =item SEE ALSO
13588
13589 =item COPYRIGHT AND DISCLAIMER
13590
13591 =item AUTHOR
13592
13593 =back
13594
13595 =head2 Locale::Maketext::TPJ13 -- article about software localization
13596
13597 =over 4
13598
13599 =item SYNOPSIS
13600
13601 =item DESCRIPTION
13602
13603 =item Localization and Perl: gettext breaks, Maketext fixes
13604
13605 =over 4
13606
13607 =item A Localization Horror Story: It Could Happen To You
13608
13609 =item The Linguistic View
13610
13611 =item Breaking gettext
13612
13613 =item Replacing gettext
13614
13615 =item Buzzwords: Abstraction and Encapsulation
13616
13617 =item Buzzword: Isomorphism
13618
13619 =item Buzzword: Inheritance
13620
13621 =item Buzzword: Concision
13622
13623 =item The Devil in the Details
13624
13625 =item The Proof in the Pudding: Localizing Web Sites
13626
13627 =item References
13628
13629 =back
13630
13631 =back
13632
13633 =head2 Locale::Script - ISO codes for script identification (ISO 15924)
13634
13635 =over 4
13636
13637 =item SYNOPSIS
13638
13639 =item DESCRIPTION
13640
13641 B<alpha-2>, B<alpha-3>, B<numeric>
13642
13643 =over 4
13644
13645 =item SPECIAL CODES
13646
13647 =back
13648
13649 =item CONVERSION ROUTINES
13650
13651 code2script( CODE, [ CODESET ] ), script2code( STRING, [ CODESET ] ),
13652 script_code2code( CODE, CODESET, CODESET )
13653
13654 =item QUERY ROUTINES
13655
13656 C<all_script_codes ( [ CODESET ] )>, C<all_script_names ( [ CODESET ] )>
13657
13658 =item EXAMPLES
13659
13660 =item KNOWN BUGS AND LIMITATIONS
13661
13662 =item SEE ALSO
13663
13664 Locale::Language, Locale::Currency, Locale::Country, ISO 15924,
13665 http://www.evertype.com/standards/iso15924/
13666
13667 =item AUTHOR
13668
13669 =item COPYRIGHT
13670
13671 =back
13672
13673 =head2 MIME::Base64 - Encoding and decoding of base64 strings
13674
13675 =over 4
13676
13677 =item SYNOPSIS
13678
13679 =item DESCRIPTION
13680
13681 encode_base64($str), encode_base64($str, $eol);, decode_base64($str)
13682
13683 =item DIAGNOSTICS
13684
13685 Premature end of base64 data, Premature padding of base64 data
13686
13687 =item EXAMPLES
13688
13689 =item COPYRIGHT
13690
13691 =back
13692
13693 =head2 MIME::Base64::QuotedPrint, MIME::QuotedPrint - Encoding and decoding
13694 of quoted-printable strings
13695
13696 =over 4
13697
13698 =item SYNOPSIS
13699
13700 =item DESCRIPTION
13701
13702 encode_qp($str), encode_qp($str, $eol), decode_qp($str);
13703
13704 =item COPYRIGHT
13705
13706 =back
13707
13708 =head2 Math::BigFloat - Arbitrary size floating point math package
13709
13710 =over 4
13711
13712 =item SYNOPSIS
13713
13714 =item DESCRIPTION
13715
13716 =over 4
13717
13718 =item Canonical notation
13719
13720 =item Output
13721
13722 =item C<mantissa()>, C<exponent()> and C<parts()>
13723
13724 =item Accuracy vs. Precision
13725
13726 =item Rounding
13727
13728 ffround ( +$scale ), ffround ( -$scale ), ffround ( 0 ), fround  ( +$scale
13729 ), fround  ( -$scale ) and fround ( 0 )
13730
13731 =back
13732
13733 =item EXAMPLES
13734
13735   # not ready yet
13736
13737 =item Autocreating constants
13738
13739 =over 4
13740
13741 =item Math library
13742
13743 =item Using Math::BigInt::Lite
13744
13745 =back
13746
13747 =item BUGS
13748
13749 =item CAVEATS
13750
13751 stringify, bstr(), bdiv, Modifying and =, bpow
13752
13753 =item SEE ALSO
13754
13755 =item LICENSE
13756
13757 =item AUTHORS
13758
13759 =back
13760
13761 =head2 Math::BigInt - Arbitrary size integer math package
13762
13763 =over 4
13764
13765 =item SYNOPSIS
13766
13767 =item DESCRIPTION
13768
13769 Input, Output
13770
13771 =item METHODS
13772
13773 =over 4
13774
13775 =item config
13776
13777 =item accuracy
13778
13779 =item precision
13780
13781 =item brsft
13782
13783 =item new
13784
13785 =item bnan
13786
13787 =item bzero
13788
13789 =item binf
13790
13791 =item bone
13792
13793 =item is_one()/is_zero()/is_nan()/is_inf()
13794
13795 =item is_positive()/is_negative()
13796
13797         $x->is_positive();              # true if >= 0
13798         $x->is_negative();              # true if <  0
13799
13800 =item is_odd()/is_even()/is_int()
13801
13802 =item bcmp
13803
13804 =item bacmp
13805
13806 =item sign
13807
13808 =item bcmp
13809
13810 =item bneg
13811
13812 =item babs
13813
13814 =item bnorm
13815
13816 =item bnot
13817
13818 =item binc
13819
13820 =item bdec
13821
13822 =item badd
13823
13824 =item bsub
13825
13826 =item bmul
13827
13828 =item bdiv
13829
13830 =item bmod
13831
13832 =item bmodinv
13833
13834 =item bmodpow
13835
13836 =item bpow
13837
13838 =item blsft
13839
13840 =item brsft
13841
13842 =item band
13843
13844 =item bior
13845
13846 =item bxor
13847
13848 =item bnot
13849
13850 =item bsqrt
13851
13852 =item bfac
13853
13854 =item round
13855
13856 =item bround
13857
13858 =item bfround
13859
13860 =item bfloor
13861
13862 =item bceil
13863
13864 =item bgcd
13865
13866 =item blcm
13867
13868 =item exponent
13869
13870 =item mantissa
13871
13872 =item parts
13873
13874 =item copy
13875
13876 =item as_number
13877
13878 =item bsstr
13879
13880 =item as_hex
13881
13882 =item as_bin
13883
13884 =back
13885
13886 =item ACCURACY and PRECISION
13887
13888 =over 4
13889
13890 =item Precision P
13891
13892 =item Accuracy A
13893
13894 =item Fallback F
13895
13896 =item Rounding mode R
13897
13898 'trunc', 'even', 'odd', '+inf', '-inf', 'zero', Precision, Accuracy
13899 (significant digits), Setting/Accessing, Creating numbers, Usage,
13900 Precedence, Overriding globals, Local settings, Rounding, Default values,
13901 Remarks
13902
13903 =back
13904
13905 =item INTERNALS
13906
13907 =over 4
13908
13909 =item MATH LIBRARY
13910
13911 =item SIGN
13912
13913 =item mantissa(), exponent() and parts()
13914
13915 =back
13916
13917 =item EXAMPLES
13918
13919   use Math::BigInt;
13920
13921 =item Autocreating constants
13922
13923 =item PERFORMANCE
13924
13925 =over 4
13926
13927 =item Alternative math libraries
13928
13929 =item SUBCLASSING
13930
13931 =back
13932
13933 =item Subclassing Math::BigInt
13934
13935 =item UPGRADING
13936
13937 =over 4
13938
13939 =item Auto-upgrade
13940
13941 bsqrt(), div(), blog()
13942
13943 =back
13944
13945 =item BUGS
13946
13947 broot() does not work, Out of Memory!, Fails to load Calc on Perl prior
13948 5.6.0
13949
13950 =item CAVEATS
13951
13952 stringify, bstr(), bsstr() and 'cmp', int(), length, bdiv, infinity
13953 handling, Modifying and =, bpow, Overloading -$x, Mixing different object
13954 types, bsqrt(), brsft()
13955
13956 =item LICENSE
13957
13958 =item SEE ALSO
13959
13960 =item AUTHORS
13961
13962 =back
13963
13964 =head2 Math::BigInt::Calc - Pure Perl module to support Math::BigInt
13965
13966 =over 4
13967
13968 =item SYNOPSIS
13969
13970 =item DESCRIPTION
13971
13972 =item STORAGE
13973
13974 =item METHODS
13975
13976 =item WRAP YOUR OWN
13977
13978 =item LICENSE
13979
13980 This program is free software; you may redistribute it and/or modify it
13981 under
13982 the same terms as Perl itself. 
13983
13984 =item AUTHORS
13985
13986 =item SEE ALSO
13987
13988 =back
13989
13990 =head2 Math::BigInt::Scalar - Pure Perl module to test Math::BigInt with
13991 scalars
13992
13993 =over 4
13994
13995 =item SYNOPSIS
13996
13997 =item DESCRIPTION
13998
13999 =item LICENSE
14000
14001 This program is free software; you may redistribute it and/or modify it
14002 under
14003 the same terms as Perl itself. 
14004
14005 =item AUTHOR
14006
14007 =item SEE ALSO
14008
14009 =back
14010
14011 =head2 Math::BigRat - arbitrarily big rationals
14012
14013 =over 4
14014
14015 =item SYNOPSIS
14016
14017 =item DESCRIPTION
14018
14019 =over 4
14020
14021 =item MATH LIBRARY
14022
14023 =back
14024
14025 =item METHODS
14026
14027 =over 4
14028
14029 =item new()
14030
14031 =item numerator()
14032
14033 =item denominator()
14034
14035         $d = $x->denominator();
14036
14037 =item parts()
14038
14039 =item as_number()
14040
14041 =item bfac()
14042
14043 =item blog()
14044
14045 =item bround()/round()/bfround()
14046
14047 =item bmod()
14048
14049 =item is_one()
14050
14051 =item is_zero()
14052
14053 =item is_positive()
14054
14055 =item is_negative()
14056
14057 =item is_int()
14058
14059 =item is_odd()
14060
14061 =item is_even()
14062
14063 =item bceil()
14064
14065 =item bfloor()
14066
14067         $x->bfloor();
14068
14069 =item config
14070
14071 =back
14072
14073 =item BUGS
14074
14075 inf handling (partial), NaN handling (partial), rounding (not implemented
14076 except for bceil/bfloor), $x ** $y where $y is not an integer
14077
14078 =item LICENSE
14079
14080 =item SEE ALSO
14081
14082 =item AUTHORS
14083
14084 =back
14085
14086 =head2 Math::Complex - complex numbers and associated mathematical
14087 functions
14088
14089 =over 4
14090
14091 =item SYNOPSIS
14092
14093 =item DESCRIPTION
14094
14095 =item OPERATIONS
14096
14097 =item CREATION
14098
14099 =item STRINGIFICATION
14100
14101 =over 4
14102
14103 =item CHANGED IN PERL 5.6
14104
14105 =back
14106
14107 =item USAGE
14108
14109 =item ERRORS DUE TO DIVISION BY ZERO OR LOGARITHM OF ZERO
14110
14111 =item ERRORS DUE TO INDIGESTIBLE ARGUMENTS
14112
14113 =item BUGS
14114
14115 =item AUTHORS
14116
14117 =back
14118
14119 =head2 Math::Trig - trigonometric functions
14120
14121 =over 4
14122
14123 =item SYNOPSIS
14124
14125 =item DESCRIPTION
14126
14127 =item TRIGONOMETRIC FUNCTIONS
14128
14129 B<tan>
14130
14131 =over 4
14132
14133 =item ERRORS DUE TO DIVISION BY ZERO
14134
14135 =item SIMPLE (REAL) ARGUMENTS, COMPLEX RESULTS
14136
14137 =back
14138
14139 =item PLANE ANGLE CONVERSIONS
14140
14141 =item RADIAL COORDINATE CONVERSIONS
14142
14143 =over 4
14144
14145 =item COORDINATE SYSTEMS
14146
14147 =item 3-D ANGLE CONVERSIONS
14148
14149 cartesian_to_cylindrical, cartesian_to_spherical, cylindrical_to_cartesian,
14150 cylindrical_to_spherical, spherical_to_cartesian, spherical_to_cylindrical
14151
14152 =back
14153
14154 =item GREAT CIRCLE DISTANCES AND DIRECTIONS
14155
14156 =item EXAMPLES
14157
14158 =over 4
14159
14160 =item CAVEAT FOR GREAT CIRCLE FORMULAS
14161
14162 =back
14163
14164 =item BUGS
14165
14166 =item AUTHORS
14167
14168 =back
14169
14170 =head2 Memoize - Make functions faster by trading space for time
14171
14172 =over 4
14173
14174 =item SYNOPSIS
14175
14176 =item DESCRIPTION
14177
14178 =item DETAILS
14179
14180 =item OPTIONS
14181
14182 =over 4
14183
14184 =item INSTALL
14185
14186 =item NORMALIZER
14187
14188 =item C<SCALAR_CACHE>, C<LIST_CACHE>
14189
14190 C<MEMORY>, C<HASH>, C<TIE>, C<FAULT>, C<MERGE>
14191
14192 =back
14193
14194 =item OTHER FACILITIES
14195
14196 =over 4
14197
14198 =item C<unmemoize>
14199
14200 =item C<flush_cache>
14201
14202 =back
14203
14204 =item CAVEATS
14205
14206 =item PERSISTENT CACHE SUPPORT
14207
14208 =item EXPIRATION SUPPORT
14209
14210 =item BUGS
14211
14212 =item MAILING LIST
14213
14214 =item AUTHOR
14215
14216 =item COPYRIGHT AND LICENSE
14217
14218 =item THANK YOU
14219
14220 =back
14221
14222 =head2 Memoize::AnyDBM_File - glue to provide EXISTS for AnyDBM_File for
14223 Storable use
14224
14225 =over 4
14226
14227 =item DESCRIPTION
14228
14229 =back
14230
14231 =head2 Memoize::Expire - Plug-in module for automatic expiration of
14232 memoized values
14233
14234 =over 4
14235
14236 =item SYNOPSIS
14237
14238 =item DESCRIPTION
14239
14240 =item INTERFACE
14241
14242  TIEHASH,  EXISTS,  STORE
14243
14244 =item ALTERNATIVES
14245
14246 =item CAVEATS
14247
14248 =item AUTHOR
14249
14250 =item SEE ALSO
14251
14252 =back
14253
14254 =head2 Memoize::ExpireFile - test for Memoize expiration semantics
14255
14256 =over 4
14257
14258 =item DESCRIPTION
14259
14260 =back
14261
14262 =head2 Memoize::ExpireTest - test for Memoize expiration semantics
14263
14264 =over 4
14265
14266 =item DESCRIPTION
14267
14268 =back
14269
14270 =head2 Memoize::NDBM_File - glue to provide EXISTS for NDBM_File for
14271 Storable use
14272
14273 =over 4
14274
14275 =item DESCRIPTION
14276
14277 =back
14278
14279 =head2 Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for
14280 Storable use
14281
14282 =over 4
14283
14284 =item DESCRIPTION
14285
14286 =back
14287
14288 =head2 Memoize::Storable - store Memoized data in Storable database
14289
14290 =over 4
14291
14292 =item DESCRIPTION
14293
14294 =back
14295
14296 =head2 NDBM_File - Tied access to ndbm files
14297
14298 =over 4
14299
14300 =item SYNOPSIS
14301
14302 =item DESCRIPTION
14303
14304 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
14305
14306 =item DIAGNOSTICS
14307
14308 =over 4
14309
14310 =item C<ndbm store returned -1, errno 22, key "..." at ...>
14311
14312 =back
14313
14314 =item BUGS AND WARNINGS
14315
14316 =back
14317
14318 =head2 NEXT - Provide a pseudo-class NEXT (et al) that allows method
14319 redispatch
14320
14321 =over 4
14322
14323 =item SYNOPSIS
14324
14325 =item DESCRIPTION
14326
14327 =over 4
14328
14329 =item Enforcing redispatch
14330
14331 =item Avoiding repetitions
14332
14333 =item Invoking all versions of a method with a single call
14334
14335 =item Using C<EVERY> methods
14336
14337 =back
14338
14339 =item AUTHOR
14340
14341 =item BUGS AND IRRITATIONS
14342
14343 =item COPYRIGHT
14344
14345 =back
14346
14347 =head2 Net::Cmd - Network Command class (as used by FTP, SMTP etc)
14348
14349 =over 4
14350
14351 =item SYNOPSIS
14352
14353 =item DESCRIPTION
14354
14355 =item USER METHODS
14356
14357 debug ( VALUE ), message (), code (), ok (), status (), datasend ( DATA ),
14358 dataend ()
14359
14360 =item CLASS METHODS
14361
14362 debug_print ( DIR, TEXT ), debug_text ( TEXT ), command ( CMD [, ARGS, ...
14363 ]), unsupported (), response (), parse_response ( TEXT ), getline (),
14364 ungetline ( TEXT ), rawdatasend ( DATA ), read_until_dot (), tied_fh ()
14365
14366 =item EXPORTS
14367
14368 =item AUTHOR
14369
14370 =item COPYRIGHT
14371
14372 =back
14373
14374 =head2 Net::Config - Local configuration data for libnet
14375
14376 =over 4
14377
14378 =item SYNOPSYS
14379
14380 =item DESCRIPTION
14381
14382 =item METHODS
14383
14384 requires_firewall HOST
14385
14386 =item NetConfig VALUES
14387
14388 nntp_hosts, snpp_hosts, pop3_hosts, smtp_hosts, ph_hosts, daytime_hosts,
14389 time_hosts, inet_domain, ftp_firewall, ftp_firewall_type, ftp_ext_passive,
14390 ftp_int_pasive, local_netmask, test_hosts, test_exists
14391
14392 =back
14393
14394 =head2 Net::Domain - Attempt to evaluate the current host's internet name
14395 and domain
14396
14397 =over 4
14398
14399 =item SYNOPSIS
14400
14401 =item DESCRIPTION
14402
14403 hostfqdn (), hostname (), hostdomain ()
14404
14405 =item AUTHOR
14406
14407 =item COPYRIGHT
14408
14409 =back
14410
14411 =head2 Net::FTP - FTP Client class
14412
14413 =over 4
14414
14415 =item SYNOPSIS
14416
14417 =item DESCRIPTION
14418
14419 =item OVERVIEW
14420
14421 =item CONSTRUCTOR
14422
14423 new (HOST [,OPTIONS])
14424
14425 =item METHODS
14426
14427 login ([LOGIN [,PASSWORD [, ACCOUNT] ] ]), authorize ( [AUTH [, RESP]]),
14428 site (ARGS), ascii, binary, rename ( OLDNAME, NEWNAME ), delete ( FILENAME
14429 ), cwd ( [ DIR ] ), cdup (), pwd (), restart ( WHERE ), rmdir ( DIR [,
14430 RECURSE ]), mkdir ( DIR [, RECURSE ]), ls ( [ DIR ] ), alloc ( SIZE [,
14431 RECORD_SIZE] ), dir ( [ DIR ] ), get ( REMOTE_FILE [, LOCAL_FILE [, WHERE]]
14432 ), put ( LOCAL_FILE [, REMOTE_FILE ] ), put_unique ( LOCAL_FILE [,
14433 REMOTE_FILE ] ), append ( LOCAL_FILE [, REMOTE_FILE ] ), unique_name (),
14434 mdtm ( FILE ), size ( FILE ), supported ( CMD ), hash (
14435 [FILEHANDLE_GLOB_REF],[ BYTES_PER_HASH_MARK] ), nlst ( [ DIR ] ), list ( [
14436 DIR ] ), retr ( FILE ), stor ( FILE ), stou ( FILE ), appe ( FILE ), port (
14437 [ PORT ] ), pasv (), pasv_xfer ( SRC_FILE, DEST_SERVER [, DEST_FILE ] ),
14438 pasv_xfer_unique ( SRC_FILE, DEST_SERVER [, DEST_FILE ] ), pasv_wait (
14439 NON_PASV_SERVER ), abort (), quit ()
14440
14441 =over 4
14442
14443 =item Methods for the adventurous
14444
14445 quot (CMD [,ARGS])
14446
14447 =back
14448
14449 =item THE dataconn CLASS
14450
14451 read ( BUFFER, SIZE [, TIMEOUT ] ), write ( BUFFER, SIZE [, TIMEOUT ] ),
14452 bytes_read (), abort (), close ()
14453
14454 =item UNIMPLEMENTED
14455
14456 B<SMNT>, B<HELP>, B<MODE>, B<SYST>, B<STAT>, B<STRU>, B<REIN>
14457
14458 =item REPORTING BUGS
14459
14460 =item AUTHOR
14461
14462 =item SEE ALSO
14463
14464 =item USE EXAMPLES
14465
14466 http://www.csh.rit.edu/~adam/Progs/
14467
14468 =item CREDITS
14469
14470 =item COPYRIGHT
14471
14472 =back
14473
14474 =head2 Net::NNTP - NNTP Client class
14475
14476 =over 4
14477
14478 =item SYNOPSIS
14479
14480 =item DESCRIPTION
14481
14482 =item CONSTRUCTOR
14483
14484 new ( [ HOST ] [, OPTIONS ])
14485
14486 =item METHODS
14487
14488 article ( [ MSGID|MSGNUM ], [FH] ), body ( [ MSGID|MSGNUM ], [FH] ), head (
14489 [ MSGID|MSGNUM ], [FH] ), articlefh ( [ MSGID|MSGNUM ] ), bodyfh ( [
14490 MSGID|MSGNUM ] ), headfh ( [ MSGID|MSGNUM ] ), nntpstat ( [ MSGID|MSGNUM ]
14491 ), group ( [ GROUP ] ), ihave ( MSGID [, MESSAGE ]), last (), date (),
14492 postok (), authinfo ( USER, PASS ), list (), newgroups ( SINCE [,
14493 DISTRIBUTIONS ]), newnews ( SINCE [, GROUPS [, DISTRIBUTIONS ]]), next (),
14494 post ( [ MESSAGE ] ), postfh (), slave (), quit ()
14495
14496 =over 4
14497
14498 =item Extension methods
14499
14500 newsgroups ( [ PATTERN ] ), distributions (), subscriptions (),
14501 overview_fmt (), active_times (), active ( [ PATTERN ] ), xgtitle ( PATTERN
14502 ), xhdr ( HEADER, MESSAGE-SPEC ), xover ( MESSAGE-SPEC ), xpath (
14503 MESSAGE-ID ), xpat ( HEADER, PATTERN, MESSAGE-SPEC), xrover, listgroup ( [
14504 GROUP ] ), reader
14505
14506 =back
14507
14508 =item UNSUPPORTED
14509
14510 =item DEFINITIONS
14511
14512 MESSAGE-SPEC, PATTERN, Examples, C<[^]-]>, C<*bdc>, C<[0-9a-zA-Z]>, C<a??d>
14513
14514 =item SEE ALSO
14515
14516 =item AUTHOR
14517
14518 =item COPYRIGHT
14519
14520 =back
14521
14522 =head2 Net::POP3 - Post Office Protocol 3 Client class (RFC1939)
14523
14524 =over 4
14525
14526 =item SYNOPSIS
14527
14528 =item DESCRIPTION
14529
14530 =item CONSTRUCTOR
14531
14532 new ( [ HOST, ] [ OPTIONS ] )
14533
14534 =item METHODS
14535
14536 user ( USER ), pass ( PASS ), login ( [ USER [, PASS ]] ), apop ( [ USER [,
14537 PASS ]] ), top ( MSGNUM [, NUMLINES ] ), list ( [ MSGNUM ] ), get ( MSGNUM
14538 [, FH ] ), getfh ( MSGNUM ), last (), popstat (), ping ( USER ), uidl ( [
14539 MSGNUM ] ), delete ( MSGNUM ), reset (), quit ()
14540
14541 =item NOTES
14542
14543 =item SEE ALSO
14544
14545 =item AUTHOR
14546
14547 =item COPYRIGHT
14548
14549 =back
14550
14551 =head2 Net::Ping - check a remote host for reachability
14552
14553 =over 4
14554
14555 =item SYNOPSIS
14556
14557 =item DESCRIPTION
14558
14559 =over 4
14560
14561 =item Functions
14562
14563 Net::Ping->new([$proto [, $def_timeout [, $bytes [, $device [, $tos
14564 ]]]]]);, $p->ping($host [, $timeout]);, $p->source_verify( { 0 | 1 } );,
14565 $p->service_check( { 0 | 1 } );, $p->tcp_service_check( { 0 | 1 } );,
14566 $p->hires( { 0 | 1 } );, $p->bind($local_addr);, $p->open($host);, $p->ack(
14567 [ $host ] );, $p->nack( $failed_ack_host );, $p->close();, pingecho($host
14568 [, $timeout]);
14569
14570 =back
14571
14572 =item NOTES
14573
14574 =item INSTALL
14575
14576 =item BUGS
14577
14578 =item AUTHORS
14579
14580 =item COPYRIGHT
14581
14582 =back
14583
14584 =head2 Net::SMTP - Simple Mail Transfer Protocol Client
14585
14586 =over 4
14587
14588 =item SYNOPSIS
14589
14590 =item DESCRIPTION
14591
14592 =item EXAMPLES
14593
14594 =item CONSTRUCTOR
14595
14596 new Net::SMTP [ HOST, ] [ OPTIONS ]
14597
14598 =item METHODS
14599
14600 banner (), domain (), hello ( DOMAIN ), etrn ( DOMAIN ), auth ( USERNAME,
14601 PASSWORD ), mail ( ADDRESS [, OPTIONS] ), send ( ADDRESS ), send_or_mail (
14602 ADDRESS ), send_and_mail ( ADDRESS ), reset (), recipient ( ADDRESS [,
14603 ADDRESS [ ...]] [, OPTIONS ] ), to ( ADDRESS [, ADDRESS [...]] ), cc (
14604 ADDRESS [, ADDRESS [...]] ), bcc ( ADDRESS [, ADDRESS [...]] ), data ( [
14605 DATA ] ), expand ( ADDRESS ), verify ( ADDRESS ), help ( [ $subject ] ),
14606 quit ()
14607
14608 =item ADDRESSES
14609
14610 =item SEE ALSO
14611
14612 =item AUTHOR
14613
14614 =item COPYRIGHT
14615
14616 =back
14617
14618 =head2 Net::Time - time and daytime network client interface
14619
14620 =over 4
14621
14622 =item SYNOPSIS
14623
14624 =item DESCRIPTION
14625
14626 inet_time ( [HOST [, PROTOCOL [, TIMEOUT]]]), inet_daytime ( [HOST [,
14627 PROTOCOL [, TIMEOUT]]])
14628
14629 =item AUTHOR
14630
14631 =item COPYRIGHT
14632
14633 =back
14634
14635 =head2 Net::hostent - by-name interface to Perl's built-in gethost*()
14636 functions
14637
14638 =over 4
14639
14640 =item SYNOPSIS
14641
14642 =item DESCRIPTION
14643
14644 =item EXAMPLES
14645
14646 =item NOTE
14647
14648 =item AUTHOR
14649
14650 =back
14651
14652 =head2 Net::libnetFAQ, libnetFAQ - libnet Frequently Asked Questions
14653
14654 =over 4
14655
14656 =item DESCRIPTION
14657
14658 =over 4
14659
14660 =item Where to get this document
14661
14662 =item How to contribute to this document
14663
14664 =back
14665
14666 =item Author and Copyright Information
14667
14668 =over 4
14669
14670 =item Disclaimer
14671
14672 =back
14673
14674 =item Obtaining and installing libnet
14675
14676 =over 4
14677
14678 =item What is libnet ?
14679
14680 =item Which version of perl do I need ?
14681
14682 =item What other modules do I need ?
14683
14684 =item What machines support libnet ?
14685
14686 =item Where can I get the latest libnet release
14687
14688 =back
14689
14690 =item Using Net::FTP
14691
14692 =over 4
14693
14694 =item How do I download files from an FTP server ?
14695
14696 =item How do I transfer files in binary mode ?
14697
14698 =item How can I get the size of a file on a remote FTP server ?
14699
14700 =item How can I get the modification time of a file on a remote FTP server
14701 ?
14702
14703 =item How can I change the permissions of a file on a remote server ?
14704
14705 =item Can I do a reget operation like the ftp command ?
14706
14707 =item How do I get a directory listing from an FTP server ?
14708
14709 =item Changing directory to "" does not fail ?
14710
14711 =item I am behind a SOCKS firewall, but the Firewall option does not work ?
14712
14713 =item I am behind an FTP proxy firewall, but cannot access machines outside
14714 ?
14715
14716 =item My ftp proxy firewall does not listen on port 21
14717
14718 =item Is it possible to change the file permissions of a file on an FTP
14719 server ?
14720
14721 =item I have seen scripts call a method message, but cannot find it
14722 documented ?
14723
14724 =item Why does Net::FTP not implement mput and mget methods
14725
14726 =back
14727
14728 =item Using Net::SMTP
14729
14730 =over 4
14731
14732 =item Why can't the part of an Email address after the @ be used as the
14733 hostname ?
14734
14735 =item Why does Net::SMTP not do DNS MX lookups ?
14736
14737 =item The verify method always returns true ?
14738
14739 =back
14740
14741 =item Debugging scripts
14742
14743 =over 4
14744
14745 =item How can I debug my scripts that use Net::* modules ?
14746
14747 =back
14748
14749 =item AUTHOR AND COPYRIGHT
14750
14751 =back
14752
14753 =head2 Net::netent - by-name interface to Perl's built-in getnet*()
14754 functions
14755
14756 =over 4
14757
14758 =item SYNOPSIS
14759
14760 =item DESCRIPTION
14761
14762 =item EXAMPLES
14763
14764 =item NOTE
14765
14766 =item AUTHOR
14767
14768 =back
14769
14770 =head2 Net::protoent - by-name interface to Perl's built-in getproto*()
14771 functions
14772
14773 =over 4
14774
14775 =item SYNOPSIS
14776
14777 =item DESCRIPTION
14778
14779 =item NOTE
14780
14781 =item AUTHOR
14782
14783 =back
14784
14785 =head2 Net::servent - by-name interface to Perl's built-in getserv*()
14786 functions
14787
14788 =over 4
14789
14790 =item SYNOPSIS
14791
14792 =item DESCRIPTION
14793
14794 =item EXAMPLES
14795
14796 =item NOTE
14797
14798 =item AUTHOR
14799
14800 =back
14801
14802 =head2 Netrc, Net::Netrc - OO interface to users netrc file
14803
14804 =over 4
14805
14806 =item SYNOPSIS
14807
14808 =item DESCRIPTION
14809
14810 =item THE .netrc FILE
14811
14812 machine name, default, login name, password string, account string, macdef
14813 name
14814
14815 =item CONSTRUCTOR
14816
14817 lookup ( MACHINE [, LOGIN ])
14818
14819 =item METHODS
14820
14821 login (), password (), account (), lpa ()
14822
14823 =item AUTHOR
14824
14825 =item SEE ALSO
14826
14827 =item COPYRIGHT
14828
14829 =back
14830
14831 =head2 ODBM_File - Tied access to odbm files
14832
14833 =over 4
14834
14835 =item SYNOPSIS
14836
14837 =item DESCRIPTION
14838
14839 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
14840
14841 =item DIAGNOSTICS
14842
14843 =over 4
14844
14845 =item C<odbm store returned -1, errno 22, key "..." at ...>
14846
14847 =back
14848
14849 =item BUGS AND WARNINGS
14850
14851 =back
14852
14853 =head2 Opcode - Disable named opcodes when compiling perl code
14854
14855 =over 4
14856
14857 =item SYNOPSIS
14858
14859 =item DESCRIPTION
14860
14861 =item NOTE
14862
14863 =item WARNING
14864
14865 =item Operator Names and Operator Lists
14866
14867 an operator name (opname), an operator tag name (optag), a negated opname
14868 or optag, an operator set (opset)
14869
14870 =item Opcode Functions
14871
14872 opcodes, opset (OP, ...), opset_to_ops (OPSET), opset_to_hex (OPSET),
14873 full_opset, empty_opset, invert_opset (OPSET), verify_opset (OPSET, ...),
14874 define_optag (OPTAG, OPSET), opmask_add (OPSET), opmask, opdesc (OP, ...),
14875 opdump (PAT)
14876
14877 =item Manipulating Opsets
14878
14879 =item TO DO (maybe)
14880
14881 =back
14882
14883 =over 4
14884
14885 =item Predefined Opcode Tags
14886
14887 :base_core, :base_mem, :base_loop, :base_io, :base_orig, :base_math,
14888 :base_thread, :default, :filesys_read, :sys_db, :browse, :filesys_open,
14889 :filesys_write, :subprocess, :ownprocess, :others, :still_to_be_decided,
14890 :dangerous
14891
14892 =item SEE ALSO
14893
14894 =item AUTHORS
14895
14896 =back
14897
14898 =head2 Opcode::Safe, Safe - Compile and execute code in restricted
14899 compartments
14900
14901 =over 4
14902
14903 =item SYNOPSIS
14904
14905 =item DESCRIPTION
14906
14907 a new namespace, an operator mask
14908
14909 =item WARNING
14910
14911 =over 4
14912
14913 =item RECENT CHANGES
14914
14915 =item Methods in class Safe
14916
14917 permit (OP, ...), permit_only (OP, ...), deny (OP, ...), deny_only (OP,
14918 ...), trap (OP, ...), untrap (OP, ...), share (NAME, ...), share_from
14919 (PACKAGE, ARRAYREF), varglob (VARNAME), reval (STRING), rdo (FILENAME),
14920 root (NAMESPACE), mask (MASK)
14921
14922 =item Some Safety Issues
14923
14924 Memory, CPU, Snooping, Signals, State Changes
14925
14926 =item AUTHOR
14927
14928 =back
14929
14930 =back
14931
14932 =head2 Opcode::ops, ops - Perl pragma to restrict unsafe operations when
14933 compiling
14934
14935 =over 4
14936
14937 =item SYNOPSIS  
14938
14939 =item DESCRIPTION
14940
14941 =item SEE ALSO
14942
14943 =back
14944
14945 =head2 POSIX - Perl interface to IEEE Std 1003.1
14946
14947 =over 4
14948
14949 =item SYNOPSIS
14950
14951 =item DESCRIPTION
14952
14953 =item NOTE
14954
14955 =item CAVEATS 
14956
14957 =item FUNCTIONS
14958
14959 _exit, abort, abs, access, acos, alarm, asctime, asin, assert, atan, atan2,
14960 atexit, atof, atoi, atol, bsearch, calloc, ceil, chdir, chmod, chown,
14961 clearerr, clock, close, closedir, cos, cosh, creat, ctermid, ctime,
14962 cuserid, difftime, div, dup, dup2, errno, execl, execle, execlp, execv,
14963 execve, execvp, exit, exp, fabs, fclose, fcntl, fdopen, feof, ferror,
14964 fflush, fgetc, fgetpos, fgets, fileno, floor, fmod, fopen, fork, fpathconf,
14965 fprintf, fputc, fputs, fread, free, freopen, frexp, fscanf, fseek, fsetpos,
14966 fstat, fsync, ftell, fwrite, getc, getchar, getcwd, getegid, getenv,
14967 geteuid, getgid, getgrgid, getgrnam, getgroups, getlogin, getpgrp, getpid,
14968 getppid, getpwnam, getpwuid, gets, getuid, gmtime, isalnum, isalpha,
14969 isatty, iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace,
14970 isupper, isxdigit, kill, labs, ldexp, ldiv, link, localeconv, localtime,
14971 log, log10, longjmp, lseek, malloc, mblen, mbstowcs, mbtowc, memchr,
14972 memcmp, memcpy, memmove, memset, mkdir, mkfifo, mktime, modf, nice,
14973 offsetof, open, opendir, pathconf, pause, perror, pipe, pow, printf, putc,
14974 putchar, puts, qsort, raise, rand, read, readdir, realloc, remove, rename,
14975 rewind, rewinddir, rmdir, scanf, setgid, setjmp, setlocale, setpgid,
14976 setsid, setuid, sigaction, siglongjmp, sigpending, sigprocmask, sigsetjmp,
14977 sigsuspend, sin, sinh, sleep, sprintf, sqrt, srand, sscanf, stat, strcat,
14978 strchr, strcmp, strcoll, strcpy, strcspn, strerror, strftime, strlen,
14979 strncat, strncmp, strncpy, strpbrk, strrchr, strspn, strstr, strtod,
14980 strtok, strtol, strtoul, strxfrm, sysconf, system, tan, tanh, tcdrain,
14981 tcflow, tcflush, tcgetpgrp, tcsendbreak, tcsetpgrp, time, times, tmpfile,
14982 tmpnam, tolower, toupper, ttyname, tzname, tzset, umask, uname, ungetc,
14983 unlink, utime, vfprintf, vprintf, vsprintf, wait, waitpid, wcstombs,
14984 wctomb, write
14985
14986 =item CLASSES
14987
14988 =over 4
14989
14990 =item POSIX::SigAction
14991
14992 new, handler, mask, flags, safe
14993
14994 =item POSIX::SigSet
14995
14996 new, addset, delset, emptyset, fillset, ismember
14997
14998 =item POSIX::Termios
14999
15000 new, getattr, getcc, getcflag, getiflag, getispeed, getlflag, getoflag,
15001 getospeed, setattr, setcc, setcflag, setiflag, setispeed, setlflag,
15002 setoflag, setospeed, Baud rate values, Terminal interface values, c_cc
15003 field values, c_cflag field values, c_iflag field values, c_lflag field
15004 values, c_oflag field values
15005
15006 =back
15007
15008 =item PATHNAME CONSTANTS
15009
15010 Constants
15011
15012 =item POSIX CONSTANTS
15013
15014 Constants
15015
15016 =item SYSTEM CONFIGURATION
15017
15018 Constants
15019
15020 =item ERRNO
15021
15022 Constants
15023
15024 =item FCNTL
15025
15026 Constants
15027
15028 =item FLOAT
15029
15030 Constants
15031
15032 =item LIMITS
15033
15034 Constants
15035
15036 =item LOCALE
15037
15038 Constants
15039
15040 =item MATH
15041
15042 Constants
15043
15044 =item SIGNAL
15045
15046 Constants
15047
15048 =item STAT
15049
15050 Constants, Macros
15051
15052 =item STDLIB
15053
15054 Constants
15055
15056 =item STDIO
15057
15058 Constants
15059
15060 =item TIME
15061
15062 Constants
15063
15064 =item UNISTD
15065
15066 Constants
15067
15068 =item WAIT
15069
15070 Constants, WNOHANG, WUNTRACED, Macros, WIFEXITED, WEXITSTATUS, WIFSIGNALED,
15071 WTERMSIG, WIFSTOPPED, WSTOPSIG
15072
15073 =back
15074
15075 =head2 PerlIO - On demand loader for PerlIO layers and root of PerlIO::*
15076 name space
15077
15078 =over 4
15079
15080 =item SYNOPSIS
15081
15082 =item DESCRIPTION
15083
15084 unix, stdio, perlio, crlf, utf8, bytes, raw, pop
15085
15086 =over 4
15087
15088 =item Custom Layers
15089
15090 :encoding, :via
15091
15092 =item Alternatives to raw
15093
15094 =item Defaults and how to override them
15095
15096 =item Querying the layers of filehandles
15097
15098 =back
15099
15100 =item AUTHOR
15101
15102 =item SEE ALSO
15103
15104 =back
15105
15106 =head2 PerlIO::encoding - encoding layer
15107
15108 =over 4
15109
15110 =item SYNOPSIS
15111
15112 =item DESCRIPTION
15113
15114 =item SEE ALSO
15115
15116 =back
15117
15118 =head2 PerlIO::scalar - in-memory IO, scalar IO
15119
15120 =over 4
15121
15122 =item SYNOPSIS
15123
15124 =item DESCRIPTION
15125
15126 =item IMPLEMENTATION NOTE
15127
15128 =back
15129
15130 =head2 PerlIO::via - Helper class for PerlIO layers implemented in perl
15131
15132 =over 4
15133
15134 =item SYNOPSIS
15135
15136 =item DESCRIPTION
15137
15138 =item EXPECTED METHODS
15139
15140 $class->PUSHED([$mode[,$fh]]), $obj->POPPED([$fh]),
15141 $obj->UTF8($bellowFlag,[$fh]), $obj->OPEN($path,$mode[,$fh]),
15142 $obj->BINMODE([,$fh]), $obj->FDOPEN($fd[,$fh]),
15143 $obj->SYSOPEN($path,$imode,$perm,[,$fh]), $obj->FILENO($fh),
15144 $obj->READ($buffer,$len,$fh), $obj->WRITE($buffer,$fh), $obj->FILL($fh),
15145 $obj->CLOSE($fh), $obj->SEEK($posn,$whence,$fh), $obj->TELL($fh),
15146 $obj->UNREAD($buffer,$fh), $obj->FLUSH($fh), $obj->SETLINEBUF($fh),
15147 $obj->CLEARERR($fh), $obj->ERROR($fh), $obj->EOF($fh)
15148
15149 =item EXAMPLES
15150
15151 =over 4
15152
15153 =item Example - a Hexadecimal Handle
15154
15155 =back
15156
15157 =back
15158
15159 =head2 PerlIO::via::QuotedPrint - PerlIO layer for quoted-printable strings
15160
15161 =over 4
15162
15163 =item SYNOPSIS
15164
15165 =item DESCRIPTION
15166
15167 =item SEE ALSO
15168
15169 =item ACKNOWLEDGEMENTS
15170
15171 =item COPYRIGHT
15172
15173 =back
15174
15175 =head2 Pod::Checker, podchecker() - check pod documents for syntax errors
15176
15177 =over 4
15178
15179 =item SYNOPSIS
15180
15181 =item OPTIONS/ARGUMENTS
15182
15183 =over 4
15184
15185 =item podchecker()
15186
15187 B<-warnings> =E<gt> I<val>
15188
15189 =back
15190
15191 =item DESCRIPTION
15192
15193 =item DIAGNOSTICS
15194
15195 =over 4
15196
15197 =item Errors
15198
15199 empty =headn, =over on line I<N> without closing =back, =item without
15200 previous =over, =back without previous =over, No argument for =begin, =end
15201 without =begin, Nested =begin's, =for without formatter specification,
15202 unresolved internal link I<NAME>, Unknown command "I<CMD>", Unknown
15203 interior-sequence "I<SEQ>", nested commands
15204 I<CMD>E<lt>...I<CMD>E<lt>...E<gt>...E<gt>, garbled entity I<STRING>, Entity
15205 number out of range, malformed link LE<lt>E<gt>, nonempty ZE<lt>E<gt>,
15206 empty XE<lt>E<gt>, Spurious text after =pod / =cut, Spurious character(s)
15207 after =back
15208
15209 =item Warnings
15210
15211 multiple occurrence of link target I<name>, line containing nothing but
15212 whitespace in paragraph, file does not start with =head, previous =item has
15213 no contents, preceding non-item paragraph(s), =item type mismatch (I<one>
15214 vs. I<two>), I<N> unescaped C<E<lt>E<gt>> in paragraph, Unknown entity, No
15215 items in =over, No argument for =item, empty section in previous paragraph,
15216 Verbatim paragraph in NAME section, =headI<n> without preceding higher
15217 level
15218
15219 =item Hyperlinks
15220
15221 ignoring leading/trailing whitespace in link, (section) in '$page'
15222 deprecated, alternative text/node '%s' contains non-escaped | or /
15223
15224 =back
15225
15226 =item RETURN VALUE
15227
15228 =item EXAMPLES
15229
15230 =item INTERFACE
15231
15232 =back
15233
15234 C<Pod::Checker-E<gt>new( %options )>
15235
15236 C<$checker-E<gt>poderror( @args )>, C<$checker-E<gt>poderror( {%opts},
15237 @args )>
15238
15239 C<$checker-E<gt>num_errors()>
15240
15241 C<$checker-E<gt>num_warnings()>
15242
15243 C<$checker-E<gt>name()>
15244
15245 C<$checker-E<gt>node()>
15246
15247 C<$checker-E<gt>idx()>
15248
15249 C<$checker-E<gt>hyperlink()>
15250
15251 =over 4
15252
15253 =item AUTHOR
15254
15255 =back
15256
15257 =head2 Pod::Find - find POD documents in directory trees
15258
15259 =over 4
15260
15261 =item SYNOPSIS
15262
15263 =item DESCRIPTION
15264
15265 =back
15266
15267 =over 4
15268
15269 =item C<pod_find( { %opts } , @directories )>
15270
15271 C<-verbose =E<gt> 1>, C<-perl =E<gt> 1>, C<-script =E<gt> 1>, C<-inc =E<gt>
15272 1>
15273
15274 =back
15275
15276 =over 4
15277
15278 =item C<simplify_name( $str )>
15279
15280 =back
15281
15282 =over 4
15283
15284 =item C<pod_where( { %opts }, $pod )>
15285
15286 C<-inc =E<gt> 1>, C<-dirs =E<gt> [ $dir1, $dir2, ... ]>, C<-verbose =E<gt>
15287 1>
15288
15289 =back
15290
15291 =over 4
15292
15293 =item C<contains_pod( $file , $verbose )>
15294
15295 =back
15296
15297 =over 4
15298
15299 =item AUTHOR
15300
15301 =item SEE ALSO
15302
15303 =back
15304
15305 =head2 Pod::Html - module to convert pod files to HTML
15306
15307 =over 4
15308
15309 =item SYNOPSIS
15310
15311 =item DESCRIPTION
15312
15313 =item ARGUMENTS
15314
15315 backlink, cachedir, css, flush, header, help, htmldir, htmlroot, index,
15316 infile, libpods, netscape, outfile, podpath, podroot, quiet, recurse,
15317 title, verbose
15318
15319 =item EXAMPLE
15320
15321 =item ENVIRONMENT
15322
15323 =item AUTHOR
15324
15325 =item SEE ALSO
15326
15327 =item COPYRIGHT
15328
15329 =back
15330
15331 =head2 Pod::InputObjects - objects representing POD input paragraphs,
15332 commands, etc.
15333
15334 =over 4
15335
15336 =item SYNOPSIS
15337
15338 =item REQUIRES
15339
15340 =item EXPORTS
15341
15342 =item DESCRIPTION
15343
15344 package B<Pod::InputSource>, package B<Pod::Paragraph>, package
15345 B<Pod::InteriorSequence>, package B<Pod::ParseTree>
15346
15347 =back
15348
15349 =over 4
15350
15351 =item B<Pod::InputSource>
15352
15353 =back
15354
15355 =over 4
15356
15357 =item B<new()>
15358
15359 =back
15360
15361 =over 4
15362
15363 =item B<name()>
15364
15365 =back
15366
15367 =over 4
15368
15369 =item B<handle()>
15370
15371 =back
15372
15373 =over 4
15374
15375 =item B<was_cutting()>
15376
15377 =back
15378
15379 =over 4
15380
15381 =item B<Pod::Paragraph>
15382
15383 =back
15384
15385 =over 4
15386
15387 =item Pod::Paragraph-E<gt>B<new()>
15388
15389 =back
15390
15391 =over 4
15392
15393 =item $pod_para-E<gt>B<cmd_name()>
15394
15395 =back
15396
15397 =over 4
15398
15399 =item $pod_para-E<gt>B<text()>
15400
15401 =back
15402
15403 =over 4
15404
15405 =item $pod_para-E<gt>B<raw_text()>
15406
15407 =back
15408
15409 =over 4
15410
15411 =item $pod_para-E<gt>B<cmd_prefix()>
15412
15413 =back
15414
15415 =over 4
15416
15417 =item $pod_para-E<gt>B<cmd_separator()>
15418
15419 =back
15420
15421 =over 4
15422
15423 =item $pod_para-E<gt>B<parse_tree()>
15424
15425 =back
15426
15427 =over 4
15428
15429 =item $pod_para-E<gt>B<file_line()>
15430
15431 =back
15432
15433 =over 4
15434
15435 =item B<Pod::InteriorSequence>
15436
15437 =back
15438
15439 =over 4
15440
15441 =item Pod::InteriorSequence-E<gt>B<new()>
15442
15443 =back
15444
15445 =over 4
15446
15447 =item $pod_seq-E<gt>B<cmd_name()>
15448
15449 =back
15450
15451 =over 4
15452
15453 =item $pod_seq-E<gt>B<prepend()>
15454
15455 =back
15456
15457 =over 4
15458
15459 =item $pod_seq-E<gt>B<append()>
15460
15461 =back
15462
15463 =over 4
15464
15465 =item $pod_seq-E<gt>B<nested()>
15466
15467 =back
15468
15469 =over 4
15470
15471 =item $pod_seq-E<gt>B<raw_text()>
15472
15473 =back
15474
15475 =over 4
15476
15477 =item $pod_seq-E<gt>B<left_delimiter()>
15478
15479 =back
15480
15481 =over 4
15482
15483 =item $pod_seq-E<gt>B<right_delimiter()>
15484
15485 =back
15486
15487 =over 4
15488
15489 =item $pod_seq-E<gt>B<parse_tree()>
15490
15491 =back
15492
15493 =over 4
15494
15495 =item $pod_seq-E<gt>B<file_line()>
15496
15497 =back
15498
15499 =over 4
15500
15501 =item Pod::InteriorSequence::B<DESTROY()>
15502
15503 =back
15504
15505 =over 4
15506
15507 =item B<Pod::ParseTree>
15508
15509 =back
15510
15511 =over 4
15512
15513 =item Pod::ParseTree-E<gt>B<new()>
15514
15515 =back
15516
15517 =over 4
15518
15519 =item $ptree-E<gt>B<top()>
15520
15521 =back
15522
15523 =over 4
15524
15525 =item $ptree-E<gt>B<children()>
15526
15527 =back
15528
15529 =over 4
15530
15531 =item $ptree-E<gt>B<prepend()>
15532
15533 =back
15534
15535 =over 4
15536
15537 =item $ptree-E<gt>B<append()>
15538
15539 =back
15540
15541 =over 4
15542
15543 =item $ptree-E<gt>B<raw_text()>
15544
15545 =back
15546
15547 =over 4
15548
15549 =item Pod::ParseTree::B<DESTROY()>
15550
15551 =back
15552
15553 =over 4
15554
15555 =item SEE ALSO
15556
15557 =item AUTHOR
15558
15559 =back
15560
15561 =head2 Pod::LaTeX - Convert Pod data to formatted Latex
15562
15563 =over 4
15564
15565 =item SYNOPSIS
15566
15567 =item DESCRIPTION
15568
15569 =back
15570
15571 =over 4
15572
15573 =item OBJECT METHODS
15574
15575 C<initialize>
15576
15577 =back
15578
15579 =over 4
15580
15581 =item Data Accessors
15582
15583 B<AddPreamble>
15584
15585 =back
15586
15587 B<AddPostamble>
15588
15589 B<Head1Level>
15590
15591 B<Label>
15592
15593 B<LevelNoNum>
15594
15595 B<MakeIndex>
15596
15597 B<ReplaceNAMEwithSection>
15598
15599 B<StartWithNewPage>
15600
15601 B<TableOfContents>
15602
15603 B<UniqueLabels>
15604
15605 B<UserPreamble>
15606
15607 B<UserPostamble>
15608
15609 B<Lists>
15610
15611 =over 4
15612
15613 =item Subclassed methods
15614
15615 =back
15616
15617 B<begin_pod>
15618
15619 B<end_pod>
15620
15621 B<command>
15622
15623 B<verbatim>
15624
15625 B<textblock>
15626
15627 B<interior_sequence>
15628
15629 =over 4
15630
15631 =item List Methods
15632
15633 B<begin_list>
15634
15635 =back
15636
15637 B<end_list>
15638
15639 B<add_item>
15640
15641 =over 4
15642
15643 =item Methods for headings
15644
15645 B<head>
15646
15647 =back
15648
15649 =over 4
15650
15651 =item Internal methods
15652
15653 B<_output>
15654
15655 =back
15656
15657 B<_replace_special_chars>
15658
15659 B<_replace_special_chars_late>
15660
15661 B<_create_label>
15662
15663 B<_create_index>
15664
15665 B<_clean_latex_commands>
15666
15667 B<_split_delimited>
15668
15669 =over 4
15670
15671 =item NOTES
15672
15673 =item SEE ALSO
15674
15675 =item AUTHORS
15676
15677 =item COPYRIGHT
15678
15679 =item REVISION
15680
15681 =back
15682
15683 =head2 Pod::Man - Convert POD data to formatted *roff input
15684
15685 =over 4
15686
15687 =item SYNOPSIS
15688
15689 =item DESCRIPTION
15690
15691 center, date, fixed, fixedbold, fixeditalic, fixedbolditalic, name, quotes,
15692 release, section
15693
15694 =item DIAGNOSTICS
15695
15696 roff font should be 1 or 2 chars, not "%s", Invalid link %s, Invalid quote
15697 specification "%s", %s:%d: Unknown command paragraph "%s", %s:%d: Unknown
15698 escape EE<lt>%sE<gt>, %s:%d: Unknown formatting code %s, %s:%d: Unmatched
15699 =back
15700
15701 =item BUGS
15702
15703 =item CAVEATS
15704
15705 =item SEE ALSO
15706
15707 =item AUTHOR
15708
15709 =item COPYRIGHT AND LICENSE
15710
15711 =back
15712
15713 =head2 Pod::ParseLink - Parse an LE<lt>E<gt> formatting code in POD text
15714
15715 =over 4
15716
15717 =item SYNOPSIS
15718
15719 =item DESCRIPTION
15720
15721 =item SEE ALSO
15722
15723 =item AUTHOR
15724
15725 =item COPYRIGHT AND LICENSE
15726
15727 =back
15728
15729 =head2 Pod::ParseUtils - helpers for POD parsing and conversion
15730
15731 =over 4
15732
15733 =item SYNOPSIS
15734
15735 =item DESCRIPTION
15736
15737 =back
15738
15739 =over 4
15740
15741 =item Pod::List
15742
15743 Pod::List-E<gt>new()
15744
15745 =back
15746
15747 $list-E<gt>file()
15748
15749 $list-E<gt>start()
15750
15751 $list-E<gt>indent()
15752
15753 $list-E<gt>type()
15754
15755 $list-E<gt>rx()
15756
15757 $list-E<gt>item()
15758
15759 $list-E<gt>parent()
15760
15761 $list-E<gt>tag()
15762
15763 =over 4
15764
15765 =item Pod::Hyperlink
15766
15767 Pod::Hyperlink-E<gt>new()
15768
15769 =back
15770
15771 $link-E<gt>parse($string)
15772
15773 $link-E<gt>markup($string)
15774
15775 $link-E<gt>text()
15776
15777 $link-E<gt>warning()
15778
15779 $link-E<gt>file(), $link-E<gt>line()
15780
15781 $link-E<gt>page()
15782
15783 $link-E<gt>node()
15784
15785 $link-E<gt>alttext()
15786
15787 $link-E<gt>type()
15788
15789 $link-E<gt>link()
15790
15791 =over 4
15792
15793 =item Pod::Cache
15794
15795 Pod::Cache-E<gt>new()
15796
15797 =back
15798
15799 $cache-E<gt>item()
15800
15801 $cache-E<gt>find_page($name)
15802
15803 =over 4
15804
15805 =item Pod::Cache::Item
15806
15807 Pod::Cache::Item-E<gt>new()
15808
15809 =back
15810
15811 $cacheitem-E<gt>page()
15812
15813 $cacheitem-E<gt>description()
15814
15815 $cacheitem-E<gt>path()
15816
15817 $cacheitem-E<gt>file()
15818
15819 $cacheitem-E<gt>nodes()
15820
15821 $cacheitem-E<gt>find_node($name)
15822
15823 $cacheitem-E<gt>idx()
15824
15825 =over 4
15826
15827 =item AUTHOR
15828
15829 =item SEE ALSO
15830
15831 =back
15832
15833 =head2 Pod::Parser - base class for creating POD filters and translators
15834
15835 =over 4
15836
15837 =item SYNOPSIS
15838
15839 =item REQUIRES
15840
15841 =item EXPORTS
15842
15843 =item DESCRIPTION
15844
15845 =item QUICK OVERVIEW
15846
15847 =item PARSING OPTIONS
15848
15849 B<-want_nonPODs> (default: unset), B<-process_cut_cmd> (default: unset),
15850 B<-warnings> (default: unset)
15851
15852 =back
15853
15854 =over 4
15855
15856 =item RECOMMENDED SUBROUTINE/METHOD OVERRIDES
15857
15858 =back
15859
15860 =over 4
15861
15862 =item B<command()>
15863
15864 C<$cmd>, C<$text>, C<$line_num>, C<$pod_para>
15865
15866 =back
15867
15868 =over 4
15869
15870 =item B<verbatim()>
15871
15872 C<$text>, C<$line_num>, C<$pod_para>
15873
15874 =back
15875
15876 =over 4
15877
15878 =item B<textblock()>
15879
15880 C<$text>, C<$line_num>, C<$pod_para>
15881
15882 =back
15883
15884 =over 4
15885
15886 =item B<interior_sequence()>
15887
15888 =back
15889
15890 =over 4
15891
15892 =item OPTIONAL SUBROUTINE/METHOD OVERRIDES
15893
15894 =back
15895
15896 =over 4
15897
15898 =item B<new()>
15899
15900 =back
15901
15902 =over 4
15903
15904 =item B<initialize()>
15905
15906 =back
15907
15908 =over 4
15909
15910 =item B<begin_pod()>
15911
15912 =back
15913
15914 =over 4
15915
15916 =item B<begin_input()>
15917
15918 =back
15919
15920 =over 4
15921
15922 =item B<end_input()>
15923
15924 =back
15925
15926 =over 4
15927
15928 =item B<end_pod()>
15929
15930 =back
15931
15932 =over 4
15933
15934 =item B<preprocess_line()>
15935
15936 =back
15937
15938 =over 4
15939
15940 =item B<preprocess_paragraph()>
15941
15942 =back
15943
15944 =over 4
15945
15946 =item METHODS FOR PARSING AND PROCESSING
15947
15948 =back
15949
15950 =over 4
15951
15952 =item B<parse_text()>
15953
15954 B<-expand_seq> =E<gt> I<code-ref>|I<method-name>, B<-expand_text> =E<gt>
15955 I<code-ref>|I<method-name>, B<-expand_ptree> =E<gt>
15956 I<code-ref>|I<method-name>
15957
15958 =back
15959
15960 =over 4
15961
15962 =item B<interpolate()>
15963
15964 =back
15965
15966 =over 4
15967
15968 =item B<parse_paragraph()>
15969
15970 =back
15971
15972 =over 4
15973
15974 =item B<parse_from_filehandle()>
15975
15976 =back
15977
15978 =over 4
15979
15980 =item B<parse_from_file()>
15981
15982 =back
15983
15984 =over 4
15985
15986 =item ACCESSOR METHODS
15987
15988 =back
15989
15990 =over 4
15991
15992 =item B<errorsub()>
15993
15994 =back
15995
15996 =over 4
15997
15998 =item B<cutting()>
15999
16000 =back
16001
16002 =over 4
16003
16004 =item B<parseopts()>
16005
16006 =back
16007
16008 =over 4
16009
16010 =item B<output_file()>
16011
16012 =back
16013
16014 =over 4
16015
16016 =item B<output_handle()>
16017
16018 =back
16019
16020 =over 4
16021
16022 =item B<input_file()>
16023
16024 =back
16025
16026 =over 4
16027
16028 =item B<input_handle()>
16029
16030 =back
16031
16032 =over 4
16033
16034 =item B<input_streams()>
16035
16036 =back
16037
16038 =over 4
16039
16040 =item B<top_stream()>
16041
16042 =back
16043
16044 =over 4
16045
16046 =item PRIVATE METHODS AND DATA
16047
16048 =back
16049
16050 =over 4
16051
16052 =item B<_push_input_stream()>
16053
16054 =back
16055
16056 =over 4
16057
16058 =item B<_pop_input_stream()>
16059
16060 =back
16061
16062 =over 4
16063
16064 =item TREE-BASED PARSING
16065
16066 =item SEE ALSO
16067
16068 =item AUTHOR
16069
16070 =back
16071
16072 =head2 Pod::Perldoc::ToChecker - let Perldoc check Pod for errors
16073
16074 =over 4
16075
16076 =item SYNOPSIS
16077
16078 =item DESCRIPTION
16079
16080 =item SEE ALSO
16081
16082 =item COPYRIGHT AND DISCLAIMERS
16083
16084 =item AUTHOR
16085
16086 =back
16087
16088 =head2 Pod::Perldoc::ToMan - let Perldoc render Pod as man pages
16089
16090 =over 4
16091
16092 =item SYNOPSIS
16093
16094 =item DESCRIPTION
16095
16096 =item CAVEAT
16097
16098 =item SEE ALSO
16099
16100 =item COPYRIGHT AND DISCLAIMERS
16101
16102 =item AUTHOR
16103
16104 =back
16105
16106 =head2 Pod::Perldoc::ToNroff - let Perldoc convert Pod to nroff
16107
16108 =over 4
16109
16110 =item SYNOPSIS
16111
16112 =item DESCRIPTION
16113
16114 =item CAVEAT
16115
16116 =item SEE ALSO
16117
16118 =item COPYRIGHT AND DISCLAIMERS
16119
16120 =item AUTHOR
16121
16122 =back
16123
16124 =head2 Pod::Perldoc::ToPod - let Perldoc render Pod as ... Pod!
16125
16126 =over 4
16127
16128 =item SYNOPSIS
16129
16130 =item DESCRIPTION
16131
16132 =item SEE ALSO
16133
16134 =item COPYRIGHT AND DISCLAIMERS
16135
16136 =item AUTHOR
16137
16138 =back
16139
16140 =head2 Pod::Perldoc::ToRtf - let Perldoc render Pod as RTF
16141
16142 =over 4
16143
16144 =item SYNOPSIS
16145
16146 =item DESCRIPTION
16147
16148 =item SEE ALSO
16149
16150 =item COPYRIGHT AND DISCLAIMERS
16151
16152 =item AUTHOR
16153
16154 =back
16155
16156 =head2 Pod::Perldoc::ToText - let Perldoc render Pod as plaintext
16157
16158 =over 4
16159
16160 =item SYNOPSIS
16161
16162 =item DESCRIPTION
16163
16164 =item CAVEAT
16165
16166 =item SEE ALSO
16167
16168 =item COPYRIGHT AND DISCLAIMERS
16169
16170 =item AUTHOR
16171
16172 =back
16173
16174 =head2 Pod::Perldoc::ToTk - let Perldoc use Tk::Pod to render Pod
16175
16176 =over 4
16177
16178 =item SYNOPSIS
16179
16180 =item DESCRIPTION
16181
16182 =item SEE ALSO
16183
16184 =item AUTHOR
16185
16186 =back
16187
16188 =head2 Pod::Perldoc::ToXml - let Perldoc render Pod as XML
16189
16190 =over 4
16191
16192 =item SYNOPSIS
16193
16194 =item DESCRIPTION
16195
16196 =item SEE ALSO
16197
16198 =item COPYRIGHT AND DISCLAIMERS
16199
16200 =item AUTHOR
16201
16202 =back
16203
16204 =head2 Pod::PlainText - Convert POD data to formatted ASCII text
16205
16206 =over 4
16207
16208 =item SYNOPSIS
16209
16210 =item DESCRIPTION
16211
16212 alt, indent, loose, sentence, width
16213
16214 =item DIAGNOSTICS
16215
16216 Bizarre space in item, Can't open %s for reading: %s, Unknown escape: %s,
16217 Unknown sequence: %s, Unmatched =back
16218
16219 =item RESTRICTIONS
16220
16221 =item NOTES
16222
16223 =item SEE ALSO
16224
16225 =item AUTHOR
16226
16227 =back
16228
16229 =head2 Pod::Plainer - Perl extension for converting Pod to old style Pod.
16230
16231 =over 4
16232
16233 =item SYNOPSIS
16234
16235 =item DESCRIPTION
16236
16237 =over 4
16238
16239 =item EXPORT
16240
16241 =back
16242
16243 =item AUTHOR
16244
16245 =item SEE ALSO
16246
16247 =back
16248
16249 =head2 Pod::Select, podselect() - extract selected sections of POD from
16250 input
16251
16252 =over 4
16253
16254 =item SYNOPSIS
16255
16256 =item REQUIRES
16257
16258 =item EXPORTS
16259
16260 =item DESCRIPTION
16261
16262 =item SECTION SPECIFICATIONS
16263
16264 =item RANGE SPECIFICATIONS
16265
16266 =back
16267
16268 =over 4
16269
16270 =item OBJECT METHODS
16271
16272 =back
16273
16274 =over 4
16275
16276 =item B<curr_headings()>
16277
16278 =back
16279
16280 =over 4
16281
16282 =item B<select()>
16283
16284 =back
16285
16286 =over 4
16287
16288 =item B<add_selection()>
16289
16290 =back
16291
16292 =over 4
16293
16294 =item B<clear_selections()>
16295
16296 =back
16297
16298 =over 4
16299
16300 =item B<match_section()>
16301
16302 =back
16303
16304 =over 4
16305
16306 =item B<is_selected()>
16307
16308 =back
16309
16310 =over 4
16311
16312 =item EXPORTED FUNCTIONS
16313
16314 =back
16315
16316 =over 4
16317
16318 =item B<podselect()>
16319
16320 B<-output>, B<-sections>, B<-ranges>
16321
16322 =back
16323
16324 =over 4
16325
16326 =item PRIVATE METHODS AND DATA
16327
16328 =back
16329
16330 =over 4
16331
16332 =item B<_compile_section_spec()>
16333
16334 =back
16335
16336 =over 4
16337
16338 =item $self->{_SECTION_HEADINGS}
16339
16340 =back
16341
16342 =over 4
16343
16344 =item $self->{_SELECTED_SECTIONS}
16345
16346 =back
16347
16348 =over 4
16349
16350 =item SEE ALSO
16351
16352 =item AUTHOR
16353
16354 =back
16355
16356 =head2 Pod::Text - Convert POD data to formatted ASCII text
16357
16358 =over 4
16359
16360 =item SYNOPSIS
16361
16362 =item DESCRIPTION
16363
16364 alt, code, indent, loose, margin, quotes, sentence, width
16365
16366 =item DIAGNOSTICS
16367
16368 Bizarre space in item, Item called without tag, Can't open %s for reading:
16369 %s, Invalid quote specification "%s", %s:%d: Unknown command paragraph: %s,
16370 %s:%d: Unknown escape: %s, %s:%d: Unknown formatting code: %s, %s:%d:
16371 Unmatched =back
16372
16373 =item RESTRICTIONS
16374
16375 =item NOTES
16376
16377 =item SEE ALSO
16378
16379 =item AUTHOR
16380
16381 =item COPYRIGHT AND LICENSE
16382
16383 =back
16384
16385 =head2 Pod::Text::Color - Convert POD data to formatted color ASCII text
16386
16387 =over 4
16388
16389 =item SYNOPSIS
16390
16391 =item DESCRIPTION
16392
16393 =item BUGS
16394
16395 =item SEE ALSO
16396
16397 =item AUTHOR
16398
16399 =item COPYRIGHT AND LICENSE
16400
16401 =back
16402
16403 =head2 Pod::Text::Overstrike - Convert POD data to formatted overstrike
16404 text
16405
16406 =over 4
16407
16408 =item SYNOPSIS
16409
16410 =item DESCRIPTION
16411
16412 =item BUGS
16413
16414 =item SEE ALSO
16415
16416 =item AUTHOR
16417
16418 =item COPYRIGHT AND LICENSE
16419
16420 =back
16421
16422 =head2 Pod::Text::Termcap - Convert POD data to ASCII text with format
16423 escapes
16424
16425 =over 4
16426
16427 =item SYNOPSIS
16428
16429 =item DESCRIPTION
16430
16431 =item NOTES
16432
16433 =item SEE ALSO
16434
16435 =item AUTHOR
16436
16437 =item COPYRIGHT AND LICENSE
16438
16439 =back
16440
16441 =head2 Pod::Usage, pod2usage() - print a usage message from embedded pod
16442 documentation
16443
16444 =over 4
16445
16446 =item SYNOPSIS
16447
16448 =item ARGUMENTS
16449
16450 C<-message>, C<-msg>, C<-exitval>, C<-verbose>, C<-output>, C<-input>,
16451 C<-pathlist>
16452
16453 =item DESCRIPTION
16454
16455 =item EXAMPLES
16456
16457 =over 4
16458
16459 =item Recommended Use
16460
16461 =back
16462
16463 =item CAVEATS
16464
16465 =item AUTHOR
16466
16467 =item ACKNOWLEDGEMENTS
16468
16469 =back
16470
16471 =head2 SDBM_File - Tied access to sdbm files
16472
16473 =over 4
16474
16475 =item SYNOPSIS
16476
16477 =item DESCRIPTION
16478
16479 C<O_RDONLY>, C<O_WRONLY>, C<O_RDWR>
16480
16481 =item DIAGNOSTICS
16482
16483 =over 4
16484
16485 =item C<sdbm store returned -1, errno 22, key "..." at ...>
16486
16487 =back
16488
16489 =item BUGS AND WARNINGS
16490
16491 =back
16492
16493 =head2 Search::Dict, look - search for key in dictionary file
16494
16495 =over 4
16496
16497 =item SYNOPSIS
16498
16499 =item DESCRIPTION
16500
16501 =back
16502
16503 =head2 SelectSaver - save and restore selected file handle
16504
16505 =over 4
16506
16507 =item SYNOPSIS
16508
16509 =item DESCRIPTION
16510
16511 =back
16512
16513 =head2 SelfLoader - load functions only on demand
16514
16515 =over 4
16516
16517 =item SYNOPSIS
16518
16519 =item DESCRIPTION
16520
16521 =over 4
16522
16523 =item The __DATA__ token
16524
16525 =item SelfLoader autoloading
16526
16527 =item Autoloading and package lexicals
16528
16529 =item SelfLoader and AutoLoader
16530
16531 =item __DATA__, __END__, and the FOOBAR::DATA filehandle.
16532
16533 =item Classes and inherited methods.
16534
16535 =back
16536
16537 =item Multiple packages and fully qualified subroutine names
16538
16539 =back
16540
16541 =head2 Shell - run shell commands transparently within perl
16542
16543 =over 4
16544
16545 =item SYNOPSIS
16546
16547 =item DESCRIPTION
16548
16549 =over 4
16550
16551 =item OBJECT ORIENTED SYNTAX
16552
16553 =back
16554
16555 =item AUTHOR
16556
16557 =back
16558
16559 =head2 Socket, sockaddr_in, sockaddr_un, inet_aton, inet_ntoa - load the C
16560 socket.h defines and structure manipulators 
16561
16562 =over 4
16563
16564 =item SYNOPSIS
16565
16566 =item DESCRIPTION
16567
16568 inet_aton HOSTNAME, inet_ntoa IP_ADDRESS, INADDR_ANY, INADDR_BROADCAST,
16569 INADDR_LOOPBACK, INADDR_NONE, sockaddr_family SOCKADDR, sockaddr_in PORT,
16570 ADDRESS, sockaddr_in SOCKADDR_IN, pack_sockaddr_in PORT, IP_ADDRESS,
16571 unpack_sockaddr_in SOCKADDR_IN, sockaddr_un PATHNAME, sockaddr_un
16572 SOCKADDR_UN, pack_sockaddr_un PATH, unpack_sockaddr_un SOCKADDR_UN
16573
16574 =back
16575
16576 =head2 Storable - persistence for Perl data structures
16577
16578 =over 4
16579
16580 =item SYNOPSIS
16581
16582 =item DESCRIPTION
16583
16584 =item MEMORY STORE
16585
16586 =item ADVISORY LOCKING
16587
16588 =item SPEED
16589
16590 =item CANONICAL REPRESENTATION
16591
16592 =item CODE REFERENCES
16593
16594 =item FORWARD COMPATIBILITY
16595
16596 utf8 data, restricted hashes, files from future versions of Storable
16597
16598 =item ERROR REPORTING
16599
16600 =item WIZARDS ONLY
16601
16602 =over 4
16603
16604 =item Hooks
16605
16606 C<STORABLE_freeze> I<obj>, I<cloning>, C<STORABLE_thaw> I<obj>, I<cloning>,
16607 I<serialized>, ..
16608
16609 =item Predicates
16610
16611 C<Storable::last_op_in_netorder>, C<Storable::is_storing>,
16612 C<Storable::is_retrieving>
16613
16614 =item Recursion
16615
16616 =item Deep Cloning
16617
16618 =back
16619
16620 =item Storable magic
16621
16622 =item EXAMPLES
16623
16624 =item WARNING
16625
16626 =item BUGS
16627
16628 =over 4
16629
16630 =item 64 bit data in perl 5.6.0 and 5.6.1
16631
16632 =back
16633
16634 =item CREDITS
16635
16636 =item AUTHOR
16637
16638 =item SEE ALSO
16639
16640 =back
16641
16642 =head2 Switch - A switch statement for Perl
16643
16644 =over 4
16645
16646 =item VERSION
16647
16648 =item SYNOPSIS
16649
16650 =item BACKGROUND
16651
16652 =item DESCRIPTION
16653
16654 =over 4
16655
16656 =item Allowing fall-through
16657
16658 =item Automating fall-through
16659
16660 =item Alternative syntax
16661
16662 =item Higher-order Operations
16663
16664 =back
16665
16666 =item DEPENDENCIES
16667
16668 =item AUTHOR
16669
16670 =item BUGS
16671
16672 =item LIMITATION
16673
16674 =item COPYRIGHT
16675
16676 =back
16677
16678 =head2 Symbol - manipulate Perl symbols and their names
16679
16680 =over 4
16681
16682 =item SYNOPSIS
16683
16684 =item DESCRIPTION
16685
16686 =item BUGS
16687
16688 =back
16689
16690 =head2 Sys::Hostname - Try every conceivable way to get hostname
16691
16692 =over 4
16693
16694 =item SYNOPSIS
16695
16696 =item DESCRIPTION
16697
16698 =item AUTHOR
16699
16700 =back
16701
16702 =head2 Syslog::Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog -
16703 Perl interface to the UNIX syslog(3) calls
16704
16705 =over 4
16706
16707 =item SYNOPSIS
16708
16709 =item DESCRIPTION
16710
16711 openlog $ident, $logopt, $facility, syslog $priority, $format, @args,
16712 setlogmask $mask_priority, setlogsock $sock_type [$stream_location] (added
16713 in 5.004_02), closelog
16714
16715 =item EXAMPLES
16716
16717 =item SEE ALSO
16718
16719 =item AUTHOR
16720
16721 =back
16722
16723 =head2 Term::ANSIColor - Color screen output using ANSI escape sequences
16724
16725 =over 4
16726
16727 =item SYNOPSIS
16728
16729 =item DESCRIPTION
16730
16731 =item DIAGNOSTICS
16732
16733 Bad escape sequence %s, Bareword "%s" not allowed while "strict subs" in
16734 use, Invalid attribute name %s, Name "%s" used only once: possible typo, No
16735 comma allowed after filehandle, No name for escape sequence %s
16736
16737 =item ENVIRONMENT
16738
16739 ANSI_COLORS_DISABLED
16740
16741 =item RESTRICTIONS
16742
16743 =item NOTES
16744
16745 =item SEE ALSO
16746
16747 =item AUTHORS
16748
16749 =item COPYRIGHT AND LICENSE
16750
16751 =back
16752
16753 =head2 Term::Cap - Perl termcap interface
16754
16755 =over 4
16756
16757 =item SYNOPSIS
16758
16759 =item DESCRIPTION
16760
16761 =over 4
16762
16763 =item METHODS
16764
16765 =back
16766
16767 =back
16768
16769 B<Tgetent>, OSPEED, TERM
16770
16771 B<Tpad>, B<$string>, B<$cnt>, B<$FH>
16772
16773 B<Tputs>, B<$cap>, B<$cnt>, B<$FH>
16774
16775 B<Tgoto>, B<$cap>, B<$col>, B<$row>, B<$FH>
16776
16777 B<Trequire>
16778
16779 =over 4
16780
16781 =item EXAMPLES
16782
16783 =item COPYRIGHT AND LICENSE
16784
16785 =item AUTHOR
16786
16787 =item SEE ALSO
16788
16789 =back
16790
16791 =head2 Term::Complete - Perl word completion module
16792
16793 =over 4
16794
16795 =item SYNOPSIS
16796
16797 =item DESCRIPTION
16798
16799 E<lt>tabE<gt>, ^D, ^U, E<lt>delE<gt>, E<lt>bsE<gt>
16800
16801 =item DIAGNOSTICS
16802
16803 =item BUGS
16804
16805 =item AUTHOR
16806
16807 =back
16808
16809 =head2 Term::ReadLine - Perl interface to various C<readline> packages.
16810 If no real package is found, substitutes stubs instead of basic functions.
16811
16812 =over 4
16813
16814 =item SYNOPSIS
16815
16816 =item DESCRIPTION
16817
16818 =item Minimal set of supported functions
16819
16820 C<ReadLine>, C<new>, C<readline>, C<addhistory>, C<IN>, C<OUT>, C<MinLine>,
16821 C<findConsole>, Attribs, C<Features>
16822
16823 =item Additional supported functions
16824
16825 C<tkRunning>, C<ornaments>, C<newTTY>
16826
16827 =item EXPORTS
16828
16829 =item ENVIRONMENT
16830
16831 =item CAVEATS
16832
16833 =back
16834
16835 =head2 Test - provides a simple framework for writing test scripts
16836
16837 =over 4
16838
16839 =item SYNOPSIS
16840
16841 =item DESCRIPTION
16842
16843 =item QUICK START GUIDE
16844
16845 =over 4
16846
16847 =item Functions
16848
16849 C<plan(...)>, C<tests =E<gt> I<number>>, C<todo =E<gt> [I<1,5,14>]>,
16850 C<onfail =E<gt> sub { ... }>, C<onfail =E<gt> \&some_sub>
16851
16852 =back
16853
16854 =back
16855
16856 B<_to_value>
16857
16858 C<ok(...)>
16859
16860 C<skip(I<skip_if_true>, I<args...>)>
16861
16862 =over 4
16863
16864 =item TEST TYPES
16865
16866 NORMAL TESTS, SKIPPED TESTS, TODO TESTS
16867
16868 =item ONFAIL
16869
16870 =item BUGS and CAVEATS
16871
16872 =item NOTE
16873
16874 =item SEE ALSO
16875
16876 =item AUTHOR
16877
16878 =back
16879
16880 =head2 Test::Builder - Backend for building test libraries
16881
16882 =over 4
16883
16884 =item SYNOPSIS
16885
16886 =item DESCRIPTION
16887
16888 =over 4
16889
16890 =item Construction
16891
16892 B<new>
16893
16894 =back
16895
16896 =back
16897
16898 =over 4
16899
16900 =item Setting up tests
16901
16902 B<exported_to>
16903
16904 =back
16905
16906 B<plan>
16907
16908 B<expected_tests>
16909
16910 B<no_plan>
16911
16912 B<has_plan>
16913
16914 B<skip_all>
16915
16916 =over 4
16917
16918 =item Running tests
16919
16920 B<ok>
16921
16922 =back
16923
16924 B<is_eq>, B<is_num>
16925
16926 B<isnt_eq>, B<isnt_num>
16927
16928 B<like>, B<unlike>
16929
16930 B<maybe_regex>
16931
16932 B<cmp_ok>
16933
16934 B<BAILOUT>
16935
16936 B<skip>
16937
16938 B<todo_skip>
16939
16940 B<skip_rest>
16941
16942 =over 4
16943
16944 =item Test style
16945
16946 B<level>
16947
16948 =back
16949
16950 B<use_numbers>
16951
16952 B<no_header>, B<no_ending>
16953
16954 =over 4
16955
16956 =item Output
16957
16958 B<diag>
16959
16960 =back
16961
16962 B<_print>
16963
16964 B<output>, B<failure_output>, B<todo_output>
16965
16966 =over 4
16967
16968 =item Test Status and Info
16969
16970 B<current_test>
16971
16972 =back
16973
16974 B<summary>
16975
16976 B<details>
16977
16978 B<todo>
16979
16980 B<caller>
16981
16982 B<_sanity_check>
16983
16984 B<_whoa>
16985
16986 B<_my_exit>
16987
16988 =over 4
16989
16990 =item THREADS
16991
16992 =item EXAMPLES
16993
16994 =item SEE ALSO
16995
16996 =item AUTHORS
16997
16998 =item COPYRIGHT
16999
17000 =back
17001
17002 =head2 Test::Harness - run perl standard test scripts with statistics
17003
17004 =over 4
17005
17006 =item SYNOPSIS
17007
17008 =item DESCRIPTION
17009
17010 =over 4
17011
17012 =item The test script output
17013
17014 B<'1..M'>, B<'ok', 'not ok'.  Ok?>, B<test numbers>, B<test names>,
17015 B<Skipping tests>, B<Todo tests>, B<Bail out!>, B<Comments>, B<Anything
17016 else>
17017
17018 =item Taint mode
17019
17020 =item Configuration variables.
17021
17022 B<$Test::Harness::verbose>, B<$Test::Harness::switches>
17023
17024 =item Failure
17025
17026 B<Failed Test>, B<Stat>, B<Wstat>, B<Total>, B<Fail>, B<Failed>, B<List of
17027 Failed>
17028
17029 =item Functions
17030
17031 B<runtests>
17032
17033 =back
17034
17035 =back
17036
17037 B<_all_ok>
17038
17039 B<_globdir>
17040
17041 B<_run_all_tests>
17042
17043 B<_mk_leader>
17044
17045 B<_leader_width>
17046
17047 =over 4
17048
17049 =item EXPORT
17050
17051 =item DIAGNOSTICS
17052
17053 C<All tests successful.\nFiles=%d,  Tests=%d, %s>, C<FAILED tests
17054 %s\n\tFailed %d/%d tests, %.2f%% okay.>, C<Test returned status %d (wstat
17055 %d)>, C<Failed 1 test, %.2f%% okay. %s>, C<Failed %d/%d tests, %.2f%% okay.
17056 %s>, C<FAILED--Further testing stopped: %s>
17057
17058 =item ENVIRONMENT
17059
17060 C<HARNESS_ACTIVE>, C<HARNESS_COLUMNS>, C<HARNESS_COMPILE_TEST>,
17061 C<HARNESS_FILELEAK_IN_DIR>, C<HARNESS_IGNORE_EXITCODE>, C<HARNESS_NOTTY>,
17062 C<HARNESS_OK_SLOW>, C<HARNESS_PERL_SWITCHES>, C<HARNESS_VERBOSE>
17063
17064 =item EXAMPLE
17065
17066 =item SEE ALSO
17067
17068 =item AUTHORS
17069
17070 =item LICENSE
17071
17072 =item TODO
17073
17074 =item BUGS
17075
17076 =back
17077
17078 =head2 Test::Harness::Assert - simple assert
17079
17080 =over 4
17081
17082 =item SYNOPSIS
17083
17084 =item DESCRIPTION
17085
17086 =over 4
17087
17088 =item Functions
17089
17090 B<assert>
17091
17092 =back
17093
17094 =back
17095
17096 =over 4
17097
17098 =item AUTHOR
17099
17100 =item SEE ALSO
17101
17102 =back
17103
17104 =head2 Test::Harness::Iterator - Internal Test::Harness Iterator
17105
17106 =over 4
17107
17108 =item SYNOPSIS
17109
17110 =item DESCRIPTION
17111
17112 =back
17113
17114 =head2 Test::Harness::Straps - detailed analysis of test results
17115
17116 =over 4
17117
17118 =item SYNOPSIS
17119
17120 =item DESCRIPTION
17121
17122 =item Construction
17123
17124 =over 4
17125
17126 =item C<new>
17127
17128 =back
17129
17130 =back
17131
17132 =over 4
17133
17134 =item C<_init>
17135
17136 =back
17137
17138 =over 4
17139
17140 =item Analysis
17141
17142 =over 4
17143
17144 =item C<analyze>
17145
17146 =back
17147
17148 =back
17149
17150 =over 4
17151
17152 =item C<analyze_fh>
17153
17154 =back
17155
17156 =over 4
17157
17158 =item C<analyze_file>
17159
17160 =back
17161
17162 =over 4
17163
17164 =item C<_switches>
17165
17166 =back
17167
17168 =over 4
17169
17170 =item C<_INC2PERL5LIB>
17171
17172 =back
17173
17174 =over 4
17175
17176 =item C<_filtered_INC>
17177
17178 =back
17179
17180 =over 4
17181
17182 =item C<_restore_PERL5LIB>
17183
17184 =back
17185
17186 =over 4
17187
17188 =item Parsing
17189
17190 =over 4
17191
17192 =item C<_is_comment>
17193
17194 =back
17195
17196 =back
17197
17198 =over 4
17199
17200 =item C<_is_header>
17201
17202 =back
17203
17204 =over 4
17205
17206 =item C<_is_test>
17207
17208 =back
17209
17210 =over 4
17211
17212 =item C<_is_bail_out>
17213
17214 =back
17215
17216 =over 4
17217
17218 =item C<_reset_file_state>
17219
17220 =back
17221
17222 =over 4
17223
17224 =item Results
17225
17226 =over 4
17227
17228 =item C<_detailize>
17229
17230 =back
17231
17232 =back
17233
17234 =over 4
17235
17236 =item EXAMPLES
17237
17238 =item AUTHOR
17239
17240 =item SEE ALSO
17241
17242 =back
17243
17244 =head2 Test::More - yet another framework for writing test scripts
17245
17246 =over 4
17247
17248 =item SYNOPSIS
17249
17250 =item DESCRIPTION
17251
17252 =over 4
17253
17254 =item I love it when a plan comes together
17255
17256 =back
17257
17258 =back
17259
17260 =over 4
17261
17262 =item Test names
17263
17264 =item I'm ok, you're not ok.
17265
17266 B<ok>
17267
17268 =back
17269
17270 B<is>, B<isnt>
17271
17272 B<like>
17273
17274 B<unlike>
17275
17276 B<cmp_ok>
17277
17278 B<can_ok>
17279
17280 B<isa_ok>
17281
17282 B<pass>, B<fail>
17283
17284 =over 4
17285
17286 =item Diagnostics
17287
17288 B<diag>
17289
17290 =back
17291
17292 =over 4
17293
17294 =item Module tests
17295
17296 B<use_ok>
17297
17298 =back
17299
17300 B<require_ok>
17301
17302 =over 4
17303
17304 =item Conditional tests
17305
17306 B<SKIP: BLOCK>
17307
17308 =back
17309
17310 B<TODO: BLOCK>, B<todo_skip>
17311
17312 When do I use SKIP vs. TODO?
17313
17314 =over 4
17315
17316 =item Comparison functions
17317
17318 B<is_deeply>
17319
17320 =back
17321
17322 B<eq_array>
17323
17324 B<eq_hash>
17325
17326 B<eq_set>
17327
17328 =over 4
17329
17330 =item Extending and Embedding Test::More
17331
17332 B<builder>
17333
17334 =back
17335
17336 =over 4
17337
17338 =item NOTES
17339
17340 =item BUGS and CAVEATS
17341
17342 Making your own ok(), The eq_* family has some caveats, Test::Harness
17343 upgrades
17344
17345 =item HISTORY
17346
17347 =item SEE ALSO
17348
17349 =item AUTHORS
17350
17351 =item COPYRIGHT
17352
17353 =back
17354
17355 =head2 Test::Simple - Basic utilities for writing tests.
17356
17357 =over 4
17358
17359 =item SYNOPSIS
17360
17361 =item DESCRIPTION
17362
17363 B<ok>
17364
17365 =back
17366
17367 =over 4
17368
17369 =item EXAMPLE
17370
17371 =item CAVEATS
17372
17373 =item NOTES
17374
17375 =item HISTORY
17376
17377 =item SEE ALSO
17378
17379 L<Test::More>, L<Test>, L<Test::Unit>, L<Test::Inline>, L<SelfTest>,
17380 L<Test::Harness>
17381
17382 =item AUTHORS
17383
17384 =item COPYRIGHT
17385
17386 =back
17387
17388 =head2 Test::Tutorial - A tutorial about writing really basic tests
17389
17390 =over 4
17391
17392 =item DESCRIPTION
17393
17394 =over 4
17395
17396 =item Nuts and bolts of testing.
17397
17398 =item Where to start?
17399
17400 =item Names
17401
17402 =item Test the manual
17403
17404 =item Sometimes the tests are wrong
17405
17406 =item Testing lots of values
17407
17408 =item Informative names
17409
17410 =item Skipping tests
17411
17412 =item Todo tests
17413
17414 =item Testing with taint mode.
17415
17416 =back
17417
17418 =item FOOTNOTES
17419
17420 =item AUTHORS
17421
17422 =item COPYRIGHT
17423
17424 =back
17425
17426 =head2 Text::Abbrev, abbrev - create an abbreviation table from a list
17427
17428 =over 4
17429
17430 =item SYNOPSIS
17431
17432 =item DESCRIPTION
17433
17434 =item EXAMPLE
17435
17436 =back
17437
17438 =head2 Text::Balanced - Extract delimited text sequences from strings.
17439
17440 =over 4
17441
17442 =item SYNOPSIS
17443
17444 =item DESCRIPTION
17445
17446 =over 4
17447
17448 =item General behaviour in list contexts
17449
17450 [0], [1], [2]
17451
17452 =item General behaviour in scalar and void contexts
17453
17454 =item A note about prefixes
17455
17456 =item C<extract_delimited>
17457
17458 =item C<extract_bracketed>
17459
17460 =item C<extract_variable>
17461
17462 [0], [1], [2]
17463
17464 =item C<extract_tagged>
17465
17466 C<reject =E<gt> $listref>, C<ignore =E<gt> $listref>, C<fail =E<gt> $str>,
17467 [0], [1], [2], [3], [4], [5]
17468
17469 =item C<gen_extract_tagged>
17470
17471 =item C<extract_quotelike>
17472
17473 [0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10]
17474
17475 =item C<extract_quotelike> and "here documents"
17476
17477 [0], [1], [2], [3], [4], [5], [6], [7..10]
17478
17479 =item C<extract_codeblock>
17480
17481 =item C<extract_multiple>
17482
17483 =item C<gen_delimited_pat>
17484
17485 =back
17486
17487 =item DIAGNOSTICS
17488
17489  C<Did not find a suitable bracket: "%s">,  C<Did not find prefix: /%s/>, 
17490 C<Did not find opening bracket after prefix: "%s">,  C<No quotelike
17491 operator found after prefix: "%s">,  C<Unmatched closing bracket: "%c">, 
17492 C<Unmatched opening bracket(s): "%s">, C<Unmatched embedded quote (%s)>,
17493 C<Did not find closing delimiter to match '%s'>,  C<Mismatched closing
17494 bracket: expected "%c" but found "%s">,  C<No block delimiter found after
17495 quotelike "%s">, C<Did not find leading dereferencer>, C<Bad identifier
17496 after dereferencer>, C<Did not find expected opening bracket at %s>,
17497 C<Improperly nested codeblock at %s>,  C<Missing second block for quotelike
17498 "%s">, C<No match found for opening bracket>, C<Did not find opening tag:
17499 /%s/>, C<Unable to construct closing tag to match: /%s/>, C<Found invalid
17500 nested tag: %s>, C<Found unbalanced nested tag: %s>, C<Did not find closing
17501 tag>
17502
17503 =item AUTHOR
17504
17505 =item BUGS AND IRRITATIONS
17506
17507 =item COPYRIGHT
17508
17509 =back
17510
17511 =head2 Text::ParseWords - parse text into an array of tokens or array of
17512 arrays
17513
17514 =over 4
17515
17516 =item SYNOPSIS
17517
17518 =item DESCRIPTION
17519
17520 =item EXAMPLES
17521
17522 =item AUTHORS
17523
17524 =back
17525
17526 =head2 Text::Soundex - Implementation of the Soundex Algorithm as Described
17527 by Knuth
17528
17529 =over 4
17530
17531 =item SYNOPSIS
17532
17533 =item DESCRIPTION
17534
17535 =item EXAMPLES
17536
17537 =item LIMITATIONS
17538
17539 =item AUTHOR
17540
17541 =back
17542
17543 =head2 Text::Tabs -- expand and unexpand tabs per the unix expand(1) and
17544 unexpand(1)
17545
17546 =over 4
17547
17548 =item SYNOPSIS
17549
17550 =item DESCRIPTION
17551
17552 =item BUGS
17553
17554 =item AUTHOR
17555
17556 =back
17557
17558 =head2 Text::Wrap - line wrapping to form simple paragraphs
17559
17560 =over 4
17561
17562 =item SYNOPSIS 
17563
17564 =item DESCRIPTION
17565
17566 =item OVERRIDES
17567
17568 =item EXAMPLE
17569
17570 =item AUTHOR
17571
17572 =back
17573
17574 =head2 Thread - manipulate threads in Perl (for old code only)
17575
17576 =over 4
17577
17578 =item CAVEAT
17579
17580 =item SYNOPSIS
17581
17582 =item DESCRIPTION
17583
17584 =item FUNCTIONS
17585
17586 $thread = Thread->new(\&start_sub), $thread = Thread->new(\&start_sub,
17587 LIST), lock VARIABLE, async BLOCK;, Thread->self, cond_wait VARIABLE,
17588 cond_signal VARIABLE, cond_broadcast VARIABLE, yield
17589
17590 =item METHODS
17591
17592 join, eval, detach, equal, tid, flags, done
17593
17594 =item LIMITATIONS
17595
17596 =item SEE ALSO
17597
17598 =back
17599
17600 =head2 Thread::Queue - thread-safe queues
17601
17602 =over 4
17603
17604 =item SYNOPSIS
17605
17606 =item DESCRIPTION
17607
17608 =item FUNCTIONS AND METHODS
17609
17610 new, enqueue LIST, dequeue, dequeue_nb, pending
17611
17612 =item SEE ALSO
17613
17614 =back
17615
17616 =head2 Thread::Semaphore - thread-safe semaphores
17617
17618 =over 4
17619
17620 =item SYNOPSIS
17621
17622 =item DESCRIPTION
17623
17624 =item FUNCTIONS AND METHODS
17625
17626 new, new NUMBER, down, down NUMBER, up, up NUMBER
17627
17628 =back
17629
17630 =head2 Thread::Signal - Start a thread which runs signal handlers reliably
17631 (for old code)
17632
17633 =over 4
17634
17635 =item CAVEAT
17636
17637 =item SYNOPSIS
17638
17639 =item DESCRIPTION
17640
17641 =item BUGS
17642
17643 =back
17644
17645 =head2 Thread::Specific - thread-specific keys
17646
17647 =over 4
17648
17649 =item SYNOPSIS
17650
17651 =item DESCRIPTION
17652
17653 =back
17654
17655 =head2 Tie::Array - base class for tied arrays
17656
17657 =over 4
17658
17659 =item SYNOPSIS
17660
17661 =item DESCRIPTION
17662
17663 TIEARRAY classname, LIST, STORE this, index, value, FETCH this, index,
17664 FETCHSIZE this, STORESIZE this, count, EXTEND this, count, EXISTS this,
17665 key, DELETE this, key, CLEAR this, DESTROY this, PUSH this, LIST, POP this,
17666 SHIFT this, UNSHIFT this, LIST, SPLICE this, offset, length, LIST
17667
17668 =item CAVEATS
17669
17670 =item AUTHOR
17671
17672 =back
17673
17674 =head2 Tie::File - Access the lines of a disk file via a Perl array
17675
17676 =over 4
17677
17678 =item SYNOPSIS
17679
17680 =item DESCRIPTION
17681
17682 =over 4
17683
17684 =item C<recsep>
17685
17686 =item C<autochomp>
17687
17688 =item C<mode>
17689
17690 =item C<memory>
17691
17692 =item C<dw_size>
17693
17694 =item Option Format
17695
17696 =back
17697
17698 =item Public Methods
17699
17700 =over 4
17701
17702 =item C<flock>
17703
17704 =item C<autochomp>
17705
17706 =item C<defer>, C<flush>, C<discard>, and C<autodefer>
17707
17708 =item C<offset>
17709
17710 =back
17711
17712 =item Tying to an already-opened filehandle
17713
17714 =item Deferred Writing
17715
17716 =over 4
17717
17718 =item Autodeferring
17719
17720 =back
17721
17722 =item CONCURRENT ACCESS TO FILES
17723
17724 =item CAVEATS
17725
17726 =item SUBCLASSING
17727
17728 =item WHAT ABOUT C<DB_File>?
17729
17730 =item AUTHOR
17731
17732 =item LICENSE
17733
17734 =item WARRANTY
17735
17736 =item THANKS
17737
17738 =item TODO
17739
17740 =back
17741
17742 =head2 Tie::Handle, Tie::StdHandle  - base class definitions for tied
17743 handles
17744
17745 =over 4
17746
17747 =item SYNOPSIS
17748
17749 =item DESCRIPTION
17750
17751 TIEHANDLE classname, LIST, WRITE this, scalar, length, offset, PRINT this,
17752 LIST, PRINTF this, format, LIST, READ this, scalar, length, offset,
17753 READLINE this, GETC this, CLOSE this, OPEN this, filename, BINMODE this,
17754 EOF this, TELL this, SEEK this, offset, whence, DESTROY this
17755
17756 =item MORE INFORMATION
17757
17758 =item COMPATIBILITY
17759
17760 =back
17761
17762 =head2 Tie::Hash, Tie::StdHash, Tie::ExtraHash - base class definitions for
17763 tied hashes
17764
17765 =over 4
17766
17767 =item SYNOPSIS
17768
17769 =item DESCRIPTION
17770
17771 TIEHASH classname, LIST, STORE this, key, value, FETCH this, key, FIRSTKEY
17772 this, NEXTKEY this, lastkey, EXISTS this, key, DELETE this, key, CLEAR this
17773
17774 =item Inheriting from B<Tie::StdHash>
17775
17776 =item Inheriting from B<Tie::ExtraHash>
17777
17778 =item C<UNTIE> and C<DESTROY>
17779
17780 =item MORE INFORMATION
17781
17782 =back
17783
17784 =head2 Tie::Memoize - add data to hash when needed
17785
17786 =over 4
17787
17788 =item SYNOPSIS
17789
17790 =item DESCRIPTION
17791
17792 =item Inheriting from B<Tie::Memoize>
17793
17794 =item EXAMPLE
17795
17796 =item BUGS
17797
17798 =item AUTHOR
17799
17800 =back
17801
17802 =head2 Tie::RefHash - use references as hash keys
17803
17804 =over 4
17805
17806 =item SYNOPSIS
17807
17808 =item DESCRIPTION
17809
17810 =item EXAMPLE
17811
17812 =item AUTHOR
17813
17814 =item VERSION
17815
17816 =item SEE ALSO
17817
17818 =back
17819
17820 =head2 Tie::Scalar, Tie::StdScalar - base class definitions for tied
17821 scalars
17822
17823 =over 4
17824
17825 =item SYNOPSIS
17826
17827 =item DESCRIPTION
17828
17829 TIESCALAR classname, LIST, FETCH this, STORE this, value, DESTROY this
17830
17831 =item MORE INFORMATION
17832
17833 =back
17834
17835 =head2 Tie::SubstrHash - Fixed-table-size, fixed-key-length hashing
17836
17837 =over 4
17838
17839 =item SYNOPSIS
17840
17841 =item DESCRIPTION
17842
17843 =item CAVEATS
17844
17845 =back
17846
17847 =head2 Time::HiRes - High resolution alarm, sleep, gettimeofday, interval
17848 timers
17849
17850 =over 4
17851
17852 =item SYNOPSIS
17853
17854 =item DESCRIPTION
17855
17856 gettimeofday (), usleep ( $useconds ), ualarm ( $useconds [,
17857 $interval_useconds ] ), tv_interval, time (), sleep ( $floating_seconds ),
17858 alarm ( $floating_seconds [, $interval_floating_seconds ] ), setitimer (
17859 $which, $floating_seconds [, $interval_floating_seconds ] ), getitimer (
17860 $which )
17861
17862 =item EXAMPLES
17863
17864 =item C API
17865
17866 =item DIAGNOSTICS
17867
17868 =over 4
17869
17870 =item negative time not invented yet
17871
17872 =item internal error: useconds < 0 (unsigned ... signed ...)
17873
17874 =back
17875
17876 =item CAVEATS
17877
17878 =item AUTHORS
17879
17880 =item COPYRIGHT AND LICENSE
17881
17882 =back
17883
17884 =head2 Time::Local - efficiently compute time from local and GMT time
17885
17886 =over 4
17887
17888 =item SYNOPSIS
17889
17890 =item DESCRIPTION
17891
17892 =item IMPLEMENTATION
17893
17894 =item BUGS
17895
17896 =item SUPPORT
17897
17898 =item AUTHOR
17899
17900 =back
17901
17902 =head2 Time::gmtime - by-name interface to Perl's built-in gmtime()
17903 function
17904
17905 =over 4
17906
17907 =item SYNOPSIS
17908
17909 =item DESCRIPTION
17910
17911 =item NOTE
17912
17913 =item AUTHOR
17914
17915 =back
17916
17917 =head2 Time::localtime - by-name interface to Perl's built-in localtime()
17918 function
17919
17920 =over 4
17921
17922 =item SYNOPSIS
17923
17924 =item DESCRIPTION
17925
17926 =item NOTE
17927
17928 =item AUTHOR
17929
17930 =back
17931
17932 =head2 Time::tm - internal object used by Time::gmtime and Time::localtime
17933
17934 =over 4
17935
17936 =item SYNOPSIS
17937
17938 =item DESCRIPTION
17939
17940 =item AUTHOR
17941
17942 =back
17943
17944 =head2 UNIVERSAL - base class for ALL classes (blessed references)
17945
17946 =over 4
17947
17948 =item SYNOPSIS
17949
17950 =item DESCRIPTION
17951
17952 C<< $obj->isa( TYPE ) >>, C<< CLASS->isa( TYPE ) >>, C<isa( VAL, TYPE )>,
17953 C<TYPE>, C<$obj>, C<CLASS>, C<VAL>, C<< $obj->can( METHOD ) >>, C<<
17954 CLASS->can( METHOD ) >>, C<can( VAL, METHOD )>, C<VERSION ( [ REQUIRE ] )>
17955
17956 =item EXPORTS
17957
17958 =back
17959
17960 =head2 Unicode::Collate - Unicode Collation Algorithm
17961
17962 =over 4
17963
17964 =item SYNOPSIS
17965
17966 =item DESCRIPTION
17967
17968 =over 4
17969
17970 =item Constructor and Tailoring
17971
17972 UCA_Version, alternate, backwards, entry, ignoreName, ignoreChar, level,
17973 normalization, overrideCJK, overrideHangul, preprocess, rearrange, table,
17974 undefName, undefChar, katakana_before_hiragana, upper_before_lower
17975
17976 =item Methods for Collation
17977
17978 C<@sorted = $Collator-E<gt>sort(@not_sorted)>, C<$result =
17979 $Collator-E<gt>cmp($a, $b)>, C<$result = $Collator-E<gt>eq($a, $b)>,
17980 C<$result = $Collator-E<gt>ne($a, $b)>, C<$result = $Collator-E<gt>lt($a,
17981 $b)>, C<$result = $Collator-E<gt>le($a, $b)>, C<$result =
17982 $Collator-E<gt>gt($a, $b)>, C<$result = $Collator-E<gt>ge($a, $b)>,
17983 C<$sortKey = $Collator-E<gt>getSortKey($string)>, C<$sortKeyForm =
17984 $Collator-E<gt>viewSortKey($string)>
17985
17986 =item Methods for Searching
17987
17988 C<$position = $Collator-E<gt>index($string, $substring[, $position])>,
17989 C<($position, $length) = $Collator-E<gt>index($string, $substring[,
17990 $position])>, C<$match_ref = $Collator-E<gt>match($string, $substring)>,
17991 C<($match)   = $Collator-E<gt>match($string, $substring)>, C<@match =
17992 $Collator-E<gt>gmatch($string, $substring)>, C<$count =
17993 $Collator-E<gt>subst($string, $substring, $replacement)>, C<$count =
17994 $Collator-E<gt>gsubst($string, $substring, $replacement)>
17995
17996 =item Other Methods
17997
17998 C<%old_tailoring = $Collator-E<gt>change(%new_tailoring)>, UCA_Version,
17999 Base_Unicode_Version
18000
18001 =item EXPORT
18002
18003 =item CAVEAT
18004
18005 =item Conformance Test
18006
18007 =back
18008
18009 =item AUTHOR
18010
18011 =item SEE ALSO
18012
18013 http://www.unicode.org/reports/tr10/,
18014 http://www.unicode.org/reports/tr10/allkeys.txt,
18015 http://www.unicode.org/reports/tr10/CollationTest.html
18016 http://www.unicode.org/reports/tr10/CollationTest.zip,
18017 http://www.unicode.org/reports/tr15/, L<Unicode::Normalize>
18018
18019 =back
18020
18021 =head2 Unicode::Normalize - Unicode Normalization Forms
18022
18023 =over 4
18024
18025 =item SYNOPSIS
18026
18027 =item DESCRIPTION
18028
18029 =over 4
18030
18031 =item Normalization Forms
18032
18033 C<$NFD_string = NFD($string)>, C<$NFC_string = NFC($string)>,
18034 C<$NFKD_string = NFKD($string)>, C<$NFKC_string = NFKC($string)>,
18035 C<$normalized_string = normalize($form_name, $string)>
18036
18037 =item Decomposition and Composition
18038
18039 C<$decomposed_string = decompose($string)>, C<$decomposed_string =
18040 decompose($string, $useCompatMapping)>, C<$reordered_string  =
18041 reorder($string)>, C<$composed_string   = compose($string)>
18042
18043 =item Quick Check
18044
18045 C<$result = checkNFD($string)>, C<$result = checkNFC($string)>, C<$result =
18046 checkNFKD($string)>, C<$result = checkNFKC($string)>, C<$result =
18047 check($form_name, $string)>
18048
18049 =item Character Data
18050
18051 C<$canonical_decomposed = getCanon($codepoint)>,
18052 C<$compatibility_decomposed = getCompat($codepoint)>,
18053 C<$codepoint_composite = getComposite($codepoint_here, $codepoint_next)>,
18054 C<$combining_class = getCombinClass($codepoint)>, C<$is_exclusion =
18055 isExclusion($codepoint)>, C<$is_singleton = isSingleton($codepoint)>,
18056 C<$is_non_starter_decomposition = isNonStDecomp($codepoint)>,
18057 C<$may_be_composed_with_prev_char = isComp2nd($codepoint)>
18058
18059 =item EXPORT
18060
18061 =back
18062
18063 =item AUTHOR
18064
18065 =item SEE ALSO
18066
18067 http://www.unicode.org/unicode/reports/tr15/,
18068 http://www.unicode.org/Public/UNIDATA/DerivedNormalizationProps.txt
18069
18070 =back
18071
18072 =head2 Unicode::UCD - Unicode character database
18073
18074 =over 4
18075
18076 =item SYNOPSIS
18077
18078 =item DESCRIPTION
18079
18080 =back
18081
18082 =over 4
18083
18084 =item charinfo
18085
18086 =back
18087
18088 =over 4
18089
18090 =item charblock
18091
18092 =back
18093
18094 =over 4
18095
18096 =item charscript
18097
18098 =back
18099
18100 =over 4
18101
18102 =item charblocks
18103
18104 =back
18105
18106 =over 4
18107
18108 =item charscripts
18109
18110 =back
18111
18112 =over 4
18113
18114 =item Blocks versus Scripts
18115
18116 =item Matching Scripts and Blocks
18117
18118 =item Code Point Arguments
18119
18120 =item charinrange
18121
18122 =back
18123
18124 =over 4
18125
18126 =item compexcl
18127
18128 =back
18129
18130 =over 4
18131
18132 =item casefold
18133
18134 =back
18135
18136 =over 4
18137
18138 =item casespec
18139
18140 =back
18141
18142 =over 4
18143
18144 =item Unicode::UCD::UnicodeVersion
18145
18146 =back
18147
18148 =over 4
18149
18150 =item Implementation Note
18151
18152 =back
18153
18154 =over 4
18155
18156 =item BUGS
18157
18158 =item AUTHOR
18159
18160 =back
18161
18162 =head2 User::grent - by-name interface to Perl's built-in getgr*()
18163 functions
18164
18165 =over 4
18166
18167 =item SYNOPSIS
18168
18169 =item DESCRIPTION
18170
18171 =item NOTE
18172
18173 =item AUTHOR
18174
18175 =back
18176
18177 =head2 User::pwent - by-name interface to Perl's built-in getpw*()
18178 functions
18179
18180 =over 4
18181
18182 =item SYNOPSIS
18183
18184 =item DESCRIPTION
18185
18186 =over 4
18187
18188 =item System Specifics
18189
18190 =back
18191
18192 =item NOTE
18193
18194 =item AUTHOR
18195
18196 =item HISTORY
18197
18198 March 18th, 2000
18199
18200 =back
18201
18202 =head2 Win32 - Interfaces to some Win32 API Functions
18203
18204 =over 4
18205
18206 =item DESCRIPTION
18207
18208 =over 4
18209
18210 =item Alphabetical Listing of Win32 Functions
18211
18212 Win32::AbortSystemShutdown(MACHINE), Win32::BuildNumber(),
18213 Win32::CopyFile(FROM, TO, OVERWRITE), Win32::DomainName(),
18214 Win32::ExpandEnvironmentStrings(STRING), Win32::FormatMessage(ERRORCODE),
18215 Win32::FsType(), Win32::FreeLibrary(HANDLE), Win32::GetArchName(),
18216 Win32::GetChipName(), Win32::GetCwd(), Win32::GetFolderPath(FOLDER [,
18217 CREATE]), Win32::GetFullPathName(FILENAME), Win32::GetLastError(),
18218 Win32::GetLongPathName(PATHNAME), Win32::GetNextAvailDrive(),
18219 Win32::GetOSVersion(), Win32::GetOSName(),
18220 Win32::GetShortPathName(PATHNAME), Win32::GetProcAddress(INSTANCE,
18221 PROCNAME), Win32::GetTickCount(), Win32::InitiateSystemShutdown,
18222 Win32::IsWinNT(), Win32::IsWin95(), Win32::LoadLibrary(LIBNAME),
18223 Win32::LoginName(), Win32::LookupAccountName(SYSTEM, ACCOUNT, DOMAIN, SID,
18224 SIDTYPE), Win32::LookupAccountSID(SYSTEM, SID, ACCOUNT, DOMAIN, SIDTYPE),
18225 Win32::MsgBox(MESSAGE [, FLAGS [, TITLE]]), Win32::NodeName(),
18226 Win32::RegisterServer(LIBRARYNAME), Win32::SetChildShowWindow(SHOWWINDOW),
18227 Win32::SetCwd(NEWDIRECTORY), Win32::SetLastError(ERROR),
18228 Win32::Sleep(TIME), Win32::Spawn(COMMAND, ARGS, PID),
18229 Win32::UnregisterServer(LIBRARYNAME)
18230
18231 =back
18232
18233 =back
18234
18235 =head1 AUXILIARY DOCUMENTATION
18236
18237 Here should be listed all the extra programs' documentation, but they
18238 don't all have manual pages yet:
18239
18240 =over 4
18241
18242 =item a2p
18243
18244 =item c2ph
18245
18246 =item dprofpp
18247
18248 =item h2ph
18249
18250 =item h2xs
18251
18252 =item perlbug
18253
18254 =item perldoc
18255
18256 =item pl2pm
18257
18258 =item pod2html
18259
18260 =item pod2man
18261
18262 =item s2p
18263
18264 =item splain
18265
18266 =item xsubpp
18267
18268 =back
18269
18270 =head1 AUTHOR
18271
18272 Larry Wall <F<larry@wall.org>>, with the help of oodles
18273 of other folks.
18274