lib.rs |
Determine if a `char` is a valid identifier for a parser and/or lexer according to
[Unicode Standard Annex #31](http://www.unicode.org/reports/tr31/) rules.
```rust
use unicode_xid::UnicodeXID;
fn main() {
assert_eq!(UnicodeXID::is_xid_start('a'), true); // 'a' is a valid start of an identifier
assert_eq!(UnicodeXID::is_xid_start('△'), false); // '△' is a NOT valid start of an identifier
}
```
# features
unicode-xid supports a `no_std` feature. This eliminates dependence
on std, and instead uses equivalent functions from core.
|
2979 |
tables.rs |
|
52866 |
tests.rs |
|
2544 |