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
//! Boolean character predicates.
//!
//! Each predicate is available both as a free `const fn` taking a [`char`] and
//! as a method on the [`CharExt`] trait. Predicates backed by a derived Unicode
//! property (`is_alphabetic`, `is_uppercase`, `is_lowercase`, `is_whitespace`)
//! consult their own generated tables; the rest are derived from the
//! [`GeneralCategory`].
//!
//! All predicates are total: a codepoint outside the compiled range tier (or one
//! that is genuinely unassigned) reports its neutral value (`false`, or
//! [`GeneralCategory::Unassigned`]).
use GeneralCategory;
use binary_props;
use general_category as gc_raw;
pub use ;
/// The [`GeneralCategory`] of `c`.
pub const
/// The [`GeneralCategory`] of an arbitrary Unicode scalar value, including
/// values that are not valid [`char`]s (e.g. surrogate codepoints).
pub const
/// `Alphabetic` derived core property (broader than the `L*` categories: it also
/// includes `Other_Alphabetic` codepoints such as many combining marks).
pub const
/// `Uppercase` derived core property (includes `Other_Uppercase` beyond `Lu`).
pub const
/// `Lowercase` derived core property (includes `Other_Lowercase` beyond `Ll`).
pub const
/// `White_Space` property (e.g. space, tab, newline, NBSP) — not the same as the
/// `Z*` separator categories.
pub const
/// Any letter (`L*`).
pub const
/// Any mark (`M*`).
pub const
/// Any number (`N*`: decimal, letter, or other).
pub const
/// A decimal digit (`Nd` only).
pub const
/// Any punctuation (`P*`).
pub const
/// Any symbol (`S*`).
pub const
/// Any separator (`Z*`).
pub const
/// A control character (`Cc`).
pub const
/// A format character (`Cf`).
pub const
/// `true` if `c` is assigned a category other than `Cn` (Unassigned). Note that
/// a codepoint outside the compiled range tier reports `false` here.
pub const
/// `Math` property (mathematical symbols and operators).
pub const
/// `Default_Ignorable_Code_Point` (e.g. ZWJ, variation selectors, soft hyphen) —
/// characters that should be ignored in rendering when unsupported.
pub const
/// The mirrored character to use for `c` when laying out right-to-left text
/// (e.g. `(` ↔ `)`, `<` ↔ `>`), or `None` if `c` has no mirror glyph (UAX #9 /
/// `BidiMirroring.txt`).
///
/// ```
/// use intl::unicode::bidi_mirror;
/// assert_eq!(bidi_mirror('('), Some(')'));
/// assert_eq!(bidi_mirror('»'), Some('«'));
/// assert_eq!(bidi_mirror('a'), None);
/// ```
pub const
/// The `Bidi_Mirrored` property: `true` if `c`'s glyph is mirrored when rendered
/// in a right-to-left context (a superset of the characters that have an
/// explicit [`bidi_mirror`] mapping).
pub const
/// `Changes_When_Lowercased`: `c` is altered by full lowercasing.
pub const
/// `Changes_When_Uppercased`: `c` is altered by full uppercasing.
pub const
/// `Changes_When_Titlecased`: `c` is altered by full titlecasing.
pub const
/// `Changes_When_Casefolded`: `c` is altered by case folding.
pub const
/// `Changes_When_Casemapped`: `c` is altered by any of lower/upper/title-casing.
pub const
/// The Unicode `Age` of `c`: the `(major, minor)` version in which the codepoint
/// was assigned, or `None` if it is unassigned (in the compiled range).
///
/// ```
/// use intl::unicode::age;
/// assert_eq!(age('A'), Some((1, 1)));
/// assert_eq!(age('\u{20BF}'), Some((10, 0))); // ₿ BITCOIN SIGN, Unicode 10.0
/// assert_eq!(age('\u{E0000}'), None); // unassigned
/// ```
pub const
/// The Unicode `Block` name of `c` (e.g. `"Basic Latin"`, `"CJK Unified
/// Ideographs"`), or `"No_Block"` if the codepoint is in no assigned block.
///
/// ```
/// use intl::unicode::block;
/// assert_eq!(block('A'), "Basic Latin");
/// assert_eq!(block('日'), "CJK Unified Ideographs");
/// assert_eq!(block('\u{0590}'), "Hebrew");
/// ```
pub const
/// The `Joining_Type` of `c` (Arabic/Syriac cursive joining behavior, UAX #9).
///
/// ```
/// use intl::unicode::{joining_type, JoiningType};
/// assert_eq!(joining_type('\u{0628}'), JoiningType::DualJoining); // ARABIC BEH
/// assert_eq!(joining_type('\u{0627}'), JoiningType::RightJoining); // ARABIC ALEF
/// assert_eq!(joining_type('\u{0640}'), JoiningType::JoinCausing); // TATWEEL
/// assert_eq!(joining_type('A'), JoiningType::NonJoining);
/// ```
pub const
/// The `Joining_Group` of `c` (the Arabic/Syriac letter shaping class, UAX #9) —
/// `NoJoiningGroup` for non-joining characters.
///
/// ```
/// use intl::unicode::{joining_group, JoiningGroup};
/// assert_eq!(joining_group('\u{0628}'), JoiningGroup::Beh); // ARABIC BEH
/// assert_eq!(joining_group('\u{0627}'), JoiningGroup::Alef); // ARABIC ALEF
/// assert_eq!(joining_group('A'), JoiningGroup::NoJoiningGroup);
/// ```
pub const
/// The `Indic_Syllabic_Category` of `c` (UAX #44) — the structural role a
/// character plays in Indic-style scripts; `Other` for everything else.
///
/// ```
/// use intl::unicode::{indic_syllabic_category, IndicSyllabicCategory};
/// assert_eq!(indic_syllabic_category('\u{0915}'), IndicSyllabicCategory::Consonant); // DEVANAGARI KA
/// assert_eq!(indic_syllabic_category('\u{094D}'), IndicSyllabicCategory::Virama); // DEVANAGARI VIRAMA
/// assert_eq!(indic_syllabic_category('A'), IndicSyllabicCategory::Other);
/// ```
pub const
/// The `Indic_Positional_Category` of `c` (UAX #44) — where a dependent
/// character sits relative to its base; `NotApplicable` for everything else.
///
/// ```
/// use intl::unicode::{indic_positional_category, IndicPositionalCategory};
/// assert_eq!(indic_positional_category('\u{093F}'), IndicPositionalCategory::Left); // DEVANAGARI VOWEL SIGN I
/// assert_eq!(indic_positional_category('A'), IndicPositionalCategory::NotApplicable);
/// ```
pub const
/// `Dash` property (dash punctuation and dash symbols).
pub const
/// `Diacritic` property (accents and other modifying marks).
pub const
/// `Hex_Digit` property (characters usable as hexadecimal digits, ASCII and
/// fullwidth).
pub const
/// `Quotation_Mark` property.
pub const
/// `Join_Control` property (ZWNJ and ZWJ).
pub const
/// Character-classification methods mirroring the free functions in this module.
///
/// Implemented for [`char`]; bring it into scope to call e.g. `'x'.is_letter()`.