unique-pointer 0.0.0

Provides an experimental data structure `UniquePointer` that makes extensive use of `unsafe` rust to provide a shared pointer across other data structures.
Documentation
1
2
3
4
5
6
7
8
#![allow(unused)]
#![feature(intra_doc_pointers)]
pub mod traits;
pub use traits::UniquePointee;
pub mod unique_pointer;
pub use unique_pointer::UniquePointer;
pub mod refcounter;
pub use refcounter::RefCounter;