#script #unicode #internationalization #unicode-text #text

yeslogic-unicode-script

Fast lookup of the Unicode Script property

4 releases (breaking)

Uses old Rust 2015

0.7.0 Sep 19, 2022
0.6.0 Jan 25, 2022
0.5.0 Nov 18, 2020
0.4.0 Jan 9, 2020

#1411 in Text processing

Download history 1/week @ 2024-02-20 9/week @ 2024-02-27 1/week @ 2024-03-05 14/week @ 2024-03-12 16/week @ 2024-04-02 3/week @ 2024-04-23 72/week @ 2024-04-30

75 downloads per month

MIT/Apache

57KB
1.5K SLoC

yeslogic-unicode-script


Fast lookup of the Unicode Script property for char in Rust using Unicode 15.0 data.

Usage

use unicode_script::{get_script, Script};

fn main() {
    assert_eq!(get_script('A'), Script::Latin);
    assert_eq!(get_script(''), Script::Katakana);
}

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 43KiB. 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.

Dependencies

~0–650KB
~14K SLoC