commit | 22dc65a575055adf5b137253c77fca20376d85f2 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 01:21:20 2023 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 01:21:20 2023 +0000 |
tree | 105ba11fd4b0f188e43f4106db8f315a4c63866c | |
parent | 8d034406e06685ce777ea747c641b813f47900f8 [diff] | |
parent | 166b9fb9b503067dfd08cdf95b98dd1987db3bf0 [diff] |
Snap for 10447354 from 166b9fb9b503067dfd08cdf95b98dd1987db3bf0 to mainline-networking-release Change-Id: I0a85c5f71aa7ee13fef79e3465d0d7a00a774851
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.