typst/vendor/unicode-math-class
2024-10-16 14:18:46 +03:00
..
src 0.11.1-alt1 2024-10-16 14:18:46 +03:00
.cargo-checksum.json 0.11.1-alt1 2024-10-16 14:18:46 +03:00
Cargo.toml 0.11.1-alt1 2024-10-16 14:18:46 +03:00
gen.py 0.11.1-alt1 2024-10-16 14:18:46 +03:00
LICENSE-APACHE 0.11.1-alt1 2024-10-16 14:18:46 +03:00
LICENSE-MIT 0.11.1-alt1 2024-10-16 14:18:46 +03:00
README.md 0.11.1-alt1 2024-10-16 14:18:46 +03:00

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.