strong_rc

Crates.iostrong_rc
lib.rsstrong_rc
version0.1.4
sourcesrc
created_at2017-01-04 05:46:18.005562
updated_at2017-01-20 19:00:32.806533
descriptionReference counting smart pointer without weak count
homepagehttps://github.com/Centril/rust_strong_rc
repositoryhttps://github.com/Centril/rust_strong_rc
max_upload_size
id7914
size41,910
Mazdak Farrokhzad (Centril)

documentation

https://docs.rs/strong_rc

README

strong_rc

This library is an implementation of strong-only reference counted smart pointers in Rust. All applicable methods have identical names as in std::rc, and so this can be used as a drop in replacement for that.

Build Status Build status Crates.io

Documentation

Usage

First, add this to your Cargo.toml:

[dependencies]
strong_rc = "0.1.4"

Next, add this to your crate:

extern crate strong_rc;
use strong_rc::Rc;

Then you should consult the documentation, or simply use it as if it were std::rc.

License

strong_rc is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

Commit count: 32

cargo fmt