| commit | 09c36a460ae34eabb140c706f8f0fa63edc7922e | [log] [tgz] |
|---|---|---|
| author | Android Build Coastguard Worker <[email protected]> | Thu Jul 15 00:03:49 2021 +0000 |
| committer | Android Build Coastguard Worker <[email protected]> | Thu Jul 15 00:03:49 2021 +0000 |
| tree | 61cbc999afbb44a39051d64970ec4715eba50b3e | |
| parent | c1e423c8e1d800a433ed8156fe96384d3232def5 [diff] | |
| parent | 788b1177692dad380cf13694e7bf948d3f451423 [diff] |
Snap for 7550640 from 788b1177692dad380cf13694e7bf948d3f451423 to mainline-wifi-release Change-Id: I90506cd052ab0e91d5d1a4cf37fb9f1c12077f00
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.