intl 0.1.2

Pure-Rust, no_std internationalization primitives (a pure-Rust ICU analog). The `unicode` module provides General_Category, character predicates, scripts, East Asian Width, numeric values, case mapping/folding, and UAX #15 normalization (NFC/NFD/NFKC/NFKD) — property tables compiled into const-fn match lookups, with feature-selectable codepoint ranges.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// @generated by codegen — DO NOT EDIT.
// Regenerate with `cargo run -p codegen` after updating data/ucd/.
#![allow(clippy::all)]
#![allow(unreachable_patterns)]
#![allow(dead_code)]

pub(crate) mod binary_props;
pub(crate) mod case;
pub(crate) mod east_asian_width;
pub(crate) mod general_category;
pub(crate) mod normalization;
pub(crate) mod numeric;
pub(crate) mod script;