commit | 614f00acb59c13b249a37aacd84090fb3bf0282b | [log] [tgz] |
---|---|---|
author | Matthew Maurer <mmaurer@google.com> | Wed Jul 01 22:56:54 2020 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Jul 01 22:56:54 2020 +0000 |
tree | b4df40970670f3c2cae7de4b311b925a0219e227 | |
parent | d8a4b13bff91de5dbb7c869c7ef8155dacbbb659 [diff] | |
parent | 0a3297aedc962e2b3dc797a2baf18a2b74da48ac [diff] |
Remove reference to removed .static sysroot am: 7a615d9791 am: 0a3297aedc Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/unicode-xid/+/1349313 Change-Id: Ib0f8a266f22415090ff19e42bdcbe2a6d0ab95c5
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.
You can use this package in your project by adding the following to your Cargo.toml
:
[dependencies] unicode-xid = "0.1.0"