Crates.io | bounds |
lib.rs | bounds |
version | 0.7.0 |
source | src |
created_at | 2017-11-11 02:51:22.395388 |
updated_at | 2023-12-05 15:48:33.332099 |
description | A library to interact with bounded and unbounded ranges |
homepage | |
repository | https://github.com/fuchsnj/bounds |
max_upload_size | |
id | 38950 |
size | 41,727 |
A library to interact with bounded and unbounded ranges Bounds contains a lower/upper bound which are one of [unbounded, inclusive, exclusive]. It also supports zero-sized bounds (an exact value).
You can use the four basic arithmetic operations on these ranges. (add, subtract, multiply, divide)
This library adheres to "real" math, and does not respect integer math (overflow / underflow),
or floating point precision issues.
It was designed to be used with BigRational
, but is generic so it can be used with others.
If this is used with types that can overflow, round, accumulate errors, etc. no guarantees are
made.
The lower bound MUST always be lower than the upper bound. There are occasional internal checks when running in debug mode, but it's up to the caller to ensure all bounds are valid when they are created.
This library will never cause a divide by 0 (division returns a None in this case), and will not panic if the input is valid and the generic type used also doesn't panic.
Rust's built in bounds don't allow the lower bound to be exclusive, so a macro is provided for easier use.
The prefix ~
is used to make a bound exclusive. It is inclusive by default
bounds!(,); // unbounded
bounds!(~0, 3); // > 0 and <= 3
bounds!(3,); // >= 3
bounds!(-3); // exactly -3
use bounds::*;
assert!(bounds!(2, 4).intersects(&bounds!(1, 3)));
assert_eq!(
bounds!(6) / bounds!(2,),
Some(bounds!(~0,3))
);