compact-rc
Low-memory reference-counting pointers.
The types in this crate have almost the same methods as standard Rc and Arc.
The differences from the standard type are as follows:
- Weak reference is not supported.
- Small integers can be used as refcount.
| Crate | Strong count | Weak count |
|---|---|---|
std |
usize |
usize |
compact-rc |
u8, u16, u32, u64, usize |
not supported |
Example
use Rc8;