use-wythoff 0.0.6

Wythoff notation primitives for the RustUse geometry workspace
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# use-wythoff

Wythoff notation primitives for the RustUse geometry workspace.

`use-wythoff` stores Wythoff symbols as notation metadata. It does not implement Wythoff
construction algorithms.

## Example

```rust
use use_wythoff::WythoffSymbol;

let symbol = WythoffSymbol::new("3 | 4 2").expect("valid symbol");

assert_eq!(symbol.to_string(), "3 | 4 2");
```