wrc 2.1.0

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

mod inner;
mod wrc;

pub use crate::wrc::{Weak, Wrc};

#[cfg(test)]
mod test;