commit | 8817464f6f177fb8659e71c9495b87231032b768 | [log] [tgz] |
---|---|---|
author | android-build-team Robot <[email protected]> | Mon Jun 21 14:51:12 2021 +0000 |
committer | android-build-team Robot <[email protected]> | Mon Jun 21 14:51:12 2021 +0000 |
tree | 61cbc999afbb44a39051d64970ec4715eba50b3e | |
parent | c1e423c8e1d800a433ed8156fe96384d3232def5 [diff] | |
parent | 788b1177692dad380cf13694e7bf948d3f451423 [diff] |
Snap for 7478067 from 788b1177692dad380cf13694e7bf948d3f451423 to mainline-extservices-release Change-Id: Iac95f8da1f607dd1c6ab665ae65daaa4bc8f4a55
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.