Skip to main content

Module set_union

Module set_union 

Source
Expand description

Module containing the SetUnion lattice and aliases for different datastructures.

Structs§

CartesianProductBimorphism
Bimorphism for the cartesian product of two sets. Output is a set of all possible pairs of items from the two input sets.
SetUnion
Set-union lattice.

Type Aliases§

SetUnionArray
crate::collections::ArraySet-backed SetUnion lattice.
SetUnionBTreeSetalloc
std::collections::BTreeSet-backed SetUnion lattice.
SetUnionHashSetstd
std::collections::HashSet-backed SetUnion lattice.
SetUnionOptionSet
Option-backed SetUnion lattice.
SetUnionSingletonSet
crate::collections::SingletonSet-backed SetUnion lattice.
SetUnionVecalloc
Vec-backed SetUnion lattice.