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
pub mod apf_consonant_wide {
/// Checks if the given character is a APF consonant: wide alef.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_wide_alef;
///
/// let consonant = 'ﬡ';
/// assert!(is_apf_consonant_wide_alef(consonant));
/// ```
pub fn is_apf_consonant_wide_alef(c: char) -> bool {
// U+FB21
matches!(c, '\u{FB21}')
}
/// Checks if the given character is a APF consonant: wide dalet.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_wide_dalet;
///
/// let consonant = 'ﬢ';
/// assert!(is_apf_consonant_wide_dalet(consonant));
/// ```
pub fn is_apf_consonant_wide_dalet(c: char) -> bool {
// U+FB22
matches!(c, '\u{FB22}')
}
/// Checks if the given character is a APF consonant: wide he.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_wide_he;
///
/// let consonant = 'ﬣ';
/// assert!(is_apf_consonant_wide_he(consonant));
/// ```
pub fn is_apf_consonant_wide_he(c: char) -> bool {
// U+FB23
matches!(c, '\u{FB23}')
}
/// Checks if the given character is a APF consonant: wide kaf.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_wide_kaf;
///
/// let consonant = 'ﬤ';
/// assert!(is_apf_consonant_wide_kaf(consonant));
/// ```
pub fn is_apf_consonant_wide_kaf(c: char) -> bool {
// U+FB24
matches!(c, '\u{FB24}')
}
/// Checks if the given character is a APF consonant: wide lamed.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_wide_lamed;
///
/// let consonant = 'ﬥ';
/// assert!(is_apf_consonant_wide_lamed(consonant));
/// ```
pub fn is_apf_consonant_wide_lamed(c: char) -> bool {
// U+FB25
matches!(c, '\u{FB25}')
}
/// Checks if the given character is a APF consonant wide: final-mem.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_wide_final_mem;
///
/// let consonant = 'ﬦ';
/// assert!(is_apf_consonant_wide_final_mem(consonant));
/// ```
pub fn is_apf_consonant_wide_final_mem(c: char) -> bool {
// U+FB26
matches!(c, '\u{FB26}')
}
/// Checks if the given character is a APF consonant: wide resh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_wide_resh;
///
/// let consonant = 'ﬧ';
/// assert!(is_apf_consonant_wide_resh(consonant));
/// ```
pub fn is_apf_consonant_wide_resh(c: char) -> bool {
// U+FB27
matches!(c, '\u{FB27}')
}
/// Checks if the given character is a APF consonant: with tav.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_wide_tav;
///
/// let consonant = 'ﬨ';
/// assert!(is_apf_consonant_wide_tav(consonant));
/// ```
pub fn is_apf_consonant_wide_tav(c: char) -> bool {
// U+FB28
matches!(c, '\u{FB28}')
}
}
pub mod apf_consonant_with_vowel {
/// Checks if the character is a APF consonant with vowel: yod & hiriq.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_yod_hiriq;
///
/// let consonant = 'יִ';
/// assert!(is_apf_consonant_vowel_yod_hiriq(consonant));
/// ```
pub fn is_apf_consonant_vowel_yod_hiriq(c: char) -> bool {
// U+FB1D
matches!(c, '\u{FB1D}')
}
/// Checks if the character is a APF consonant with vowel: shin & shindot.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_shin_shindot;
///
/// let consonant = 'שׁ';
/// assert!(is_apf_consonant_vowel_shin_shindot(consonant));
/// ```
pub fn is_apf_consonant_vowel_shin_shindot(c: char) -> bool {
// U+FB2A
matches!(c, '\u{FB2A}')
}
/// Checks if the character is a APF consonant with vowel: shin & sindot.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_shin_sindot;
///
/// let consonant = 'שׂ';
/// assert!(is_apf_consonant_vowel_shin_sindot(consonant));
/// ```
pub fn is_apf_consonant_vowel_shin_sindot(c: char) -> bool {
// U+FB2B
matches!(c, '\u{FB2B}')
}
/// Checks if the character is a APF consonant with vowel: shin & dagesh & shindot.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_shin_dagesh_shindot;
///
/// let consonant = 'שּׁ';
/// assert!(is_apf_consonant_vowel_shin_dagesh_shindot(consonant));
/// ```
pub fn is_apf_consonant_vowel_shin_dagesh_shindot(c: char) -> bool {
// U+FB2C
matches!(c, '\u{FB2C}')
}
/// Checks if the character is a APF consonant with vowel: shin & dagesh & sindot.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_shin_dagesh_sindot;
///
/// let consonant = 'שּׂ';
/// assert!(is_apf_consonant_vowel_shin_dagesh_sindot(consonant));
/// ```
pub fn is_apf_consonant_vowel_shin_dagesh_sindot(c: char) -> bool {
// U+FB2D
matches!(c, '\u{FB2D}')
}
/// Checks if the given character is a APF consonant with vowel: alef & patah.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_alef_patah;
///
/// let consonant = 'אַ';
/// assert!(is_apf_consonant_vowel_alef_patah(consonant));
/// ```
pub fn is_apf_consonant_vowel_alef_patah(c: char) -> bool {
// U+FB2E
matches!(c, '\u{FB2E}')
}
/// Checks if the given character is a APF consonant with vowel: alef & qamats.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_alef_qamats;
///
/// let consonant = 'אָ';
/// assert!(is_apf_consonant_vowel_alef_qamats(consonant));
/// ```
pub fn is_apf_consonant_vowel_alef_qamats(c: char) -> bool {
// U+FB2F
matches!(c, '\u{FB2F}')
}
/// Checks if the given character is a APF consonant with vowel: alef & mapiq.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_alef_mapiq;
///
/// let consonant = 'אּ';
/// assert!(is_apf_consonant_vowel_alef_mapiq(consonant));
/// ```
pub fn is_apf_consonant_vowel_alef_mapiq(c: char) -> bool {
// U+FB30
matches!(c, '\u{FB30}')
}
/// Checks if the given character is a APF consonant with vowel: bet & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_bet_dagesh;
///
/// let consonant = 'בּ';
/// assert!(is_apf_consonant_vowel_bet_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_bet_dagesh(c: char) -> bool {
// U+FB31
matches!(c, '\u{FB31}')
}
/// Checks if the given character is a APF consonant with vowel: gimel & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_gimmel_dagesh;
///
/// let consonant = 'גּ';
/// assert!(is_apf_consonant_vowel_gimmel_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_gimmel_dagesh(c: char) -> bool {
// U+FB32
matches!(c, '\u{FB32}')
}
/// Checks if the given character is a APF consonant with vowel: dalet & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_dalet_dagesh;
///
/// let consonant = 'דּ';
/// assert!(is_apf_consonant_vowel_dalet_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_dalet_dagesh(c: char) -> bool {
// U+FB33
matches!(c, '\u{FB33}')
}
/// Checks if the given character is a APF consonant with vowel: he & mapiq.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_he_mapiq;
///
/// let consonant = 'הּ';
/// assert!(is_apf_consonant_vowel_he_mapiq(consonant));
/// ```
pub fn is_apf_consonant_vowel_he_mapiq(c: char) -> bool {
// U+FB34
matches!(c, '\u{FB34}')
}
/// Checks if the given character is a APF consonant with vowel: vav & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_vav_dagesh;
///
/// let consonant = 'וּ';
/// assert!(is_apf_consonant_vowel_vav_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_vav_dagesh(c: char) -> bool {
// U+FB35
matches!(c, '\u{FB35}')
}
/// Checks if the given character is a APF consonant with vowel: zayin & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_zayin_dagesh;
///
/// let consonant = 'זּ';
/// assert!(is_apf_consonant_vowel_zayin_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_zayin_dagesh(c: char) -> bool {
// U+FB36
matches!(c, '\u{FB36}')
}
/// Checks if the given character is a APF consonant with vowel: tet & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_tet_dagesh;
///
/// let consonant = 'טּ';
/// assert!(is_apf_consonant_vowel_tet_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_tet_dagesh(c: char) -> bool {
// U+FB38
matches!(c, '\u{FB38}')
}
/// Checks if the given character is a APF consonant with vowel: yod & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_yod_dagesh;
///
/// let consonant = 'יּ';
/// assert!(is_apf_consonant_vowel_yod_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_yod_dagesh(c: char) -> bool {
// U+FB39
matches!(c, '\u{FB39}')
}
/// Checks if the given character is a APF consonant with vowel: final-kaf & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_final_kaf_dagesh;
///
/// let consonant = 'ךּ';
/// assert!(is_apf_consonant_vowel_final_kaf_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_final_kaf_dagesh(c: char) -> bool {
// U+FB3A
matches!(c, '\u{FB3A}')
}
/// Checks if the given character is a APF consonant with vowel: kaf & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_kaf_dagesh;
///
/// let consonant = 'כּ';
/// assert!(is_apf_consonant_vowel_kaf_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_kaf_dagesh(c: char) -> bool {
// U+FB3B
matches!(c, '\u{FB3B}')
}
/// Checks if the given character is a APF consonant with vowel: lamed & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_lamed_dagesh;
///
/// let consonant = 'לּ';
/// assert!(is_apf_consonant_vowel_lamed_dagesh(consonant));
///
/// ```
pub fn is_apf_consonant_vowel_lamed_dagesh(c: char) -> bool {
// U+FB3C
matches!(c, '\u{FB3C}')
}
/// Checks if the given character is a APF consonant with vowel: mem & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_mem_dagesh;
///
/// let consonant = 'מּ';
/// assert!(is_apf_consonant_vowel_mem_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_mem_dagesh(c: char) -> bool {
// U+FB3E
matches!(c, '\u{FB3E}')
}
/// Checks if the given character is a APF consonant with vowel: nun & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_nun_dagesh;
///
/// let consonant = 'נּ';
/// assert!(is_apf_consonant_vowel_nun_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_nun_dagesh(c: char) -> bool {
// U+FB40
matches!(c, '\u{FB40}')
}
/// Checks if the given character is a APF consonant with vowel: samekh & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_samekh_dagesh;
///
/// let consonant = 'סּ';
/// assert!(is_apf_consonant_vowel_samekh_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_samekh_dagesh(c: char) -> bool {
// U+FB41
matches!(c, '\u{FB41}')
}
/// Checks if the given character is a APF consonant with vowel: final-pe & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_final_pe_dagesh;
///
/// let consonant = 'ףּ';
/// assert!(is_apf_consonant_vowel_final_pe_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_final_pe_dagesh(c: char) -> bool {
// U+FB43
matches!(c, '\u{FB43}')
}
/// Checks if the given character is a APF consonant with vowel: pe & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_pe_dagesh;
///
/// let consonant = 'פּ';
/// assert!(is_apf_consonant_vowel_pe_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_pe_dagesh(c: char) -> bool {
// U+FB44
matches!(c, '\u{FB44}')
}
/// Checks if the given character is a APF consonant with vowel: tsadi & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_tsadi_dagesh;
///
/// let consonant = 'צּ';
/// assert!(is_apf_consonant_vowel_tsadi_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_tsadi_dagesh(c: char) -> bool {
// U+FB46
matches!(c, '\u{FB46}')
}
/// Checks if the given character is a APF consonant with vowel: qof & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_qof_dagesh;
///
/// let consonant = 'קּ';
/// assert!(is_apf_consonant_vowel_qof_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_qof_dagesh(c: char) -> bool {
// U+FB47
matches!(c, '\u{FB47}')
}
/// Checks if the given character is a APF consonant with vowel: resh & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_resh_dagesh;
///
/// let consonant = 'רּ';
/// assert!(is_apf_consonant_vowel_resh_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_resh_dagesh(c: char) -> bool {
// U+FB48
matches!(c, '\u{FB48}')
}
/// Checks if the given character is a APF consonant with vowel: shin & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_shin_dagesh;
///
/// let consonant = 'שּ';
/// assert!(is_apf_consonant_vowel_shin_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_shin_dagesh(c: char) -> bool {
// U+FB49
matches!(c, '\u{FB49}')
}
/// Checks if the given character is a APF consonant with vowel: tav & dagesh.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_tav_dagesh;
///
/// let consonant = 'תּ';
/// assert!(is_apf_consonant_vowel_tav_dagesh(consonant));
/// ```
pub fn is_apf_consonant_vowel_tav_dagesh(c: char) -> bool {
// U+FB4A
matches!(c, '\u{FB4A}')
}
/// Checks if the given character is a APF consonant with vowel: vav & holam.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_vav_holam;
///
/// let consonant = 'וֹ';
/// assert!(is_apf_consonant_vowel_vav_holam(consonant));
/// ```
pub fn is_apf_consonant_vowel_vav_holam(c: char) -> bool {
// U+FB4B
matches!(c, '\u{FB4B}')
}
/// Checks if the given character is a APF consonant with vowel:bet & rafe.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_bet_rafe;
///
/// let consonant = 'בֿ';
/// assert!(is_apf_consonant_vowel_bet_rafe(consonant));
/// ```
pub fn is_apf_consonant_vowel_bet_rafe(c: char) -> bool {
// U+FB4C
matches!(c, '\u{FB4C}')
}
/// Checks if the given character is a APF consonant with vowel: kaf & rafe.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_kaf_rafe;
///
/// let consonant = 'כֿ';
/// assert!(is_apf_consonant_vowel_kaf_rafe(consonant));
/// ```
pub fn is_apf_consonant_vowel_kaf_rafe(c: char) -> bool {
// U+FB4D
matches!(c, '\u{FB4D}')
}
/// Checks if the given character is a APF consonant with vowel: pe & rafe.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_vowel_pe_rafe;
///
/// let consonant = 'פֿ';
/// assert!(is_apf_consonant_vowel_pe_rafe(consonant));
/// ```
pub fn is_apf_consonant_vowel_pe_rafe(c: char) -> bool {
// U+FB4E
matches!(c, '\u{FB4E}')
}
}
pub mod apf_letter_alternative {
/// Checks if the given character is a APF consonant: alternative ayin.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_consonant_alternative_ayin;
///
/// let consonant = 'ﬠ';
/// assert!(is_apf_consonant_alternative_ayin(consonant));
/// ```
pub fn is_apf_consonant_alternative_ayin(c: char) -> bool {
// U+FB20
matches!(c, '\u{FB20}')
}
/// Checks if the given character is a APF letter: alternative plus sign.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_letter_alternative_plus_sign;
///
/// let consonant = '﬩';
/// assert!(is_apf_letter_alternative_plus_sign(consonant));
/// ```
pub fn is_apf_letter_alternative_plus_sign(c: char) -> bool {
// U+FB29
matches!(c, '\u{FB29}')
}
}
pub mod apf_ligature {
/// Checks if the given character is a APF ligature: yiddish yod-yod-patah.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_ligature_yiddisch_yod_yod_patah;
///
/// let consonant = 'ײַ';
/// assert!(is_apf_ligature_yiddisch_yod_yod_patah(consonant));
/// ```
pub fn is_apf_ligature_yiddisch_yod_yod_patah(c: char) -> bool {
// U+FB1F
matches!(c, '\u{FB1F}')
}
/// Checks if the given character is a APF ligature: alef-lamed.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_ligature_alef_lamed;
///
/// let consonant = 'ﭏ';
/// assert!(is_apf_ligature_alef_lamed(consonant));
/// ```
pub fn is_apf_ligature_alef_lamed(c: char) -> bool {
// U+FB4F
matches!(c, '\u{FB4F}')
}
}
pub mod apf_point {
/// Checks if the given character is a APF point: judeo-spanish_varika.
///
/// # Example
/// ```
/// use hebrew_unicode_script::is_apf_point_judeo_spanish_varika;
///
/// let consonant = 'ﬞ';
/// assert!(is_apf_point_judeo_spanish_varika(consonant));
/// ```
pub fn is_apf_point_judeo_spanish_varika(c: char) -> bool {
// U+FB1E
matches!(c, '\u{FB1E}')
}
}