Type Alias AllocTree

Source
pub type AllocTree<'l, Item> = CollectionSet<'l, BTreeSet<Item>>;
Available on crate feature alloc-tree only.
Expand description

alloc::collections::BTreeSet-based implementation

On my machine, worst time to check for existence is about

  • 13 ns for 10
  • 18 ns for 20
  • <=20 ns for 30
  • <=20 ns for 40
  • <=20 ns for 50

Aliased Type§

struct AllocTree<'l, Item>(CollectionRepr<'l, BTreeSet<Item>>);

Fields§

§0: CollectionRepr<'l, BTreeSet<Item>>