commit | bc7f7c286c669c2600b988bafc581d63a3b5d32d | [log] [tgz] |
---|---|---|
author | Linux Build Service Account <lnxbuild@localhost> | Wed Jun 09 02:59:29 2021 -0700 |
committer | Linux Build Service Account <lnxbuild@localhost> | Wed Jun 09 02:59:29 2021 -0700 |
tree | 8cab78e20c4344228f35b5aa8a47039926a4f317 | |
parent | b3411923196203b50001a8e87904dfd43a9c1bba [diff] | |
parent | 742d5f35ec5e920481cdf61d641e1f3bb00302e7 [diff] |
Merge 742d5f35ec5e920481cdf61d641e1f3bb00302e7 on remote branch Change-Id: I44f450b52ef0f303fba602ff5435ea7852a98dcb
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.