unicode-math-class

Crates.iounicode-math-class
lib.rsunicode-math-class
version0.1.0
sourcesrc
created_at2023-03-27 09:19:06.002385
updated_at2023-03-27 09:19:06.002385
descriptionDetermine the Unicode class of a mathematical character.
homepage
repositoryhttps://github.com/typst/unicode-math-class
max_upload_size
id821963
size95,162
Laurenz (laurmaedje)

documentation

README

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.

Commit count: 2

cargo fmt