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
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use ;
// re-export integrations:
pub use chrono;
pub use hashbrown;
pub use iso_currency;
/// Find first match in all included country iso short names.
///
/// Note that provided argument SHOULD be lowercase.
/// You need to enable `search-iso-short-name` feature to use this function.
///
/// ## Memory notes
/// If you enabling this feature, Keshvar creates a global [`lazy_static`](https://docs.rs/lazy_static/latest/lazy_static/) hashmap and keeps all of included country iso shortnames in it.
///
/// # Example
/// ```
/// use keshvar::{Alpha2, Country, find_by_iso_short_name};
///
/// let short_name = "united arab emirates"; // I'm sure it's lowercase
/// assert_eq!(Ok(Country::from(Alpha2::AE)), find_by_iso_short_name(short_name));
///
/// let other_short_name = "iTaLy";
/// assert_eq!(
/// Ok(Country::from(Alpha2::IT)),
/// find_by_iso_short_name(&other_short_name.to_lowercase()) // I'm NOT sure if it's lowercase
/// );
/// ```
/// Find first match in all included country iso long names.
///
/// Note that provided argument SHOULD be lowercase.
///
/// You need to enable `search-iso-long-name` feature to use this function.
///
/// ## Memory notes
/// If you enabling this feature, Keshvar creates a global [`lazy_static`](https://docs.rs/lazy_static/latest/lazy_static/) hashmap and keeps all of included country iso longnames in it.
///
/// # Example
/// ```
/// use keshvar::{Alpha2, Country, find_by_iso_long_name};
///
/// let long_name = "the united mexican states"; // I'm sure it's lowercase
/// assert_eq!(Ok(Country::from(Alpha2::MX)), find_by_iso_long_name(long_name));
///
/// let other_long_name = "tHe repUblic Of UgAndA";
/// assert_eq!(
/// Ok(Country::from(Alpha2::UG)),
/// find_by_iso_long_name(&other_long_name.to_lowercase()) // I'm NOT sure if it's lowercase
/// );
/// ```
/// Find by country code.
///
/// You need to enable `search-country-code` feature to use this function.
///
/// ## Memory notes
/// If you enabling this feature, Keshvar creates a global [`lazy_static`](https://docs.rs/lazy_static/latest/lazy_static/) hashmap and keeps all of included country codes in it.
///
/// # Example
/// ```
/// use keshvar::{Alpha2, Country, find_by_code};
///
/// let country_code = 880; // The People's Republic of Bangladesh (Asia)
/// assert_eq!(Ok(Country::from(Alpha2::BD)), find_by_code(country_code));
/// ```
/// Find by ISO 3166-1 number.
///
/// You need to enable `search-iso-number` feature to use this function.
///
/// ## Memory notes
/// If you enabling this feature, Keshvar creates a global [`lazy_static`](https://docs.rs/lazy_static/latest/lazy_static/) hashmap and keeps all of included country numbers in it.
///
/// # Example
/// ```
/// use keshvar::{Alpha2, Country, find_by_number};
///
/// let number = 704; // Vietnam
/// assert_eq!(Ok(Country::from(Alpha2::VN)), find_by_number(number));
/// ```
/// [`find_by_iso_long_name`](crate::find_by_iso_long_name) + [`find_by_iso_short_name`](crate::find_by_iso_short_name) + find in all translated and unofficial names.
///
/// Note that provided argument SHOULD be lowercase.
///
/// You need to enable `search-translations` feature to use this function.
///
/// ## Memory notes
/// If you enabling this feature, Keshvar creates a global [`lazy_static`](https://docs.rs/lazy_static/latest/lazy_static/) hashmap and keeps all of included country names and their translations in it.
///
/// # Example
/// ```
/// use keshvar::{Alpha2, Country, find_by_name};
///
/// let name = "Amerika"; // US in Māori language
/// assert_eq!(
/// Ok(Country::from(Alpha2::US)),
/// find_by_name(&name.to_lowercase()) // I'm NOT sure if it's lowercase
/// );
///
/// let name = "deutschland"; // Unofficial name for Germany
/// assert_eq!(
/// Ok(Country::from(Alpha2::DE)),
/// find_by_name(name) // I'm sure it's lowercase
/// );
/// ```