# map-range
A super simple crate to map values from a range to another range.
[](https://deps.rs/repo/github/Overpeek/map-range)
[](https://github.com/Overpeek/map-range/actions)
[](https://crates.io/crates/map-range)
[](https://docs.rs/map-range/)
Example
rust
use map_range::MapRange;
let _ = 5_i32.map_range(0..10, -10..10);