corlib 0.4.1

A various ideas library
Documentation
//!
//! Reference counting related helper structs and traits.
//! 

mod arc_by_ptr;

pub use arc_by_ptr::*;

mod rc_by_ptr;

pub use rc_by_ptr::*;

mod sync_weak_by_ptr;

pub use sync_weak_by_ptr::*;

mod weak_by_ptr;

pub use weak_by_ptr::*;

mod rc_default;

pub use rc_default::*;