Expand description
Defines the Lattice
trait and provides implementations for standard types
Re-exports§
pub use product::Product;
Modules§
Structs§
- A wrapper type that swaps (
<=
and>=
) forPartialOrd
s, (meet
andjoin
) forLattice
s, and (top
andbottom
) forBoundedLattice
s.
Traits§
- A
Lattice
is aPartialOrd
where each pair of elements has a least upper bound (join
) and a greatest lower bound (meet
)