bounds

Crates.iobounds
lib.rsbounds
version0.7.0
sourcesrc
created_at2017-11-11 02:51:22.395388
updated_at2023-12-05 15:48:33.332099
descriptionA library to interact with bounded and unbounded ranges
homepage
repositoryhttps://github.com/fuchsnj/bounds
max_upload_size
id38950
size41,727
Nathan (fuchsnj)

documentation

README

Bounds

Build Status crates.io

documentation

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)

Implementation Details

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.

Macro

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

Example

use bounds::*;

assert!(bounds!(2, 4).intersects(&bounds!(1, 3)));
assert_eq!(
    bounds!(6) / bounds!(2,), 
    Some(bounds!(~0,3))
);
Commit count: 54

cargo fmt