docs.rs failed to build adamantium-0.0.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

Adamantium

Immutable, shareable, functional data structures in Rust.

These data structures use Arc rather than Box as their pointer type, allowing them to support non-blocking concurrent reads and be memory efficient by sharing non-modified sub-structures.

Currently Implemented:

  • Cons-List
  • Size-Balanced Binary-Search-Tree

Future Plans:

  • Patricia Tree
  • General Trie
  • Heap of some kind
  • Priority Queue of some kind
  • O(1) Deque
  • Suggestions Welcome :)