use-containment 0.0.6

Containment traits and classifications for RustUse geometry
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# use-containment

Containment traits and classifications for the RustUse geometry workspace.

`use-containment` defines small shared vocabulary for inside, boundary, and outside relationships.

## Example

```rust
use use_containment::Containment;

assert!(Containment::Boundary.is_contained());
assert!(!Containment::Outside.is_contained());
```