pub type AllocVec<'l, Item> = CollectionSet<'l, Vec<Item>>;Available on crate feature
alloc-vec only.Expand description
alloc::vec::Vec-based implementation
On my machine, worst time to check for existence is about 0.8ns/item
Aliased Type§
struct AllocVec<'l, Item>(CollectionRepr<'l, Vec<Item>>);Fields§
§0: CollectionRepr<'l, Vec<Item>>