typed-ident 0.0.1

Type-safe identifier validation, inspection, and mutation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Syntax definitions for chunk character profiles.

Profiles are broken into two sub-categories:

* [`case`], which mutates a character profile based on some casing rules.
* [`chars`], which presents a base set of rules for a chunk character profile.

The expected way to use these types is via generic composition. For instance:

```rust
use typed_ident::syntax::profile::{case, chars};
type LowerAsciiProfile = case::Lower<chars::Ascii>;
```

For more details, see the respective documentation for each item.