| Crates.io | quantified |
| lib.rs | quantified |
| version | 0.1.1 |
| created_at | 2020-11-15 13:31:54.074033+00 |
| updated_at | 2020-11-15 13:34:45.460578+00 |
| description | Specify the universe: None, Some, Excluding, and All |
| homepage | |
| repository | https://github.com/nhynes/quantified |
| max_upload_size | |
| id | 312568 |
| size | 8,707 |
Something, Everything, and Nothing for Everyone.
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub enum Quantified<T> {
None,
Some(T),
Excluding(T),
All,
}