arranged

A Rust ranged-type library.

arranged is ranged type crate for Rust. Note: This crate is currently pre-alpha and is still under construction.

Goals

arranged is a pathfinder implementation to safe default arithmetic manipulation of values in Rust--no arithmetic operation should ever fail (panic) due to overflow at runtime (unless the user explicitly requests a panic)--while supporting ergonomics via conventional arithmetic operators (+, -, *, /, %, etc.).

Design Philosophy

The Ranged type is designed to be zero-runtime overhead where possible and minimal runtime overhead otherwise: * all bounds-checking on arithmetic operations between two unwrapped Ranged types occurs at compile-time * mem::size_of::<Ranged<T>>() == mem::size_of::<T>() (i.e. ranges are zero-sized). Performance & cache-friendly, esp. when operating on large quantities of values

Behavior

Implementation plan

— !! pathfinder complete !! — if successful: - [ ] implement remaining arithtraits - [ ] implement remaining arithwrappers - [ ] implement remaining arithmetic operators for Ranged<Ri*> (where Ri is arranged’s range-inclusive type and * represents any int and float machine word types or BigInt or BigUint) - [ ] implement R (half-open range) type - [ ] implement remaining arithmetic operators for Ranged<R*> (where R is arranged’s (half-open) range type and * represents any int and float machine word types or BigInt or BigUint) - [ ] consider priority of implementing additional range types (JIT/as-needed basis?)

What problem is arranged addressing?

Rust has made terrific progress moving the safety and correctness needle without sacrificing performance. And yet we are still saddled with C’s arithmetic model from the early 1970's which does a very poor job of providing predictable behavior in important real-world safety scenarios--Ariane 5 initial launch, analysis.

As software eats more and more of the world, the importance of performant, ergonomic, ‘safe by default’ systems increases.

Beyond arranged

Explore leveraging arranged as part of a more comprehensive “semantic types” implementation in Rust, hopefully further addressing safety concerns such as NASA losing a $300M+ mission

Usage

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); For more examples, see ranged::unit_tests.

License

Licensed under either:

Contributions

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.