# re_int
Part of the [`rerun`](https://github.com/rerun-io/rerun) family of crates.
[](https://crates.io/crates/re_int)
[](https://docs.rs/re_int)


Small numeric helper traits shared across the Rerun crates.
* `SaturatingCast` — cast between integer types, clamping to the target's range instead of wrapping (`as`) or panicking (`TryFrom` + `unwrap`).
* `UnsignedAbs` — compute the absolute value of a signed integer without wrapping or panicking.