commit | 8c18afaf1f67c2abd46c9a99a228eedaa789e06a | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Thu Jul 15 01:35:02 2021 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Thu Jul 15 01:35:02 2021 +0000 |
tree | 61cbc999afbb44a39051d64970ec4715eba50b3e | |
parent | c1e423c8e1d800a433ed8156fe96384d3232def5 [diff] | |
parent | 788b1177692dad380cf13694e7bf948d3f451423 [diff] |
Snap for 7550844 from 788b1177692dad380cf13694e7bf948d3f451423 to mainline-os-statsd-release Change-Id: If0993ccf959b94c05448ecf5656d34ecdfe7b39c
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.