Skip to content

Fast lookup of the Unicode Canonical Combining Class property for `char` in Rust.

License

Notifications You must be signed in to change notification settings

yeslogic/unicode-canonical-combining-class

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

unicode-canonical-combining-class


Fast lookup of the Unicode Canonical Combining Class property for char in Rust using Unicode 15.0 data. This crate is no-std compatible.

Usage

use unicode_canonical_combining_class::{get_canonical_combining_class, CanonicalCombiningClass};

fn main() {
    assert_eq!(get_canonical_combining_class('ཱ'), CanonicalCombiningClass::CCC129);
}

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. This allows the second level 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 24.5KiB. 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.

About

Fast lookup of the Unicode Canonical Combining Class property for `char` in Rust.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages