#b-tree #forest #set #map

no-std alexcrichton-cranelift-bforest

A forest of B+-trees

2 unstable releases

0.53.0 Jan 10, 2020
0.52.0 Jan 10, 2020

#16 in #btree

Download history 18/week @ 2023-11-27 4/week @ 2023-12-04 10/week @ 2023-12-11 18/week @ 2023-12-18 18/week @ 2023-12-25 16/week @ 2024-01-08 16/week @ 2024-01-15 2/week @ 2024-01-29 17/week @ 2024-02-05 20/week @ 2024-02-12 54/week @ 2024-02-19 37/week @ 2024-02-26 26/week @ 2024-03-04 31/week @ 2024-03-11

153 downloads per month
Used in 11 crates (via alexcrichton-cranelift-co…)

Apache-2.0 WITH LLVM-exception

210KB
4.5K SLoC

This crate contains array-based data structures used by the core Cranelift code generator which represent a set of small ordered sets or maps.

These are not general purpose data structures that are somehow magically faster that the standard library's BTreeSet and BTreeMap types.

The tradeoffs are different:

  • Keys and values are expected to be small and copyable. We optimize for 32-bit types.
  • A comparator object is used to compare keys, allowing smaller "context free" keys.
  • Empty trees have a very small 32-bit footprint.
  • All the trees in a forest can be cleared in constant time.

lib.rs:

A forest of B+-trees.

This crate provides a data structures representing a set of small ordered sets or maps. It is implemented as a forest of B+-trees all allocating nodes out of the same pool.

These are not general purpose data structures that are somehow magically faster that the standard library's BTreeSet and BTreeMap types.

The tradeoffs are different:

  • Keys and values are expected to be small and copyable. We optimize for 32-bit types.
  • A comparator object is used to compare keys, allowing smaller "context free" keys.
  • Empty trees have a very small 32-bit footprint.
  • All the trees in a forest can be cleared in constant time.

Dependencies