• Home
Name Date Size #Lines LOC

..--

benches/06-Sep-2024-6155

patches/06-Sep-2024-4037

src/06-Sep-2024-1,6861,573

tests/06-Sep-2024-2620

.cargo_vcs_info.jsonD06-Sep-202474 65

.gitignoreD06-Sep-202430 43

Android.bpD06-Sep-20242.8 KiB9690

COPYRIGHTD06-Sep-2024321 87

Cargo.tomlD06-Sep-20241.3 KiB5247

Cargo.toml.origD06-Sep-2024805 3529

LICENSED06-Sep-202410.6 KiB202169

LICENSE-APACHED06-Sep-202410.6 KiB202169

LICENSE-MITD06-Sep-20241 KiB2622

METADATAD06-Sep-2024434 2120

MODULE_LICENSE_APACHE2D06-Sep-20240

OWNERSD06-Sep-202440 21

README.mdD06-Sep-20241 KiB5431

TEST_MAPPINGD06-Sep-2024593 3433

cargo_embargo.jsonD06-Sep-202442 54

rules.mkD06-Sep-2024356 159

README.md

1# unicode-xid
2
3Determine if a `char` is a valid identifier for a parser and/or lexer according to
4[Unicode Standard Annex #31](http://www.unicode.org/reports/tr31/) rules.
5
6[![Build Status](https://img.shields.io/github/workflow/status/unicode-rs/unicode-xid/CI/master)](https://github.com/unicode-rs/unicode-xid/actions?query=branch%3Amaster)
7
8[Documentation](https://unicode-rs.github.io/unicode-xid/unicode_xid/index.html)
9
10```rust
11extern crate unicode_xid;
12
13use unicode_xid::UnicodeXID;
14
15fn main() {
16    let ch = 'a';
17    println!("Is {} a valid start of an identifier? {}", ch, UnicodeXID::is_xid_start(ch));
18}
19```
20
21# features
22
23unicode-xid supports a `no_std` feature. This eliminates dependence
24on std, and instead uses equivalent functions from core.
25
26
27# changelog
28
29## 0.2.4
30
31- Update to Unicode 15.0.0
32- Replace `const` tables with `static` tables.
33
34## 0.2.3
35
36- Update to Unicode 14.0.0
37
38## 0.2.2
39
40- Add an ASCII fast-path
41
42## 0.2.1
43
44- Update to Unicode 13.0.0
45- Speed up lookup
46
47## 0.2.0
48
49- Update to Unicode 12.1.0.
50
51## 0.1.0
52
53- Initial release.
54