Make intrusive-collections available to product and vendor am: d8c900e69a am: 8f98c5711e am: 612426d97d Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/intrusive-collections/+/2475772 Change-Id: I7ef6a61d5a635192f8bae4d8e00810434f534a42 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
A Rust library for creating intrusive collections. Currently supports singly-linked and doubly-linked lists, as well as red-black trees.
#[no_std].Cursor-based interface, which allows safe mutation while iterating.For examples and more information, see the documentation (crates.io, master).
Add this to your Cargo.toml:
[dependencies] intrusive-collections = "0.9"
This crate has two Cargo features:
nightly: Enables nightly-only features: const fn constructors for collections (Link constructors are always const fn)alloc (enabled by default): Implements IntrusivePointer for Box, Rc and Arc.Licensed under either of
at your option.
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.