Utility for taking the value from a cell of a option without cloning.
Add take-cell-option = "0.1"
to your dependencies.
```rust use takecelloption::take; use core::cell::Cell;
let cell = Cell::new(Some(Box::new(10))); let v = take(&cell); asserteq!(*v.unwrap(), 10); assert!(cell.intoinner().is_none()); ```