| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Acme::CPANModules::CountryCodes; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
261974
|
use strict; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
46
|
|
|
4
|
1
|
|
|
1
|
|
472
|
use Acme::CPANModulesUtil::Misc; |
|
|
1
|
|
|
|
|
553
|
|
|
|
1
|
|
|
|
|
116
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY |
|
7
|
|
|
|
|
|
|
our $DATE = '2023-10-20'; # DATE |
|
8
|
|
|
|
|
|
|
our $DIST = 'Acme-CPANModules-CountryCodes'; # DIST |
|
9
|
|
|
|
|
|
|
our $VERSION = '0.006'; # VERSION |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
our $LIST = { |
|
12
|
|
|
|
|
|
|
summary => 'List of modules related to country codes', |
|
13
|
|
|
|
|
|
|
description => <<'MARKDOWN', |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
## Basics |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
and (both part of |
|
18
|
|
|
|
|
|
|
now) should be your first go-to module. They are core modules |
|
19
|
|
|
|
|
|
|
since perl 5.14 (Locale::Country from 5.8) and they support converting between |
|
20
|
|
|
|
|
|
|
English country names and 2-letter- and 3-letter ISO country codes, and retired |
|
21
|
|
|
|
|
|
|
codes. If you need to squeeze some milliseconds of loading time, you can use |
|
22
|
|
|
|
|
|
|
directly. |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
## Multilingual |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
There are some modules for non-English country names, e.g. |
|
28
|
|
|
|
|
|
|
(for French). There is also |
|
29
|
|
|
|
|
|
|
to map ISO codes to localized country names. |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
## Subcountries |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
## Types |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Sah: , , |
|
40
|
|
|
|
|
|
|
. |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Moose: , |
|
43
|
|
|
|
|
|
|
. |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
## Other modules |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
## CLI utilities |
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
MARKDOWN |
|
56
|
|
|
|
|
|
|
'x.app.cpanmodules.show_entries' => 0, |
|
57
|
|
|
|
|
|
|
}; |
|
58
|
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
Acme::CPANModulesUtil::Misc::populate_entries_from_module_links_in_description; |
|
60
|
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
1; |
|
62
|
|
|
|
|
|
|
# ABSTRACT: List of modules related to country codes |
|
63
|
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
__END__ |