intl 0.3.1

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, UAX #15 normalization (NFC/NFD/NFKC/NFKD), and UTS #10 collation — property tables compiled into const-fn match lookups, with feature-selectable codepoint ranges.
Documentation
// @generated by codegen — DO NOT EDIT.
// Regenerate with `cargo run -p codegen` after updating data/ucd/.
#![allow(clippy::all)]
#![allow(unreachable_patterns)]
#![allow(unused_parens)]
#![allow(dead_code)]

#[cfg(feature = "bidi")]
pub(crate) mod bidi;
pub(crate) mod binary_props;
#[cfg(feature = "case")]
pub(crate) mod case;
#[cfg(feature = "collation")]
pub(crate) mod collation;
#[cfg(feature = "confusables")]
pub(crate) mod confusables;
pub(crate) mod east_asian_width;
pub(crate) mod general_category;
#[cfg(feature = "idna")]
pub(crate) mod idna;
#[cfg(feature = "normalization")]
pub(crate) mod normalization;
pub(crate) mod numeric;
pub(crate) mod plurals;
pub(crate) mod properties;
pub(crate) mod script;
#[cfg(feature = "segmentation")]
pub(crate) mod segmentation;