bip
bip (Box in place) provides a fully generic in-place map for the Box type, taking care to be panic-safe and not leak memory.
Box
map
Example:
```rust let x: Box = Box::new(1); let y: Box = bip::mapinplace(y, |x| x as f32 + 1.0);
// y uses the same allocation as x ```
Documentation