//! ASCII Types
//!
//! This could be an alternate implementation for
//! <https://github.com/rust-lang/rust/issues/110998> using ranged integers.
use *;
/// ASCII uppercase character
pub type Uppercase = ;
/// ASCII lowercase character
pub type Lowercase = ;
/// ASCII graphic character
pub type Graphic = ;
/// ASCII digit character
pub type Digit = ;
/// One of the 127 Unicode characters from U+0001 through U+007F.
///
/// Can be used for niche optimization with ASCII characters.
pub type NonNul = NonZeroU7;
/// One of the 128 Unicode characters from U+0000 through U+007F, often known as
/// the ASCII subset.
pub type Char = U7;