darc 0.0.2

Dynamically-atomic reference-counting pointers (proof of concept)
Documentation
  • Coverage
  • 100%
    8 out of 8 items documented0 out of 7 items with examples
  • Size
  • Source code size: 38.37 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.03 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • cuviper/darc
    3 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • cuviper

darc - Dynamically-atomic reference-counting pointers

Crate Documentation minimum rustc 1.31

This is a proof of concept of a Rust Rc<T> type that can dynamically choose whether to use atomic access to update its reference count. A related Arc<T> can be created which offers thread-safe (Send + Sync) access to the same data. If there's never an Arc, the Rc never pays the price for atomics.

darc currently requires rustc 1.31.0 or greater.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.