Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nhynes/quantified
Generalized Option that includes inverse selections and everything.
https://github.com/nhynes/quantified
Last synced: 27 days ago
JSON representation
Generalized Option that includes inverse selections and everything.
- Host: GitHub
- URL: https://github.com/nhynes/quantified
- Owner: nhynes
- Created: 2020-11-15T13:21:12.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-15T13:34:30.000Z (almost 4 years ago)
- Last Synced: 2024-08-08T16:14:14.917Z (3 months ago)
- Language: Rust
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# quantified
[![CI status](https://github.com/nhynes/quantified/workflows/CI/badge.svg)](https://github.com/nhynes/quantified/actions?query=workflow%3ACI)
[![quantified on docs.rs](https://docs.rs/quantified/badge.svg)](https://docs.rs/quantified)_Something, Everything, and Nothing for Everyone._
```rust
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub enum Quantified {
None,
Some(T),
Excluding(T),
All,
}
```