wrc 0.2.2

A thread-safe weighted reference counting smart-pointer for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # WRC
//!
//! A thread-safe weight reference counting smart-pointer for Rust.

#![feature(shared,unsize,coerce_unsized)]
mod wrc;
mod weight;
mod inner;

pub use wrc::WRC;

#[cfg(test)]
mod test;