commit | 2199d7f8de026176e8b66fc3abbdc23f9f9fcdaf | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Tue Aug 06 17:01:38 2024 +0000 |
committer | James Farrell <[email protected]> | Tue Aug 06 17:01:38 2024 +0000 |
tree | 8742d80da2a6e61b56a535ea58bada858f70216a | |
parent | 0576f498ffe4b5c18a0ddefa3d1527ead46d9d10 [diff] |
Update Android.bp by running cargo_embargo Test: ran cargo_embargo Change-Id: Iae8a4435026d76879bf8c6949242c519831fabf5
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.