File: perlmodlib.html

package info (click to toggle)
perl-doc-html 5.14.0-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 38,588 kB
  • sloc: xml: 36; makefile: 10
file content (2832 lines) | stat: -rw-r--r-- 145,537 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <title>perlmodlib - perldoc.perl.org</title>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  <meta http-equiv="Content-Language" content="en-gb">
  <link rel="search" type="application/opensearchdescription+xml" title="Search perldoc.perl.org" href="/static/search.xml"/>
  <link href="static/css-20100830.css" rel="stylesheet" rev="stylesheet" type="text/css" media="screen">
  <link href="static/exploreperl.css" rel="stylesheet" rev="stylesheet" type="text/css">
</head>

<body onLoad="perldoc.startup();" onPageShow="if (event.persisted) perldoc.startup();">
    <div id="page">
      
      <div id="header">
	<div id="homepage_link">
	  <a href="index.html"></a>
	</div>
	<div id="strapline">
	  Perl Programming Documentation
	</div>
	<div id="download_link" class="download">
	  <a href="http://www.perl.org/get.html">Download Perl</a>
	</div>
	<div id="explore_link" class="download">
	  <a id="explore_anchor" href="#">Explore</a>
	</div>
      </div>
      
      <div id="body">
        <div id="left_column">
          <div class="side_group">
            
	    <div class="side_panel doc_panel">
              <p>Manual</p>
              <ul>
                <li><a href="index-overview.html">Overview</a>
                <li><a href="index-tutorials.html">Tutorials</a>
                <li><a href="index-faq.html">FAQs</a>
                <li><a href="index-history.html">History / Changes</a>
                <li><a href="index-licence.html">License</a>
              </ul>
            </div>
            <div class="side_panel doc_panel">
              <p>Reference</p>
              <ul>
                <li><a href="index-language.html">Language</a>
                <li><a href="index-functions.html">Functions</a>
                <li><a href="perlop.html">Operators</a>
                <li><a href="perlvar.html">Special Variables</a>
                <li><a href="index-pragmas.html">Pragmas</a>
                <li><a href="index-utilities.html">Utilities</a>
                <li><a href="index-internals.html">Internals</a>
                <li><a href="index-platforms.html">Platform Specific</a>
              </ul>
            </div>
            <div class="side_panel doc_panel">
              <p>Modules</p>
              <ul>
		<li>
		
                
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		
                  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		
                  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		
                  
		
                  
		    
		  
		
                  
		
                  
		
		
                    <a href="index-modules-A.html">A</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-B.html">B</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-C.html">C</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-D.html">D</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-E.html">E</a>
                    
                      
                        <li>
                      
                    
                
                    <a href="index-modules-F.html">F</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-G.html">G</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-H.html">H</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-I.html">I</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-L.html">L</a>
                    
                      
                        <li>
                      
                    
                
                    <a href="index-modules-M.html">M</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-N.html">N</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-O.html">O</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-P.html">P</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-S.html">S</a>
                    
                      
                        <li>
                      
                    
                
                    <a href="index-modules-T.html">T</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-U.html">U</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-X.html">X</a>
                    
                
              </ul>
            </div>
            
	      <div class="side_panel doc_panel">
		<p>Tools</p>
		<ul>
		  <li><a href="preferences.html">Preferences</a>
		</ul>
	      </div>
            
          </div>
        </div>
        <div id="centre_column">
          <div id="content_header">
            <div id="title_bar">
              <div id="page_name">
                <h1>perlmodlib</h1>
              </div>
              <div id="perl_version">
                Perl 5 version 14.0 documentation
              </div>
              <div class="page_links" id="page_links_top">
                <a href="#" onClick="toolbar.goToTop();return false;">Go to top</a>
		
              </div>
	      <div class="page_links" id="page_links_bottom">
		
                  <a href="#" id="page_index_toggle">Show page index</a> &bull;
		
                <a href="#" id="recent_pages_toggle">Show recent pages</a>		
	      </div>
	      <div id="search_form">
		<form action="search.html" method="GET" id="search">
		  <input type="text" name="q" id="search_box" alt="Search">
		</form>
	      </div>
            </div>
            <div id="breadcrumbs">
                
    <a href="index.html">Home</a> &gt;
    
      
        <a href="index-language.html">Language reference</a> &gt;
      
    
    perlmodlib
  

            </div>
          </div>
          <div id="content_body">
	    <!--[if lt IE 7]>
 <div class="noscript">
   <p>
     <strong>It looks like you're using Internet Explorer 6. This is a very old
     browser which does not offer full support for modern websites.</strong>
   </p>
   <p>
     Unfortunately this means that this website will not work on
     your computer.
   </p>
   <p>
     Don't miss out though! To view the site (and get a better experience from
     many other websites), simply upgrade to
     <a href="http://www.microsoft.com/windows/Internet-explorer/default.aspx">Internet
Explorer 8</a>
     or download an alternative browser such as
     <a href="http://www.mozilla.com/en-US/firefox/firefox.html">Firefox</a>,
     <a href="http://www.apple.com/safari/download/">Safari</a>, or
     <a href="http://www.google.co.uk/chrome">Google Chrome</a>.
   </p>
   <p>
     All of these browsers are free. If you're using a PC at work, you may
     need to contact your IT administrator.
   </p>
 </div>
<![endif]-->
	    <noscript>
	      <div class="noscript">
	      <p>
                <strong>Please note: Many features of this site require JavaScript. You appear to have JavaScript disabled,
	        or are running a non-JavaScript capable web browser.</strong>
	      </p>
	      <p>
		To get the best experience, please enable JavaScript or download a modern web browser such as <a href="http://www.microsoft.com/windows/Internet-explorer/default.aspx">Internet Explorer 8</a>, <a href="http://www.mozilla.com/en-US/firefox/firefox.html">Firefox</a>, <a href="http://www.apple.com/safari/download/">Safari</a>, or <a href="http://www.google.co.uk/chrome">Google Chrome</a>.
              </p>
	      </div>
	    </noscript>

	    <div id="recent_pages" class="hud_container">
	      <div id="recent_pages_header" class="hud_header">
		<div id="recent_pages_close" class="hud_close"><a href="#" onClick="recentPages.hide();return false;"></a></div>
		<div id="recent_pages_title" class="hud_title"><span class="hud_span_top">Recently read</span></div>
		<div id="recent_pages_topright" class="hud_topright"></div>
	      </div>
	      <div id="recent_pages_content" class="hud_content">
	      </div>
	      <div id="recent_pages_footer" class="hud_footer">
		<div id="recent_pages_bottomleft" class="hud_bottomleft"></div>
		<div id="recent_pages_bottom" class="hud_bottom"><span class="hud_span_bottom"></span></div>
		<div id="recent_pages_resize" class="hud_resize"></div>
	      </div>
	    </div>
  
	    <div id="from_search"></div>
            <h1>perlmodlib</h1>


  <!--    -->
<ul><li><a href="#NAME">NAME</a><li><a href="#THE-PERL-MODULE-LIBRARY">THE PERL MODULE LIBRARY</a><ul><li><a href="#Pragmatic-Modules">Pragmatic Modules</a><li><a href="#Standard-Modules">Standard Modules</a><li><a href="#Extension-Modules">Extension Modules</a></ul><li><a href="#CPAN">CPAN</a><ul><li><a href="#Africa">Africa</a><li><a href="#Asia">Asia</a><li><a href="#Central-America">Central America</a><li><a href="#Europe">Europe</a><li><a href="#North-America">North America</a><li><a href="#Oceania">Oceania</a><li><a href="#South-America">South America</a><li><a href="#RSYNC-Mirrors">RSYNC Mirrors</a></ul><li><a href="#Modules%3a-Creation%2c-Use%2c-and-Abuse">Modules: Creation, Use, and Abuse</a><ul><li><a href="#Guidelines-for-Module-Creation">Guidelines for Module Creation</a><li><a href="#Guidelines-for-Converting-Perl-4-Library-Scripts-into-Modules">Guidelines for Converting Perl 4 Library Scripts into Modules</a><li><a href="#Guidelines-for-Reusing-Application-Code">Guidelines for Reusing Application Code</a></ul><li><a href="#NOTE">NOTE</a></ul><a name="NAME"></a><h1>NAME</h1>
<p>perlmodlib - constructing new Perl modules and finding existing ones</p>
<a name="THE-PERL-MODULE-LIBRARY"></a><h1>THE PERL MODULE LIBRARY</h1>
<p>Many modules are included in the Perl distribution.  These are described
below, and all end in <i>.pm</i>.  You may discover compiled library
files (usually ending in <i>.so</i>) or small pieces of modules to be
autoloaded (ending in <i>.al</i>); these were automatically generated
by the installation process.  You may also discover files in the
library directory that end in either <i>.pl</i> or <i>.ph</i>.  These are
old libraries supplied so that old programs that use them still
run.  The <i>.pl</i> files will all eventually be converted into standard
modules, and the <i>.ph</i> files made by <b>h2ph</b> will probably end up
as extension modules made by <b>h2xs</b>.  (Some <i>.ph</i> values may
already be available through the POSIX, Errno, or Fcntl modules.)
The <b>pl2pm</b> file in the distribution may help in your conversion,
but it's just a mechanical process and therefore far from bulletproof.</p>
<a name="Pragmatic-Modules"></a><h2>Pragmatic Modules</h2>
<p>They work somewhat like compiler directives (pragmata) in that they
tend to affect the compilation of your program, and thus will usually
work well only when used within a <code class="inline"><a class="l_k" href="functions/use.html">use</a></code>, or <code class="inline"><a class="l_k" href="functions/no.html">no</a></code>.  Most of these
are lexically scoped, so an inner BLOCK may countermand them
by saying:</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/no.html">no</a> <span class="w">integer</span><span class="sc">;</span></li><li>    <a class="l_k" href="functions/no.html">no</a> <span class="w">strict</span> <span class="q">&#39;refs&#39;</span><span class="sc">;</span></li><li>    <a class="l_k" href="functions/no.html">no</a> <span class="w">warnings</span><span class="sc">;</span></li></ol></pre><p>which lasts until the end of that BLOCK.</p>
<p>Some pragmas are lexically scoped--typically those that affect the
<code class="inline"><span class="i">$^H</span></code>
 hints variable.  Others affect the current package instead,
like <code class="inline"><a class="l_k" href="functions/use.html">use</a> <span class="w">vars</span></code>
 and <code class="inline"><a class="l_k" href="functions/use.html">use</a> <span class="w">subs</span></code>
, which allow you to predeclare a
variables or subroutines within a particular <i>file</i> rather than
just a block.  Such declarations are effective for the entire file
for which they were declared.  You cannot rescind them with <code class="inline"><a class="l_k" href="functions/no.html">no</a>
<span class="w">vars</span></code>
 or <code class="inline"><a class="l_k" href="functions/no.html">no</a> <span class="w">subs</span></code>
.</p>
<p>The following pragmas are defined (and have their own documentation).</p>
<ul>
<li><a name="attributes"></a><b>attributes</b>
<p>Get/set subroutine or variable attributes</p>
</li>
<li><a name="autodie"></a><b>autodie</b>
<p>Replace functions with ones that succeed or die with lexical scope</p>
</li>
<li><a name="autodie%3a%3aexception"></a><b>autodie::exception</b>
<p>Exceptions from autodying functions.</p>
</li>
<li><a name="autodie%3a%3aexception%3a%3asystem"></a><b>autodie::exception::system</b>
<p>Exceptions from autodying system().</p>
</li>
<li><a name="autodie%3a%3ahints"></a><b>autodie::hints</b>
<p>Provide hints about user subroutines to autodie</p>
</li>
<li><a name="autouse"></a><b>autouse</b>
<p>Postpone load of modules until a function is used</p>
</li>
<li><a name="base"></a><b>base</b>
<p>Establish an ISA relationship with base classes at compile time</p>
</li>
<li><a name="bigint"></a><b>bigint</b>
<p>Transparent BigInteger support for Perl</p>
</li>
<li><a name="bignum"></a><b>bignum</b>
<p>Transparent BigNumber support for Perl</p>
</li>
<li><a name="bigrat"></a><b>bigrat</b>
<p>Transparent BigNumber/BigRational support for Perl</p>
</li>
<li><a name="blib"></a><b>blib</b>
<p>Use MakeMaker's uninstalled version of a package</p>
</li>
<li><a name="bytes"></a><b>bytes</b>
<p>Force byte semantics rather than character semantics</p>
</li>
<li><a name="charnames"></a><b>charnames</b>
<p>Access to Unicode character names and named character sequences; also define character names</p>
</li>
<li><a name="constant"></a><b>constant</b>
<p>Declare constants</p>
</li>
<li><a name="deprecate"></a><b>deprecate</b>
<p>Perl pragma for deprecating the core version of a module</p>
</li>
<li><a name="diagnostics"></a><b>diagnostics</b>
<p>Produce verbose warning diagnostics</p>
</li>
<li><a name="encoding"></a><b>encoding</b>
<p>Allows you to write your script in non-ascii or non-utf8</p>
</li>
<li><a name="encoding%3a%3awarnings"></a><b>encoding::warnings</b>
<p>Warn on implicit encoding conversions</p>
</li>
<li><a name="feature"></a><b>feature</b>
<p>Enable new features</p>
</li>
<li><a name="fields"></a><b>fields</b>
<p>Compile-time class fields</p>
</li>
<li><a name="filetest"></a><b>filetest</b>
<p>Control the filetest permission operators</p>
</li>
<li><a name="if"></a><b>if</b>
<p><code class="inline"><a class="l_k" href="functions/use.html">use</a></code> a Perl module if a condition holds</p>
</li>
<li><a name="inc%3a%3alatest"></a><b>inc::latest</b>
<p>Use modules bundled in inc/ if they are newer than installed ones</p>
</li>
<li><a name="integer"></a><b>integer</b>
<p>Use integer arithmetic instead of floating point</p>
</li>
<li><a name="less"></a><b>less</b>
<p>Request less of something</p>
</li>
<li><a name="lib"></a><b>lib</b>
<p>Manipulate @INC at compile time</p>
</li>
<li><a name="locale"></a><b>locale</b>
<p>Use and avoid POSIX locales for built-in operations</p>
</li>
<li><a name="mro"></a><b>mro</b>
<p>Method Resolution Order</p>
</li>
<li><a name="open"></a><b>open</b>
<p>Set default PerlIO layers for input and output</p>
</li>
<li><a name="ops"></a><b>ops</b>
<p>Restrict unsafe operations when compiling</p>
</li>
<li><a name="overload"></a><b>overload</b>
<p>Package for overloading Perl operations</p>
</li>
<li><a name="overloading"></a><b>overloading</b>
<p>Lexically control overloading</p>
</li>
<li><a name="parent"></a><b>parent</b>
<p>Establish an ISA relationship with base classes at compile time</p>
</li>
<li><a name="re"></a><b>re</b>
<p>Alter regular expression behaviour</p>
</li>
<li><a name="sigtrap"></a><b>sigtrap</b>
<p>Enable simple signal handling</p>
</li>
<li><a name="sort"></a><b>sort</b>
<p>Control sort() behaviour</p>
</li>
<li><a name="strict"></a><b>strict</b>
<p>Restrict unsafe constructs</p>
</li>
<li><a name="subs"></a><b>subs</b>
<p>Predeclare sub names</p>
</li>
<li><a name="threads"></a><b>threads</b>
<p>Perl interpreter-based threads</p>
</li>
<li><a name="threads%3a%3ashared"></a><b>threads::shared</b>
<p>Perl extension for sharing data structures between threads</p>
</li>
<li><a name="utf8"></a><b>utf8</b>
<p>Enable/disable UTF-8 (or UTF-EBCDIC) in source code</p>
</li>
<li><a name="vars"></a><b>vars</b>
<p>Predeclare global variable names (obsolete)</p>
</li>
<li><a name="version"></a><b>version</b>
<p>Perl extension for Version Objects</p>
</li>
<li><a name="vmsish"></a><b>vmsish</b>
<p>Control VMS-specific language features</p>
</li>
<li><a name="warnings"></a><b>warnings</b>
<p>Control optional warnings</p>
</li>
<li><a name="warnings%3a%3aregister"></a><b>warnings::register</b>
<p>Warnings import function</p>
</li>
</ul>
<a name="Standard-Modules"></a><h2>Standard Modules</h2>
<p>Standard, bundled modules are all expected to behave in a well-defined
manner with respect to namespace pollution because they use the
Exporter module.  See their own documentation for details.</p>
<p>It's possible that not all modules listed below are installed on your
system. For example, the GDBM_File module will not be installed if you
don't have the gdbm library.</p>
<ul>
<li><a name="AnyDBM_File"></a><b>AnyDBM_File</b>
<p>Provide framework for multiple DBMs</p>
</li>
<li><a name="App%3a%3aCpan"></a><b>App::Cpan</b>
<p>Easily interact with CPAN from the command line</p>
</li>
<li><a name="App%3a%3aProve"></a><b>App::Prove</b>
<p>Implements the <code class="inline"><span class="w">prove</span></code>
 command.</p>
</li>
<li><a name="App%3a%3aProve%3a%3aState"></a><b>App::Prove::State</b>
<p>State storage for the <code class="inline"><span class="w">prove</span></code>
 command.</p>
</li>
<li><a name="App%3a%3aProve%3a%3aState%3a%3aResult"></a><b>App::Prove::State::Result</b>
<p>Individual test suite results.</p>
</li>
<li><a name="App%3a%3aProve%3a%3aState%3a%3aResult%3a%3aTest"></a><b>App::Prove::State::Result::Test</b>
<p>Individual test results.</p>
</li>
<li><a name="Archive%3a%3aExtract"></a><b>Archive::Extract</b>
<p>A generic archive extracting mechanism</p>
</li>
<li><a name="Archive%3a%3aTar"></a><b>Archive::Tar</b>
<p>Module for manipulations of tar archives</p>
</li>
<li><a name="Archive%3a%3aTar%3a%3aFile"></a><b>Archive::Tar::File</b>
<p>A subclass for in-memory extracted file from Archive::Tar</p>
</li>
<li><a name="Attribute%3a%3aHandlers"></a><b>Attribute::Handlers</b>
<p>Simpler definition of attribute handlers</p>
</li>
<li><a name="AutoLoader"></a><b>AutoLoader</b>
<p>Load subroutines only on demand</p>
</li>
<li><a name="AutoSplit"></a><b>AutoSplit</b>
<p>Split a package for autoloading</p>
</li>
<li><a name="B"></a><b>B</b>
<p>The Perl Compiler Backend</p>
</li>
<li><a name="B%3a%3aConcise"></a><b>B::Concise</b>
<p>Walk Perl syntax tree, printing concise info about ops</p>
</li>
<li><a name="B%3a%3aDebug"></a><b>B::Debug</b>
<p>Walk Perl syntax tree, printing debug info about ops</p>
</li>
<li><a name="B%3a%3aDeparse"></a><b>B::Deparse</b>
<p>Perl compiler backend to produce perl code</p>
</li>
<li><a name="B%3a%3aLint"></a><b>B::Lint</b>
<p>Perl lint</p>
</li>
<li><a name="B%3a%3aLint%3a%3aDebug"></a><b>B::Lint::Debug</b>
<p>Adds debugging stringification to B::</p>
</li>
<li><a name="B%3a%3aShowlex"></a><b>B::Showlex</b>
<p>Show lexical variables used in functions or files</p>
</li>
<li><a name="B%3a%3aTerse"></a><b>B::Terse</b>
<p>Walk Perl syntax tree, printing terse info about ops</p>
</li>
<li><a name="B%3a%3aXref"></a><b>B::Xref</b>
<p>Generates cross reference reports for Perl programs</p>
</li>
<li><a name="Benchmark"></a><b>Benchmark</b>
<p>Benchmark running times of Perl code</p>
</li>
<li><a name="CGI"></a><b>CGI</b>
<p>Handle Common Gateway Interface requests and responses</p>
</li>
<li><a name="CGI%3a%3aApache"></a><b>CGI::Apache</b>
<p>Backward compatibility module for CGI.pm</p>
</li>
<li><a name="CGI%3a%3aCarp"></a><b>CGI::Carp</b>
<p>CGI routines for writing to the HTTPD (or other) error log</p>
</li>
<li><a name="CGI%3a%3aCookie"></a><b>CGI::Cookie</b>
<p>Interface to HTTP Cookies</p>
</li>
<li><a name="CGI%3a%3aFast"></a><b>CGI::Fast</b>
<p>CGI Interface for Fast CGI</p>
</li>
<li><a name="CGI%3a%3aPretty"></a><b>CGI::Pretty</b>
<p>Module to produce nicely formatted HTML code</p>
</li>
<li><a name="CGI%3a%3aPush"></a><b>CGI::Push</b>
<p>Simple Interface to Server Push</p>
</li>
<li><a name="CGI%3a%3aSwitch"></a><b>CGI::Switch</b>
<p>Backward compatibility module for defunct CGI::Switch</p>
</li>
<li><a name="CGI%3a%3aUtil"></a><b>CGI::Util</b>
<p>Internal utilities used by CGI module</p>
</li>
<li><a name="CORE"></a><b>CORE</b>
<p>Pseudo-namespace for Perl's core routines</p>
</li>
<li><a name="CPAN"></a><b>CPAN</b>
<p>Query, download and build perl modules from CPAN sites</p>
</li>
<li><a name="CPAN%3a%3aAPI%3a%3aHOWTO"></a><b>CPAN::API::HOWTO</b>
<p>A recipe book for programming with CPAN.pm</p>
</li>
<li><a name="CPAN%3a%3aDistroprefs"></a><b>CPAN::Distroprefs</b>
<p>Read and match distroprefs</p>
</li>
<li><a name="CPAN%3a%3aFirstTime"></a><b>CPAN::FirstTime</b>
<p>Utility for CPAN::Config file Initialization</p>
</li>
<li><a name="CPAN%3a%3aKwalify"></a><b>CPAN::Kwalify</b>
<p>Interface between CPAN.pm and Kwalify.pm</p>
</li>
<li><a name="CPAN%3a%3aMeta"></a><b>CPAN::Meta</b>
<p>The distribution metadata for a CPAN dist</p>
</li>
<li><a name="CPAN%3a%3aMeta%3a%3aConverter"></a><b>CPAN::Meta::Converter</b>
<p>Convert CPAN distribution metadata structures</p>
</li>
<li><a name="CPAN%3a%3aMeta%3a%3aFeature"></a><b>CPAN::Meta::Feature</b>
<p>An optional feature provided by a CPAN distribution</p>
</li>
<li><a name="CPAN%3a%3aMeta%3a%3aHistory"></a><b>CPAN::Meta::History</b>
<p>History of CPAN Meta Spec changes</p>
</li>
<li><a name="CPAN%3a%3aMeta%3a%3aPrereqs"></a><b>CPAN::Meta::Prereqs</b>
<p>A set of distribution prerequisites by phase and type</p>
</li>
<li><a name="CPAN%3a%3aMeta%3a%3aSpec"></a><b>CPAN::Meta::Spec</b>
<p>Specification for CPAN distribution metadata</p>
</li>
<li><a name="CPAN%3a%3aMeta%3a%3aValidator"></a><b>CPAN::Meta::Validator</b>
<p>Validate CPAN distribution metadata structures</p>
</li>
<li><a name="CPAN%3a%3aMeta%3a%3aYAML"></a><b>CPAN::Meta::YAML</b>
<p>Read and write a subset of YAML for CPAN Meta files</p>
</li>
<li><a name="CPAN%3a%3aNox"></a><b>CPAN::Nox</b>
<p>Wrapper around CPAN.pm without using any XS module</p>
</li>
<li><a name="CPAN%3a%3aVersion"></a><b>CPAN::Version</b>
<p>Utility functions to compare CPAN versions</p>
</li>
<li><a name="CPANPLUS"></a><b>CPANPLUS</b>
<p>API &amp; CLI access to the CPAN mirrors</p>
</li>
<li><a name="CPANPLUS%3a%3aDist%3a%3aBase"></a><b>CPANPLUS::Dist::Base</b>
<p>Base class for custom distribution classes</p>
</li>
<li><a name="CPANPLUS%3a%3aDist%3a%3aBuild"></a><b>CPANPLUS::Dist::Build</b>
<p>CPANPLUS plugin to install packages that use Build.PL</p>
</li>
<li><a name="CPANPLUS%3a%3aDist%3a%3aBuild%3a%3aConstants"></a><b>CPANPLUS::Dist::Build::Constants</b>
<p>Constants for CPANPLUS::Dist::Build</p>
</li>
<li><a name="CPANPLUS%3a%3aDist%3a%3aSample"></a><b>CPANPLUS::Dist::Sample</b>
<p>Sample code to create your own Dist::* plugin</p>
</li>
<li><a name="CPANPLUS%3a%3aInternals%3a%3aSource%3a%3aMemory"></a><b>CPANPLUS::Internals::Source::Memory</b>
<p>In memory implementation</p>
</li>
<li><a name="CPANPLUS%3a%3aInternals%3a%3aSource%3a%3aSQLite"></a><b>CPANPLUS::Internals::Source::SQLite</b>
<p>SQLite implementation</p>
</li>
<li><a name="CPANPLUS%3a%3aShell%3a%3aClassic"></a><b>CPANPLUS::Shell::Classic</b>
<p>CPAN.pm emulation for CPANPLUS</p>
</li>
<li><a name="CPANPLUS%3a%3aShell%3a%3aDefault%3a%3aPlugins%3a%3aHOWTO"></a><b>CPANPLUS::Shell::Default::Plugins::HOWTO</b>
<p>Documentation on how to write your own plugins</p>
</li>
<li><a name="Carp"></a><b>Carp</b>
<p>Alternative warn and die for modules</p>
</li>
<li><a name="Class%3a%3aStruct"></a><b>Class::Struct</b>
<p>Declare struct-like datatypes as Perl classes</p>
</li>
<li><a name="Compress%3a%3aRaw%3a%3aBzip2"></a><b>Compress::Raw::Bzip2</b>
<p>Low-Level Interface to bzip2 compression library</p>
</li>
<li><a name="Compress%3a%3aRaw%3a%3aBzip2%3a%3aFAQ"></a><b>Compress::Raw::Bzip2::FAQ</b>
<p>Frequently Asked Questions about Compress::Raw::Bzip2</p>
</li>
<li><a name="Compress%3a%3aRaw%3a%3aZlib"></a><b>Compress::Raw::Zlib</b>
<p>Low-Level Interface to zlib compression library</p>
</li>
<li><a name="Compress%3a%3aRaw%3a%3aZlib%3a%3aFAQ"></a><b>Compress::Raw::Zlib::FAQ</b>
<p>Frequently Asked Questions about Compress::Raw::Zlib</p>
</li>
<li><a name="Compress%3a%3aZlib"></a><b>Compress::Zlib</b>
<p>Interface to zlib compression library</p>
</li>
<li><a name="Config"></a><b>Config</b>
<p>Access Perl configuration information</p>
</li>
<li><a name="Cwd"></a><b>Cwd</b>
<p>Get pathname of current working directory</p>
</li>
<li><a name="DB"></a><b>DB</b>
<p>Programmatic interface to the Perl debugging API</p>
</li>
<li><a name="DBM_Filter"></a><b>DBM_Filter</b>
<p>Filter DBM keys/values</p>
</li>
<li><a name="DBM_Filter%3a%3acompress"></a><b>DBM_Filter::compress</b>
<p>Filter for DBM_Filter</p>
</li>
<li><a name="DBM_Filter%3a%3aencode"></a><b>DBM_Filter::encode</b>
<p>Filter for DBM_Filter</p>
</li>
<li><a name="DBM_Filter%3a%3aint32"></a><b>DBM_Filter::int32</b>
<p>Filter for DBM_Filter</p>
</li>
<li><a name="DBM_Filter%3a%3anull"></a><b>DBM_Filter::null</b>
<p>Filter for DBM_Filter</p>
</li>
<li><a name="DBM_Filter%3a%3autf8"></a><b>DBM_Filter::utf8</b>
<p>Filter for DBM_Filter</p>
</li>
<li><a name="DB_File"></a><b>DB_File</b>
<p>Perl5 access to Berkeley DB version 1.x</p>
</li>
<li><a name="Data%3a%3aDumper"></a><b>Data::Dumper</b>
<p>Stringified perl data structures, suitable for both printing and <code class="inline"><a class="l_k" href="functions/eval.html">eval</a></code></p>
</li>
<li><a name="Devel%3a%3aDProf"></a><b>Devel::DProf</b>
<p>A <b>DEPRECATED</b> Perl code profiler</p>
</li>
<li><a name="Devel%3a%3aInnerPackage"></a><b>Devel::InnerPackage</b>
<p>Find all the inner packages of a package</p>
</li>
<li><a name="Devel%3a%3aPPPort"></a><b>Devel::PPPort</b>
<p>Perl/Pollution/Portability</p>
</li>
<li><a name="Devel%3a%3aPeek"></a><b>Devel::Peek</b>
<p>A data debugging tool for the XS programmer</p>
</li>
<li><a name="Devel%3a%3aSelfStubber"></a><b>Devel::SelfStubber</b>
<p>Generate stubs for a SelfLoading module</p>
</li>
<li><a name="Digest"></a><b>Digest</b>
<p>Modules that calculate message digests</p>
</li>
<li><a name="Digest%3a%3aMD5"></a><b>Digest::MD5</b>
<p>Perl interface to the MD5 Algorithm</p>
</li>
<li><a name="Digest%3a%3aSHA"></a><b>Digest::SHA</b>
<p>Perl extension for SHA-1/224/256/384/512</p>
</li>
<li><a name="Digest%3a%3abase"></a><b>Digest::base</b>
<p>Digest base class</p>
</li>
<li><a name="Digest%3a%3afile"></a><b>Digest::file</b>
<p>Calculate digests of files</p>
</li>
<li><a name="DirHandle"></a><b>DirHandle</b>
<p>Supply object methods for directory handles</p>
</li>
<li><a name="Dumpvalue"></a><b>Dumpvalue</b>
<p>Provides screen dump of Perl data.</p>
</li>
<li><a name="DynaLoader"></a><b>DynaLoader</b>
<p>Dynamically load C libraries into Perl code</p>
</li>
<li><a name="Encode"></a><b>Encode</b>
<p>Character encodings</p>
</li>
<li><a name="Encode%3a%3aAlias"></a><b>Encode::Alias</b>
<p>Alias definitions to encodings</p>
</li>
<li><a name="Encode%3a%3aByte"></a><b>Encode::Byte</b>
<p>Single Byte Encodings</p>
</li>
<li><a name="Encode%3a%3aCJKConstants"></a><b>Encode::CJKConstants</b>
<p>Internally used by Encode::??::ISO_2022_*</p>
</li>
<li><a name="Encode%3a%3aCN"></a><b>Encode::CN</b>
<p>China-based Chinese Encodings</p>
</li>
<li><a name="Encode%3a%3aCN%3a%3aHZ"></a><b>Encode::CN::HZ</b>
<p>Internally used by Encode::CN</p>
</li>
<li><a name="Encode%3a%3aConfig"></a><b>Encode::Config</b>
<p>Internally used by Encode</p>
</li>
<li><a name="Encode%3a%3aEBCDIC"></a><b>Encode::EBCDIC</b>
<p>EBCDIC Encodings</p>
</li>
<li><a name="Encode%3a%3aEncoder"></a><b>Encode::Encoder</b>
<p>Object Oriented Encoder</p>
</li>
<li><a name="Encode%3a%3aEncoding"></a><b>Encode::Encoding</b>
<p>Encode Implementation Base Class</p>
</li>
<li><a name="Encode%3a%3aGSM0338"></a><b>Encode::GSM0338</b>
<p>ESTI GSM 03.38 Encoding</p>
</li>
<li><a name="Encode%3a%3aGuess"></a><b>Encode::Guess</b>
<p>Guesses encoding from data</p>
</li>
<li><a name="Encode%3a%3aJP"></a><b>Encode::JP</b>
<p>Japanese Encodings</p>
</li>
<li><a name="Encode%3a%3aJP%3a%3aH2Z"></a><b>Encode::JP::H2Z</b>
<p>Internally used by Encode::JP::2022_JP*</p>
</li>
<li><a name="Encode%3a%3aJP%3a%3aJIS7"></a><b>Encode::JP::JIS7</b>
<p>Internally used by Encode::JP</p>
</li>
<li><a name="Encode%3a%3aKR"></a><b>Encode::KR</b>
<p>Korean Encodings</p>
</li>
<li><a name="Encode%3a%3aKR%3a%3a2022_KR"></a><b>Encode::KR::2022_KR</b>
<p>Internally used by Encode::KR</p>
</li>
<li><a name="Encode%3a%3aMIME%3a%3aHeader"></a><b>Encode::MIME::Header</b>
<p>MIME 'B' and 'Q' header encoding</p>
</li>
<li><a name="Encode%3a%3aMIME%3a%3aName"></a><b>Encode::MIME::Name</b>
<p>Internally used by Encode</p>
</li>
<li><a name="Encode%3a%3aPerlIO"></a><b>Encode::PerlIO</b>
<p>A detailed document on Encode and PerlIO</p>
</li>
<li><a name="Encode%3a%3aSupported"></a><b>Encode::Supported</b>
<p>Encodings supported by Encode</p>
</li>
<li><a name="Encode%3a%3aSymbol"></a><b>Encode::Symbol</b>
<p>Symbol Encodings</p>
</li>
<li><a name="Encode%3a%3aTW"></a><b>Encode::TW</b>
<p>Taiwan-based Chinese Encodings</p>
</li>
<li><a name="Encode%3a%3aUnicode"></a><b>Encode::Unicode</b>
<p>Various Unicode Transformation Formats</p>
</li>
<li><a name="Encode%3a%3aUnicode%3a%3aUTF7"></a><b>Encode::Unicode::UTF7</b>
<p>UTF-7 encoding</p>
</li>
<li><a name="English"></a><b>English</b>
<p>Use nice English (or awk) names for ugly punctuation variables</p>
</li>
<li><a name="Env"></a><b>Env</b>
<p>Perl module that imports environment variables as scalars or arrays</p>
</li>
<li><a name="Errno"></a><b>Errno</b>
<p>System errno constants</p>
</li>
<li><a name="Exporter"></a><b>Exporter</b>
<p>Implements default import method for modules</p>
</li>
<li><a name="Exporter%3a%3aHeavy"></a><b>Exporter::Heavy</b>
<p>Exporter guts</p>
</li>
<li><a name="ExtUtils%3a%3aCBuilder"></a><b>ExtUtils::CBuilder</b>
<p>Compile and link C code for Perl modules</p>
</li>
<li><a name="ExtUtils%3a%3aCBuilder%3a%3aPlatform%3a%3aWindows"></a><b>ExtUtils::CBuilder::Platform::Windows</b>
<p>Builder class for Windows platforms</p>
</li>
<li><a name="ExtUtils%3a%3aCommand"></a><b>ExtUtils::Command</b>
<p>Utilities to replace common UNIX commands in Makefiles etc.</p>
</li>
<li><a name="ExtUtils%3a%3aCommand%3a%3aMM"></a><b>ExtUtils::Command::MM</b>
<p>Commands for the MM's to use in Makefiles</p>
</li>
<li><a name="ExtUtils%3a%3aConstant"></a><b>ExtUtils::Constant</b>
<p>Generate XS code to import C header constants</p>
</li>
<li><a name="ExtUtils%3a%3aConstant%3a%3aBase"></a><b>ExtUtils::Constant::Base</b>
<p>Base class for ExtUtils::Constant objects</p>
</li>
<li><a name="ExtUtils%3a%3aConstant%3a%3aUtils"></a><b>ExtUtils::Constant::Utils</b>
<p>Helper functions for ExtUtils::Constant</p>
</li>
<li><a name="ExtUtils%3a%3aConstant%3a%3aXS"></a><b>ExtUtils::Constant::XS</b>
<p>Generate C code for XS modules' constants.</p>
</li>
<li><a name="ExtUtils%3a%3aEmbed"></a><b>ExtUtils::Embed</b>
<p>Utilities for embedding Perl in C/C++ applications</p>
</li>
<li><a name="ExtUtils%3a%3aInstall"></a><b>ExtUtils::Install</b>
<p>Install files from here to there</p>
</li>
<li><a name="ExtUtils%3a%3aInstalled"></a><b>ExtUtils::Installed</b>
<p>Inventory management of installed modules</p>
</li>
<li><a name="ExtUtils%3a%3aLiblist"></a><b>ExtUtils::Liblist</b>
<p>Determine libraries to use and how to use them</p>
</li>
<li><a name="ExtUtils%3a%3aMM"></a><b>ExtUtils::MM</b>
<p>OS adjusted ExtUtils::MakeMaker subclass</p>
</li>
<li><a name="ExtUtils%3a%3aMM_AIX"></a><b>ExtUtils::MM_AIX</b>
<p>AIX specific subclass of ExtUtils::MM_Unix</p>
</li>
<li><a name="ExtUtils%3a%3aMM_Any"></a><b>ExtUtils::MM_Any</b>
<p>Platform-agnostic MM methods</p>
</li>
<li><a name="ExtUtils%3a%3aMM_BeOS"></a><b>ExtUtils::MM_BeOS</b>
<p>Methods to override UN*X behaviour in ExtUtils::MakeMaker</p>
</li>
<li><a name="ExtUtils%3a%3aMM_Cygwin"></a><b>ExtUtils::MM_Cygwin</b>
<p>Methods to override UN*X behaviour in ExtUtils::MakeMaker</p>
</li>
<li><a name="ExtUtils%3a%3aMM_DOS"></a><b>ExtUtils::MM_DOS</b>
<p>DOS specific subclass of ExtUtils::MM_Unix</p>
</li>
<li><a name="ExtUtils%3a%3aMM_Darwin"></a><b>ExtUtils::MM_Darwin</b>
<p>Special behaviors for OS X</p>
</li>
<li><a name="ExtUtils%3a%3aMM_MacOS"></a><b>ExtUtils::MM_MacOS</b>
<p>Once produced Makefiles for MacOS Classic</p>
</li>
<li><a name="ExtUtils%3a%3aMM_NW5"></a><b>ExtUtils::MM_NW5</b>
<p>Methods to override UN*X behaviour in ExtUtils::MakeMaker</p>
</li>
<li><a name="ExtUtils%3a%3aMM_OS2"></a><b>ExtUtils::MM_OS2</b>
<p>Methods to override UN*X behaviour in ExtUtils::MakeMaker</p>
</li>
<li><a name="ExtUtils%3a%3aMM_QNX"></a><b>ExtUtils::MM_QNX</b>
<p>QNX specific subclass of ExtUtils::MM_Unix</p>
</li>
<li><a name="ExtUtils%3a%3aMM_UWIN"></a><b>ExtUtils::MM_UWIN</b>
<p>U/WIN specific subclass of ExtUtils::MM_Unix</p>
</li>
<li><a name="ExtUtils%3a%3aMM_Unix"></a><b>ExtUtils::MM_Unix</b>
<p>Methods used by ExtUtils::MakeMaker</p>
</li>
<li><a name="ExtUtils%3a%3aMM_VMS"></a><b>ExtUtils::MM_VMS</b>
<p>Methods to override UN*X behaviour in ExtUtils::MakeMaker</p>
</li>
<li><a name="ExtUtils%3a%3aMM_VOS"></a><b>ExtUtils::MM_VOS</b>
<p>VOS specific subclass of ExtUtils::MM_Unix</p>
</li>
<li><a name="ExtUtils%3a%3aMM_Win32"></a><b>ExtUtils::MM_Win32</b>
<p>Methods to override UN*X behaviour in ExtUtils::MakeMaker</p>
</li>
<li><a name="ExtUtils%3a%3aMM_Win95"></a><b>ExtUtils::MM_Win95</b>
<p>Method to customize MakeMaker for Win9X</p>
</li>
<li><a name="ExtUtils%3a%3aMY"></a><b>ExtUtils::MY</b>
<p>ExtUtils::MakeMaker subclass for customization</p>
</li>
<li><a name="ExtUtils%3a%3aMakeMaker"></a><b>ExtUtils::MakeMaker</b>
<p>Create a module Makefile</p>
</li>
<li><a name="ExtUtils%3a%3aMakeMaker%3a%3aConfig"></a><b>ExtUtils::MakeMaker::Config</b>
<p>Wrapper around Config.pm</p>
</li>
<li><a name="ExtUtils%3a%3aMakeMaker%3a%3aFAQ"></a><b>ExtUtils::MakeMaker::FAQ</b>
<p>Frequently Asked Questions About MakeMaker</p>
</li>
<li><a name="ExtUtils%3a%3aMakeMaker%3a%3aTutorial"></a><b>ExtUtils::MakeMaker::Tutorial</b>
<p>Writing a module with MakeMaker</p>
</li>
<li><a name="ExtUtils%3a%3aManifest"></a><b>ExtUtils::Manifest</b>
<p>Utilities to write and check a MANIFEST file</p>
</li>
<li><a name="ExtUtils%3a%3aMkbootstrap"></a><b>ExtUtils::Mkbootstrap</b>
<p>Make a bootstrap file for use by DynaLoader</p>
</li>
<li><a name="ExtUtils%3a%3aMksymlists"></a><b>ExtUtils::Mksymlists</b>
<p>Write linker options files for dynamic extension</p>
</li>
<li><a name="ExtUtils%3a%3aPacklist"></a><b>ExtUtils::Packlist</b>
<p>Manage .packlist files</p>
</li>
<li><a name="ExtUtils%3a%3aParseXS"></a><b>ExtUtils::ParseXS</b>
<p>Converts Perl XS code into C code</p>
</li>
<li><a name="ExtUtils%3a%3aXSSymSet"></a><b>ExtUtils::XSSymSet</b>
<p>Keep sets of symbol names palatable to the VMS linker</p>
</li>
<li><a name="ExtUtils%3a%3atestlib"></a><b>ExtUtils::testlib</b>
<p>Add blib/* directories to @INC</p>
</li>
<li><a name="Fatal"></a><b>Fatal</b>
<p>Replace functions with equivalents which succeed or die</p>
</li>
<li><a name="Fcntl"></a><b>Fcntl</b>
<p>Load the C Fcntl.h defines</p>
</li>
<li><a name="File%3a%3aBasename"></a><b>File::Basename</b>
<p>Parse file paths into directory, filename and suffix.</p>
</li>
<li><a name="File%3a%3aCheckTree"></a><b>File::CheckTree</b>
<p>Run many filetest checks on a tree</p>
</li>
<li><a name="File%3a%3aCompare"></a><b>File::Compare</b>
<p>Compare files or filehandles</p>
</li>
<li><a name="File%3a%3aCopy"></a><b>File::Copy</b>
<p>Copy files or filehandles</p>
</li>
<li><a name="File%3a%3aDosGlob"></a><b>File::DosGlob</b>
<p>DOS like globbing and then some</p>
</li>
<li><a name="File%3a%3aFetch"></a><b>File::Fetch</b>
<p>A generic file fetching mechanism</p>
</li>
<li><a name="File%3a%3aFind"></a><b>File::Find</b>
<p>Traverse a directory tree.</p>
</li>
<li><a name="File%3a%3aGlob"></a><b>File::Glob</b>
<p>Perl extension for BSD glob routine</p>
</li>
<li><a name="File%3a%3aGlobMapper"></a><b>File::GlobMapper</b>
<p>Extend File Glob to Allow Input and Output Files</p>
</li>
<li><a name="File%3a%3aPath"></a><b>File::Path</b>
<p>Create or remove directory trees</p>
</li>
<li><a name="File%3a%3aSpec"></a><b>File::Spec</b>
<p>Portably perform operations on file names</p>
</li>
<li><a name="File%3a%3aSpec%3a%3aCygwin"></a><b>File::Spec::Cygwin</b>
<p>Methods for Cygwin file specs</p>
</li>
<li><a name="File%3a%3aSpec%3a%3aEpoc"></a><b>File::Spec::Epoc</b>
<p>Methods for Epoc file specs</p>
</li>
<li><a name="File%3a%3aSpec%3a%3aFunctions"></a><b>File::Spec::Functions</b>
<p>Portably perform operations on file names</p>
</li>
<li><a name="File%3a%3aSpec%3a%3aMac"></a><b>File::Spec::Mac</b>
<p>File::Spec for Mac OS (Classic)</p>
</li>
<li><a name="File%3a%3aSpec%3a%3aOS2"></a><b>File::Spec::OS2</b>
<p>Methods for OS/2 file specs</p>
</li>
<li><a name="File%3a%3aSpec%3a%3aUnix"></a><b>File::Spec::Unix</b>
<p>File::Spec for Unix, base for other File::Spec modules</p>
</li>
<li><a name="File%3a%3aSpec%3a%3aVMS"></a><b>File::Spec::VMS</b>
<p>Methods for VMS file specs</p>
</li>
<li><a name="File%3a%3aSpec%3a%3aWin32"></a><b>File::Spec::Win32</b>
<p>Methods for Win32 file specs</p>
</li>
<li><a name="File%3a%3aTemp"></a><b>File::Temp</b>
<p>Return name and handle of a temporary file safely</p>
</li>
<li><a name="File%3a%3astat"></a><b>File::stat</b>
<p>By-name interface to Perl's built-in stat() functions</p>
</li>
<li><a name="FileCache"></a><b>FileCache</b>
<p>Keep more files open than the system permits</p>
</li>
<li><a name="FileHandle"></a><b>FileHandle</b>
<p>Supply object methods for filehandles</p>
</li>
<li><a name="Filter%3a%3aSimple"></a><b>Filter::Simple</b>
<p>Simplified source filtering</p>
</li>
<li><a name="Filter%3a%3aUtil%3a%3aCall"></a><b>Filter::Util::Call</b>
<p>Perl Source Filter Utility Module</p>
</li>
<li><a name="FindBin"></a><b>FindBin</b>
<p>Locate directory of original perl script</p>
</li>
<li><a name="GDBM_File"></a><b>GDBM_File</b>
<p>Perl5 access to the gdbm library.</p>
</li>
<li><a name="Getopt%3a%3aLong"></a><b>Getopt::Long</b>
<p>Extended processing of command line options</p>
</li>
<li><a name="Getopt%3a%3aStd"></a><b>Getopt::Std</b>
<p>Process single-character switches with switch clustering</p>
</li>
<li><a name="HTTP%3a%3aTiny"></a><b>HTTP::Tiny</b>
<p>A small, simple, correct HTTP/1.1 client</p>
</li>
<li><a name="Hash%3a%3aUtil"></a><b>Hash::Util</b>
<p>A selection of general-utility hash subroutines</p>
</li>
<li><a name="Hash%3a%3aUtil%3a%3aFieldHash"></a><b>Hash::Util::FieldHash</b>
<p>Support for Inside-Out Classes</p>
</li>
<li><a name="I18N%3a%3aCollate"></a><b>I18N::Collate</b>
<p>Compare 8-bit scalar data according to the current locale</p>
</li>
<li><a name="I18N%3a%3aLangTags"></a><b>I18N::LangTags</b>
<p>Functions for dealing with RFC3066-style language tags</p>
</li>
<li><a name="I18N%3a%3aLangTags%3a%3aDetect"></a><b>I18N::LangTags::Detect</b>
<p>Detect the user's language preferences</p>
</li>
<li><a name="I18N%3a%3aLangTags%3a%3aList"></a><b>I18N::LangTags::List</b>
<p>Tags and names for human languages</p>
</li>
<li><a name="I18N%3a%3aLanginfo"></a><b>I18N::Langinfo</b>
<p>Query locale information</p>
</li>
<li><a name="IO"></a><b>IO</b>
<p>Load various IO modules</p>
</li>
<li><a name="IO%3a%3aCompress%3a%3aBase"></a><b>IO::Compress::Base</b>
<p>Base Class for IO::Compress modules</p>
</li>
<li><a name="IO%3a%3aCompress%3a%3aBzip2"></a><b>IO::Compress::Bzip2</b>
<p>Write bzip2 files/buffers</p>
</li>
<li><a name="IO%3a%3aCompress%3a%3aDeflate"></a><b>IO::Compress::Deflate</b>
<p>Write RFC 1950 files/buffers</p>
</li>
<li><a name="IO%3a%3aCompress%3a%3aFAQ"></a><b>IO::Compress::FAQ</b>
<p>Frequently Asked Questions about IO::Compress</p>
</li>
<li><a name="IO%3a%3aCompress%3a%3aGzip"></a><b>IO::Compress::Gzip</b>
<p>Write RFC 1952 files/buffers</p>
</li>
<li><a name="IO%3a%3aCompress%3a%3aRawDeflate"></a><b>IO::Compress::RawDeflate</b>
<p>Write RFC 1951 files/buffers</p>
</li>
<li><a name="IO%3a%3aCompress%3a%3aZip"></a><b>IO::Compress::Zip</b>
<p>Write zip files/buffers</p>
</li>
<li><a name="IO%3a%3aDir"></a><b>IO::Dir</b>
<p>Supply object methods for directory handles</p>
</li>
<li><a name="IO%3a%3aFile"></a><b>IO::File</b>
<p>Supply object methods for filehandles</p>
</li>
<li><a name="IO%3a%3aHandle"></a><b>IO::Handle</b>
<p>Supply object methods for I/O handles</p>
</li>
<li><a name="IO%3a%3aPipe"></a><b>IO::Pipe</b>
<p>Supply object methods for pipes</p>
</li>
<li><a name="IO%3a%3aPoll"></a><b>IO::Poll</b>
<p>Object interface to system poll call</p>
</li>
<li><a name="IO%3a%3aSeekable"></a><b>IO::Seekable</b>
<p>Supply seek based methods for I/O objects</p>
</li>
<li><a name="IO%3a%3aSelect"></a><b>IO::Select</b>
<p>OO interface to the select system call</p>
</li>
<li><a name="IO%3a%3aSocket"></a><b>IO::Socket</b>
<p>Object interface to socket communications</p>
</li>
<li><a name="IO%3a%3aSocket%3a%3aINET"></a><b>IO::Socket::INET</b>
<p>Object interface for AF_INET domain sockets</p>
</li>
<li><a name="IO%3a%3aSocket%3a%3aUNIX"></a><b>IO::Socket::UNIX</b>
<p>Object interface for AF_UNIX domain sockets</p>
</li>
<li><a name="IO%3a%3aUncompress%3a%3aAnyInflate"></a><b>IO::Uncompress::AnyInflate</b>
<p>Uncompress zlib-based (zip, gzip) file/buffer</p>
</li>
<li><a name="IO%3a%3aUncompress%3a%3aAnyUncompress"></a><b>IO::Uncompress::AnyUncompress</b>
<p>Uncompress gzip, zip, bzip2 or lzop file/buffer</p>
</li>
<li><a name="IO%3a%3aUncompress%3a%3aBase"></a><b>IO::Uncompress::Base</b>
<p>Base Class for IO::Uncompress modules</p>
</li>
<li><a name="IO%3a%3aUncompress%3a%3aBunzip2"></a><b>IO::Uncompress::Bunzip2</b>
<p>Read bzip2 files/buffers</p>
</li>
<li><a name="IO%3a%3aUncompress%3a%3aGunzip"></a><b>IO::Uncompress::Gunzip</b>
<p>Read RFC 1952 files/buffers</p>
</li>
<li><a name="IO%3a%3aUncompress%3a%3aInflate"></a><b>IO::Uncompress::Inflate</b>
<p>Read RFC 1950 files/buffers</p>
</li>
<li><a name="IO%3a%3aUncompress%3a%3aRawInflate"></a><b>IO::Uncompress::RawInflate</b>
<p>Read RFC 1951 files/buffers</p>
</li>
<li><a name="IO%3a%3aUncompress%3a%3aUnzip"></a><b>IO::Uncompress::Unzip</b>
<p>Read zip files/buffers</p>
</li>
<li><a name="IO%3a%3aZlib"></a><b>IO::Zlib</b>
<p>IO:: style interface to <a href="Compress/Zlib.html">Compress::Zlib</a></p>
</li>
<li><a name="IPC%3a%3aCmd"></a><b>IPC::Cmd</b>
<p>Finding and running system commands made easy</p>
</li>
<li><a name="IPC%3a%3aMsg"></a><b>IPC::Msg</b>
<p>SysV Msg IPC object class</p>
</li>
<li><a name="IPC%3a%3aOpen2"></a><b>IPC::Open2</b>
<p>Open a process for both reading and writing using open2()</p>
</li>
<li><a name="IPC%3a%3aOpen3"></a><b>IPC::Open3</b>
<p>Open a process for reading, writing, and error handling using open3()</p>
</li>
<li><a name="IPC%3a%3aSemaphore"></a><b>IPC::Semaphore</b>
<p>SysV Semaphore IPC object class</p>
</li>
<li><a name="IPC%3a%3aSharedMem"></a><b>IPC::SharedMem</b>
<p>SysV Shared Memory IPC object class</p>
</li>
<li><a name="IPC%3a%3aSysV"></a><b>IPC::SysV</b>
<p>System V IPC constants and system calls</p>
</li>
<li><a name="JSON%3a%3aPP"></a><b>JSON::PP</b>
<p>JSON::XS compatible pure-Perl module.</p>
</li>
<li><a name="JSON%3a%3aPP%3a%3aBoolean"></a><b>JSON::PP::Boolean</b>
<p>Dummy module providing JSON::PP::Boolean</p>
</li>
<li><a name="List%3a%3aUtil"></a><b>List::Util</b>
<p>A selection of general-utility list subroutines</p>
</li>
<li><a name="List%3a%3aUtil%3a%3aXS"></a><b>List::Util::XS</b>
<p>Indicate if List::Util was compiled with a C compiler</p>
</li>
<li><a name="Locale%3a%3aCodes"></a><b>Locale::Codes</b>
<p>A distribution of modules to handle locale codes</p>
</li>
<li><a name="Locale%3a%3aCodes%3a%3aChanges"></a><b>Locale::Codes::Changes</b>
<p>Details important changes after 2.07</p>
</li>
<li><a name="Locale%3a%3aCodes%3a%3aCountry"></a><b>Locale::Codes::Country</b>
<p>Country codes for the Locale::Country module</p>
</li>
<li><a name="Locale%3a%3aCodes%3a%3aCurrency"></a><b>Locale::Codes::Currency</b>
<p>Currency codes for the Locale::Currency module</p>
</li>
<li><a name="Locale%3a%3aCodes%3a%3aLanguage"></a><b>Locale::Codes::Language</b>
<p>Language codes for the Locale::Language module</p>
</li>
<li><a name="Locale%3a%3aCodes%3a%3aScript"></a><b>Locale::Codes::Script</b>
<p>Script codes for the Locale::Script module</p>
</li>
<li><a name="Locale%3a%3aConstants"></a><b>Locale::Constants</b>
<p>Constants for Locale codes</p>
</li>
<li><a name="Locale%3a%3aCountry"></a><b>Locale::Country</b>
<p>Standard codes for country identification</p>
</li>
<li><a name="Locale%3a%3aCurrency"></a><b>Locale::Currency</b>
<p>Standard codes for currency identification</p>
</li>
<li><a name="Locale%3a%3aLanguage"></a><b>Locale::Language</b>
<p>Standard codes for language identification</p>
</li>
<li><a name="Locale%3a%3aMaketext"></a><b>Locale::Maketext</b>
<p>Framework for localization</p>
</li>
<li><a name="Locale%3a%3aMaketext%3a%3aCookbook"></a><b>Locale::Maketext::Cookbook</b>
<p>Recipes for using Locale::Maketext</p>
</li>
<li><a name="Locale%3a%3aMaketext%3a%3aGuts"></a><b>Locale::Maketext::Guts</b>
<p>Deprecated module to load Locale::Maketext utf8 code</p>
</li>
<li><a name="Locale%3a%3aMaketext%3a%3aGutsLoader"></a><b>Locale::Maketext::GutsLoader</b>
<p>Deprecated module to load Locale::Maketext utf8 code</p>
</li>
<li><a name="Locale%3a%3aMaketext%3a%3aSimple"></a><b>Locale::Maketext::Simple</b>
<p>Simple interface to Locale::Maketext::Lexicon</p>
</li>
<li><a name="Locale%3a%3aMaketext%3a%3aTPJ13"></a><b>Locale::Maketext::TPJ13</b>
<p>Article about software localization</p>
</li>
<li><a name="Locale%3a%3aScript"></a><b>Locale::Script</b>
<p>Standard codes for script identification</p>
</li>
<li><a name="Log%3a%3aMessage"></a><b>Log::Message</b>
<p>A generic message storing mechanism;</p>
</li>
<li><a name="Log%3a%3aMessage%3a%3aConfig"></a><b>Log::Message::Config</b>
<p>Configuration options for Log::Message</p>
</li>
<li><a name="Log%3a%3aMessage%3a%3aHandlers"></a><b>Log::Message::Handlers</b>
<p>Message handlers for Log::Message</p>
</li>
<li><a name="Log%3a%3aMessage%3a%3aItem"></a><b>Log::Message::Item</b>
<p>Message objects for Log::Message</p>
</li>
<li><a name="Log%3a%3aMessage%3a%3aSimple"></a><b>Log::Message::Simple</b>
<p>Simplified interface to Log::Message</p>
</li>
<li><a name="MIME%3a%3aBase64"></a><b>MIME::Base64</b>
<p>Encoding and decoding of base64 strings</p>
</li>
<li><a name="MIME%3a%3aQuotedPrint"></a><b>MIME::QuotedPrint</b>
<p>Encoding and decoding of quoted-printable strings</p>
</li>
<li><a name="Math%3a%3aBigFloat"></a><b>Math::BigFloat</b>
<p>Arbitrary size floating point math package</p>
</li>
<li><a name="Math%3a%3aBigInt"></a><b>Math::BigInt</b>
<p>Arbitrary size integer/float math package</p>
</li>
<li><a name="Math%3a%3aBigInt%3a%3aCalc"></a><b>Math::BigInt::Calc</b>
<p>Pure Perl module to support Math::BigInt</p>
</li>
<li><a name="Math%3a%3aBigInt%3a%3aCalcEmu"></a><b>Math::BigInt::CalcEmu</b>
<p>Emulate low-level math with BigInt code</p>
</li>
<li><a name="Math%3a%3aBigInt%3a%3aFastCalc"></a><b>Math::BigInt::FastCalc</b>
<p>Math::BigInt::Calc with some XS for more speed</p>
</li>
<li><a name="Math%3a%3aBigRat"></a><b>Math::BigRat</b>
<p>Arbitrary big rational numbers</p>
</li>
<li><a name="Math%3a%3aComplex"></a><b>Math::Complex</b>
<p>Complex numbers and associated mathematical functions</p>
</li>
<li><a name="Math%3a%3aTrig"></a><b>Math::Trig</b>
<p>Trigonometric functions</p>
</li>
<li><a name="Memoize"></a><b>Memoize</b>
<p>Make functions faster by trading space for time</p>
</li>
<li><a name="Memoize%3a%3aAnyDBM_File"></a><b>Memoize::AnyDBM_File</b>
<p>Glue to provide EXISTS for AnyDBM_File for Storable use</p>
</li>
<li><a name="Memoize%3a%3aExpire"></a><b>Memoize::Expire</b>
<p>Plug-in module for automatic expiration of memoized values</p>
</li>
<li><a name="Memoize%3a%3aExpireFile"></a><b>Memoize::ExpireFile</b>
<p>Test for Memoize expiration semantics</p>
</li>
<li><a name="Memoize%3a%3aExpireTest"></a><b>Memoize::ExpireTest</b>
<p>Test for Memoize expiration semantics</p>
</li>
<li><a name="Memoize%3a%3aNDBM_File"></a><b>Memoize::NDBM_File</b>
<p>Glue to provide EXISTS for NDBM_File for Storable use</p>
</li>
<li><a name="Memoize%3a%3aSDBM_File"></a><b>Memoize::SDBM_File</b>
<p>Glue to provide EXISTS for SDBM_File for Storable use</p>
</li>
<li><a name="Memoize%3a%3aStorable"></a><b>Memoize::Storable</b>
<p>Store Memoized data in Storable database</p>
</li>
<li><a name="Module%3a%3aBuild"></a><b>Module::Build</b>
<p>Build and install Perl modules</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aAPI"></a><b>Module::Build::API</b>
<p>API Reference for Module Authors</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aAuthoring"></a><b>Module::Build::Authoring</b>
<p>Authoring Module::Build modules</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aBase"></a><b>Module::Build::Base</b>
<p>Default methods for Module::Build</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aBundling"></a><b>Module::Build::Bundling</b>
<p>How to bundle Module::Build with a distribution</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aCompat"></a><b>Module::Build::Compat</b>
<p>Compatibility with ExtUtils::MakeMaker</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aConfigData"></a><b>Module::Build::ConfigData</b>
<p>Configuration for Module::Build</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aCookbook"></a><b>Module::Build::Cookbook</b>
<p>Examples of Module::Build Usage</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aModuleInfo"></a><b>Module::Build::ModuleInfo</b>
<p>DEPRECATED</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aNotes"></a><b>Module::Build::Notes</b>
<p>Create persistent distribution configuration modules</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aPPMMaker"></a><b>Module::Build::PPMMaker</b>
<p>Perl Package Manager file creation</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aPlatform%3a%3aAmiga"></a><b>Module::Build::Platform::Amiga</b>
<p>Builder class for Amiga platforms</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aPlatform%3a%3aDefault"></a><b>Module::Build::Platform::Default</b>
<p>Stub class for unknown platforms</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aPlatform%3a%3aEBCDIC"></a><b>Module::Build::Platform::EBCDIC</b>
<p>Builder class for EBCDIC platforms</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aPlatform%3a%3aMPEiX"></a><b>Module::Build::Platform::MPEiX</b>
<p>Builder class for MPEiX platforms</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aPlatform%3a%3aMacOS"></a><b>Module::Build::Platform::MacOS</b>
<p>Builder class for MacOS platforms</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aPlatform%3a%3aRiscOS"></a><b>Module::Build::Platform::RiscOS</b>
<p>Builder class for RiscOS platforms</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aPlatform%3a%3aUnix"></a><b>Module::Build::Platform::Unix</b>
<p>Builder class for Unix platforms</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aPlatform%3a%3aVMS"></a><b>Module::Build::Platform::VMS</b>
<p>Builder class for VMS platforms</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aPlatform%3a%3aVOS"></a><b>Module::Build::Platform::VOS</b>
<p>Builder class for VOS platforms</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aPlatform%3a%3aWindows"></a><b>Module::Build::Platform::Windows</b>
<p>Builder class for Windows platforms</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aPlatform%3a%3aaix"></a><b>Module::Build::Platform::aix</b>
<p>Builder class for AIX platform</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aPlatform%3a%3acygwin"></a><b>Module::Build::Platform::cygwin</b>
<p>Builder class for Cygwin platform</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aPlatform%3a%3adarwin"></a><b>Module::Build::Platform::darwin</b>
<p>Builder class for Mac OS X platform</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aPlatform%3a%3aos2"></a><b>Module::Build::Platform::os2</b>
<p>Builder class for OS/2 platform</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aVersion"></a><b>Module::Build::Version</b>
<p>DEPRECATED</p>
</li>
<li><a name="Module%3a%3aBuild%3a%3aYAML"></a><b>Module::Build::YAML</b>
<p>DEPRECATED</p>
</li>
<li><a name="Module%3a%3aCoreList"></a><b>Module::CoreList</b>
<p>What modules shipped with versions of perl</p>
</li>
<li><a name="Module%3a%3aLoad"></a><b>Module::Load</b>
<p>Runtime require of both modules and files</p>
</li>
<li><a name="Module%3a%3aLoad%3a%3aConditional"></a><b>Module::Load::Conditional</b>
<p>Looking up module information / loading at runtime</p>
</li>
<li><a name="Module%3a%3aLoaded"></a><b>Module::Loaded</b>
<p>Mark modules as loaded or unloaded</p>
</li>
<li><a name="Module%3a%3aMetadata"></a><b>Module::Metadata</b>
<p>Gather package and POD information from perl module files</p>
</li>
<li><a name="Module%3a%3aPluggable"></a><b>Module::Pluggable</b>
<p>Automatically give your module the ability to have plugins</p>
</li>
<li><a name="Module%3a%3aPluggable%3a%3aObject"></a><b>Module::Pluggable::Object</b>
<p>Automatically give your module the ability to have plugins</p>
</li>
<li><a name="NDBM_File"></a><b>NDBM_File</b>
<p>Tied access to ndbm files</p>
</li>
<li><a name="NEXT"></a><b>NEXT</b>
<p>Provide a pseudo-class NEXT (et al) that allows method redispatch</p>
</li>
<li><a name="Net%3a%3aCmd"></a><b>Net::Cmd</b>
<p>Network Command class (as used by FTP, SMTP etc)</p>
</li>
<li><a name="Net%3a%3aConfig"></a><b>Net::Config</b>
<p>Local configuration data for libnet</p>
</li>
<li><a name="Net%3a%3aDomain"></a><b>Net::Domain</b>
<p>Attempt to evaluate the current host's internet name and domain</p>
</li>
<li><a name="Net%3a%3aFTP"></a><b>Net::FTP</b>
<p>FTP Client class</p>
</li>
<li><a name="Net%3a%3aNNTP"></a><b>Net::NNTP</b>
<p>NNTP Client class</p>
</li>
<li><a name="Net%3a%3aNetrc"></a><b>Net::Netrc</b>
<p>OO interface to users netrc file</p>
</li>
<li><a name="Net%3a%3aPOP3"></a><b>Net::POP3</b>
<p>Post Office Protocol 3 Client class (RFC1939)</p>
</li>
<li><a name="Net%3a%3aPing"></a><b>Net::Ping</b>
<p>Check a remote host for reachability</p>
</li>
<li><a name="Net%3a%3aSMTP"></a><b>Net::SMTP</b>
<p>Simple Mail Transfer Protocol Client</p>
</li>
<li><a name="Net%3a%3aTime"></a><b>Net::Time</b>
<p>Time and daytime network client interface</p>
</li>
<li><a name="Net%3a%3ahostent"></a><b>Net::hostent</b>
<p>By-name interface to Perl's built-in gethost*() functions</p>
</li>
<li><a name="Net%3a%3alibnetFAQ"></a><b>Net::libnetFAQ</b>
<p>Libnet Frequently Asked Questions</p>
</li>
<li><a name="Net%3a%3anetent"></a><b>Net::netent</b>
<p>By-name interface to Perl's built-in getnet*() functions</p>
</li>
<li><a name="Net%3a%3aprotoent"></a><b>Net::protoent</b>
<p>By-name interface to Perl's built-in getproto*() functions</p>
</li>
<li><a name="Net%3a%3aservent"></a><b>Net::servent</b>
<p>By-name interface to Perl's built-in getserv*() functions</p>
</li>
<li><a name="O"></a><b>O</b>
<p>Generic interface to Perl Compiler backends</p>
</li>
<li><a name="ODBM_File"></a><b>ODBM_File</b>
<p>Tied access to odbm files</p>
</li>
<li><a name="Object%3a%3aAccessor"></a><b>Object::Accessor</b>
<p>Interface to create per object accessors</p>
</li>
<li><a name="Opcode"></a><b>Opcode</b>
<p>Disable named opcodes when compiling perl code</p>
</li>
<li><a name="POSIX"></a><b>POSIX</b>
<p>Perl interface to IEEE Std 1003.1</p>
</li>
<li><a name="Package%3a%3aConstants"></a><b>Package::Constants</b>
<p>List all constants declared in a package</p>
</li>
<li><a name="Params%3a%3aCheck"></a><b>Params::Check</b>
<p>A generic input parsing/checking mechanism.</p>
</li>
<li><a name="Parse%3a%3aCPAN%3a%3aMeta"></a><b>Parse::CPAN::Meta</b>
<p>Parse META.yml and META.json CPAN metadata files</p>
</li>
<li><a name="Perl%3a%3aOSType"></a><b>Perl::OSType</b>
<p>Map Perl operating system names to generic types</p>
</li>
<li><a name="PerlIO"></a><b>PerlIO</b>
<p>On demand loader for PerlIO layers and root of PerlIO::* name space</p>
</li>
<li><a name="PerlIO%3a%3aencoding"></a><b>PerlIO::encoding</b>
<p>Encoding layer</p>
</li>
<li><a name="PerlIO%3a%3ascalar"></a><b>PerlIO::scalar</b>
<p>In-memory IO, scalar IO</p>
</li>
<li><a name="PerlIO%3a%3avia"></a><b>PerlIO::via</b>
<p>Helper class for PerlIO layers implemented in perl</p>
</li>
<li><a name="PerlIO%3a%3avia%3a%3aQuotedPrint"></a><b>PerlIO::via::QuotedPrint</b>
<p>PerlIO layer for quoted-printable strings</p>
</li>
<li><a name="Pod%3a%3aChecker"></a><b>Pod::Checker</b>
<p>Check pod documents for syntax errors</p>
</li>
<li><a name="Pod%3a%3aEscapes"></a><b>Pod::Escapes</b>
<p>For resolving Pod E&lt;...&gt; sequences</p>
</li>
<li><a name="Pod%3a%3aFind"></a><b>Pod::Find</b>
<p>Find POD documents in directory trees</p>
</li>
<li><a name="Pod%3a%3aFunctions"></a><b>Pod::Functions</b>
<p>Group Perl's functions a la perlfunc.pod</p>
</li>
<li><a name="Pod%3a%3aHtml"></a><b>Pod::Html</b>
<p>Module to convert pod files to HTML</p>
</li>
<li><a name="Pod%3a%3aInputObjects"></a><b>Pod::InputObjects</b>
<p>Objects representing POD input paragraphs, commands, etc.</p>
</li>
<li><a name="Pod%3a%3aLaTeX"></a><b>Pod::LaTeX</b>
<p>Convert Pod data to formatted Latex</p>
</li>
<li><a name="Pod%3a%3aMan"></a><b>Pod::Man</b>
<p>Convert POD data to formatted *roff input</p>
</li>
<li><a name="Pod%3a%3aParseLink"></a><b>Pod::ParseLink</b>
<p>Parse an L&lt;&gt; formatting code in POD text</p>
</li>
<li><a name="Pod%3a%3aParseUtils"></a><b>Pod::ParseUtils</b>
<p>Helpers for POD parsing and conversion</p>
</li>
<li><a name="Pod%3a%3aParser"></a><b>Pod::Parser</b>
<p>Base class for creating POD filters and translators</p>
</li>
<li><a name="Pod%3a%3aPerldoc"></a><b>Pod::Perldoc</b>
<p>Look up Perl documentation in Pod format.</p>
</li>
<li><a name="Pod%3a%3aPerldoc%3a%3aBaseTo"></a><b>Pod::Perldoc::BaseTo</b>
<p>Base for Pod::Perldoc formatters</p>
</li>
<li><a name="Pod%3a%3aPerldoc%3a%3aGetOptsOO"></a><b>Pod::Perldoc::GetOptsOO</b>
<p>Customized option parser for Pod::Perldoc</p>
</li>
<li><a name="Pod%3a%3aPerldoc%3a%3aToChecker"></a><b>Pod::Perldoc::ToChecker</b>
<p>Let Perldoc check Pod for errors</p>
</li>
<li><a name="Pod%3a%3aPerldoc%3a%3aToMan"></a><b>Pod::Perldoc::ToMan</b>
<p>Let Perldoc render Pod as man pages</p>
</li>
<li><a name="Pod%3a%3aPerldoc%3a%3aToNroff"></a><b>Pod::Perldoc::ToNroff</b>
<p>Let Perldoc convert Pod to nroff</p>
</li>
<li><a name="Pod%3a%3aPerldoc%3a%3aToPod"></a><b>Pod::Perldoc::ToPod</b>
<p>Let Perldoc render Pod as ... Pod!</p>
</li>
<li><a name="Pod%3a%3aPerldoc%3a%3aToRtf"></a><b>Pod::Perldoc::ToRtf</b>
<p>Let Perldoc render Pod as RTF</p>
</li>
<li><a name="Pod%3a%3aPerldoc%3a%3aToText"></a><b>Pod::Perldoc::ToText</b>
<p>Let Perldoc render Pod as plaintext</p>
</li>
<li><a name="Pod%3a%3aPerldoc%3a%3aToTk"></a><b>Pod::Perldoc::ToTk</b>
<p>Let Perldoc use Tk::Pod to render Pod</p>
</li>
<li><a name="Pod%3a%3aPerldoc%3a%3aToXml"></a><b>Pod::Perldoc::ToXml</b>
<p>Let Perldoc render Pod as XML</p>
</li>
<li><a name="Pod%3a%3aPlainText"></a><b>Pod::PlainText</b>
<p>Convert POD data to formatted ASCII text</p>
</li>
<li><a name="Pod%3a%3aSelect"></a><b>Pod::Select</b>
<p>Extract selected sections of POD from input</p>
</li>
<li><a name="Pod%3a%3aSimple"></a><b>Pod::Simple</b>
<p>Framework for parsing Pod</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aChecker"></a><b>Pod::Simple::Checker</b>
<p>Check the Pod syntax of a document</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aDebug"></a><b>Pod::Simple::Debug</b>
<p>Put Pod::Simple into trace/debug mode</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aDumpAsText"></a><b>Pod::Simple::DumpAsText</b>
<p>Dump Pod-parsing events as text</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aDumpAsXML"></a><b>Pod::Simple::DumpAsXML</b>
<p>Turn Pod into XML</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aHTML"></a><b>Pod::Simple::HTML</b>
<p>Convert Pod to HTML</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aHTMLBatch"></a><b>Pod::Simple::HTMLBatch</b>
<p>Convert several Pod files to several HTML files</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aLinkSection"></a><b>Pod::Simple::LinkSection</b>
<p>Represent "section" attributes of L codes</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aMethody"></a><b>Pod::Simple::Methody</b>
<p>Turn Pod::Simple events into method calls</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aPullParser"></a><b>Pod::Simple::PullParser</b>
<p>A pull-parser interface to parsing Pod</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aPullParserEndToken"></a><b>Pod::Simple::PullParserEndToken</b>
<p>End-tokens from Pod::Simple::PullParser</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aPullParserStartToken"></a><b>Pod::Simple::PullParserStartToken</b>
<p>Start-tokens from Pod::Simple::PullParser</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aPullParserTextToken"></a><b>Pod::Simple::PullParserTextToken</b>
<p>Text-tokens from Pod::Simple::PullParser</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aPullParserToken"></a><b>Pod::Simple::PullParserToken</b>
<p>Tokens from Pod::Simple::PullParser</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aRTF"></a><b>Pod::Simple::RTF</b>
<p>Format Pod as RTF</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aSearch"></a><b>Pod::Simple::Search</b>
<p>Find POD documents in directory trees</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aSimpleTree"></a><b>Pod::Simple::SimpleTree</b>
<p>Parse Pod into a simple parse tree</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aSubclassing"></a><b>Pod::Simple::Subclassing</b>
<p>Write a formatter as a Pod::Simple subclass</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aText"></a><b>Pod::Simple::Text</b>
<p>Format Pod as plaintext</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aTextContent"></a><b>Pod::Simple::TextContent</b>
<p>Get the text content of Pod</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aXHTML"></a><b>Pod::Simple::XHTML</b>
<p>Format Pod as validating XHTML</p>
</li>
<li><a name="Pod%3a%3aSimple%3a%3aXMLOutStream"></a><b>Pod::Simple::XMLOutStream</b>
<p>Turn Pod into XML</p>
</li>
<li><a name="Pod%3a%3aText"></a><b>Pod::Text</b>
<p>Convert POD data to formatted ASCII text</p>
</li>
<li><a name="Pod%3a%3aText%3a%3aColor"></a><b>Pod::Text::Color</b>
<p>Convert POD data to formatted color ASCII text</p>
</li>
<li><a name="Pod%3a%3aText%3a%3aTermcap"></a><b>Pod::Text::Termcap</b>
<p>Convert POD data to ASCII text with format escapes</p>
</li>
<li><a name="Pod%3a%3aUsage"></a><b>Pod::Usage</b>
<p>Print a usage message from embedded pod documentation</p>
</li>
<li><a name="SDBM_File"></a><b>SDBM_File</b>
<p>Tied access to sdbm files</p>
</li>
<li><a name="Safe"></a><b>Safe</b>
<p>Compile and execute code in restricted compartments</p>
</li>
<li><a name="Scalar%3a%3aUtil"></a><b>Scalar::Util</b>
<p>A selection of general-utility scalar subroutines</p>
</li>
<li><a name="Search%3a%3aDict"></a><b>Search::Dict</b>
<p>Search for key in dictionary file</p>
</li>
<li><a name="SelectSaver"></a><b>SelectSaver</b>
<p>Save and restore selected file handle</p>
</li>
<li><a name="SelfLoader"></a><b>SelfLoader</b>
<p>Load functions only on demand</p>
</li>
<li><a name="Shell"></a><b>Shell</b>
<p>Run shell commands transparently within perl</p>
</li>
<li><a name="Socket"></a><b>Socket</b>
<p>Load the C socket.h defines and structure manipulators</p>
</li>
<li><a name="Storable"></a><b>Storable</b>
<p>Persistence for Perl data structures</p>
</li>
<li><a name="Symbol"></a><b>Symbol</b>
<p>Manipulate Perl symbols and their names</p>
</li>
<li><a name="Sys%3a%3aHostname"></a><b>Sys::Hostname</b>
<p>Try every conceivable way to get hostname</p>
</li>
<li><a name="Sys%3a%3aSyslog"></a><b>Sys::Syslog</b>
<p>Perl interface to the UNIX syslog(3) calls</p>
</li>
<li><a name="Sys%3a%3aSyslog%3a%3aWin32"></a><b>Sys::Syslog::Win32</b>
<p>Win32 support for Sys::Syslog</p>
</li>
<li><a name="TAP%3a%3aBase"></a><b>TAP::Base</b>
<p>Base class that provides common functionality to <a href="TAP/Parser.html">TAP::Parser</a></p>
</li>
<li><a name="TAP%3a%3aFormatter%3a%3aBase"></a><b>TAP::Formatter::Base</b>
<p>Base class for harness output delegates</p>
</li>
<li><a name="TAP%3a%3aFormatter%3a%3aColor"></a><b>TAP::Formatter::Color</b>
<p>Run Perl test scripts with color</p>
</li>
<li><a name="TAP%3a%3aFormatter%3a%3aConsole"></a><b>TAP::Formatter::Console</b>
<p>Harness output delegate for default console output</p>
</li>
<li><a name="TAP%3a%3aFormatter%3a%3aConsole%3a%3aParallelSession"></a><b>TAP::Formatter::Console::ParallelSession</b>
<p>Harness output delegate for parallel console output</p>
</li>
<li><a name="TAP%3a%3aFormatter%3a%3aConsole%3a%3aSession"></a><b>TAP::Formatter::Console::Session</b>
<p>Harness output delegate for default console output</p>
</li>
<li><a name="TAP%3a%3aFormatter%3a%3aFile"></a><b>TAP::Formatter::File</b>
<p>Harness output delegate for file output</p>
</li>
<li><a name="TAP%3a%3aFormatter%3a%3aFile%3a%3aSession"></a><b>TAP::Formatter::File::Session</b>
<p>Harness output delegate for file output</p>
</li>
<li><a name="TAP%3a%3aFormatter%3a%3aSession"></a><b>TAP::Formatter::Session</b>
<p>Abstract base class for harness output delegate</p>
</li>
<li><a name="TAP%3a%3aHarness"></a><b>TAP::Harness</b>
<p>Run test scripts with statistics</p>
</li>
<li><a name="TAP%3a%3aObject"></a><b>TAP::Object</b>
<p>Base class that provides common functionality to all <code class="inline"><span class="w">TAP::</span>*</code>
 modules</p>
</li>
<li><a name="TAP%3a%3aParser"></a><b>TAP::Parser</b>
<p>Parse <a href="http://search.cpan.org/perldoc/Test::Harness::TAP">TAP</a> output</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aAggregator"></a><b>TAP::Parser::Aggregator</b>
<p>Aggregate TAP::Parser results</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aGrammar"></a><b>TAP::Parser::Grammar</b>
<p>A grammar for the Test Anything Protocol.</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aIterator"></a><b>TAP::Parser::Iterator</b>
<p>Base class for TAP source iterators</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aIterator%3a%3aArray"></a><b>TAP::Parser::Iterator::Array</b>
<p>Iterator for array-based TAP sources</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aIterator%3a%3aProcess"></a><b>TAP::Parser::Iterator::Process</b>
<p>Iterator for process-based TAP sources</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aIterator%3a%3aStream"></a><b>TAP::Parser::Iterator::Stream</b>
<p>Iterator for filehandle-based TAP sources</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aIteratorFactory"></a><b>TAP::Parser::IteratorFactory</b>
<p>Figures out which SourceHandler objects to use for a given Source</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aMultiplexer"></a><b>TAP::Parser::Multiplexer</b>
<p>Multiplex multiple TAP::Parsers</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aResult"></a><b>TAP::Parser::Result</b>
<p>Base class for TAP::Parser output objects</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aResult%3a%3aBailout"></a><b>TAP::Parser::Result::Bailout</b>
<p>Bailout result token.</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aResult%3a%3aComment"></a><b>TAP::Parser::Result::Comment</b>
<p>Comment result token.</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aResult%3a%3aPlan"></a><b>TAP::Parser::Result::Plan</b>
<p>Plan result token.</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aResult%3a%3aPragma"></a><b>TAP::Parser::Result::Pragma</b>
<p>TAP pragma token.</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aResult%3a%3aTest"></a><b>TAP::Parser::Result::Test</b>
<p>Test result token.</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aResult%3a%3aUnknown"></a><b>TAP::Parser::Result::Unknown</b>
<p>Unknown result token.</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aResult%3a%3aVersion"></a><b>TAP::Parser::Result::Version</b>
<p>TAP syntax version token.</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aResult%3a%3aYAML"></a><b>TAP::Parser::Result::YAML</b>
<p>YAML result token.</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aResultFactory"></a><b>TAP::Parser::ResultFactory</b>
<p>Factory for creating TAP::Parser output objects</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aScheduler"></a><b>TAP::Parser::Scheduler</b>
<p>Schedule tests during parallel testing</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aScheduler%3a%3aJob"></a><b>TAP::Parser::Scheduler::Job</b>
<p>A single testing job.</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aScheduler%3a%3aSpinner"></a><b>TAP::Parser::Scheduler::Spinner</b>
<p>A no-op job.</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aSource"></a><b>TAP::Parser::Source</b>
<p>A TAP source &amp; meta data about it</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aSourceHandler"></a><b>TAP::Parser::SourceHandler</b>
<p>Base class for different TAP source handlers</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aSourceHandler%3a%3aExecutable"></a><b>TAP::Parser::SourceHandler::Executable</b>
<p>Stream output from an executable TAP source</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aSourceHandler%3a%3aFile"></a><b>TAP::Parser::SourceHandler::File</b>
<p>Stream TAP from a text file.</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aSourceHandler%3a%3aHandle"></a><b>TAP::Parser::SourceHandler::Handle</b>
<p>Stream TAP from an IO::Handle or a GLOB.</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aSourceHandler%3a%3aPerl"></a><b>TAP::Parser::SourceHandler::Perl</b>
<p>Stream TAP from a Perl executable</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aSourceHandler%3a%3aRawTAP"></a><b>TAP::Parser::SourceHandler::RawTAP</b>
<p>Stream output from raw TAP in a scalar/array ref.</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aUtils"></a><b>TAP::Parser::Utils</b>
<p>Internal TAP::Parser utilities</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aYAMLish%3a%3aReader"></a><b>TAP::Parser::YAMLish::Reader</b>
<p>Read YAMLish data from iterator</p>
</li>
<li><a name="TAP%3a%3aParser%3a%3aYAMLish%3a%3aWriter"></a><b>TAP::Parser::YAMLish::Writer</b>
<p>Write YAMLish data</p>
</li>
<li><a name="Term%3a%3aANSIColor"></a><b>Term::ANSIColor</b>
<p>Color screen output using ANSI escape sequences</p>
</li>
<li><a name="Term%3a%3aCap"></a><b>Term::Cap</b>
<p>Perl termcap interface</p>
</li>
<li><a name="Term%3a%3aComplete"></a><b>Term::Complete</b>
<p>Perl word completion module</p>
</li>
<li><a name="Term%3a%3aReadLine"></a><b>Term::ReadLine</b>
<p>Perl interface to various <code class="inline"><a class="l_k" href="functions/readline.html">readline</a></code> packages.</p>
</li>
<li><a name="Term%3a%3aUI"></a><b>Term::UI</b>
<p>Term::ReadLine UI made easy</p>
</li>
<li><a name="Test"></a><b>Test</b>
<p>Provides a simple framework for writing test scripts</p>
</li>
<li><a name="Test%3a%3aBuilder"></a><b>Test::Builder</b>
<p>Backend for building test libraries</p>
</li>
<li><a name="Test%3a%3aBuilder%3a%3aModule"></a><b>Test::Builder::Module</b>
<p>Base class for test modules</p>
</li>
<li><a name="Test%3a%3aBuilder%3a%3aTester"></a><b>Test::Builder::Tester</b>
<p>Test testsuites that have been built with</p>
</li>
<li><a name="Test%3a%3aBuilder%3a%3aTester%3a%3aColor"></a><b>Test::Builder::Tester::Color</b>
<p>Turn on colour in Test::Builder::Tester</p>
</li>
<li><a name="Test%3a%3aHarness"></a><b>Test::Harness</b>
<p>Run Perl standard test scripts with statistics</p>
</li>
<li><a name="Test%3a%3aMore"></a><b>Test::More</b>
<p>Yet another framework for writing test scripts</p>
</li>
<li><a name="Test%3a%3aSimple"></a><b>Test::Simple</b>
<p>Basic utilities for writing tests.</p>
</li>
<li><a name="Test%3a%3aTutorial"></a><b>Test::Tutorial</b>
<p>A tutorial about writing really basic tests</p>
</li>
<li><a name="Text%3a%3aAbbrev"></a><b>Text::Abbrev</b>
<p>Create an abbreviation table from a list</p>
</li>
<li><a name="Text%3a%3aBalanced"></a><b>Text::Balanced</b>
<p>Extract delimited text sequences from strings.</p>
</li>
<li><a name="Text%3a%3aParseWords"></a><b>Text::ParseWords</b>
<p>Parse text into an array of tokens or array of arrays</p>
</li>
<li><a name="Text%3a%3aSoundex"></a><b>Text::Soundex</b>
<p>Implementation of the soundex algorithm.</p>
</li>
<li><a name="Text%3a%3aTabs"></a><b>Text::Tabs</b>
<p>Expand and unexpand tabs per the unix expand(1) and unexpand(1)</p>
</li>
<li><a name="Text%3a%3aWrap"></a><b>Text::Wrap</b>
<p>Line wrapping to form simple paragraphs</p>
</li>
<li><a name="Thread"></a><b>Thread</b>
<p>Manipulate threads in Perl (for old code only)</p>
</li>
<li><a name="Thread%3a%3aQueue"></a><b>Thread::Queue</b>
<p>Thread-safe queues</p>
</li>
<li><a name="Thread%3a%3aSemaphore"></a><b>Thread::Semaphore</b>
<p>Thread-safe semaphores</p>
</li>
<li><a name="Tie%3a%3aArray"></a><b>Tie::Array</b>
<p>Base class for tied arrays</p>
</li>
<li><a name="Tie%3a%3aFile"></a><b>Tie::File</b>
<p>Access the lines of a disk file via a Perl array</p>
</li>
<li><a name="Tie%3a%3aHandle"></a><b>Tie::Handle</b>
<p>Base class definitions for tied handles</p>
</li>
<li><a name="Tie%3a%3aHash"></a><b>Tie::Hash</b>
<p>Base class definitions for tied hashes</p>
</li>
<li><a name="Tie%3a%3aHash%3a%3aNamedCapture"></a><b>Tie::Hash::NamedCapture</b>
<p>Named regexp capture buffers</p>
</li>
<li><a name="Tie%3a%3aMemoize"></a><b>Tie::Memoize</b>
<p>Add data to hash when needed</p>
</li>
<li><a name="Tie%3a%3aRefHash"></a><b>Tie::RefHash</b>
<p>Use references as hash keys</p>
</li>
<li><a name="Tie%3a%3aScalar"></a><b>Tie::Scalar</b>
<p>Base class definitions for tied scalars</p>
</li>
<li><a name="Tie%3a%3aStdHandle"></a><b>Tie::StdHandle</b>
<p>Base class definitions for tied handles</p>
</li>
<li><a name="Tie%3a%3aSubstrHash"></a><b>Tie::SubstrHash</b>
<p>Fixed-table-size, fixed-key-length hashing</p>
</li>
<li><a name="Time%3a%3aHiRes"></a><b>Time::HiRes</b>
<p>High resolution alarm, sleep, gettimeofday, interval timers</p>
</li>
<li><a name="Time%3a%3aLocal"></a><b>Time::Local</b>
<p>Efficiently compute time from local and GMT time</p>
</li>
<li><a name="Time%3a%3aPiece"></a><b>Time::Piece</b>
<p>Object Oriented time objects</p>
</li>
<li><a name="Time%3a%3aSeconds"></a><b>Time::Seconds</b>
<p>A simple API to convert seconds to other date values</p>
</li>
<li><a name="Time%3a%3agmtime"></a><b>Time::gmtime</b>
<p>By-name interface to Perl's built-in gmtime() function</p>
</li>
<li><a name="Time%3a%3alocaltime"></a><b>Time::localtime</b>
<p>By-name interface to Perl's built-in localtime() function</p>
</li>
<li><a name="Time%3a%3atm"></a><b>Time::tm</b>
<p>Internal object used by Time::gmtime and Time::localtime</p>
</li>
<li><a name="UNIVERSAL"></a><b>UNIVERSAL</b>
<p>Base class for ALL classes (blessed references)</p>
</li>
<li><a name="Unicode%3a%3aCollate"></a><b>Unicode::Collate</b>
<p>Unicode Collation Algorithm</p>
</li>
<li><a name="Unicode%3a%3aCollate%3a%3aCJK%3a%3aBig5"></a><b>Unicode::Collate::CJK::Big5</b>
<p>Weighting CJK Unified Ideographs</p>
</li>
<li><a name="Unicode%3a%3aCollate%3a%3aCJK%3a%3aGB2312"></a><b>Unicode::Collate::CJK::GB2312</b>
<p>Weighting CJK Unified Ideographs</p>
</li>
<li><a name="Unicode%3a%3aCollate%3a%3aCJK%3a%3aJISX0208"></a><b>Unicode::Collate::CJK::JISX0208</b>
<p>Weighting JIS KANJI for Unicode::Collate</p>
</li>
<li><a name="Unicode%3a%3aCollate%3a%3aCJK%3a%3aKorean"></a><b>Unicode::Collate::CJK::Korean</b>
<p>Weighting CJK Unified Ideographs</p>
</li>
<li><a name="Unicode%3a%3aCollate%3a%3aCJK%3a%3aPinyin"></a><b>Unicode::Collate::CJK::Pinyin</b>
<p>Weighting CJK Unified Ideographs</p>
</li>
<li><a name="Unicode%3a%3aCollate%3a%3aCJK%3a%3aStroke"></a><b>Unicode::Collate::CJK::Stroke</b>
<p>Weighting CJK Unified Ideographs</p>
</li>
<li><a name="Unicode%3a%3aCollate%3a%3aLocale"></a><b>Unicode::Collate::Locale</b>
<p>Linguistic tailoring for DUCET via Unicode::Collate</p>
</li>
<li><a name="Unicode%3a%3aNormalize"></a><b>Unicode::Normalize</b>
<p>Unicode Normalization Forms</p>
</li>
<li><a name="Unicode%3a%3aUCD"></a><b>Unicode::UCD</b>
<p>Unicode character database</p>
</li>
<li><a name="User%3a%3agrent"></a><b>User::grent</b>
<p>By-name interface to Perl's built-in getgr*() functions</p>
</li>
<li><a name="User%3a%3apwent"></a><b>User::pwent</b>
<p>By-name interface to Perl's built-in getpw*() functions</p>
</li>
<li><a name="VMS%3a%3aDCLsym"></a><b>VMS::DCLsym</b>
<p>Perl extension to manipulate DCL symbols</p>
</li>
<li><a name="VMS%3a%3aStdio"></a><b>VMS::Stdio</b>
<p>Standard I/O functions via VMS extensions</p>
</li>
<li><a name="Version%3a%3aRequirements"></a><b>Version::Requirements</b>
<p>A set of version requirements for a CPAN dist</p>
</li>
<li><a name="Win32API%3a%3aFile"></a><b>Win32API::File</b>
<p>Low-level access to Win32 system API calls for files/dirs.</p>
</li>
<li><a name="Win32CORE"></a><b>Win32CORE</b>
<p>Win32 CORE function stubs</p>
</li>
<li><a name="XS%3a%3aAPItest"></a><b>XS::APItest</b>
<p>Test the perl C API</p>
</li>
<li><a name="XS%3a%3aTypemap"></a><b>XS::Typemap</b>
<p>Module to test the XS typemaps distributed with perl</p>
</li>
<li><a name="XSLoader"></a><b>XSLoader</b>
<p>Dynamically load C libraries into Perl code</p>
</li>
<li><a name="version%3a%3aInternals"></a><b>version::Internals</b>
<p>Perl extension for Version Objects</p>
</li>
</ul>
<p>To find out <i>all</i> modules installed on your system, including
those without documentation or outside the standard release,
just use the following command (under the default win32 shell,
double quotes should be used instead of single quotes).</p>
<pre class="verbatim"><ol><li>    <span class="i">% perl</span> -<span class="w">MFile::Find</span>=<span class="w">find</span> -<span class="w">MFile::Spec::Functions</span> -<span class="w">Tlwe</span> \</li><li>      <span class="q">&#39;find { wanted =&gt; sub { print canonpath $_ if /\.pm\z/ },</span></li><li>      <span class="q">      no_chdir =&gt; 1 }, @INC&#39;</span></li></ol></pre><p>(The -T is here to prevent '.' from being listed in @INC.)
They should all have their own documentation installed and accessible
via your system man(1) command.  If you do not have a <b>find</b>
program, you can use the Perl <b>find2perl</b> program instead, which
generates Perl code as output you can run through perl.  If you
have a <b>man</b> program but it doesn't find your modules, you'll have
to fix your manpath.  See <a href="perl.html">perl</a> for details.  If you have no
system <b>man</b> command, you might try the <b>perldoc</b> program.</p>
<p>Note also that the command <code class="inline"><span class="w">perldoc</span> <span class="w">perllocal</span></code>
 gives you a (possibly
incomplete) list of the modules that have been further installed on
your system. (The perllocal.pod file is updated by the standard MakeMaker
install process.)</p>
<a name="Extension-Modules"></a><h2>Extension Modules</h2>
<p>Extension modules are written in C (or a mix of Perl and C).  They
are usually dynamically loaded into Perl if and when you need them,
but may also be linked in statically.  Supported extension modules
include Socket, Fcntl, and POSIX.</p>
<p>Many popular C extension modules do not come bundled (at least, not
completely) due to their sizes, volatility, or simply lack of time
for adequate testing and configuration across the multitude of
platforms on which Perl was beta-tested.  You are encouraged to
look for them on CPAN (described below), or using web search engines
like Alta Vista or Google.</p>
<a name="CPAN"></a><h1>CPAN</h1>
<p>CPAN stands for Comprehensive Perl Archive Network; it's a globally
replicated trove of Perl materials, including documentation, style
guides, tricks and traps, alternate ports to non-Unix systems and
occasional binary distributions for these.   Search engines for
CPAN can be found at <a href="http://www.cpan.org/">http://www.cpan.org/</a></p>
<p>Most importantly, CPAN includes around a thousand unbundled modules,
some of which require a C compiler to build.  Major categories of
modules are:</p>
<ul>
<li>
<p>Language Extensions and Documentation Tools</p>
</li>
<li>
<p>Development Support</p>
</li>
<li>
<p>Operating System Interfaces</p>
</li>
<li>
<p>Networking, Device Control (modems) and InterProcess Communication</p>
</li>
<li>
<p>Data Types and Data Type Utilities</p>
</li>
<li>
<p>Database Interfaces</p>
</li>
<li>
<p>User Interfaces</p>
</li>
<li>
<p>Interfaces to / Emulations of Other Programming Languages</p>
</li>
<li>
<p>File Names, File Systems and File Locking (see also File Handles)</p>
</li>
<li>
<p>String Processing, Language Text Processing, Parsing, and Searching</p>
</li>
<li>
<p>Option, Argument, Parameter, and Configuration File Processing</p>
</li>
<li>
<p>Internationalization and Locale</p>
</li>
<li>
<p>Authentication, Security, and Encryption</p>
</li>
<li>
<p>World Wide Web, HTML, HTTP, CGI, MIME</p>
</li>
<li>
<p>Server and Daemon Utilities</p>
</li>
<li>
<p>Archiving and Compression</p>
</li>
<li>
<p>Images, Pixmap and Bitmap Manipulation, Drawing, and Graphing</p>
</li>
<li>
<p>Mail and Usenet News</p>
</li>
<li>
<p>Control Flow Utilities (callbacks and exceptions etc)</p>
</li>
<li>
<p>File Handle and Input/Output Stream Utilities</p>
</li>
<li>
<p>Miscellaneous Modules</p>
</li>
</ul>
<p>The list of the registered CPAN sites follows.
Please note that the sorting order is alphabetical on fields:</p>
<p>Continent
   |
   |--&gt;Country
         |
         |--&gt;[state/province]
                   |
                   |--&gt;ftp
                   |
                   |--&gt;[http]</p>
<p>and thus the North American servers happen to be listed between the
European and the South American sites.</p>
<p>Registered CPAN sites</p>
<a name="Africa"></a><h2>Africa</h2>
<ul>
<li><a name="South-Africa"></a><b>South Africa</b>
<pre class="verbatim"><ol><li>                      http://cpan.mirror.ac.za/</li><li>                      ftp://cpan.mirror.ac.za/</li><li>                      http://mirror.is.co.za/pub/cpan/</li><li>                      ftp://ftp.is.co.za/pub/cpan/</li><li>                      ftp://ftp.saix.net/pub/CPAN/</li></ol></pre></li>
</ul>
<a name="Asia"></a><h2>Asia</h2>
<ul>
<li><a name="Hong-Kong"></a><b>Hong Kong</b>
<pre class="verbatim"><ol><li>                      http://ftp.cuhk.edu.hk/pub/packages/perl/CPAN/</li><li>                      ftp://ftp.cuhk.edu.hk/pub/packages/perl/CPAN/</li><li>                      http://mirrors.geoexpat.com/cpan/</li></ol></pre></li>
<li><a name="India"></a><b>India</b>
<pre class="verbatim"><ol><li>                      http://perlmirror.indialinks.com/</li></ol></pre></li>
<li><a name="Indonesia"></a><b>Indonesia</b>
<pre class="verbatim"><ol><li>                      http://cpan.biz.net.id/</li><li>                      http://komo.vlsm.org/CPAN/</li><li>                      ftp://komo.vlsm.org/CPAN/</li><li>                      http://cpan.pesat.net.id/</li><li>                      http://mirror.unej.ac.id/cpan/</li><li>                      ftp://mirror.unej.ac.id/cpan/</li></ol></pre></li>
<li><a name="Japan"></a><b>Japan</b>
<pre class="verbatim"><ol><li>                      ftp://ftp.u-aizu.ac.jp/pub/CPAN</li><li>                      ftp://ftp.kddilabs.jp/CPAN/</li><li>                      http://ftp.nara.wide.ad.jp/pub/CPAN/</li><li>                      ftp://ftp.nara.wide.ad.jp/pub/CPAN/</li><li>                      http://ftp.jaist.ac.jp/pub/CPAN/</li><li>                      ftp://ftp.jaist.ac.jp/pub/CPAN/</li><li>                      ftp://ftp.dti.ad.jp/pub/lang/CPAN/</li><li>                      ftp://ftp.ring.gr.jp/pub/lang/perl/CPAN/</li><li>                      http://ftp.riken.jp/lang/CPAN/</li><li>                      ftp://ftp.riken.jp/lang/CPAN/</li><li>                      http://ftp.yz.yamagata-u.ac.jp/pub/lang/cpan/</li><li>                      ftp://ftp.yz.yamagata-u.ac.jp/pub/lang/cpan/</li></ol></pre></li>
<li><a name="Kazakhstan"></a><b>Kazakhstan</b>
<pre class="verbatim"><ol><li>                      http://mirror.linuxiso.kz/CPAN/</li></ol></pre></li>
<li><a name="Republic-of-Korea"></a><b>Republic of Korea</b>
<pre class="verbatim"><ol><li>                      http://ftp.kaist.ac.kr/pub/CPAN</li><li>                      ftp://ftp.kaist.ac.kr/pub/CPAN</li><li>                      http://cpan.mirror.cdnetworks.com/</li><li>                      ftp://cpan.mirror.cdnetworks.com/CPAN/</li><li>                      http://cpan.sarang.net/</li><li>                      ftp://cpan.sarang.net/CPAN/</li></ol></pre></li>
<li><a name="Russia"></a><b>Russia</b>
<pre class="verbatim"><ol><li>                      http://cpan.tomsk.ru/</li><li>                      ftp://cpan.tomsk.ru/</li></ol></pre></li>
<li><a name="Singapore"></a><b>Singapore</b>
<pre class="verbatim"><ol><li>                      http://mirror.averse.net/pub/CPAN</li><li>                      ftp://mirror.averse.net/pub/CPAN</li><li>                      http://cpan.mirror.choon.net/</li><li>                      http://cpan.oss.eznetsols.org</li><li>                      ftp://ftp.oss.eznetsols.org/cpan</li></ol></pre></li>
<li><a name="Taiwan"></a><b>Taiwan</b>
<pre class="verbatim"><ol><li>                      http://ftp.cse.yzu.edu.tw/pub/CPAN/</li><li>                      ftp://ftp.cse.yzu.edu.tw/pub/CPAN/</li><li>                      http://cpan.nctu.edu.tw/</li><li>                      ftp://cpan.nctu.edu.tw/</li><li>                      ftp://ftp.ncu.edu.tw/CPAN/</li><li>                      http://cpan.cdpa.nsysu.edu.tw/</li><li>                      ftp://cpan.cdpa.nsysu.edu.tw/Unix/Lang/CPAN/</li><li>                      http://cpan.stu.edu.tw</li><li>                      ftp://ftp.stu.edu.tw/CPAN</li><li>                      http://ftp.stu.edu.tw/CPAN</li><li>                      ftp://ftp.stu.edu.tw/pub/CPAN</li><li>                      http://cpan.cs.pu.edu.tw/</li><li>                      ftp://cpan.cs.pu.edu.tw/pub/CPAN</li></ol></pre></li>
<li><a name="Thailand"></a><b>Thailand</b>
<pre class="verbatim"><ol><li>                      http://mirrors.issp.co.th/cpan/</li><li>                      ftp://mirrors.issp.co.th/cpan/</li></ol></pre></li>
<li><a name="Turkey"></a><b>Turkey</b>
<pre class="verbatim"><ol><li>                      http://cpan.gazi.edu.tr/</li><li>                      http://cpan.ulak.net.tr</li><li>                      ftp://ftp.ulak.net.tr/pub/CPAN</li></ol></pre></li>
<li><a name="Viet-Nam"></a><b>Viet Nam</b>
<pre class="verbatim"><ol><li>                      http://mirror-fpt-telecom.fpt.net/cpan/</li><li>                      ftp://mirror-fpt-telecom.fpt.net/cpan/</li></ol></pre></li>
</ul>
<a name="Central-America"></a><h2>Central America</h2>
<ul>
<li><a name="Costa-Rica"></a><b>Costa Rica</b>
<pre class="verbatim"><ol><li>                      http://mirrors.ucr.ac.cr/CPAN/</li><li>                      ftp://mirrors.ucr.ac.cr/CPAN/</li></ol></pre></li>
</ul>
<a name="Europe"></a><h2>Europe</h2>
<ul>
<li><a name="Austria"></a><b>Austria</b>
<pre class="verbatim"><ol><li>                      http://cpan.inode.at/</li><li>                      ftp://cpan.inode.at</li><li>                      http://gd.tuwien.ac.at/languages/perl/CPAN/</li><li>                      ftp://gd.tuwien.ac.at/pub/CPAN/</li></ol></pre></li>
<li><a name="Belgium"></a><b>Belgium</b>
<pre class="verbatim"><ol><li>                      http://ftp.belnet.be/mirror/ftp.cpan.org/</li><li>                      ftp://ftp.belnet.be/mirror/ftp.cpan.org/</li><li>                      http://ftp.easynet.be/pub/CPAN/</li><li>                      http://cpan.weepee.org/</li><li>                      http://cpan.fluoline.net/</li></ol></pre></li>
<li><a name="Bosnia-and-Herzegovina"></a><b>Bosnia and Herzegovina</b>
<pre class="verbatim"><ol><li>                      http://cpan.blic.net/</li></ol></pre></li>
<li><a name="Bulgaria"></a><b>Bulgaria</b>
<pre class="verbatim"><ol><li>                      http://cpan.cbox.biz/</li><li>                      ftp://cpan.cbox.biz/cpan/</li><li>                      http://cpan.digsys.bg/</li><li>                      ftp://ftp.digsys.bg/pub/CPAN</li></ol></pre></li>
<li><a name="Croatia"></a><b>Croatia</b>
<pre class="verbatim"><ol><li>                      http://ftp.carnet.hr/pub/CPAN/</li><li>                      ftp://ftp.carnet.hr/pub/CPAN/</li></ol></pre></li>
<li><a name="Czech-Republic"></a><b>Czech Republic</b>
<pre class="verbatim"><ol><li>                      ftp://ftp.fi.muni.cz/pub/CPAN/</li><li>                      http://archive.cpan.cz/</li></ol></pre></li>
<li><a name="Denmark"></a><b>Denmark</b>
<pre class="verbatim"><ol><li>                      http://mirrors.dotsrc.org/cpan</li><li>                      ftp://mirrors.dotsrc.org/cpan/</li><li>                      http://www.cpan.dk/</li><li>                      http://mirror.uni-c.dk/pub/CPAN/</li></ol></pre></li>
<li><a name="Finland"></a><b>Finland</b>
<pre class="verbatim"><ol><li>                      ftp://ftp.funet.fi/pub/languages/perl/CPAN/</li><li>                      http://mirror.eunet.fi/CPAN</li></ol></pre></li>
<li><a name="France"></a><b>France</b>
<pre class="verbatim"><ol><li>                      http://cpan.enstimac.fr/</li><li>                      ftp://ftp.inria.fr/pub/CPAN/</li><li>                      http://distrib-coffee.ipsl.jussieu.fr/pub/mirrors/cpan/</li><li>                      ftp://distrib-coffee.ipsl.jussieu.fr/pub/mirrors/cpan/</li><li>                      ftp://ftp.lip6.fr/pub/perl/CPAN/</li><li>                      http://mir2.ovh.net/ftp.cpan.org</li><li>                      ftp://mir1.ovh.net/ftp.cpan.org</li><li>                      http://cpan.miroir-francais.fr/</li><li>                      ftp://miroir-francais.fr/pub/cpan/</li><li>                      ftp://ftp.oleane.net/pub/CPAN/</li><li>                      http://ftp.crihan.fr/mirrors/ftp.cpan.org/</li><li>                      ftp://ftp.crihan.fr/mirrors/ftp.cpan.org/</li><li>                      http://ftp.u-strasbg.fr/CPAN</li><li>                      ftp://ftp.u-strasbg.fr/CPAN</li><li>                      http://cpan.cict.fr/</li><li>                      ftp://cpan.cict.fr/pub/CPAN/</li></ol></pre></li>
<li><a name="Germany"></a><b>Germany</b>
<pre class="verbatim"><ol><li>                      ftp://ftp.fu-berlin.de/unix/languages/perl/</li><li>                      http://mirrors.softliste.de/cpan/</li><li>                      ftp://ftp.rub.de/pub/CPAN/</li><li>                      http://www.planet-elektronik.de/CPAN/</li><li>                      http://ftp.hosteurope.de/pub/CPAN/</li><li>                      ftp://ftp.hosteurope.de/pub/CPAN/</li><li>                      http://www.mirrorspace.org/cpan/</li><li>                      http://mirror.netcologne.de/cpan/</li><li>                      ftp://mirror.netcologne.de/cpan/</li><li>                      ftp://ftp.freenet.de/pub/ftp.cpan.org/pub/CPAN/</li><li>                      http://ftp-stud.hs-esslingen.de/pub/Mirrors/CPAN/</li><li>                      ftp://ftp-stud.hs-esslingen.de/pub/Mirrors/CPAN/</li><li>                      http://mirrors.zerg.biz/cpan/</li><li>                      http://ftp.gwdg.de/pub/languages/perl/CPAN/</li><li>                      ftp://ftp.gwdg.de/pub/languages/perl/CPAN/</li><li>                      http://dl.ambiweb.de/mirrors/ftp.cpan.org/</li><li>                      http://cpan.mirror.clusters.kg/</li><li>                      http://cpan.mirror.iphh.net/</li><li>                      ftp://cpan.mirror.iphh.net/pub/CPAN/</li><li>                      http://cpan.mirroring.de/</li><li>                      http://mirror.informatik.uni-mannheim.de/pub/mirrors/CPAN/</li><li>                      ftp://mirror.informatik.uni-mannheim.de/pub/mirrors/CPAN/</li><li>                      http://ftp.cw.net/pub/CPAN/</li><li>                      ftp://ftp.cw.net/pub/CPAN/</li><li>                      http://cpan.cpantesters.org/</li><li>                      ftp://cpan.cpantesters.org/CPAN/</li><li>                      http://cpan.mirrored.de/</li><li>                      ftp://mirror.petamem.com/CPAN/</li><li>                      http://cpan.noris.de/</li><li>                      ftp://cpan.noris.de/pub/CPAN/</li><li>                      ftp://ftp.mpi-sb.mpg.de/pub/perl/CPAN/</li><li>                      ftp://ftp.gmd.de/mirrors/CPAN/</li></ol></pre></li>
<li><a name="Greece"></a><b>Greece</b>
<pre class="verbatim"><ol><li>                      ftp://ftp.forthnet.gr/pub/languages/perl/CPAN</li><li>                      ftp://ftp.ntua.gr/pub/lang/perl/</li><li>                      http://cpan.cc.uoc.gr/</li><li>                      ftp://ftp.cc.uoc.gr/mirrors/CPAN/</li></ol></pre></li>
<li><a name="Hungary"></a><b>Hungary</b>
<pre class="verbatim"><ol><li>                      http://cpan.mirrors.enexis.hu/</li><li>                      ftp://cpan.mirrors.enexis.hu/mirrors/cpan/</li><li>                      http://cpan.hu/</li></ol></pre></li>
<li><a name="Iceland"></a><b>Iceland</b>
<pre class="verbatim"><ol><li>                      http://ftp.rhnet.is/pub/CPAN/</li><li>                      ftp://ftp.rhnet.is/pub/CPAN/</li></ol></pre></li>
<li><a name="Ireland"></a><b>Ireland</b>
<pre class="verbatim"><ol><li>                      http://ftp.esat.net/pub/languages/perl/CPAN/</li><li>                      ftp://ftp.esat.net/pub/languages/perl/CPAN/</li><li>                      http://ftp.heanet.ie/mirrors/ftp.perl.org/pub/CPAN</li><li>                      ftp://ftp.heanet.ie/mirrors/ftp.perl.org/pub/CPAN</li></ol></pre></li>
<li><a name="Italy"></a><b>Italy</b>
<pre class="verbatim"><ol><li>                      http://bo.mirror.garr.it/mirrors/CPAN/</li><li>                      http://cpan.panu.it/</li><li>                      ftp://ftp.panu.it/pub/mirrors/perl/CPAN/</li><li>                      http://cpan.fastbull.org/</li></ol></pre></li>
<li><a name="Latvia"></a><b>Latvia</b>
<pre class="verbatim"><ol><li>                      http://kvin.lv/pub/CPAN/</li></ol></pre></li>
<li><a name="Lithuania"></a><b>Lithuania</b>
<pre class="verbatim"><ol><li>                      http://ftp.litnet.lt/pub/CPAN/</li><li>                      ftp://ftp.litnet.lt/pub/CPAN/</li></ol></pre></li>
<li><a name="Malta"></a><b>Malta</b>
<pre class="verbatim"><ol><li>                      http://cpan.waldonet.net.mt/</li></ol></pre></li>
<li><a name="Netherlands"></a><b>Netherlands</b>
<pre class="verbatim"><ol><li>                      ftp://ftp.quicknet.nl/pub/CPAN/</li><li>                      http://mirror.hostfuss.com/CPAN/</li><li>                      ftp://mirror.hostfuss.com/CPAN/</li><li>                      http://mirrors3.kernel.org/cpan/</li><li>                      ftp://mirrors3.kernel.org/pub/CPAN/</li><li>                      http://cpan.osmirror.nl/</li><li>                      ftp://ftp.osmirror.nl/pub/cpan/</li><li>                      http://cpan.mirror.versatel.nl/</li><li>                      ftp://ftp.mirror.versatel.nl/cpan/</li><li>                      ftp://download.xs4all.nl/pub/mirror/CPAN/</li><li>                      http://mirror.leaseweb.com/CPAN/</li><li>                      ftp://mirror.leaseweb.com/CPAN/</li><li>                      ftp://ftp.cpan.nl/pub/CPAN/</li><li>                      http://archive.cs.uu.nl/mirror/CPAN/</li><li>                      ftp://ftp.cs.uu.nl/mirror/CPAN/</li><li>                      http://https://luxitude.net/cpan/</li></ol></pre></li>
<li><a name="Norway"></a><b>Norway</b>
<pre class="verbatim"><ol><li>                      ftp://ftp.uninett.no/pub/languages/perl/CPAN</li><li>                      ftp://ftp.uit.no/pub/languages/perl/cpan/</li></ol></pre></li>
<li><a name="Poland"></a><b>Poland</b>
<pre class="verbatim"><ol><li>                      http://mirror.icis.pcz.pl/CPAN/</li><li>                      ftp://mirror.icis.pcz.pl/CPAN/</li><li>                      http://piotrkosoft.net/pub/mirrors/CPAN/</li><li>                      ftp://ftp.piotrkosoft.net/pub/mirrors/CPAN/</li><li>                      http://ftp.man.poznan.pl/pub/CPAN</li><li>                      ftp://ftp.man.poznan.pl/pub/CPAN</li><li>                      ftp://sunsite.icm.edu.pl/pub/CPAN/</li><li>                      ftp://ftp.tpnet.pl/d4/CPAN/</li></ol></pre></li>
<li><a name="Portugal"></a><b>Portugal</b>
<pre class="verbatim"><ol><li>                      http://cpan.dei.uc.pt/</li><li>                      ftp://ftp.dei.uc.pt/pub/CPAN</li><li>                      ftp://ftp.ist.utl.pt/pub/CPAN/</li><li>                      http://cpan.perl.pt/</li><li>                      http://cpan.ip.pt/</li><li>                      ftp://cpan.ip.pt/pub/cpan/</li><li>                      http://mirrors.nfsi.pt/CPAN/</li><li>                      ftp://mirrors.nfsi.pt/pub/CPAN/</li><li>                      http://cpan.dcc.fc.up.pt/</li></ol></pre></li>
<li><a name="Romania"></a><b>Romania</b>
<pre class="verbatim"><ol><li>                      http://ftp.astral.ro/pub/CPAN/</li><li>                      ftp://ftp.astral.ro/pub/CPAN/</li><li>                      ftp://ftp.lug.ro/CPAN</li><li>                      http://mirrors.xservers.ro/CPAN/</li><li>                      http://mirrors.hostingromania.ro/ftp.cpan.org/</li><li>                      ftp://ftp.hostingromania.ro/mirrors/ftp.cpan.org/</li><li>                      ftp://ftp.iasi.roedu.net/pub/mirrors/ftp.cpan.org/</li><li>                      ftp://ftp.ambra.ro/pub/CPAN</li></ol></pre></li>
<li><a name="Russia"></a><b>Russia</b>
<pre class="verbatim"><ol><li>                      ftp://ftp.aha.ru/CPAN/</li><li>                      http://cpan.rinet.ru/</li><li>                      ftp://cpan.rinet.ru/pub/mirror/CPAN/</li><li>                      ftp://ftp.SpringDaemons.com/pub/CPAN/</li><li>                      http://cpan.nx1.ru/</li><li>                      ftp://cpan.nx1.ru/</li><li>                      http://mirror.rol.ru/CPAN/</li><li>                      http://ftp.silvernet.ru/CPAN/</li><li>                      http://ftp.spbu.ru/CPAN/</li><li>                      ftp://ftp.spbu.ru/CPAN/</li></ol></pre></li>
<li><a name="Slovakia"></a><b>Slovakia</b>
<pre class="verbatim"><ol><li>                      http://cpan.fyxm.net/</li></ol></pre></li>
<li><a name="Slovenia"></a><b>Slovenia</b>
<pre class="verbatim"><ol><li>                      http://www.klevze.si/cpan</li></ol></pre></li>
<li><a name="Spain"></a><b>Spain</b>
<pre class="verbatim"><ol><li>                      http://osl.ugr.es/CPAN/</li><li>                      ftp://ftp.rediris.es/mirror/CPAN/</li><li>                      http://ftp.gui.uva.es/sites/cpan.org/</li><li>                      ftp://ftp.gui.uva.es/sites/cpan.org/</li></ol></pre></li>
<li><a name="Sweden"></a><b>Sweden</b>
<pre class="verbatim"><ol><li>                      http://mirrors4.kernel.org/cpan/</li><li>                      ftp://mirrors4.kernel.org/pub/CPAN/</li></ol></pre></li>
<li><a name="Switzerland"></a><b>Switzerland</b>
<pre class="verbatim"><ol><li>                      http://cpan.mirror.solnet.ch/</li><li>                      ftp://ftp.solnet.ch/mirror/CPAN/</li><li>                      http://mirror.switch.ch/ftp/mirror/CPAN/</li><li>                      ftp://mirror.switch.ch/mirror/CPAN/</li></ol></pre></li>
<li><a name="Ukraine"></a><b>Ukraine</b>
<pre class="verbatim"><ol><li>                      http://cpan.makeperl.org/</li><li>                      ftp://cpan.makeperl.org/pub/CPAN</li><li>                      http://cpan.org.ua/</li><li>                      http://no-more.kiev.ua/CPAN/</li><li>                      ftp://no-more.kiev.ua/pub/CPAN/</li><li>                      http://cpan.gafol.net/</li><li>                      ftp://ftp.gafol.net/pub/cpan/</li></ol></pre></li>
<li><a name="United-Kingdom"></a><b>United Kingdom</b>
<pre class="verbatim"><ol><li>                      http://www.mirrorservice.org/sites/ftp.funet.fi/pub/languages/perl/CPAN/</li><li>                      ftp://ftp.mirrorservice.org/sites/ftp.funet.fi/pub/languages/perl/CPAN/</li><li>                      http://mirror.tje.me.uk/pub/mirrors/ftp.cpan.org/</li><li>                      ftp://mirror.tje.me.uk/pub/mirrors/ftp.cpan.org/</li><li>                      http://www.mirror.8086.net/sites/CPAN/</li><li>                      ftp://ftp.mirror.8086.net/sites/CPAN/</li><li>                      http://cpan.mirror.anlx.net/</li><li>                      ftp://ftp.mirror.anlx.net/CPAN/</li><li>                      http://mirror.bytemark.co.uk/CPAN/</li><li>                      ftp://mirror.bytemark.co.uk/CPAN/</li><li>                      http://cpan.etla.org/</li><li>                      ftp://cpan.etla.org/pub/CPAN</li><li>                      ftp://ftp.demon.co.uk/pub/CPAN/</li><li>                      http://mirror.sov.uk.goscomb.net/CPAN/</li><li>                      ftp://mirror.sov.uk.goscomb.net/pub/CPAN/</li><li>                      http://ftp.plig.net/pub/CPAN/</li><li>                      ftp://ftp.plig.net/pub/CPAN/</li><li>                      http://ftp.ticklers.org/pub/CPAN/</li><li>                      ftp://ftp.ticklers.org/pub/CPAN/</li><li>                      http://cpan.mirrors.uk2.net/</li><li>                      ftp://mirrors.uk2.net/pub/CPAN/</li><li>                      http://mirror.ox.ac.uk/sites/www.cpan.org/</li><li>                      ftp://mirror.ox.ac.uk/sites/www.cpan.org/</li></ol></pre></li>
</ul>
<a name="North-America"></a><h2>North America</h2>
<ul>
<li><a name="Bahamas"></a><b>Bahamas</b>
<pre class="verbatim"><ol><li>                      http://www.securehost.com/mirror/CPAN/</li></ol></pre></li>
<li><a name="Canada"></a><b>Canada</b>
<pre class="verbatim"><ol><li>                      http://cpan.justanotherperlhacker.com/pub/CPAN/</li><li>                      ftp://cpan.justanotherperlhacker.com/pub/CPAN/</li><li>                      http://cpan.arcticnetwork.ca</li><li>                      ftp://mirror.arcticnetwork.ca/pub/CPAN</li><li>                      http://cpan.sunsite.ualberta.ca/</li><li>                      ftp://cpan.sunsite.ualberta.ca/pub/CPAN/</li><li>                      http://theoryx5.uwinnipeg.ca/pub/CPAN/</li><li>                      ftp://theoryx5.uwinnipeg.ca/pub/CPAN/</li><li>                      http://arwen.cs.dal.ca/mirror/CPAN/</li><li>                      ftp://arwen.cs.dal.ca/pub/mirror/CPAN/</li><li>                      http://CPAN.mirror.rafal.ca/</li><li>                      ftp://CPAN.mirror.rafal.ca/pub/CPAN/</li><li>                      ftp://ftp.nrc.ca/pub/CPAN/</li><li>                      http://mirror.csclub.uwaterloo.ca/pub/CPAN/</li><li>                      ftp://mirror.csclub.uwaterloo.ca/pub/CPAN/</li></ol></pre></li>
<li><a name="Mexico"></a><b>Mexico</b>
<pre class="verbatim"><ol><li>                      http://www.msg.com.mx/CPAN/</li><li>                      ftp://ftp.msg.com.mx/pub/CPAN/</li></ol></pre></li>
<li><a name="United-States"></a><b>United States</b>
<ul>
<li><a name="Alabama"></a><b>Alabama</b>
<pre class="verbatim"><ol><li>                      http://mirror.hiwaay.net/CPAN/</li><li>                      ftp://mirror.hiwaay.net/CPAN/</li></ol></pre></li>
<li><a name="California"></a><b>California</b>
<pre class="verbatim"><ol><li>                      http://cpan.knowledgematters.net/</li><li>                      http://cpan.binkerton.com/</li><li>                      http://cpan.develooper.com/</li><li>                      http://mirrors.gossamer-threads.com/CPAN</li><li>                      http://cpan.schatt.com/</li><li>                      http://mirrors.kernel.org/cpan/</li><li>                      ftp://mirrors.kernel.org/pub/CPAN</li><li>                      http://mirrors2.kernel.org/cpan/</li><li>                      ftp://mirrors2.kernel.org/pub/CPAN/</li><li>                      http://cpan.mirrors.redwire.net/</li><li>                      http://cpan.mirror.facebook.net/</li><li>                      http://mirrors1.kernel.org/cpan/</li><li>                      ftp://mirrors1.kernel.org/pub/CPAN/</li><li>                      http://cpan-sj.viaverio.com/</li><li>                      ftp://cpan-sj.viaverio.com/pub/CPAN/</li><li>                      http://www.perl.com/CPAN/</li><li>                      http://cpan.yahoo.com/</li></ol></pre></li>
<li><a name="Florida"></a><b>Florida</b>
<pre class="verbatim"><ol><li>                      ftp://ftp.cise.ufl.edu/pub/mirrors/CPAN/</li><li>                      http://mirror.atlantic.net/pub/CPAN/</li><li>                      ftp://mirror.atlantic.net/pub/CPAN/</li><li>                      http://mirror.candidhosting.com/pub/CPAN</li><li>                      ftp://mirror.candidhosting.com/pub/CPAN</li></ol></pre></li>
<li><a name="Idaho"></a><b>Idaho</b>
<pre class="verbatim"><ol><li>                      http://mirror.its.uidaho.edu/pub/cpan/</li><li>                      ftp://mirror.its.uidaho.edu/cpan/</li></ol></pre></li>
<li><a name="Illinois"></a><b>Illinois</b>
<pre class="verbatim"><ol><li>                      http://cpan.mirrors.hoobly.com/</li><li>                      http://cpan.uchicago.edu/pub/CPAN/</li><li>                      ftp://cpan.uchicago.edu/pub/CPAN/</li><li>                      http://mirrors.servercentral.net/CPAN/</li><li>                      http://www.stathy.com/CPAN/</li><li>                      ftp://www.stathy.com/CPAN/</li></ol></pre></li>
<li><a name="Indiana"></a><b>Indiana</b>
<pre class="verbatim"><ol><li>                      ftp://ftp.uwsg.iu.edu/pub/perl/CPAN/</li><li>                      http://cpan.netnitco.net/</li><li>                      ftp://cpan.netnitco.net/pub/mirrors/CPAN/</li><li>                      http://ftp.ndlug.nd.edu/pub/perl/</li><li>                      ftp://ftp.ndlug.nd.edu/pub/perl/</li><li>                      http://fx.saintjoe.edu/pub/CPAN</li></ol></pre></li>
<li><a name="Massachusetts"></a><b>Massachusetts</b>
<pre class="verbatim"><ol><li>                      ftp://ftp.ccs.neu.edu/net/mirrors/ftp.funet.fi/pub/languages/perl/CPAN/</li></ol></pre></li>
<li><a name="Michigan"></a><b>Michigan</b>
<pre class="verbatim"><ol><li>                      http://ftp.wayne.edu/cpan/</li><li>                      ftp://ftp.wayne.edu/cpan/</li></ol></pre></li>
<li><a name="Minnesota"></a><b>Minnesota</b>
<pre class="verbatim"><ol><li>                      http://cpan.msi.umn.edu/</li></ol></pre></li>
<li><a name="New-Jersey"></a><b>New Jersey</b>
<pre class="verbatim"><ol><li>                      http://mirror.datapipe.net/CPAN/</li><li>                      ftp://mirror.datapipe.net/pub/CPAN/</li></ol></pre></li>
<li><a name="New-York"></a><b>New York</b>
<pre class="verbatim"><ol><li>                      http://mirrors.24-7-solutions.net/pub/CPAN/</li><li>                      ftp://mirrors.24-7-solutions.net/pub/CPAN/</li><li>                      http://mirror.cc.columbia.edu/pub/software/cpan/</li><li>                      ftp://mirror.cc.columbia.edu/pub/software/cpan/</li><li>                      http://cpan.belfry.net/</li><li>                      http://cpan.erlbaum.net/</li><li>                      ftp://cpan.erlbaum.net/CPAN/</li><li>                      http://cpan.hexten.net/</li><li>                      ftp://cpan.hexten.net/</li><li>                      http://ftp.fxcorporate.com/CPAN/</li><li>                      ftp://ftp.fxcorporate.com/pub/CPAN/</li><li>                      ftp://mirror.nyi.net/CPAN/</li><li>                      http://mirror.rit.edu/CPAN/</li><li>                      ftp://mirror.rit.edu/CPAN/</li></ol></pre></li>
<li><a name="North-Carolina"></a><b>North Carolina</b>
<pre class="verbatim"><ol><li>                      http://www.ibiblio.org/pub/mirrors/CPAN</li><li>                      ftp://ftp.ncsu.edu/pub/mirror/CPAN/</li></ol></pre></li>
<li><a name="Oregon"></a><b>Oregon</b>
<pre class="verbatim"><ol><li>                      http://ftp.osuosl.org/pub/CPAN/</li><li>                      ftp://ftp.osuosl.org/pub/CPAN/</li></ol></pre></li>
<li><a name="Pennsylvania"></a><b>Pennsylvania</b>
<pre class="verbatim"><ol><li>                      http://ftp.epix.net/CPAN/</li><li>                      ftp://ftp.epix.net/pub/languages/perl/</li><li>                      http://cpan.pair.com/</li><li>                      ftp://cpan.pair.com/pub/CPAN/</li></ol></pre></li>
<li><a name="South-Carolina"></a><b>South Carolina</b>
<pre class="verbatim"><ol><li>                      http://cpan.mirror.clemson.edu/</li></ol></pre></li>
<li><a name="Tennessee"></a><b>Tennessee</b>
<pre class="verbatim"><ol><li>                      http://mira.sunsite.utk.edu/CPAN/</li></ol></pre></li>
<li><a name="Texas"></a><b>Texas</b>
<pre class="verbatim"><ol><li>                      http://mirror.uta.edu/CPAN</li></ol></pre></li>
<li><a name="Utah"></a><b>Utah</b>
<pre class="verbatim"><ol><li>                      http://cpan.cs.utah.edu</li><li>                      ftp://cpan.cs.utah.edu/pub/CPAN/</li><li>                      ftp://mirror.xmission.com/CPAN/</li></ol></pre></li>
<li><a name="Virginia"></a><b>Virginia</b>
<pre class="verbatim"><ol><li>                      http://cpan-du.viaverio.com/</li><li>                      ftp://cpan-du.viaverio.com/pub/CPAN/</li><li>                      http://perl.secsup.org/</li><li>                      ftp://perl.secsup.org/pub/perl/</li><li>                      ftp://mirror.cogentco.com/pub/CPAN/</li></ol></pre></li>
<li><a name="Washington"></a><b>Washington</b>
<pre class="verbatim"><ol><li>                      http://cpan.llarian.net/</li><li>                      ftp://cpan.llarian.net/pub/CPAN/</li><li>                      ftp://ftp-mirror.internap.com/pub/CPAN/</li></ol></pre></li>
<li><a name="Wisconsin"></a><b>Wisconsin</b>
<pre class="verbatim"><ol><li>                      http://cpan.mirrors.tds.net</li><li>                      ftp://cpan.mirrors.tds.net/pub/CPAN</li><li>                      http://mirror.sit.wisc.edu/pub/CPAN/</li><li>                      ftp://mirror.sit.wisc.edu/pub/CPAN/</li></ol></pre></li>
</ul>
</li>
</ul>
<a name="Oceania"></a><h2>Oceania</h2>
<ul>
<li><a name="Australia"></a><b>Australia</b>
<pre class="verbatim"><ol><li>                      http://mirror.internode.on.net/pub/cpan/</li><li>                      ftp://mirror.internode.on.net/pub/cpan/</li><li>                      http://cpan.mirror.aussiehq.net.au/</li><li>                      http://mirror.as24220.net/cpan/</li><li>                      ftp://mirror.as24220.net/cpan/</li></ol></pre></li>
<li><a name="New-Zealand"></a><b>New Zealand</b>
<pre class="verbatim"><ol><li>                      ftp://ftp.auckland.ac.nz/pub/perl/CPAN/</li><li>                      http://cpan.inspire.net.nz</li><li>                      ftp://cpan.inspire.net.nz/cpan</li><li>                      http://cpan.catalyst.net.nz/CPAN/</li><li>                      ftp://cpan.catalyst.net.nz/pub/CPAN/</li></ol></pre></li>
</ul>
<a name="South-America"></a><h2>South America</h2>
<ul>
<li><a name="Argentina"></a><b>Argentina</b>
<pre class="verbatim"><ol><li>                      http://cpan.patan.com.ar/</li><li>                      http://cpan.localhost.net.ar</li><li>                      ftp://mirrors.localhost.net.ar/pub/mirrors/CPAN</li></ol></pre></li>
<li><a name="Brazil"></a><b>Brazil</b>
<pre class="verbatim"><ol><li>                      ftp://cpan.pop-mg.com.br/pub/CPAN/</li><li>                      http://ftp.pucpr.br/CPAN</li><li>                      ftp://ftp.pucpr.br/CPAN</li><li>                      http://cpan.kinghost.net/</li><li>                      ftp://ftp.linorg.usp.br/CPAN</li></ol></pre></li>
<li><a name="Chile"></a><b>Chile</b>
<pre class="verbatim"><ol><li>                      http://cpan.dcc.uchile.cl/</li><li>                      ftp://cpan.dcc.uchile.cl/pub/lang/cpan/</li></ol></pre></li>
<li><a name="Colombia"></a><b>Colombia</b>
<pre class="verbatim"><ol><li>                      http://www.laqee.unal.edu.co/CPAN/</li></ol></pre></li>
</ul>
<a name="RSYNC-Mirrors"></a><h2>RSYNC Mirrors</h2>
<pre class="verbatim"><ol><li>                      mirror.as24220.net::cpan</li><li>                      cpan.inode.at::CPAN</li><li>                      gd.tuwien.ac.at::CPAN</li><li>                      ftp.belnet.be::packages/cpan</li><li>                      rsync.linorg.usp.br::CPAN</li><li>                      rsync.arcticnetwork.ca::CPAN</li><li>                      CPAN.mirror.rafal.ca::CPAN</li><li>                      mirror.csclub.uwaterloo.ca::CPAN</li><li>                      theoryx5.uwinnipeg.ca::CPAN</li><li>                      www.laqee.unal.edu.co::CPAN</li><li>                      mirror.uni-c.dk::CPAN</li><li>                      rsync.nic.funet.fi::CPAN</li><li>                      rsync://distrib-coffee.ipsl.jussieu.fr/pub/mirrors/cpan/</li><li>                      mir1.ovh.net::CPAN</li><li>                      miroir-francais.fr::cpan</li><li>                      ftp.crihan.fr::CPAN</li><li>                      rsync://mirror.cict.fr/cpan/</li><li>                      rsync://mirror.netcologne.de/cpan/</li><li>                      ftp-stud.hs-esslingen.de::CPAN/</li><li>                      ftp.gwdg.de::FTP/languages/perl/CPAN/</li><li>                      cpan.mirror.iphh.net::CPAN</li><li>                      cpan.cpantesters.org::cpan</li><li>                      cpan.hu::CPAN</li><li>                      komo.vlsm.org::CPAN</li><li>                      mirror.unej.ac.id::cpan</li><li>                      ftp.esat.net::/pub/languages/perl/CPAN</li><li>                      ftp.heanet.ie::mirrors/ftp.perl.org/pub/CPAN</li><li>                      rsync.panu.it::CPAN</li><li>                      cpan.fastbull.org::CPAN</li><li>                      ftp.kddilabs.jp::cpan</li><li>                      ftp.nara.wide.ad.jp::cpan/</li><li>                      rsync://ftp.jaist.ac.jp/pub/CPAN/</li><li>                      rsync://ftp.riken.jp/cpan/</li><li>                      mirror.linuxiso.kz::CPAN</li><li>                      rsync://mirrors3.kernel.org/mirrors/CPAN/</li><li>                      rsync://rsync.osmirror.nl/cpan/</li><li>                      mirror.leaseweb.com::CPAN</li><li>                      cpan.nautile.nc::CPAN</li><li>                      mirror.icis.pcz.pl::CPAN</li><li>                      piotrkosoft.net::mirrors/CPAN</li><li>                      rsync://cpan.perl.pt/</li><li>                      ftp.kaist.ac.kr::cpan</li><li>                      cpan.sarang.net::CPAN</li><li>                      mirror.averse.net::cpan</li><li>                      rsync.oss.eznetsols.org</li><li>                      mirror.ac.za::cpan</li><li>                      ftp.is.co.za::IS-Mirror/ftp.cpan.org/</li><li>                      rsync://ftp.gui.uva.es/cpan/</li><li>                      rsync://mirrors4.kernel.org/mirrors/CPAN/</li><li>                      ftp.solnet.ch::CPAN</li><li>                      ftp.ulak.net.tr::CPAN</li><li>                      gafol.net::cpan</li><li>                      rsync.mirrorservice.org::ftp.funet.fi/pub/</li><li>                      rsync://rsync.mirror.8086.net/CPAN/</li><li>                      rsync.mirror.anlx.net::CPAN</li><li>                      mirror.bytemark.co.uk::CPAN</li><li>                      ftp.plig.net::CPAN</li><li>                      rsync://ftp.ticklers.org:CPAN/</li><li>                      mirrors.ibiblio.org::CPAN</li><li>                      cpan-du.viaverio.com::CPAN</li><li>                      mirror.hiwaay.net::CPAN</li><li>                      rsync://mira.sunsite.utk.edu/CPAN/</li><li>                      cpan.mirrors.tds.net::CPAN</li><li>                      mirror.its.uidaho.edu::cpan</li><li>                      rsync://mirror.cc.columbia.edu::cpan/</li><li>                      ftp.fxcorporate.com::CPAN</li><li>                      rsync.atlantic.net::CPAN</li><li>                      mirrors.kernel.org::mirrors/CPAN</li><li>                      rsync://mirrors2.kernel.org/mirrors/CPAN/</li><li>                      cpan.pair.com::CPAN</li><li>                      rsync://mirror.rit.edu/CPAN/</li><li>                      rsync://mirror.facebook.net/cpan/</li><li>                      rsync://mirrors1.kernel.org/mirrors/CPAN/</li><li>                      cpan-sj.viaverio.com::CPAN</li></ol></pre><p>For an up-to-date listing of CPAN sites,
see <a href="http://www.cpan.org/SITES">http://www.cpan.org/SITES</a> or <a href="ftp://www.cpan.org/SITES">ftp://www.cpan.org/SITES</a> .</p>
<a name="Modules%3a-Creation%2c-Use%2c-and-Abuse"></a><h1>Modules: Creation, Use, and Abuse</h1>
<p>(The following section is borrowed directly from Tim Bunce's modules
file, available at your nearest CPAN site.)</p>
<p>Perl implements a class using a package, but the presence of a
package doesn't imply the presence of a class.  A package is just a
namespace.  A class is a package that provides subroutines that can be
used as methods.  A method is just a subroutine that expects, as its
first argument, either the name of a package (for "static" methods),
or a reference to something (for "virtual" methods).</p>
<p>A module is a file that (by convention) provides a class of the same
name (sans the .pm), plus an import method in that class that can be
called to fetch exported symbols.  This module may implement some of
its methods by loading dynamic C or C++ objects, but that should be
totally transparent to the user of the module.  Likewise, the module
might set up an AUTOLOAD function to slurp in subroutine definitions on
demand, but this is also transparent.  Only the <i>.pm</i> file is required to
exist.  See <a href="perlsub.html">perlsub</a>, <a href="perltoot.html">perltoot</a>, and <a href="AutoLoader.html">AutoLoader</a> for details about
the AUTOLOAD mechanism.</p>
<a name="Guidelines-for-Module-Creation"></a><h2>Guidelines for Module Creation</h2>
<ul>
<li>
<p>Do similar modules already exist in some form?</p>
<p>If so, please try to reuse the existing modules either in whole or
by inheriting useful features into a new class.  If this is not
practical try to get together with the module authors to work on
extending or enhancing the functionality of the existing modules.
A perfect example is the plethora of packages in perl4 for dealing
with command line options.</p>
<p>If you are writing a module to expand an already existing set of
modules, please coordinate with the author of the package.  It
helps if you follow the same naming scheme and module interaction
scheme as the original author.</p>
</li>
<li>
<p>Try to design the new module to be easy to extend and reuse.</p>
<p>Try to <code class="inline"><a class="l_k" href="functions/use.html">use</a> <span class="w">warnings</span><span class="sc">;</span></code>
 (or <code class="inline"><a class="l_k" href="functions/use.html">use</a> <span class="w">warnings</span> <span class="q">qw(...)</span><span class="sc">;</span></code>
).
Remember that you can add <code class="inline"><a class="l_k" href="functions/no.html">no</a> <span class="w">warnings</span> <span class="q">qw(...)</span><span class="sc">;</span></code>
 to individual blocks
of code that need less warnings.</p>
<p>Use blessed references.  Use the two argument form of bless to bless
into the class name given as the first parameter of the constructor,
e.g.,:</p>
<pre class="verbatim"><ol><li><a name="new"></a> sub <span class="m">new</span> <span class="s">{</span></li><li>     <a class="l_k" href="functions/my.html">my</a> <span class="i">$class</span> = <a class="l_k" href="functions/shift.html">shift</a><span class="sc">;</span></li><li>     <a class="l_k" href="functions/return.html">return</a> <a class="l_k" href="functions/bless.html">bless</a> <span class="s">{</span><span class="s">}</span><span class="cm">,</span> <span class="i">$class</span><span class="sc">;</span></li><li> <span class="s">}</span></li></ol></pre><p>or even this if you'd like it to be used as either a static
or a virtual method.</p>
<pre class="verbatim"><ol><li><a name="new"></a> sub <span class="m">new</span> <span class="s">{</span></li><li>     <a class="l_k" href="functions/my.html">my</a> <span class="i">$self</span>  = <a class="l_k" href="functions/shift.html">shift</a><span class="sc">;</span></li><li>     <a class="l_k" href="functions/my.html">my</a> <span class="i">$class</span> = <a class="l_k" href="functions/ref.html">ref</a><span class="s">(</span><span class="i">$self</span><span class="s">)</span> || <span class="i">$self</span><span class="sc">;</span></li><li>     <a class="l_k" href="functions/return.html">return</a> <a class="l_k" href="functions/bless.html">bless</a> <span class="s">{</span><span class="s">}</span><span class="cm">,</span> <span class="i">$class</span><span class="sc">;</span></li><li> <span class="s">}</span></li></ol></pre><p>Pass arrays as references so more parameters can be added later
(it's also faster).  Convert functions into methods where
appropriate.  Split large methods into smaller more flexible ones.
Inherit methods from other modules if appropriate.</p>
<p>Avoid class name tests like: <code class="inline"><a class="l_k" href="functions/die.html">die</a> <span class="q">&quot;Invalid&quot;</span> unless <a class="l_k" href="functions/ref.html">ref</a> <span class="i">$ref</span> eq <span class="q">&#39;FOO&#39;</span></code>
.
Generally you can delete the <code class="inline">eq <span class="q">&#39;FOO&#39;</span></code>
 part with no harm at all.
Let the objects look after themselves! Generally, avoid hard-wired
class names as far as possible.</p>
<p>Avoid <code class="inline"><span class="i">$r</span><span class="i">-&gt;Class::func</span><span class="s">(</span><span class="s">)</span></code>
 where using <code class="inline"><span class="i">@ISA</span>=<span class="q">qw(... Class ...)</span></code>
 and
<code class="inline"><span class="i">$r</span><span class="i">-&gt;func</span><span class="s">(</span><span class="s">)</span></code>
 would work (see <a href="perlbot.html">perlbot</a> for more details).</p>
<p>Use autosplit so little used or newly added functions won't be a
burden to programs that don't use them. Add test functions to
the module after __END__ either using AutoSplit or by saying:</p>
<pre class="verbatim"><ol><li> <a class="l_k" href="functions/eval.html">eval</a> <a class="l_k" href="functions/join.html">join</a><span class="s">(</span><span class="q">&#39;&#39;</span><span class="cm">,</span><span class="q">&lt;main::DATA&gt;</span><span class="s">)</span> || <a class="l_k" href="functions/die.html">die</a> <span class="i">$@</span> unless <a class="l_k" href="functions/caller.html">caller</a><span class="s">(</span><span class="s">)</span><span class="sc">;</span></li></ol></pre><p>Does your module pass the 'empty subclass' test? If you say
<code class="inline"><span class="i">@SUBCLASS::ISA</span> = <span class="q">qw(YOURCLASS)</span><span class="sc">;</span></code>
 your applications should be able
to use SUBCLASS in exactly the same way as YOURCLASS.  For example,
does your application still work if you change:  <code class="inline"><span class="i">$obj</span> = <span class="w">YOURCLASS</span><span class="w">-&gt;new</span><span class="s">(</span><span class="s">)</span><span class="sc">;</span></code>

into: <code class="inline"><span class="i">$obj</span> = <span class="w">SUBCLASS</span><span class="w">-&gt;new</span><span class="s">(</span><span class="s">)</span><span class="sc">;</span></code>
 ?</p>
<p>Avoid keeping any state information in your packages. It makes it
difficult for multiple other packages to use yours. Keep state
information in objects.</p>
<p>Always use <b>-w</b>.</p>
<p>Try to <code class="inline"><a class="l_k" href="functions/use.html">use</a> <span class="w">strict</span><span class="sc">;</span></code>
 (or <code class="inline"><a class="l_k" href="functions/use.html">use</a> <span class="w">strict</span> <span class="q">qw(...)</span><span class="sc">;</span></code>
).
Remember that you can add <code class="inline"><a class="l_k" href="functions/no.html">no</a> <span class="w">strict</span> <span class="q">qw(...)</span><span class="sc">;</span></code>
 to individual blocks
of code that need less strictness.</p>
<p>Always use <b>-w</b>.</p>
<p>Follow the guidelines in <a href="perlstyle.html">perlstyle</a>.</p>
<p>Always use <b>-w</b>.</p>
</li>
<li>
<p>Some simple style guidelines</p>
<p>The perlstyle manual supplied with Perl has many helpful points.</p>
<p>Coding style is a matter of personal taste. Many people evolve their
style over several years as they learn what helps them write and
maintain good code.  Here's one set of assorted suggestions that
seem to be widely used by experienced developers:</p>
<p>Use underscores to separate words.  It is generally easier to read
$var_names_like_this than $VarNamesLikeThis, especially for
non-native speakers of English. It's also a simple rule that works
consistently with VAR_NAMES_LIKE_THIS.</p>
<p>Package/Module names are an exception to this rule. Perl informally
reserves lowercase module names for 'pragma' modules like integer
and strict. Other modules normally begin with a capital letter and
use mixed case with no underscores (need to be short and portable).</p>
<p>You may find it helpful to use letter case to indicate the scope
or nature of a variable. For example:</p>
<pre class="verbatim"><ol><li> $ALL_CAPS_HERE   constants only (beware clashes with Perl vars)</li><li> $Some_Caps_Here  package-wide global/static</li><li> $no_caps_here    function scope my() or local() variables</li></ol></pre><p>Function and method names seem to work best as all lowercase.
e.g., <code class="inline"><span class="i">$obj</span><span class="i">-&gt;as_string</span><span class="s">(</span><span class="s">)</span></code>
.</p>
<p>You can use a leading underscore to indicate that a variable or
function should not be used outside the package that defined it.</p>
</li>
<li>
<p>Select what to export.</p>
<p>Do NOT export method names!</p>
<p>Do NOT export anything else by default without a good reason!</p>
<p>Exports pollute the namespace of the module user.  If you must
export try to use @EXPORT_OK in preference to @EXPORT and avoid
short or common names to reduce the risk of name clashes.</p>
<p>Generally anything not exported is still accessible from outside the
module using the ModuleName::item_name (or <code class="inline"><span class="i">$blessed_ref</span><span class="i">-&gt;method</span></code>
)
syntax.  By convention you can use a leading underscore on names to
indicate informally that they are 'internal' and not for public use.</p>
<p>(It is actually possible to get private functions by saying:
<code class="inline"><a class="l_k" href="functions/my.html">my</a> <span class="i">$subref</span> = <a class="l_k" href="functions/sub.html">sub</a> <span class="s">{</span> ... <span class="s">}</span><span class="sc">;</span>  <span class="i">&amp;$subref</span><span class="sc">;</span></code>
.  But there's no way to call that
directly as a method, because a method must have a name in the symbol
table.)</p>
<p>As a general rule, if the module is trying to be object oriented
then export nothing. If it's just a collection of functions then
@EXPORT_OK anything but use @EXPORT with caution.</p>
</li>
<li>
<p>Select a name for the module.</p>
<p>This name should be as descriptive, accurate, and complete as
possible.  Avoid any risk of ambiguity. Always try to use two or
more whole words.  Generally the name should reflect what is special
about what the module does rather than how it does it.  Please use
nested module names to group informally or categorize a module.
There should be a very good reason for a module not to have a nested name.
Module names should begin with a capital letter.</p>
<p>Having 57 modules all called Sort will not make life easy for anyone
(though having 23 called Sort::Quick is only marginally better :-).
Imagine someone trying to install your module alongside many others.
If in any doubt ask for suggestions in comp.lang.perl.misc.</p>
<p>If you are developing a suite of related modules/classes it's good
practice to use nested classes with a common prefix as this will
avoid namespace clashes. For example: Xyz::Control, Xyz::View,
Xyz::Model etc. Use the modules in this list as a naming guide.</p>
<p>If adding a new module to a set, follow the original author's
standards for naming modules and the interface to methods in
those modules.</p>
<p>If developing modules for private internal or project specific use,
that will never be released to the public, then you should ensure
that their names will not clash with any future public module. You
can do this either by using the reserved Local::* category or by
using a category name that includes an underscore like Foo_Corp::*.</p>
<p>To be portable each component of a module name should be limited to
11 characters. If it might be used on MS-DOS then try to ensure each is
unique in the first 8 characters. Nested modules make this easier.</p>
</li>
<li>
<p>Have you got it right?</p>
<p>How do you know that you've made the right decisions? Have you
picked an interface design that will cause problems later? Have
you picked the most appropriate name? Do you have any questions?</p>
<p>The best way to know for sure, and pick up many helpful suggestions,
is to ask someone who knows. Comp.lang.perl.misc is read by just about
all the people who develop modules and it's the best place to ask.</p>
<p>All you need to do is post a short summary of the module, its
purpose and interfaces. A few lines on each of the main methods is
probably enough. (If you post the whole module it might be ignored
by busy people - generally the very people you want to read it!)</p>
<p>Don't worry about posting if you can't say when the module will be
ready - just say so in the message. It might be worth inviting
others to help you, they may be able to complete it for you!</p>
</li>
<li>
<p>README and other Additional Files.</p>
<p>It's well known that software developers usually fully document the
software they write. If, however, the world is in urgent need of
your software and there is not enough time to write the full
documentation please at least provide a README file containing:</p>
<ul>
<li>
<p>A description of the module/package/extension etc.</p>
</li>
<li>
<p>A copyright notice - see below.</p>
</li>
<li>
<p>Prerequisites - what else you may need to have.</p>
</li>
<li>
<p>How to build it - possible changes to Makefile.PL etc.</p>
</li>
<li>
<p>How to install it.</p>
</li>
<li>
<p>Recent changes in this release, especially incompatibilities</p>
</li>
<li>
<p>Changes / enhancements you plan to make in the future.</p>
</li>
</ul>
<p>If the README file seems to be getting too large you may wish to
split out some of the sections into separate files: INSTALL,
Copying, ToDo etc.</p>
<ul>
<li>
<p>Adding a Copyright Notice.</p>
<p>How you choose to license your work is a personal decision.
The general mechanism is to assert your Copyright and then make
a declaration of how others may copy/use/modify your work.</p>
<p>Perl, for example, is supplied with two types of licence: The GNU GPL
and The Artistic Licence (see the files README, Copying, and Artistic,
or <a href="perlgpl.html">perlgpl</a> and <a href="perlartistic.html">perlartistic</a>).  Larry has good reasons for NOT
just using the GNU GPL.</p>
<p>My personal recommendation, out of respect for Larry, Perl, and the
Perl community at large is to state something simply like:</p>
<pre class="verbatim"><ol><li> Copyright (c) 1995 Your Name. All rights reserved.</li><li> This program is free software; you can redistribute it and/or</li><li> modify it under the same terms as Perl itself.</li></ol></pre><p>This statement should at least appear in the README file. You may
also wish to include it in a Copying file and your source files.
Remember to include the other words in addition to the Copyright.</p>
</li>
<li>
<p>Give the module a version/issue/release number.</p>
<p>To be fully compatible with the Exporter and MakeMaker modules you
should store your module's version number in a non-my package
variable called $VERSION.  This should be a floating point
number with at least two digits after the decimal (i.e., hundredths,
e.g, <code class="inline"><span class="i">$VERSION</span> = <span class="q">&quot;0.01&quot;</span></code>
).  Don't use a "1.3.2" style version.
See <a href="Exporter.html">Exporter</a> for details.</p>
<p>It may be handy to add a function or method to retrieve the number.
Use the number in announcements and archive file names when
releasing the module (ModuleName-1.02.tar.Z).
See perldoc ExtUtils::MakeMaker.pm for details.</p>
</li>
<li>
<p>How to release and distribute a module.</p>
<p>It's good idea to post an announcement of the availability of your
module (or the module itself if small) to the comp.lang.perl.announce
Usenet newsgroup.  This will at least ensure very wide once-off
distribution.</p>
<p>If possible, register the module with CPAN.  You should
include details of its location in your announcement.</p>
<p>Some notes about ftp archives: Please use a long descriptive file
name that includes the version number. Most incoming directories
will not be readable/listable, i.e., you won't be able to see your
file after uploading it. Remember to send your email notification
message as soon as possible after uploading else your file may get
deleted automatically. Allow time for the file to be processed
and/or check the file has been processed before announcing its
location.</p>
<p>FTP Archives for Perl Modules:</p>
<p>Follow the instructions and links on:</p>
<pre class="verbatim"><ol><li>   http://www.cpan.org/modules/00modlist.long.html</li><li>   http://www.cpan.org/modules/04pause.html</li></ol></pre><p>or upload to one of these sites:</p>
<pre class="verbatim"><ol><li>   https://pause.kbx.de/pause/</li><li>   http://pause.perl.org/</li></ol></pre><p>and notify &lt;modules@perl.org&gt;.</p>
<p>By using the WWW interface you can ask the Upload Server to mirror
your modules from your ftp or WWW site into your own directory on
CPAN!</p>
<p>Please remember to send me an updated entry for the Module list!</p>
</li>
<li>
<p>Take care when changing a released module.</p>
<p>Always strive to remain compatible with previous released versions.
Otherwise try to add a mechanism to revert to the
old behavior if people rely on it.  Document incompatible changes.</p>
</li>
</ul>
</li>
</ul>
<a name="Guidelines-for-Converting-Perl-4-Library-Scripts-into-Modules"></a><h2>Guidelines for Converting Perl 4 Library Scripts into Modules</h2>
<ul>
<li>
<p>There is no requirement to convert anything.</p>
<p>If it ain't broke, don't fix it! Perl 4 library scripts should
continue to work with no problems. You may need to make some minor
changes (like escaping non-array @'s in double quoted strings) but
there is no need to convert a .pl file into a Module for just that.</p>
</li>
<li>
<p>Consider the implications.</p>
<p>All Perl applications that make use of the script will need to
be changed (slightly) if the script is converted into a module.  Is
it worth it unless you plan to make other changes at the same time?</p>
</li>
<li>
<p>Make the most of the opportunity.</p>
<p>If you are going to convert the script to a module you can use the
opportunity to redesign the interface.  The guidelines for module
creation above include many of the issues you should consider.</p>
</li>
<li>
<p>The pl2pm utility will get you started.</p>
<p>This utility will read *.pl files (given as parameters) and write
corresponding *.pm files. The pl2pm utilities does the following:</p>
<ul>
<li>
<p>Adds the standard Module prologue lines</p>
</li>
<li>
<p>Converts package specifiers from ' to ::</p>
</li>
<li>
<p>Converts die(...) to croak(...)</p>
</li>
<li>
<p>Several other minor changes</p>
</li>
</ul>
<p>Being a mechanical process pl2pm is not bullet proof. The converted
code will need careful checking, especially any package statements.
Don't delete the original .pl file till the new .pm one works!</p>
</li>
</ul>
<a name="Guidelines-for-Reusing-Application-Code"></a><h2>Guidelines for Reusing Application Code</h2>
<ul>
<li>
<p>Complete applications rarely belong in the Perl Module Library.</p>
</li>
<li>
<p>Many applications contain some Perl code that could be reused.</p>
<p>Help save the world! Share your code in a form that makes it easy
to reuse.</p>
</li>
<li>
<p>Break-out the reusable code into one or more separate module files.</p>
</li>
<li>
<p>Take the opportunity to reconsider and redesign the interfaces.</p>
</li>
<li>
<p>In some cases the 'application' can then be reduced to a small</p>
<p>fragment of code built on top of the reusable modules. In these cases
the application could invoked as:</p>
<pre class="verbatim"><ol><li>     <span class="i">% perl</span> -<span class="w">e</span> <span class="q">&#39;use Module::Name; method(@ARGV)&#39;</span> ...</li><li>or</li><li>     <span class="i">% perl</span> -<span class="w">mModule::Name</span> ...    <span class="s">(</span><span class="w">in</span> <span class="w">perl5</span><span class="n">.002</span> or <span class="w">higher</span><span class="s">)</span></li></ol></pre></li>
</ul>
<a name="NOTE"></a><h1>NOTE</h1>
<p>Perl does not enforce private and public parts of its modules as you may
have been used to in other languages like C++, Ada, or Modula-17.  Perl
doesn't have an infatuation with enforced privacy.  It would prefer
that you stayed out of its living room because you weren't invited, not
because it has a shotgun.</p>
<p>The module and its user have a contract, part of which is common law,
and part of which is "written".  Part of the common law contract is
that a module doesn't pollute any namespace it wasn't asked to.  The
written contract for the module (A.K.A. documentation) may make other
provisions.  But then you know when you <code class="inline"><a class="l_k" href="functions/use.html">use</a> <span class="w">RedefineTheWorld</span></code>
 that
you're redefining the world and willing to take the consequences.</p>




  <div id="page_index" class="hud_container">
    <div id="page_index_header" class="hud_header">
      <div id="page_index_close" class="hud_close"><a href="#" onClick="pageIndex.hide();return false;"></a></div>
      <div id="page_index_title" class="hud_title"><span class="hud_span_top">Page index</span></div>
      <div id="page_index_topright" class="hud_topright"></div>
    </div>
    <div id="page_index_content" class="hud_content">
      <ul><li><a href="#NAME">NAME</a><li><a href="#THE-PERL-MODULE-LIBRARY">THE PERL MODULE LIBRARY</a><ul><li><a href="#Pragmatic-Modules">Pragmatic Modules</a><li><a href="#Standard-Modules">Standard Modules</a><li><a href="#Extension-Modules">Extension Modules</a></ul><li><a href="#CPAN">CPAN</a><ul><li><a href="#Africa">Africa</a><li><a href="#Asia">Asia</a><li><a href="#Central-America">Central America</a><li><a href="#Europe">Europe</a><li><a href="#North-America">North America</a><li><a href="#Oceania">Oceania</a><li><a href="#South-America">South America</a><li><a href="#RSYNC-Mirrors">RSYNC Mirrors</a></ul><li><a href="#Modules%3a-Creation%2c-Use%2c-and-Abuse">Modules: Creation, Use, and Abuse</a><ul><li><a href="#Guidelines-for-Module-Creation">Guidelines for Module Creation</a><li><a href="#Guidelines-for-Converting-Perl-4-Library-Scripts-into-Modules">Guidelines for Converting Perl 4 Library Scripts into Modules</a><li><a href="#Guidelines-for-Reusing-Application-Code">Guidelines for Reusing Application Code</a></ul><li><a href="#NOTE">NOTE</a></ul>
    </div>
    <div id="page_index_footer" class="hud_footer">
      <div id="page_index_bottomleft" class="hud_bottomleft"></div>
      <div id="page_index_bottom" class="hud_bottom"><span class="hud_span_bottom"></span></div>
      <div id="page_index_resize" class="hud_resize"></div>
    </div>
  </div>


	    &nbsp;
          </div>
          <div id="content_footer">
          </div>
        </div>
        <div class="clear"></div>
      </div>
      
    <div id="footer">
      <div id="footer_content">
        <div id="footer_strapline">
          perldoc.perl.org - Official documentation for the Perl programming language
        </div>
        <div id="footer_links">
          <div id="address">
            <p class="name">Contact details</p>
            <p class="address">
	      Site maintained by <a href="http://perl.jonallen.info">Jon Allen (JJ)</a><br>
	      See the <a href="http://perl.jonallen.info/projects/perldoc">project page</a> for more details
	    </p>
            <p class="contact">
              Documentation maintained by the <a href="http://lists.cpan.org/showlist.cgi?name=perl5-porters">Perl 5 Porters</a>
            </p>
          </div>
          <ul class="f1">
            <li>Manual
              <ul class="f2">
                <li><a href="index-overview.html">Overview</a>
                <li><a href="index-tutorials.html">Tutorials</a>
                <li><a href="index-faq.html">FAQs</a>
                <li><a href="index-history.html">Changes</a>
              </ul>
            <li>Reference
              <ul class="f2">
                <li><a href="index-language.html">Language</a>
                <li><a href="index-functions.html">Functions</a>
                <li><a href="perlop.html">Operators</a>
                <li><a href="perlvar.html">Variables</a>
              </ul>
            <li>Modules
              <ul class="f2">
                <li><a href="index-modules-A.html">Modules</a>
                <li><a href="index-pragmas.html">Pragmas</a>
                <li><a href="index-utilities.html">Utilities</a>
              </ul>
            <li>Misc
              <ul class="f2">
                <li><a href="index-licence.html">License</a>
                <li><a href="index-internals.html">Internals</a>
                <li><a href="index-platforms.html">Platforms</a>
              </ul>          </ul>
          <div class="clear"></div>
        </div>
      </div>
      <div id="footer_end">
      </div>
    </div>
      
    </div>
      <script language="JavaScript" type="text/javascript" src="static/exploreperl.js"></script>
      <script language="JavaScript" src="static/combined-20100403.js" type="text/javascript"></script>
<script language="JavaScript" type="text/javascript">
  perldoc.setPath(0);
  perldoc.pageName    = 'perlmodlib';
  perldoc.pageAddress = 'perlmodlib.html';
  perldoc.contentPage = 1;
  explorePerl.render();
  explorePerl.addEvents('explore_anchor');
</script>
    
  </body>
</html>