| commit | 2fb568dbab6092c894762c809ea247a1d0128dfb | [log] [tgz] |
|---|---|---|
| author | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 04:53:15 2023 +0000 |
| committer | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 04:53:15 2023 +0000 |
| tree | 105ba11fd4b0f188e43f4106db8f315a4c63866c | |
| parent | d368127efc17c633c677664880a52b5fafbbc0b2 [diff] | |
| parent | 166b9fb9b503067dfd08cdf95b98dd1987db3bf0 [diff] |
Snap for 10453563 from 166b9fb9b503067dfd08cdf95b98dd1987db3bf0 to mainline-documentsui-release Change-Id: I5e2be6e2fb66be21053fbf74461361ee7560e0ce
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.
const tables with static tables.