commit | 2db437e1c023f850fc966334b8d11b06e130c9d9 | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Wed Aug 28 15:27:02 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Aug 28 15:27:02 2024 +0000 |
tree | 758bd189af7fe184697cb8a137b838d103ea96c7 | |
parent | ff52881277b10c23ffa81f66dc5b17f7dddb147c [diff] | |
parent | 77c7a7e2481119fa462e03cb201aca75d489d0fd [diff] |
Migrate 25 crates to monorepo. am: 77c7a7e248 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/intrusive-collections/+/3246050 Change-Id: I75d1352677092168504fe3288ad4607cea163abf Signed-off-by: Automerger Merge Worker <[email protected]>
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.