Clamped

Build Status Crates.io

Simple clamping of numbers in Rust

Usage

clamped relies heavily on conditional compilation with Cargo's feature system. You need to enable all the elements of clamped you need via features. You can enable each feature independently (they won't conflict with each other).

The current features are

// Clamp numbers between 20 and 30 asserteq!(10.clamped(20, 30), 20); // 10 -> 20 asserteq!(15.clamped(20, 30), 20); // 15 -> 20 asserteq!(20.clamped(20, 30), 20); // 20 -> 20 asserteq!(25.clamped(20, 30), 25); // 25 -> 25 asserteq!(30.clamped(20, 30), 30); // 30 -> 30 asserteq!(35.clamped(20, 30), 30); // 35 -> 30 `` -clampfn: Theclampfunction, which is the same as theClamp+clampedmethod, but does not use a trait method -clampmacro: Aclamp!` macro, which contains the signature of all clamp functions. You can use this if you don't want to include any more traits, functions, or other external code.

Note: Only the clamp_trait feature is enabled by default (This may change in the future as more features are added)

All features are currently #[no_std] compatible, but this may change in the future!!!