A Rust ranged-type library.
Support for (machine-word-abstracting? TBD) ranged types as zero or low-runtime overhead abstractions using safe and conventional arithmetic wrappers, written in Rust.
Currently at a pre-alpha experimental PoC stage of development--Can this concept even be implemented in Rust? If yes, how efficient is the release code? Is this useful, in the end?.
rust
// Create a `u8`-based `RangeInclusive`-style type limited to `1..=100`, set to the value 42
let my_ranged_value = Ranged::<RiU8<1, 100>>::from(42);
Licensed under either:
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.