wrc 0.4.2

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

mod inner;
mod weight;
mod wrc;

pub use crate::wrc::WRC;

#[cfg(test)]
mod test;