Expand description
Fast Unicode utils.
§Features
- Simple case folding
- Mono
to_lowercase()
- ASCII search utils
floor_char_boundary()
andceil_char_boundary()
polyfill
§Crate features
case-fold
(enabled by default) — Case folding support. Seecase
for details.perf
— Enables all performance related features. This feature is intended to cover all reasonable features that improve performance, even if more are added in the future.perf-ascii
— ASCII-related optimizations.perf-case-fold
— Case folding optimizations.perf-case-map
— Mono lowercase map. -37% match time, +38 KiB.perf-find
—find_*()
optimizations.bench
— Expose all underlying algorithms for benchmarking. No version compatibility guarantee.