arbalest

Crates.ioarbalest
lib.rsarbalest
version0.2.1
sourcesrc
created_at2019-01-20 12:06:08.510274
updated_at2019-01-22 12:33:16.899278
descriptionLike Arc but where weak references don't forbid mutable access
homepage
repositoryhttps://github.com/nox/arbalest
max_upload_size
id109656
size60,432
Anthony Ramine (nox)

documentation

https://docs.rs/arbalest/0.2.1/

README

Arbalest

This is a thread-safe reference-counted smart pointer with weak references.

How is it different from Arc<T>?

The weak references don't prevent mutable access to the inner value, Strong::borrow_mut will always succeed as long as there is a single Strong<T> handle to the value that should be mutated.

How can I help?

Improve documentation, review the code (most importantly the atomic operations), make use of it.

Commit count: 21

cargo fmt