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.
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::