| Crates.io | supply-chain-trust-example-crate-000089 |
| lib.rs | supply-chain-trust-example-crate-000089 |
| version | 0.2.7 |
| created_at | 2024-11-04 02:27:59.309098+00 |
| updated_at | 2025-03-18 07:20:01.927099+00 |
| description | Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31. |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1434475 |
| size | 76,496 |
Determine if a char is a valid identifier for a parser and/or lexer according to
Unicode Standard Annex #31 rules.
extern crate unicode_xid;
use unicode_xid::UnicodeXID;
fn main() {
let ch = 'a';
println!("Is {} a valid start of an identifier? {}", ch, UnicodeXID::is_xid_start(ch));
}
unicode-xid supports a no_std feature. This eliminates dependence
on std, and instead uses equivalent functions from core.