Module set_union_with_tombstones

Module set_union_with_tombstones 

Source
Expand description

Module containing the SetUnionWithTombstones lattice and aliases for different datastructures.

See crate::tombstone for documentation on choosing a tombstone implementation.

Structs§

SetUnionWithTombstones
Set-union lattice with tombstones.

Type Aliases§

SetUnionWithTombstonesArray
crate::collections::ArraySet-backed SetUnionWithTombstones lattice.
SetUnionWithTombstonesBTreeSet
std::collections::BTreeSet-backed SetUnionWithTombstones lattice.
SetUnionWithTombstonesFstString
FST-backed tombstone set with std::collections::HashSet for the main set. Provides space-efficient, collision-free tombstone storage for String keys.
SetUnionWithTombstonesHashSet
std::collections::HashSet-backed SetUnionWithTombstones lattice.
SetUnionWithTombstonesOptionSet
Option-backed SetUnionWithTombstones lattice.
SetUnionWithTombstonesRoaring
crate::tombstone::RoaringTombstoneSet-backed tombstone set with std::collections::HashSet for the main set. Provides space-efficient tombstone storage for u64 integer keys.
SetUnionWithTombstonesSingletonSet
crate::collections::SingletonSet-backed SetUnionWithTombstones lattice.
SetUnionWithTombstonesTombstoneOnlySet
crate::collections::SingletonSet-backed SetUnionWithTombstones lattice.
SetUnionWithTombstonesVec
Vec-backed SetUnionWithTombstones lattice.