thin-cell 0.2.1

A compact, single-threaded smart pointer combining reference counting and interior mutability
Documentation
1
2
3
4
5
6
7
8
9
//! Singlethreaded version of `ThinCell`

mod state;
use state::*;

crate::thin_cell! {
    /// A compact (`1-usize`), single-threaded smart pointer combining `Rc`
    /// and `RefCell` with only `borrow_mut`.
}