Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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,
}
```