#unicode #category #properties #no-std #general

no-std unicode-general-category

Fast lookup of the Unicode General Category property for char

8 releases (1 stable)

1.0.0 Oct 30, 2024
1.0.0-pre Oct 8, 2024
0.6.0 Sep 19, 2022
0.5.1 Jan 25, 2022
0.1.0 Dec 13, 2019

#39 in Text processing

Download history 8620/week @ 2024-07-22 9673/week @ 2024-07-29 7794/week @ 2024-08-05 8428/week @ 2024-08-12 8070/week @ 2024-08-19 8797/week @ 2024-08-26 7937/week @ 2024-09-02 8493/week @ 2024-09-09 6886/week @ 2024-09-16 7334/week @ 2024-09-23 8609/week @ 2024-09-30 6467/week @ 2024-10-07 6537/week @ 2024-10-14 10936/week @ 2024-10-21 15359/week @ 2024-10-28 15056/week @ 2024-11-04

48,352 downloads per month
Used in 137 crates (11 directly)

Apache-2.0

225KB
4.5K SLoC

unicode-general-category


Fast lookup of the Unicode General Category property for char in Rust using Unicode 16.0 data. This crate is no-std compatible.

Usage

use unicode_general_category::{get_general_category, GeneralCategory};

fn main() {
    assert_eq!(get_general_category('A'), GeneralCategory::UppercaseLetter);
}

Performance & Implementation Notes

ucd-generate is used to generate tables.rs. A build script (build.rs) compiles this into a two level look up table. The look up time is constant as it is just indexing into two arrays.

The two level approach maps a code point to a block, then to a position within a block. The allows the second level of block to be deduplicated, saving space. The code is parameterised over the block size, which must be a power of 2. The value in the build script is optimal for the data set.

This approach trades off some space for faster lookups. The tables take up about 45KiB. Benchmarks showed this approach to be ~5–10× faster than the typical binary search approach.

It's possible there are further optimisations that could be made to eliminate some runs of repeated values in the first level array.

No runtime deps