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
|
=pod
=head1 NAME
Locale::Currency - standard codes for currency identification
=head1 SYNOPSIS
use Locale::Currency;
$curr = code2currency('usd'); # $curr gets 'US Dollar'
$code = currency2code('Euro'); # $code gets 'eur'
@codes = all_currency_codes();
@names = all_currency_names();
=head1 DESCRIPTION
This module exists as both Locale::Codes::Currency and Locale::Currency (for
historical reasons). The Locale::Currency module will continue to work.
The C<Locale::Currency> module provides access to standard codes used
for identifying currencies and funds, such as those defined in ISO 4217.
Most of the routines take an optional additional argument which
specifies the code set to use. If not specified, the default ISO
4217 three-letter codes will be used.
=head1 SUPPORTED CODE SETS
There are several different code sets you can use for identifying
currencies. The ones currently supported are:
=over 4
=item B<alpha>
This is a set of three-letter (uppercase) codes from ISO 4217 such
as EUR for Euro.
Two of the codes specified by the standard (XTS which is reserved
for testing purposes and XXX which is for transactions where no
currency is involved) are omitted.
This code set is identified with the symbol C<LOCALE_CURR_ALPHA>.
This is the default code set.
=item B<num>
This is the set of three-digit numeric codes from ISO 4217.
This code set is identified with the symbol C<LOCALE_CURR_NUMERIC>.
=back
=head1 ROUTINES
=over 4
=item B<code2currency ( CODE [,CODESET] )>
=item B<currency2code ( NAME [,CODESET] )>
=item B<currency_code2code ( CODE ,CODESET ,CODESET2 )>
=item B<all_currency_codes ( [CODESET] )>
=item B<all_currency_names ( [CODESET] )>
=item B<Locale::Currency::rename_currency ( CODE ,NEW_NAME [,CODESET] )>
=item B<Locale::Currency::add_currency ( CODE ,NAME [,CODESET] )>
=item B<Locale::Currency::delete_currency ( CODE [,CODESET] )>
=item B<Locale::Currency::add_currency_alias ( NAME ,NEW_NAME )>
=item B<Locale::Currency::delete_currency_alias ( NAME )>
=item B<Locale::Currency::rename_currency_code ( CODE ,NEW_CODE [,CODESET] )>
=item B<Locale::Currency::add_currency_code_alias ( CODE ,NEW_CODE [,CODESET] )>
=item B<Locale::Currency::delete_currency_code_alias ( CODE [,CODESET] )>
These routines are all documented in the Locale::Codes::API man page.
=back
=head1 SEE ALSO
=over 4
=item B<Locale::Codes>
The Locale-Codes distribution.
=item B<Locale::Codes::API>
The list of functions supported by this module.
=item B<http://www.iso.org/iso/support/currency_codes_list-1.htm>
The ISO 4217 data.
=back
=head1 AUTHOR
See Locale::Codes for full author history.
Currently maintained by Sullivan Beck (sbeck@cpan.org).
=head1 COPYRIGHT
Copyright (c) 1997-2001 Canon Research Centre Europe (CRE).
Copyright (c) 2001 Michael Hennecke
Copyright (c) 2001-2010 Neil Bowers
Copyright (c) 2010-2011 Sullivan Beck
This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
=cut
|