5 stable releases

2.0.1 Aug 18, 2023
1.2.0 Aug 16, 2023
1.1.0 Aug 15, 2023
1.0.1 Aug 14, 2023

#93 in Internationalization (i18n)

Download history 51/week @ 2024-01-02 124/week @ 2024-01-09 42/week @ 2024-01-16 7/week @ 2024-01-30 3/week @ 2024-02-06 37/week @ 2024-02-13 91/week @ 2024-02-20 222/week @ 2024-02-27 55/week @ 2024-03-05 216/week @ 2024-03-12 31/week @ 2024-03-19 1/week @ 2024-03-26 13/week @ 2024-04-02 130/week @ 2024-04-09 139/week @ 2024-04-16

283 downloads per month

Apache-2.0

82KB
384 lines

Unicode Language

This library detects language support given a list of Unicode codepoints. This is primarily useful for finding out what languages a font supports.

// Input codepoints as a vector of Unicode ranges
let codepoints = vec![[65, 121]];

// Detect languages with a threshold of 0.5
let results = detect(codepoints, 0.5);

// results[0].tag = "en"
// results[1].tag = "nl"
// ...

The result is a vector of Match structs, with the following signature:

struct Match {
  // BCP 47 language tag.
  tag: &'static str,
  // English name.
  name: &'static str,
  // Name in native script.
  native: &'static str,
  // Number of codepoints matched.
  count: u32,
  // Score (number of codepoints matched divided by the total).
  score: f64,
}

The language data is derived from Adobe Font's speakeasy library. The data is extracted at build time and statically compiled as part of the library.

License

This library is licensed under the Apache-2.0 license. Copyright 2023, The Type Founders.

No runtime deps

~0–285KB