#class #unicode #character #determine #math-class

unicode-math-class

Determine the Unicode class of a mathematical character

1 unstable release

0.1.0 Mar 27, 2023

#686 in Math

Download history 874/week @ 2024-01-10 1229/week @ 2024-01-17 791/week @ 2024-01-24 623/week @ 2024-01-31 961/week @ 2024-02-07 1107/week @ 2024-02-14 680/week @ 2024-02-21 850/week @ 2024-02-28 1506/week @ 2024-03-06 2050/week @ 2024-03-13 1214/week @ 2024-03-20 923/week @ 2024-03-27 976/week @ 2024-04-03 865/week @ 2024-04-10 660/week @ 2024-04-17 650/week @ 2024-04-24

3,277 downloads per month
Used in 22 crates (2 directly)

MIT/Apache

85KB
3K SLoC

unicode-math-class

Crates.io Documentation

Determine the Unicode class of a mathematical character in Rust.

[dependencies]
unicode-math-class = "0.1"

Example

use unicode_math_class::{class, MathClass};

assert_eq!(class('0'), Some(MathClass::Normal));
assert_eq!(class('a'), Some(MathClass::Alphabetic));
assert_eq!(class('𝔸'), Some(MathClass::Alphabetic));
assert_eq!(class('+'), Some(MathClass::Vary));
assert_eq!(class('×'), Some(MathClass::Binary));
assert_eq!(class('('), Some(MathClass::Opening));
assert_eq!(class(','), Some(MathClass::Punctuation));
assert_eq!(class('|'), Some(MathClass::Fence));
assert_eq!(class('😃'), None);

For more details, see Section 5.1 of Unicode Technical Report #25 and this data file.

License

This crate is dual-licensed under the MIT and Apache 2.0 licenses.

No runtime deps