Crates.io | arbalest |
lib.rs | arbalest |
version | 0.2.1 |
source | src |
created_at | 2019-01-20 12:06:08.510274 |
updated_at | 2019-01-22 12:33:16.899278 |
description | Like Arc |
homepage | |
repository | https://github.com/nox/arbalest |
max_upload_size | |
id | 109656 |
size | 60,432 |
This is a thread-safe reference-counted smart pointer with weak references.
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.
Improve documentation, review the code (most importantly the atomic operations), make use of it.