Bug: 175140903

Clone this repo:
  1. 2db437e Migrate 25 crates to monorepo. am: 77c7a7e248 by James Farrell · 7 weeks ago main master
  2. 77c7a7e Migrate 25 crates to monorepo. by James Farrell · 7 weeks ago main-16k
  3. ff52881 Update Android.bp by running cargo_embargo am: 2199d7f8de by James Farrell · 10 weeks ago
  4. 2199d7f Update Android.bp by running cargo_embargo by James Farrell · 10 weeks ago
  5. b914075 Update Android.bp by running cargo_embargo am: 40703a9fe1 am: 0576f498ff by James Farrell · 5 months ago android15-tests-dev

intrusive-collections

Build Status Coverage Status Crates.io

A Rust library for creating intrusive collections. Currently supports singly-linked and doubly-linked lists, as well as red-black trees.

Features

  • Compatible with #[no_std].
  • Intrusive collections don't require any dynamic memory allocation since they simply keep track of existing objects rather than allocating new ones.
  • You can safely manipulate intrusive collections without any unsafe code.
  • A single object can be a member of multiple intrusive collections simultaneously.
  • Intrusive collections provide a Cursor-based interface, which allows safe mutation while iterating.

For examples and more information, see the documentation (crates.io, master).

Usage

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.

License

Licensed under either of

at your option.

Contribution

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.