A Rust library for creating intrusive collections. Currently supports singly-linked and doubly-linked lists, as well as red-black trees.
Add this to your Cargo.toml
:
toml
[dependencies]
intrusive-collections = "0.4"
and this to your crate root:
```rust
extern crate intrusive_collections; ```
This crate has two Cargo features:
nightly
: Enables nightly-only features: const fn
constructors and NonZero
support for IntrusiveRef
.box
(enabled by default): Enables IntrusiveRef::{from_box,into_box}
. This requires libstd
on stable, but only liballoc
if the nightly
feature is enabled. 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.