Boxing

crates.io Documentation MIT/Apache-2 licensed

An easy-to-use, cross-platform library for pointer and NaN boxing data - storing other data values in the unused portions of a float or pointer.

Examples

For more detailed examples, see the nan module documentation.

```rust use boxing::nan::NanBox;

asserteq!(core::mem::sizeof::());

let a = NanBox::<()>::fromfloat(2.0); let b = NanBox::<()>::frominline(-1i32);

asserteq!(a.clone().tryintofloat(), Ok(2.0)); asserteq!(b.clone().tryintoinline::(), Ok(-1i32)); assert!((a.intofloatunchecked() + b.intofloatunchecked()).is_nan()); ```