unicode-range 0.1.0

UnicodeRange is a Rust library for parsing and stringifying Unicode ranges. It provides functionality to convert a string representation of Unicode ranges into a vector of code points and vice versa.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# UnicodeRange

`UnicodeRange` is a Rust library for parsing and stringifying Unicode ranges. It provides functionality to convert a string representation of Unicode ranges into a vector of code points and vice versa.

## Usage

```rust
use unicode_range::UnicodeRange;

fn main() {
    let input = "U+0-7F,U+007F-00FF,U+4??,U+ff65";
    let code_points = UnicodeRange::parse(input);
    println!("{:?}", code_points);

    let stringified = UnicodeRange::stringify(&code_points);
    println!("{}", stringified);
}
```